Skip to content

Tags: thunder-coding/aptly

Tags

v1.6.2

Toggle v1.6.2's commit message
aptly: release $version

v1.6.1

Toggle v1.6.1's commit message
aptly: release $version

v1.6.0

Toggle v1.6.0's commit message
aptly: release 1.6.0

v1.5.0

Toggle v1.5.0's commit message
S3: support disabling ACL with `none` value

This change lets you disable ACL when using S3 by using a configuration
value of `none`. This way we maintain backward compatibility with the
default setting being `private`.

Fixes: aptly-dev#1067

v1.4.0

Toggle v1.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request aptly-dev#847 from smira/fix-repo-name

Fix repo name in release script

v1.3.0

Toggle v1.3.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Buffer increase (aptly-dev#738)

Increase Scanner buffer size for Stanza reader

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request aptly-dev#683 from smira/545-download-contxt

Use Go context to abort gracefully mirror updates

v1.1.1

Toggle v1.1.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Merge pull request aptly-dev#614 from smira/600-fix-double-mirror-update

Fix bug with `PoolPath` field being overwritten on mirror update

v1.1.0

Toggle v1.1.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Merge pull request aptly-dev#613 from smira/607-trim-slashes

Trim slashes while parsing publish prefix

v1.0.1

Toggle v1.0.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix temporary contents DB being left behind after publishing

NB: Go `defer` order execution is reverse to the order `defer` statements
are executed.

So before the change, `Drop()` was called before `Close()`, which was no-op.

Change that to explicit order in single func, print errors if they happen.