Skip to content

Commit

Permalink
Latest data: Sat Nov 30 13:41:50 UTC 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
Automated committed Nov 30, 2024
1 parent ccd8b5d commit e9db9d3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pullrequests.jsonl
Original file line number Diff line number Diff line change
Expand Up @@ -1384,3 +1384,4 @@
{"url": "https://api.github.com/repos/databrickslabs/remorph/issues/1249", "repository_url": "https://api.github.com/repos/databrickslabs/remorph", "labels_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1249/labels{/name}", "comments_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1249/comments", "events_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1249/events", "html_url": "https://github.com/databrickslabs/remorph/pull/1249", "id": 2699105512, "node_id": "PR_kwDOKhiHA86DXE8X", "number": 1249, "title": "Refactor `x.tail.foldleft(x.head)` chains as `x.reduceLeft`", "user": {"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "labels": [{"id": 6747154653, "node_id": "LA_kwDOKhiHA88AAAABkilo3Q", "url": "https://api.github.com/repos/databrickslabs/remorph/labels/tech%20debt", "name": "tech debt", "color": "bfdadc", "default": false, "description": "design flaws and other cascading effects"}, {"id": 7013890571, "node_id": "LA_kwDOKhiHA88AAAABog96Cw", "url": "https://api.github.com/repos/databrickslabs/remorph/labels/internal", "name": "internal", "color": "006b75", "default": false, "description": "technical pr's not end user facing"}], "state": "closed", "locked": false, "assignee": {"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "assignees": [{"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}], "milestone": null, "comments": 2, "created_at": "2024-11-27T16:26:31Z", "updated_at": "2024-11-28T14:19:35Z", "closed_at": "2024-11-28T14:19:34Z", "author_association": "CONTRIBUTOR", "active_lock_reason": null, "draft": false, "pull_request": {"url": "https://api.github.com/repos/databrickslabs/remorph/pulls/1249", "html_url": "https://github.com/databrickslabs/remorph/pull/1249", "diff_url": "https://github.com/databrickslabs/remorph/pull/1249.diff", "patch_url": "https://github.com/databrickslabs/remorph/pull/1249.patch", "merged_at": "2024-11-28T14:19:34Z"}, "body": "This PR refactors the situations where we use this:\r\n\r\n```scala\r\nx.tail.foldLeft(x.head)\r\n```\r\n\r\nto use the equivalent operation that does this:\r\n```scala\r\nx.reduceLeft\r\n```\r\n\r\nFollowing a review comment discussing the safety of reduce in these situations[^1], some further changes have been made to the surrounding code such that the behaviour remains the same but the safety can be determined via trivial inspection without needing to refer to the grammar.\r\n\r\n[^1]: Not a new concern; the previous code had the same safety issue due to the use of `.head`.\r\n", "reactions": {"url": "https://api.github.com/repos/databrickslabs/remorph/issues/1249/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "timeline_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1249/timeline", "performed_via_github_app": null, "state_reason": null, "score": 1.0}
{"url": "https://api.github.com/repos/databrickslabs/remorph/issues/1227", "repository_url": "https://api.github.com/repos/databrickslabs/remorph", "labels_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1227/labels{/name}", "comments_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1227/comments", "events_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1227/events", "html_url": "https://github.com/databrickslabs/remorph/pull/1227", "id": 2680127997, "node_id": "PR_kwDOKhiHA86CsoMh", "number": 1227, "title": "Implement remaining TSQL set operations.", "user": {"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "labels": [{"id": 6095650023, "node_id": "LA_kwDOKhiHA88AAAABa1Q85w", "url": "https://api.github.com/repos/databrickslabs/remorph/labels/enhancement", "name": "enhancement", "color": "a2eeef", "default": true, "description": "New feature or request"}, {"id": 6124099990, "node_id": "LA_kwDOKhiHA88AAAABbQZZlg", "url": "https://api.github.com/repos/databrickslabs/remorph/labels/feat/ir", "name": "feat/ir", "color": "685B47", "default": false, "description": "everything related to abstract syntax trees"}, {"id": 6747154653, "node_id": "LA_kwDOKhiHA88AAAABkilo3Q", "url": "https://api.github.com/repos/databrickslabs/remorph/labels/tech%20debt", "name": "tech debt", "color": "bfdadc", "default": false, "description": "design flaws and other cascading effects"}, {"id": 7225181335, "node_id": "LA_kwDOKhiHA88AAAABrqeElw", "url": "https://api.github.com/repos/databrickslabs/remorph/labels/sql/tsql", "name": "sql/tsql", "color": "7E96B3", "default": false, "description": ""}], "state": "closed", "locked": false, "assignee": {"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "assignees": [{"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}], "milestone": null, "comments": 1, "created_at": "2024-11-21T16:39:33Z", "updated_at": "2024-11-28T14:40:08Z", "closed_at": "2024-11-28T14:40:07Z", "author_association": "CONTRIBUTOR", "active_lock_reason": null, "draft": false, "pull_request": {"url": "https://api.github.com/repos/databrickslabs/remorph/pulls/1227", "html_url": "https://github.com/databrickslabs/remorph/pull/1227", "diff_url": "https://github.com/databrickslabs/remorph/pull/1227.diff", "patch_url": "https://github.com/databrickslabs/remorph/pull/1227.patch", "merged_at": "2024-11-28T14:40:07Z"}, "body": "## Changes\r\n\r\nThis PR implements support for parsing set operations with TSql: `UNION [ALL]`, `EXCEPT` and `INTERSECT`.\r\n\r\nThe grammar previously supported these but they were not being converted to the IR.\r\n\r\n### Linked issues\r\n\r\nResolves #1126.\r\nResolves #1102.\r\n\r\n### Tests\r\n\r\n- [x] added unit tests\r\n- [x] added transpiler tests\r\n- [x] added functional tests\r\n", "reactions": {"url": "https://api.github.com/repos/databrickslabs/remorph/issues/1227/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "timeline_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1227/timeline", "performed_via_github_app": null, "state_reason": null, "score": 1.0}
{"url": "https://api.github.com/repos/pgoslatara/medium_scraper/issues/311", "repository_url": "https://api.github.com/repos/pgoslatara/medium_scraper", "labels_url": "https://api.github.com/repos/pgoslatara/medium_scraper/issues/311/labels{/name}", "comments_url": "https://api.github.com/repos/pgoslatara/medium_scraper/issues/311/comments", "events_url": "https://api.github.com/repos/pgoslatara/medium_scraper/issues/311/events", "html_url": "https://github.com/pgoslatara/medium_scraper/pull/311", "id": 2704071861, "node_id": "PR_kwDOI8JbxM6DiJiK", "number": 311, "title": "weekly_run 12080042298", "user": {"login": "pgoslatara", "id": 14027534, "node_id": "MDQ6VXNlcjE0MDI3NTM0", "avatar_url": "https://avatars.githubusercontent.com/u/14027534?v=4", "gravatar_id": "", "url": "https://api.github.com/users/pgoslatara", "html_url": "https://github.com/pgoslatara", "followers_url": "https://api.github.com/users/pgoslatara/followers", "following_url": "https://api.github.com/users/pgoslatara/following{/other_user}", "gists_url": "https://api.github.com/users/pgoslatara/gists{/gist_id}", "starred_url": "https://api.github.com/users/pgoslatara/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/pgoslatara/subscriptions", "organizations_url": "https://api.github.com/users/pgoslatara/orgs", "repos_url": "https://api.github.com/users/pgoslatara/repos", "events_url": "https://api.github.com/users/pgoslatara/events{/privacy}", "received_events_url": "https://api.github.com/users/pgoslatara/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "labels": [{"id": 5491956128, "node_id": "LA_kwDOI8JbxM8AAAABR1iZoA", "url": "https://api.github.com/repos/pgoslatara/medium_scraper/labels/automerge", "name": "automerge", "color": "5319e7", "default": false, "description": ""}], "state": "closed", "locked": false, "assignee": null, "assignees": [], "milestone": null, "comments": 0, "created_at": "2024-11-29T06:43:24Z", "updated_at": "2024-11-29T06:49:07Z", "closed_at": "2024-11-29T06:49:05Z", "author_association": "OWNER", "active_lock_reason": null, "draft": false, "pull_request": {"url": "https://api.github.com/repos/pgoslatara/medium_scraper/pulls/311", "html_url": "https://github.com/pgoslatara/medium_scraper/pull/311", "diff_url": "https://github.com/pgoslatara/medium_scraper/pull/311.diff", "patch_url": "https://github.com/pgoslatara/medium_scraper/pull/311.patch", "merged_at": "2024-11-29T06:49:05Z"}, "body": "Created by Github action", "reactions": {"url": "https://api.github.com/repos/pgoslatara/medium_scraper/issues/311/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "timeline_url": "https://api.github.com/repos/pgoslatara/medium_scraper/issues/311/timeline", "performed_via_github_app": null, "state_reason": null, "score": 1.0}
{"url": "https://api.github.com/repos/databrickslabs/remorph/issues/1258", "repository_url": "https://api.github.com/repos/databrickslabs/remorph", "labels_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1258/labels{/name}", "comments_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1258/comments", "events_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1258/events", "html_url": "https://github.com/databrickslabs/remorph/pull/1258", "id": 2704958732, "node_id": "PR_kwDOKhiHA86DkEiU", "number": 1258, "title": "Allow easier debugging of test failures", "user": {"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "labels": [{"id": 7013890571, "node_id": "LA_kwDOKhiHA88AAAABog96Cw", "url": "https://api.github.com/repos/databrickslabs/remorph/labels/internal", "name": "internal", "color": "006b75", "default": false, "description": "technical pr's not end user facing"}], "state": "closed", "locked": false, "assignee": {"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}, "assignees": [{"login": "asnare", "id": 401970, "node_id": "MDQ6VXNlcjQwMTk3MA==", "avatar_url": "https://avatars.githubusercontent.com/u/401970?v=4", "gravatar_id": "", "url": "https://api.github.com/users/asnare", "html_url": "https://github.com/asnare", "followers_url": "https://api.github.com/users/asnare/followers", "following_url": "https://api.github.com/users/asnare/following{/other_user}", "gists_url": "https://api.github.com/users/asnare/gists{/gist_id}", "starred_url": "https://api.github.com/users/asnare/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/asnare/subscriptions", "organizations_url": "https://api.github.com/users/asnare/orgs", "repos_url": "https://api.github.com/users/asnare/repos", "events_url": "https://api.github.com/users/asnare/events{/privacy}", "received_events_url": "https://api.github.com/users/asnare/received_events", "type": "User", "user_view_type": "public", "site_admin": false}], "milestone": null, "comments": 1, "created_at": "2024-11-29T12:14:21Z", "updated_at": "2024-11-29T16:03:19Z", "closed_at": "2024-11-29T16:03:18Z", "author_association": "CONTRIBUTOR", "active_lock_reason": null, "draft": false, "pull_request": {"url": "https://api.github.com/repos/databrickslabs/remorph/pulls/1258", "html_url": "https://github.com/databrickslabs/remorph/pull/1258", "diff_url": "https://github.com/databrickslabs/remorph/pull/1258.diff", "patch_url": "https://github.com/databrickslabs/remorph/pull/1258.patch", "merged_at": "2024-11-29T16:03:18Z"}, "body": "This PR adjusts the way transpilation results are checked during tests so that the formatted values can be easily checked in a debugger. (IntelliJ/PyCharm have better ways of comparing output than the side-by-side view we display.)", "reactions": {"url": "https://api.github.com/repos/databrickslabs/remorph/issues/1258/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "timeline_url": "https://api.github.com/repos/databrickslabs/remorph/issues/1258/timeline", "performed_via_github_app": null, "state_reason": null, "score": 1.0}

0 comments on commit e9db9d3

Please sign in to comment.