2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-22 21:05:10 +00:00

changelog: Add changes in issue-4004

Add changelog entry in the 'unreleased' sub-folder for changes
introduced when fixing issue #4004.
This commit is contained in:
Connor Findlay 2024-10-17 20:23:32 +13:00 committed by Michael Eischer
parent d6e76a22a8
commit 048c3bb240

View File

@ -0,0 +1,12 @@
Bugfix: Allow use of container level SAS/SAT tokens with Azure backend
When using a SAS/SAT token for authentication with Azure, restic was expecting
the provided token to be generated at the account level, granting permissions
to the storage account and all its containers. This caused an error that did
not allow tokens that were generated at the container level to be used to
initalize a repository.
Restic now allows SAS/SAT tokens that were generated at the account or
container level to be used to initalize a repository.
https://github.com/restic/restic/issues/4004
https://github.com/restic/restic/pull/5093