home / content

releases

11 rows where repo = 315796015

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: prerelease, created_at (date), published_at (date)

id ▼ html_url author node_id tag_name target_commitish name draft prerelease created_at published_at body repo reactions mentions_count
34392110 https://github.com/simonw/datasette-ripgrep/releases/tag/0.1a0 simonw 9599 MDc6UmVsZWFzZTM0MzkyMTEw 0.1a0 main 0.1a0 0 1 2020-11-25T01:27:14Z 2020-11-25T01:28:13Z - Initial alpha prototype datasette-ripgrep 315796015    
34392729 https://github.com/simonw/datasette-ripgrep/releases/tag/0.1a1 simonw 9599 MDc6UmVsZWFzZTM0MzkyNzI5 0.1a1 main 0.1a1 0 1 2020-11-25T01:55:35Z 2020-11-25T01:56:20Z - Fixed bug where template was not packaged in the release. #1 - Fixed bug caused by call to `proc.terminate()` datasette-ripgrep 315796015    
34442830 https://github.com/simonw/datasette-ripgrep/releases/tag/0.1 simonw 9599 MDc6UmVsZWFzZTM0NDQyODMw 0.1 main 0.1 0 0 2020-11-26T02:35:55Z 2020-11-26T02:36:56Z - First non-alpha release - Now implements both a time limit and a lines-returned limit. #3 - New `time_limit` and `max_lines` configuration options. - Live demo at https://ripgrep.datasette.io/-/ripgrep datasette-ripgrep 315796015    
34524203 https://github.com/simonw/datasette-ripgrep/releases/tag/0.2 simonw 9599 MDc6UmVsZWFzZTM0NTI0MjAz 0.2 main 0.2 0 0 2020-11-28T06:22:06Z 2020-11-28T06:23:37Z - Search results now link to the full source code, with line numbers and highlights. #4 - Respect `view-instance` permission, so you can protect this using Datasette's [authentication and permissions](https://docs.datasette.io/en/stable/authentication.html) system. #6 datasette-ripgrep 315796015    
34533720 https://github.com/simonw/datasette-ripgrep/releases/tag/0.2.1 simonw 9599 MDc6UmVsZWFzZTM0NTMzNzIw 0.2.1 main 0.2.1 0 0 2020-11-28T16:15:46Z 2020-11-28T16:16:38Z - Fixed a bug where patterns like `-v` could be interpreted as command-line arguments. #7 - Links to view files now correctly escape characters such as `{`. datasette-ripgrep 315796015    
34534181 https://github.com/simonw/datasette-ripgrep/releases/tag/0.3 simonw 9599 MDc6UmVsZWFzZTM0NTM0MTgx 0.3 main 0.3 0 0 2020-11-28T16:56:27Z 2020-11-28T16:57:14Z - Option to ignore case. #12 - Option to treat input as a literal string, not a regular expression. #8 datasette-ripgrep 315796015    
34535095 https://github.com/simonw/datasette-ripgrep/releases/tag/0.4 simonw 9599 MDc6UmVsZWFzZTM0NTM1MDk1 0.4 main 0.4 0 0 2020-11-28T18:06:02Z 2020-11-28T18:07:08Z - Show context around each match. #13 - Use `:target` CSS instead of JavaScript to highlight linked line. Thanks, [Louis Lévêque](https://twitter.com/loulouxiv/status/1332696241650737152). #14 datasette-ripgrep 315796015    
34536536 https://github.com/simonw/datasette-ripgrep/releases/tag/0.5 simonw 9599 MDc6UmVsZWFzZTM0NTM2NTM2 0.5 main 0.5 0 0 2020-11-28T20:01:38Z 2020-11-28T20:02:36Z - Support for `?glob=` option for adding `-g` file filter patterns. #9 - Improved configuration instructions. #15 datasette-ripgrep 315796015    
34538424 https://github.com/simonw/datasette-ripgrep/releases/tag/0.6 simonw 9599 MDc6UmVsZWFzZTM0NTM4NDI0 0.6 main 0.6 0 0 2020-11-28T22:27:42Z 2020-11-28T22:28:30Z - Now adds a link to Datasette's global navigation menu. #16 - Code snippets in search scroll horizontally. datasette-ripgrep 315796015    
34538628 https://github.com/simonw/datasette-ripgrep/releases/tag/0.6.1 simonw 9599 MDc6UmVsZWFzZTM0NTM4NjI4 0.6.1 main 0.6.1 0 0 2020-11-28T22:42:14Z 2020-11-28T22:42:44Z - Improved README with better tagline and better examples. datasette-ripgrep 315796015    
39678683 https://github.com/simonw/datasette-ripgrep/releases/tag/0.7 simonw 9599 MDc6UmVsZWFzZTM5Njc4Njgz 0.7 main 0.7 0 0 2021-03-11T20:02:32Z 2021-03-11T20:03:38Z - Use `white-space: pre-wrap` when displaying lines, so lines now wrap. [#21](https://github.com/simonw/datasette-ripgrep/issues/21) - Long lines in results are now truncated, with a `[...]` link to expand them to full length. [#22](https://github.com/simonw/datasette-ripgrep/issues/22) datasette-ripgrep 315796015    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [releases] (
   [html_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [author] INTEGER REFERENCES [users]([id]),
   [node_id] TEXT,
   [tag_name] TEXT,
   [target_commitish] TEXT,
   [name] TEXT,
   [draft] INTEGER,
   [prerelease] INTEGER,
   [created_at] TEXT,
   [published_at] TEXT,
   [body] TEXT,
   [repo] INTEGER REFERENCES [repos]([id])
, [reactions] TEXT, [mentions_count] INTEGER);
CREATE INDEX [idx_releases_repo]
    ON [releases] ([repo]);
CREATE INDEX [idx_releases_author]
    ON [releases] ([author]);
Powered by Datasette · Queries took 27.796ms