s3sync
s3sync copied to clipboard
♻️ Golang utility for syncing between s3 and local, similar to `aws s3 sync`
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) | `v1.48.16` -> `v1.53.6` | [](https://docs.renovatebot.com/merge-confidence/)...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/seqsense/s3sync). ## Open The following updates have all...
[](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | localstack/localstack | minor | `3.0.0` -> `3.4.0` | --- ### Configuration 📅 **Schedule**:...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [codecov/codecov-action](https://togithub.com/codecov/codecov-action) | action | major | `v3` -> `v4` | ---...
CopyS3ToS3 was not operating as expected for me. This change fixes it by changing the parameters passed to CopyObject.
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://togithub.com/actions/setup-go) | action | major | `v4` -> `v5` | ---...
### Objective Most of the methods in the AWS SDK for Go have a "WithContext" variant that allows callers to pass in a context. I have found this feature useful...
To be able to determine how much network traffic is due to the data transfer. Because it allows users to provide observability stats on how their applications behave and how...
### Objective To be able to modify arbitrary upload/download options, such as adding metadata to uploads or downloading specific versions. Currently there are callbacks to change client options (i.e. downloaderOpts,...
### Objective I can't use wildcards in s3 sync . example... manager.Sync(s3://bucket/*.zip, destination) but aws cli provides the following feature. aws s3 cp s3://bucket/ . --recursive --exclude "*" --include "*zip”...