mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +00:00
Add 0.5.3 release document
This commit is contained in:
parent
e22fd7aa40
commit
e3fa0e02df
1 changed files with 35 additions and 0 deletions
35
releases/0.5.3.md
Normal file
35
releases/0.5.3.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# pict-rs 0.5.3
|
||||
|
||||
## Overview
|
||||
|
||||
A quick release after 0.5.2 to add a default value for `use_tls`, and to fix launching pict-rs with
|
||||
postgres using commandline flags.
|
||||
|
||||
### Bugfixes
|
||||
|
||||
- [Semver Break in 0.5.2](#semver-break-in-0-5-2)
|
||||
- [Postgres Commandline Configuration Panic](#postgres-commandline-configuration-panic)
|
||||
|
||||
|
||||
## Upgrade Notes
|
||||
|
||||
There's no significant changes from 0.5.2, so upgrading should be as simple as pulling a new version
|
||||
of pict-rs.
|
||||
|
||||
|
||||
## Descriptions
|
||||
|
||||
### Semver Break in 0.5.2
|
||||
|
||||
When adding TLS support to postgres in 0.5.2, I had forgotten to set a default value for the new
|
||||
`use_tls` configuration option, leading to postgres deployments no longer launching after upgrade.
|
||||
This has been fixed by setting it to `false` by default, which aligns with the previous behavior of
|
||||
not using TLS.
|
||||
|
||||
|
||||
### Postgres Commandline Configuration Panic
|
||||
|
||||
When adding TLS support to postgres in 0.5.2, I had accidentally added two conflicting commandline
|
||||
arguments that expected to use `-u`. The first is for the postgres URL, and the second is for the
|
||||
`use_tls` setting. This caused panics when attempting to configure postgres with commandline flags.
|
||||
0.5.3 fixes this by changing `use_tls` to use the `-t` short flag, rather than `-u`.
|
Loading…
Reference in a new issue