mirror of
https://git.asonix.dog/asonix/pict-rs.git
synced 2024-11-27 20:11:16 +00:00
Prepare 0.5.16
This commit is contained in:
parent
a6fbb67875
commit
31049d3922
4 changed files with 49 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1989,7 +1989,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
version = "0.5.15"
|
version = "0.5.16"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-form-data",
|
"actix-form-data",
|
||||||
"actix-web",
|
"actix-web",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
description = "A simple image hosting service"
|
description = "A simple image hosting service"
|
||||||
version = "0.5.15"
|
version = "0.5.16"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
pname = "pict-rs";
|
pname = "pict-rs";
|
||||||
version = "0.5.15";
|
version = "0.5.16";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
|
|
46
releases/0.5.16.md
Normal file
46
releases/0.5.16.md
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# pict-rs 0.5.16
|
||||||
|
|
||||||
|
pict-rs is a simple image hosting microservice, designed to handle storing and retrieving images,
|
||||||
|
animations, and videos, as well as providing basic image processing functionality.
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
pict-rs 0.5.16 includes a couple bugfixes for parsing query paramters, better handling of proxied
|
||||||
|
media, clearer postgres errors, and updated dependencies.
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- [Query Fixes](#query-fixes)
|
||||||
|
- [Better Concurrent Proxies](#better-concurrent-proxies)
|
||||||
|
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
|
||||||
|
- [Improved Postgres Errors](#improved-postgres-errors)
|
||||||
|
|
||||||
|
|
||||||
|
## Upgrade Notes
|
||||||
|
|
||||||
|
There are no significant changes from 0.5.15. Upgrading should be a simple as pulling a new version
|
||||||
|
of pict-rs.
|
||||||
|
|
||||||
|
|
||||||
|
## Descriptions
|
||||||
|
|
||||||
|
### Query Fixes
|
||||||
|
|
||||||
|
A couple boolean query parameters were not getting parsed properly, this impacted ?backgrounded for
|
||||||
|
image downloads and ?force for pruning media. pict-rs 0.5.16 resolves this.
|
||||||
|
|
||||||
|
|
||||||
|
### Better Concurrent Proxies
|
||||||
|
|
||||||
|
When the same proxy endpoint was accessed more than once concurrently, only one request would end up
|
||||||
|
succeeding. Now pict-rs better handles when multiple concurrent requests are made.
|
||||||
|
|
||||||
|
|
||||||
|
### Improved Postgres Errors
|
||||||
|
|
||||||
|
In some postgres errors, it is difficult to tell whether an error originated from within the
|
||||||
|
postgres client or the postgres server. pict-rs 0.5.16 now includes extra context when displaying
|
||||||
|
postgres errors to help discern this.
|
Loading…
Reference in a new issue