Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit dc1693a

Browse files
committed
1 parent 86309d3 commit dc1693a

File tree

8 files changed

+124
-9
lines changed

8 files changed

+124
-9
lines changed

packages/interface-ipfs-core/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,35 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.134.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.134.0) (2020-04-16)
7+
8+
9+
### Bug Fixes
10+
11+
* make http api only accept POST requests ([#2977](https://github.com/ipfs/js-ipfs/issues/2977)) ([943d4a8](https://github.com/ipfs/js-ipfs/commit/943d4a8cf2d4c4ff5ecd4814c59cb0aae0cfa1fd))
12+
* pass timeout arg to server ([#2979](https://github.com/ipfs/js-ipfs/issues/2979)) ([049f085](https://github.com/ipfs/js-ipfs/commit/049f085fd206a1afb729fa825d8df38bf7aa8549))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* Where we used to accept all and any HTTP methods, now only POST is
18+
accepted. The API client will now only send POST requests too.
19+
20+
* test: add tests to make sure we are post-only
21+
22+
* chore: upgrade ipfs-utils
23+
24+
* fix: return 405 instead of 404 for bad methods
25+
26+
* fix: reject browsers that do not send an origin
27+
28+
Also fixes running interface tests over http in browsers against
29+
js-ipfs
30+
31+
32+
33+
34+
635
## [0.133.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.133.1) (2020-04-08)
736

837
**Note:** Version bump only for package interface-ipfs-core

packages/interface-ipfs-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interface-ipfs-core",
3-
"version": "0.133.1",
3+
"version": "0.134.0",
44
"description": "A test suite and interface you can use to implement a IPFS core interface.",
55
"leadMaintainer": "Alex Potsides <[email protected]>",
66
"main": "src/index.js",

packages/ipfs-core-utils/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.2.0) (2020-04-16)
7+
8+
9+
### Bug Fixes
10+
11+
* make http api only accept POST requests ([#2977](https://github.com/ipfs/js-ipfs/issues/2977)) ([943d4a8](https://github.com/ipfs/js-ipfs/commit/943d4a8cf2d4c4ff5ecd4814c59cb0aae0cfa1fd))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Where we used to accept all and any HTTP methods, now only POST is
17+
accepted. The API client will now only send POST requests too.
18+
19+
* test: add tests to make sure we are post-only
20+
21+
* chore: upgrade ipfs-utils
22+
23+
* fix: return 405 instead of 404 for bad methods
24+
25+
* fix: reject browsers that do not send an origin
26+
27+
Also fixes running interface tests over http in browsers against
28+
js-ipfs
29+
30+
31+
32+
33+
634
## [0.1.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.1.1) (2020-04-08)
735

836
**Note:** Version bump only for package ipfs-core-utils

packages/ipfs-core-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-utils",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Package to share code between ipfs and ipfs-http-client",
55
"main": "src/index.js",
66
"author": "Alex Potsides <[email protected]>",

packages/ipfs-http-client/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,35 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [44.0.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@44.0.0) (2020-04-16)
7+
8+
9+
### Bug Fixes
10+
11+
* make http api only accept POST requests ([#2977](https://github.com/ipfs/js-ipfs/issues/2977)) ([943d4a8](https://github.com/ipfs/js-ipfs/commit/943d4a8cf2d4c4ff5ecd4814c59cb0aae0cfa1fd))
12+
* pass timeout arg to server ([#2979](https://github.com/ipfs/js-ipfs/issues/2979)) ([049f085](https://github.com/ipfs/js-ipfs/commit/049f085fd206a1afb729fa825d8df38bf7aa8549))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* Where we used to accept all and any HTTP methods, now only POST is
18+
accepted. The API client will now only send POST requests too.
19+
20+
* test: add tests to make sure we are post-only
21+
22+
* chore: upgrade ipfs-utils
23+
24+
* fix: return 405 instead of 404 for bad methods
25+
26+
* fix: reject browsers that do not send an origin
27+
28+
Also fixes running interface tests over http in browsers against
29+
js-ipfs
30+
31+
32+
33+
34+
635
## [43.0.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@43.0.1) (2020-04-08)
736

837

packages/ipfs-http-client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-client",
3-
"version": "43.0.1",
3+
"version": "44.0.0",
44
"description": "A client library for the IPFS HTTP API",
55
"keywords": [
66
"ipfs"
@@ -46,7 +46,7 @@
4646
"debug": "^4.1.0",
4747
"form-data": "^3.0.0",
4848
"ipfs-block": "^0.8.1",
49-
"ipfs-core-utils": "^0.1.1",
49+
"ipfs-core-utils": "^0.2.0",
5050
"ipfs-utils": "^2.2.0",
5151
"ipld-dag-cbor": "^0.15.1",
5252
"ipld-dag-pb": "^0.18.3",
@@ -71,7 +71,7 @@
7171
"browser-process-platform": "^0.1.1",
7272
"cross-env": "^7.0.0",
7373
"go-ipfs-dep": "0.4.23-3",
74-
"interface-ipfs-core": "^0.133.1",
74+
"interface-ipfs-core": "^0.134.0",
7575
"ipfsd-ctl": "^3.0.0",
7676
"it-all": "^1.0.1",
7777
"it-concat": "^1.0.0",

packages/ipfs/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,35 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.43.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.43.0) (2020-04-16)
7+
8+
9+
### Bug Fixes
10+
11+
* make http api only accept POST requests ([#2977](https://github.com/ipfs/js-ipfs/issues/2977)) ([943d4a8](https://github.com/ipfs/js-ipfs/commit/943d4a8cf2d4c4ff5ecd4814c59cb0aae0cfa1fd))
12+
* regression that dht could not be enabled through conf ([#2976](https://github.com/ipfs/js-ipfs/issues/2976)) ([9d88a2e](https://github.com/ipfs/js-ipfs/commit/9d88a2ebbad4dfa58df351d31d201eaf2aaf78dc))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* Where we used to accept all and any HTTP methods, now only POST is
18+
accepted. The API client will now only send POST requests too.
19+
20+
* test: add tests to make sure we are post-only
21+
22+
* chore: upgrade ipfs-utils
23+
24+
* fix: return 405 instead of 404 for bad methods
25+
26+
* fix: reject browsers that do not send an origin
27+
28+
Also fixes running interface tests over http in browsers against
29+
js-ipfs
30+
31+
32+
33+
34+
635
## [0.42.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.42.1) (2020-04-08)
736

837

packages/ipfs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs",
3-
"version": "0.42.1",
3+
"version": "0.43.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -99,8 +99,8 @@
9999
"ipfs-bitswap": "^0.27.1",
100100
"ipfs-block": "^0.8.1",
101101
"ipfs-block-service": "^0.16.0",
102-
"ipfs-core-utils": "^0.1.1",
103-
"ipfs-http-client": "^43.0.1",
102+
"ipfs-core-utils": "^0.2.0",
103+
"ipfs-http-client": "^44.0.0",
104104
"ipfs-http-response": "^0.5.0",
105105
"ipfs-repo": "^1.0.1",
106106
"ipfs-unixfs": "^1.0.1",
@@ -184,7 +184,7 @@
184184
"execa": "^4.0.0",
185185
"form-data": "^3.0.0",
186186
"go-ipfs-dep": "0.4.23-3",
187-
"interface-ipfs-core": "^0.133.1",
187+
"interface-ipfs-core": "^0.134.0",
188188
"ipfs-interop": "ipfs/interop#fix/name-pubsub",
189189
"ipfsd-ctl": "^3.0.0",
190190
"iso-random-stream": "^1.1.1",

0 commit comments

Comments
 (0)