blob: 45639315bc7a67cdc8e14591f448494daf64b1fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# v1.2.0 (TBD)
Changes:
- Digest signing now uses sha256 and sha512 (preference in that order) if enabled by swift.
# v1.1.0 (2022-02-07)
Bugfixes:
- Fix request URL when object name is not a well-formed path. For example, an
object name like "a///b" is not wrongly normalized into "a/b" anymore. If
your application relies on object names being normalized paths, consider
passing your object names through `path.Clean()` before giving them to
`Container.Object()`.
# v1.0.0 (2021-05-28)
Initial release. The library had been mostly feature-complete since 2018, but I
never got around to actually tagging a 1.0.0 since a few less-used features are
missing in the API (mostly object versioning). The 1.0.0 release was overdue,
though, given that this library was already used in many prod deployments.
|