From b8136f070ded8ec3649c6cdf729e69b40ceec324 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 20 Jul 2023 14:12:25 +1200 Subject: [PATCH] chore: release master (#1219) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 16 ++++++++-------- packages/fs-aws/CHANGELOG.md | 20 ++++++++++++++++++++ packages/fs-aws/package.json | 6 +++--- packages/fs/CHANGELOG.md | 21 +++++++++++++++++++++ packages/fs/package.json | 8 ++++---- packages/middleware/CHANGELOG.md | 19 +++++++++++++++++++ packages/middleware/package.json | 4 ++-- packages/source-aws/CHANGELOG.md | 19 +++++++++++++++++++ packages/source-aws/package.json | 4 ++-- packages/source-file/CHANGELOG.md | 19 +++++++++++++++++++ packages/source-file/package.json | 4 ++-- packages/source-http/CHANGELOG.md | 19 +++++++++++++++++++ packages/source-http/package.json | 4 ++-- packages/source-memory/CHANGELOG.md | 19 +++++++++++++++++++ packages/source-memory/package.json | 4 ++-- packages/source/CHANGELOG.md | 12 ++++++++++++ packages/source/package.json | 2 +- 17 files changed, 174 insertions(+), 26 deletions(-) create mode 100644 packages/fs-aws/CHANGELOG.md create mode 100644 packages/fs/CHANGELOG.md create mode 100644 packages/middleware/CHANGELOG.md create mode 100644 packages/source-aws/CHANGELOG.md create mode 100644 packages/source-file/CHANGELOG.md create mode 100644 packages/source-http/CHANGELOG.md create mode 100644 packages/source-memory/CHANGELOG.md create mode 100644 packages/source/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8aedf2aa..18f49ddc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { "packages/core": "10.3.0", - "packages/fs": "10.0.9", - "packages/fs-aws": "10.0.9", - "packages/middleware": "10.0.0", - "packages/source": "10.0.0", - "packages/source-aws": "10.3.0", - "packages/source-file": "10.0.6", - "packages/source-http": "10.1.2", - "packages/source-memory": "10.1.0" + "packages/fs": "11.0.0", + "packages/fs-aws": "11.0.0", + "packages/middleware": "11.0.0", + "packages/source": "11.0.0", + "packages/source-aws": "11.0.0", + "packages/source-file": "11.0.0", + "packages/source-http": "11.0.0", + "packages/source-memory": "11.0.0" } \ No newline at end of file diff --git a/packages/fs-aws/CHANGELOG.md b/packages/fs-aws/CHANGELOG.md new file mode 100644 index 00000000..82833385 --- /dev/null +++ b/packages/fs-aws/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/fs-aws-v10.0.9...fs-aws-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chunkd/fs bumped from * to 11.0.0 + * @chunkd/source-aws bumped from * to 11.0.0 diff --git a/packages/fs-aws/package.json b/packages/fs-aws/package.json index e5d888a1..af145854 100644 --- a/packages/fs-aws/package.json +++ b/packages/fs-aws/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/fs-aws", - "version": "10.0.3", + "version": "11.0.0", "type": "module", "engines": { "node": ">=16.0.0" @@ -21,8 +21,8 @@ "@aws-sdk/client-s3": "*", "@aws-sdk/credential-providers": "*", "@aws-sdk/lib-storage": "*", - "@chunkd/fs": "*", - "@chunkd/source-aws": "*" + "@chunkd/fs": "11.0.0", + "@chunkd/source-aws": "11.0.0" }, "devDependencies": {}, "publishConfig": { diff --git a/packages/fs/CHANGELOG.md b/packages/fs/CHANGELOG.md new file mode 100644 index 00000000..9ec4a79c --- /dev/null +++ b/packages/fs/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/fs-v10.0.9...fs-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chunkd/source bumped from ^10.0.0 to ^11.0.0 + * @chunkd/source-file bumped from ^10.0.6 to ^11.0.0 + * @chunkd/source-http bumped from ^10.1.2 to ^11.0.0 diff --git a/packages/fs/package.json b/packages/fs/package.json index 24e5a1ba..96f32107 100644 --- a/packages/fs/package.json +++ b/packages/fs/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/fs", - "version": "10.0.9", + "version": "11.0.0", "type": "module", "engines": { "node": ">=16.0.0" @@ -16,9 +16,9 @@ "license": "MIT", "scripts": {}, "dependencies": { - "@chunkd/source": "^10.0.0", - "@chunkd/source-file": "^10.0.6", - "@chunkd/source-http": "^10.1.2" + "@chunkd/source": "^11.0.0", + "@chunkd/source-file": "^11.0.0", + "@chunkd/source-http": "^11.0.0" }, "devDependencies": { "@types/node": "^18.0.0" diff --git a/packages/middleware/CHANGELOG.md b/packages/middleware/CHANGELOG.md new file mode 100644 index 00000000..5d545932 --- /dev/null +++ b/packages/middleware/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/middleware-v10.0.0...middleware-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chunkd/source bumped from ^10.0.0 to ^11.0.0 diff --git a/packages/middleware/package.json b/packages/middleware/package.json index 8fb47cbc..b071d4f0 100644 --- a/packages/middleware/package.json +++ b/packages/middleware/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/middleware", - "version": "10.0.0", + "version": "11.0.0", "type": "module", "engines": { "node": ">=16.0.0" @@ -18,7 +18,7 @@ "test": "node --test" }, "dependencies": { - "@chunkd/source": "^10.0.0" + "@chunkd/source": "^11.0.0" }, "devDependencies": { "@types/node": "^18.0.0" diff --git a/packages/source-aws/CHANGELOG.md b/packages/source-aws/CHANGELOG.md new file mode 100644 index 00000000..c5730088 --- /dev/null +++ b/packages/source-aws/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/source-aws-v10.3.0...source-aws-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chunkd/source bumped from ^10.0.0 to ^11.0.0 diff --git a/packages/source-aws/package.json b/packages/source-aws/package.json index 3d3e1234..51c64e30 100644 --- a/packages/source-aws/package.json +++ b/packages/source-aws/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/source-aws", - "version": "10.3.0", + "version": "11.0.0", "type": "module", "engines": { "node": ">=16.0.0" @@ -19,7 +19,7 @@ }, "dependencies": { "@aws-sdk/client-s3": "*", - "@chunkd/source": "^10.0.0" + "@chunkd/source": "^11.0.0" }, "devDependencies": {}, "publishConfig": { diff --git a/packages/source-file/CHANGELOG.md b/packages/source-file/CHANGELOG.md new file mode 100644 index 00000000..79192d86 --- /dev/null +++ b/packages/source-file/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/source-file-v10.0.6...source-file-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chunkd/source bumped from ^10.0.0 to ^11.0.0 diff --git a/packages/source-file/package.json b/packages/source-file/package.json index 457f6934..55c8f5aa 100644 --- a/packages/source-file/package.json +++ b/packages/source-file/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/source-file", - "version": "10.0.6", + "version": "11.0.0", "type": "module", "engines": { "node": ">=16.0.0" @@ -18,7 +18,7 @@ "test": "node --test" }, "dependencies": { - "@chunkd/source": "^10.0.0" + "@chunkd/source": "^11.0.0" }, "devDependencies": { "@types/node": "^18.0.0" diff --git a/packages/source-http/CHANGELOG.md b/packages/source-http/CHANGELOG.md new file mode 100644 index 00000000..b2bbcf77 --- /dev/null +++ b/packages/source-http/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/source-http-v10.1.2...source-http-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chunkd/source bumped from ^10.0.0 to ^11.0.0 diff --git a/packages/source-http/package.json b/packages/source-http/package.json index a870ed1a..63140a6e 100644 --- a/packages/source-http/package.json +++ b/packages/source-http/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/source-http", - "version": "10.1.2", + "version": "11.0.0", "type": "module", "engines": { "node": ">=18.0.0" @@ -18,7 +18,7 @@ "test": "node --test" }, "dependencies": { - "@chunkd/source": "^10.0.0" + "@chunkd/source": "^11.0.0" }, "devDependencies": { "@types/node": "^18.0.0" diff --git a/packages/source-memory/CHANGELOG.md b/packages/source-memory/CHANGELOG.md new file mode 100644 index 00000000..dc8adbe0 --- /dev/null +++ b/packages/source-memory/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/source-memory-v10.1.0...source-memory-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chunkd/source bumped from ^10.0.0 to ^11.0.0 diff --git a/packages/source-memory/package.json b/packages/source-memory/package.json index ec9de814..071d5012 100644 --- a/packages/source-memory/package.json +++ b/packages/source-memory/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/source-memory", - "version": "10.1.0", + "version": "11.0.0", "type": "module", "engines": { "node": ">=16.0.0" @@ -18,7 +18,7 @@ "test": "node --test" }, "dependencies": { - "@chunkd/source": "^10.0.0" + "@chunkd/source": "^11.0.0" }, "devDependencies": { "@types/node": "^18.0.0" diff --git a/packages/source/CHANGELOG.md b/packages/source/CHANGELOG.md new file mode 100644 index 00000000..74886397 --- /dev/null +++ b/packages/source/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## [11.0.0](https://github.com/blacha/chunkd/compare/source-v10.0.0...source-v11.0.0) (2023-07-20) + + +### ⚠ BREAKING CHANGES + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) + +### Features + +* simplify source into fetching bytes and metadata ([#1041](https://github.com/blacha/chunkd/issues/1041)) ([3cc9c01](https://github.com/blacha/chunkd/commit/3cc9c0193ebb6b8c704e977f7552544c840e65dd)) diff --git a/packages/source/package.json b/packages/source/package.json index 09bfe600..351af361 100644 --- a/packages/source/package.json +++ b/packages/source/package.json @@ -1,6 +1,6 @@ { "name": "@chunkd/source", - "version": "10.0.0", + "version": "11.0.0", "type": "module", "engines": { "node": ">=16.0.0"