semantic-release-bot
|
66b9cd2022
|
chore(release): 0.1.0-develop.1 [skip ci]
# [0.1.0-develop.1](https://git.lumeweb.com/LumeWeb/portal/compare/v0.0.1...v0.1.0-develop.1) (2023-08-15)
### Bug Fixes
* abort if we don't have a password for the account, assume its pubkey only ([c20dec0 ](c20dec0204 ))
* add a check for a 500 error ([df08fc9 ](df08fc980a ))
* add missing request connection close ([dff3ca4 ](dff3ca4589 ))
* add shutdown signal and flag for renterd ([fb65690 ](fb65690abd ))
* **auth:** eager load the account relation to return it ([a23d165 ](a23d165caa ))
* change jwtKey to ed25519.PrivateKey ([bf576df ](bf576dfaee ))
* close db on shutdown ([78ee15c ](78ee15cf4b ))
* Ctx must be public ([a0d747f ](a0d747fdf4 ))
* ctx needs to be public in AuthService ([a3cfeba ](a3cfebab30 ))
* **db:** need to set charset, parseTime and loc in connection for mysql ([5d15ca3 ](5d15ca330a ))
* disable client warnings ([9b8cb38 ](9b8cb38496 ))
* dont try to stream if we have an error ([b21a425 ](b21a425e24 ))
* encode size as uint64 to the end of the cid ([5aca66d ](5aca66d919 ))
* ensure all models auto increment the id field ([934f8e6 ](934f8e6236 ))
* ensure we store the pubkey in lowercase ([def1b50 ](def1b50cfc ))
* handle duplicate tus uploads by hash ([f3172b0 ](f3172b0d31 ))
* hasher needs the size set to 32 ([294370d ](294370d88d ))
* if upload status code isn't 200, make it an err based on the body ([039a4a3 ](039a4a3354 ))
* if uploading returns a 500 and its a slab error, treat as a 404 ([6ddef03 ](6ddef03790 ))
* if we have an existing upload, just return it as if successful ([90170e5 ](90170e5b81 ))
* iris context.User needs to be embedded in our User struct for type checking to properly work ([1cfc222 ](1cfc2223a6 ))
* just use the any route ([e100429 ](e100429b60 ))
* load config before db ([58165e0 ](58165e01af ))
* make an attempt to look for the token before adding to db ([f11b285 ](f11b285d4e ))
* missing setting SetTusComposer ([80561f8 ](80561f89e9 ))
* newer gorm version causes db rebuilds every boot ([72255eb ](72255eb3c5 ))
* only panic if the error is other than a missing config file ([6e0ec8a ](6e0ec8aaf9 ))
* output error info ([cfa7ceb ](cfa7ceb2f4 ))
* PostPubkeyChallenge should be lowercasing the pubkey for consistency ([d680f06 ](d680f0660f ))
* PostPubkeyChallenge should be using ChallengeRequest ([36745bb ](36745bb55b ))
* PostPubkeyChallenge should not be checking email, but pubkey ([db3ba1f ](db3ba1f014 ))
* PostPubkeyLogin should be lowercasing the pubkey and signature ([09d53ff ](09d53ffa76 ))
* PostPubkeyLogin should not preload any model ([27e7ea7 ](27e7ea7d7a ))
* properly handle missing size bytes ([c0df04d ](c0df04d7d5 ))
* public_key should be pubkey ([09b9f19 ](09b9f195f4 ))
* register LoginSession model ([48164ec ](48164ec320 ))
* register request validation ([c197b14 ](c197b1425b ))
* remove PrivateKey, rename PublicKey in Key model ([00f2b96 ](00f2b962a0 ))
* rewrite gorm query logic for tus uploads ([f8aaeff ](f8aaeff6de ))
* rewrite sql logic ([ce1b5e3 ](ce1b5e31d5 ))
* rewrite streaming logic and centralize in a helper function ([bb26cfc ](bb26cfca5b ))
* save upload info after every chunk ([038d2c4 ](038d2c440b ))
* temp workaround on race condition ([e2db880 ](e2db880038 ))
* **tus:** switch to normal clone package, not generic ([faaec64 ](faaec649ea ))
* update default flag values ([241db4d ](241db4deb6 ))
* update model relationships ([628f1b4 ](628f1b4aca ))
* **upload:** add account to upload record ([e018a4b ](e018a4b743 ))
* uploading of main file ([7aea462 ](7aea462ab7 ))
* upstream renterd updates ([5ad91ad ](5ad91ad263 ))
* use AccountID not Account ([f5e4377 ](f5e437777a ))
* use bufio reader ([90e4ce6 ](90e4ce6408 ))
* use challengeObj ([9b82fa7 ](9b82fa7828 ))
* use database.path over database.name ([25c7d6d ](25c7d6d4fb ))
* use getWorkerObjectUrl ([4ff1334 ](4ff1334d8a ))
* Use gorm save, and return nil if successful ([26042b6 ](26042b62ac ))
* we can't use AddHandler inside BeginRequest ([f941ee4 ](f941ee46d4 ))
* wrap Register api in an atomic transaction to avoid dead locks ([e09e51b ](e09e51bb52 ))
* wrong algo ([86380c7 ](86380c7b3a ))
### Features
* add a status endpoint and move cid validation to a utility method ([38b7615 ](38b76155af ))
* add a Status method for uploads ([1f195cf ](1f195cf328 ))
* add auth status endpoint ([1dd4fa2 ](1dd4fa22cd ))
* add bao package and rust bao wasm library ([4c649bf ](4c649bfcb9 ))
* add cid package ([706f7a0 ](706f7a05b9 ))
* add ComputeFile bao RPC method ([687f26c ](687f26cc77 ))
* add debug mode logging support ([99d7b83 ](99d7b8347a ))
* add download endpoint ([79fd550 ](79fd550c54 ))
* add EncodeString function ([488f873 ](488f8737c0 ))
* add files service with upload endpoint ([b16beeb ](b16beebabb ))
* add files/upload/limit endpoint ([b77bebe ](b77bebe3b1 ))
* add getCurrentUserId helper function ([29d6db2 ](29d6db2009 ))
* add global cors ([1f5a3d1 ](1f5a3d19e4 ))
* add jwt package ([ea99108 ](ea99108327 ))
* add more validation, and put account creation, with optional pubkey in a transaction ([699e424 ](699e4244e0 ))
* add new user service object that implements iris context User interface ([a14dad4 ](a14dad43ed ))
* add newrelic support ([06b3ab8 ](06b3ab87f7 ))
* add pin model ([aaa2c17 ](aaa2c17212 ))
* add pin service method ([8692a02 ](8692a0225e ))
* add PostPinBy controller endpoint for pinning a file ([be03a6c ](be03a6c686 ))
* add pprof support ([ee17409 ](ee17409e12 ))
* add proof download ([3b1e860 ](3b1e860256 ))
* add StringHash ([118c679 ](118c679f76 ))
* add swagger support ([49c3844 ](49c3844406 ))
* add upload model ([f73a04b ](f73a04bb2e ))
* add Valid, and Decode methods, and create CID struct ([4e6c29f ](4e6c29f1fd ))
* add validation to account register ([7257b5d ](7257b5d597 ))
* generate and/or load an ed25519 private key for jwt token generation ([85a0295 ](85a02952df ))
* initial dnslink support ([cd2f63e ](cd2f63eb72 ))
* pin file after basic upload ([892f093 ](892f093d93 ))
* pin file after tus upload ([5579ab8 ](5579ab85a3 ))
* tus support ([3005be6 ](3005be6fec ))
* wip version ([9a4c3d5 ](9a4c3d5d13 ))
|
2023-08-15 06:18:56 +00:00 |