aboutsummaryrefslogtreecommitdiffstats
path: root/rust
Commit message (Collapse)AuthorAgeFilesLines
* truncated oauth_oidc generated usernameBryan Newbold2019-06-071-2/+2
|
* truncated oidc username creationBryan Newbold2019-06-071-1/+2
|
* Revert "allow somewhat longer usernames"Bryan Newbold2019-06-071-3/+1
| | | | This reverts commit 123cc92cadb57e3a9e536e08a66ea54adab660ad.
* allow somewhat longer usernamesBryan Newbold2019-06-071-1/+3
|
* move export README info to sql_dumps docBryan Newbold2019-06-032-18/+1
|
* minor cleanups to SQL migrationBryan Newbold2019-05-231-11/+1
|
* codegen version bumpBryan Newbold2019-05-216-10/+10
| | | | Wow, a surprisingly large commit!
* fix 'releases' tests (to release_ids)Bryan Newbold2019-05-211-3/+3
|
* hide abstracts and refs in release expansionsBryan Newbold2019-05-201-3/+12
|
* rust impl release expansionBryan Newbold2019-05-201-3/+84
| | | | Not very DRY.
* rust fmtBryan Newbold2019-05-201-2/+0
|
* schema: allow releases expansion on file/fileset/webcaptureBryan Newbold2019-05-204-9/+84
| | | | And codegen rust and python
* actually check withdrawn statusBryan Newbold2019-05-201-0/+3
|
* basic controlled vocabulary for withdrawn_stageBryan Newbold2019-05-201-2/+38
|
* include edit_extra on single-entity createsBryan Newbold2019-05-201-0/+1
|
* make some XXX into TODOBryan Newbold2019-05-203-3/+2
|
* allow versioned PMCIDBryan Newbold2019-05-201-2/+5
|
* rust/schema: allow 'retraction' release_typeBryan Newbold2019-05-161-0/+2
|
* rust: fix missing 'created' field test failureBryan Newbold2019-05-151-0/+1
|
* codegen and rust impl created timestampBryan Newbold2019-05-147-11/+34
|
* rust: return editors and cl index for editgroup more oftenBryan Newbold2019-05-145-15/+20
|
* rust impl endpoint changesBryan Newbold2019-05-146-285/+211
|
* rust codegenBryan Newbold2019-05-1410-2492/+2151
|
* rust codegen and implBryan Newbold2019-05-147-443/+494
|
* rust: fill in missing extid checkersBryan Newbold2019-05-133-19/+251
|
* rust: fix ark lookup (new example id)Bryan Newbold2019-05-131-1/+1
|
* sql schema: more test/demo helpers in new schemaBryan Newbold2019-05-131-1/+18
|
* remove no-longer-necessary castBryan Newbold2019-05-131-1/+1
|
* rust: size_bytes -> sizeBryan Newbold2019-05-131-2/+2
|
* codegen size_bytes -> sizeBryan Newbold2019-05-135-17/+16
|
* rust: fix subtitle/original_title typoBryan Newbold2019-05-131-1/+1
|
* rust: fix creator field order manglingBryan Newbold2019-05-131-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)
* add a rust test for extid table UNIQBryan Newbold2019-05-101-0/+37
|
* get tests passing with extid changesBryan Newbold2019-05-102-27/+91
|
* basic impl of extid changesBryan Newbold2019-05-105-108/+191
|
* drop back down to 32 column diesel modeBryan Newbold2019-05-101-1/+1
|
* codegen extid changes (rust)Bryan Newbold2019-05-109-178/+216
|
* schema: move release ext_ids to their own table and sub-entityBryan Newbold2019-05-102-8/+36
| | | | | Some identifiers are kept on the main release_rev table to minimize impact to the existing database.
* impl withdrawn_statusBryan Newbold2019-05-107-13/+13
|
* schema: withdrawn_state -> withdrawn_statusBryan Newbold2019-05-102-2/+2
|
* remove accidental index commentsBryan Newbold2019-05-101-2/+2
|
* basic given_name/surname in API hitBryan Newbold2019-05-091-0/+2
|
* rust impl cdx extra_json removalBryan Newbold2019-05-097-23/+1
|
* revert webcapture CDX extra_jsonBryan Newbold2019-05-092-4/+2
| | | | Keep things simpler until needed.
* revet/run both migrations in rust testsBryan Newbold2019-05-091-0/+2
|
* initial API schema rust implBryan Newbold2019-05-093-40/+70
|
* rust codegenBryan Newbold2019-05-099-10/+203
|
* extent release_date codegen hack to withdrawn_dateBryan Newbold2019-05-091-0/+1
|
* basic impl of new SQL schema in rust code (not wired to API)Bryan Newbold2019-05-083-19/+71
|
* codegen diesel rust schemaBryan Newbold2019-05-082-2/+14
| | | | | | | | The number of fields on release_rev went over 32, so we need the (slow) 64 column feature of diesel. Might be possible to get back under that if we don't use some of these columns after all.