pull_requests
2 rows where user = 24508496
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date), merged_at (date)
id ▼ | node_id | number | state | locked | title | user | body | created_at | updated_at | closed_at | merged_at | merge_commit_sha | assignee | milestone | draft | head | base | author_association | auto_merge | repo | url | merged_by |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1788962387 | PR_kwDOAMm_X85qoWZT | 8873 | closed | 0 | Add dt.date to plottable types | saschahofmann 24508496 | Simply adds `datetime.date` to plottable types in `_ensure_plottable` in *plot/utils.py*L675 to enable the plotting of dates. Matplotlib handles `date` types automatically, so I think there is no other change needed. Do I need to add a test for this? Any pointers on where I would put it that? <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Closes #8866 - [x] Tests added - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [x] New functions/methods are listed in `api.rst` | 2024-03-25T09:07:33Z | 2024-03-29T14:35:44Z | 2024-03-29T14:35:41Z | 2024-03-29T14:35:41Z | 852b7e65b6c1da1d0110c6db7125f2fd43c8db4f | 0 | 7c2625f24441dda94ac59d26d5f2f380443409ba | cf3655968b8b12cc0ecd28fb324e63fb94d5e7e2 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/8873 | ||||
1802479514 | PR_kwDOAMm_X85rb6ea | 8903 | closed | 0 | Update docstring for compute and persist | saschahofmann 24508496 | * Updates the docstring for persist to mention that it is not altering the original object. * Adds a return value to the docstring for compute and persist on both Dataset and DataArray - [x] Closes #8901 | 2024-04-02T13:10:02Z | 2024-04-03T07:45:10Z | 2024-04-02T23:52:32Z | 2024-04-02T23:52:32Z | c5b90c54d55edd3021415427d9a26666b88da7b6 | 0 | 82a492668074a6f739be009e4343e5c0c127cf9a | 97d3a3aaa071fa5341132331abe90ec39f914b52 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/8903 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [pull_requests] ( [id] INTEGER PRIMARY KEY, [node_id] TEXT, [number] INTEGER, [state] TEXT, [locked] INTEGER, [title] TEXT, [user] INTEGER REFERENCES [users]([id]), [body] TEXT, [created_at] TEXT, [updated_at] TEXT, [closed_at] TEXT, [merged_at] TEXT, [merge_commit_sha] TEXT, [assignee] INTEGER REFERENCES [users]([id]), [milestone] INTEGER REFERENCES [milestones]([id]), [draft] INTEGER, [head] TEXT, [base] TEXT, [author_association] TEXT, [auto_merge] TEXT, [repo] INTEGER REFERENCES [repos]([id]), [url] TEXT, [merged_by] INTEGER REFERENCES [users]([id]) ); CREATE INDEX [idx_pull_requests_merged_by] ON [pull_requests] ([merged_by]); CREATE INDEX [idx_pull_requests_repo] ON [pull_requests] ([repo]); CREATE INDEX [idx_pull_requests_milestone] ON [pull_requests] ([milestone]); CREATE INDEX [idx_pull_requests_assignee] ON [pull_requests] ([assignee]); CREATE INDEX [idx_pull_requests_user] ON [pull_requests] ([user]);