Paul Campbell
96a83e6c3e
* [console] Rename MyConsole as Console * [console] break infinite loop * [console] fix typo * [console] clean up helpers * [cli] Main use ZIO#provide to run program * [cli] Main define Program type alias * [cli] Program handle cli args in Program * [cli] Program doesn't extend PlanBuilder * [cli] refactoring * [cli] rename ParseArgs as CliArgs * [cli] CliArgs#apply renamed a parse * [storage-aws] S3StorageService renamed as S3Storage * [storage-api] Rename StorageService as Storage.Service * [storage-api] make Storage.copy effectTotal * [storage-api] make Storage.delete effectTotal * [storage-api] make Storage.shutdown effectTotal * [storage-api] make Storage.upload effectTotal * [storage-aws] Lister refactoring * [storage-aws] make Lister into a trait * [storage-aws] make Copier into a trait * [storage-aws] make Deleter into a trait * [storate-aws] make Uploader into a trait * [storage-aws] AmazonS3 move error handling out of client wrapper * [storage-aws] DeleterTest added * [storage-aws] ListerTest added * [storage-aws] Uploader refactoring * [storage-aws] CopierTest test Copier directly * [storage-aws] DeleterTest test Deleter directly * [storate-aws] ListerTest test Lister directly * [storage-aws] UploaderTest added * [storage-aws] S3Storage.Live replaces S3StorageServiceBuilder * Complete migration to Module for Storage * [cli] Main define LiveThorpApp object * [core] Add CoreTypes * [cli] Program Refactoring * [core] PlanBuilding Refactoring * [changelog] updated * [console] Console.Live Usage of get on optional type * [storage-aws] AmazonS3ClientTestFixture Use wildcards when selecting more than 6 elements
4.1 KiB
4.1 KiB
- Changelog
- [0.8.0] - 2019-??-??
- [0.7.2] - 2019-07-19
- [0.7.1] - 2019-07-15
- [0.7.0] - 2019-07-12
- [0.6.1] - 2019-07-03
- [0.6.0] - 2019-06-30
- [0.5.0] - 2019-06-21
- [0.4.0] - 2019-06-11
- [0.3.0] - 2019-05-23
- [0.2.0] - 2019-05-22
- [0.1.0] - 2019-05-13
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[0.8.0] - 2019-??-??
Added
- Log copy and delete operations (#119)
- Log errors with red label (#119)
- Ensure file handles are always closed (#122)
Changed
- [internal] Replace cats-effect with zio (#117)
- [internal] Replace Monocle with local SimpleLens implementation (#121)
- [internal] Don't use String as key in Map for hashes (#124)
- [internal] Convert Storage to full ZIO effect module (#133)
Dependencies
- Upgrade
aws-java-sdk-s3
from1.11.587
to1.11.596
(#118)
[0.7.2] - 2019-07-19
Changed
- Apply
scalafmt
(#108) - Uses Lenses (#113)
Fixed
- Creates incorrect MD5 hash for some files (#103)
- NullPointerException creating scaladoc (#115)
[0.7.1] - 2019-07-15
Changed
- Only settings in
.thorp.conf
for explicit sources are used (#111)
Fixed
- Not reading
.thorp.conf
file (#110)(#111)
[0.7.0] - 2019-07-12
Added
- Add a version command-line option (#99)
- Add a batch mode (#85)
- Display total size and progress for entire run (#94)
- Sync more than one source directory into a single bucket/prefix (#25)
Dependencies
- Upgrade
jackson-databind
from2.9.9
to2.9.9.1
(#101) - Upgrade
aws-java-sdk-s3
from1.11.580
to1.11.587
(#104) - Upgrade
sbt-assembly
from0.14.9
to0.14.10
(#105)
[0.6.1] - 2019-07-03
Fixed
- Release to sonatype using correct profile name (#102)
[0.6.0] - 2019-06-30
Added
- Abstraction layer encapsulating S3 as Storage (#76)
- Display simple error message when bucket is invalid (#81)
- Shutdown storage service once completed (#88)
- Release snapshots to sonatype from TravisCI (#92)
- Embed launch script in fat-jar (#98)
Fixed
- Use correct hash locally for comparing multi-part uploaded files (#82)
- Handle large list of action in a stack-safe manner (#93)
Dependencies
- Upgrade
scalamock
from4.2.0
to4.3.0
(#84) - Upgrade
aws-java-sdk-s3
from1.11.573
to1.11.580
(#86)
[0.5.0] - 2019-06-21
Added
- Add
thorp-lib
module (#66) - Enable running outside of sbt (#55)
-d
,--debug
flag for log messages (#60)- Read config from
.thorp.conf
in source directory (#71) - Read config from
$HOME/.config/thorp.conf
and/etc/thorp.conf
(#73) - Add
--no-global
and--no-user
options (#50) - Display any upload errors in summary report (#50)
Changed
- Rename project as 'thorp' (#75)
- Suppress Transfer event messages (#64)
- Better error message when source not found (#51)
- Reduced logging (#59)
- Prevent AWS SDK from recalculating MD5 hash (#50)
Fixed
- Error when calculating md5 hash for large files (#56)
Removed
-v
verbosity flag (#63)
Dependencies
- Upgrade
aws-java-sdk-s3
from1.11.569
to1.11.570
(#57)
[0.4.0] - 2019-06-11
Added
- Multi-part uploads
--include
to select files for synchronisation- Upload progress bar
Changed
--filter
renamed to-exclude
Fixed
- Fetch md5 hashes for all remote objects, not just the first 1000
- Handle when a file goes away between scanning and uploading
Dependencies
- Removed
reactive-aws-s3-{core,cats}
and the AWS SDK v2 that it depended upon in favour of the AWS SDK v1 - Upgrade
aws-java-sdk-s3
from1.11.560
to1.11.569
- Upgrade
cats-effect
from1.2.0
to1.3.1
- Upgade
scalatest
from3.0.7
to3.0.8
[0.3.0] - 2019-05-23
Added
- Filter to exclude files
[0.2.0] - 2019-05-22
Added
- Display count of the number of files uploaded
Changed
- Improved performance by fetching all MD5 hashes from S3 in single request at startup
[0.1.0] - 2019-05-13
Added
- Initial Release
- Synchronise files with an S3 bucket, using an MD5 hash to identify when the file has changed and needs to be uploaded