Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/grumpy-steaks-hug.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/silver-sloths-lay.md

This file was deleted.

32 changes: 17 additions & 15 deletions packages/blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,43 @@
# Changelog

### [3.0.4](https://www.github.com/web-std/io/compare/blob-v3.0.3...blob-v3.0.4) (2022-02-24)
## 3.0.5

### Patch Changes

### Changes
- 43c6ce2: Move types conditional export to the top of the list to align with [the node guidance](https://nodejs.org/api/packages.html#community-conditions-definitions)
- Updated dependencies [43c6ce2]
- @remix-run/web-stream@1.0.4

## [3.0.4](https://www.github.com/web-std/io/compare/blob-v3.0.3...blob-v3.0.4) (2022-02-24)

* disable node native blob ([#49](https://www.github.com/web-std/io/issues/49)) ([18e426e](https://www.github.com/web-std/io/commit/18e426e0552eb855275faadceab35c41335582f2))
### Changes

### [3.0.3](https://www.github.com/web-std/io/compare/blob-v3.0.2...blob-v3.0.3) (2022-01-21)
- disable node native blob ([#49](https://www.github.com/web-std/io/issues/49)) ([18e426e](https://www.github.com/web-std/io/commit/18e426e0552eb855275faadceab35c41335582f2))

## [3.0.3](https://www.github.com/web-std/io/compare/blob-v3.0.2...blob-v3.0.3) (2022-01-21)

### Changes

* bump version ([91420e2](https://www.github.com/web-std/io/commit/91420e294b4188a6da9c961ce4ef4eeac93595a1))

### [3.0.2](https://www.github.com/web-std/io/compare/blob-v3.0.1...blob-v3.0.2) (2022-01-19)
- bump version ([91420e2](https://www.github.com/web-std/io/commit/91420e294b4188a6da9c961ce4ef4eeac93595a1))

## [3.0.2](https://www.github.com/web-std/io/compare/blob-v3.0.1...blob-v3.0.2) (2022-01-19)

### Bug Fixes

* ship less files to address TSC issues ([#35](https://www.github.com/web-std/io/issues/35)) ([0651e62](https://www.github.com/web-std/io/commit/0651e62ae42d17eae2db89858c9e44f3342c304c))

### [3.0.1](https://www.github.com/web-std/io/compare/blob-v3.0.0...blob-v3.0.1) (2021-11-08)
- ship less files to address TSC issues ([#35](https://www.github.com/web-std/io/issues/35)) ([0651e62](https://www.github.com/web-std/io/commit/0651e62ae42d17eae2db89858c9e44f3342c304c))

## [3.0.1](https://www.github.com/web-std/io/compare/blob-v3.0.0...blob-v3.0.1) (2021-11-08)

### Changes

* align package versions ([09c8676](https://www.github.com/web-std/io/commit/09c8676348619313d9df24d9597cea0eb82704d2))
- align package versions ([09c8676](https://www.github.com/web-std/io/commit/09c8676348619313d9df24d9597cea0eb82704d2))

## 3.0.0 (2021-11-05)


### Features

* Refactor streams into own subpackage ([#19](https://www.github.com/web-std/io/issues/19)) ([90624cf](https://www.github.com/web-std/io/commit/90624cfd2d4253c2cbc316d092f26e77b5169f47))

- Refactor streams into own subpackage ([#19](https://www.github.com/web-std/io/issues/19)) ([90624cf](https://www.github.com/web-std/io/commit/90624cfd2d4253c2cbc316d092f26e77b5169f47))

### Changes

* bump versions ([#27](https://www.github.com/web-std/io/issues/27)) ([0fe5224](https://www.github.com/web-std/io/commit/0fe5224124e318f560dcfbd8a234d05367c9fbcb))
- bump versions ([#27](https://www.github.com/web-std/io/issues/27)) ([0fe5224](https://www.github.com/web-std/io/commit/0fe5224124e318f560dcfbd8a234d05367c9fbcb))
6 changes: 3 additions & 3 deletions packages/blob/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-blob",
"version": "3.0.4",
"version": "3.0.5",
"description": "Web API compatible Blob implementation",
"keywords": [
"blob",
Expand All @@ -25,14 +25,14 @@
}
},
"dependencies": {
"@remix-run/web-stream": "^1.0.3",
"@remix-run/web-stream": "^1.0.4",
"web-encoding": "1.1.5"
},
"author": "Irakli Gozalishvili <dev@gozala.io> (https://gozala.io)",
"repository": "https://github.com/remix-run/web-std-io",
"license": "MIT",
"devDependencies": {
"@remix-run/web-fetch": "^4.1.1",
"@remix-run/web-fetch": "^4.3.6",
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
Expand Down
19 changes: 15 additions & 4 deletions packages/fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 4.3.6

### Patch Changes

- 5d1e12a: Remove socket listeners if request is aborted
- 43c6ce2: Move types conditional export to the top of the list to align with [the node guidance](https://nodejs.org/api/packages.html#community-conditions-definitions)
- Updated dependencies [43c6ce2]
- @remix-run/web-blob@3.0.5
- @remix-run/web-form-data@3.0.5
- @remix-run/web-stream@1.0.4

## 4.3.5

### Patch Changes
Expand Down Expand Up @@ -63,7 +74,7 @@

- add support for application/x-www-form-urlencoded in request.formData() ([#60](https://www.github.com/web-std/io/issues/60)) ([c719b0d](https://www.github.com/web-std/io/commit/c719b0de442811eb588309b777ab6ab3d966cdf1))

### [4.0.1](https://www.github.com/web-std/io/compare/fetch-v4.0.0...fetch-v4.0.1) (2022-04-13)
## [4.0.1](https://www.github.com/web-std/io/compare/fetch-v4.0.0...fetch-v4.0.1) (2022-04-13)

### Bug Fixes

Expand All @@ -82,19 +93,19 @@
- export native fetch on the web ([#53](https://www.github.com/web-std/io/issues/53)) ([af03280](https://www.github.com/web-std/io/commit/af03280788286cd69185efb0572da162f16d48cc))
- implement file: protocol support for fetch ([#55](https://www.github.com/web-std/io/issues/55)) ([19d17c7](https://www.github.com/web-std/io/commit/19d17c76f995800c9e07d5d6a923f33b81ab1d22))

### [3.0.3](https://www.github.com/web-std/io/compare/fetch-v3.0.2...fetch-v3.0.3) (2022-01-28)
## [3.0.3](https://www.github.com/web-std/io/compare/fetch-v3.0.2...fetch-v3.0.3) (2022-01-28)

### Bug Fixes

- include dist/index.cjs in files ([#47](https://www.github.com/web-std/io/issues/47)) ([2a12474](https://www.github.com/web-std/io/commit/2a1247404650bf5b6662fa520248bf07ae457987))

### [3.0.2](https://www.github.com/web-std/io/compare/fetch-v3.0.1...fetch-v3.0.2) (2022-01-21)
## [3.0.2](https://www.github.com/web-std/io/compare/fetch-v3.0.1...fetch-v3.0.2) (2022-01-21)

### Changes

- bump fetch versions ([e8ae4e5](https://www.github.com/web-std/io/commit/e8ae4e5e61591f1bcbd45a0541c762468e134e4b))

### [3.0.1](https://www.github.com/web-std/io/compare/fetch-v3.0.0...fetch-v3.0.1) (2022-01-19)
## [3.0.1](https://www.github.com/web-std/io/compare/fetch-v3.0.0...fetch-v3.0.1) (2022-01-19)

### Bug Fixes

Expand Down
8 changes: 4 additions & 4 deletions packages/fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-fetch",
"version": "4.3.5",
"version": "4.3.6",
"description": "Web API compatible fetch implementation",
"main": "./dist/lib.node.cjs",
"module": "./src/lib.node.js",
Expand Down Expand Up @@ -96,9 +96,9 @@
"xo": "^0.33.1"
},
"dependencies": {
"@remix-run/web-blob": "^3.0.4",
"@remix-run/web-form-data": "^3.0.3",
"@remix-run/web-stream": "^1.0.3",
"@remix-run/web-blob": "^3.0.5",
"@remix-run/web-form-data": "^3.0.5",
"@remix-run/web-stream": "^1.0.4",
"@web3-storage/multipart-parser": "^1.0.0",
"abort-controller": "^3.0.0",
"data-uri-to-buffer": "^3.0.1",
Expand Down
24 changes: 14 additions & 10 deletions packages/file/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
# Changelog

### [3.0.2](https://www.github.com/web-std/io/compare/file-v3.0.1...file-v3.0.2) (2022-01-21)
## 3.0.3

### Patch Changes

### Changes
- 43c6ce2: Move types conditional export to the top of the list to align with [the node guidance](https://nodejs.org/api/packages.html#community-conditions-definitions)
- Updated dependencies [43c6ce2]
- @remix-run/web-blob@3.0.5

## [3.0.2](https://www.github.com/web-std/io/compare/file-v3.0.1...file-v3.0.2) (2022-01-21)

* **file:** update blob dep version ([767988b](https://www.github.com/web-std/io/commit/767988b9dade84ee04b8cda515c114cba8a1f659))
### Changes

### [3.0.1](https://www.github.com/web-std/io/compare/file-v3.0.0...file-v3.0.1) (2022-01-19)
- **file:** update blob dep version ([767988b](https://www.github.com/web-std/io/commit/767988b9dade84ee04b8cda515c114cba8a1f659))

## [3.0.1](https://www.github.com/web-std/io/compare/file-v3.0.0...file-v3.0.1) (2022-01-19)

### Bug Fixes

* ship less files to address TSC issues ([#35](https://www.github.com/web-std/io/issues/35)) ([0651e62](https://www.github.com/web-std/io/commit/0651e62ae42d17eae2db89858c9e44f3342c304c))
- ship less files to address TSC issues ([#35](https://www.github.com/web-std/io/issues/35)) ([0651e62](https://www.github.com/web-std/io/commit/0651e62ae42d17eae2db89858c9e44f3342c304c))

## 3.0.0 (2021-11-05)


### Features

* revamp the repo ([#19](https://www.github.com/web-std/io/issues/19)) ([90624cf](https://www.github.com/web-std/io/commit/90624cfd2d4253c2cbc316d092f26e77b5169f47))

- revamp the repo ([#19](https://www.github.com/web-std/io/issues/19)) ([90624cf](https://www.github.com/web-std/io/commit/90624cfd2d4253c2cbc316d092f26e77b5169f47))

### Changes

* align package versions ([09c8676](https://www.github.com/web-std/io/commit/09c8676348619313d9df24d9597cea0eb82704d2))
* bump versions ([#27](https://www.github.com/web-std/io/issues/27)) ([0fe5224](https://www.github.com/web-std/io/commit/0fe5224124e318f560dcfbd8a234d05367c9fbcb))
- align package versions ([09c8676](https://www.github.com/web-std/io/commit/09c8676348619313d9df24d9597cea0eb82704d2))
- bump versions ([#27](https://www.github.com/web-std/io/issues/27)) ([0fe5224](https://www.github.com/web-std/io/commit/0fe5224124e318f560dcfbd8a234d05367c9fbcb))
6 changes: 3 additions & 3 deletions packages/file/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-file",
"version": "3.0.2",
"version": "3.0.3",
"description": "Web API compatible File implementation for node",
"files": [
"src",
Expand Down Expand Up @@ -30,13 +30,13 @@
}
},
"dependencies": {
"@remix-run/web-blob": "^3.0.4"
"@remix-run/web-blob": "^3.0.5"
},
"author": "Irakli Gozalishvili <dev@gozala.io> (https://gozala.io)",
"repository": "https://github.com/remix-run/web-std-io",
"license": "MIT",
"devDependencies": {
"@remix-run/web-fetch": "^4.1.1",
"@remix-run/web-fetch": "^4.3.6",
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
Expand Down
10 changes: 8 additions & 2 deletions packages/form-data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.0.5

### Patch Changes

- 43c6ce2: Move types conditional export to the top of the list to align with [the node guidance](https://nodejs.org/api/packages.html#community-conditions-definitions)

## 3.0.4

### Patch Changes
Expand All @@ -12,13 +18,13 @@

- 6521895: Fix submitting form data when file input is empty. Addresses https://github.com/remix-run/remix/pull/3576

### [3.0.2](https://www.github.com/web-std/io/compare/form-data-v3.0.1...form-data-v3.0.2) (2022-01-21)
## [3.0.2](https://www.github.com/web-std/io/compare/form-data-v3.0.1...form-data-v3.0.2) (2022-01-21)

### Changes

- bump form-data version ([b7ac808](https://www.github.com/web-std/io/commit/b7ac808ba8ae6488d5c2dc6d0d441412a7a8e2b8))

### [3.0.1](https://www.github.com/web-std/io/compare/form-data-v3.0.0...form-data-v3.0.1) (2022-01-19)
## [3.0.1](https://www.github.com/web-std/io/compare/form-data-v3.0.0...form-data-v3.0.1) (2022-01-19)

### Bug Fixes

Expand Down
8 changes: 4 additions & 4 deletions packages/form-data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-form-data",
"version": "3.0.4",
"version": "3.0.5",
"description": "Web API compatible Form Data implementation",
"files": [
"src",
Expand Down Expand Up @@ -34,9 +34,9 @@
"repository": "https://github.com/remix-run/web-std-io",
"license": "MIT",
"devDependencies": {
"@remix-run/web-blob": "^3.0.4",
"@remix-run/web-fetch": "^4.2.0",
"@remix-run/web-file": "^3.0.2",
"@remix-run/web-blob": "^3.0.5",
"@remix-run/web-fetch": "^4.3.6",
"@remix-run/web-file": "^3.0.3",
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
Expand Down
21 changes: 12 additions & 9 deletions packages/stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
# Changelog

### [1.0.2](https://www.github.com/web-std/io/compare/stream-v1.0.1...stream-v1.0.2) (2022-04-13)
## 1.0.4

### Patch Changes

### Bug Fixes
- 43c6ce2: Move types conditional export to the top of the list to align with [the node guidance](https://nodejs.org/api/packages.html#community-conditions-definitions)

## [1.0.2](https://www.github.com/web-std/io/compare/stream-v1.0.1...stream-v1.0.2) (2022-04-13)

* **packages/fetch:** only export what's needed so TS doesn't mess up the imports in the output files ([30ad037](https://www.github.com/web-std/io/commit/30ad0377a88ebffc3a998616e3b774ce5bcc584a))
* **packages/stream:** no initializers in ambient contexts ([30ad037](https://www.github.com/web-std/io/commit/30ad0377a88ebffc3a998616e3b774ce5bcc584a))
* typescript types ([#56](https://www.github.com/web-std/io/issues/56)) ([30ad037](https://www.github.com/web-std/io/commit/30ad0377a88ebffc3a998616e3b774ce5bcc584a))
### Bug Fixes

### [1.0.1](https://www.github.com/web-std/io/compare/stream-v1.0.0...stream-v1.0.1) (2022-01-19)
- **packages/fetch:** only export what's needed so TS doesn't mess up the imports in the output files ([30ad037](https://www.github.com/web-std/io/commit/30ad0377a88ebffc3a998616e3b774ce5bcc584a))
- **packages/stream:** no initializers in ambient contexts ([30ad037](https://www.github.com/web-std/io/commit/30ad0377a88ebffc3a998616e3b774ce5bcc584a))
- typescript types ([#56](https://www.github.com/web-std/io/issues/56)) ([30ad037](https://www.github.com/web-std/io/commit/30ad0377a88ebffc3a998616e3b774ce5bcc584a))

## [1.0.1](https://www.github.com/web-std/io/compare/stream-v1.0.0...stream-v1.0.1) (2022-01-19)

### Bug Fixes

* ship less files to address TSC issues ([#35](https://www.github.com/web-std/io/issues/35)) ([0651e62](https://www.github.com/web-std/io/commit/0651e62ae42d17eae2db89858c9e44f3342c304c))
- ship less files to address TSC issues ([#35](https://www.github.com/web-std/io/issues/35)) ([0651e62](https://www.github.com/web-std/io/commit/0651e62ae42d17eae2db89858c9e44f3342c304c))

## 1.0.0 (2021-11-05)


### Features

* Factor out streams into separate package ([#19](https://www.github.com/web-std/io/issues/19)) ([90624cf](https://www.github.com/web-std/io/commit/90624cfd2d4253c2cbc316d092f26e77b5169f47))
- Factor out streams into separate package ([#19](https://www.github.com/web-std/io/issues/19)) ([90624cf](https://www.github.com/web-std/io/commit/90624cfd2d4253c2cbc316d092f26e77b5169f47))
2 changes: 1 addition & 1 deletion packages/stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-stream",
"version": "1.0.3",
"version": "1.0.4",
"description": "Web API compatible streams for node/web",
"files": [
"src",
Expand Down