mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +00:00
Prepare 0.5.12
This commit is contained in:
parent
4021458be8
commit
4bb3bad703
4 changed files with 49 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1819,7 +1819,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
version = "0.5.11"
|
version = "0.5.12"
|
||||||
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.11"
|
version = "0.5.12"
|
||||||
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.11";
|
version = "0.5.12";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
|
|
46
releases/0.5.12.md
Normal file
46
releases/0.5.12.md
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# pict-rs 0.5.12
|
||||||
|
|
||||||
|
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.12 is a bugfix release to remove two issues that, when compounded, would cause pict-rs
|
||||||
|
to fail to process media.
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- [Panic Handling in Background Jobs](#panic-handling-in-background-jobs)
|
||||||
|
- [BytesStream Divide-by-Zero](#bytes-stream-divide-by-zero)
|
||||||
|
|
||||||
|
|
||||||
|
## Upgrade Notes
|
||||||
|
|
||||||
|
There are no significant differences from 0.5.11. Upgrading should be as simple as pulling a new
|
||||||
|
version of pict-rs.
|
||||||
|
|
||||||
|
|
||||||
|
## Descriptions
|
||||||
|
|
||||||
|
### Panic Handling in Background Jobs
|
||||||
|
|
||||||
|
pict-rs makes an effort to never use explicitly panicking code, but since there's no static way to
|
||||||
|
guarantee that a given function wont panic, pict-rs needs to be able to deal with that. pict-rs
|
||||||
|
0.5.12 now wraps invocations of jobs in spawned tasks, which can catch and report panics that happen
|
||||||
|
in background jobs.
|
||||||
|
|
||||||
|
Previously, a panic in a background job would bring down that thread's job processor, which resulted
|
||||||
|
in future jobs never being processed. Now job processing should properly continue after panics
|
||||||
|
occur.
|
||||||
|
|
||||||
|
|
||||||
|
### BytesStream Divide-by-Zero
|
||||||
|
|
||||||
|
Part of my rework of BytesStream recently included adding debug logs around how many bytes chunks
|
||||||
|
were in a given stream, and their average length. Unfortunately, if there were no bytes in the
|
||||||
|
stream, this would cause the "average chunk length" calculation to divide by 0. In previous versions
|
||||||
|
of pict-rs, this would generally result in a failed request for processed media, but in pict-rs
|
||||||
|
0.5.11 this would end up killing the background jobs processor.
|
||||||
|
|
||||||
|
This specific panic has been fixed by ensuring we divide by the number of chunks or 1, whichever is
|
||||||
|
greater.
|
Loading…
Reference in a new issue