Add 0.5.3 release document

This commit is contained in:
asonix 2024-01-25 09:12:47 -06:00
parent e22fd7aa40
commit e3fa0e02df

35
releases/0.5.3.md Normal file
View 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`.