diff --git a/pom.xml b/pom.xml index bf8ec0d4..6f35a659 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 github-client - 0.4.8 + 0.4.9 com.spotify @@ -23,7 +23,7 @@ scm:git:https://github.com/spotify/github-java-client.git scm:git:git@github.com:spotify/github-java-client.git scm:https://github.com/spotify/github-java-client/ - v0.4.8 + v0.4.9 @@ -67,7 +67,7 @@ UTF-8 UTF-8 - 1749819070 + 1750930802 spotbugsexclude.xml error checkstyle.xml @@ -138,6 +138,11 @@ jsr311-api ${jsr311-api.version} + + org.apache.httpcomponents + httpclient + 4.5.14 + com.fasterxml.jackson.core jackson-annotations @@ -222,6 +227,12 @@ 2.2 test + + com.github.npathai + hamcrest-optional + 2.0.0 + test + org.junit.jupiter junit-jupiter-engine diff --git a/src/main/java/com/spotify/github/v3/clients/GitHubClient.java b/src/main/java/com/spotify/github/v3/clients/GitHubClient.java index 563dbc17..8d0a7fc2 100644 --- a/src/main/java/com/spotify/github/v3/clients/GitHubClient.java +++ b/src/main/java/com/spotify/github/v3/clients/GitHubClient.java @@ -97,6 +97,8 @@ public class GitHubClient { new TypeReference<>() {}; static final TypeReference> LIST_PR_TYPE_REFERENCE = new TypeReference<>() {}; + static final TypeReference> + LIST_PR_COMMENT_TYPE_REFERENCE = new TypeReference<>() {}; static final TypeReference> LIST_BRANCHES = new TypeReference<>() {}; static final TypeReference> LIST_REFERENCES = new TypeReference<>() {}; static final TypeReference> LIST_REPOSITORY_INVITATION = @@ -109,8 +111,7 @@ public class GitHubClient { static final TypeReference> LIST_PENDING_TEAM_INVITATIONS = new TypeReference<>() {}; - static final TypeReference> LIST_FILE_ITEMS = - new TypeReference<>() {}; + static final TypeReference> LIST_FILE_ITEMS = new TypeReference<>() {}; private static final String GET_ACCESS_TOKEN_URL = "app/installations/%s/access_tokens"; @@ -1090,7 +1091,8 @@ private CompletableFuture generateInstallationToken( if (response.bodyString() == null) { throw new RuntimeException( String.format( - "Got empty response body when getting an access token from GitHub, HTTP status was: %s", + "Got empty response body when getting an access token from GitHub, HTTP" + + " status was: %s", response.statusMessage())); } final String text = response.bodyString(); diff --git a/src/main/java/com/spotify/github/v3/clients/GithubPage.java b/src/main/java/com/spotify/github/v3/clients/GithubPage.java index ee3f4436..3e9e6c3a 100644 --- a/src/main/java/com/spotify/github/v3/clients/GithubPage.java +++ b/src/main/java/com/spotify/github/v3/clients/GithubPage.java @@ -36,6 +36,9 @@ import java.util.NoSuchElementException; import java.util.Optional; import java.util.concurrent.CompletableFuture; +import java.util.regex.Matcher; +import java.util.regex.Pattern; +import org.apache.http.client.utils.URIBuilder; /** * Async page implementation for github resources @@ -44,12 +47,27 @@ */ public class GithubPage implements AsyncPage { + static final int ITEM_PER_PAGE_DEFAULT = 30; private final GitHubClient github; private final String path; private final TypeReference> typeReference; + private final int itemsPerPage; + + protected static String formatPath(final String path, final int itemsPerPage) { + try { + URIBuilder uriBuilder = new URIBuilder(path); + if (uriBuilder.getQueryParams().stream().anyMatch(p -> p.getName().equals("per_page"))) { + return path; + } + uriBuilder.addParameter("per_page", Integer.toString(itemsPerPage)); + return uriBuilder.toString(); + } catch (Exception e) { + return path; + } + } /** - * C'tor. + * Constructor. * * @param github github client * @param path resource page path @@ -57,8 +75,27 @@ public class GithubPage implements AsyncPage { */ GithubPage( final GitHubClient github, final String path, final TypeReference> typeReference) { + this.itemsPerPage = ITEM_PER_PAGE_DEFAULT; + this.github = github; + this.path = formatPath(path, ITEM_PER_PAGE_DEFAULT); + this.typeReference = typeReference; + } + + /** + * Constructor. + * + * @param github github client + * @param path resource page path + * @param typeReference type reference for deserialization + */ + GithubPage( + final GitHubClient github, + final String path, + final TypeReference> typeReference, + final int itemsPerPage) { + this.itemsPerPage = itemsPerPage; this.github = github; - this.path = path; + this.path = formatPath(path, itemsPerPage); this.typeReference = typeReference; } @@ -77,7 +114,7 @@ public CompletableFuture pagination() { .map( prevLink -> pageNumberFromUri(prevLink.url().toString()) - .orElseThrow( + .orElseThrow( () -> new RuntimeException( "Could not parse page number from Link header with rel=\"next\""))); @@ -91,7 +128,7 @@ public CompletableFuture pagination() { .map( lastLink -> pageNumberFromUri(lastLink.url().toString()) - .orElseThrow( + .orElseThrow( () -> new RuntimeException( "Could not parse page number from Link " @@ -121,7 +158,7 @@ public CompletableFuture> nextPage() { Optional.ofNullable(linkMap.get("next")) .map(nextLink -> nextLink.url().toString().replaceAll(github.urlFor(""), "")) .orElseThrow(() -> new NoSuchElementException("Page iteration exhausted")); - return new GithubPage<>(github, nextPath, typeReference); + return new GithubPage<>(github, nextPath, typeReference, itemsPerPage); }); } @@ -134,7 +171,7 @@ public CompletableFuture hasNextPage() { /** {@inheritDoc} */ @Override public AsyncPage clone() { - return new GithubPage<>(github, path, typeReference); + return new GithubPage<>(github, path, typeReference, itemsPerPage); } /** {@inheritDoc} */ @@ -153,19 +190,22 @@ private CompletableFuture> linkMapAsync() { return github .request(path) .thenApply( - response -> { - return Optional.ofNullable(response.header("Link")) - .stream() - .flatMap(linkHeader -> stream(linkHeader.split(","))) - .map(linkString -> Link.from(linkString.split(";"))) - .filter(link -> link.rel().isPresent()) - .collect(toMap(link -> link.rel().get(), identity())); - }); + response -> + Optional.ofNullable(response.header("Link")).stream() + .flatMap(linkHeader -> stream(linkHeader.split(","))) + .map(linkString -> Link.from(linkString.split(";"))) + .filter(link -> link.rel().isPresent()) + .collect(toMap(link -> link.rel().get(), identity()))); } - private Optional pageNumberFromUri(final String uri) { - return Optional.ofNullable(uri.replaceAll(".*\\?page=", "").replaceAll("&.*", "")) - .filter(string -> string.matches("\\d+")) - .map(Integer::parseInt); + protected static Optional pageNumberFromUri(final String uri) { + Pattern pageInQueryPattern = Pattern.compile("(^|\\?|&)page=(?\\d+)", Pattern.CASE_INSENSITIVE); + try { + String query = new URIBuilder(uri).build().getQuery(); + Matcher matcher = pageInQueryPattern.matcher(query); + return matcher.find() ? Optional.of(Integer.parseInt(matcher.group("page"))) : Optional.empty(); + } catch (Exception e) { + return Optional.empty(); + } } } diff --git a/src/main/java/com/spotify/github/v3/clients/PullRequestClient.java b/src/main/java/com/spotify/github/v3/clients/PullRequestClient.java index 6a8ef8e3..e54f9180 100644 --- a/src/main/java/com/spotify/github/v3/clients/PullRequestClient.java +++ b/src/main/java/com/spotify/github/v3/clients/PullRequestClient.java @@ -23,14 +23,17 @@ import static com.spotify.github.v3.clients.GitHubClient.IGNORE_RESPONSE_CONSUMER; import static com.spotify.github.v3.clients.GitHubClient.LIST_COMMIT_TYPE_REFERENCE; import static com.spotify.github.v3.clients.GitHubClient.LIST_FILE_ITEMS; +import static com.spotify.github.v3.clients.GitHubClient.LIST_PR_COMMENT_TYPE_REFERENCE; import static com.spotify.github.v3.clients.GitHubClient.LIST_PR_TYPE_REFERENCE; import static com.spotify.github.v3.clients.GitHubClient.LIST_REVIEW_REQUEST_TYPE_REFERENCE; import static com.spotify.github.v3.clients.GitHubClient.LIST_REVIEW_TYPE_REFERENCE; import static java.util.Objects.isNull; +import static java.lang.Math.toIntExact; import com.google.common.base.Strings; import com.google.common.collect.ImmutableMap; import com.spotify.github.async.AsyncPage; +import com.spotify.github.jackson.Json; import com.spotify.github.v3.git.FileItem; import com.spotify.github.v3.prs.Comment; import com.spotify.github.v3.prs.MergeParameters; @@ -63,6 +66,7 @@ public class PullRequestClient { private static final String PR_NUMBER_TEMPLATE = "/repos/%s/%s/pulls/%s"; private static final String PR_COMMITS_TEMPLATE = "/repos/%s/%s/pulls/%s/commits"; private static final String PR_REVIEWS_TEMPLATE = "/repos/%s/%s/pulls/%s/reviews"; + private static final String PR_COMMENTS_TEMPLATE = "/repos/%s/%s/pulls/%s/comments"; private static final String PR_CHANGED_FILES_TEMPLATE = "/repos/%s/%s/pulls/%s/files"; private static final String PR_REVIEW_REQUESTS_TEMPLATE = "/repos/%s/%s/pulls/%s/requested_reviewers"; @@ -188,7 +192,14 @@ public CompletableFuture> listCommits(final int prNumber) { public CompletableFuture> listCommits(final long prNumber) { final String path = String.format(PR_COMMITS_TEMPLATE, owner, repo, prNumber); log.debug("Fetching pull request commits from " + path); - return github.request(path, LIST_COMMIT_TYPE_REFERENCE); + return github.request(path).thenApply( + response -> Json.create().fromJsonUncheckedNotNull(response.bodyString(), LIST_COMMIT_TYPE_REFERENCE)); + } + + public Iterator> listCommits(final long prNumber, final int itemsPerPage) { + final String path = String.format(PR_COMMITS_TEMPLATE, owner, repo, prNumber); + + return new GithubPageIterator<>(new GithubPage<>(github, path, LIST_COMMIT_TYPE_REFERENCE, itemsPerPage)); } /** @@ -236,10 +247,9 @@ public Iterator> listReviews(final int prNumber, final int ite * @return iterator of reviews */ public Iterator> listReviews(final long prNumber, final long itemsPerPage) { - // FIXME Use itemsPerPage property final String path = String.format(PR_REVIEWS_TEMPLATE, owner, repo, prNumber); log.debug("Fetching pull request reviews from " + path); - return new GithubPageIterator<>(new GithubPage<>(github, path, LIST_REVIEW_TYPE_REFERENCE)); + return new GithubPageIterator<>(new GithubPage<>(github, path, LIST_REVIEW_TYPE_REFERENCE, toIntExact(itemsPerPage))); } /** @@ -467,6 +477,17 @@ private CompletableFuture> list(final String parameterPath return github.request(path, LIST_PR_TYPE_REFERENCE); } + /** + * List pull request review comments. + * + * @param prNumber pull request number + * @return iterator of comments + */ + public Iterator> listComments(final long prNumber) { + final String path = String.format(PR_COMMENTS_TEMPLATE, owner, repo, prNumber); + return new GithubPageIterator<>(new GithubPage<>(github, path, LIST_PR_COMMENT_TYPE_REFERENCE)); + } + /** * Creates a reply to a pull request review comment. * diff --git a/src/main/java/com/spotify/github/v3/clients/TeamClient.java b/src/main/java/com/spotify/github/v3/clients/TeamClient.java index 1dfdff67..409d5911 100644 --- a/src/main/java/com/spotify/github/v3/clients/TeamClient.java +++ b/src/main/java/com/spotify/github/v3/clients/TeamClient.java @@ -49,7 +49,7 @@ public class TeamClient { private static final String MEMBERS_TEMPLATE = "/orgs/%s/teams/%s/members"; - private static final String PAGED_MEMBERS_TEMPLATE = "/orgs/%s/teams/%s/members?per_page=%d"; + private static final String PAGED_MEMBERS_TEMPLATE = "/orgs/%s/teams/%s/members"; private static final String MEMBERSHIP_TEMPLATE = "/orgs/%s/teams/%s/memberships/%s"; @@ -176,9 +176,9 @@ public CompletableFuture> listTeamMembers(final String slug) { * @return list of all users in a team */ public Iterator> listTeamMembers(final String slug, final int pageSize) { - final String path = String.format(PAGED_MEMBERS_TEMPLATE, org, slug, pageSize); + final String path = String.format(PAGED_MEMBERS_TEMPLATE, org, slug); log.debug("Fetching members for: {}", path); - return new GithubPageIterator<>(new GithubPage<>(github, path, LIST_TEAM_MEMBERS)); + return new GithubPageIterator<>(new GithubPage<>(github, path, LIST_TEAM_MEMBERS, pageSize)); } /** diff --git a/src/test/java/com/spotify/github/v3/clients/GitHubPageTest.java b/src/test/java/com/spotify/github/v3/clients/GitHubPageTest.java new file mode 100644 index 00000000..295a4d76 --- /dev/null +++ b/src/test/java/com/spotify/github/v3/clients/GitHubPageTest.java @@ -0,0 +1,53 @@ +/*- + * -\-\- + * github-api + * -- + * Copyright (C) 2016 - 2025 Spotify AB + * -- + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * -/-/- + */ + +package com.spotify.github.v3.clients; + +import static org.hamcrest.core.Is.is; + +import java.net.URI; +import org.junit.jupiter.api.Test; +import static org.hamcrest.MatcherAssert.assertThat; +import static com.github.npathai.hamcrestopt.OptionalMatchers.isPresentAndIs; +import static com.github.npathai.hamcrestopt.OptionalMatchers.isEmpty; + +public class GitHubPageTest { + private static final String MOCK_GITHUB_HOST = "bogus.host"; + private static final URI MOCK_GITHUB_URI = URI.create(String.format("http://%s/api/v3/", MOCK_GITHUB_HOST)); + + @Test + public void testFormatPathWithPerPage() { + assertThat(GithubPage.formatPath("/commits?page=2", 3), is("/commits?page=2&per_page=3")); + assertThat(GithubPage.formatPath("NOT_A_CORRECT PATH ", 3), is("NOT_A_CORRECT PATH ")); + assertThat(GithubPage.formatPath("/commits", 3), is("/commits?per_page=3")); + assertThat(GithubPage.formatPath("/commits?page=2&per_page=7", 3), is("/commits?page=2&per_page=7")); + } + + @Test + public void testPageNumberFromURI() { + assertThat(GithubPage.pageNumberFromUri(MOCK_GITHUB_URI.resolve("/commits?page=5").toString()), isPresentAndIs(5)); + assertThat(GithubPage.pageNumberFromUri(MOCK_GITHUB_URI.resolve("/commits").toString()), isEmpty()); + assertThat(GithubPage.pageNumberFromUri(MOCK_GITHUB_URI.resolve("commits").toString()), isEmpty()); + assertThat(GithubPage.pageNumberFromUri("/commits?page=2"), isPresentAndIs(2)); + assertThat(GithubPage.pageNumberFromUri("/commits?per_page=4&page=2"), isPresentAndIs(2)); + assertThat(GithubPage.pageNumberFromUri("NOT_A_CORRECT PATH "), isEmpty()); + assertThat(GithubPage.pageNumberFromUri("/commits"), isEmpty()); + } +} diff --git a/src/test/java/com/spotify/github/v3/clients/IssueClientTest.java b/src/test/java/com/spotify/github/v3/clients/IssueClientTest.java index bdbf2383..1007e8b7 100644 --- a/src/test/java/com/spotify/github/v3/clients/IssueClientTest.java +++ b/src/test/java/com/spotify/github/v3/clients/IssueClientTest.java @@ -81,21 +81,26 @@ public void setUp() { @Test public void testCommentPaginationSpliterator() throws IOException { final String firstPageLink = - "; rel=\"next\", ; rel=\"last\""; + "; rel=\"next\", ; rel=\"last\""; final String firstPageBody = Resources.toString(getResource(this.getClass(), "comments_page1.json"), defaultCharset()); final HttpResponse firstPageResponse = createMockResponse(firstPageLink, firstPageBody); final String lastPageLink = - "; rel=\"first\", ; rel=\"prev\""; + "; rel=\"first\", ; rel=\"prev\""; final String lastPageBody = Resources.toString(getResource(this.getClass(), "comments_page2.json"), defaultCharset()); final HttpResponse lastPageResponse = createMockResponse(lastPageLink, lastPageBody); - when(github.request(format(COMMENTS_URI_NUMBER_TEMPLATE, "someowner", "somerepo", "123"))) + when(github.request( + format(COMMENTS_URI_NUMBER_TEMPLATE + "?per_page=30", "someowner", "somerepo", "123"))) .thenReturn(completedFuture(firstPageResponse)); when(github.request( - format(COMMENTS_URI_NUMBER_TEMPLATE + "?page=2", "someowner", "somerepo", "123"))) + format( + COMMENTS_URI_NUMBER_TEMPLATE + "?page=2&per_page=30", + "someowner", + "somerepo", + "123"))) .thenReturn(completedFuture(lastPageResponse)); final Iterable> pageIterator = () -> issueClient.listComments(123); @@ -121,10 +126,15 @@ public void testCommentPaginationForeach() throws IOException { Resources.toString(getResource(this.getClass(), "comments_page2.json"), defaultCharset()); final HttpResponse lastPageResponse = createMockResponse(lastPageLink, lastPageBody); - when(github.request(format(COMMENTS_URI_NUMBER_TEMPLATE, "someowner", "somerepo", "123"))) + when(github.request( + format(COMMENTS_URI_NUMBER_TEMPLATE + "?per_page=30", "someowner", "somerepo", "123"))) .thenReturn(completedFuture(firstPageResponse)); when(github.request( - format(COMMENTS_URI_NUMBER_TEMPLATE + "?page=2", "someowner", "somerepo", "123"))) + format( + COMMENTS_URI_NUMBER_TEMPLATE + "?page=2&per_page=30", + "someowner", + "somerepo", + "123"))) .thenReturn(completedFuture(lastPageResponse)); final List listComments = Lists.newArrayList(); @@ -233,7 +243,8 @@ public void testListIssueCommentReaction() throws IOException { .content(CommentReactionContent.HEART) .user(ImmutableUser.builder().login("octocat").build()) .build()))); - final String path = format(COMMENTS_REACTION_TEMPLATE, "someowner", "somerepo", commentId); + final String path = + format(COMMENTS_REACTION_TEMPLATE + "?per_page=30", "someowner", "somerepo", commentId); final String firstPageLink = format( diff --git a/src/test/java/com/spotify/github/v3/clients/PullRequestClientTest.java b/src/test/java/com/spotify/github/v3/clients/PullRequestClientTest.java index 10a36dc0..1edaa80c 100644 --- a/src/test/java/com/spotify/github/v3/clients/PullRequestClientTest.java +++ b/src/test/java/com/spotify/github/v3/clients/PullRequestClientTest.java @@ -40,6 +40,7 @@ import com.spotify.github.async.Async; import com.spotify.github.async.AsyncPage; import com.spotify.github.http.HttpResponse; +import com.spotify.github.jackson.Json; import com.spotify.github.v3.exceptions.RequestNotOkException; import com.spotify.github.v3.git.FileItem; import com.spotify.github.v3.git.ImmutableFileItem; @@ -51,6 +52,7 @@ import com.spotify.github.v3.prs.requests.ImmutablePullRequestUpdate; import com.spotify.github.v3.prs.requests.PullRequestCreate; import com.spotify.github.v3.prs.requests.PullRequestUpdate; +import com.spotify.github.v3.repos.CommitItem; import java.io.IOException; import java.io.Reader; import java.net.URI; @@ -71,6 +73,9 @@ import org.mockito.ArgumentCaptor; public class PullRequestClientTest { + private static final String MOCK_GITHUB_HOST = "bogus.host"; + private static final URI MOCK_GITHUB_URI = URI.create(String.format("http://%s/api/v3", MOCK_GITHUB_HOST)); + private static final URI MOCK_GITHUB_URI_GQL = MOCK_GITHUB_URI.resolve("/graphql"); private static final String PR_CHANGED_FILES_TEMPLATE = "/repos/%s/%s/pulls/%s/files"; private GitHubClient github; @@ -86,7 +91,7 @@ public void setUp() { client = mock(OkHttpClient.class); github = GitHubClient.create( - client, URI.create("http://bogus"), URI.create("https://bogus/graphql"), "token"); + client,MOCK_GITHUB_URI, MOCK_GITHUB_URI_GQL, "token"); mockGithub = mock(GitHubClient.class); } @@ -424,7 +429,7 @@ void testChangedFiles() throws IOException { final HttpResponse firstPageResponse = createMockResponse(pageLink, expectedBody); - when(mockGithub.request(format(PR_CHANGED_FILES_TEMPLATE, "owner", "repo", "1"))) + when(mockGithub.request(format(PR_CHANGED_FILES_TEMPLATE + "?per_page=30", "owner", "repo", "1"))) .thenReturn(completedFuture(firstPageResponse)); when(mockGithub.json()).thenReturn(github.json()); @@ -438,4 +443,109 @@ void testChangedFiles() throws IOException { assertEquals(actualFiles.get(0).filename(), expectedFiles.get(0).filename()); assertEquals(actualFiles.get(1).filename(), expectedFiles.get(1).filename()); } + + @Test + public void testListComments() throws Throwable { + final String expectedBody = "[" + getFixture("pull_request_review_comment_reply.json") + "]"; + + final String pageLink = + "; rel=\"first\""; + + final HttpResponse firstPageResponse = createMockResponse(pageLink, expectedBody); + + when(mockGithub.request("/repos/owner/repo/pulls/1/comments?per_page=30")) + .thenReturn(completedFuture(firstPageResponse)); + + when(mockGithub.json()).thenReturn(github.json()); + + final PullRequestClient pullRequestClient = + PullRequestClient.create(mockGithub, "owner", "repo"); + + final Iterable> pageIterator = () -> pullRequestClient.listComments(1L); + List comments = Async.streamFromPaginatingIterable(pageIterator).collect(toList()); + + assertEquals(1, comments.size()); + assertThat(comments.get(0).body(), is("Great stuff!")); + assertThat(comments.get(0).id(), is(10L)); + assertThat(comments.get(0).user().login(), is("octocat")); + } + + @Test + public void listCommitsWithoutSpecifyingPages() throws Exception { + // Given + final int COMMIT_PER_PAGE = 30; + + final String firstPageLink = + "; rel=\"next\", ; rel=\"last\""; + final String firstPageBody = + Resources.toString(getResource(this.getClass(), "pull_request_commits_page1.json"), defaultCharset()); + final HttpResponse firstPageResponse = createMockResponse(firstPageLink, firstPageBody); + + when(mockGithub.request("/repos/owner/repo/pulls/1/commits")) + .thenReturn(completedFuture(firstPageResponse)); + + final PullRequestClient pullRequestClient = PullRequestClient.create(mockGithub, "owner", "repo"); + + // When + final List commits = pullRequestClient.listCommits(1L).get(); + + // Then + assertThat(commits.size(), is(COMMIT_PER_PAGE)); + assertThat( + commits.get(COMMIT_PER_PAGE - 1).commit().tree().sha(), is("219cb4c1ffada21259876d390df1a85767481617")); + } + + @Test + public void listCommitsSpecifyingPages() throws Exception { + // Given + final int COMMIT_PER_PAGE = 30; + + final String firstPageLink = String.format( + "<%s/repos/owner/repo/pulls/1/commits?page=2&per_page=30>; rel=\"next\", <%s/repos/owner/repo/pulls/1/commits?page=3&per_page=30>; rel=\"last\"", + MOCK_GITHUB_URI, + MOCK_GITHUB_URI); + final String firstPageBody = + Resources.toString(getResource(this.getClass(), "pull_request_commits_page1.json"), defaultCharset()); + final HttpResponse firstPageResponse = createMockResponse(firstPageLink, firstPageBody); + + final String secondPageLink = String.format( + "<%s/repos/owner/repo/pulls/1/commits?page=1&per_page=30>; rel=\"prev\", <%s/repos/owner/repo/pulls/1/commits?page=3&per_page=30>; rel=\"next\", <%s/repos/owner/repo/pulls/1/commits?page=3&per_page=30>; rel=\"last\", <%s/repos/owner/repo/pulls/1/commits?page=1&per_page=30>; rel=\"first\"", + MOCK_GITHUB_URI, + MOCK_GITHUB_URI, + MOCK_GITHUB_URI, + MOCK_GITHUB_URI); + final String secondPageBody = + Resources.toString(getResource(this.getClass(), "pull_request_commits_page2.json"), defaultCharset()); + final HttpResponse secondPageResponse = createMockResponse(secondPageLink, secondPageBody); + + final String thirdPageLink = + String.format("<%s/repos/owner/repo/pulls/1/commits?page=2&per_page=30>; rel=\"prev\", <%s/repos/owner/repo/pulls/1/commits?page=1&per_page=30>; rel=\"first\"", + MOCK_GITHUB_URI, + MOCK_GITHUB_URI); + final String thirdPageBody = + Resources.toString(getResource(this.getClass(), "pull_request_commits_page3.json"), defaultCharset()); + final HttpResponse thirdPageResponse = createMockResponse(thirdPageLink, thirdPageBody); + + when(mockGithub.urlFor("")).thenReturn(MOCK_GITHUB_URI.toString()); + when(mockGithub.json()).thenReturn(Json.create()); + when(mockGithub.request("/repos/owner/repo/pulls/1/commits?per_page=30")) + .thenReturn(completedFuture(firstPageResponse)); + when(mockGithub.request("/repos/owner/repo/pulls/1/commits?page=1&per_page=30")) + .thenReturn(completedFuture(firstPageResponse)); + when(mockGithub.request("/repos/owner/repo/pulls/1/commits?page=2&per_page=30")) + .thenReturn(completedFuture(secondPageResponse)); + when(mockGithub.request("/repos/owner/repo/pulls/1/commits?page=3&per_page=30")) + .thenReturn(completedFuture(thirdPageResponse)); + + final PullRequestClient pullRequestClient = PullRequestClient.create(mockGithub, "owner", "repo"); + + // When + final Iterable> pageIterator = () -> pullRequestClient.listCommits(1L, 30); + final List commits = Async.streamFromPaginatingIterable(pageIterator).collect(toList()); + + // Then + assertThat(commits.size(), is(COMMIT_PER_PAGE * 3)); + assertThat( + commits.get(COMMIT_PER_PAGE - 1).commit().tree().sha(), is("219cb4c1ffada21259876d390df1a85767481617")); + } } diff --git a/src/test/java/com/spotify/github/v3/clients/RepositoryClientTest.java b/src/test/java/com/spotify/github/v3/clients/RepositoryClientTest.java index 0524d560..fab85818 100644 --- a/src/test/java/com/spotify/github/v3/clients/RepositoryClientTest.java +++ b/src/test/java/com/spotify/github/v3/clients/RepositoryClientTest.java @@ -153,7 +153,7 @@ public void listAuthenticatedUserRepositories() throws Exception { final String pageBody = getFixture("list_of_repos_for_authenticated_user.json"); final HttpResponse pageResponse = createMockResponse(pageLink, pageBody); - when(github.request("/user/repos")).thenReturn(completedFuture(pageResponse)); + when(github.request("/user/repos?per_page=30")).thenReturn(completedFuture(pageResponse)); final Iterable> pageIterator = () -> @@ -515,10 +515,10 @@ public void listBranches() throws Exception { @Test void listAllBranches() throws Exception { final String link = - "; rel=\"last\""; + "; rel=\"last\""; final HttpResponse response = createMockResponse(link, getFixture("list_branches.json")); - when(github.request("/repos/someowner/somerepo/branches")) + when(github.request("/repos/someowner/somerepo/branches?per_page=30")) .thenReturn(completedFuture(response)); final List branches = Async.streamFromPaginatingIterable(repoClient::listAllBranches) @@ -573,14 +573,14 @@ public void testStatusesPaginationForeach() throws Exception { when(github.request( format( - STATUS_URI_TEMPLATE, + STATUS_URI_TEMPLATE + "?per_page=30", "someowner", "somerepo", "553c2077f0edc3d5dc5d17262f6aa498e69d6f8e"))) .thenReturn(completedFuture(firstPageResponse)); when(github.request( format( - STATUS_URI_TEMPLATE + "?page=2", + STATUS_URI_TEMPLATE + "?page=2&per_page=30", "someowner", "somerepo", "553c2077f0edc3d5dc5d17262f6aa498e69d6f8e"))) diff --git a/src/test/java/com/spotify/github/v3/clients/TeamClientTest.java b/src/test/java/com/spotify/github/v3/clients/TeamClientTest.java index 82ba2897..457c16ed 100644 --- a/src/test/java/com/spotify/github/v3/clients/TeamClientTest.java +++ b/src/test/java/com/spotify/github/v3/clients/TeamClientTest.java @@ -186,7 +186,7 @@ public void listTeamMembersPaged() throws Exception { when(github.request(endsWith("/orgs/github/teams/1/members?per_page=1"))) .thenReturn(completedFuture(firstPageResponse)); - when(github.request(endsWith("/orgs/github/teams/1/members?page=2"))) + when(github.request(endsWith("/orgs/github/teams/1/members?page=2&per_page=1"))) .thenReturn(completedFuture(lastPageResponse)); final Iterable> pageIterator = () -> teamClient.listTeamMembers("1", 1); diff --git a/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page1.json b/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page1.json new file mode 100644 index 00000000..6f043338 --- /dev/null +++ b/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page1.json @@ -0,0 +1,2422 @@ +[ + { + "sha": "443831b0008519c93a57f96fb45a455f8e1453d0", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjQ0MzgzMWIwMDA4NTE5YzkzYTU3Zjk2ZmI0NWE0NTVmOGUxNDUzZDA=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-11T18:32:31Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:01Z" + }, + "message": "STASH incomplete feature (no UI, some TODOs)", + "tree": { + "sha": "362e3e7da340b93600dfc03f42a5448b01603aa8", + "url": "https://api.github.com/repos/facebook/react/git/trees/362e3e7da340b93600dfc03f42a5448b01603aa8" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/443831b0008519c93a57f96fb45a455f8e1453d0", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UkACgkQWCcTbp05\ndTIJaw//fA9sw4IgzFBupPjSniwta+TMNubK6rLakXmX61gWYoKPRkQx0N1cK5k2\n0ohggmhLb7c75kjShLCYu1RTYHR1hN1xpahPjurvXMNXt908oBrzEoDR7XQg3NEO\n2yJ1d0QsCcPimzHztGkHnO1oD2S8XZ+NBwEpJxTNc+xAotkxS0dlS1nYyNsCnpRY\nozG9oyYMfaHyZOgrONl7wqwaBHS9RVvppiAiaRKy0p9eozf1hAUkPXRTIUbXg/fV\nGrOjrNvffe3CrI7quZDqzCcvfuL7CTrcw3+Gw0pRHcx/GtM25/9ewTScaR5B9CWB\nmd6gu2KMuP6/DfJWtBJ3zOuTTDvRRh8cds1BL4tPQuLn6g295HDNLgBB/4esCL3q\naR60UOuWS/L3JQeYWKS+JAJlm+cycDHpSbzznXSJpVbrGC0YseI1qZpgEMDwcwUX\n7aFfMSppPF4PkTqWvEuUnQdwtLhhm+yKFKkAPude4ZjSInIY/ioLhpcupb62C45K\nRVL4Ihj4Jzoorz5SFMgvTg12HLMho/fJcwNPWn2RZCG1i8xgjIP8Jgod5HzOhE7n\ngJjL7Gb+fjnSjMpASGf9Cqw7TWYLMD+H59VAk4ZOzlqxZ95P41ECw0GpST5uFBY8\nH7/bUkIf/M26xJzVv82nRApQsFgXDxa+bOuXUgURshZmVt3jOcU=\n=pF+Q\n-----END PGP SIGNATURE-----", + "payload": "tree 362e3e7da340b93600dfc03f42a5448b01603aa8\nparent 3f9205c3331b80f13a0376826d1ef859786c086b\nauthor eps1lon 1607711551 +0100\ncommitter eps1lon 1607985481 +0100\n\nSTASH incomplete feature (no UI, some TODOs)\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/443831b0008519c93a57f96fb45a455f8e1453d0", + "html_url": "https://github.com/facebook/react/commit/443831b0008519c93a57f96fb45a455f8e1453d0", + "comments_url": "https://api.github.com/repos/facebook/react/commits/443831b0008519c93a57f96fb45a455f8e1453d0/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "3f9205c3331b80f13a0376826d1ef859786c086b", + "url": "https://api.github.com/repos/facebook/react/commits/3f9205c3331b80f13a0376826d1ef859786c086b", + "html_url": "https://github.com/facebook/react/commit/3f9205c3331b80f13a0376826d1ef859786c086b" + } + ] + }, + { + "sha": "1a34269cb1fede931153172fdeaca034ccadcda2", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjFhMzQyNjljYjFmZWRlOTMxMTUzMTcyZmRlYWNhMDM0Y2NhZGNkYTI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-11T20:04:55Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:01Z" + }, + "message": "Add UI", + "tree": { + "sha": "a7ba32a1d26bf21c20303716b53047afc2b19eb3", + "url": "https://api.github.com/repos/facebook/react/git/trees/a7ba32a1d26bf21c20303716b53047afc2b19eb3" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/1a34269cb1fede931153172fdeaca034ccadcda2", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UkACgkQWCcTbp05\ndTI7+Q/+Jjp/tDSFgbwa2wzhfnbnVDIurh2ICKUKnET1s44gA0Fkn1SJcm6atpI+\nISt4pVkcjoxGoF4jpYLK/PhY8IQrAzZhvIJ40gUC2NLutsPsb8ugREyMhYCIlCTP\nD0QBZMM7RG5p5u1T9E+c+K44sInOcnNxX7ioCeFK1nF2BsbNfkV9SUOZlelop9bh\n/qSyAIiOj9aqsx7d2Pu1LDdhjBXXunPxSNk11shAyO/OcxBAPqdZaHT+XGHj/FpB\n9Q3Pj4tjTr9ERRkchcWUsRPL8zxlimVwBcX6an1k7fCRywzkQWgxyyP9msQDTD0a\nu18hLoHpJfbyBgO5nuD1SCAKJfopgqpQt+/CyQjbqOjaNOBA0m9wUk8U5gVHxOoG\n/ZcMNDXra2DvVj5MYENuYtLUzLXJJ6AD8vu/K9FhZUfHy6Yk4Gfrq9Kidx/YSirS\nJoAO2jHYTb/Lyg3iNeEQgYkVaMhMsLAQWRx9B56PhGdMTbHDeQ3r85LqbORWNCku\npzlPEq4S41cYZYlV6XZr6/gBWNW+neGEIFBMw7N1UJ/6VJiDsG0QVUTvDFilrOCV\nXvRCdpPY40C0NiahVHyO06gojGPzbEhfjvnXoxmKe+Hs6RNJDqF/fRSqGl3py3r2\n5pRmGf5vgc6aldIPO8uw1J/vEHwL80hjiT7wcT8kYikiMkweUWI=\n=vEUV\n-----END PGP SIGNATURE-----", + "payload": "tree a7ba32a1d26bf21c20303716b53047afc2b19eb3\nparent 443831b0008519c93a57f96fb45a455f8e1453d0\nauthor eps1lon 1607717095 +0100\ncommitter eps1lon 1607985481 +0100\n\nAdd UI\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/1a34269cb1fede931153172fdeaca034ccadcda2", + "html_url": "https://github.com/facebook/react/commit/1a34269cb1fede931153172fdeaca034ccadcda2", + "comments_url": "https://api.github.com/repos/facebook/react/commits/1a34269cb1fede931153172fdeaca034ccadcda2/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "443831b0008519c93a57f96fb45a455f8e1453d0", + "url": "https://api.github.com/repos/facebook/react/commits/443831b0008519c93a57f96fb45a455f8e1453d0", + "html_url": "https://github.com/facebook/react/commit/443831b0008519c93a57f96fb45a455f8e1453d0" + } + ] + }, + { + "sha": "6cc7fdb8642f40c34d067f991dd01bf45149883e", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjZjYzdmZGI4NjQyZjQwYzM0ZDA2N2Y5OTFkZDAxYmY0NTE0OTg4M2U=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T17:04:07Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:01Z" + }, + "message": "Add view for errors/warnings in inspected element", + "tree": { + "sha": "c03f88d24809204587b25a676afc09f98ef23c38", + "url": "https://api.github.com/repos/facebook/react/git/trees/c03f88d24809204587b25a676afc09f98ef23c38" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/6cc7fdb8642f40c34d067f991dd01bf45149883e", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UkACgkQWCcTbp05\ndTKExw/9GErqES02exoefSLGYts3V7CCZzAtB4n0x+VbCufwWHynaKXt+ELo1UFg\nA15+TvAK0C4C/XCkzDdDKYQwGs/OpCSyJSNDjwzeOHVtonkPeR8Jp9eE2wioQQUE\nxCXNDVFRuJHQHEkcI4MbWVyOOJAQjSenesAojd1xEmIGgxGjPmYaULfCjJoKQung\ntBxzDEj6ngd0Sjb7U6SQpiSJQwG2JWSdBaI3HgBhV5Pq54pgnoCgv+nJb51I715e\nMOhbC3qWfs9OQyEO7cvsfcONrN6+20F3oq9gM7COaBFCee1g19hIDQGCCgzhkJzP\nz+UFarXTvaz+PHmTTrxyDVqh2M0tnu3wjQlyXK72f7XdCF8Yk92zSqEbKFqiiSsM\nTxQ5awFvae7K4Egv1gTiS3+p6CB+ReuN108sIwrHd1UT9yvEnLqu+1Xi6Z+sH855\nYVwVUvT43xP2bmePLOYZCbAwDQuf12QcXymkhsPcO6yQgIq/Jdr7FhgaE4G7PhL0\nLebujMo/WAe3MLlrWiUUtkI9pV2CimBt/igmp5tiVR/QeB768C6RfrNSUB/1g8Dg\n2SuxvMJjRPiqvUrqEYHO6P5gkfhBZxHPjmAb+HQGqfCz4vG5vw+XvpH1oif3jB4A\nEv/w/gtyrB5sEdxW3bp9e20mESW5DxQPeHsF+b6JgaqzLbhMUa4=\n=JBgd\n-----END PGP SIGNATURE-----", + "payload": "tree c03f88d24809204587b25a676afc09f98ef23c38\nparent 1a34269cb1fede931153172fdeaca034ccadcda2\nauthor eps1lon 1607965447 +0100\ncommitter eps1lon 1607985481 +0100\n\nAdd view for errors/warnings in inspected element\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/6cc7fdb8642f40c34d067f991dd01bf45149883e", + "html_url": "https://github.com/facebook/react/commit/6cc7fdb8642f40c34d067f991dd01bf45149883e", + "comments_url": "https://api.github.com/repos/facebook/react/commits/6cc7fdb8642f40c34d067f991dd01bf45149883e/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1a34269cb1fede931153172fdeaca034ccadcda2", + "url": "https://api.github.com/repos/facebook/react/commits/1a34269cb1fede931153172fdeaca034ccadcda2", + "html_url": "https://github.com/facebook/react/commit/1a34269cb1fede931153172fdeaca034ccadcda2" + } + ] + }, + { + "sha": "59ddad1a8affb078724fdb58b296bf9258f3a183", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjU5ZGRhZDFhOGFmZmIwNzg3MjRmZGI1OGIyOTZiZjkyNThmM2ExODM=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T17:51:01Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:02Z" + }, + "message": "Serialize args", + "tree": { + "sha": "22fa26394637f3952c0dae32deaf70fccfab7f83", + "url": "https://api.github.com/repos/facebook/react/git/trees/22fa26394637f3952c0dae32deaf70fccfab7f83" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/59ddad1a8affb078724fdb58b296bf9258f3a183", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UoACgkQWCcTbp05\ndTKKgg//cXGgGOH+MG7vM1+c0dYHViLuQU3aByyFv4L+sVpODFPRZFEo8VifqN9f\nOttCyW6Kj2zQ6pE/sp30wAEWSeT8ZkaN2FYoYyclP2BnIUsyzXnoznnjHv78yTvr\n5lVQTy0Xv7Eev55WEAKxqhneK0OzWv7dGCwNZV+wNX+oTQ3t/Ozmy0+rx50JBVeR\npYNKummF6fMTME8Ss/QfERIfpVkJ/4j9ADZwR7CKzHWgkxvMdbD++cM4d6YI9rM+\nizGCo8vldYO7Faeb6C83D/v1AWCIlRMTEheSU/yRCh/XQx0Sjl0oCeAcJ8OK2b9T\nwEgCipYRTy8XTMccI0S4hmeuxDSPDGasVEbCk2UROEbDpST8iO7ov65oE1fMJLaU\nR/7yu3DbPkaD91kek/yoEJvI/+Ym0MVkWNvvxcY8MT2dT+iE0EIrHpeifx5sFWDC\nB9uj65rKuJ+Uws70pZFT1YP0CDH0uAO98PgsUw+WPOybwVG9vQjP/qoAKLi1oySR\nLTAcUVqwruU1GhS5MTHwbOwJ2G8nBICzdHT3zot+7KhjQ1YC8o0sn6OxXWmWF80K\nbOzAQE7tRepCp0wPP98txGCO7XmNUAmCSFYAiOACzr6QExHFJYqbK2STDOOfzEEU\n7jSNx/r+iuumplx8MEBlzgu6NlfmIYloreG0ENhHSK8/308PKcM=\n=oTZ5\n-----END PGP SIGNATURE-----", + "payload": "tree 22fa26394637f3952c0dae32deaf70fccfab7f83\nparent 6cc7fdb8642f40c34d067f991dd01bf45149883e\nauthor eps1lon 1607968261 +0100\ncommitter eps1lon 1607985482 +0100\n\nSerialize args\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/59ddad1a8affb078724fdb58b296bf9258f3a183", + "html_url": "https://github.com/facebook/react/commit/59ddad1a8affb078724fdb58b296bf9258f3a183", + "comments_url": "https://api.github.com/repos/facebook/react/commits/59ddad1a8affb078724fdb58b296bf9258f3a183/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "6cc7fdb8642f40c34d067f991dd01bf45149883e", + "url": "https://api.github.com/repos/facebook/react/commits/6cc7fdb8642f40c34d067f991dd01bf45149883e", + "html_url": "https://github.com/facebook/react/commit/6cc7fdb8642f40c34d067f991dd01bf45149883e" + } + ] + }, + { + "sha": "9372221a7a6f83decce2df7f08ade4b45957386b", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjkzNzIyMjFhN2E2ZjgzZGVjY2UyZGY3ZjA4YWRlNGI0NTk1NzM4NmI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T17:53:18Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:02Z" + }, + "message": "Ignore component stacks in inline errors view", + "tree": { + "sha": "ce254bc5b1de16aa7ded980081abc2c599bd10e6", + "url": "https://api.github.com/repos/facebook/react/git/trees/ce254bc5b1de16aa7ded980081abc2c599bd10e6" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/9372221a7a6f83decce2df7f08ade4b45957386b", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UoACgkQWCcTbp05\ndTJUbQ//UN7uc5SVyFIqXLuLdaIH1aGcXul+G/EMYDaQ4fET+MYWrc71yHvfuRRU\nIqwEVOXJkTkjxh0VmmS/+sihkEQkoNHn/466g5ChJ3BRQ7lh4l0JDZD5TtJOE/nX\n65/7S56a3g/okBMtDHi2Io926WGvvARrbiT3YIkq7PXRpp67Ut9wtZp5W2xqmiDC\njg+zI4M9TDx0yxr/iiA4sH6+xa8mWze8Fr8H15/OHJbZ7lDV+d134PXXWjGf7Tbh\nxxiKMTDzuZMC00wDyElUl2rRluqGTIeJJz2ydPdg5YsO/8spxgy7/j1+ZGi7klZC\ncqU6q71HsGeK1ZFlnFGyB1ubSPgC20WLwWToHWxOvwI6BXXAq4aJWTjRVVHVya7B\n2YmC+LK7SErEuSvCBC+0v6OhCNeSY0d4hr0xXmKtzf6CUAIL1I5ffWC+ySbmv8/r\nSW/e5CRcN9lS0Av56lYXqQTKg3Dg6iGQ7BVPA9Ql2WjiH1H12YkhfjYh0Hmqgq1Y\n4qNoJSpfKKTbdyjgLfFKbJSV+MrhoH2x60gyjnrQITGw2kxXKR5rwjNBBr6eqynv\n9D2zaAjZNlIBXRkmJVaCcikcaSxRWVULMr9hwXT6fgCzVzi+3biHl7bk/Fznm42J\nnj240zft+gv/M5ncYFgooJ77lsy1VV/F7D9IDQisuCwVGsJxa04=\n=sxB5\n-----END PGP SIGNATURE-----", + "payload": "tree ce254bc5b1de16aa7ded980081abc2c599bd10e6\nparent 59ddad1a8affb078724fdb58b296bf9258f3a183\nauthor eps1lon 1607968398 +0100\ncommitter eps1lon 1607985482 +0100\n\nIgnore component stacks in inline errors view\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/9372221a7a6f83decce2df7f08ade4b45957386b", + "html_url": "https://github.com/facebook/react/commit/9372221a7a6f83decce2df7f08ade4b45957386b", + "comments_url": "https://api.github.com/repos/facebook/react/commits/9372221a7a6f83decce2df7f08ade4b45957386b/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "59ddad1a8affb078724fdb58b296bf9258f3a183", + "url": "https://api.github.com/repos/facebook/react/commits/59ddad1a8affb078724fdb58b296bf9258f3a183", + "html_url": "https://github.com/facebook/react/commit/59ddad1a8affb078724fdb58b296bf9258f3a183" + } + ] + }, + { + "sha": "34500ea568a52daddb1ec8f5858afb74c326e5d8", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjM0NTAwZWE1NjhhNTJkYWRkYjFlYzhmNTg1OGFmYjc0YzMyNmU1ZDg=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T18:37:54Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:03Z" + }, + "message": "Add icons for warnings and errors", + "tree": { + "sha": "0d5fcf8a526cba6e1129698edac774a92a7bb89a", + "url": "https://api.github.com/repos/facebook/react/git/trees/0d5fcf8a526cba6e1129698edac774a92a7bb89a" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/34500ea568a52daddb1ec8f5858afb74c326e5d8", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UsACgkQWCcTbp05\ndTJqjA/8CefBC+nGr5sppylJYb9hyH+kwr+RSCTALyQ8hhc8gJet+KkMRwG/cSo2\nPm+1TtkoUPcjDgktsyVWMpFsJxa/wtNniyf2C1iMQYuiAXw9B7GqUh4RarF7Aa4u\ni0WQ7FwWZ+YPn5Mxa7compMrJ4i7AmNnjbBhwS8gzxvGXLLZL32ZeanYYlNaR2DC\nECuXaj3yBKNgwGWhHgLdXPWAxnn7wXILgLLnHTBErqV29TsjaCxCTmtNsDXMKS0A\nT+e8pnSUrp0Ow02n39/XQObdgRz/KJlVYFbEJTmg37HXcR+RovRprCP/HY9+hoP8\nFiiQ8YU1ShTymkUqXrkSR0ylq5pYlWZsNLLccn+5aKxJN5d7xXmzEL9rPOmlvzb9\nwPetizjXT9qanrE8qTrmGSZCvMk/PJupHyIiFJ/AgPRdpLLiqaoA1VzJLBGD5GHR\ns/YEYC3KGM414G5U+Z8y5HZBth3BcXQTudkXamxJ9D4gDchilFwHrGRS0HVVYZLP\nEOFLBaTxaO5cJmcx/czHPo7D84N7PVUSEkzmQ+qqc3c4NWlwQqHCENeQxV+COy1K\n/NbsJaF6PjDv4MP3aiaWkbTN2eqTO5ojCM5709XfGmPcK+kfnTCAQi4kHcCoXmNb\nH1zfRNXoN19XLU5s81nVhU/qp9adR/IgcR4sXfTM0puS56d24NE=\n=FlSX\n-----END PGP SIGNATURE-----", + "payload": "tree 0d5fcf8a526cba6e1129698edac774a92a7bb89a\nparent 9372221a7a6f83decce2df7f08ade4b45957386b\nauthor eps1lon 1607971074 +0100\ncommitter eps1lon 1607985483 +0100\n\nAdd icons for warnings and errors\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/34500ea568a52daddb1ec8f5858afb74c326e5d8", + "html_url": "https://github.com/facebook/react/commit/34500ea568a52daddb1ec8f5858afb74c326e5d8", + "comments_url": "https://api.github.com/repos/facebook/react/commits/34500ea568a52daddb1ec8f5858afb74c326e5d8/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "9372221a7a6f83decce2df7f08ade4b45957386b", + "url": "https://api.github.com/repos/facebook/react/commits/9372221a7a6f83decce2df7f08ade4b45957386b", + "html_url": "https://github.com/facebook/react/commit/9372221a7a6f83decce2df7f08ade4b45957386b" + } + ] + }, + { + "sha": "962f08cf82500d925596d7d566cc697ba07c7394", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjk2MmYwOGNmODI1MDBkOTI1NTk2ZDdkNTY2Y2M2OTdiYTA3YzczOTQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T18:42:06Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:03Z" + }, + "message": "Cleanup unused console logs", + "tree": { + "sha": "9e6e0cc39547c223b30fe425f8c3ac1a68ee8737", + "url": "https://api.github.com/repos/facebook/react/git/trees/9e6e0cc39547c223b30fe425f8c3ac1a68ee8737" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/962f08cf82500d925596d7d566cc697ba07c7394", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UsACgkQWCcTbp05\ndTIsMg/7BE6QChDLAzHfFTTTYqSPtjvHKp8jkMpV+D8RshNMlaoSoMCOjtTQNm0z\n+YHTIYG/5YR6vXm3BsL2ZrZZR/rGeYw2tq62VVZOMoobGDmYNWynMQ/hhqU+NtOn\nsgFd5ADYdi7cxZQNRSfrctvx/J168lbOji7HwjHJdmj2yWBeOP0YYMqd4veQUsUY\nsbvtXNGtNbBCApHYzCmBjrHuyWcHz2t/PznJQSFwK3QdtRF4uQ1LNTowp8ep+fVx\nQGkluJcLGYm7pX5o/AtzdGovwmkpx9eSgdmlRAWqnPAMbSmzGD0uZtaWFSkRZvtz\n3lPZX/Fn5otkiyr+zn+LWRDCbVmmsUwMKmPBPtqZFf5HGGxU/33cLilu5bWwT5Pl\nENpsUQ1oLHy2DC/r/tYhPiWhLolzWo5I8qOATj19ysoGSopQUo0WiX01XXykq1tK\n0hL9WXOEtW7q36/nRYtkNIrPraEoGyYdBryd+20G3Jy23JDR8aLMb73eyXaC6uZ/\nd37NSJSciPziMU0uuasc1QvPCpnLkJfMkLijfRJMlmZtY46E4811unlH2lr3LcH1\nfhKUiu7pvk7veA/HEgPgCaxsxSl1rU7jTiojmUTbKw0CN5zbS0EroQNu1987BzJ0\nn8q0ZRfwzAgVRfMByfXqbl53EfmppPkOl8LoGN0ILNnkJRf1pk8=\n=Hyzu\n-----END PGP SIGNATURE-----", + "payload": "tree 9e6e0cc39547c223b30fe425f8c3ac1a68ee8737\nparent 34500ea568a52daddb1ec8f5858afb74c326e5d8\nauthor eps1lon 1607971326 +0100\ncommitter eps1lon 1607985483 +0100\n\nCleanup unused console logs\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/962f08cf82500d925596d7d566cc697ba07c7394", + "html_url": "https://github.com/facebook/react/commit/962f08cf82500d925596d7d566cc697ba07c7394", + "comments_url": "https://api.github.com/repos/facebook/react/commits/962f08cf82500d925596d7d566cc697ba07c7394/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "34500ea568a52daddb1ec8f5858afb74c326e5d8", + "url": "https://api.github.com/repos/facebook/react/commits/34500ea568a52daddb1ec8f5858afb74c326e5d8", + "html_url": "https://github.com/facebook/react/commit/34500ea568a52daddb1ec8f5858afb74c326e5d8" + } + ] + }, + { + "sha": "3104b1e7463aec62683125e9a5e63538fb533ad2", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjMxMDRiMWU3NDYzYWVjNjI2ODMxMjVlOWE1ZTYzNTM4ZmI1MzNhZDI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T18:48:54Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:03Z" + }, + "message": "Fix flow issues", + "tree": { + "sha": "076dc54776a0f91a7cb4254de6e2f2e96eb38093", + "url": "https://api.github.com/repos/facebook/react/git/trees/076dc54776a0f91a7cb4254de6e2f2e96eb38093" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/3104b1e7463aec62683125e9a5e63538fb533ad2", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UsACgkQWCcTbp05\ndTKlbxAApJluvNix710CinqHwcit86D8YFzFZmELKV9CR71J1ZTrMcbFS5vh3Aqn\n11XbbeBWuifqQyvO+1HH/IgUpcTFW5POiWuz5nDLXPZCPE4h+vdDhVcmPK6ZIM5k\nSp54M9A/ZlOlQDaQBDgZ7Ce323d/GfaJdAmIR1gHZPj071XJIlcMooV5ABxBL/2t\nfsFJWORMRN+EGEMLl+R0uOhFEfiGeW89wx0D2OqA0n9LIh7Cfa8y+fIhMn6CHo0v\n71jKjEF5NBg/BwFpS8A3bW9s594IDtbEITFDgPBHXUl3rDaIGXhVgs7cN42sWZGJ\nNkQwpQh75rP6nUpBo9LSWp5NpQT0gAcO5Rk47mPgm6MYhqadEhCSq3OVNWTxw1gD\nMOgBD+p5xErkxaXRtimvElSME7sdHu5DkvQoArxgXjkpInE2Kr+yUmP4BFoRL7QH\n1md9Y1966PMisQTCh8VhemWjh2U3FDT2yyxY8wanXq8nOHP48Q/qV5UFJosUOT6+\nQZOBRe0nJl//bAEeN7yptrPoq+KUAgkKTEnUDZEtFbr0UbwqvSeaHXT03OOz0yUl\nVEr71FDpI4DtNPO0a68Y7WnKRVB3KTl9wljYKCfbhA2D67kUjc1gzRaH0bh3N02V\n0EXL1oyd/cAlqFHF2/cJ5t6Y/a23HrrjvOI4BzC767z5Z2CCcZY=\n=MdlC\n-----END PGP SIGNATURE-----", + "payload": "tree 076dc54776a0f91a7cb4254de6e2f2e96eb38093\nparent 962f08cf82500d925596d7d566cc697ba07c7394\nauthor eps1lon 1607971734 +0100\ncommitter eps1lon 1607985483 +0100\n\nFix flow issues\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/3104b1e7463aec62683125e9a5e63538fb533ad2", + "html_url": "https://github.com/facebook/react/commit/3104b1e7463aec62683125e9a5e63538fb533ad2", + "comments_url": "https://api.github.com/repos/facebook/react/commits/3104b1e7463aec62683125e9a5e63538fb533ad2/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "962f08cf82500d925596d7d566cc697ba07c7394", + "url": "https://api.github.com/repos/facebook/react/commits/962f08cf82500d925596d7d566cc697ba07c7394", + "html_url": "https://github.com/facebook/react/commit/962f08cf82500d925596d7d566cc697ba07c7394" + } + ] + }, + { + "sha": "cf3f212b2a387797c59b82fb08da4a547ad641b8", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmNmM2YyMTJiMmEzODc3OTdjNTliODJmYjA4ZGE0YTU0N2FkNjQxYjg=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T20:19:38Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:04Z" + }, + "message": "Implement clear(all,byComponent,byErrorOrWarning)", + "tree": { + "sha": "3864a094edecc0304d08016e15a23f72c625757c", + "url": "https://api.github.com/repos/facebook/react/git/trees/3864a094edecc0304d08016e15a23f72c625757c" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/cf3f212b2a387797c59b82fb08da4a547ad641b8", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UwACgkQWCcTbp05\ndTLjkA/7BBtp2DX/lCGFqRyblbrwanQtd44flxrzoLs4cIjdINyj/UA3vNBecgk+\nkrQKUJd5P00j8vDM6Al7KQnKARoc878rZF74fd8+cINXsiM9cx9BbaRbPlNB13wf\nJ9nQgZ/fyGKHyWBqXwDqlAOxvYSwvw8Dn5hX419dCkoS2shhw7XYe+BObXk4lKar\nWb84e8UpMuS8N+07PrsJlPXarHq5gxE1Xc5EddxBPH8npmOKxgn/KDMZZQp9ixtV\nJFVahGYceVjC/85PQmQzi1TZx8q2hrU6ezq3I0qK8bKlDhSDs7r6B0rlWH6q67Eh\nX7Al2q9sRTIaM8nla2ATEsfaXo/L4FLYLjOxC9ISSBaFQtdKZ5MozCU2hqiffb0H\nywRwrqyKSUh/NrNPZ+VYg15MYzlBm+pj1K/5G3eIoCei4udeQDNEaEXtVWUbTpmi\n2yKIOJ/dkSHWDTB1n/MLZXMeks7mJ0nYsFHSiE8YxdJNI27Ypk+EXg+79eKi+vdh\nSnN5ItiFZjOgZ6D0DETS3XrWMfWq3k+nTdv2obTqed1YO9inNc29o2Yi+Gs/COnp\n0RejYWl2YuLXxp1dVOP37U/g0MSoI8PiMPKyLHqX6IH2Jdfi+ELHZpB2kPHdRENB\nAt05IcuZlDPT2Ge1Mc8vvQ8z3GNAqwixsIkkdrewXdmZi5eyv0Q=\n=v1Ni\n-----END PGP SIGNATURE-----", + "payload": "tree 3864a094edecc0304d08016e15a23f72c625757c\nparent 3104b1e7463aec62683125e9a5e63538fb533ad2\nauthor eps1lon 1607977178 +0100\ncommitter eps1lon 1607985484 +0100\n\nImplement clear(all,byComponent,byErrorOrWarning)\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/cf3f212b2a387797c59b82fb08da4a547ad641b8", + "html_url": "https://github.com/facebook/react/commit/cf3f212b2a387797c59b82fb08da4a547ad641b8", + "comments_url": "https://api.github.com/repos/facebook/react/commits/cf3f212b2a387797c59b82fb08da4a547ad641b8/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "3104b1e7463aec62683125e9a5e63538fb533ad2", + "url": "https://api.github.com/repos/facebook/react/commits/3104b1e7463aec62683125e9a5e63538fb533ad2", + "html_url": "https://github.com/facebook/react/commit/3104b1e7463aec62683125e9a5e63538fb533ad2" + } + ] + }, + { + "sha": "5b3fb893b3609953bd1bebfc401a158bd82d7abd", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjViM2ZiODkzYjM2MDk5NTNiZDFiZWJmYzQwMWExNThiZDgyZDdhYmQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T20:29:01Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:04Z" + }, + "message": "Expand showcase with error and warn/error mix", + "tree": { + "sha": "da464d2d9940b7076b157fe6f10e9257c32b43de", + "url": "https://api.github.com/repos/facebook/react/git/trees/da464d2d9940b7076b157fe6f10e9257c32b43de" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5b3fb893b3609953bd1bebfc401a158bd82d7abd", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UwACgkQWCcTbp05\ndTJl3RAAlNVn3qmPYP/gxwMFM825kV0os1FnzmPo2/VUoWLfNlZ1tI5jCmUUosj1\nRP1Kclhix6q39jpWcsdp8CLBw/QrehdSKHEmD7+2OugdOaRGLvPE/z9ou6zCrMxR\nUQfcfG/LDQzFrP8KTe7Nj0/4mezFDTP9X+1Rhs9srNXH3UHo06IZsTcSjLjvMRlO\ndRRIp+PGBApWiNzBZyQDHZ5UiEh+4OlpFT0QayrX0sm4pquwYSNMHN6IQX16h2CO\n7UaZs/2rie0a+rRiKt9yu95A34GBrec0lY6Rm8xs6eaj1AfI/oPLOwWY1veGMiB7\nPcub1vYWhDEyilaG0MMm18QwPUQSW+Vhmaug3mbCEzveu+0Gy8a+axijDEfX9hWG\nSl+G0LsvVsjg07k4+ayXQiox3oJvtalGwF7qzpKBglVzwYqO9c4InsXkh30xRd9D\nBbPnMq7GB5Y280fVrbxWIqVgEzEAFxvyhLHDD+dxM8TASJSiMTPcfayTQrfIV8NB\nj8b/GKmy8M/cDpKc6Hn8hDtCVSUIqZfwCAY/rkVtA61/tyvo2xZc8WwzlhvgvSWV\n9Kg9hUwpTTnpOHZ7qmj5QSQE8pLewfpXetZUt5Z7/TTYdbaV/BhYHJ5QPOoW/AnF\nFA3gd6ze0c6ShgG/o13zGWQb+bVfzxRfMb3GDmL4qB0xaQdk5ng=\n=W+GF\n-----END PGP SIGNATURE-----", + "payload": "tree da464d2d9940b7076b157fe6f10e9257c32b43de\nparent cf3f212b2a387797c59b82fb08da4a547ad641b8\nauthor eps1lon 1607977741 +0100\ncommitter eps1lon 1607985484 +0100\n\nExpand showcase with error and warn/error mix\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5b3fb893b3609953bd1bebfc401a158bd82d7abd", + "html_url": "https://github.com/facebook/react/commit/5b3fb893b3609953bd1bebfc401a158bd82d7abd", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5b3fb893b3609953bd1bebfc401a158bd82d7abd/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "cf3f212b2a387797c59b82fb08da4a547ad641b8", + "url": "https://api.github.com/repos/facebook/react/commits/cf3f212b2a387797c59b82fb08da4a547ad641b8", + "html_url": "https://github.com/facebook/react/commit/cf3f212b2a387797c59b82fb08da4a547ad641b8" + } + ] + }, + { + "sha": "d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmQyYzhlMzM5ZWQwYzc1YjBiMTk3OTA1YTdkNWJkNDllYjg4ZTZjNDk=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T20:46:27Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:04Z" + }, + "message": "Fix missing color error background message", + "tree": { + "sha": "6ba913b9dd1691373a90ab8b56a01c58d5eb46d8", + "url": "https://api.github.com/repos/facebook/react/git/trees/6ba913b9dd1691373a90ab8b56a01c58d5eb46d8" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6UwACgkQWCcTbp05\ndTILJA//S8eYWMq4zsU0SySITqps6UZUy8RDMzJ5b5sDsHfrHRcJdMy1XXiK/kws\nBZO24yA5/iAVqA9eOADjMYKaXo03ax3fMb6apGQHcvXuUE+M7nuGmQKgWuDL7dTf\nslnvMvOMPSKhkMwBrDvxITCo2ouFLSwD1dzWoDfWA+izhZJY6wLy0rn4Vjqn1PME\noN0DXLy4GVueKCqyvL+x8lf2ozYT52ihu5y7DlxEhur9HFIMrCtcNpsRygrgFEr2\nl19C4sJJRKprXUHP2TTQ2+H5tlaXIN2zUC+wI2P00nRzEJ2TZ1OVFnV9ZAM6T62h\nalMaGDWSNjhkcZ24UCSZzBFgNoMJ+6gPMceQVKNZ7QHJqc6Aue4s1CPiH82Scynq\nJz0TwC4LL/p+C/ZVqkUrEUV6PuZulFETk/AeP9lgTzVWChX+R2L7XeLQMqCLFgev\nICK46u1znh6pv/N92fEA0ZMtQA1hRiTS1PWG4ckKBRiR4Zrj7Win+kFX5t0hE5eN\nfxgJw0N46GXsMkS6sBTcaCSbQJ+cTkiB0mXW783oUB5dgDr9zb1KgmLCJ8UUOJ4/\n9o4iVpxFKprVRel3+RMME0o8MGfYtR4hkJA1rlqGn1bcGcorqE7PzL1BwxQ7Yd1o\nWUkQmeguy+cq2LvN9LQ3wgOMwvB3E/2DXu217YoO/YlXNqQcsck=\n=wqWW\n-----END PGP SIGNATURE-----", + "payload": "tree 6ba913b9dd1691373a90ab8b56a01c58d5eb46d8\nparent 5b3fb893b3609953bd1bebfc401a158bd82d7abd\nauthor eps1lon 1607978787 +0100\ncommitter eps1lon 1607985484 +0100\n\nFix missing color error background message\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49", + "html_url": "https://github.com/facebook/react/commit/d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49", + "comments_url": "https://api.github.com/repos/facebook/react/commits/d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "5b3fb893b3609953bd1bebfc401a158bd82d7abd", + "url": "https://api.github.com/repos/facebook/react/commits/5b3fb893b3609953bd1bebfc401a158bd82d7abd", + "html_url": "https://github.com/facebook/react/commit/5b3fb893b3609953bd1bebfc401a158bd82d7abd" + } + ] + }, + { + "sha": "dc92fef4500a214ebb1ff8985686a0338414a93e", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmRjOTJmZWY0NTAwYTIxNGViYjFmZjg5ODU2ODZhMDMzODQxNGE5M2U=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T20:55:06Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:05Z" + }, + "message": "Highlight elements in tree\n\nBefore we had to vertically and horizontally scan.\nBy coloring the rows, vertically is sufficient.\nThough I'm having a hard time in light mode. Dark mode is better.", + "tree": { + "sha": "58c79609ae46c806549ce52381a16d62daef7b94", + "url": "https://api.github.com/repos/facebook/react/git/trees/58c79609ae46c806549ce52381a16d62daef7b94" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/dc92fef4500a214ebb1ff8985686a0338414a93e", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U0ACgkQWCcTbp05\ndTKbFA//Vqo7oZllW97uPrjWh6TZK9koipPsQ6xdiC5M0UeH1mCFv5jafoGPb+RY\nyWz897KcGysQV67F/L+sfKJrYkyWp6oxFkr8vCy8RuIYlPvwltJReLyAdGohr0UP\nzx0IMfvXDE2se2F4mwVPN8BgvEIIYWhPbm6cX4Vbua7ELXfEC+2AxU9PaIv2VqqL\nJcaGgZBbQtcQbcqz6QRKurrW7qFqAUX/xd0gNOn35wT95cvp1sP1sfsSeAdXMsnZ\n+nzpyZmTWkPyebVmHQHPjL3zFhE2apC/EajI+53qOS6NBVSRzaVLv8UCPtfEAEID\nI3X2nyPWrr05YarRGvWoW3YjdvHMRWrb3RcR6ZEKq8/pFYML6xdiPKQyHQuut8yj\nrzROk+QZDW8nAyGUauR6cVL0r8T1UbYHUfUpxlHeQV2d++j6pPjAnJpKo2FuTw1h\nUcPsPsn01DSXZ0trrrohBPeGBuW2JNN8AjyItGfSBbkIWHnKtn1nM5SgTaYGbuAi\nOjhBaBrezGICxuCH9L8B/+iYYF7pJKPp4za3NbOf0xqVdtyuzWNndn79MHv91kj5\nV5PwpiSYEgftEVWrqZ0ViyTyXA48khliKrpfMX0W4WHoNK31PaY/PTxUSU83mCQk\nsndR+mbJNCfcNCfEfPKPWv0tC+Mt2uk42AqWoxgj/RyIkNPtmqs=\n=zf7f\n-----END PGP SIGNATURE-----", + "payload": "tree 58c79609ae46c806549ce52381a16d62daef7b94\nparent d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49\nauthor eps1lon 1607979306 +0100\ncommitter eps1lon 1607985485 +0100\n\nHighlight elements in tree\n\nBefore we had to vertically and horizontally scan.\nBy coloring the rows, vertically is sufficient.\nThough I'm having a hard time in light mode. Dark mode is better.\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/dc92fef4500a214ebb1ff8985686a0338414a93e", + "html_url": "https://github.com/facebook/react/commit/dc92fef4500a214ebb1ff8985686a0338414a93e", + "comments_url": "https://api.github.com/repos/facebook/react/commits/dc92fef4500a214ebb1ff8985686a0338414a93e/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49", + "url": "https://api.github.com/repos/facebook/react/commits/d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49", + "html_url": "https://github.com/facebook/react/commit/d2c8e339ed0c75b0b197905a7d5bd49eb88e6c49" + } + ] + }, + { + "sha": "153358378a13d387622664908e6f4999d3dad55e", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjE1MzM1ODM3OGExM2QzODc2MjI2NjQ5MDhlNmY0OTk5ZDNkYWQ1NWU=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T21:02:15Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:05Z" + }, + "message": "Better spacing for error/warning badges", + "tree": { + "sha": "09433ef98d0b16beaaf96858f70c8726a85e896f", + "url": "https://api.github.com/repos/facebook/react/git/trees/09433ef98d0b16beaaf96858f70c8726a85e896f" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/153358378a13d387622664908e6f4999d3dad55e", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U0ACgkQWCcTbp05\ndTLIKxAApx7VI8mjQ51Mp1/JeEiwvTXpvYFJ4GNEtkjityfj6n6ebtEAUm//4iUV\nz4N1UvTw4EpX+0IDHa7vebzL7FR7ui0Nv+OrGob/kTX2C0jYji04gKwq7cItlC9R\nufuhqKKiR/NoguUSDNJcf/MjKR6/hGFzQT+tvHpQX6B0gQmdQKnVJ85Njx1tH8Li\n+EVkUXsBjlHnPX5D93XerYKWBNNm73GXYg/8bmLe/Tx0pDYW/IH9n8Ymkl0C6+NR\nPCAlGUzpaDyw768weq5jWwTQ7qqvdAYYFhz5/0xFVlVnfZD4ROK4ITZgsHGzMe6M\nkkjbEikjBkmrcXQQo/RIHVykqdVojzH93vPrmGYZvx8xYL5X87sSTzuVHsTwVMe5\nlwsuMWhWC++mBzU9+rewTe1Evsx2mBJGXanCNYfAcmKnIqgkCDRn1ayC8FOsYCq0\nrwPqSDse/FwQkEURmsY3kwlWZmqN/J0otLVFYBOYH6l3c07DtNJCaKj+Bd/xQnjf\na5U6SIa6LZJbCmD1linPsvNfmjsDCKUSLHPRbM8zUar7qcjWlov+kNj2294976ko\nxtmplLia2bVa/8v/zd0zkOhsM2NFaAXDdpKbSfsJyjMyHfCUUIIGer05noA63KTX\nrWSv8oJm2bWLBaJeyLJK6ru6qBt3WvHflmedMdvBKo+ZnkdYNF4=\n=pAoN\n-----END PGP SIGNATURE-----", + "payload": "tree 09433ef98d0b16beaaf96858f70c8726a85e896f\nparent dc92fef4500a214ebb1ff8985686a0338414a93e\nauthor eps1lon 1607979735 +0100\ncommitter eps1lon 1607985485 +0100\n\nBetter spacing for error/warning badges\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/153358378a13d387622664908e6f4999d3dad55e", + "html_url": "https://github.com/facebook/react/commit/153358378a13d387622664908e6f4999d3dad55e", + "comments_url": "https://api.github.com/repos/facebook/react/commits/153358378a13d387622664908e6f4999d3dad55e/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "dc92fef4500a214ebb1ff8985686a0338414a93e", + "url": "https://api.github.com/repos/facebook/react/commits/dc92fef4500a214ebb1ff8985686a0338414a93e", + "html_url": "https://github.com/facebook/react/commit/dc92fef4500a214ebb1ff8985686a0338414a93e" + } + ] + }, + { + "sha": "4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjRiNDZkOTRlYzk1NjRkYTBjZjBiMWEwZWQzMWViMTdiOTJkOWQ5Mjg=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:00:34Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:05Z" + }, + "message": "BROKEN Implement walking through elements with warning/errors", + "tree": { + "sha": "9b025d9189a20a8e5d961594db35eedd56ea5957", + "url": "https://api.github.com/repos/facebook/react/git/trees/9b025d9189a20a8e5d961594db35eedd56ea5957" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U0ACgkQWCcTbp05\ndTItug/+JpAKHZaauHeA96YxvpX7xj7X6SFaHbZwbEwhaB3NWK73uCvJdjXb6MuS\nGY6vQEmLMcUTiaGKLWsPZpCTX2sbZItk1Fdf8U6N7JbxngGLPeHqSEmoSqPspGem\n0ZEEBkCAvZY6QJkcZWu5KMXHyDJq/I8022BauD5htz1Clnsk++/XGurfm89rUR/J\nvG0GUiJBnX8Yxd0M/edQUQByo1z5wyDIzx7rW3aW9aqw6NODGz4FxoI1lkvQL9NG\niXRWQG7xn1UWQOxZuH08tE3/NOvk5XUSHf2w88fs8mW5OFXNPlA7CqjGjp80grLj\nVwDaHsN7PvHvKQd9arUITnJ8wr3egkxtQJy7NatkEK9KEGOpNd2/7J0PO+QBxBIr\nYDs52N9VY0HWxkwPWmDwYdEtI1mv/Ldi9vq5a9+W7Pg2eZ1VdAmEkhuJOf49tIgj\nPgH+jMkSiJhCuPnMk6/tKI/FoJ9GKgAut7LTVPvyelWCg4707ijcdaiYGxBfXlKW\ntEn6pdi8rsv3CtU8i95Pe6x03F0TEtVQfq4FnlygkQMbKyE/Ao2hIpMva3xGmaQm\nyLeNGSgMenObMa7rTQwt5I/J3pYTES6y8q6JHbcuv7bwyI9jw656EryPwghv0ECU\n+glDCs7TwlLWzQ00i33uc5oxiQIEXnZhLsiyLj8yr8+Pp4tkd10=\n=I6Vf\n-----END PGP SIGNATURE-----", + "payload": "tree 9b025d9189a20a8e5d961594db35eedd56ea5957\nparent 153358378a13d387622664908e6f4999d3dad55e\nauthor eps1lon 1607983234 +0100\ncommitter eps1lon 1607985485 +0100\n\nBROKEN Implement walking through elements with warning/errors\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928", + "html_url": "https://github.com/facebook/react/commit/4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928", + "comments_url": "https://api.github.com/repos/facebook/react/commits/4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "153358378a13d387622664908e6f4999d3dad55e", + "url": "https://api.github.com/repos/facebook/react/commits/153358378a13d387622664908e6f4999d3dad55e", + "html_url": "https://github.com/facebook/react/commit/153358378a13d387622664908e6f4999d3dad55e" + } + ] + }, + { + "sha": "ae89ee8e16a94f5333a17ce950dcd4cf001033cc", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmFlODllZThlMTZhOTRmNTMzM2ExN2NlOTUwZGNkNGNmMDAxMDMzY2M=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:03:36Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:06Z" + }, + "message": "Remove nullish coalescing which is only used in the scheduling profiler", + "tree": { + "sha": "ca68f511c06b6f137e01f131e31dfc76ad366d9d", + "url": "https://api.github.com/repos/facebook/react/git/trees/ca68f511c06b6f137e01f131e31dfc76ad366d9d" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/ae89ee8e16a94f5333a17ce950dcd4cf001033cc", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U4ACgkQWCcTbp05\ndTJ51A//Q5mdYqrLd1tLHlSpod5eVi2MW5bk1rkUvIjbOZNOCN8Afr5r4ieV/RNY\nzrJs4BfGgLiaziIYL9lie7xnnjQzIhpoOXQos+4GVx89v9wWVs2Htscse770E/1F\nWwBkyToHNFM51JKRG/FjEaRLCIzMDWpzsiSDabkw0yM3YESLHF11RZ7VNqKCnfzY\nLFWUS46FnPPKyaD1aoPjJIOE9W1D3rFGe57exIgrTh9HcPuGYxCxCxsxU6E4cWLI\n9OF4WFOYHQ9J66qpEjUXHuFR6Gk9LJ11SSObT7loxMuLoOcKBvL4KxTPtoZf/C3r\ndLvXkhkWd0sq/muazj6SmTRboO7l9oiGvU+D5XHwDGvaXi3Tid9Hjhl4QDLA+ftW\nLbPidihELlWyT9/JC8Piq7sxdjydGeBO7rSIGu42JqiRXnB6Fr8GapcM89JA07Mm\ndxbfcVrMo07A0PN1WKm1s6NTsQtZ3Se3kmGlB5ZAE5oMylJJvaEensPdlQq19ROt\np4iAxX+P7ZzJ0DiywR/KJQxj3+XLQsYlsqNHGsTHpZYJR5tcqmCAikjRYZk98tP1\n1iCt24eZMj4cHlNzQhyOJQnYgg29ezhyd9LHWHl65utDVSzx+nv227kWLJN0Rrk4\nghk8R0TCQJU5IHW1ybk5CWS480wAvFc3D1MCTQYNwOiM/GaVidw=\n=Fnie\n-----END PGP SIGNATURE-----", + "payload": "tree ca68f511c06b6f137e01f131e31dfc76ad366d9d\nparent 4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928\nauthor eps1lon 1607983416 +0100\ncommitter eps1lon 1607985486 +0100\n\nRemove nullish coalescing which is only used in the scheduling profiler\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/ae89ee8e16a94f5333a17ce950dcd4cf001033cc", + "html_url": "https://github.com/facebook/react/commit/ae89ee8e16a94f5333a17ce950dcd4cf001033cc", + "comments_url": "https://api.github.com/repos/facebook/react/commits/ae89ee8e16a94f5333a17ce950dcd4cf001033cc/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928", + "url": "https://api.github.com/repos/facebook/react/commits/4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928", + "html_url": "https://github.com/facebook/react/commit/4b46d94ec9564da0cf0b1a0ed31eb17b92d9d928" + } + ] + }, + { + "sha": "6e41fc1b8d93a412616afab74e5e5a6791ee7ec6", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjZlNDFmYzFiOGQ5M2E0MTI2MTZhZmFiNzRlNWU1YTY3OTFlZTdlYzY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:09:24Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:06Z" + }, + "message": "Bail out if we have no errors/warnings", + "tree": { + "sha": "fa08c38ebd2d1fe856dc06ea1ae7a3d3e6e331a8", + "url": "https://api.github.com/repos/facebook/react/git/trees/fa08c38ebd2d1fe856dc06ea1ae7a3d3e6e331a8" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/6e41fc1b8d93a412616afab74e5e5a6791ee7ec6", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U4ACgkQWCcTbp05\ndTKj3BAAqBWpeYJItj/mLnCQyd4X89DBdbvsbLzpBVzmVEpAmN4HHkdQ7rkfhY4/\n1xw2HsSGHXKVOlSQj4YtEstHSvhVTE2OMKk4L+5LiEae0BsQ2XQdTjE4TWAW///6\nrttAyoz6W8cUP8Gx/CUgE+FEdubjlV6VJcL3c0aA4nw4pNPug9Jma+6JqU8e+LFH\npWfXy4oe0C+BntlPVz2Nya+VvGWfSJZtMUGW8Uq6m2keIoTTSLqftcHXrvGVJpGb\nn0F6NTPBsHapebpS0IlAM3ybXj2prqre6SELqQNWLbUeEXD6c7uxS6213ortwFfg\nH2vUqOnu7xxmSUn+Q9Zl9i/gv9zVo+V7D+jAJeYdiXKzjorJS4CWbHkgDAmOOymI\nFfeWYSSOlU1gP6zelCFt1ZF3IOYiBQaSMHkzhYzVu6bdWUr3IPdsovFzyvO8GCj0\nHGaHrmfJvitkndAPtzkwxdvk9o1+Y8gfl3hz8THo7RWjT8QIaBwQFF46+xsSxu18\nUNbGyLldSii178BHSDNAlGavKyO7fR2N62u51fYfd41rUWJzmFRuhzVr+ZVP8pN+\nyQz9yR4VRk0JY13X3z0G8QpdyK/+kWH0bICkJD8+zhbgx0I3Mf5FG8UlIgxsPBmX\nqo+4a/ztLJAblEV8WIdUG1ZIJodKu/04w/Ls4znY3yxdocur2BY=\n=ZEW6\n-----END PGP SIGNATURE-----", + "payload": "tree fa08c38ebd2d1fe856dc06ea1ae7a3d3e6e331a8\nparent ae89ee8e16a94f5333a17ce950dcd4cf001033cc\nauthor eps1lon 1607983764 +0100\ncommitter eps1lon 1607985486 +0100\n\nBail out if we have no errors/warnings\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/6e41fc1b8d93a412616afab74e5e5a6791ee7ec6", + "html_url": "https://github.com/facebook/react/commit/6e41fc1b8d93a412616afab74e5e5a6791ee7ec6", + "comments_url": "https://api.github.com/repos/facebook/react/commits/6e41fc1b8d93a412616afab74e5e5a6791ee7ec6/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "ae89ee8e16a94f5333a17ce950dcd4cf001033cc", + "url": "https://api.github.com/repos/facebook/react/commits/ae89ee8e16a94f5333a17ce950dcd4cf001033cc", + "html_url": "https://github.com/facebook/react/commit/ae89ee8e16a94f5333a17ce950dcd4cf001033cc" + } + ] + }, + { + "sha": "8de25ff9481f5bd960d589841fef88a475b68daa", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjhkZTI1ZmY5NDgxZjViZDk2MGQ1ODk4NDFmZWY4OGE0NzViNjhkYWE=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:18:08Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:07Z" + }, + "message": "Hide inline errors toolbar if there are now errors at all", + "tree": { + "sha": "a67553f215c55ddbd6e2349f6006bbf294194e83", + "url": "https://api.github.com/repos/facebook/react/git/trees/a67553f215c55ddbd6e2349f6006bbf294194e83" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/8de25ff9481f5bd960d589841fef88a475b68daa", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U8ACgkQWCcTbp05\ndTJ5hhAAh9du8gc+wYbu/VxxN6oWW9tiXxaNSoeM/x2nd+KZDXXS1nVGMdmNdHv0\nIGHagynw2XVlv8PnV9t967avIIy6AmQRtOo4tjuIod9YKcHzovxVgTqOUlualMmk\nUfrQKNeFioHoaUuOcfOt6pP7XtU5N3V98PJnWliSceOrziZFzqy9Zy/qeT5kOTA/\nIaAx145+Uda69u/wzg0MrvGIqpONGrNDDzwx3WT6ZpfRm7/SjCpNmJQi1tj4v7s9\n9sGWB/YNng/i0cQzodI7M3JxxElEhDoVie7ebLMsVoU+2erGuf0qS4kC20AtdndY\n7pRlOBFpsSS3JjA2Fft3GEwH1BNlzXm9dMG8goWnQ/aWmt9uIlY6QmhHuGV2QNwN\nmZMbacTgWeKR1da91lntVu+DW1IpFQi2KEzGkSpiKl5vV/OMYGAK++B9Irt76tYW\n//l+nThWGAvNKE46Kf0wMu7j0XLBXt1Y7BQV0J3SU9VbAfFAE9XN7NCxPs9pU9LN\nCLRc3SgEhbXPgwisZmP/z/Grld8NJWLLfOB+2LsPqyjq9KrtNwCpvchK2MXDDpc3\nXDztE7t6YZ2CjuL2qNNJGIS41fYy8KTzlEs44qruqBWATba0JU+5g2AE6XqzJZdq\nSWuP2boSXoKNyUbh2IzFnrRXz4utlye5K+jI3NN7I9o+4WUjuv4=\n=Jotg\n-----END PGP SIGNATURE-----", + "payload": "tree a67553f215c55ddbd6e2349f6006bbf294194e83\nparent 6e41fc1b8d93a412616afab74e5e5a6791ee7ec6\nauthor eps1lon 1607984288 +0100\ncommitter eps1lon 1607985487 +0100\n\nHide inline errors toolbar if there are now errors at all\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/8de25ff9481f5bd960d589841fef88a475b68daa", + "html_url": "https://github.com/facebook/react/commit/8de25ff9481f5bd960d589841fef88a475b68daa", + "comments_url": "https://api.github.com/repos/facebook/react/commits/8de25ff9481f5bd960d589841fef88a475b68daa/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "6e41fc1b8d93a412616afab74e5e5a6791ee7ec6", + "url": "https://api.github.com/repos/facebook/react/commits/6e41fc1b8d93a412616afab74e5e5a6791ee7ec6", + "html_url": "https://github.com/facebook/react/commit/6e41fc1b8d93a412616afab74e5e5a6791ee7ec6" + } + ] + }, + { + "sha": "3560c40a81d69918c6017a155ec13ef47b4a4009", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjM1NjBjNDBhODFkNjk5MThjNjAxN2ExNTVlYzEzZWY0N2I0YTQwMDk=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:20:02Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:07Z" + }, + "message": "Remove outdated todo", + "tree": { + "sha": "dd8fc9eaf1929b7afde1ad865769de0bf1274f02", + "url": "https://api.github.com/repos/facebook/react/git/trees/dd8fc9eaf1929b7afde1ad865769de0bf1274f02" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/3560c40a81d69918c6017a155ec13ef47b4a4009", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U8ACgkQWCcTbp05\ndTIxJRAAmImF6QdGgSxmKjl6e6IXg2oZy8raGAyfd+pXD3k8I/XBTYB8dwNI+UUA\nnhB9YXD0rY7Pjz8I8kstYT0NVEUKUbFhQiG8XIVomg0sb5kkx8TwgleQTBrdRme8\nKV5AjGs8c0NoDFV6qjsK/d6TvkOrCVSr2YIg9gH55qByy+wfsDbLH/ZtoeyQaeYC\nvPUGHbHC3UBeSaYk7BY3RnoEe+j65Gbqwf4q4BYgX/PyrDy8RMo0743jB7FhURI+\nWlD33UN7BUAjBprOgcmEau9l34rhhTmKREr5Hedtw4rfxNCMLFwrvpSkwTnGXZJp\nV8GizbC+3ahon8YmGHBFj1Z4RlhrIwqN/96rFqq38Rxu5TiPnxtfE3bOrFCGdqgz\nhA8HQfobR1serxHvmK3mQ28GeFlL2Ymva7IgsEw5ELj6YNIx9sx75hETnms38X7F\nd36W2T+XJl70wkch0gnUPFYAk5O6H352vNExhevvSD9X7ZN6qlXeCmmO26rc85ZF\n56gDjtBe893e4TBovcEItyaoRHRlaT/fqq/3K8pmCTH5jpi3JDFYNxnffgIUMFA5\nhwl1fsb08HmS8wBi0koYZPmNjGADln/YRznMX8proNDTq+RlhBjmh+I3tfMbnDIr\nhOVc51lcYpy7bYNL82RvAzof32lxGhFSsXtM4tNCo1uFN2iaokc=\n=cRE7\n-----END PGP SIGNATURE-----", + "payload": "tree dd8fc9eaf1929b7afde1ad865769de0bf1274f02\nparent 8de25ff9481f5bd960d589841fef88a475b68daa\nauthor eps1lon 1607984402 +0100\ncommitter eps1lon 1607985487 +0100\n\nRemove outdated todo\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/3560c40a81d69918c6017a155ec13ef47b4a4009", + "html_url": "https://github.com/facebook/react/commit/3560c40a81d69918c6017a155ec13ef47b4a4009", + "comments_url": "https://api.github.com/repos/facebook/react/commits/3560c40a81d69918c6017a155ec13ef47b4a4009/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "8de25ff9481f5bd960d589841fef88a475b68daa", + "url": "https://api.github.com/repos/facebook/react/commits/8de25ff9481f5bd960d589841fef88a475b68daa", + "html_url": "https://github.com/facebook/react/commit/8de25ff9481f5bd960d589841fef88a475b68daa" + } + ] + }, + { + "sha": "45f756236f782b8891261661b40270416e2da48d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjQ1Zjc1NjIzNmY3ODJiODg5MTI2MTY2MWI0MDI3MDQxNmUyZGE0OGQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:23:22Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:07Z" + }, + "message": "Add keys for error/warn messages", + "tree": { + "sha": "d2d4806c4d3aa1563cb6694346da036ed47e4340", + "url": "https://api.github.com/repos/facebook/react/git/trees/d2d4806c4d3aa1563cb6694346da036ed47e4340" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/45f756236f782b8891261661b40270416e2da48d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6U8ACgkQWCcTbp05\ndTIsFw//YwSpF1agJPGUfcU84geZRb0qwiBp0NhNZC9bxg+KGIYpNDJE4mOIS7JU\n3y8uyb9vNTzjfqSgPUu9VgMIi1tUS7NgT1Nvks2Tf7zNCwvem2pmd/bzzFSp2PE6\nebJ9VCgJD34luuc8u7HuSXxyZR8RF9dUcI7TOKD7aR9Jd+AXM2YkerfpT5e8SIFC\nbYv8F86JHe/n6v67TKSUESdXv29LhWVuIIs1K8MG0lvZzjwcroDwVeodyTCWaIBY\nToI6BAaqXNQz6WoahBKWN2N4YM2RI04nmQjjGII6f9ZiiRDzSUyHmhfo7V5wFu0W\ngdkrPvuLR1UqjF1gFpFJK0GSX93JMPVB7Ha8xuW6v971QQ7GDTBgPJSQ3JcFAYw+\njFM8cPk48I9DSogv2cQccNZGG4Q5HTN/MQ7fWTB49TydkyV71psYvDltjBuGgJHk\n3yb2cnMPcOM4GW/CpHU3GgCAxn4nJOzl25b3r5BuZeWYyGg719CEZ3sQ0vIPjGz2\nWZjhUADXqOXc9AyXydyCx2vwNPSqvHVQAx8l2qOXkrxSP6OnH1b1qHTDEYCdM7VT\nV10Lc8mVC6/IBEfBrujNdNS1hcUmYw8O1REZXqFxzc67TtVQaXXnaIGdkRHK0QEO\nUHHvl7nn9MYv9Y4uuCdSBVlXZv/JwYikwUuqI9pFEanIrnzKzEk=\n=P31U\n-----END PGP SIGNATURE-----", + "payload": "tree d2d4806c4d3aa1563cb6694346da036ed47e4340\nparent 3560c40a81d69918c6017a155ec13ef47b4a4009\nauthor eps1lon 1607984602 +0100\ncommitter eps1lon 1607985487 +0100\n\nAdd keys for error/warn messages\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/45f756236f782b8891261661b40270416e2da48d", + "html_url": "https://github.com/facebook/react/commit/45f756236f782b8891261661b40270416e2da48d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/45f756236f782b8891261661b40270416e2da48d/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "3560c40a81d69918c6017a155ec13ef47b4a4009", + "url": "https://api.github.com/repos/facebook/react/commits/3560c40a81d69918c6017a155ec13ef47b4a4009", + "html_url": "https://github.com/facebook/react/commit/3560c40a81d69918c6017a155ec13ef47b4a4009" + } + ] + }, + { + "sha": "1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjFkYWZjM2I2ZmIwNzZmZTgzNzZjNGMyMWI1Y2JhNDBiOGI2YjViOGQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:35:07Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T22:38:08Z" + }, + "message": "Diff cleanup", + "tree": { + "sha": "81b3503d153a5bd1ec06d17c8d8da568339c0337", + "url": "https://api.github.com/repos/facebook/react/git/trees/81b3503d153a5bd1ec06d17c8d8da568339c0337" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X6VAACgkQWCcTbp05\ndTIggA/9FW+7D4SyiWOb72z7WVDnP766KZc8hayVRjxFymHkGCBrGeFo/e+yqlGi\ntVTiz9Uvy+pUj5toyThvxg1JhDKZfk24pxUDKjwlm6LIjoTfwe8HjOpkwi9wTmpV\nmbfR+uZNWsDhCF8uhazIaugKCgVwxgFHy2WTvJYE0+RU32u98KoxkMpSO60unam/\nJVJqPgRfubsTNvLtb4824LncxXJfCXLm+o10lFeezcQxq1HcjBkvv/OuRsRPzX8T\nlJstYgd7SjqPAK3el8Iv2a8DFMom/zijQCvDSUHV+hMVI/8l4/s29MQOZxW8pZmR\nYgA27aCUlXX8SCmu0InmJZ0JNHqavO9zXJsavdX8dZmFQqhprdcbvNqYUFmx4U9N\nvV6nDA0bONRoo1uM69nlQBu38nIimrPyAZY7/ZPsWA/ZugIO7KQ9bQjvagtiNB/y\n4cSDsyEvJepcUmSjaYh22P7nM6LAIy4YdLiHF+HVpp9dCSkHajqD7KweoW39JcHu\n4UFERLIp0NXMr01esFS6kz5n0p706glaGi+TTx5QbCfY+yg7XyO5kxjHMHR+asg1\nWufWth+PE8JPofvMSN7vewI5s70w8lYmN5MYU7RiiBzO5cC79wRDILRNEXnV/lqK\nmDlzr6efExJmIsT1nJuXcWXR6PtTcBobkFC8kMlrq2pRvb7jchc=\n=qxgt\n-----END PGP SIGNATURE-----", + "payload": "tree 81b3503d153a5bd1ec06d17c8d8da568339c0337\nparent 45f756236f782b8891261661b40270416e2da48d\nauthor eps1lon 1607985307 +0100\ncommitter eps1lon 1607985488 +0100\n\nDiff cleanup\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d", + "html_url": "https://github.com/facebook/react/commit/1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "45f756236f782b8891261661b40270416e2da48d", + "url": "https://api.github.com/repos/facebook/react/commits/45f756236f782b8891261661b40270416e2da48d", + "html_url": "https://github.com/facebook/react/commit/45f756236f782b8891261661b40270416e2da48d" + } + ] + }, + { + "sha": "e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmUzZTk1ZmJmNTY5NDdhZWRhNGM0MTZhYzkzZWVjNWM4YjBiYzRmMzg=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T23:03:44Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-14T23:03:44Z" + }, + "message": "Fix flow errors due to missing type narrowing capabilities", + "tree": { + "sha": "c5d6f2936a23a95b16b990bae912c6e371c4db62", + "url": "https://api.github.com/repos/facebook/react/git/trees/c5d6f2936a23a95b16b990bae912c6e371c4db62" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/X71AACgkQWCcTbp05\ndTK7yxAAqa1ao5GaJPrTn+2jFlxpPWVdS/yU2TbyocumsMGNsxCMXAqMp8NgLD/2\ns6Qb22F+i4mdjppqU2DMyDc3+bG0hmPzW/9FB28UekjayTfp6CaO2COq86khrFMa\n+tqva15adFxz5UEx5rSREeQ1M8b0YSaJiCPxaBpEF4+RzN37RGqZev+emMGtEfku\nWE+lM8i1Sr/omRGG+SnbfkOCA3AlBbBqskhnkBy3JGEoESWMULpL8kF+MTjB1k8u\ndC0ft7CLyv2wh2kXM3qOa5s5qsltxBn6u4elDAmTEpcDOA1627czPKR2MvKP8RCv\nayVvEipcENBYAMGc82XDoY0GGN4AL1NxIblvYQ3pGVszYLEMKb1SWLqned17dpYk\np804d7Bx805amuhwWrmHCDyhN56xHUflW9omqEkaUwDT+DlbYll2p8F4Yl6TfJE/\ngbXpKvPytP+7Nl/ivexgLrKFajvWv7v6EYcciiVBjihROdprDJEzM1mttDVd4WuN\ncyTx7Cxz1UDFxiNnmLqqVpUt3hCtt9NWfKsytii2lZAT85U4QEAFaUF4Lj0vWJRu\nUwBJBhNVp3evjwKzNFCQgUdmnbxZFz0H9DFROtB88DSfs4FrfX40oAsp1vNYvW89\nJmTFIvQ9fpdE2f1H9ouWmLZ3OLCxR4GudrMmUxId3SxnkQRbNJ4=\n=BoOB\n-----END PGP SIGNATURE-----", + "payload": "tree c5d6f2936a23a95b16b990bae912c6e371c4db62\nparent 1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d\nauthor eps1lon 1607987024 +0100\ncommitter eps1lon 1607987024 +0100\n\nFix flow errors due to missing type narrowing capabilities\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38", + "html_url": "https://github.com/facebook/react/commit/e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38", + "comments_url": "https://api.github.com/repos/facebook/react/commits/e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d", + "url": "https://api.github.com/repos/facebook/react/commits/1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d", + "html_url": "https://github.com/facebook/react/commit/1dafc3b6fb076fe8376c4c21b5cba40b8b6b5b8d" + } + ] + }, + { + "sha": "2aafbdf7718d1f25e1c69d738183db46aec09d12", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjJhYWZiZGY3NzE4ZDFmMjVlMWM2OWQ3MzgxODNkYjQ2YWVjMDlkMTI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T14:19:08Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T14:19:08Z" + }, + "message": "Match UI of Search", + "tree": { + "sha": "2198afb099ba7da9a6753d7ade9f423be3117c6b", + "url": "https://api.github.com/repos/facebook/react/git/trees/2198afb099ba7da9a6753d7ade9f423be3117c6b" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/2aafbdf7718d1f25e1c69d738183db46aec09d12", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/YxdwACgkQWCcTbp05\ndTKf+Q/+Mk17VtK8Co6pzgkdc67h9M4mHESSi8OZXLDALEGCuUOmBL8lvpcV0y2O\nykyCE2usgTAbZnhoaulYpSHYXCfEYPi+QB1aSuBNfj3UBqQH//IOdvi/QE15SYLn\nq+UcUN0uVV66ZcWU3tp+piVipGrXjR4G4VYvQ1hdgnG5fgdTkHn9YEtW506J2XKU\nk2rFpICUghjvYaFTfwnTbXDtqAjolSDh0V/nL2jLGeltQcwZWSzJ2FA9fKzclIBd\n6gdzVnCb2h1ZXdpvutHe2HuuDbRyBnwM0n7ymY0LrdD41OISKzFP0qXS94jGkfbo\n2CvrPa4IIsErHMYdrNXlzaH3f7jIEIc7kj9tZ7JMoS5AmO1nOCcvB78Kr+3zZYDt\n62461+NHIpKwqaIGHjgNZKyThGh/iYkRJocCtDYyTVX91Vsr2fNTH3MzHNWl/CXt\nH9dRYSMtWjhrOirKp9IwPCRHhjCVCQN0lbmEfJa3Bm9ob0MISZXT/zbSIYkXom7G\nSruYUwN4LNMzQ2PXOnWG/gmxJlplwFcPhnye7G66tLp0NEFYsqX1VUF2v9MwxmPb\nUECcxnqlbHCEs9XE7cH90c6/lGb3G2jIzWsvkAOhsTc5yj2icFuIpRCh6dEWygu3\nMNlsDVnmjRW5Ray02adefebc1v7cS0BK0K6AE9a6z6ErQ0w1MAo=\n=FT9B\n-----END PGP SIGNATURE-----", + "payload": "tree 2198afb099ba7da9a6753d7ade9f423be3117c6b\nparent e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38\nauthor eps1lon 1608041948 +0100\ncommitter eps1lon 1608041948 +0100\n\nMatch UI of Search\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/2aafbdf7718d1f25e1c69d738183db46aec09d12", + "html_url": "https://github.com/facebook/react/commit/2aafbdf7718d1f25e1c69d738183db46aec09d12", + "comments_url": "https://api.github.com/repos/facebook/react/commits/2aafbdf7718d1f25e1c69d738183db46aec09d12/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38", + "url": "https://api.github.com/repos/facebook/react/commits/e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38", + "html_url": "https://github.com/facebook/react/commit/e3e95fbf56947aeda4c416ac93eec5c8b0bc4f38" + } + ] + }, + { + "sha": "64ad2e25324016e94167d6d1d29f07e362fe221b", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjY0YWQyZTI1MzI0MDE2ZTk0MTY3ZDZkMWQyOWYwN2UzNjJmZTIyMWI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T15:44:29Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T15:44:29Z" + }, + "message": "Match UX of Search", + "tree": { + "sha": "52cdc221c9bd96052c372eb797b6e4660b16c20f", + "url": "https://api.github.com/repos/facebook/react/git/trees/52cdc221c9bd96052c372eb797b6e4660b16c20f" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/64ad2e25324016e94167d6d1d29f07e362fe221b", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Y2d0ACgkQWCcTbp05\ndTI1tRAAtLxkPWmdCW+SbjTAvKChiaNvcAop4zB6qxRq4TcUVZNRT7L2gH9d6Yi+\nT6ekMhqms26EMECnBx5Lh4CiK8E1IK5Cg7GomLjkracsl55ZKUB6AgcenmEayNY1\n0llW/izU5Wsp+rk7Ex50JHTEa9Bn6yzp67sfNKHw5sgZLsJixZqaWXIlOdxQcivQ\n8q89lP/xJ6d419iZ5YJd9Fvx0fX6vtM1KG5elZ4wY34YvLSdaLjZw5NANRcG7c6h\nt9n8rXw2szRqPKIPLpSKTM8p2mwohrT4HI4oPLhyRYn+v8vdkLRWeAM3as/z2GaU\n749++iW4D7uaJJWEUKuLMTGP6SKjK9q2s4YlAiTykXaVqui1GvTr404hp/IPsqk8\n93se1GhRZya+L1XNjK4C4eCbP8/mDuX/aCdIuEGy74LJC8qfMY4DInULzBIPaLv/\nviMsgDdUsmzESifzzgWe7b+M6UAeEAkfO0q8RuVV+r4X3hIPuYMAq0sXTAz02vRa\necyvRMCtO8e99q+gF2x0hPCNHOTXijzOfWQk0nZB11m/2tbSXMkXVYIuhxlzYpdO\nylzw7v6Oc1m2Es3uDW1zx0WRRytsZc699KJXY2xd4jiBPQSV/DYET90V0c0JA3yi\nfDsEib3b1ZcgvTPanuFhakY5+DPau5nH8Y813PwBfk0LpM+qUno=\n=Hqdz\n-----END PGP SIGNATURE-----", + "payload": "tree 52cdc221c9bd96052c372eb797b6e4660b16c20f\nparent 2aafbdf7718d1f25e1c69d738183db46aec09d12\nauthor eps1lon 1608047069 +0100\ncommitter eps1lon 1608047069 +0100\n\nMatch UX of Search\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/64ad2e25324016e94167d6d1d29f07e362fe221b", + "html_url": "https://github.com/facebook/react/commit/64ad2e25324016e94167d6d1d29f07e362fe221b", + "comments_url": "https://api.github.com/repos/facebook/react/commits/64ad2e25324016e94167d6d1d29f07e362fe221b/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "2aafbdf7718d1f25e1c69d738183db46aec09d12", + "url": "https://api.github.com/repos/facebook/react/commits/2aafbdf7718d1f25e1c69d738183db46aec09d12", + "html_url": "https://github.com/facebook/react/commit/2aafbdf7718d1f25e1c69d738183db46aec09d12" + } + ] + }, + { + "sha": "826993e4badfde5e687978798c286c44e7b7b45d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjgyNjk5M2U0YmFkZmRlNWU2ODc5Nzg3OThjMjg2YzQ0ZTdiN2I0NWQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T15:48:24Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T15:48:24Z" + }, + "message": "Resolve todo about args copying", + "tree": { + "sha": "63a75c0b39b52f884be09989e2d6b9275838cf1a", + "url": "https://api.github.com/repos/facebook/react/git/trees/63a75c0b39b52f884be09989e2d6b9275838cf1a" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/826993e4badfde5e687978798c286c44e7b7b45d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Y2tAACgkQWCcTbp05\ndTJK3g//W3CH0gs+ZWavsXv1J/Tt1bVuO9HQJ8rGNwCx+yN4zL0Jb22GM1wR3IOG\nZWA9uIlD6rIEWEuoNc/d4tft7kY9vGAn57xkIXaUcvcV7mUABxWYtTPPhRI7UVti\nThch5gu1OBFTB1ST7vtce3C03xw+wik/lto42baMGlSGzcRXqAFWvaSp/CtBznlU\nRtZOwuUHe6CMHUF/aU0+8YYrhmQcspB1qCAXwuwG+2wqtvbX2cO/uUzl85AAaIH9\niuXweHFIvlGKpJ+XUROf5SgdTAXiEyTdA2KPZCXldY9x5ONzJyG/8x5fw4MaMMk4\nE1gx5OqMmCMHh63LSCFoBb9TCSCwj8Qf/DKg39B2qu2BZPGjaDx1ZEXqi5dngWc1\n9VELKmceKmsTJR4kOIFYOUuRCKOdJb27kIw9AS63XuQYMSHNfCV2ZCViI4Qv4kvH\n647CkI5wfOTvbmXGTDZ0padwxJepbf0g2bMNdZATIcXOonGsqfynKXdurxAL9U+o\nLZqzUtfNZDjEpdWKZKMXc8K2JlteShdUHqbWwnVV9L/1Qz8nAjbaP0qtuCDa/VWQ\nC/PGnNTNSM5da0+Zy6ueQNkKCNp2/32f7CfhwvGad3/ULbSEzrbMqjSNumI6KlI8\nIr7IcZ1UBTeqtBPxwXUhCxw+DNKCgjatIx/Cpymn0tyKbTRcfRQ=\n=V8rz\n-----END PGP SIGNATURE-----", + "payload": "tree 63a75c0b39b52f884be09989e2d6b9275838cf1a\nparent 64ad2e25324016e94167d6d1d29f07e362fe221b\nauthor eps1lon 1608047304 +0100\ncommitter eps1lon 1608047304 +0100\n\nResolve todo about args copying\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/826993e4badfde5e687978798c286c44e7b7b45d", + "html_url": "https://github.com/facebook/react/commit/826993e4badfde5e687978798c286c44e7b7b45d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/826993e4badfde5e687978798c286c44e7b7b45d/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "64ad2e25324016e94167d6d1d29f07e362fe221b", + "url": "https://api.github.com/repos/facebook/react/commits/64ad2e25324016e94167d6d1d29f07e362fe221b", + "html_url": "https://github.com/facebook/react/commit/64ad2e25324016e94167d6d1d29f07e362fe221b" + } + ] + }, + { + "sha": "eb9c4ec42dbe937b5dd93db06e5c74a41838763d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmViOWM0ZWM0MmRiZTkzN2I1ZGQ5M2RiMDZlNWM3NGE0MTgzODc2M2Q=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:28:02Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:28:02Z" + }, + "message": "Remove excess vertical ruler if no errors are recognized", + "tree": { + "sha": "6d7cb67b555f98bfaf87efb7456c452880d8ec4c", + "url": "https://api.github.com/repos/facebook/react/git/trees/6d7cb67b555f98bfaf87efb7456c452880d8ec4c" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/eb9c4ec42dbe937b5dd93db06e5c74a41838763d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Y5BIACgkQWCcTbp05\ndTKj1Q/7BUmr707T7dngikOz9wLtXw4pxZN+jmQD9UXAkDsrB+zaFirL62wgEXd+\n8Kh0SaA9XXzKi3nMqR6De0SuobiAgfQ/DTfF0gYbJ3Gx1djKqDAZBB90WNf+bjw4\nd5RuM3IBoJKrjywGUKRNLc7kVGhJ2UoGE7DkRIJX32ZWJcQ+q/6Cjoia4Tb2Ga39\n42eMcu7qwnxg1zkqZTLiIEfnesTxX6Z7gM9fSZEnLMKq8TWVGrjPBOxLNrUAbSmV\nAGiArudf+1Q1rDQnFZMnzGMNK/uBmgw6pbY/BdMgVTBfAxfTgsdp4OUHcQ+3wwS8\naO2JAID8l2mfOvFOEWgjGwAOV47F+62bwZIIyI6EWM/g23cT4zb7FnsA81siVoNx\n42+K12qs6sXkId1q6+oAxhHKhRY+ovbgEA0urKRrqp6tlyH5H8BG1QqqrYPfg77r\nJsWYJkOnu4GaeyK+iDKtBerH6tXW4oP7Qx7VvsQ0zf0XceeUUOBkstOtCBjGJGQP\nF5SBsJ/UOzb8P1Qt3zrrhvb1gu3BeK2m1G27GwGlgT1owgQALqqfkM6inqM4Pq3P\nRz0jyJkKnza3ehUFIa0+ewNvBI9iBMulPsB7g1MdBCzxTl6mmiS3C0TnuZ+eTS3r\n1qx0LSPPPWLZ8eLq9VxLP0tR+9b8NVIMAB3oTSE/UBhJYjGrZnk=\n=p40H\n-----END PGP SIGNATURE-----", + "payload": "tree 6d7cb67b555f98bfaf87efb7456c452880d8ec4c\nparent 826993e4badfde5e687978798c286c44e7b7b45d\nauthor eps1lon 1608049682 +0100\ncommitter eps1lon 1608049682 +0100\n\nRemove excess vertical ruler if no errors are recognized\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/eb9c4ec42dbe937b5dd93db06e5c74a41838763d", + "html_url": "https://github.com/facebook/react/commit/eb9c4ec42dbe937b5dd93db06e5c74a41838763d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/eb9c4ec42dbe937b5dd93db06e5c74a41838763d/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "826993e4badfde5e687978798c286c44e7b7b45d", + "url": "https://api.github.com/repos/facebook/react/commits/826993e4badfde5e687978798c286c44e7b7b45d", + "html_url": "https://github.com/facebook/react/commit/826993e4badfde5e687978798c286c44e7b7b45d" + } + ] + }, + { + "sha": "f0a3ab3e79b711c52393513609bbaae80e694d0b", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmYwYTNhYjNlNzliNzExYzUyMzkzNTEzNjA5YmJhYWU4MGU2OTRkMGI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:33:54Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:33:54Z" + }, + "message": "Fix icon alignment of errors/warnings in tree", + "tree": { + "sha": "8b0f52eb35480be9c9d4563f4e0fa4b3ae1b99ca", + "url": "https://api.github.com/repos/facebook/react/git/trees/8b0f52eb35480be9c9d4563f4e0fa4b3ae1b99ca" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/f0a3ab3e79b711c52393513609bbaae80e694d0b", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Y5XIACgkQWCcTbp05\ndTJjbQ/9EPdScIwYoLr7w7x+TyoYEKM+Tih70wb+oDBqUaPkumwrrbnd29IlZhKp\nooTQzR7b85mlROzCF0cXrvor6D/Hn73EHGibhua/sIQ4EXcGbqU3n9zaZj2wUmJA\nab/erpUfUYvnaZhfaRzNx0lB6DFxdD9paqiSMOgTFS34YXdfdKouRHZteFxuKLj6\nBuN7ujpCgdozmtczMKqnxR+KTbm8U2APYdeo2IULcsKQCr/6N5p49Ds3Q/0dX2H5\nu2JephNzEaz7v+HKglVLy/fvgXHOGSXp5t8gVRX6OtiYoiTIu7o/nTxnKsU0j0JT\nFJJoo+i6+AGlG5yMm7ar4O+pCDyOdAq2lu+a5iTA3cq9W6lq9vQWLfJjge3qaG26\nWOsv1Uha5lWovBDDNeJxXKcIp1VHlfYZ4kmW6MGdlpDaFSKjOml7hwA5TmCfCNHN\nXBv6h1D/wUd3+P/ZklrytRL8hogVqkOrc1fIQvhEsA2xgV/jsMpoAFK5nbkWv45Z\neguYuWcDcyMcm3lUklf/+IvdI2tP8PJhddcASqVyUydK9uPEzdO1N6Txn+PWqgp5\nsCyPFEVNcPSB33VuePyopYWt43vr9Fyfhp74rBtsq6FfVaQluxmP53qZeFWvAxRk\nZ6f9Uw3JDUsdfD5JV46H+xQEwHa/Bb3uUsQc+6WaB4io6cQMv+Y=\n=Ibdw\n-----END PGP SIGNATURE-----", + "payload": "tree 8b0f52eb35480be9c9d4563f4e0fa4b3ae1b99ca\nparent eb9c4ec42dbe937b5dd93db06e5c74a41838763d\nauthor eps1lon 1608050034 +0100\ncommitter eps1lon 1608050034 +0100\n\nFix icon alignment of errors/warnings in tree\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/f0a3ab3e79b711c52393513609bbaae80e694d0b", + "html_url": "https://github.com/facebook/react/commit/f0a3ab3e79b711c52393513609bbaae80e694d0b", + "comments_url": "https://api.github.com/repos/facebook/react/commits/f0a3ab3e79b711c52393513609bbaae80e694d0b/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "eb9c4ec42dbe937b5dd93db06e5c74a41838763d", + "url": "https://api.github.com/repos/facebook/react/commits/eb9c4ec42dbe937b5dd93db06e5c74a41838763d", + "html_url": "https://github.com/facebook/react/commit/eb9c4ec42dbe937b5dd93db06e5c74a41838763d" + } + ] + }, + { + "sha": "5b59bbce5d8055fbd7a616cfa64a4a03c685d21f", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjViNTliYmNlNWQ4MDU1ZmJkN2E2MTZjZmE2NGE0YTAzYzY4NWQyMWY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:38:22Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:38:22Z" + }, + "message": "Fix warning text color in dark theme", + "tree": { + "sha": "c1b92ab905a0b3c3b89b0b235aa362844942e3ca", + "url": "https://api.github.com/repos/facebook/react/git/trees/c1b92ab905a0b3c3b89b0b235aa362844942e3ca" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5b59bbce5d8055fbd7a616cfa64a4a03c685d21f", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Y5n4ACgkQWCcTbp05\ndTJFvw//e8DWTyCOl+Fd4RgWJeG195PkfM/69uzUNLb6zTEs2B3V5ysh9F1S+ukl\nS23vSCoJJvVO1Jik6ovubC89pD+UQHvqIC+hCsdqOLpkoME0b+YiAohuAzHQ00Me\n3/WxSRhm6NzbUbZzjdTMVPMKM7Gah74H+vWF/mlo40LJj1yyXMnOq1HXIsDE20q/\nn9i7qfp8n7DVCIL545NLrlTPi0d8fKOuDpA6r50fzM5Bu38s8eaHJeWzE2FvLBPi\nOmL+ozyJ4Ok+EcTlNaU2qRh6nWd3gi10QNX2LcN1wKaPldRZ1sYti6wwqYhj6bfZ\nCpnmkyfaX+gvu9O+ZI5Faq9tebyl0gkyp3NFbMBWMC+a2IcWPaVQd69uV3NPm23h\n1Y+QLdhX446AA6SMzGvucIeIzti8Wvv5CrAm0w7ahDUmXX8AAWYf4EDsZmM/IvAu\nEiB7ux8T1kLlp+wb/DZ2txOOOnZFOADQ3a/sDqnrvpBdHw6vXJ5aOXCeUxtGble3\n+RnD7eU31+55w+zsBavIF0E8fzAnGavOo4tUI1QaV5U4jc8OB/IlTa2YLSZtPhh4\nJyEF2wzsJKLkEqRZCueqXu/iyXW0kYRDIBs4JFpecM0DX1Ctkug/E+xGk7bf7wrk\ni2ywhbPVPBju5sQAIDCMMMG4PAFeqLpU3Z6NfBG92Hyp2JTG5DM=\n=jfgO\n-----END PGP SIGNATURE-----", + "payload": "tree c1b92ab905a0b3c3b89b0b235aa362844942e3ca\nparent f0a3ab3e79b711c52393513609bbaae80e694d0b\nauthor eps1lon 1608050302 +0100\ncommitter eps1lon 1608050302 +0100\n\nFix warning text color in dark theme\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5b59bbce5d8055fbd7a616cfa64a4a03c685d21f", + "html_url": "https://github.com/facebook/react/commit/5b59bbce5d8055fbd7a616cfa64a4a03c685d21f", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5b59bbce5d8055fbd7a616cfa64a4a03c685d21f/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "f0a3ab3e79b711c52393513609bbaae80e694d0b", + "url": "https://api.github.com/repos/facebook/react/commits/f0a3ab3e79b711c52393513609bbaae80e694d0b", + "html_url": "https://github.com/facebook/react/commit/f0a3ab3e79b711c52393513609bbaae80e694d0b" + } + ] + }, + { + "sha": "0ef80bce241c622a21d5da20b527822602599f36", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjBlZjgwYmNlMjQxYzYyMmEyMWQ1ZGEyMGI1Mjc4MjI2MDI1OTlmMzY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:43:34Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T16:43:34Z" + }, + "message": "center icons with text instead of baseline", + "tree": { + "sha": "ca245927bedde6be191b2a88d2c43abd8e5726b0", + "url": "https://api.github.com/repos/facebook/react/git/trees/ca245927bedde6be191b2a88d2c43abd8e5726b0" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/0ef80bce241c622a21d5da20b527822602599f36", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Y57YACgkQWCcTbp05\ndTK/wQ//VvBmc5KzaqD9aEu62qlVXlWn7ew7ru4IswtIOBl1dedCCN6YNnQ5p0mY\naowLMxctoMWzUKt+Powy1tMksHanZvASW0/g+5n3arDP5l/Hj/+9LcTQoEz3Hx66\n68GodLiyvs/LrIhFHYnF9h3XkQkylVjwjxgshNWQI1muIdoPhSJvnyb3yxMpC2mm\no2WCdyW748HwuxSnjzw77S7PdctUoEG+TewTdndgVG120PHCFfuJjL8tEppZfy1w\n6wr6KQ3hISg6sh+CtbOTuolJARwgQzsadQnOu9r2yz/w/l3I8Yp+NylPycVp0FT2\nIENrCNo940g5VTxZshwIDho+HXhzhFZimuTGxY2WEmnLseCGDoZYRsadvQbaQEwW\ngODxyP0p6jOVWnt6aL5Jri7yFBajbFnV0ICOmnP8nLIwBjQABctf7CtKbatSNpWN\nCY3HZfAx2JpXLNZ+H0QhjN4An2ctp4aC/Mr2NGakLU1GYpup3c//ubhSv/xVSNuQ\nDbs0hnyyMVVhf6kPza2UJSPZrQbAESujTb616XsaNsih0TCch8Y3HWUpE0+TFbgw\nC7eZ2JRxc1nwzWLRmX9qC9XYdbXcrcPT080bwQvTaappPjLyUfcx/pJydqXwPSpS\ntsZVhmVs4InghhBOC7/l1kYJAgjCsjUjk00HQNY1mvwBm0k5tLE=\n=cAms\n-----END PGP SIGNATURE-----", + "payload": "tree ca245927bedde6be191b2a88d2c43abd8e5726b0\nparent 5b59bbce5d8055fbd7a616cfa64a4a03c685d21f\nauthor eps1lon 1608050614 +0100\ncommitter eps1lon 1608050614 +0100\n\ncenter icons with text instead of baseline\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/0ef80bce241c622a21d5da20b527822602599f36", + "html_url": "https://github.com/facebook/react/commit/0ef80bce241c622a21d5da20b527822602599f36", + "comments_url": "https://api.github.com/repos/facebook/react/commits/0ef80bce241c622a21d5da20b527822602599f36/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "5b59bbce5d8055fbd7a616cfa64a4a03c685d21f", + "url": "https://api.github.com/repos/facebook/react/commits/5b59bbce5d8055fbd7a616cfa64a4a03c685d21f", + "html_url": "https://github.com/facebook/react/commit/5b59bbce5d8055fbd7a616cfa64a4a03c685d21f" + } + ] + }, + { + "sha": "61924778be0a4934e02e6c214ea3c676868f95de", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjYxOTI0Nzc4YmUwYTQ5MzRlMDJlNmMyMTRlYTNjNjc2ODY4Zjk1ZGU=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T17:29:00Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-15T17:29:00Z" + }, + "message": "Clear errorsAndWarnings when elements are removed", + "tree": { + "sha": "5138be93763993cd4932b9a74c9d00d65483d4ce", + "url": "https://api.github.com/repos/facebook/react/git/trees/5138be93763993cd4932b9a74c9d00d65483d4ce" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/61924778be0a4934e02e6c214ea3c676868f95de", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Y8lwACgkQWCcTbp05\ndTJCuA//TvBpO/dJ+/NQkIhL0UpeNdgsxogkEOgxHtAN8kqt/OtPnFbqG8ClChyM\ns/1uqTTtBHuStbrcUsTUuBEjNZkCeyifrSzRbkDLkFtdGYVAO6u0xFDm3fAk9bGs\nxZQzzSKMselwlHMljsmvWQDnz3AYuQyx553dgzNCLQAVrPsoL3fth7Wso2qLkI70\n3fcgdzRLvmczlXKBgUDyrspsX0GIxlYR+B42LmTWLSjqaBoa3KZXtIVHu488K0w6\nrY0XuSLno68ZZfERPeLE+66dY3SIfWYv8LtMRANPYE3l+UT0gkrm2GhtymRQX60j\neNpD9CK999oNiBKja7yHVc02xA07MdDCaqzGCdyEwGBur7L4Z/gdgNz95fOoIwGc\nYk+j+MTiU5NSYYbg6yb07X4ebHr1eELgVdZHRlUPUvNfK3i1QhoVYCSbRKhXNyzU\nW+mm/7cRyPIPJ0hEag0MlbqQIHNHZSs3rcODJzpm9EzdqKzO4w+uqak3/N0Gw71g\nVoToisTTVrP2Dorn8U4F6KKrgo+XZU19gPINqnZ2SSHlbeG0eliSLDIYN+B/80kB\nnnmQGL+5oHnZqc3ec1QCOe+srK8YL+DuTeiiYn8gArvVeNgq3KuuLFPRSHkltdAa\nPT8r7rVyVmCaRT80RvSpsoZDbUkdWoTha2+P1+LjOrWLZySZLMo=\n=aj/8\n-----END PGP SIGNATURE-----", + "payload": "tree 5138be93763993cd4932b9a74c9d00d65483d4ce\nparent 0ef80bce241c622a21d5da20b527822602599f36\nauthor eps1lon 1608053340 +0100\ncommitter eps1lon 1608053340 +0100\n\nClear errorsAndWarnings when elements are removed\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/61924778be0a4934e02e6c214ea3c676868f95de", + "html_url": "https://github.com/facebook/react/commit/61924778be0a4934e02e6c214ea3c676868f95de", + "comments_url": "https://api.github.com/repos/facebook/react/commits/61924778be0a4934e02e6c214ea3c676868f95de/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "0ef80bce241c622a21d5da20b527822602599f36", + "url": "https://api.github.com/repos/facebook/react/commits/0ef80bce241c622a21d5da20b527822602599f36", + "html_url": "https://github.com/facebook/react/commit/0ef80bce241c622a21d5da20b527822602599f36" + } + ] + }, + { + "sha": "6e57b4d1798f031a844fd960038cacf29dc0b534", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjZlNTdiNGQxNzk4ZjAzMWE4NDRmZDk2MDAzOGNhY2YyOWRjMGI1MzQ=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-15T18:24:41Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-15T18:24:41Z" + }, + "message": "Tweaked inline element style for warning/error icons", + "tree": { + "sha": "219cb4c1ffada21259876d390df1a85767481617", + "url": "https://api.github.com/repos/facebook/react/git/trees/219cb4c1ffada21259876d390df1a85767481617" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/6e57b4d1798f031a844fd960038cacf29dc0b534", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/6e57b4d1798f031a844fd960038cacf29dc0b534", + "html_url": "https://github.com/facebook/react/commit/6e57b4d1798f031a844fd960038cacf29dc0b534", + "comments_url": "https://api.github.com/repos/facebook/react/commits/6e57b4d1798f031a844fd960038cacf29dc0b534/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "61924778be0a4934e02e6c214ea3c676868f95de", + "url": "https://api.github.com/repos/facebook/react/commits/61924778be0a4934e02e6c214ea3c676868f95de", + "html_url": "https://github.com/facebook/react/commit/61924778be0a4934e02e6c214ea3c676868f95de" + } + ] + } +] \ No newline at end of file diff --git a/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page2.json b/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page2.json new file mode 100644 index 00000000..1db28543 --- /dev/null +++ b/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page2.json @@ -0,0 +1,1787 @@ +[ + { + "sha": "2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjJkZjA3NDBlYzQzYzNkM2VhNmNiOTNkZmMyODA4Mzk4YTNkMDZjMWU=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-15T20:20:16Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-15T20:20:16Z" + }, + "message": "Fixed minor regression in Element styles", + "tree": { + "sha": "e7862387c55b068011874af57595c12b4a21dc16", + "url": "https://api.github.com/repos/facebook/react/git/trees/e7862387c55b068011874af57595c12b4a21dc16" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e", + "html_url": "https://github.com/facebook/react/commit/2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e", + "comments_url": "https://api.github.com/repos/facebook/react/commits/2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "6e57b4d1798f031a844fd960038cacf29dc0b534", + "url": "https://api.github.com/repos/facebook/react/commits/6e57b4d1798f031a844fd960038cacf29dc0b534", + "html_url": "https://github.com/facebook/react/commit/6e57b4d1798f031a844fd960038cacf29dc0b534" + } + ] + }, + { + "sha": "52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjUyZjA0OTRlNDRkN2MwMWY2ZjFjNTNmM2M1ZGNlODNlMDdkMjdhYTY=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-15T20:20:26Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-15T20:20:26Z" + }, + "message": "Split errors and warnings into separate panels", + "tree": { + "sha": "1ff469cd73189d817cb4b60faecce7aac0fd64ad", + "url": "https://api.github.com/repos/facebook/react/git/trees/1ff469cd73189d817cb4b60faecce7aac0fd64ad" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6", + "html_url": "https://github.com/facebook/react/commit/52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6", + "comments_url": "https://api.github.com/repos/facebook/react/commits/52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e", + "url": "https://api.github.com/repos/facebook/react/commits/2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e", + "html_url": "https://github.com/facebook/react/commit/2df0740ec43c3d3ea6cb93dfc2808398a3d06c1e" + } + ] + }, + { + "sha": "d64023c01cc983b34cf50617c8c9cc6d76ab7311", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmQ2NDAyM2MwMWNjOTgzYjM0Y2Y1MDYxN2M4YzljYzZkNzZhYjczMTE=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T07:03:50Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T08:49:16Z" + }, + "message": "Implement new message format\n\nWhen flushing messages we use a new type of operation instead that only contains the number of warnings/errors.\nThe messages itself are only sent as part of the inspectElement event.\nAlready implemented a mapping from the message to a unique id.\nThough I'm not quite sure why we wanted to do that.\nDid we want to send the message only once and then ids if it repeats?", + "tree": { + "sha": "5d11999c088b1514c751acdd60d362394b05dce9", + "url": "https://api.github.com/repos/facebook/react/git/trees/5d11999c088b1514c751acdd60d362394b05dce9" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/d64023c01cc983b34cf50617c8c9cc6d76ab7311", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/ZyhAACgkQWCcTbp05\ndTKtkw//aN7ZYyw8dLTX9JwE0ZbVxeToE0jRmn338ko2+h1P/WAZoztmnuELEoae\nI/STR32YFc4w8xkl2cd1sNRIKnCestfn9KH6Uj787UhrD23IrtFFnpf2EVnr7qPs\nf92akXGTCIuVBAMIFgMypQvAbF4E+fZ71MWS5K/xPMTLyUCcsE5clFKIKRofXoe2\nXPmEuz21fCdr7IPbFx65h9EMDDCM8H/rXYEN8fpFCMgnKmQUz95dF4cgvDqcpTX7\nOLYTMVlhoCP78+CXVC1JlASK4dZs3cq2bvqGL6lTDEncG7s8PHz7xU5ivg/DveHI\nhMeQgnz5re7W6fgDPexoJ5EnUASN0k5AZZla2XkTN/BL/+XHwpWw/GtlftwskaWJ\nT61ul0TIXtCwTW8Hodzeo2iOdvUXygs7ooPMkantnXJi8C/rmhn83pIUd1cryoyU\nECgsirEAbweJUwY0w5RWza+84I5MGwKFuceRII0/iE7t+eR/LZajBtrM9LgZ9RyC\nJBqqUhgTNVfq4Uw8SP4SqR/tk5DpcZZoEF5oWsnf6TLHejbg0TUOTtsf0DrqifDM\nwtbw15N7og/7a3NoJ0EYwJLziBiOzSWnrGd2EI4785dRAJQ2vnjVZE4wQrLBkXpN\nL0x0HknGffHXRlBmJbwz7ctvzAny5cECkr7HMroK+PXkfTe9PLA=\n=3VlL\n-----END PGP SIGNATURE-----", + "payload": "tree 5d11999c088b1514c751acdd60d362394b05dce9\nparent 52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6\nauthor eps1lon 1608102230 +0100\ncommitter eps1lon 1608108556 +0100\n\nImplement new message format\n\nWhen flushing messages we use a new type of operation instead that only contains the number of warnings/errors.\nThe messages itself are only sent as part of the inspectElement event.\nAlready implemented a mapping from the message to a unique id.\nThough I'm not quite sure why we wanted to do that.\nDid we want to send the message only once and then ids if it repeats?\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/d64023c01cc983b34cf50617c8c9cc6d76ab7311", + "html_url": "https://github.com/facebook/react/commit/d64023c01cc983b34cf50617c8c9cc6d76ab7311", + "comments_url": "https://api.github.com/repos/facebook/react/commits/d64023c01cc983b34cf50617c8c9cc6d76ab7311/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6", + "url": "https://api.github.com/repos/facebook/react/commits/52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6", + "html_url": "https://github.com/facebook/react/commit/52f0494e44d7c01f6f1c53f3c5dce83e07d27aa6" + } + ] + }, + { + "sha": "1bb99d9cc10270abb6136d6b1695b3e965967e5f", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjFiYjk5ZDljYzEwMjcwYWJiNjEzNmQ2YjE2OTViM2U5NjU5NjdlNWY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T07:22:29Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T08:49:20Z" + }, + "message": "Reflect error/warning updates in tree when cleared", + "tree": { + "sha": "e520ca7ee748280f641ea1cac84a505321c30acd", + "url": "https://api.github.com/repos/facebook/react/git/trees/e520ca7ee748280f641ea1cac84a505321c30acd" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/1bb99d9cc10270abb6136d6b1695b3e965967e5f", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/ZyhAACgkQWCcTbp05\ndTIjmQ//Ub/9mVc0egLIGlZxHFtVPJXLsOQrzTiK1KpOewwe03oRCN/FQeQKz5Ds\nZGxy8Z8ztlVWizSEyNF2Ix5vJR1PCNKl0k3HS0Mzuhl5AYOURR97xzaawtrFqJ9n\nfkIi3emDTaOWd/iaiwr+dAU646vSpzaL/2KJyhA772FhGj3Q+eNER+qXMlO3NA1V\nqLBld4tDeYB5eBXnlXxIdxZtNVyqYTzBWWzXcIp9VWNSjYAbmgsQLKlsHNb7cF2p\nrdQoiUE8eMtwtMadu++zw4AteWO/J7azizQEFBHsFvp7Qi83+Keok8tWOAwPKAzA\nzRMhCtua7fxTDCMYii1zzyT+Vn1EMOD51RE/ZtnazHr8t/UKQkUVZnN0sejGA/Bf\nRTPcVHtNuPCx7uA296VQ4W7zK15z8y3ddfwwvFgLWg/x8VWK9OHs+n1oMjLyzvPn\n/Hny++5cJlYpAXKv0qemHg5WILeYtnv9CE5c+yFMDk6PUkLsAEYL3y3uhOp2O+4l\nPL1gskMONzVqwJD85hXqda+MHRTN/S15a0oIN4YboN/ZM9u0oAafcqVqK/48f/kt\nh7KJXVS7JF0gRXrDZ/wBt9FwdrXotewbD39PU/ZGynmay+NKX1RGNpuFnzyb5GFc\nAVFbQhim8N1+hYd6akkTqOUt7ro9fjQ2vAFxz2W5bzmB6OqjBq8=\n=ezct\n-----END PGP SIGNATURE-----", + "payload": "tree e520ca7ee748280f641ea1cac84a505321c30acd\nparent d64023c01cc983b34cf50617c8c9cc6d76ab7311\nauthor eps1lon 1608103349 +0100\ncommitter eps1lon 1608108560 +0100\n\nReflect error/warning updates in tree when cleared\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/1bb99d9cc10270abb6136d6b1695b3e965967e5f", + "html_url": "https://github.com/facebook/react/commit/1bb99d9cc10270abb6136d6b1695b3e965967e5f", + "comments_url": "https://api.github.com/repos/facebook/react/commits/1bb99d9cc10270abb6136d6b1695b3e965967e5f/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "d64023c01cc983b34cf50617c8c9cc6d76ab7311", + "url": "https://api.github.com/repos/facebook/react/commits/d64023c01cc983b34cf50617c8c9cc6d76ab7311", + "html_url": "https://github.com/facebook/react/commit/d64023c01cc983b34cf50617c8c9cc6d76ab7311" + } + ] + }, + { + "sha": "c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmMxOTcwMzBmZTRhMzI5OWUwZTljNmZhMGI2Mzc0ZGZmMWNhYmUyZmU=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T08:43:19Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T08:49:20Z" + }, + "message": "Fix inspectedElement not updating on error/warnings update", + "tree": { + "sha": "96b7b2c6935b35a748e9fcdfda68c69f14c2c72d", + "url": "https://api.github.com/repos/facebook/react/git/trees/96b7b2c6935b35a748e9fcdfda68c69f14c2c72d" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/ZyhAACgkQWCcTbp05\ndTJCpw//Y/w8YH3ccCIScyvJhunzc81mj9Gv3tsuDCO7d2q2tJMzpNvRmqZsdWjU\n5QE4lQfwjOBFXhznEwcgt8oVHIj4cwSr/+0imu1TpuNvWOzggf9zonFuS/wTaGkz\nKN7sgZgArwes8NtsmlbnJ3Yr2DUkfeysrswLhDk6YTDjwMBAtcM9iqsK19ZXat0G\n1XKG8Ks7Zk4oMME7uNlY7gn3z46FmnXWwEiMrLiOKnCDLaVgKBA5y0kSd3UEE+Qj\nNmfEohYq9SJTE3fCbKDgqoFGv0eCtYfSoxcmlts3N7KHB9gkxjWQbTQ+2EHdRUow\n2gjFSDukKeTC2BnowiOMjkWcM9ypBobtl3XJUcVqfl1KNNKY6p8VbKdBAvTMZS4/\nYqRBYsnfIv4f2CrguJv9ONcw+bCqgYYxHvE9g0cpVm5NPEpxSEkPN2SoG9bJPh9E\nnRfZ2pUzkzguXLpjOof5hCImw5R4tbdDFbgXqghWszMKG/F/rMO4Lwmt0fmfW8VW\nxmKkbvor/H02ImhHZSTwU9PLp+KpH92B1AOMa68DZbdp9UACj5EnmyudRJDwEa4V\nG/4WH0EShkxDYoJNSJiYY/9i5aE8ZOQz2mNPGUm/wj23OoCnim1Tt3uzWWouJDj3\nBJrGK3k3KQb+eCxoCO+QehpUGVeO3ApQFd5xG+TawgZij7kZWNA=\n=cIY7\n-----END PGP SIGNATURE-----", + "payload": "tree 96b7b2c6935b35a748e9fcdfda68c69f14c2c72d\nparent 1bb99d9cc10270abb6136d6b1695b3e965967e5f\nauthor eps1lon 1608108199 +0100\ncommitter eps1lon 1608108560 +0100\n\nFix inspectedElement not updating on error/warnings update\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe", + "html_url": "https://github.com/facebook/react/commit/c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe", + "comments_url": "https://api.github.com/repos/facebook/react/commits/c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1bb99d9cc10270abb6136d6b1695b3e965967e5f", + "url": "https://api.github.com/repos/facebook/react/commits/1bb99d9cc10270abb6136d6b1695b3e965967e5f", + "html_url": "https://github.com/facebook/react/commit/1bb99d9cc10270abb6136d6b1695b3e965967e5f" + } + ] + }, + { + "sha": "2a3423f946a958590950ec426d2bc3cc894c0018", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjJhMzQyM2Y5NDZhOTU4NTkwOTUwZWM0MjZkMmJjM2NjODk0YzAwMTg=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T08:55:45Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T08:55:45Z" + }, + "message": "fix minor flow issues", + "tree": { + "sha": "72e50d7d7bde03ef6c159bc9b0ca64187b2c63ff", + "url": "https://api.github.com/repos/facebook/react/git/trees/72e50d7d7bde03ef6c159bc9b0ca64187b2c63ff" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/2a3423f946a958590950ec426d2bc3cc894c0018", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Zy5EACgkQWCcTbp05\ndTJzLhAAlkcQcp6hnzKXEoe1w+Mzneu7DWqO5Y7QX8f/e27+2xa6wsxq3fpZqApb\nlsgpoNbqM3Gt3JWIkAyOls7cMTsOa1F3FRlSZnwJCpWM902Ld+QhMSX24MTGJWla\nNcGO2B/BsezVlGS2PH++G2X64kThfV2a7myjvKYVbqrkLRB/1gY2YhaT7LdOFpkA\nJ73NAOBijvLOrcY2fUAMx2gKq5lbEK+WZdJAp7tnI4ND4XuR0fr+WIS8XyAwu/mP\nMn3VV97qh1+Wz+Wh8Q1cjzKUuhkc/mZQZbsSwLbnrstKlT+gyLwHIcEjlyU8nDER\nAMMJOB4I3Tq1xFUq1JqBapz4vqd9SSkngCwxMrk+CSihe90IIzC/YyLU1nGKYtdO\njFhYiquYKhXxdpBOGDLk6kMk7zUdvj/IC1iHh4IhNrBKnBrv2EDdis0XPumLOoeV\nFqI/xZsJZLika6SmZg2VgQvpF9JiHrKgiycjA/hQT25XK9juQkfKBs7Dc7/Olzt3\n2p9revQi9u3Pbv6Hqufhf0I9J1wW5YI3Q+Pqp+bebEE7xtDybFKOBCIxXflg0DYD\nx7s4HYQgWZAqxL/7IMAn/SMvW3b3Oy5FaqD24oLml/2kjmR1vNjHDDC4vWiDPV/M\n79FQrJV9IrWhpOp0XBaM+g5ZTVMpwzuTqDvRt5zi2ufKX+e8S5w=\n=dcfm\n-----END PGP SIGNATURE-----", + "payload": "tree 72e50d7d7bde03ef6c159bc9b0ca64187b2c63ff\nparent c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe\nauthor eps1lon 1608108945 +0100\ncommitter eps1lon 1608108945 +0100\n\nfix minor flow issues\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/2a3423f946a958590950ec426d2bc3cc894c0018", + "html_url": "https://github.com/facebook/react/commit/2a3423f946a958590950ec426d2bc3cc894c0018", + "comments_url": "https://api.github.com/repos/facebook/react/commits/2a3423f946a958590950ec426d2bc3cc894c0018/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe", + "url": "https://api.github.com/repos/facebook/react/commits/c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe", + "html_url": "https://github.com/facebook/react/commit/c197030fe4a3299e0e9c6fa0b6374dff1cabe2fe" + } + ] + }, + { + "sha": "9df59c6051258d332f4c35925c0da1dc9fa8ff4c", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjlkZjU5YzYwNTEyNThkMzMyZjRjMzU5MjVjMGRhMWRjOWZhOGZmNGM=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:14:35Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:14:35Z" + }, + "message": "Fix style regressions during rebase", + "tree": { + "sha": "e8cb78c99a9b7019210443dd8acf7f0e5cd69912", + "url": "https://api.github.com/repos/facebook/react/git/trees/e8cb78c99a9b7019210443dd8acf7f0e5cd69912" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/9df59c6051258d332f4c35925c0da1dc9fa8ff4c", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Zz/sACgkQWCcTbp05\ndTLYtg/+LhNbOw2W6JV0P0pZ1pDZAMii/vkSid5ZxWOqpDyKSCqMPf6FBjJAOPNq\nyHm8Gul9xoY8dZcdLnvU8jCC76zm6Isuo++5eMNIvfimNidfnvUUxImet9bvMoqO\nA4r1/Ebo3/biKfquUAONELbF4OTGuIA5W/TNEYKiFG0/0nENAFUhQKgV3gGqlPfi\nlmtt2ARmJQeBFIIPxiYAnem9UBFwm23SksbpAThmqX6x91vwf5tjzN6hHIlUKX9Z\n2rjy4XG5wa29VINfypYmuVAM7tbQmTP3u9TY3IjXPeBapfCulCRFW+aObP27QIO/\nc7+kyjeKpS4pjByBF7yYYg+pX9GoR1oQpzG7zTiksjCo4d0pHwkrsdZgwtvOwAqC\nwlB1ZEhHXezAi8f3VqNlTeLfrdc96xDaWH5g1beVVV2bJE3jpqDiGQQIJWBLRjFU\nuyhwKePnbWEcWVxe3L7K1/aWo2L0X8mcD1W0LeFfbaCnp3eph2MgKxNJzaIayNho\ndPGcl41yDlGGplB2KTKrWBvPPRIHtDteHQVE6YCfbGW4y9SHWi0olkSBv/f2VQlc\nwMrU6wr1YjZMXPLKakcegPj9JwdQJezj2Gk5a8c5IWzfAWJZfPX1cFcg1s90Owih\ne6zuE7ZI0bT4C1VgCrVA3RJ1C/lzm2wjL9sdJNN0lLfcoBnVBJ8=\n=zIS2\n-----END PGP SIGNATURE-----", + "payload": "tree e8cb78c99a9b7019210443dd8acf7f0e5cd69912\nparent 2a3423f946a958590950ec426d2bc3cc894c0018\nauthor eps1lon 1608110075 +0100\ncommitter eps1lon 1608110075 +0100\n\nFix style regressions during rebase\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/9df59c6051258d332f4c35925c0da1dc9fa8ff4c", + "html_url": "https://github.com/facebook/react/commit/9df59c6051258d332f4c35925c0da1dc9fa8ff4c", + "comments_url": "https://api.github.com/repos/facebook/react/commits/9df59c6051258d332f4c35925c0da1dc9fa8ff4c/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "2a3423f946a958590950ec426d2bc3cc894c0018", + "url": "https://api.github.com/repos/facebook/react/commits/2a3423f946a958590950ec426d2bc3cc894c0018", + "html_url": "https://github.com/facebook/react/commit/2a3423f946a958590950ec426d2bc3cc894c0018" + } + ] + }, + { + "sha": "bdf5d0ea634b0165887e08adc8ffc34375bc66e7", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmJkZjVkMGVhNjM0YjAxNjU4ODdlMDhhZGM4ZmZjMzQzNzViYzY2ZTc=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:18:45Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:18:45Z" + }, + "message": "Move Stepper UX to end of toolbar", + "tree": { + "sha": "0fad1eaf8a511cec14fb4a7b54241a6c4d97370f", + "url": "https://api.github.com/repos/facebook/react/git/trees/0fad1eaf8a511cec14fb4a7b54241a6c4d97370f" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/bdf5d0ea634b0165887e08adc8ffc34375bc66e7", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Z0PUACgkQWCcTbp05\ndTKQehAApdTy/tmgf9z9upZzsZNXxCu3UhNFtBpxQPW0299bZDTick+Oa+0pObhR\nbo5Ao9X4jSCgF/2A8caIo1armEpKodmPhsfdd/0hWi4k8iylYYDjk5X2onx2gQ3n\nGpuFi6z3A7WnfaB3DlNplkaO7xpdByxFbyYtW1uh4S0rnK/Kn5OFVvfJpLQIAFFA\nokkhNJLKns8DoBu4qi4jKwr+RwQR/VqtNbMOiZkdVeRdAYFfNFyAuiiZ6ZropRJ7\nwuURY6XrSLe4pU1RvHvlzf4dKY6ScgckJNsSbhzDhdynlwOn/ycPCW3kwy/P7MrN\noBRGfpq7DsFjrxtegqgIlBufCtif/5fgrBLtE5dH/0TexsxJXInPKwwmdQIu+MJi\nVjDcSRmTnP3aA8jGwKO/tWhnDwgkFIDS4y6JSfAJBMAzP0szWy1Jz91YbvXYo3I/\np6m1vfiHNByzon/ejZFiVVa0L2t/NuodLov9ctwmyTdwUdAp5bvWaLkkimM9CiH3\nULL9U7i1oKmzm7nNxEfl33WFAO/dpy4Xt2ZpS5QCtcKYPV1YMEUNy85kex0K6K9n\n/zh2BAXeHMyDAApqVgxLQl208ecK2LYdtqG5UDmwJuCcEcQEHNtZx8EkGoB08F6M\nR9KMuwNka7uTKDNZQXFT38sB6cgTc3/Exwcd4/9dkx93rfSblJA=\n=fbRE\n-----END PGP SIGNATURE-----", + "payload": "tree 0fad1eaf8a511cec14fb4a7b54241a6c4d97370f\nparent 9df59c6051258d332f4c35925c0da1dc9fa8ff4c\nauthor eps1lon 1608110325 +0100\ncommitter eps1lon 1608110325 +0100\n\nMove Stepper UX to end of toolbar\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/bdf5d0ea634b0165887e08adc8ffc34375bc66e7", + "html_url": "https://github.com/facebook/react/commit/bdf5d0ea634b0165887e08adc8ffc34375bc66e7", + "comments_url": "https://api.github.com/repos/facebook/react/commits/bdf5d0ea634b0165887e08adc8ffc34375bc66e7/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "9df59c6051258d332f4c35925c0da1dc9fa8ff4c", + "url": "https://api.github.com/repos/facebook/react/commits/9df59c6051258d332f4c35925c0da1dc9fa8ff4c", + "html_url": "https://github.com/facebook/react/commit/9df59c6051258d332f4c35925c0da1dc9fa8ff4c" + } + ] + }, + { + "sha": "3a37795a9e8a696a86a761a7424dc6b35a973909", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjNhMzc3OTVhOWU4YTY5NmE4NmE3NjFhNzQyNGRjNmIzNWE5NzM5MDk=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:20:24Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:20:24Z" + }, + "message": "Cleanup WIP artifacts", + "tree": { + "sha": "0da870f061b8b16968020e2ec7c7021d6d6d967c", + "url": "https://api.github.com/repos/facebook/react/git/trees/0da870f061b8b16968020e2ec7c7021d6d6d967c" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/3a37795a9e8a696a86a761a7424dc6b35a973909", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Z0VgACgkQWCcTbp05\ndTKVixAAsAON+H3axT8nTnwB7CAjOSkreF6J9Lwla6iDLx/QFQv8pG0uU5kNDPZB\nDD3gWt0QGRgVbotaTapyl5mqG7o3JGRMjAnIB4zMcug4Dz8lqLXlZrqxkxIdcugE\nc1FHwEp1QRJCJqtPfy7g7PqlaUTGQeT+c+wAQMJKMKoVkr7iyKRGq0i+PReBwWp2\nDKAEre+xQwwVq+6ZpuJwQVlm8lY7Tf1lAGVuL15ITUEsoZ0Vf2CFmxfE1ZsSEs42\n+EjerimduqJ4OaJ0GXZEciBmayZGSnU3NIiXgx7z6jYzwES57EFU1MTGG2tS8a9j\na6bmr6aCXl3lGi3Zzg5W+qPYkEukaIinaaghP70kjgxD9T4pxb6+cjxN2XyJhQuf\n/eW3gu+fxb4GDVqt4L+fn26qzJXW2YQBz3CkSkorsmyG4ouJpN3Qg+huhZI62hCx\ntAagzgmeUeNRPpVqaG6mAxa3iN6/q3Zu+Gmmh/khuIvTQNBuUBwu98rxv2ojLlga\nJHl8jqTuYTZbHr/m1SfSI7DXWxjEbgDYUWTlW/kEXlcXyHXk5KWY7+tNUh1Q7rId\nJ3bKVQbh6odxIsKgElensWWvb+2ykl7jtPCSNo4VWW+AUTrCaCBK/dcUfzHZQGkc\nEnfzbyxKpFajirFdibQL0tisGZ8k00v6Y5bPclMKFmirKoeOk70=\n=qHcQ\n-----END PGP SIGNATURE-----", + "payload": "tree 0da870f061b8b16968020e2ec7c7021d6d6d967c\nparent bdf5d0ea634b0165887e08adc8ffc34375bc66e7\nauthor eps1lon 1608110424 +0100\ncommitter eps1lon 1608110424 +0100\n\nCleanup WIP artifacts\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/3a37795a9e8a696a86a761a7424dc6b35a973909", + "html_url": "https://github.com/facebook/react/commit/3a37795a9e8a696a86a761a7424dc6b35a973909", + "comments_url": "https://api.github.com/repos/facebook/react/commits/3a37795a9e8a696a86a761a7424dc6b35a973909/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "bdf5d0ea634b0165887e08adc8ffc34375bc66e7", + "url": "https://api.github.com/repos/facebook/react/commits/bdf5d0ea634b0165887e08adc8ffc34375bc66e7", + "html_url": "https://github.com/facebook/react/commit/bdf5d0ea634b0165887e08adc8ffc34375bc66e7" + } + ] + }, + { + "sha": "91366be564aab76c4c8328eae7972844e4d244e6", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjkxMzY2YmU1NjRhYWI3NmM0YzgzMjhlYWU3OTcyODQ0ZTRkMjQ0ZTY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:50:15Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T09:50:15Z" + }, + "message": "Add tally of errors/warnings", + "tree": { + "sha": "e7a71825c01bc86dc7fe01eed981e16f743eb766", + "url": "https://api.github.com/repos/facebook/react/git/trees/e7a71825c01bc86dc7fe01eed981e16f743eb766" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/91366be564aab76c4c8328eae7972844e4d244e6", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Z2FcACgkQWCcTbp05\ndTJ82hAAsuLBKt9Pj3Vdx+QBExmmJYhI2l3s/3yux9X91J/BW5yUHaoy5p8vQymm\nzwn3QJtI0hJxs++UGRv2F3a+EGvUFmdQe2kkmKE/pBuS82OEfxO3bPJ40ouzw2/B\noUCsIGkM8uEc1+ODE/qGVE0oWXDC737tWJow08kt9cqwaDk1ScwAb61uTqShhJyK\nNDy0QOpv+fWu7ZREtpEXFGtr1cnq1Q1c2uwU+T2J8FivZ4KLemumduYF1l8hZy/b\nw1Br3mPBHQoYQ5Etyd4Z3lxWQxPOihJOez9S9+sdGF3n2k32jLzy/tUUUAbNnNGv\nlsGm5kJjYiRYQq+NaSYJz074yu4ke3XSMLMp1TL9JPGXygIyKVJC9SHMQJtYdqec\nVqK1hC2wE12oguL9Z4oia281vXuDTd9Xoe2d8+hMqk0LQuz3ro2VefBJp/pjtkvv\nWn/0hE6sCJpEhQBnZgUOjft5I6phZjqm0YuE7nN8MAFBI5duA5UMBHe9ntKtr4fp\nGeC/W0bNQebLgLuYPmXW4QU0Nx7yZblxwux1d7uvD3OYRShiRGRH6gnYZTK8kTvm\nUAyEFggLY2f0pHWllP01VwC+0bH6v8oQxeWxAgTbtXuvz9wXUksS5gcrWH6sG9Sx\nKCufiwzvgcB5DkMtkhid6ZWdCpaIeRql39K+Snll7PilLgJwrwg=\n=e6jT\n-----END PGP SIGNATURE-----", + "payload": "tree e7a71825c01bc86dc7fe01eed981e16f743eb766\nparent 3a37795a9e8a696a86a761a7424dc6b35a973909\nauthor eps1lon 1608112215 +0100\ncommitter eps1lon 1608112215 +0100\n\nAdd tally of errors/warnings\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/91366be564aab76c4c8328eae7972844e4d244e6", + "html_url": "https://github.com/facebook/react/commit/91366be564aab76c4c8328eae7972844e4d244e6", + "comments_url": "https://api.github.com/repos/facebook/react/commits/91366be564aab76c4c8328eae7972844e4d244e6/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "3a37795a9e8a696a86a761a7424dc6b35a973909", + "url": "https://api.github.com/repos/facebook/react/commits/3a37795a9e8a696a86a761a7424dc6b35a973909", + "html_url": "https://github.com/facebook/react/commit/3a37795a9e8a696a86a761a7424dc6b35a973909" + } + ] + }, + { + "sha": "cc59c71ba644ede8acb1cf4112390f2c6ceef8e1", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmNjNTljNzFiYTY0NGVkZThhY2IxY2Y0MTEyMzkwZjJjNmNlZWY4ZTE=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T10:06:28Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T10:06:28Z" + }, + "message": "Remove nullish coalescing\n\nNot supported by jest config", + "tree": { + "sha": "978afbe5de988c6ea6a936d8528ee72c0c28dc30", + "url": "https://api.github.com/repos/facebook/react/git/trees/978afbe5de988c6ea6a936d8528ee72c0c28dc30" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/cc59c71ba644ede8acb1cf4112390f2c6ceef8e1", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/Z3CQACgkQWCcTbp05\ndTLs5xAApK2sfzQZX9c1L0Tp+mmh0QauT+1lyBbgzMghnSycSMxUeoG4qhUHWOnx\nnHE8OxelFbtsC5X+nk1cuMfb6cX64oa1tvoG5oM+tF3gALRSe2WVU8EDZyscbVrO\nLo9AQrTGJNMrjgi4T3SetFAQ6KFw+WaNgFzIxXZw8F2zWnQtV8XOVeH7e/heZPVQ\ndRZIIboh39bqYNBsJlcrA4wdLnG4yXYu9U9WkAP7cggnAJGoYSdcH2ItIiOKDzay\n0TDkL/3AdZR9m+wXaeL+kwAzq5RRaA+t3aU8y0SslGQW+YWGTUe3Q6zmQy9OQaps\nxJAmmCPWfOeYfQMc1P5MegtszHA2vb6T7I6eVnTAlCy2tHPfmSz3gIPqgo+JuPTB\n1vk2JFUaNEUYnBpbnRc6/UXmY8Zo14TfWDADM/zFB+K1cguh8acK9t+aYIMJNhcq\nGOdwXOIT937g4GcOWvCZvNhV6AqNru2yqt4lyG4s52gapeF0nPIbRiFpWtk91z+8\n66xTcULcAjauBXOUMB69b4xoM5mnMsHwIHerP3JRPOsaFuRUN3msQdR8hYtQPSas\nfzi3UOZS9X3XGzSEAyVo9N8jXoX9g8tjir6Zvn5hEaFrKGZ7CcdId6D+X5Eqp5bP\nkOn0CBF1842msrFPy0Qu/hZKo5Yy3wJPJserk4EPqwYQSfPuKW4=\n=GX/W\n-----END PGP SIGNATURE-----", + "payload": "tree 978afbe5de988c6ea6a936d8528ee72c0c28dc30\nparent 91366be564aab76c4c8328eae7972844e4d244e6\nauthor eps1lon 1608113188 +0100\ncommitter eps1lon 1608113188 +0100\n\nRemove nullish coalescing\n\nNot supported by jest config\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/cc59c71ba644ede8acb1cf4112390f2c6ceef8e1", + "html_url": "https://github.com/facebook/react/commit/cc59c71ba644ede8acb1cf4112390f2c6ceef8e1", + "comments_url": "https://api.github.com/repos/facebook/react/commits/cc59c71ba644ede8acb1cf4112390f2c6ceef8e1/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "91366be564aab76c4c8328eae7972844e4d244e6", + "url": "https://api.github.com/repos/facebook/react/commits/91366be564aab76c4c8328eae7972844e4d244e6", + "html_url": "https://github.com/facebook/react/commit/91366be564aab76c4c8328eae7972844e4d244e6" + } + ] + }, + { + "sha": "d164facbaa165423e5670fb208376aa510bf9df7", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmQxNjRmYWNiYWExNjU0MjNlNTY3MGZiMjA4Mzc2YWE1MTBiZjlkZjc=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T14:12:35Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T14:12:35Z" + }, + "message": "Cleaned up CSS colors and made some other small UI tweaks", + "tree": { + "sha": "51122f36200ca7ce01392f59f3e2f2d1b2c25364", + "url": "https://api.github.com/repos/facebook/react/git/trees/51122f36200ca7ce01392f59f3e2f2d1b2c25364" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/d164facbaa165423e5670fb208376aa510bf9df7", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/d164facbaa165423e5670fb208376aa510bf9df7", + "html_url": "https://github.com/facebook/react/commit/d164facbaa165423e5670fb208376aa510bf9df7", + "comments_url": "https://api.github.com/repos/facebook/react/commits/d164facbaa165423e5670fb208376aa510bf9df7/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "cc59c71ba644ede8acb1cf4112390f2c6ceef8e1", + "url": "https://api.github.com/repos/facebook/react/commits/cc59c71ba644ede8acb1cf4112390f2c6ceef8e1", + "html_url": "https://github.com/facebook/react/commit/cc59c71ba644ede8acb1cf4112390f2c6ceef8e1" + } + ] + }, + { + "sha": "860d0e7876c2d4824909aa95d7f86c1339c916ee", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjg2MGQwZTc4NzZjMmQ0ODI0OTA5YWE5NWQ3Zjg2YzEzMzljOTE2ZWU=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T14:43:39Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T14:43:39Z" + }, + "message": "Make more room in toolbar\n\nOnly show search controls when there is search text entered.\n\nDon't show error overlay in the owners view. (We also hide search controls in this view as well, to make more room for breadcrumbs", + "tree": { + "sha": "b66dcc52c867cf6448a721ea508334d574bad0fd", + "url": "https://api.github.com/repos/facebook/react/git/trees/b66dcc52c867cf6448a721ea508334d574bad0fd" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/860d0e7876c2d4824909aa95d7f86c1339c916ee", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/860d0e7876c2d4824909aa95d7f86c1339c916ee", + "html_url": "https://github.com/facebook/react/commit/860d0e7876c2d4824909aa95d7f86c1339c916ee", + "comments_url": "https://api.github.com/repos/facebook/react/commits/860d0e7876c2d4824909aa95d7f86c1339c916ee/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "d164facbaa165423e5670fb208376aa510bf9df7", + "url": "https://api.github.com/repos/facebook/react/commits/d164facbaa165423e5670fb208376aa510bf9df7", + "html_url": "https://github.com/facebook/react/commit/d164facbaa165423e5670fb208376aa510bf9df7" + } + ] + }, + { + "sha": "5cb19ac017b286cbd03a34c00bee728899027d07", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjVjYjE5YWMwMTdiMjg2Y2JkMDNhMzRjMDBiZWU3Mjg4OTkwMjdkMDc=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T15:23:32Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T15:23:32Z" + }, + "message": "Add new debug setting for showing inline warnings and errors\n\nRefactored console patching logic to account for this new setting.", + "tree": { + "sha": "30860f94c6092043678a13621d76cee2e08edfcc", + "url": "https://api.github.com/repos/facebook/react/git/trees/30860f94c6092043678a13621d76cee2e08edfcc" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5cb19ac017b286cbd03a34c00bee728899027d07", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5cb19ac017b286cbd03a34c00bee728899027d07", + "html_url": "https://github.com/facebook/react/commit/5cb19ac017b286cbd03a34c00bee728899027d07", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5cb19ac017b286cbd03a34c00bee728899027d07/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "860d0e7876c2d4824909aa95d7f86c1339c916ee", + "url": "https://api.github.com/repos/facebook/react/commits/860d0e7876c2d4824909aa95d7f86c1339c916ee", + "html_url": "https://github.com/facebook/react/commit/860d0e7876c2d4824909aa95d7f86c1339c916ee" + } + ] + }, + { + "sha": "674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjY3NGUyODc3OWI5YTIwNGQ0Y2RmZThiM2MxZDRkZmVlZjc4ZWU0OGQ=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T15:39:55Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T15:39:55Z" + }, + "message": "Strip component stacks from errors/warnings before passing them to frontend", + "tree": { + "sha": "b35522412c8397ac7d2e61d42b33d6e9c73d21b7", + "url": "https://api.github.com/repos/facebook/react/git/trees/b35522412c8397ac7d2e61d42b33d6e9c73d21b7" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d", + "html_url": "https://github.com/facebook/react/commit/674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "5cb19ac017b286cbd03a34c00bee728899027d07", + "url": "https://api.github.com/repos/facebook/react/commits/5cb19ac017b286cbd03a34c00bee728899027d07", + "html_url": "https://github.com/facebook/react/commit/5cb19ac017b286cbd03a34c00bee728899027d07" + } + ] + }, + { + "sha": "0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjBlMGI4YzdjZDA4MWQzOWNmNGViOTEzOGQ3ODA4MzQ5Yzk1YWQwYTA=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T15:42:25Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T15:42:25Z" + }, + "message": "Fixed a spot I missed with new inline warnings setting", + "tree": { + "sha": "3195bd16377d77413330c4f7a714b266d936f4ef", + "url": "https://api.github.com/repos/facebook/react/git/trees/3195bd16377d77413330c4f7a714b266d936f4ef" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0", + "html_url": "https://github.com/facebook/react/commit/0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0", + "comments_url": "https://api.github.com/repos/facebook/react/commits/0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d", + "url": "https://api.github.com/repos/facebook/react/commits/674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d", + "html_url": "https://github.com/facebook/react/commit/674e28779b9a204d4cdfe8b3c1d4dfeef78ee48d" + } + ] + }, + { + "sha": "5073d8193562a765b6c85fe225dfff7cc48a7d8a", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjUwNzNkODE5MzU2MmE3NjViNmM4NWZlMjI1ZGZmZjdjYzQ4YTdkOGE=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T16:26:26Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T16:26:26Z" + }, + "message": "De-dupe warnings and errors and show badge count for duplciate entries", + "tree": { + "sha": "6b806afca4cb96b814edf2393afc2da97742dc42", + "url": "https://api.github.com/repos/facebook/react/git/trees/6b806afca4cb96b814edf2393afc2da97742dc42" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5073d8193562a765b6c85fe225dfff7cc48a7d8a", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5073d8193562a765b6c85fe225dfff7cc48a7d8a", + "html_url": "https://github.com/facebook/react/commit/5073d8193562a765b6c85fe225dfff7cc48a7d8a", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5073d8193562a765b6c85fe225dfff7cc48a7d8a/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0", + "url": "https://api.github.com/repos/facebook/react/commits/0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0", + "html_url": "https://github.com/facebook/react/commit/0e0b8c7cd081d39cf4eb9138d7808349c95ad0a0" + } + ] + }, + { + "sha": "99de4ff77f62b5543db8536f71dd539b6598e626", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjk5ZGU0ZmY3N2Y2MmI1NTQzZGI4NTM2ZjcxZGQ1MzliNjU5OGU2MjY=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T16:32:39Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T16:32:39Z" + }, + "message": "Fixed dedupe badge text contrast", + "tree": { + "sha": "8f13c067a563ee7b8bdc8af8d1a2bf08b45c90d3", + "url": "https://api.github.com/repos/facebook/react/git/trees/8f13c067a563ee7b8bdc8af8d1a2bf08b45c90d3" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/99de4ff77f62b5543db8536f71dd539b6598e626", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/99de4ff77f62b5543db8536f71dd539b6598e626", + "html_url": "https://github.com/facebook/react/commit/99de4ff77f62b5543db8536f71dd539b6598e626", + "comments_url": "https://api.github.com/repos/facebook/react/commits/99de4ff77f62b5543db8536f71dd539b6598e626/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "5073d8193562a765b6c85fe225dfff7cc48a7d8a", + "url": "https://api.github.com/repos/facebook/react/commits/5073d8193562a765b6c85fe225dfff7cc48a7d8a", + "html_url": "https://github.com/facebook/react/commit/5073d8193562a765b6c85fe225dfff7cc48a7d8a" + } + ] + }, + { + "sha": "095c118e39fe7139bbf515efdbbd579b06eb83bd", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjA5NWMxMThlMzlmZTcxMzliYmY1MTVlZmRiYmQ1NzliMDZlYjgzYmQ=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T17:14:51Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T17:14:51Z" + }, + "message": "Oops I left a console log statement in", + "tree": { + "sha": "52b9db3bbc860712ed2a0963224c6ce528825edc", + "url": "https://api.github.com/repos/facebook/react/git/trees/52b9db3bbc860712ed2a0963224c6ce528825edc" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/095c118e39fe7139bbf515efdbbd579b06eb83bd", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/095c118e39fe7139bbf515efdbbd579b06eb83bd", + "html_url": "https://github.com/facebook/react/commit/095c118e39fe7139bbf515efdbbd579b06eb83bd", + "comments_url": "https://api.github.com/repos/facebook/react/commits/095c118e39fe7139bbf515efdbbd579b06eb83bd/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "99de4ff77f62b5543db8536f71dd539b6598e626", + "url": "https://api.github.com/repos/facebook/react/commits/99de4ff77f62b5543db8536f71dd539b6598e626", + "html_url": "https://github.com/facebook/react/commit/99de4ff77f62b5543db8536f71dd539b6598e626" + } + ] + }, + { + "sha": "e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmU4YjdkYzVmNTQ5ZjZjM2U2ZTQ0ZDQ1MDI4MWRjZDM1YWIzM2RmYWY=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T17:47:55Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T17:47:55Z" + }, + "message": "Minor UI tweaks", + "tree": { + "sha": "73826e1777deeccbf177a66b3888692b03ce3ef3", + "url": "https://api.github.com/repos/facebook/react/git/trees/73826e1777deeccbf177a66b3888692b03ce3ef3" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "html_url": "https://github.com/facebook/react/commit/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "comments_url": "https://api.github.com/repos/facebook/react/commits/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "095c118e39fe7139bbf515efdbbd579b06eb83bd", + "url": "https://api.github.com/repos/facebook/react/commits/095c118e39fe7139bbf515efdbbd579b06eb83bd", + "html_url": "https://github.com/facebook/react/commit/095c118e39fe7139bbf515efdbbd579b06eb83bd" + } + ] + }, + { + "sha": "3ab78dad37f03e83a9eb2024cf01175c31da9716", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjNhYjc4ZGFkMzdmMDNlODNhOWViMjAyNGNmMDExNzVjMzFkYTk3MTY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T18:01:11Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T18:01:46Z" + }, + "message": "Clean up component stack remove in messages", + "tree": { + "sha": "48606957b02a829c62504708a48a5d749149a8e4", + "url": "https://api.github.com/repos/facebook/react/git/trees/48606957b02a829c62504708a48a5d749149a8e4" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/3ab78dad37f03e83a9eb2024cf01175c31da9716", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/aS4oACgkQWCcTbp05\ndTJKtA//duo+KKAuL2hkJOa10UZ0JA/XQxivjSsS3JZczcnTfEpmtZVxQitW3RrE\nzwkwU4QIcvjjfkwjyteheERKJkXBBnlC1E/iRDPDggSiOjJKCOD+C3ZBcltq/DCo\nROTTHs4/UrjRyev9nI66K3nvf5ukGuiMjZvKrgmTZLKdCZ/a3g7f6rkDMx9dDg4Z\n7yMR30srxEiG73EzIFEkYz+FkK8sHYggQRwT5r34ddxPnijevnuTkVh4gKA6E1yR\nrF3ljIBYF0Zncf/YqTOj2HRnDChds9fMmbBKUOY0GhBPYXXsmLmZ2XKZKfczFEvo\nfIqgvFZhw3bbzTZHJJpzCFUNEOph+xbDTKqNHyoTCg7LGAq9DrBmbUCJo0w7WOln\nhciHqqKo57lX0JOPB0erfT4WLIvng24kQjOxwc3N3BjUszdk27apj939yJi2AboC\nKsuIt7FO84oPQwJ+QvjezuHV4UTJHFASuEnKpQY6F60DOJW6fw54DhvX9GPcNSy7\nrgCLVHNhAk0ltXUS/skxI0mMZhcxZ+r7FKH+Dp3pxhzbXgriF1mOwbYPgKXgCuij\ni7eyHdPrQ5KqsO06IqS+no6nbqQHOngSvYf5U6PG0sLOWinIRXuqpnWPU1fqUMtj\nuJYR/Z+CfqXBibV8bLEuLa15046NXrU3GjM4cbZM/H9aBTKpL3M=\n=KZvZ\n-----END PGP SIGNATURE-----", + "payload": "tree 48606957b02a829c62504708a48a5d749149a8e4\nparent e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf\nauthor eps1lon 1608141671 +0100\ncommitter eps1lon 1608141706 +0100\n\nClean up component stack remove in messages\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/3ab78dad37f03e83a9eb2024cf01175c31da9716", + "html_url": "https://github.com/facebook/react/commit/3ab78dad37f03e83a9eb2024cf01175c31da9716", + "comments_url": "https://api.github.com/repos/facebook/react/commits/3ab78dad37f03e83a9eb2024cf01175c31da9716/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "url": "https://api.github.com/repos/facebook/react/commits/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "html_url": "https://github.com/facebook/react/commit/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf" + } + ] + }, + { + "sha": "15122d2a7e79a969b7f69166bcc181439bb5930c", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjE1MTIyZDJhN2U3OWE5NjliN2Y2OTE2NmJjYzE4MTQzOWJiNTkzMGM=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T18:10:40Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T18:10:40Z" + }, + "message": "Remove WIP artifacts", + "tree": { + "sha": "9fcef5af9b7a113223f4e8996632460e8d084158", + "url": "https://api.github.com/repos/facebook/react/git/trees/9fcef5af9b7a113223f4e8996632460e8d084158" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/15122d2a7e79a969b7f69166bcc181439bb5930c", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/aTaAACgkQWCcTbp05\ndTKcWRAAq76lymWDEUZv97/JJYqQ7j7mDKlYWKQzYSn082rdIZzg463S1p1hXPyH\nzdko9uni79rAw51xXN6oRuhkM60Cv3rBjg1FVRi+cdRPmAMAXesSnpbtc5DyW1Du\nRDZLPAZo8JJ3Xb8rLa+TyTfNjZgeddSjP67HATyWbGtEpMGANwwpi91unrv85b+4\nfDJUQaJMr+iL414kq061OHNcGTNEWZHUk/S8xcI+Z9hSlJytoT3HyAhIyRnUkTDP\noJBguwIHeOeftTAuilpRsCmaU8mRSAVYRjL4LqAfP25EZ7B1bQajm9LM9oHQJpvo\nBz7HAT+34OBX2ok+xzcp5Jl1s4D7LKgriq+xJ+kNFJipzKou2x+LOEPwql8ntDLn\nUw2NbDn3B0T4nlQ8hZNjIEDKCs0v2N2YIRySnfIfAwFKZvMwyShA7swZUbDKWGpx\n1usr2H41wz2qtJF3IXeaAPXPhgxH2toW9676St8yTBzxgw4TpBd5vmIKNh7yDsjS\nI/8CFBtefxekWi0+KVJOs7WFzauutLvjrzYgw4rZ1WWK44LcKPEoaXPY1Bw1Rm+l\nHUZ1COQO8KEGZsgwzfB8e4I9zy7sarArSRvhVAYJRq4joI3erKkEQMsVLq1OrDOv\nAdTOqUaegHFZHjGYkEEIo5OG/who7Vml2ETTg+5GLQoUAt6XcL0=\n=H78p\n-----END PGP SIGNATURE-----", + "payload": "tree 9fcef5af9b7a113223f4e8996632460e8d084158\nparent 3ab78dad37f03e83a9eb2024cf01175c31da9716\nauthor eps1lon 1608142240 +0100\ncommitter eps1lon 1608142240 +0100\n\nRemove WIP artifacts\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/15122d2a7e79a969b7f69166bcc181439bb5930c", + "html_url": "https://github.com/facebook/react/commit/15122d2a7e79a969b7f69166bcc181439bb5930c", + "comments_url": "https://api.github.com/repos/facebook/react/commits/15122d2a7e79a969b7f69166bcc181439bb5930c/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "3ab78dad37f03e83a9eb2024cf01175c31da9716", + "url": "https://api.github.com/repos/facebook/react/commits/3ab78dad37f03e83a9eb2024cf01175c31da9716", + "html_url": "https://github.com/facebook/react/commit/3ab78dad37f03e83a9eb2024cf01175c31da9716" + } + ] + }, + { + "sha": "26cecfa806e0ef8584db4985bfd145a71e643b66", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjI2Y2VjZmE4MDZlMGVmODU4NGRiNDk4NWJmZDE0NWE3MWU2NDNiNjY=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T18:28:54Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T18:28:54Z" + }, + "message": "Fixed bug when calculating total error/warning count", + "tree": { + "sha": "c2fdc0fddc2ad557508e7523b0c6ed18ed8da517", + "url": "https://api.github.com/repos/facebook/react/git/trees/c2fdc0fddc2ad557508e7523b0c6ed18ed8da517" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/26cecfa806e0ef8584db4985bfd145a71e643b66", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/26cecfa806e0ef8584db4985bfd145a71e643b66", + "html_url": "https://github.com/facebook/react/commit/26cecfa806e0ef8584db4985bfd145a71e643b66", + "comments_url": "https://api.github.com/repos/facebook/react/commits/26cecfa806e0ef8584db4985bfd145a71e643b66/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "url": "https://api.github.com/repos/facebook/react/commits/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf", + "html_url": "https://github.com/facebook/react/commit/e8b7dc5f549f6c3e6e44d450281dcd35ab33dfaf" + } + ] + }, + { + "sha": "1f1a161dafc6d53ec563508aea6a65b1f4538adc", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjFmMWExNjFkYWZjNmQ1M2VjNTYzNTA4YWVhNmE2NWIxZjQ1MzhhZGM=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T18:28:58Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T18:28:58Z" + }, + "message": "Merge branch 'devtools-show-warnings-in-tree' of github.com:eps1lon/react into devtools-show-warnings-in-tree", + "tree": { + "sha": "f8cf74e9a2674e3241efbb3e8c4dad20a816df77", + "url": "https://api.github.com/repos/facebook/react/git/trees/f8cf74e9a2674e3241efbb3e8c4dad20a816df77" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/1f1a161dafc6d53ec563508aea6a65b1f4538adc", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/1f1a161dafc6d53ec563508aea6a65b1f4538adc", + "html_url": "https://github.com/facebook/react/commit/1f1a161dafc6d53ec563508aea6a65b1f4538adc", + "comments_url": "https://api.github.com/repos/facebook/react/commits/1f1a161dafc6d53ec563508aea6a65b1f4538adc/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "26cecfa806e0ef8584db4985bfd145a71e643b66", + "url": "https://api.github.com/repos/facebook/react/commits/26cecfa806e0ef8584db4985bfd145a71e643b66", + "html_url": "https://github.com/facebook/react/commit/26cecfa806e0ef8584db4985bfd145a71e643b66" + }, + { + "sha": "15122d2a7e79a969b7f69166bcc181439bb5930c", + "url": "https://api.github.com/repos/facebook/react/commits/15122d2a7e79a969b7f69166bcc181439bb5930c", + "html_url": "https://github.com/facebook/react/commit/15122d2a7e79a969b7f69166bcc181439bb5930c" + } + ] + }, + { + "sha": "caf8678643bf6b91e8c8ae54f94de60b84c1a268", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmNhZjg2Nzg2NDNiZjZiOTFlOGM4YWU1NGY5NGRlNjBiODRjMWEyNjg=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T18:38:52Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T18:38:52Z" + }, + "message": "Use empty string instead of \"fixing\" the format string", + "tree": { + "sha": "c2506818c918b9aebb91724f5835f0a72b4caf5f", + "url": "https://api.github.com/repos/facebook/react/git/trees/c2506818c918b9aebb91724f5835f0a72b4caf5f" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/caf8678643bf6b91e8c8ae54f94de60b84c1a268", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/aVDwACgkQWCcTbp05\ndTIXdBAAhQi/hbQwEEvm/nGKCtglUC6Pdg6lxN6ndhn0O57qW7Og8z0l51tHeBQV\n2fLuxLg88BY4Nh4Gyb9s6jjjnyDsmoQnY5brwWwKR1ytCrpK5WWNmyqsmAH7atTM\nh/IrYUBFDGPp2hmGCgIpUs7Ko50X1TUxFsdcosV1bRXAFNapyjvNzqoxF4PKa3J4\ny0JlaTvPCiSFSUtIjo1s2U61BLZbfEhs6wwYUj2KJYm0mqI6Naq4c14GnFoVriNK\nNznO0rUviRiirkVmLhnbkLPNcSSZQdf0A8trxENva6H+LnwdErouzzZwsRJuqYcW\nXKb3Z7YTtXczdzY6HIWP6WKd/oShWWAc8GDF3Uto3fS2p0MxoCncc59ZnNyNUAeh\nWyldGBlKKmX6gdmFS790RPAhlYdXWyhR1jYG0kxJM5KVXtM3p3tHZQ9SvJIkSaHH\nGE/kSIfyVjZr7mxeTInHQpHgHKA66BT+ZZ65SjL247SHsZQtqaKdOCPqKTlYca7f\nJ9E09rr3MzA/+8Zx49PVSA1Gp3iFAD4VKnUQB7r0JjzdxrSnqP6HSAWEScf8l6mO\ntcxv4FUvbciWxfdfjH+fZMYYMa9uYck8yi3m/FHxensaRofwm+xNoGAAdCqOdwN7\nclgVPybNMAYsos1S2bsjY8eNA9m1XSArQ8fVImhjcduPplWc7Pc=\n=A2Jo\n-----END PGP SIGNATURE-----", + "payload": "tree c2506818c918b9aebb91724f5835f0a72b4caf5f\nparent 1f1a161dafc6d53ec563508aea6a65b1f4538adc\nauthor eps1lon 1608143932 +0100\ncommitter eps1lon 1608143932 +0100\n\nUse empty string instead of \"fixing\" the format string\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/caf8678643bf6b91e8c8ae54f94de60b84c1a268", + "html_url": "https://github.com/facebook/react/commit/caf8678643bf6b91e8c8ae54f94de60b84c1a268", + "comments_url": "https://api.github.com/repos/facebook/react/commits/caf8678643bf6b91e8c8ae54f94de60b84c1a268/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1f1a161dafc6d53ec563508aea6a65b1f4538adc", + "url": "https://api.github.com/repos/facebook/react/commits/1f1a161dafc6d53ec563508aea6a65b1f4538adc", + "html_url": "https://github.com/facebook/react/commit/1f1a161dafc6d53ec563508aea6a65b1f4538adc" + } + ] + }, + { + "sha": "a4f005992b6bcddf67539cd04eafe0d1c50effc9", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmE0ZjAwNTk5MmI2YmNkZGY2NzUzOWNkMDRlYWZlMGQxYzUwZWZmYzk=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T19:03:17Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T19:03:17Z" + }, + "message": "Fix test harness to avoid double logging\n\nComponent stack generation relies on intentionally triggering common sources of errors when shallow-rendering a component. Our inline error test harness didn't trip these paths for most components, and so it appeared to double log most of its warnings/errors. This commit fixes that.", + "tree": { + "sha": "a1b02708f238017d0268f6fc562b60b1f85e6bb4", + "url": "https://api.github.com/repos/facebook/react/git/trees/a1b02708f238017d0268f6fc562b60b1f85e6bb4" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/a4f005992b6bcddf67539cd04eafe0d1c50effc9", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/a4f005992b6bcddf67539cd04eafe0d1c50effc9", + "html_url": "https://github.com/facebook/react/commit/a4f005992b6bcddf67539cd04eafe0d1c50effc9", + "comments_url": "https://api.github.com/repos/facebook/react/commits/a4f005992b6bcddf67539cd04eafe0d1c50effc9/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "caf8678643bf6b91e8c8ae54f94de60b84c1a268", + "url": "https://api.github.com/repos/facebook/react/commits/caf8678643bf6b91e8c8ae54f94de60b84c1a268", + "html_url": "https://github.com/facebook/react/commit/caf8678643bf6b91e8c8ae54f94de60b84c1a268" + } + ] + }, + { + "sha": "5719f31d19f21e72c8f72d91549b6cdcb2163970", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjU3MTlmMzFkMTlmMjFlNzJjOGY3MmQ5MTU0OWI2Y2RjYjIxNjM5NzA=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T19:07:23Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T19:07:23Z" + }, + "message": "Added a few more test cases to the inline error test harness", + "tree": { + "sha": "81748d53e3a447093f441669a743680acdad79c8", + "url": "https://api.github.com/repos/facebook/react/git/trees/81748d53e3a447093f441669a743680acdad79c8" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5719f31d19f21e72c8f72d91549b6cdcb2163970", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5719f31d19f21e72c8f72d91549b6cdcb2163970", + "html_url": "https://github.com/facebook/react/commit/5719f31d19f21e72c8f72d91549b6cdcb2163970", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5719f31d19f21e72c8f72d91549b6cdcb2163970/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "a4f005992b6bcddf67539cd04eafe0d1c50effc9", + "url": "https://api.github.com/repos/facebook/react/commits/a4f005992b6bcddf67539cd04eafe0d1c50effc9", + "html_url": "https://github.com/facebook/react/commit/a4f005992b6bcddf67539cd04eafe0d1c50effc9" + } + ] + }, + { + "sha": "92ebd817278e1024094c02995a4f7a586777ef4f", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjkyZWJkODE3Mjc4ZTEwMjQwOTRjMDI5OTVhNGY3YTU4Njc3N2VmNGY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T19:18:21Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T19:18:21Z" + }, + "message": "Show full message on click", + "tree": { + "sha": "cb815069fc425bdc6a2d16a6c8b01ec57b8ab067", + "url": "https://api.github.com/repos/facebook/react/git/trees/cb815069fc425bdc6a2d16a6c8b01ec57b8ab067" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/92ebd817278e1024094c02995a4f7a586777ef4f", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/aXX4ACgkQWCcTbp05\ndTIJ3g//YSC0lrvm4OssnHIgDIIYxhuq4dF9Z8itJhpZLYYPia+fN1q8vXRUhpqu\n4F3OnVztlQrQngdWBkke3AinsHGjWLB1E9VP8Zhlr04QvgU48hl8CDUtMrrh2DEm\nSmj3j/qaxdLBY+7Ii7RkVex68oVYSbQOkV3mx/OVOFPto7tNXgsD7m9WCFjeLCUd\nEy7dQXjMl3Wgt8Da+UQEqnqPllv5uX/oios9CXXqhZ9nTAjzpNKKHnPCzRYgVFj+\nwSSaO/0HRzOjv50xUYtTMcgshmGSBnhDvtN9Stuisi575EHU8boNsu7//VQ1Kbqm\nia4AaUFHE/cKgnAUTLdWEnxNhaLxhUQCCErITZeaoDLtdIgPV+7BntjoqJcJ/uws\nABXNZtjIKEj3hZLqdFNprdT5cJ+0+vJaMhOYIh3acu8uPfN+1ozy2BqDlK2n1pbP\nWMhT5EqeBR/CGZusydLCFuISg9Ez0IwGlZvm2dMXix3LRnUissCKUoGTRcGiNlRZ\noMhVYP0EzvHpb9NtfR8Pd2sXi7gRl6rmNo3ewfEOKq8Q3XPbqyBXqrD7MqHAQZzT\n2D1mXh6ycPhVAE30eubJyz0WBDln8kOg8Ubu1itjIX9ZQKEudLkluZF2DRLKkpkG\nRMy3B8PcNQCc0gEu5x5C+sA5T3SwSPaV1ztMjxLSzsMoPhqZJkA=\n=r+la\n-----END PGP SIGNATURE-----", + "payload": "tree cb815069fc425bdc6a2d16a6c8b01ec57b8ab067\nparent 5719f31d19f21e72c8f72d91549b6cdcb2163970\nauthor eps1lon 1608146301 +0100\ncommitter eps1lon 1608146301 +0100\n\nShow full message on click\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/92ebd817278e1024094c02995a4f7a586777ef4f", + "html_url": "https://github.com/facebook/react/commit/92ebd817278e1024094c02995a4f7a586777ef4f", + "comments_url": "https://api.github.com/repos/facebook/react/commits/92ebd817278e1024094c02995a4f7a586777ef4f/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "5719f31d19f21e72c8f72d91549b6cdcb2163970", + "url": "https://api.github.com/repos/facebook/react/commits/5719f31d19f21e72c8f72d91549b6cdcb2163970", + "html_url": "https://github.com/facebook/react/commit/5719f31d19f21e72c8f72d91549b6cdcb2163970" + } + ] + }, + { + "sha": "70099e5638be567f7ef1d0d0edfb165f0c5ef9b5", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjcwMDk5ZTU2MzhiZTU2N2Y3ZWYxZDBkMGVkZmIxNjVmMGM1ZWY5YjU=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T20:03:59Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T20:03:59Z" + }, + "message": "Revert 92ebd81", + "tree": { + "sha": "6bb1a109c054ae9aba211c743ea9db018177038c", + "url": "https://api.github.com/repos/facebook/react/git/trees/6bb1a109c054ae9aba211c743ea9db018177038c" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/70099e5638be567f7ef1d0d0edfb165f0c5ef9b5", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/70099e5638be567f7ef1d0d0edfb165f0c5ef9b5", + "html_url": "https://github.com/facebook/react/commit/70099e5638be567f7ef1d0d0edfb165f0c5ef9b5", + "comments_url": "https://api.github.com/repos/facebook/react/commits/70099e5638be567f7ef1d0d0edfb165f0c5ef9b5/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "92ebd817278e1024094c02995a4f7a586777ef4f", + "url": "https://api.github.com/repos/facebook/react/commits/92ebd817278e1024094c02995a4f7a586777ef4f", + "html_url": "https://github.com/facebook/react/commit/92ebd817278e1024094c02995a4f7a586777ef4f" + } + ] + }, + { + "sha": "1b6e29277ead380dc90bb560c339680c201dcab6", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjFiNmUyOTI3N2VhZDM4MGRjOTBiYjU2MGMzMzk2ODBjMjAxZGNhYjY=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T20:12:41Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T20:12:41Z" + }, + "message": "Show full error/warning text as tooltip on hover", + "tree": { + "sha": "f57387359f5556303c12460bb1d3c0474382bfa8", + "url": "https://api.github.com/repos/facebook/react/git/trees/f57387359f5556303c12460bb1d3c0474382bfa8" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/1b6e29277ead380dc90bb560c339680c201dcab6", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/1b6e29277ead380dc90bb560c339680c201dcab6", + "html_url": "https://github.com/facebook/react/commit/1b6e29277ead380dc90bb560c339680c201dcab6", + "comments_url": "https://api.github.com/repos/facebook/react/commits/1b6e29277ead380dc90bb560c339680c201dcab6/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "70099e5638be567f7ef1d0d0edfb165f0c5ef9b5", + "url": "https://api.github.com/repos/facebook/react/commits/70099e5638be567f7ef1d0d0edfb165f0c5ef9b5", + "html_url": "https://github.com/facebook/react/commit/70099e5638be567f7ef1d0d0edfb165f0c5ef9b5" + } + ] + } +] \ No newline at end of file diff --git a/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page3.json b/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page3.json new file mode 100644 index 00000000..979ae360 --- /dev/null +++ b/src/test/resources/com/spotify/github/v3/clients/pull_request_commits_page3.json @@ -0,0 +1,1902 @@ +[ + { + "sha": "61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjYxYmY2YTM2YTViZmQ5YjI5N2NlODA1N2Y0NDlhNWY5OWZmNmExZWU=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T20:15:45Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T20:15:45Z" + }, + "message": "inline errors and warnings are not implemented in legacy devtools", + "tree": { + "sha": "9c694f3fceb045ebadd915845d8fa3ff9b40b87d", + "url": "https://api.github.com/repos/facebook/react/git/trees/9c694f3fceb045ebadd915845d8fa3ff9b40b87d" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/aavEACgkQWCcTbp05\ndTJ5UQ/+KofyRcLItGUo23HKV4cagrKhHyKHQUtal4sfEAwPp1flh6Oh+dbw2dGB\nT2kUQyh0cWAQ1zcS/1e+ci3Mojm1hURI0A6x0FJJhsnBFLGEqz7pTGMyl0bCtFYE\nM8xysQSx6kmHFhZXEfXTreH8u0YBxLBMWJuQVU2+M/6Rs057LdWpth4dGiAcJfl1\nllPv4AdzVZ073rqFmVlgNvBgrUxuoSaI9KXVsim4X3Qdr5CP2MFfl34RdEAtW5hy\nxVX9O/dJjnHgyb38mbkwpM6mSeXuFsuY3biZeeLahqt/E3v+GOrAUlXUicEmbPKR\n8uFkyCzw/mY7qc7Zzw4RvIG4ncOsxiNqT55jhZn8MNARqpdCodENEYWQ2Bc1jWsE\nFsH2FYb0DdZN+asXUDx465bXlMDe+Tmfi5l8Kanh4oMUQ5Y8ASrg50tSprpZoAil\n/BBVuwHIVQwkE5LatG9DRWRbHDAneOEZ1Fy5UYvbQnyc+QTuPM8UbB4kmCQsLBVN\n7hMzx+FnpLaBmf1q+XH3p0FhHytaciZZCUhpdnlhw+xauQELFoFX3En/XeDMegTR\nIYHjOPWeh5wbiFLfrxe+RnATll+Ft4h4ecBfxhmHcE2dDnQCZvIWYJ9o58uRWzEb\ngIL+EdCKMnXfRDUIvbR202tPUPsivAXBKaaNxQn7VBi4V7PWp88=\n=ZzOy\n-----END PGP SIGNATURE-----", + "payload": "tree 9c694f3fceb045ebadd915845d8fa3ff9b40b87d\nparent 1b6e29277ead380dc90bb560c339680c201dcab6\nauthor eps1lon 1608149745 +0100\ncommitter eps1lon 1608149745 +0100\n\ninline errors and warnings are not implemented in legacy devtools\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee", + "html_url": "https://github.com/facebook/react/commit/61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee", + "comments_url": "https://api.github.com/repos/facebook/react/commits/61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1b6e29277ead380dc90bb560c339680c201dcab6", + "url": "https://api.github.com/repos/facebook/react/commits/1b6e29277ead380dc90bb560c339680c201dcab6", + "html_url": "https://github.com/facebook/react/commit/1b6e29277ead380dc90bb560c339680c201dcab6" + } + ] + }, + { + "sha": "46cea44df06b30c4e44db1be886cffa9150ce298", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjQ2Y2VhNDRkZjA2YjMwYzRlNDRkYjFiZTg4NmNmZmE5MTUwY2UyOTg=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T20:29:46Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T20:29:46Z" + }, + "message": "Added missing key error test", + "tree": { + "sha": "711b0c3d1d86ef81ed8c9d9b9842c5d6a36dabdc", + "url": "https://api.github.com/repos/facebook/react/git/trees/711b0c3d1d86ef81ed8c9d9b9842c5d6a36dabdc" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/46cea44df06b30c4e44db1be886cffa9150ce298", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/46cea44df06b30c4e44db1be886cffa9150ce298", + "html_url": "https://github.com/facebook/react/commit/46cea44df06b30c4e44db1be886cffa9150ce298", + "comments_url": "https://api.github.com/repos/facebook/react/commits/46cea44df06b30c4e44db1be886cffa9150ce298/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee", + "url": "https://api.github.com/repos/facebook/react/commits/61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee", + "html_url": "https://github.com/facebook/react/commit/61bf6a36a5bfd9b297ce8057f449a5f99ff6a1ee" + } + ] + }, + { + "sha": "8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjhiNWM4ZDljMzU0YjdkYzFhMzFjZGNhYzhiZjk5N2EyZDJjNzdmODA=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T20:53:09Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T20:53:09Z" + }, + "message": "Move batching to backend/console", + "tree": { + "sha": "792e668f200e1b711837638b03cd28c97a62c31d", + "url": "https://api.github.com/repos/facebook/react/git/trees/792e668f200e1b711837638b03cd28c97a62c31d" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/ac7UACgkQWCcTbp05\ndTK4dg//eASfA66HR2GhpPTULA31taWaEk1DmiM+kKp7XKpdeCqOrMebcC6F8rkl\n8rWv17LsO66gQ2V0OeGdMUyQTXPiMj22yNPTZGNQ7BCHCkEVFUsUF3RjO3k6OTqJ\n87AKBwRsw/VUTBwo6ME24R/9u0q3q+BBEXoS1cOkN8hl6x331hYJAmyr5irSu3ql\nRyBnwbamtuqdiIMZD+ljou6L86c8YmTuk0pNIZjEF7DP3z4N452zPbyjwzVgQhN1\noTFc+BvWitUJ1YAHdelVsobmUDHshDME7wy9ZZioX2kD0psDFU+1jx6K1ZUMDs2h\nX1J+LW2sY5zjs5Zgsn6FwCM3C2O/k5RciGsS9Hj2dtej2ttlttAEs7+5kCyqhFX7\nnDSoKUAiaMlKO0YgFm0Q8RIhdOcOSuR0nQe8218jk1GmS2KmhiY21Uq6ZhqFIwrR\nk2LZpXH5NIZxbNGFFOgTE3SG6LUM/tUkvwYoeJgwrPIT9I0u7Lchnly572+dm8pB\naIeCI2K0YnoQlkbSYg2NXuYSFnuGa+sh2J5+dxsIcz2C7OmvLaPqN/eVcdyHzods\nfB9RaeaVb7imZEmM6a94pNKBO5yTOFDgUug1H3i9WvhcctSR/05+5JQNtEbfXnhg\n0p2aOVKUAH1c6mANPvMUcaP+TKSHY+4wLbfD+7NRLLeU4ges4c8=\n=OEqg\n-----END PGP SIGNATURE-----", + "payload": "tree 792e668f200e1b711837638b03cd28c97a62c31d\nparent 46cea44df06b30c4e44db1be886cffa9150ce298\nauthor eps1lon 1608151989 +0100\ncommitter eps1lon 1608151989 +0100\n\nMove batching to backend/console\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80", + "html_url": "https://github.com/facebook/react/commit/8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80", + "comments_url": "https://api.github.com/repos/facebook/react/commits/8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "46cea44df06b30c4e44db1be886cffa9150ce298", + "url": "https://api.github.com/repos/facebook/react/commits/46cea44df06b30c4e44db1be886cffa9150ce298", + "html_url": "https://github.com/facebook/react/commit/46cea44df06b30c4e44db1be886cffa9150ce298" + } + ] + }, + { + "sha": "0146bc33b572a8caa2537c68907a0536964a5a9c", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjAxNDZiYzMzYjU3MmE4Y2FhMjUzN2M2ODkwN2EwNTM2OTY0YTVhOWM=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T21:04:45Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-16T21:04:45Z" + }, + "message": "move filter into forEach", + "tree": { + "sha": "edef577b2b6806681914010f72f86a4d3a88f269", + "url": "https://api.github.com/repos/facebook/react/git/trees/edef577b2b6806681914010f72f86a4d3a88f269" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/0146bc33b572a8caa2537c68907a0536964a5a9c", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/adm0ACgkQWCcTbp05\ndTLzsA/9EpDR5cXG/4TeASS+jHImAZi3T93c4obZNnRzBPBr3vkG41pzJmzc7/x0\nB2FNNcDd+SpjSVYzq4hkKFbvRpPvLwSB7rjRg/fFhAWSI56tNFn+3CBRnmrlj5ee\nwGInqpLX9sxPkVDeIRRA6/DOAAwwoplnqHukgKNz3SNZ7EgHsmRmClhTFnoLItgf\nnLihUiASfVPYz1ZqtUuuJgYkiBa6vqeO4CjeOYq7Y179mvs4Rl3E1JXJp19oljvJ\nITr59NJbAEMr1NmovpK+wPX+RKw/3E/MSylZlZfwjK4GEyz0iLnAnB4Jr/vkW9be\noTRa4WiGeDeReNeSrnT7rxMvH6nkBm6F6Yci10lpwadyP85WdqiocK3YK9Vxr1QF\nIatyEAbkKZ0va9pNlPCc6eZ9jFFv7Eb8d6VgDeK4LMRiHwTdoadfehRiNHkuwo3X\nQrvo1eVCDn1bQfWy2arDRPKiD7q9dqBizPWJBXLAiDea1PGn6/ASVMS4ozn4WVUx\ncetUtAxJelonv5XzlSQ8pcPntp4JV7RsJcLhU9CjHg53dD5yoABcHB4XMxelr2oi\nbowd1oNCUkrxsHFXcuyGaajQqFVwxd700ye3/pWY6GuUthM/0sN41pinYf5tEvxD\nkbA0uK7QVmXECD6ou2maF4h0knvwftGBAyB/TLnzHZHRd5mNOvw=\n=r3g8\n-----END PGP SIGNATURE-----", + "payload": "tree edef577b2b6806681914010f72f86a4d3a88f269\nparent 8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80\nauthor eps1lon 1608152685 +0100\ncommitter eps1lon 1608152685 +0100\n\nmove filter into forEach\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/0146bc33b572a8caa2537c68907a0536964a5a9c", + "html_url": "https://github.com/facebook/react/commit/0146bc33b572a8caa2537c68907a0536964a5a9c", + "comments_url": "https://api.github.com/repos/facebook/react/commits/0146bc33b572a8caa2537c68907a0536964a5a9c/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80", + "url": "https://api.github.com/repos/facebook/react/commits/8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80", + "html_url": "https://github.com/facebook/react/commit/8b5c8d9c354b7dc1a31cdcac8bf997a2d2c77f80" + } + ] + }, + { + "sha": "04ffb01ae43218916a1ed60991793250f7da3fcb", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjA0ZmZiMDFhZTQzMjE4OTE2YTFlZDYwOTkxNzkzMjUwZjdkYTNmY2I=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T21:26:48Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-16T21:26:48Z" + }, + "message": "Added some basic tests for inline errors/warnings", + "tree": { + "sha": "2e883a823bfc718df921aba3ca5f411cd04afe9f", + "url": "https://api.github.com/repos/facebook/react/git/trees/2e883a823bfc718df921aba3ca5f411cd04afe9f" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/04ffb01ae43218916a1ed60991793250f7da3fcb", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/04ffb01ae43218916a1ed60991793250f7da3fcb", + "html_url": "https://github.com/facebook/react/commit/04ffb01ae43218916a1ed60991793250f7da3fcb", + "comments_url": "https://api.github.com/repos/facebook/react/commits/04ffb01ae43218916a1ed60991793250f7da3fcb/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "0146bc33b572a8caa2537c68907a0536964a5a9c", + "url": "https://api.github.com/repos/facebook/react/commits/0146bc33b572a8caa2537c68907a0536964a5a9c", + "html_url": "https://github.com/facebook/react/commit/0146bc33b572a8caa2537c68907a0536964a5a9c" + } + ] + }, + { + "sha": "9380545c50e3b14a0e3a898c1767beb17f11f652", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjkzODA1NDVjNTBlM2IxNGEwZTNhODk4YzE3NjdiZWIxN2YxMWY2NTI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T14:53:41Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T14:53:41Z" + }, + "message": "Add tests for the store", + "tree": { + "sha": "e42ae8d43865b38b2570a9fc2692fa30781dc3f6", + "url": "https://api.github.com/repos/facebook/react/git/trees/e42ae8d43865b38b2570a9fc2692fa30781dc3f6" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/9380545c50e3b14a0e3a898c1767beb17f11f652", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/bcPUACgkQWCcTbp05\ndTJIbw//WoNUVNVYzxq+JO1sksVz1Xhc/vEzkTRowuGXCLukm92ahy8oB79O/K7f\nqvHCB734JueaIhcefFaUVMTr7VEEz78uJEiqZF0MWNx9Op/1uhVXZ/TRiJjlAE5f\ncmKdX8ssGTP8+zhAgB5lZ5jeci02qGFvb2pC0PUygF24QXXC8gPzqXR7MRoNhtjD\n6KbjaOXx/0sgLsk8VmfsML7Smmz9lG6YqB7+3mM5z1+8CF2ksXlGmYlDZ7e3vROM\nY6Rw7/hPJHOrU9HCSKOYazB8jRo6PiiIzvp1MJZLnqXgyoruhm9cfg8SrkdcRA0n\nI+9nObhrZz5m/u+eChBT6xIgcLKD6TE+DioLrpSNHwSr6h4d5s+6nJa9uG11CqGs\nZo8XGwTyfqvVBv0MGgvD/mxsybETZOOvCTfuYpaB6LiLGIuircHD9Y39be+nsCrm\nGEVjxuRvXjlBenDPTlCAWYrJGmwDda8xW+C4DTLjS5bdfVyEMfSaMtdKZok6mDT3\nFWNAyKQyMSvaLCiKldpCMC0d+XcbVj0MF9VaUdRi1TGImqiV/mN8LTZFnPTrVXMP\n9pYduGfxBWGTuoj9fEqOxJh36bZfxzmsNQaARsVbIkzrqxgI5xhiGJrDpNyX3kPi\nvdulPh1JQws0oE0bOnnlxRiPyiNpwhd5B/SpgJQBZdyyO4HTHSk=\n=p3P9\n-----END PGP SIGNATURE-----", + "payload": "tree e42ae8d43865b38b2570a9fc2692fa30781dc3f6\nparent 04ffb01ae43218916a1ed60991793250f7da3fcb\nauthor eps1lon 1608216821 +0100\ncommitter eps1lon 1608216821 +0100\n\nAdd tests for the store\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/9380545c50e3b14a0e3a898c1767beb17f11f652", + "html_url": "https://github.com/facebook/react/commit/9380545c50e3b14a0e3a898c1767beb17f11f652", + "comments_url": "https://api.github.com/repos/facebook/react/commits/9380545c50e3b14a0e3a898c1767beb17f11f652/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "04ffb01ae43218916a1ed60991793250f7da3fcb", + "url": "https://api.github.com/repos/facebook/react/commits/04ffb01ae43218916a1ed60991793250f7da3fcb", + "html_url": "https://github.com/facebook/react/commit/04ffb01ae43218916a1ed60991793250f7da3fcb" + } + ] + }, + { + "sha": "8ff2c7b098eda20f73c05e8e997a61c258231864", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjhmZjJjN2IwOThlZGEyMGY3M2MwNWU4ZTk5N2E2MWMyNTgyMzE4NjQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T16:07:54Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T16:07:54Z" + }, + "message": "Update snapshot due to previous typo fix", + "tree": { + "sha": "a914fb41ebfae2a51e7608d503fe33984e4be2d2", + "url": "https://api.github.com/repos/facebook/react/git/trees/a914fb41ebfae2a51e7608d503fe33984e4be2d2" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/8ff2c7b098eda20f73c05e8e997a61c258231864", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/bgloACgkQWCcTbp05\ndTIELRAAprOLIDb3QLEeos9ctxu4sITTciv+JVm3RYEi5BYmvkc/WbGzBilU9FhW\nfbVirYIkqq+VEi0NhJ1oHFwLf9+tvosZuXqLXV6doakUVtOg5glmatidiD8h61mS\nScxfuU3WdH1YyKo/bGexdA0ZGv/mq4lbqQhBxSkFeE9zSuZt/nC97k1d01ZrHQg0\nkObtSBHlu0vKTX0Vr0gAN3Wumfw5mOoEmbkx4HR+qHV8YaYsXOEou1RXSQJKCQJo\nbdl27y0sJEvMo2qzEDwE9XjMp8UUcgcDuMNe3irjryMA9rFbolNoo+mQ3POyvmL5\nFSxsV9t/taKjXpcw1+1e5cb1LkKblXnS8/tOiIXnq8HIh+19CFLPV+hl2ASrp9CR\nWdVl5RDIxCK/2rw7RRPXvabHKMohnOlCRmylxv5RGRiXPpCRVQ4sViJfWpaQjDj6\nXAuf7897awWlnJSnIMs0exepPX/SSds5hyg/eCMyKnfGzcsOG0c4ktkYJjbRIgyU\nTk7HOKvJYziJdCJYTva5Aoga9yqXqxgVcXQ14G9CeVXXYwmm1s+pePpNoESomWeV\nkETg42uOKxZ/I5GSV7kVq2AVQ+eNwEvlos/dUYgnvwSwmL/FwDcwsytT914HqT6L\nG8vW/a/cJaDx/bRDEbTsSoz2ZtXs0mKDmzIOzKYO2mWyhd/9Nm0=\n=ZApv\n-----END PGP SIGNATURE-----", + "payload": "tree a914fb41ebfae2a51e7608d503fe33984e4be2d2\nparent 9380545c50e3b14a0e3a898c1767beb17f11f652\nauthor eps1lon 1608221274 +0100\ncommitter eps1lon 1608221274 +0100\n\nUpdate snapshot due to previous typo fix\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/8ff2c7b098eda20f73c05e8e997a61c258231864", + "html_url": "https://github.com/facebook/react/commit/8ff2c7b098eda20f73c05e8e997a61c258231864", + "comments_url": "https://api.github.com/repos/facebook/react/commits/8ff2c7b098eda20f73c05e8e997a61c258231864/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "9380545c50e3b14a0e3a898c1767beb17f11f652", + "url": "https://api.github.com/repos/facebook/react/commits/9380545c50e3b14a0e3a898c1767beb17f11f652", + "html_url": "https://github.com/facebook/react/commit/9380545c50e3b14a0e3a898c1767beb17f11f652" + } + ] + }, + { + "sha": "5824f48de70c944eaf0c1c82f5baf3ca770f86e4", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjU4MjRmNDhkZTcwYzk0NGVhZjBjMWM4MmY1YmFmM2NhNzcwZjg2ZTQ=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T16:09:40Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T16:09:40Z" + }, + "message": "Remove outdated snapshot", + "tree": { + "sha": "2b08941996c079067be8348c06621b137e79b312", + "url": "https://api.github.com/repos/facebook/react/git/trees/2b08941996c079067be8348c06621b137e79b312" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5824f48de70c944eaf0c1c82f5baf3ca770f86e4", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5824f48de70c944eaf0c1c82f5baf3ca770f86e4", + "html_url": "https://github.com/facebook/react/commit/5824f48de70c944eaf0c1c82f5baf3ca770f86e4", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5824f48de70c944eaf0c1c82f5baf3ca770f86e4/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "8ff2c7b098eda20f73c05e8e997a61c258231864", + "url": "https://api.github.com/repos/facebook/react/commits/8ff2c7b098eda20f73c05e8e997a61c258231864", + "html_url": "https://github.com/facebook/react/commit/8ff2c7b098eda20f73c05e8e997a61c258231864" + } + ] + }, + { + "sha": "8fc62494adfa8cc20eb94478eb64508b452adb69", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjhmYzYyNDk0YWRmYThjYzIwZWI5NDQ3OGViNjQ1MDhiNDUyYWRiNjk=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T16:29:01Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T16:29:01Z" + }, + "message": "Refactored error/warning message queueing and bundling", + "tree": { + "sha": "c7177d9d798a5ef60bf3479504f751d84c114d42", + "url": "https://api.github.com/repos/facebook/react/git/trees/c7177d9d798a5ef60bf3479504f751d84c114d42" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/8fc62494adfa8cc20eb94478eb64508b452adb69", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/8fc62494adfa8cc20eb94478eb64508b452adb69", + "html_url": "https://github.com/facebook/react/commit/8fc62494adfa8cc20eb94478eb64508b452adb69", + "comments_url": "https://api.github.com/repos/facebook/react/commits/8fc62494adfa8cc20eb94478eb64508b452adb69/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "5824f48de70c944eaf0c1c82f5baf3ca770f86e4", + "url": "https://api.github.com/repos/facebook/react/commits/5824f48de70c944eaf0c1c82f5baf3ca770f86e4", + "html_url": "https://github.com/facebook/react/commit/5824f48de70c944eaf0c1c82f5baf3ca770f86e4" + } + ] + }, + { + "sha": "f0ceff6f856e846c18d9267de8294752b5c8f4f8", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmYwY2VmZjZmODU2ZTg0NmMxOGQ5MjY3ZGU4Mjk0NzUyYjVjOGY0Zjg=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T16:36:53Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T16:36:53Z" + }, + "message": "Fixed Store tests by updating to inline snapshots", + "tree": { + "sha": "e2dc5f4d8a81d5f388593635b6362865da1e87f4", + "url": "https://api.github.com/repos/facebook/react/git/trees/e2dc5f4d8a81d5f388593635b6362865da1e87f4" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/f0ceff6f856e846c18d9267de8294752b5c8f4f8", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/f0ceff6f856e846c18d9267de8294752b5c8f4f8", + "html_url": "https://github.com/facebook/react/commit/f0ceff6f856e846c18d9267de8294752b5c8f4f8", + "comments_url": "https://api.github.com/repos/facebook/react/commits/f0ceff6f856e846c18d9267de8294752b5c8f4f8/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "8fc62494adfa8cc20eb94478eb64508b452adb69", + "url": "https://api.github.com/repos/facebook/react/commits/8fc62494adfa8cc20eb94478eb64508b452adb69", + "html_url": "https://github.com/facebook/react/commit/8fc62494adfa8cc20eb94478eb64508b452adb69" + } + ] + }, + { + "sha": "1c1874c4bed1718f32b951a52bc669fe6d992d14", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjFjMTg3NGM0YmVkMTcxOGYzMmI5NTFhNTJiYzY2OWZlNmQ5OTJkMTQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T17:04:55Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T17:04:55Z" + }, + "message": "Prevent siliencing of unexpected console calls in inspectedElementContext-test", + "tree": { + "sha": "93c091bf94cbdb16f98ecbdd93c710b035937c72", + "url": "https://api.github.com/repos/facebook/react/git/trees/93c091bf94cbdb16f98ecbdd93c710b035937c72" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/1c1874c4bed1718f32b951a52bc669fe6d992d14", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/bj7cACgkQWCcTbp05\ndTJY1g/+PSzg4b++rN4nz+8mqopGFgC9tEC7ot9me7CidrOFbFyjzuO3uBCWyPnw\ntD2pi/2irF++6KNiST96TSGjX3MC/U/24wUiiijkpgEZHESPWBO+/COHE1tJX4RD\nDtBd1c7mFYHnpCNrtLDC3n+64k0fdrOZQQkGYZKPOzif2qeYQ5V63nQOjQEeuQec\nQLQkkvrn3t0TuB7yNtcBwGrC117mekoW6P/qeHn/DDTwwhUX4kLwjlqItbmxsu4Y\n/mAVHtFuMqoLNQBNwWq33vtohFO8RK22q5XO+ByrNp9uJ71xTeQYH5YJhLnCAwmY\nCx0jJbqMoy6g0qOqoN+J1ASnurmLD0a6jVdp13awHSBljUs7085D/qosQc0rTMVS\nZhHRm1zmyyJHtqrn22ijOTfC+H2PUY5rzb4S287XhAEHZNqAWQuKenA80yBDJCC6\n0+uXmMJm4/JHiFMMv8jWHur9GwuiGfXuC8las2HcoJ9uHFWq7Ytb/BJnHF9F4OSu\nQOvdchW+28zRYjfEoLQpKx0sCt6Dq6c67puOeQMZtghtwdaVD/zWYuNBN5hJXX7K\n1Fywb56vwytkgUkA7JQqbAvIjrJiafMxquLU5ck0Vk89uSyrieG4MlHSEbwl9VII\nmeXiC6LK+ReMEKpCEB2GNazY3wa9aNh12L+Jj8eKSc1VszWO1Jo=\n=jXp6\n-----END PGP SIGNATURE-----", + "payload": "tree 93c091bf94cbdb16f98ecbdd93c710b035937c72\nparent f0ceff6f856e846c18d9267de8294752b5c8f4f8\nauthor eps1lon 1608224695 +0100\ncommitter eps1lon 1608224695 +0100\n\nPrevent siliencing of unexpected console calls in inspectedElementContext-test\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/1c1874c4bed1718f32b951a52bc669fe6d992d14", + "html_url": "https://github.com/facebook/react/commit/1c1874c4bed1718f32b951a52bc669fe6d992d14", + "comments_url": "https://api.github.com/repos/facebook/react/commits/1c1874c4bed1718f32b951a52bc669fe6d992d14/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "f0ceff6f856e846c18d9267de8294752b5c8f4f8", + "url": "https://api.github.com/repos/facebook/react/commits/f0ceff6f856e846c18d9267de8294752b5c8f4f8", + "html_url": "https://github.com/facebook/react/commit/f0ceff6f856e846c18d9267de8294752b5c8f4f8" + } + ] + }, + { + "sha": "ef149c9e0dc7aa95c256849dbe99d5d29d248335", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmVmMTQ5YzllMGRjN2FhOTVjMjU2ODQ5ZGJlOTlkNWQyOWQyNDgzMzU=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T17:39:36Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T17:39:36Z" + }, + "message": "Actually use generic param", + "tree": { + "sha": "034a89d997ea5a2788d7154e712cd32c4b95dab2", + "url": "https://api.github.com/repos/facebook/react/git/trees/034a89d997ea5a2788d7154e712cd32c4b95dab2" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/ef149c9e0dc7aa95c256849dbe99d5d29d248335", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/bl9gACgkQWCcTbp05\ndTJ1Tw//VMzPMHDn7ogH68I2MQ5x5JvVz9FJDh4HeAKDUjjHZ3u0i1IB0JDEJsyO\nm/RGptpyiNhurWa/wbaTWzZ7XXTbs6Xx90t3j6ciIOBEvDdBb/KQ+LbY3EoozwsJ\nHIn4yWE+Q4laANamsZIasoQblNXjP5QAmU+5sA4asWAf2EXYpo8McqdoKCnsyT2K\neJVnTzqkXIJLUWvgsUh12xdsrpfQ5cxh0kMj6erifGMM9f2VvRXMdZrbdIqqe3X4\nRyqTeoDvfJXYW7Zk5udp6C+5ZhL1Vd5vbrApm3V3dUYWV9t8Iic79iF8waUUBh8o\nUFUCWS3aQHrIdZ06wSSd6O2o6tpCJqzQh5lyvsIs3ZCbya7as+e40OCVb5PquzO0\nl3V2+UewIqazhXBNXBqKLo4jyFAn3w41DtFMvGPJW+3pTtrLU7qcbQ7B05LYUUbE\nBojV10OjB3XbY4VR+S9Rqm8q8VST5ZaTN5ent0SXLDbPMW97tHv+GUqPRrDUFfci\nJ3DAvv1dk65fEmo0y2HIQTsYBr8q/yBGZnzSSaT4CCmhXWz7gqT/z59IoQpS5fFx\nAjM7jhDvqCDj66THykuov0XimauW2LNDPShGQGgBeR5VnESxd5uT13lG/63OwR4X\ng4qefC7S8KlfRKjqHOBz6Uw+aEl6UCsnw0MY0rk1eLupFX6SFw8=\n=EWhf\n-----END PGP SIGNATURE-----", + "payload": "tree 034a89d997ea5a2788d7154e712cd32c4b95dab2\nparent 1c1874c4bed1718f32b951a52bc669fe6d992d14\nauthor eps1lon 1608226776 +0100\ncommitter eps1lon 1608226776 +0100\n\nActually use generic param\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/ef149c9e0dc7aa95c256849dbe99d5d29d248335", + "html_url": "https://github.com/facebook/react/commit/ef149c9e0dc7aa95c256849dbe99d5d29d248335", + "comments_url": "https://api.github.com/repos/facebook/react/commits/ef149c9e0dc7aa95c256849dbe99d5d29d248335/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1c1874c4bed1718f32b951a52bc669fe6d992d14", + "url": "https://api.github.com/repos/facebook/react/commits/1c1874c4bed1718f32b951a52bc669fe6d992d14", + "html_url": "https://github.com/facebook/react/commit/1c1874c4bed1718f32b951a52bc669fe6d992d14" + } + ] + }, + { + "sha": "5c892ac2db1d1174731e0a07704be7e7562a9496", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjVjODkyYWMyZGIxZDExNzQ3MzFlMGEwNzcwNGJlN2U3NTYyYTk0OTY=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T17:46:52Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T17:46:52Z" + }, + "message": "Use inline snapshots", + "tree": { + "sha": "574b2c9db0a3267e3ba4acc1da6db9b6f0e5332a", + "url": "https://api.github.com/repos/facebook/react/git/trees/574b2c9db0a3267e3ba4acc1da6db9b6f0e5332a" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5c892ac2db1d1174731e0a07704be7e7562a9496", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/bmYwACgkQWCcTbp05\ndTLeGRAAked7WzXdQnJce34Qb4v3PWT/2N9f3EqkANvlg6zYhwr03V/ebQw2Wl1M\nILpTCfYxmj7oowSuarPFq/a24Jlo3yx9If++y8dvFCq6jGZ0wAoWpm8014xQX6ku\nqfV+pLwvYlSQo2r7yXzdDIGUCA3HmSCaHPaupyEjDkK2S14puKtp/dmk5qe0kbxA\n6xivxiwP1HaIEZ7Hlu49w1FTXlfezDILXiN1xYB2WXT+fQqLmmil155t0WrxK5jP\nS+ultpiYEDbtF1ZjKWup0jzxmL6Oxf3RkzBzm83x9juc2QNRaXUB+Lc2jj7hSBOq\nF7gA6RquNzOgagxCTo12U3onrs89F0P+R7CEMFdnJS7ZZLftPdzj4rqXxEQ67Myv\ntImNfIxs6TtDb7zo/iVADrVZXrJgYqnsfqhdnJDvPxgrxcEUwgB5lE9xUgwex8At\nGm50PuGhurzf1L/Lkdc7qZpkKtIOH5jzOfqWLuiu8QE4zc/Cd6JS1wXnkbKNYfrU\n0n002dz3PBhBGnawNb8zZ7Nmbc9JWR9pnODkWioU6m3RSJWYvyYGUlIZQOa4D07E\nI9tALyDCqLUZ0iGSsqnJnWojsQbWNScrL5RUtGdvg/BlprrZnCAEJZJwJ4gxVi56\nYcR4t9WtXKEOuGJIN4jOA81MzCUc5UWdbKCrdC0VtFx3hmciboo=\n=4n2E\n-----END PGP SIGNATURE-----", + "payload": "tree 574b2c9db0a3267e3ba4acc1da6db9b6f0e5332a\nparent ef149c9e0dc7aa95c256849dbe99d5d29d248335\nauthor eps1lon 1608227212 +0100\ncommitter eps1lon 1608227212 +0100\n\nUse inline snapshots\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5c892ac2db1d1174731e0a07704be7e7562a9496", + "html_url": "https://github.com/facebook/react/commit/5c892ac2db1d1174731e0a07704be7e7562a9496", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5c892ac2db1d1174731e0a07704be7e7562a9496/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "ef149c9e0dc7aa95c256849dbe99d5d29d248335", + "url": "https://api.github.com/repos/facebook/react/commits/ef149c9e0dc7aa95c256849dbe99d5d29d248335", + "html_url": "https://github.com/facebook/react/commit/ef149c9e0dc7aa95c256849dbe99d5d29d248335" + } + ] + }, + { + "sha": "8953cdc6503b8a73ce5f27a5522865ac48c6c465", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjg5NTNjZGM2NTAzYjhhNzNjZTVmMjdhNTUyMjg2NWFjNDhjNmM0NjU=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T18:46:14Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T18:56:11Z" + }, + "message": "Add tests for clearing errors and warnings", + "tree": { + "sha": "d6cfd9c239da749ea68557f404234104e09eda01", + "url": "https://api.github.com/repos/facebook/react/git/trees/d6cfd9c239da749ea68557f404234104e09eda01" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/8953cdc6503b8a73ce5f27a5522865ac48c6c465", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/bqcsACgkQWCcTbp05\ndTLDUA//bDq3xwMKoFaIE1z0toaAveWlTQniac9qdEVCd4Vw3m1ZurlSnWAgC1i2\nZtgbSrGC+vw8kJeh+Ya7ma09U0WKilySO8AeKaaoHVe8OJOw8+r/VCzfRigMazbf\nYmqt6gwVaiJ2YIn1tzsjAABwRQrnzwVKwzzsOarnQMjfJLZOYeYwc6myJdRef/AW\nsXVE7Z8SVlfcExQm8CYS98VCH9p7Z0zHAaBKVYw2BoNehxU6oGRPXSNIw58rGS5H\nQGuPuDRa6GKyDIM7N0uXaCWiTwzIDq2yvh4UxeAHipM0h61vPoOkV5xV7K+1KHdN\nBHRvbe7CZ8+gOqIm+MS9LPcq/18ltlfFI9Oskm6kS5xyyb0GDd84ZegMVGyC1DMG\n0whkKKnke3JmSUPRKbhinheST/YN7qLrsvZtlCfLtvyNwVXpPMwo+M3aiDHhHVvj\nkapol/9xn/mvG2sTxyOu1srHDF4Ra3vowiIU0yR/0dJhPjIqjYQGXcqpNxhZBDT4\n8QvrSKup7UII4LvsgXdnsVHLFxhnsRCeXSlUMF2SuhdakXEt43EFB3xHhEMD4tYb\nssF7IUmvX85PxCOTMZXbq0RTGFpCRIeVAdjU92E5ywlkHg0gCIZuKz6WWq3VDs4h\nDeGoaeW8lmqCJ7VyRYNLd69+mQWe2bzp3YTs2Z//tBHJYbPOjoE=\n=RhyO\n-----END PGP SIGNATURE-----", + "payload": "tree d6cfd9c239da749ea68557f404234104e09eda01\nparent 5c892ac2db1d1174731e0a07704be7e7562a9496\nauthor eps1lon 1608230774 +0100\ncommitter eps1lon 1608231371 +0100\n\nAdd tests for clearing errors and warnings\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/8953cdc6503b8a73ce5f27a5522865ac48c6c465", + "html_url": "https://github.com/facebook/react/commit/8953cdc6503b8a73ce5f27a5522865ac48c6c465", + "comments_url": "https://api.github.com/repos/facebook/react/commits/8953cdc6503b8a73ce5f27a5522865ac48c6c465/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "5c892ac2db1d1174731e0a07704be7e7562a9496", + "url": "https://api.github.com/repos/facebook/react/commits/5c892ac2db1d1174731e0a07704be7e7562a9496", + "html_url": "https://github.com/facebook/react/commit/5c892ac2db1d1174731e0a07704be7e7562a9496" + } + ] + }, + { + "sha": "268a25b169aa612447622a8c5ba5afedce6e584e", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjI2OGEyNWIxNjlhYTYxMjQ0NzYyMmE4YzViYTVhZmVkY2U2ZTU4NGU=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T18:58:13Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T18:58:13Z" + }, + "message": "Run the minimal amount of timer necessary", + "tree": { + "sha": "aeb3df251ff62f2260906fbdb1efd73492bf8483", + "url": "https://api.github.com/repos/facebook/react/git/trees/aeb3df251ff62f2260906fbdb1efd73492bf8483" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/268a25b169aa612447622a8c5ba5afedce6e584e", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/bqkUACgkQWCcTbp05\ndTIHQBAAqWs4RVLuLKUrwNeRrsYKzKm4jzQTuLtJcuJFmkqci1L1y2sHHiwdE6k4\nMs3+1NWLUJElPgAVGOEqiV1GdtS4ku1yntJAeyRu/E5FpGV7ZnNDJdsy//vC1CA3\n860a4DFU5M4vHB6ycYcIOW2GipLYJ43VzGoID9ErxnHPhoy7Y2SqQckZZTkerKFj\nK4OKkHHxhB5yXVt7dY/lTua+uEWaDK6MeWLAdVnAHpXJS5j8fk8nR37bQeGe5ZJf\ntThYihTsz5mQ6HdJ47yy4zGUzGdw6rvlqhzRAwzb9ld8OQEvFBKY/iZOWYZNHZF0\nklXTFpQBFBn9k1+U6h0lT9TuGH2jnI5u2wN92Q03G5uOM6Em0k9dbslk+td7h8wY\nv1RqPvaNXowEHtoMqk5zsieVcTvUFALyAsZ7o362Vrf1o1WrdDRJy344qtGy/y4x\npxVG59AYd0IeB8sttHxf5Choi90C4K4bOGJSRphd8G3e5UBC7i3S9q3KpJ2/tI45\n3b8zFI5LuJrpeu2zVj2BSfhGC2shMfJYmX/dYzZ9gUqL26Fw/aDxsnjIO/LWob94\nYEQp8kUFbqF27UIgxleLJ1arVNnRv4+TFVhWn+q/7Hq0vzbrM8zbMpsq357VXj1X\n/LaY3oCinx6lZRk5k4t6qTA4RFIHUKx+lNkuj4IPDO/3pQxnR8I=\n=MK7j\n-----END PGP SIGNATURE-----", + "payload": "tree aeb3df251ff62f2260906fbdb1efd73492bf8483\nparent 8953cdc6503b8a73ce5f27a5522865ac48c6c465\nauthor eps1lon 1608231493 +0100\ncommitter eps1lon 1608231493 +0100\n\nRun the minimal amount of timer necessary\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/268a25b169aa612447622a8c5ba5afedce6e584e", + "html_url": "https://github.com/facebook/react/commit/268a25b169aa612447622a8c5ba5afedce6e584e", + "comments_url": "https://api.github.com/repos/facebook/react/commits/268a25b169aa612447622a8c5ba5afedce6e584e/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "8953cdc6503b8a73ce5f27a5522865ac48c6c465", + "url": "https://api.github.com/repos/facebook/react/commits/8953cdc6503b8a73ce5f27a5522865ac48c6c465", + "html_url": "https://github.com/facebook/react/commit/8953cdc6503b8a73ce5f27a5522865ac48c6c465" + } + ] + }, + { + "sha": "6e167a3f300352c21aa696258c1b8759c1a1a082", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjZlMTY3YTNmMzAwMzUyYzIxYWE2OTYyNThjMWI4NzU5YzFhMWEwODI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T19:07:50Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-17T19:07:50Z" + }, + "message": "Revert \"Run the minimal amount of timer necessary\"\n\nThis reverts commit 268a25b169aa612447622a8c5ba5afedce6e584e.", + "tree": { + "sha": "d6cfd9c239da749ea68557f404234104e09eda01", + "url": "https://api.github.com/repos/facebook/react/git/trees/d6cfd9c239da749ea68557f404234104e09eda01" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/6e167a3f300352c21aa696258c1b8759c1a1a082", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/brIgACgkQWCcTbp05\ndTIpKBAAnQHFjeV52CTgQI/CjPUe7IIfYgWt20EL9gkcQmVG0gAJCVVybAwUwtOT\naseGsLauomKfm30s6besa5JyGCPuL/fV0vIj6m2dAPHuKPkxjs0843Ir73Kw90eV\n+4FtYGF0y/dhEXbbNC2/T/ScCTBbta2I8mzVTyZHJtkg37fS58vJaUOeLwNxjGGs\n3haEbgtxP9tpld7gjsdAN5z60DG9owuyDBZOdGet9GQMW9TBQjDryojqx0XU2BOf\nE5AGObTu8UVnriEOOJL/b7q+R6VTbysBMT4TC37/CnwnnBAKBXD18tT4rbuk9d8z\n5ScMDesAsVS2a+Ig9NcklB26TQ2oZBvrlN6duU1/b7kfHy0J9HlCMFJqgz3g5zX1\n8i3QjfHHI9vhmAkBpNVt2PVPjmLQr/N/gsZTnGoPNV7wJGXdTbJqwens30bCmyU5\nvjQB2dVJBDS/rSls/H5K6UCEOJ9fuvfLVNS7uP0ivE4hd/9P4RO4gEv+lc5kVpqH\neu1IF8YITkXEZAru2ibjbBzLAjlFj8bkcvcLR1D8XUBgreg1R7Gc+djozBAGpJI4\nxytp5bP7Ll2oUUur3K/AQUSci190YIyo+xCcFmyRofcczfy9GaLZ+Gjbpu81LTUi\nvepCWBzdeyiVq+d2Uz38pSdt+/csoxRCQJ/hZBlUyBoSiX84U54=\n=yV+S\n-----END PGP SIGNATURE-----", + "payload": "tree d6cfd9c239da749ea68557f404234104e09eda01\nparent 268a25b169aa612447622a8c5ba5afedce6e584e\nauthor eps1lon 1608232070 +0100\ncommitter eps1lon 1608232070 +0100\n\nRevert \"Run the minimal amount of timer necessary\"\n\nThis reverts commit 268a25b169aa612447622a8c5ba5afedce6e584e.\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/6e167a3f300352c21aa696258c1b8759c1a1a082", + "html_url": "https://github.com/facebook/react/commit/6e167a3f300352c21aa696258c1b8759c1a1a082", + "comments_url": "https://api.github.com/repos/facebook/react/commits/6e167a3f300352c21aa696258c1b8759c1a1a082/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "268a25b169aa612447622a8c5ba5afedce6e584e", + "url": "https://api.github.com/repos/facebook/react/commits/268a25b169aa612447622a8c5ba5afedce6e584e", + "html_url": "https://github.com/facebook/react/commit/268a25b169aa612447622a8c5ba5afedce6e584e" + } + ] + }, + { + "sha": "69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjY5NDEwYWM5ZWRiOWIxM2NlYWQ2ZGJiNDZmOWEwZWEwYjJjNmNkMGQ=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T21:35:10Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T21:35:10Z" + }, + "message": "Added tests (and bug fix) for select next/prev error", + "tree": { + "sha": "26180e46fa934907bf58d77563ef679d598cc6f9", + "url": "https://api.github.com/repos/facebook/react/git/trees/26180e46fa934907bf58d77563ef679d598cc6f9" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d", + "html_url": "https://github.com/facebook/react/commit/69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "6e167a3f300352c21aa696258c1b8759c1a1a082", + "url": "https://api.github.com/repos/facebook/react/commits/6e167a3f300352c21aa696258c1b8759c1a1a082", + "html_url": "https://github.com/facebook/react/commit/6e167a3f300352c21aa696258c1b8759c1a1a082" + } + ] + }, + { + "sha": "6feb404501cae6cbc827d13229e0b02d81884e35", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjZmZWI0MDQ1MDFjYWU2Y2JjODI3ZDEzMjI5ZTBiMDJkODE4ODRlMzU=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T23:16:41Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T23:16:41Z" + }, + "message": "Fixed an error (but left a TODO for a better future fix)", + "tree": { + "sha": "8fec934be9a7e4c0851b7c912b71186d62fbcf9a", + "url": "https://api.github.com/repos/facebook/react/git/trees/8fec934be9a7e4c0851b7c912b71186d62fbcf9a" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/6feb404501cae6cbc827d13229e0b02d81884e35", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/6feb404501cae6cbc827d13229e0b02d81884e35", + "html_url": "https://github.com/facebook/react/commit/6feb404501cae6cbc827d13229e0b02d81884e35", + "comments_url": "https://api.github.com/repos/facebook/react/commits/6feb404501cae6cbc827d13229e0b02d81884e35/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d", + "url": "https://api.github.com/repos/facebook/react/commits/69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d", + "html_url": "https://github.com/facebook/react/commit/69410ac9edb9b13cead6dbb46f9a0ea0b2c6cd0d" + } + ] + }, + { + "sha": "da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmRhMGFhZDJjYmYzOWRiM2ZiZjJkNmJkYTMwM2FjMzNmNWI3ZjkyYmQ=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T23:28:36Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-17T23:28:36Z" + }, + "message": "Added two (failing) tests that we should fix", + "tree": { + "sha": "b7324c78c7814e6d20c3fbccfe7dcf44dc7ad59a", + "url": "https://api.github.com/repos/facebook/react/git/trees/b7324c78c7814e6d20c3fbccfe7dcf44dc7ad59a" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd", + "html_url": "https://github.com/facebook/react/commit/da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd", + "comments_url": "https://api.github.com/repos/facebook/react/commits/da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "6feb404501cae6cbc827d13229e0b02d81884e35", + "url": "https://api.github.com/repos/facebook/react/commits/6feb404501cae6cbc827d13229e0b02d81884e35", + "html_url": "https://github.com/facebook/react/commit/6feb404501cae6cbc827d13229e0b02d81884e35" + } + ] + }, + { + "sha": "35b16ce7d9e14ff5544a4c61293eae1c0ff510eb", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjM1YjE2Y2U3ZDllMTRmZjU1NDRhNGM2MTI5M2VhZTFjMGZmNTEwZWI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T10:04:09Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T10:04:09Z" + }, + "message": "select(Prev|Next)Error -> select(Prev|Next)ErrorOrWarning\n\nMaybe we should've called it \"Issues\" instead but now that we've written it so often we might as well keep it?!\nOr just avoid the bikeshedding altogether...", + "tree": { + "sha": "fb266c3ad9eafaa1a83e14154c7db9bbdde4d6ef", + "url": "https://api.github.com/repos/facebook/react/git/trees/fb266c3ad9eafaa1a83e14154c7db9bbdde4d6ef" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/35b16ce7d9e14ff5544a4c61293eae1c0ff510eb", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/cfpkACgkQWCcTbp05\ndTIZCBAAkoxAgP5gw2nGRxL8ow4BKwgL3/Gn8NM3UGoLoe3jhP7ceWTrPPejO8Q+\n4gRW+teqz5kfHNYlAnmOUSue3aKKXX2v3dF5mG4KiwFYNpOkPlE/6fFTLbyvqxVv\nFdu6x1Vm8dZceqc5y8a2jcn+ajCjf/YEZE5LYmpigl7Cjlrk6tF3BlsY2s8NiZ3/\nPRgH3aOOsEHWIkmLlMriTI8m6caN1EcC7PBi3DDiTzfDIz4FK8ZTxIWqyS0vEAIP\n/NZ+rysV/xj+dW8zvx4h9RBNyX/y8AYnFJIJfkxOoiBDTW5U73tqtkqz8Gau/6ue\nHrSBMlRyR1Fby5dnjI1+2pmKp8PjrcN2LOO9VNRKrS9BWWCTDWyshnOfPm1shtMC\nMSxRTY2kP1f9fkNVI7a15FqU88r7ZbUezY82e7n+3hM3+7WZCTESAnWMLddr8Ung\nCAr/oI7C3VsHx8ImoI1VmqaijBj8xW4+b+zTB1UoyrtV1L5MSr/K4lah01Oiw3id\n6pYXOVw1PAPOO1UMiRHtVYKbq4SnvCLKORMmtU1COZjMJkxF5obWWJh/6Pt7NOQL\nooZ939mug+lr/7tXvAT7xYEkBHwxgsfiYdApok4yp2ryfQ7HgRAlNu/2gxol73tf\nNLXam3otNwsjrB86O0Ib9dfmBLhCqBRA9toJ5CZN/zsXsjC1+JU=\n=uyxh\n-----END PGP SIGNATURE-----", + "payload": "tree fb266c3ad9eafaa1a83e14154c7db9bbdde4d6ef\nparent da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd\nauthor eps1lon 1608285849 +0100\ncommitter eps1lon 1608285849 +0100\n\nselect(Prev|Next)Error -> select(Prev|Next)ErrorOrWarning\n\nMaybe we should've called it \"Issues\" instead but now that we've written it so often we might as well keep it?!\nOr just avoid the bikeshedding altogether...\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/35b16ce7d9e14ff5544a4c61293eae1c0ff510eb", + "html_url": "https://github.com/facebook/react/commit/35b16ce7d9e14ff5544a4c61293eae1c0ff510eb", + "comments_url": "https://api.github.com/repos/facebook/react/commits/35b16ce7d9e14ff5544a4c61293eae1c0ff510eb/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd", + "url": "https://api.github.com/repos/facebook/react/commits/da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd", + "html_url": "https://github.com/facebook/react/commit/da0aad2cbf39db3fbf2d6bda303ac33f5b7f92bd" + } + ] + }, + { + "sha": "af1c54ed8f5a528028eac4512f5a33f143a5c5e1", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmFmMWM1NGVkOGY1YTUyODAyOGVhYzQ1MTJmNWEzM2YxNDNhNWM1ZTE=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T10:55:40Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T10:55:40Z" + }, + "message": "Serialize errors and warnings in snapshots", + "tree": { + "sha": "869af1b4246b10b959639fbed569293342feff22", + "url": "https://api.github.com/repos/facebook/react/git/trees/869af1b4246b10b959639fbed569293342feff22" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/af1c54ed8f5a528028eac4512f5a33f143a5c5e1", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/ciqwACgkQWCcTbp05\ndTIdiA//TYIhuuUpXOhHA6HBHBaSnaBGOJZYixs694+yNenUn/NhE3qITcltp1aN\nF5Z2qAFNq0G4F2iXAj+fJGHsw801BmYmTSUNbnOelh1u5GhAvM6vud6duZ4hQjZ3\nHA3rDbIJkswiLEhaY2DSOj8S4sWBSX/Jl49XqUdWeuqrR4wxIJjpYJ3QiFcslOq4\nh8YG1C+A9QtVKr1pAAxWRrK6BOCe1PMSQUPm+WCSpUUh4f9mdCzwaEBjd5BMLJWc\nMZ12gVm9T3SMstnMGu4eoESNQbrtR1a+t382J1s+7AEphX0QizOhhmKaWD+NK3zT\ne5vqfAhtf5S3OdNwjkwd3zgNpPOxveCTpAQlATL7AOK8Jpn1E9RCrMpfTMvfixSg\nWp3ODz7i731mIdW3j1Ywvz3K/7J1B60qVfVhdD7oudb4OYOfE2UpJqvl/3ngeY5z\nSLHIBAqL1+4pp+PMdVcU2AhDUOX1KER5L5NG/0FW2mqcbz/P1XK7CptS/dbblKq/\nDIrsdISRTh9HXzV+ozOwSLHNyVKe1PteaaJLMl/fMmnxH8bzsTRRFDNdX1JqfGYl\nSA0ZVXS0YnynskNQOIbG8v1BatfJaItc15sBVvU4WwYfULzVmdyac3N9PZxWv9zL\nrT1JgSiCIzs1RlKaAPdw9WYmH+jripXUv8qym5yM0jWmBFFwtJE=\n=dL8u\n-----END PGP SIGNATURE-----", + "payload": "tree 869af1b4246b10b959639fbed569293342feff22\nparent 35b16ce7d9e14ff5544a4c61293eae1c0ff510eb\nauthor eps1lon 1608288940 +0100\ncommitter eps1lon 1608288940 +0100\n\nSerialize errors and warnings in snapshots\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/af1c54ed8f5a528028eac4512f5a33f143a5c5e1", + "html_url": "https://github.com/facebook/react/commit/af1c54ed8f5a528028eac4512f5a33f143a5c5e1", + "comments_url": "https://api.github.com/repos/facebook/react/commits/af1c54ed8f5a528028eac4512f5a33f143a5c5e1/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "35b16ce7d9e14ff5544a4c61293eae1c0ff510eb", + "url": "https://api.github.com/repos/facebook/react/commits/35b16ce7d9e14ff5544a4c61293eae1c0ff510eb", + "html_url": "https://github.com/facebook/react/commit/35b16ce7d9e14ff5544a4c61293eae1c0ff510eb" + } + ] + }, + { + "sha": "a0a8e060f0a7681abbad222fdd2a0c6e9943185d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmEwYThlMDYwZjBhNzY4MWFiYmFkMjIyZmRkMmEwYzZlOTk0MzE4NWQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T11:22:58Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T11:22:58Z" + }, + "message": "Use statefulStore serializer in \"inline error/warning\" tests", + "tree": { + "sha": "c3b2f6cab2521fe8be6ceb84ca6e614fc86addad", + "url": "https://api.github.com/repos/facebook/react/git/trees/c3b2f6cab2521fe8be6ceb84ca6e614fc86addad" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/a0a8e060f0a7681abbad222fdd2a0c6e9943185d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/ckRIACgkQWCcTbp05\ndTJo0Q/+LBIgbUD4ORK150MXzleKcy2bmmenA8oJDbNJnVe+WU03JsY30O8xIap8\nm6bSKl29KfJqkh77dPe385DaByxfDe0kdm3NBjUJhWxz56tixOB7yvBGU3droPmn\nQUxbcOFP/KWUj6nv+zCRvMOM8/omj0DeTbT8oQGL4AsrT3/RwMzQXG78hp/mE+qe\nbsQOOEww13ZpMoRS5776apBU3Va2gQ7hzpL0Fy1u28iS2DdzsPRXhjZsS4iHEfN/\nC9ogoycwwvXoA0+2fNSlExCzSfFbjnHD1yns6TXK0I98+UpkjZOoaxHXYlAMtgk+\nijplfasF75Bt59dvQdu6F3Hm5H98gLgwe6GOPumxHidcBs+Q5kNAHG4g4Y23QVrs\njj9Av0dEyxQanPLZt6PBtMeULP8oQGuEzuxvCCz7Q6SbbZnzk53SvjzlLPQCHO9Z\noCU3OU+9nOqen52jZt2xH+sRSxvnBnWKHuyuZycQz8gFQeu0CvGt6X+7nTQc0TTy\nKshAbJqoShQyq2QWH7y4xAUiuSsSyNWhTMaMa6a2N7/GFLpBDfOFORYWoXCyOsIW\nzxTdfXgfkfmyVP4spRIeUCHGLmpheJU3grG1nfia19rBQNSZqqE1cZFHGdSi7DO8\nwltWAu/IZye7KG3s9oSwxUC2s7lq2eG7NxeeKQ8KCKrJMr5Xafg=\n=5WKu\n-----END PGP SIGNATURE-----", + "payload": "tree c3b2f6cab2521fe8be6ceb84ca6e614fc86addad\nparent af1c54ed8f5a528028eac4512f5a33f143a5c5e1\nauthor eps1lon 1608290578 +0100\ncommitter eps1lon 1608290578 +0100\n\nUse statefulStore serializer in \"inline error/warning\" tests\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/a0a8e060f0a7681abbad222fdd2a0c6e9943185d", + "html_url": "https://github.com/facebook/react/commit/a0a8e060f0a7681abbad222fdd2a0c6e9943185d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/a0a8e060f0a7681abbad222fdd2a0c6e9943185d/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "af1c54ed8f5a528028eac4512f5a33f143a5c5e1", + "url": "https://api.github.com/repos/facebook/react/commits/af1c54ed8f5a528028eac4512f5a33f143a5c5e1", + "html_url": "https://github.com/facebook/react/commit/af1c54ed8f5a528028eac4512f5a33f143a5c5e1" + } + ] + }, + { + "sha": "5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjViNWQyYzUyYWUyYjAyZTU3ZTliYmZiOTVjYzU1OTMzYTUxZWQ3OWQ=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T11:27:22Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T11:27:22Z" + }, + "message": "Fix flow issues", + "tree": { + "sha": "da0e5f6c1164d81a0ccbfa4910101d86a0ccda59", + "url": "https://api.github.com/repos/facebook/react/git/trees/da0e5f6c1164d81a0ccbfa4910101d86a0ccda59" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/ckhoACgkQWCcTbp05\ndTI7xQ//fo+/xEv/NpQEdB+EVwXIS4GByuyOE4ZW8KLKcK+xyPpwYz+rzOwgw02t\nyyBZpuSgQ3F1QwUeRDJYxBSzUZeToKAkUzMBuSPDsnehy2sIjn/0NTAZjATwDaL1\npP+kMe4hyhH/+Hb++SNnN0ldg670g98eFUtSx5bV8i0DqSPhtk/aBBZXI0NSmUPS\nDRxhrfB5srQlLlNCE92wFf/W0Mmhni0+fqpTh4JjUGHZdoajp7/FMud+HeXJrUaS\nqF2WyYitCTqtPYHIhiffdyGUy9SYxPNS40r6IWzpcQgEBPQ5qAPmrAzLIAMhM+de\nTCamA797+qG6+XGB/KPrQ/d7sIel0cDDyJFyJA2JXpy7RWNxL1rI27/a7e3ZhRyg\nF8YtbaEiSuM58oqfTkB0nlDRlRtyPMjf6VW/8lsrxDdsgD+DnibFi+mTa1TDNvPr\n9mRvGz08NcvLQ6WoDoj3kgm4yFNL/Cd7YEkGsim2+gxQs9lcbmiAx5LB7vtISyHP\nPA5Db+6ndh7xEET+s+MhPtapPnZZ0C9FZyKEUcyZJWo8n0XErF2sG9xykeHcetSW\nOdJTR8A0a6uoLbLfwTCrliSZmXNeKT6vJhfKYcDRg56iHGqEklXbrK+AC7pi/TEN\nx8s1asUGeoe9iNoH4sOCz0Y1cvAD/KSFEmOABZvu+ChC2ksA2bE=\n=qIHU\n-----END PGP SIGNATURE-----", + "payload": "tree da0e5f6c1164d81a0ccbfa4910101d86a0ccda59\nparent a0a8e060f0a7681abbad222fdd2a0c6e9943185d\nauthor eps1lon 1608290842 +0100\ncommitter eps1lon 1608290842 +0100\n\nFix flow issues\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d", + "html_url": "https://github.com/facebook/react/commit/5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d", + "comments_url": "https://api.github.com/repos/facebook/react/commits/5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "a0a8e060f0a7681abbad222fdd2a0c6e9943185d", + "url": "https://api.github.com/repos/facebook/react/commits/a0a8e060f0a7681abbad222fdd2a0c6e9943185d", + "html_url": "https://github.com/facebook/react/commit/a0a8e060f0a7681abbad222fdd2a0c6e9943185d" + } + ] + }, + { + "sha": "4a8738371577f8d4cb8222c1fe49580f47206bdc", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjRhODczODM3MTU3N2Y4ZDRjYjgyMjJjMWZlNDk1ODBmNDcyMDZiZGM=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T13:27:39Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T13:27:39Z" + }, + "message": "Refactored treeContext tests to use inline snapshots and Jest serializer", + "tree": { + "sha": "177aab2fa080508dd16c3f9c7ad1ff36b13e40ad", + "url": "https://api.github.com/repos/facebook/react/git/trees/177aab2fa080508dd16c3f9c7ad1ff36b13e40ad" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/4a8738371577f8d4cb8222c1fe49580f47206bdc", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/4a8738371577f8d4cb8222c1fe49580f47206bdc", + "html_url": "https://github.com/facebook/react/commit/4a8738371577f8d4cb8222c1fe49580f47206bdc", + "comments_url": "https://api.github.com/repos/facebook/react/commits/4a8738371577f8d4cb8222c1fe49580f47206bdc/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d", + "url": "https://api.github.com/repos/facebook/react/commits/5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d", + "html_url": "https://github.com/facebook/react/commit/5b5d2c52ae2b02e57e9bbfb95cc55933a51ed79d" + } + ] + }, + { + "sha": "781d8b7775fd0aa619d60471939da3a7573d5fba", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjc4MWQ4Yjc3NzVmZDBhYTYxOWQ2MDQ3MTkzOWRhM2E3NTczZDVmYmE=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T15:56:55Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T15:56:55Z" + }, + "message": "Inline warnings/errors should respect component filters\n\nAdjusting filters should also update errors/warnings.\n\nAlso optimized the filter update flow by adding a REMOVE_ALL operation.\n\nLots of new tests added.", + "tree": { + "sha": "26ab0ffec17099d37d8a7bc89e19944682284ddd", + "url": "https://api.github.com/repos/facebook/react/git/trees/26ab0ffec17099d37d8a7bc89e19944682284ddd" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/781d8b7775fd0aa619d60471939da3a7573d5fba", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/781d8b7775fd0aa619d60471939da3a7573d5fba", + "html_url": "https://github.com/facebook/react/commit/781d8b7775fd0aa619d60471939da3a7573d5fba", + "comments_url": "https://api.github.com/repos/facebook/react/commits/781d8b7775fd0aa619d60471939da3a7573d5fba/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "4a8738371577f8d4cb8222c1fe49580f47206bdc", + "url": "https://api.github.com/repos/facebook/react/commits/4a8738371577f8d4cb8222c1fe49580f47206bdc", + "html_url": "https://github.com/facebook/react/commit/4a8738371577f8d4cb8222c1fe49580f47206bdc" + } + ] + }, + { + "sha": "e69c0b4f9a38f1dff6f1d29403bc7503be929e80", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmU2OWMwYjRmOWEzOGYxZGZmNmYxZDI5NDAzYmM3NTAzYmU5MjllODA=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T16:18:28Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T16:18:28Z" + }, + "message": "Add error/warning counts to serialized store snapshot\n\nThis lets us remove ugly expect-map-to-be statements", + "tree": { + "sha": "fb54811e8b4dd6f6ea7a3a4587856f79a2601999", + "url": "https://api.github.com/repos/facebook/react/git/trees/fb54811e8b4dd6f6ea7a3a4587856f79a2601999" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/e69c0b4f9a38f1dff6f1d29403bc7503be929e80", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/e69c0b4f9a38f1dff6f1d29403bc7503be929e80", + "html_url": "https://github.com/facebook/react/commit/e69c0b4f9a38f1dff6f1d29403bc7503be929e80", + "comments_url": "https://api.github.com/repos/facebook/react/commits/e69c0b4f9a38f1dff6f1d29403bc7503be929e80/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "781d8b7775fd0aa619d60471939da3a7573d5fba", + "url": "https://api.github.com/repos/facebook/react/commits/781d8b7775fd0aa619d60471939da3a7573d5fba", + "html_url": "https://github.com/facebook/react/commit/781d8b7775fd0aa619d60471939da3a7573d5fba" + } + ] + }, + { + "sha": "bc788d82066ece29b858a072c8da262babf78202", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmJjNzg4ZDgyMDY2ZWNlMjliODU4YTA3MmM4ZGEyNjJiYWJmNzgyMDI=", + "commit": { + "author": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T17:45:47Z" + }, + "committer": { + "name": "eps1lon", + "email": "silbermann.sebastian@gmail.com", + "date": "2020-12-18T17:45:47Z" + }, + "message": "Add failing test for uncommitted renders", + "tree": { + "sha": "6dc204c237700e69a1355e75d4dd6a686f591493", + "url": "https://api.github.com/repos/facebook/react/git/trees/6dc204c237700e69a1355e75d4dd6a686f591493" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/bc788d82066ece29b858a072c8da262babf78202", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\niQIzBAABCgAdFiEEdEe9h5RnyYkE768zWCcTbp05dTIFAl/c6ssACgkQWCcTbp05\ndTI/HBAAsX1qdq2tZs+1ifhylxrcH1UvbR+AaDZ1dDp7RHXiJ23WnQURRiFq1u2g\nQpBv6wLTxTi58dLXG0VQbw6rwvYvjseramKirD5t4JefEInGWp2cP6HOykW66GrX\nFK90Ut4CXNsJcNkXj/DQoSJYRPxgf8Rq0AbH3KODPTgRNTjFDgv6bJtsFJtGIQbV\nAljLW2SMrT8C7q+kt8NWsRyMrpvMCU1Nn5DrFxclBIni4lNj5dwmx6AgTC/5UKiN\nX0DyXtc2Y6/6fV78AN6wvghUHoZ1wxfMb0RA1LxEbWFfE/Lepz9uTjbRgbzG9l9p\nF59SKT0tbHB2CulqpKoy4LxT6TP9l2D8ucdfgm39nO+C5c96QVEDvOOaA5rFAVd5\nL9rjcqjkttbNyGFcFCfETY5IDed5ss/7K/LjcbY09JtVSRFbD2At8qVT9pK3J6hm\ni5Q78X1wq/3dWbL0zdDe19lyhKDxRwUNVdi5rpdiSl/Z2iP0OXFq3t1wyqvT1hNS\nZ3nrIKUqVIIm3P12YtXxupd37wlWQboR4CVIzld8zaqyIjA0/aMSDKaSc0cjLfdj\nImB0r93Phx9RrxDnfRNSzw2dqJOv2r+9GKCrJLt2UBJccLvCmYncygsmKCrtM1im\nWU0X3N0Ty+y0QMIDzhT9z7pA6Wf3+Nrszk5dirQAZhc/NsoaNhA=\n=WqmE\n-----END PGP SIGNATURE-----", + "payload": "tree 6dc204c237700e69a1355e75d4dd6a686f591493\nparent e69c0b4f9a38f1dff6f1d29403bc7503be929e80\nauthor eps1lon 1608313547 +0100\ncommitter eps1lon 1608313547 +0100\n\nAdd failing test for uncommitted renders\n", + "verified_at": "2024-11-11T02:11:17Z" + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/bc788d82066ece29b858a072c8da262babf78202", + "html_url": "https://github.com/facebook/react/commit/bc788d82066ece29b858a072c8da262babf78202", + "comments_url": "https://api.github.com/repos/facebook/react/commits/bc788d82066ece29b858a072c8da262babf78202/comments", + "author": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "e69c0b4f9a38f1dff6f1d29403bc7503be929e80", + "url": "https://api.github.com/repos/facebook/react/commits/e69c0b4f9a38f1dff6f1d29403bc7503be929e80", + "html_url": "https://github.com/facebook/react/commit/e69c0b4f9a38f1dff6f1d29403bc7503be929e80" + } + ] + }, + { + "sha": "22c3f4bf903ec46e4915557d605f0433a3963900", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjIyYzNmNGJmOTAzZWM0NmU0OTE1NTU3ZDYwNWYwNDMzYTM5NjM5MDA=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T18:52:42Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T18:52:42Z" + }, + "message": "Don't send errors/warnings for suspended or errored subtrees", + "tree": { + "sha": "b3f879545ab4eda881278f299ca522e74a977c1b", + "url": "https://api.github.com/repos/facebook/react/git/trees/b3f879545ab4eda881278f299ca522e74a977c1b" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/22c3f4bf903ec46e4915557d605f0433a3963900", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/22c3f4bf903ec46e4915557d605f0433a3963900", + "html_url": "https://github.com/facebook/react/commit/22c3f4bf903ec46e4915557d605f0433a3963900", + "comments_url": "https://api.github.com/repos/facebook/react/commits/22c3f4bf903ec46e4915557d605f0433a3963900/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "bc788d82066ece29b858a072c8da262babf78202", + "url": "https://api.github.com/repos/facebook/react/commits/bc788d82066ece29b858a072c8da262babf78202", + "html_url": "https://github.com/facebook/react/commit/bc788d82066ece29b858a072c8da262babf78202" + } + ] + }, + { + "sha": "b9fa573d12b29f79db11663cf40b84c66ce37d03", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOmI5ZmE1NzNkMTJiMjlmNzlkYjExNjYzY2Y0MGI4NGM2NmNlMzdkMDM=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T19:18:19Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T19:18:19Z" + }, + "message": "Wait to flush errors/warnings until the next commit; it's safer", + "tree": { + "sha": "2b76ccc4079a89072bb22d7ba99941fe0463258f", + "url": "https://api.github.com/repos/facebook/react/git/trees/2b76ccc4079a89072bb22d7ba99941fe0463258f" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/b9fa573d12b29f79db11663cf40b84c66ce37d03", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/b9fa573d12b29f79db11663cf40b84c66ce37d03", + "html_url": "https://github.com/facebook/react/commit/b9fa573d12b29f79db11663cf40b84c66ce37d03", + "comments_url": "https://api.github.com/repos/facebook/react/commits/b9fa573d12b29f79db11663cf40b84c66ce37d03/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "22c3f4bf903ec46e4915557d605f0433a3963900", + "url": "https://api.github.com/repos/facebook/react/commits/22c3f4bf903ec46e4915557d605f0433a3963900", + "html_url": "https://github.com/facebook/react/commit/22c3f4bf903ec46e4915557d605f0433a3963900" + } + ] + }, + { + "sha": "4c9bf6508bd8c0bf61802b1da7641f6295d19f68", + "node_id": "MDY6Q29tbWl0MTUyODQ3MzAwOjRjOWJmNjUwOGJkOGMwYmY2MTgwMmIxZGE3NjQxZjYyOTVkMTlmNjg=", + "commit": { + "author": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T20:10:42Z" + }, + "committer": { + "name": "Brian Vaughn", + "email": "bvaughn@fb.com", + "date": "2020-12-18T20:10:42Z" + }, + "message": "Remove separate 'errorsAndWarnings' event in favor of 'mutations'\n\nThis avoids the case of one being updated without the other.", + "tree": { + "sha": "9484071f785ba18dfeeec8f4d6069ca9915b02c6", + "url": "https://api.github.com/repos/facebook/react/git/trees/9484071f785ba18dfeeec8f4d6069ca9915b02c6" + }, + "url": "https://api.github.com/repos/facebook/react/git/commits/4c9bf6508bd8c0bf61802b1da7641f6295d19f68", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/facebook/react/commits/4c9bf6508bd8c0bf61802b1da7641f6295d19f68", + "html_url": "https://github.com/facebook/react/commit/4c9bf6508bd8c0bf61802b1da7641f6295d19f68", + "comments_url": "https://api.github.com/repos/facebook/react/commits/4c9bf6508bd8c0bf61802b1da7641f6295d19f68/comments", + "author": null, + "committer": null, + "parents": [ + { + "sha": "b9fa573d12b29f79db11663cf40b84c66ce37d03", + "url": "https://api.github.com/repos/facebook/react/commits/b9fa573d12b29f79db11663cf40b84c66ce37d03", + "html_url": "https://github.com/facebook/react/commit/b9fa573d12b29f79db11663cf40b84c66ce37d03" + } + ] + } +] \ No newline at end of file