Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rust: fix creator field order mangling | Bryan Newbold | 2019-05-13 | 1 | -4/+4 |
| | | | | | It's sort of disturbing that this sort of typo/bug can have an actual runtime impact. (struct field order must match schema order) | ||||
* | basic impl of extid changes | Bryan Newbold | 2019-05-10 | 1 | -10/+8 |
| | |||||
* | impl withdrawn_status | Bryan Newbold | 2019-05-10 | 1 | -2/+2 |
| | |||||
* | rust impl cdx extra_json removal | Bryan Newbold | 2019-05-09 | 1 | -2/+0 |
| | |||||
* | basic impl of new SQL schema in rust code (not wired to API) | Bryan Newbold | 2019-05-08 | 1 | -6/+30 |
| | |||||
* | rust impl of new fields | Bryan Newbold | 2019-01-21 | 1 | -4/+12 |
| | |||||
* | impl cdx timestamps as datetime | Bryan Newbold | 2019-01-18 | 1 | -3/+3 |
| | |||||
* | rust fmt | Bryan Newbold | 2019-01-17 | 1 | -1/+3 |
| | |||||
* | add interstitial JSON serde model to citation internment | Bryan Newbold | 2019-01-14 | 1 | -10/+82 |
| | |||||
* | first draft implementation of ref interning | Bryan Newbold | 2019-01-11 | 1 | -16/+13 |
| | |||||
* | implement since/before ordering for range requests | Bryan Newbold | 2019-01-11 | 1 | -1/+2 |
| | |||||
* | yet more edit lifecycle progress | Bryan Newbold | 2019-01-11 | 1 | -0/+2 |
| | |||||
* | WIP on annotations and editgroup accessors | Bryan Newbold | 2019-01-11 | 1 | -2/+26 |
| | |||||
* | WIP on annotations and changes | Bryan Newbold | 2019-01-10 | 1 | -0/+6 |
| | |||||
* | start removing active editgroup code | Bryan Newbold | 2019-01-09 | 1 | -1/+0 |
| | |||||
* | huge refactor of rust modules/files | Bryan Newbold | 2019-01-08 | 1 | -2/+2 |
| | | | | | | Taking advantage of new Rust 2018 crate/module path changes, and re-organizing things. Somewhat optimistic this could help with partial rebuild speed also. | ||||
* | rust 2018 edition! | Bryan Newbold | 2019-01-08 | 1 | -3/+3 |
| | | | | Only the basics to get things to compile/test again in this commit. | ||||
* | add superuser role/flag | Bryan Newbold | 2019-01-04 | 1 | -0/+1 |
| | |||||
* | start to impl oidc auth | Bryan Newbold | 2019-01-03 | 1 | -2/+26 |
| | |||||
* | make editor_id optional when createding editgroup | Bryan Newbold | 2018-12-31 | 1 | -1/+1 |
| | | | | The editor_id can be infered from auth metadata. | ||||
* | start refactor of auth code | Bryan Newbold | 2018-12-28 | 1 | -1/+1 |
| | | | | | | | Pulls auth code (which requires the persistent state of a signing keyring) into a struct. Doesn't try verify macaroon in middleware, do it in individual wrappers. | ||||
* | sql codegen and WIP on auth command | Bryan Newbold | 2018-12-27 | 1 | -0/+3 |
| | |||||
* | impl edit_id change | Bryan Newbold | 2018-12-26 | 1 | -2/+2 |
| | |||||
* | rust impl last webcapture schema tweaks | Bryan Newbold | 2018-12-26 | 1 | -4/+4 |
| | |||||
* | fileset/web basic implementation | Bryan Newbold | 2018-12-26 | 1 | -4/+151 |
| | | | | | | As well as small consistency and bugfix implementations. No new tests yet... | ||||
* | rust impl of API harmonization | Bryan Newbold | 2018-12-24 | 1 | -1/+1 |
| | |||||
* | implement release_year (and rustfmt) | Bryan Newbold | 2018-12-24 | 1 | -0/+2 |
| | |||||
* | allow deletion of redirect-to-deletion | Bryan Newbold | 2018-12-20 | 1 | -1/+2 |
| | |||||
* | many redirect implementations | Bryan Newbold | 2018-12-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | Probably should have split this commit up, it's huge: - accept the state of "redirect to a deletion", where redirect_id is Some but rev_id is None. call this a "redirect"; previously this was an invalid state. - GET for a deleted entity returns a 200 and a stub entity, not a 404 - to PUT a redirect, or to "revert" an entity to point at a specific pre-existing revision, PUT a stub entity. things are getting messy here... to detect this state, ensure the 'state' field is blank/none (this is for API usage ergonomics, where results from a GET are often re-used in a PUT or even POST) - rustfmt - maybe even more small tweaks along the way? mystery meat! Tests are in python, not rust (and a future commit) | ||||
* | new rustfmt (1.31) | Bryan Newbold | 2018-12-14 | 1 | -1/+2 |
| | |||||
* | rustfmt, and implement schema tweaks | Bryan Newbold | 2018-09-22 | 1 | -8/+8 |
| | |||||
* | squelch diesel macro warnings | Bryan Newbold | 2018-09-18 | 1 | -0/+2 |
| | |||||
* | finish fatcat-api => fatcat-api-spec refactor | Bryan Newbold | 2018-09-11 | 1 | -1/+1 |
| | |||||
* | fmt | Bryan Newbold | 2018-09-07 | 1 | -5/+24 |
| | |||||
* | mostly done with CRUD refactor | Bryan Newbold | 2018-09-07 | 1 | -0/+57 |
| | | | | One failing test in this commit. | ||||
* | batch inserts by default | Bryan Newbold | 2018-09-07 | 1 | -6/+39 |
| | |||||
* | use index_val, not index, in SQL schema | Bryan Newbold | 2018-08-20 | 1 | -4/+4 |
| | |||||
* | trivial implementation of core_id field on releases | Bryan Newbold | 2018-08-14 | 1 | -0/+1 |
| | |||||
* | abstracts; more tests | Bryan Newbold | 2018-07-25 | 1 | -2/+9 |
| | |||||
* | whole bunch of clippy fixes | Bryan Newbold | 2018-07-24 | 1 | -4/+4 |
| | |||||
* | partial implementation of new API features | Bryan Newbold | 2018-07-24 | 1 | -8/+53 |
| | |||||
* | oops, forgot revisions should be UUID | Bryan Newbold | 2018-07-20 | 1 | -1/+1 |
| | |||||
* | editor_id and editgroup_id as idents; revisions as raw UUID | Bryan Newbold | 2018-07-20 | 1 | -25/+25 |
| | |||||
* | rust: base32 encoded idents | Bryan Newbold | 2018-07-20 | 1 | -2/+3 |
| | |||||
* | generic changelog endpoints | Bryan Newbold | 2018-06-30 | 1 | -0/+1 |
| | |||||
* | history for container entities | Bryan Newbold | 2018-06-30 | 1 | -1/+25 |
| | |||||
* | consistent volume/issue/pages ordering | Bryan Newbold | 2018-06-19 | 1 | -1/+1 |
| | |||||
* | update rust/api for schema extensions | Bryan Newbold | 2018-06-04 | 1 | -6/+22 |
| | |||||
* | refactor editgroup get | Bryan Newbold | 2018-05-26 | 1 | -1/+1 |
| | |||||
* | even more refactoring | Bryan Newbold | 2018-05-26 | 1 | -0/+19 |
| |