Skip to content

Commit

Permalink
v8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Feb 21, 2022
1 parent 460a596 commit 95672f2
Show file tree
Hide file tree
Showing 16 changed files with 121 additions and 19 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)


### Bug Fixes

* **core:** do not hard code the number of ms to wait before fetching ([60fdbdd](https://github.com/blacha/chunkd/commit/60fdbdd7e89a74d001efb983b62941166d809c72))
* **fs:** correct typing so fsa.stream can be used with fsa.write ([460a596](https://github.com/blacha/chunkd/commit/460a5960258d4c8f9278c925fc85e05b1f7213cb))


### Features

* remove logger a tracking source can be used instead ([151dd08](https://github.com/blacha/chunkd/commit/151dd08e2052daa09ccda1f2df55adc95cdf126f))
* **core:** allow overriding all chunk source delays ([b3091ad](https://github.com/blacha/chunkd/commit/b3091add9d504bba9fa04c539cffebd03e47936d))
* **core:** allow overriding how the chunk cache is created for all sources ([9ca865a](https://github.com/blacha/chunkd/commit/9ca865a83243fcd60d8959ef5f8dc3956e01156b))
* **core:** remove request tracking ([65f2395](https://github.com/blacha/chunkd/commit/65f239552e9b90d37c2ded31ce24c193f0471ab4))
* **fs:** default to local file system when in nodejs ([#193](https://github.com/blacha/chunkd/issues/193)) ([ff908b0](https://github.com/blacha/chunkd/commit/ff908b0893cb31fb35dcf7bc063ba3ed84296fc0))





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/base
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"useYarn": true,
"packages": ["packages/*"],
"version": "8.0.3"
"version": "8.1.0"
}
19 changes: 19 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)


### Bug Fixes

* **core:** do not hard code the number of ms to wait before fetching ([60fdbdd](https://github.com/blacha/chunkd/commit/60fdbdd7e89a74d001efb983b62941166d809c72))


### Features

* remove logger a tracking source can be used instead ([151dd08](https://github.com/blacha/chunkd/commit/151dd08e2052daa09ccda1f2df55adc95cdf126f))
* **core:** allow overriding all chunk source delays ([b3091ad](https://github.com/blacha/chunkd/commit/b3091add9d504bba9fa04c539cffebd03e47936d))
* **core:** allow overriding how the chunk cache is created for all sources ([9ca865a](https://github.com/blacha/chunkd/commit/9ca865a83243fcd60d8959ef5f8dc3956e01156b))
* **core:** remove request tracking ([65f2395](https://github.com/blacha/chunkd/commit/65f239552e9b90d37c2ded31ce24c193f0471ab4))





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/core
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chunkd/core",
"version": "8.0.3",
"version": "8.1.0",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/fs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)


### Bug Fixes

* **fs:** correct typing so fsa.stream can be used with fsa.write ([460a596](https://github.com/blacha/chunkd/commit/460a5960258d4c8f9278c925fc85e05b1f7213cb))


### Features

* **fs:** default to local file system when in nodejs ([#193](https://github.com/blacha/chunkd/issues/193)) ([ff908b0](https://github.com/blacha/chunkd/commit/ff908b0893cb31fb35dcf7bc063ba3ed84296fc0))





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/fs
Expand Down
10 changes: 5 additions & 5 deletions packages/fs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chunkd/fs",
"version": "8.0.3",
"version": "8.1.0",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand All @@ -17,10 +17,10 @@
"license": "MIT",
"scripts": {},
"dependencies": {
"@chunkd/core": "^8.0.3",
"@chunkd/source-aws": "^8.0.3",
"@chunkd/source-file": "^8.0.3",
"@chunkd/source-http": "^8.0.3"
"@chunkd/core": "^8.1.0",
"@chunkd/source-aws": "^8.1.0",
"@chunkd/source-file": "^8.1.0",
"@chunkd/source-http": "^8.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 8 additions & 0 deletions packages/source-aws-v2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)

**Note:** Version bump only for package @chunkd/source-aws-v2





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/source-aws-v2
Expand Down
6 changes: 3 additions & 3 deletions packages/source-aws-v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chunkd/source-aws-v2",
"version": "8.0.3",
"version": "8.1.0",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand All @@ -16,8 +16,8 @@
"license": "MIT",
"scripts": {},
"dependencies": {
"@chunkd/core": "^8.0.3",
"@chunkd/source-aws": "^8.0.3"
"@chunkd/core": "^8.1.0",
"@chunkd/source-aws": "^8.1.0"
},
"peerDependencies": {
"aws-sdk": "*"
Expand Down
8 changes: 8 additions & 0 deletions packages/source-aws-v3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)

**Note:** Version bump only for package @chunkd/source-aws-v3





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/source-aws-v3
Expand Down
6 changes: 3 additions & 3 deletions packages/source-aws-v3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chunkd/source-aws-v3",
"version": "8.0.3",
"version": "8.1.0",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand All @@ -16,8 +16,8 @@
"license": "MIT",
"scripts": {},
"dependencies": {
"@chunkd/core": "^8.0.3",
"@chunkd/source-aws": "^8.0.3"
"@chunkd/core": "^8.1.0",
"@chunkd/source-aws": "^8.1.0"
},
"peerDependencies": {
"@aws-sdk/client-s3": "*",
Expand Down
11 changes: 11 additions & 0 deletions packages/source-aws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)


### Features

* remove logger a tracking source can be used instead ([151dd08](https://github.com/blacha/chunkd/commit/151dd08e2052daa09ccda1f2df55adc95cdf126f))





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/source-aws
Expand Down
4 changes: 2 additions & 2 deletions packages/source-aws/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chunkd/source-aws",
"version": "8.0.3",
"version": "8.1.0",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand All @@ -16,7 +16,7 @@
"license": "MIT",
"scripts": {},
"dependencies": {
"@chunkd/core": "^8.0.3"
"@chunkd/core": "^8.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 8 additions & 0 deletions packages/source-file/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)

**Note:** Version bump only for package @chunkd/source-file





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/source-file
Expand Down
4 changes: 2 additions & 2 deletions packages/source-file/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chunkd/source-file",
"version": "8.0.3",
"version": "8.1.0",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand All @@ -16,7 +16,7 @@
"license": "MIT",
"scripts": {},
"dependencies": {
"@chunkd/core": "^8.0.3"
"@chunkd/core": "^8.1.0"
},
"devDependencies": {
"@types/node": "^16.11.7"
Expand Down
11 changes: 11 additions & 0 deletions packages/source-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/blacha/chunkd/compare/v8.0.3...v8.1.0) (2022-02-21)


### Features

* remove logger a tracking source can be used instead ([151dd08](https://github.com/blacha/chunkd/commit/151dd08e2052daa09ccda1f2df55adc95cdf126f))





## [8.0.3](https://github.com/blacha/chunkd/compare/v8.0.2...v8.0.3) (2022-01-26)

**Note:** Version bump only for package @chunkd/source-http
Expand Down
4 changes: 2 additions & 2 deletions packages/source-http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chunkd/source-http",
"version": "8.0.3",
"version": "8.1.0",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand All @@ -17,7 +17,7 @@
"license": "MIT",
"scripts": {},
"dependencies": {
"@chunkd/core": "^8.0.3",
"@chunkd/core": "^8.1.0",
"node-fetch": "^3.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit 95672f2

Please sign in to comment.