thorp/CHANGELOG.org

293 lines
8.5 KiB
Org Mode
Raw Normal View History

2019-05-16 16:37:25 +01:00
* Changelog
All notable changes to this project will be documented in this file.
The format is based on [[https://keepachangelog.com/en/1.0.0/][Keep a Changelog]], and this project adheres to
[[https://semver.org/spec/v2.0.0.html][Semantic Versioning]].
2020-06-21 07:54:43 +01:00
* [1.0.0] - 2020-06-21
Features
- Convert to Java (domain, config, storage-aws and filesystem) @kemitix (#446)
- Create and use a cache of hashes for local files @kemitix (#249)
Maintenance
- Add release drafter configuration @kemitix (#462)
- Bump aws-java-sdk-s3 from 1.11.805 to 1.11.806 @dependabot-preview (#457)
- Bump aws-java-sdk-s3 from 1.11.804 to 1.11.805 @dependabot-preview (#454)
- Bump aws-java-sdk-s3 from 1.11.803 to 1.11.804 @dependabot-preview (#452)
- Bump aws-java-sdk-s3 from 1.11.802 to 1.11.803 @dependabot-preview (#449)
- Bump aws-java-sdk-s3 from 1.11.801 to 1.11.802 @dependabot-preview (#447)
- Bump scala-library from 2.13.0 to 2.13.2 @dependabot-preview (#439)
- Bump aws-java-sdk-s3 from 1.11.800 to 1.11.801 @dependabot-preview (#442)
- Bump zio-streams_2.13 from 1.0.0-RC16 to 1.0.0-RC20 @dependabot-preview (#440)
- Bump tiles-maven-plugin from 2.16 to 2.17 @dependabot-preview (#441)
- Bump aws-java-sdk-s3 from 1.11.792 to 1.11.800 @dependabot-preview (#436)
- Bump jackson-dataformat-cbor from 2.10.4 to 2.11.0 @dependabot-preview (#432)
- Java rewrite - step 1 - build with Maven @kemitix (#431)
- Update jackson-dataformat-cbor to 2.10.4 @scala-steward (#389)
- Update jackson-databind to 2.10.4 @scala-steward (#388)
- Update sbt-scoverage to 1.6.1 @scala-steward (#272)
- Update sbt-ci-release to 1.5.3 @scala-steward (#379)
- Update sbt-bloop to 1.4.1 @scala-steward (#402)
- Update sbt-wartremover, wartremover to 2.4.9 @scala-steward (#417)
- Update sbt to 1.3.12 @scala-steward (#418)
- Update aws-java-sdk-s3 to 1.11.797 @kemitix (#425)
- Run Github Actions on pull requests @kemitix (#424)
- Update aws-java-sdk-s3 to 1.11.661 @scala-steward (#250)
- Update zio, zio-streams to 1.0.0-RC16 @scala-steward (#251)
- Update zio, zio-streams to 1.0.0-RC15 @scala-steward (#241)
- Update sbt-bloop to 1.3.5 @scala-steward (#247)
- Update sbt to 1.3.3 @scala-steward (#238)
2019-10-08 19:34:32 +01:00
* [0.10.0] - 2019-10-08
This is the last ~v0.x~ feature release. The next feature release will be ~v1.x~.
** Fixed
- Can't publish new releases to sonatype (#219)
** Added
- Accept ~parallel~ in config files (#230)
** Changed
- Reduce Progress widget from 3 lines to 2 (#221)
- Perform delete operations in parallel (#223)
** Dependencies
- Update ~sbt-bloop~ to ~1.3.3~ (#224)
- Update ~zio~, ~zio-streams~ to ~1.0.0-RC14~ (#226)
- Update ~sbt-bloop~ to ~1.3.4~ (#228)
- Rollback ~sbt-ci-release~ to ~1.3.2~ (#231)
2019-09-28 19:07:35 +01:00
* [0.9.1] - 2019-09-28
** Fixed
- Progress UI should be updated when upload fails (#218)
** Dependencues
- Update ~aws-java-sdk-s3~ to ~1.11.641~ (#217)
2019-09-27 16:12:36 +01:00
* [0.9.0] - 2019-09-27
** Added
- Support multiple parallel uploads (#188)
** Dependencues
- Update ~jackson-dataformat-cbor~ to ~2.10.0~ (#216)
- Update ~jackson-databind~ to ~2.10.0~ (#214)
- Update ~sbt-ci-release~ to ~1.4.31~ (#211)
2019-09-23 15:30:11 +01:00
* [0.8.1] - 2019-09-23
** Fixed
- Not wrapping exceptions thrown in waitForUploadResult (#162)
** Dependencies
- Update ~jackson-dataformat-cbor~ to ~2.9.10~ (#208)
- Update ~jackson-databind~ to ~2.9.10~ (#206)
- Update ~sbt~ to ~1.3.2~ (#207)
- Update ~zio, zio-streams~ to 1.0.0-RC13~ (#209)
- Update ~aws-java-sdk-s3~ to ~1.11.635~ (#203)
- Update ~sbt~ to ~1.3.1~ (#204)
- Update ~sbt-wartremover~ to ~2.4.3~ (#202)
- Update ~sbt-ci-release~ to ~1.3.2~ (#200)
2019-09-11 22:59:17 +01:00
* [0.8.0] - 2019-09-11
** Added
- Log copy and delete operations (#119)
- Log errors with red label (#119)
- Ensure file handles are always closed (#122)
2019-09-07 10:29:06 +01:00
- [build] Install WartRemover plugin (#150)
- [build] Add GitHub Action
- [build] Add sbt-jacoco plugin for code coverage (#184)
** Changed
2019-09-07 10:29:06 +01:00
- [internal] Replace cats-effect with zio (#117)(#148)(#149)(#178)
Convert Storage to full ZIO effect module (#133) * [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
2019-07-28 20:11:03 +01:00
- [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)
- [internal] Convert Config to full ZIO effect module (#134)
- [internal] Create FileSystem ZIO effect module (#135)
2019-09-07 10:29:06 +01:00
- [internal] Merge config package object with Config object (#138)
- [internal] Merge FS object into FileSystem object (#139)
- [internal] Assorted refactoring (#129)(#128)(#137)(#141)(#142)(#143)
- [internal] case classes shouldn't be OO objects (#147)
- [internal] Restructure using EIP-ZIO channels (#183)
** Fixed
- [progressbar] Reset progress bar for each file (#145)
- Handle building large changesets better (#163)
2019-07-23 23:16:08 +01:00
** Dependencies
2019-09-07 10:29:06 +01:00
- Update ~aws-java-sdk-s3~ from ~1.11.587~ to ~1.11.610~ (#118)(#144)(#158)
- Update ~jackson-databind~ from ~2.9.9.1~ to ~2.9.9.3~ (#132)(#152)
- Update ~scalamock~ from ~4.3.0~ to ~4.4.0~ (#165)
- Upgrade to Scala 2.13.0 (#176)
- Update ~sbt~ from ~1.2.8~ to ~1.3.0~ (#180)
- Update ~sbt-ci-release~ from ~1.2.6~ to ~1.3.1~ (#186)
2019-07-23 23:16:08 +01:00
* [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)
2019-07-15 07:02:05 +01:00
* [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)
2019-07-12 08:09:02 +01:00
* [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)
2019-07-12 08:15:45 +01:00
- Sync more than one source directory into a single bucket/prefix (#25)
2019-07-12 08:09:02 +01:00
** Dependencies
- Upgrade ~jackson-databind~ from ~2.9.9~ to ~2.9.9.1~ (#101)
- Upgrade ~aws-java-sdk-s3~ from ~1.11.580~ to ~1.11.587~ (#104)
- Upgrade ~sbt-assembly~ from ~0.14.9~ to ~0.14.10~ (#105)
* [0.6.1] - 2019-07-03
** Fixed
- Release to sonatype using correct profile name (#102)
2019-06-30 15:32:25 +01:00
* [0.6.0] - 2019-06-30
** Added
- Abstraction layer encapsulating S3 as Storage (#76)
2019-06-30 15:22:11 +01:00
- 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~ from ~4.2.0~ to ~4.3.0~ (#84)
- Upgrade ~aws-java-sdk-s3~ from ~1.11.573~ to ~1.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)
2019-06-14 20:21:58 +01:00
** Removed
- ~-v~ verbosity flag (#63)
** Dependencies
- Upgrade ~aws-java-sdk-s3~ from ~1.11.569~ to ~1.11.570~ (#57)
2019-06-14 20:21:58 +01:00
2019-06-11 08:01:49 +01:00
* [0.4.0] - 2019-06-11
** Added
- Multi-part uploads
- ~--include~ to select files for synchronisation
- Upload progress bar
** Changed
2019-06-30 15:22:11 +01:00
- ~--filter~ renamed to ~-exclude~
2019-06-11 08:01:49 +01:00
** 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~ from ~1.11.560~ to ~1.11.569~
- Upgrade ~cats-effect~ from ~1.2.0~ to ~1.3.1~
- Upgade ~scalatest~ from ~3.0.7~ to ~3.0.8~
* [0.3.0] - 2019-05-23
** Added
- Filter to exclude files
* [0.2.0] - 2019-05-22
2019-05-16 16:37:25 +01:00
** 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