Skip to content

Commit

Permalink
Merge pull request #35 from sor4chi/changeset-release/main
Browse files Browse the repository at this point in the history
Version Packages
  • Loading branch information
sor4chi authored Oct 30, 2023
2 parents 3d87c7f + d3bfd85 commit 59c9ea9
Show file tree
Hide file tree
Showing 20 changed files with 81 additions and 27 deletions.
5 changes: 0 additions & 5 deletions .changeset/afraid-chefs-call.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/curvy-ligers-agree.md

This file was deleted.

7 changes: 7 additions & 0 deletions examples/memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/memory-example

## 0.0.6

### Patch Changes

- Updated dependencies []:
- @hono-storage/memory@0.0.6

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/memory-example",
"private": true,
"version": "0.0.5",
"version": "0.0.6",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/nodejs-disk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/node-disk-example

## 0.0.8

### Patch Changes

- Updated dependencies []:
- @hono-storage/node-disk@0.0.8

## 0.0.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/nodejs-disk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/node-disk-example",
"private": true,
"version": "0.0.7",
"version": "0.0.8",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/r2-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/r2-node-example

## 0.0.5

### Patch Changes

- Updated dependencies []:
- @hono-storage/s3@0.0.6

## 0.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/r2-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/r2-node-example",
"private": true,
"version": "0.0.4",
"version": "0.0.5",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/s3-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/s3-node-example

## 0.0.6

### Patch Changes

- Updated dependencies []:
- @hono-storage/s3@0.0.6

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/s3-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/s3-node-example",
"private": true,
"version": "0.0.5",
"version": "0.0.6",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/s3-workers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/s3-workers-example

## 0.0.6

### Patch Changes

- Updated dependencies []:
- @hono-storage/s3@0.0.6

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/s3-workers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/s3-workers-example",
"private": true,
"version": "0.0.5",
"version": "0.0.6",
"scripts": {
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts"
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @hono-storage/core

## 0.0.7

### Patch Changes

- [#36](https://github.com/sor4chi/hono-storage/pull/36) [`17d6090`](https://github.com/sor4chi/hono-storage/commit/17d609093ade861c93eaac5418ca0a7debb7bebb) Thanks [@sor4chi](https://github.com/sor4chi)! - Fix: collectly handle storage when one file posted to multiple middleware

- [`0d257d4`](https://github.com/sor4chi/hono-storage/commit/0d257d42f158bc4485e907d601a6541d0f25a923) Thanks [@sor4chi](https://github.com/sor4chi)! - Breaking Changes: change the way to define multiple middleware option for scalability

```ts
// Before
storage.multiple("field", 3); // max 3 files options

// After
storage.multiple("filed", { maxCount: 3 }); // max 3 files options
```

## 0.0.6

### Patch Changes
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": "@hono-storage/core",
"version": "0.0.6",
"version": "0.0.7",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/memory

## 0.0.6

### Patch Changes

- Updated dependencies [[`17d6090`](https://github.com/sor4chi/hono-storage/commit/17d609093ade861c93eaac5418ca0a7debb7bebb), [`0d257d4`](https://github.com/sor4chi/hono-storage/commit/0d257d42f158bc4485e907d601a6541d0f25a923)]:
- @hono-storage/core@0.0.7

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hono-storage/memory",
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/node-disk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/node-disk

## 0.0.8

### Patch Changes

- Updated dependencies [[`17d6090`](https://github.com/sor4chi/hono-storage/commit/17d609093ade861c93eaac5418ca0a7debb7bebb), [`0d257d4`](https://github.com/sor4chi/hono-storage/commit/0d257d42f158bc4485e907d601a6541d0f25a923)]:
- @hono-storage/core@0.0.7

## 0.0.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/node-disk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hono-storage/node-disk",
"version": "0.0.7",
"version": "0.0.8",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/s3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/s3

## 0.0.6

### Patch Changes

- Updated dependencies [[`17d6090`](https://github.com/sor4chi/hono-storage/commit/17d609093ade861c93eaac5418ca0a7debb7bebb), [`0d257d4`](https://github.com/sor4chi/hono-storage/commit/0d257d42f158bc4485e907d601a6541d0f25a923)]:
- @hono-storage/core@0.0.7

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/s3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hono-storage/s3",
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit 59c9ea9

Please sign in to comment.