Steven Allen
6719e124bb
doc(config): sort sections
2020-05-19 19:13:50 -07:00
Steven Allen
167c834976
Merge pull request #7331 from ipfs/fix/fuse-mount
...
fix: correctly trim resolved IPNS addresses
2020-05-19 18:52:10 -07:00
Steven Allen
391d345622
fix: correctly trim resolved IPNS addresses
...
fixes https://github.com/ipfs/go-ipfs/issues/7246
2020-05-19 18:33:46 -07:00
Steven Allen
1744eb2210
Merge pull request #4233 from jphastings/feat/gateway/pretty-404
...
Gateway renders pretty 404 pages if available
2020-05-19 14:51:51 -07:00
JP Hastings-Spital
dfceafdbd3
Gateway renders pretty 404 pages if available
...
In the same way that an `index.html` file is rendered, if one is present, when the
requested path is a directory, now an `ipfs-404.html` file is rendered if
the requested file is not present within the specified IPFS object.
`ipfs-404.html` files are looked for in the directory of the requested path and each
parent until one is found, falling back on the well-known 404 error message.
License: MIT
Signed-off-by: JP Hastings-Spital <jphastings@gmail.com>
2020-05-19 14:41:21 -07:00
Steven Allen
043acbd3f8
Merge pull request #7221 from ipfs/feat/dht-stat
...
feat: add a dht stat command
2020-05-15 00:18:33 -07:00
Steven Allen
5751917f49
feat: add a stats dht command
...
Currently, it just prints out the routing tables.
2020-05-14 23:32:18 -07:00
Steven Allen
31d8679a3e
Merge pull request #7291 from ipfs/dependabot/go_modules/github.com/ipfs/go-bitswap-0.2.14
...
chore(deps): bump github.com/ipfs/go-bitswap from 0.2.13 to 0.2.14
2020-05-14 23:24:21 -07:00
Steven Allen
bb32155952
Merge pull request #7311 from ipfs/fix/update-dists
...
fix: update dists url for OpenBSD support
2020-05-14 23:23:54 -07:00
Steven Allen
d31a5b3601
fix: update dists url for OpenBSD support
2020-05-13 07:42:23 -07:00
Steven Allen
31ca7ce244
Merge pull request #7306 from ipfs/docs/x-forwarded-proto
...
docs: X-Forwarded-Proto: https
2020-05-13 07:08:06 -07:00
Marcin Rataj
10aaf24304
chore: update X-Forwarded-Proto copy text
...
Co-authored-by: Steven Allen <steven@stebalien.com>
2020-05-13 15:07:59 +02:00
Steven Allen
f8306e289a
Merge pull request #7310 from ipfs/fix/mkrelease-cwd
...
fix(mkreleaselog): make robust against running in different working directories
2020-05-12 23:06:06 -07:00
Steven Allen
048c1c37b3
fix(mkreleaselog): make robust against running in different working directories
...
1. Cd into the repo root before running `go list`.
2. Make sure the repo lives in the GOPATH.
2020-05-12 22:30:53 -07:00
Steven Allen
8e7cead9af
Merge pull request #7296 from ipfs/feat/mkreleaselog-imp
...
fix(mkreleasenotes): include commits directly to master
2020-05-12 22:14:09 -07:00
Marcin Rataj
c5b30545bf
docs: X-Forwarded-Proto: https
...
Additional documentation for running subdomain gateway behind reverse proxy with TLS.
2020-05-12 13:00:25 +02:00
Steven Allen
fa8c88b123
Merge pull request #7282 from balajijinnah/balaji/create_file_atomically
...
write api file automically
2020-05-10 11:42:32 -07:00
Steven Allen
19064b27d5
Merge pull request #7299 from RubenKelevra/feat/systemd-disable-swap
...
systemd: disable swap-usage for ipfs
2020-05-10 11:41:20 -07:00
@RubenKelevra
e9843fbd31
systemd: disable swap-usage for ipfs
2020-05-10 16:17:06 +02:00
Tiger
0a17fc8764
clean up tmp file
...
Signed-off-by: Tiger <rbalajis25@gmail.com>
2020-05-10 18:04:43 +05:30
Steven Allen
dbfa7bf2b2
Merge branch 'release'
2020-05-08 20:29:57 -07:00
Steven Allen
8431e2e870
Merge pull request #7295 from ipfs/release-v0.5.1
...
feat: release 0.5.1
2020-05-08 19:58:18 -07:00
Steven Allen
d2b1d5b7d4
fix(mkreleasenotes): include commits directly to master
...
This will include:
* Commits to master.
* Squashed merges.
In the release notes.
2020-05-08 19:37:56 -07:00
Steven Allen
2b3fafc243
feat(mkreleasenotes): include more repos
...
We should be including multiformats repos and repos from our core contributors.
2020-05-08 19:37:20 -07:00
Steven Allen
75d1cb07ec
feat: release 0.5.1
...
Hot on the heels of 0.5.0 is 0.5.1 with some important but small bug fixes. This release:
1. Removes the 1 minute timeout for IPNS publishes (fixes #7244 ).
2. Backport a DHT fix to reduce CPU usage for canceled requests.
3. Fixes some timer leaks in the QUIC transport ([ipfs/go-ipfs#2515 ](https://github.com/lucas-clemente/quic-go/issues/2515 )).
Full changelog:
- github.com/ipfs/go-ipfs:
- IPNS timeout patch from master ([ipfs/go-ipfs#7276 ](https://github.com/ipfs/go-ipfs/pull/7276 ))
- github.com/libp2p/go-libp2p-core (v0.5.2 -> v0.5.3):
- feat: add a function to tell if a context subscribes to query events ([libp2p/go-libp2p-core#147 ](https://github.com/libp2p/go-libp2p-core/pull/147 ))
- github.com/libp2p/go-libp2p-kad-dht (v0.7.10 -> v0.7.11):
- fix: optimize for the case where we're not subscribing to query events ([libp2p/go-libp2p-kad-dht#624 ](https://github.com/libp2p/go-libp2p-kad-dht/pull/624 ))
- fix: don't spin when the event channel is closed ([libp2p/go-libp2p-kad-dht#622 ](https://github.com/libp2p/go-libp2p-kad-dht/pull/622 ))
- github.com/libp2p/go-libp2p-routing-helpers (v0.2.2 -> v0.2.3):
- fix: avoid subscribing to query events unless necessary ([libp2p/go-libp2p-routing-helpers#43 ](https://github.com/libp2p/go-libp2p-routing-helpers/pull/43 ))
- github.com/lucas-clemente/quic-go (v0.15.5 -> v0.15.7):
- reset the PTO when dropping a packet number space
- move deadlineTimer declaration out of the Read loop
- stop the deadline timer in Stream.Read and Write
- fix buffer use after it was released when sending an INVALID_TOKEN error
- create the session timer at the beginning of the run loop
- stop the timer when the session's run loop returns
2020-05-08 19:00:27 -07:00
Steven Allen
fea43aca6d
Merge pull request #7294 from ipfs/feat/backport-quic-update
...
update go-libp2p-quic-transport to v0.3.7
2020-05-08 16:05:28 -07:00
Marten Seemann
b929b49e7f
update go-libp2p-quic-transport to v0.3.7
2020-05-08 15:43:37 -07:00
Marten Seemann
d0ab9a34fa
update go-libp2p-quic-transport to v0.3.6
2020-05-08 15:40:58 -07:00
Steven Allen
cfcd876b2f
Merge pull request #7265 from RubenKelevra/feat/longer_systemd_timeouts
...
systemd: add helptext
2020-05-08 13:30:47 -07:00
Steven Allen
e6c43a6360
Merge pull request #7287 from RubenKelevra/feat/systemd-service-add-documentation-link
...
systemd: add the link to the docs
2020-05-08 13:29:55 -07:00
Steven Allen
dabd95de9d
Merge pull request #7288 from RubenKelevra/feat/systemd-create-state-directory
...
systemd: add state directory setting
2020-05-08 13:29:29 -07:00
Steven Allen
ae92fdcabb
Merge pull request #7289 from bmwiedemann/readme
...
Update go version required to build
2020-05-08 13:26:55 -07:00
dependabot-preview[bot]
5ed2fe53a2
chore(deps): bump github.com/ipfs/go-bitswap from 0.2.13 to 0.2.14
...
Bumps [github.com/ipfs/go-bitswap](https://github.com/ipfs/go-bitswap ) from 0.2.13 to 0.2.14.
- [Release notes](https://github.com/ipfs/go-bitswap/releases )
- [Commits](https://github.com/ipfs/go-bitswap/compare/v0.2.13...v0.2.14 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-05-08 11:28:35 +00:00
Bernhard M. Wiedemann
0c88bcbfd5
Update go version required to build
...
based on mk/golang.mk
2020-05-08 06:11:12 +02:00
@RubenKelevra
d66004d6db
systemd: add state directory setting
...
this will inform systemd where the service stores it's persistent data and where it needs write access.
Systemd will create the folder and set the right owner rights.
2020-05-07 23:18:50 +02:00
@RubenKelevra
18c9ad012a
systemd: add the link to the docs
2020-05-07 23:13:08 +02:00
Tiger
03b1a603c3
change tmp name
...
Signed-off-by: Tiger <rbalajis25@gmail.com>
2020-05-07 23:34:42 +05:30
Tiger
17ec10436f
write api file automically
...
Signed-off-by: Tiger <rbalajis25@gmail.com>
2020-05-06 22:42:17 +05:30
Steven Allen
3339ce3b0e
Merge pull request #6774 from MichaelMure/pincoreapi
...
pin: implement pin/ls with only CoreApi
2020-05-05 18:49:19 -07:00
Steven Allen
ba00e063d8
Merge pull request #7278 from marten-seemann/update-quic
...
update go-libp2p-quic-transport to v0.3.7
2020-05-05 18:42:26 -07:00
Marten Seemann
6e9a97e3a9
update go-libp2p-quic-transport to v0.3.7
2020-05-06 08:20:23 +07:00
Steven Allen
67966f5f61
Merge pull request #7277 from pataquets/patch-2
...
Docs: Delete section headers for removed features
2020-05-05 14:47:31 -07:00
Alfonso Montero
ec63880545
Delete section headers for removed features
2020-05-05 23:40:34 +02:00
Adin Schmahmann
ae53665173
Merge pull request #7276 from ipfs/patch-0.5.1/7244
...
IPNS timeout patch from master
2020-05-05 17:16:05 -04:00
Adin Schmahmann
b1e0f78f56
fix: do not use hard coded IPNS Publish maximum timeout duration
2020-05-05 14:34:50 -04:00
Steven Allen
bb05bf2a21
Merge pull request #7275 from ipfs/chore-update-dirindexhtml
...
Chore: update dir-index-html to v1.0.5
2020-05-05 11:14:50 -07:00
Jessica Schilling
7e769f4f81
add go mod tidy to readme directions
2020-05-05 12:00:54 -06:00
Jessica Schilling
ef4ef3445d
go mod tidy
2020-05-05 11:53:57 -06:00
Jessica Schilling
5e88b01e0f
go generate .
2020-05-05 11:36:32 -06:00
Jessica Schilling
c44af56576
chore: update dir-index-html to v1.0.5
2020-05-05 11:32:23 -06:00