Commit Graph

12350 Commits

Author SHA1 Message Date
Steven Allen
a006ded010 chore: update webui to 2.12.1 2021-04-28 11:00:45 -07:00
Steven Allen
eea198f081
Merge pull request #8086 from ipfs/dependabot/go_modules/github.com/ipfs/go-unixfs-0.2.5
build(deps): bump github.com/ipfs/go-unixfs from 0.2.4 to 0.2.5
2021-04-22 15:43:33 -07:00
Steven Allen
dc3d8abd27
Merge pull request #8087 from Luflosi/fix-typo-in-comment
Fix typo in comment
2021-04-22 15:42:52 -07:00
Steven Allen
a4e14fb94e
Merge pull request #8040 from ipfs/fix/7269
fix: set systemd startup timeout to infinity
2021-04-22 11:38:53 -07:00
Luflosi
b3f054f450
Fix typo in comment 2021-04-22 20:30:41 +02:00
dependabot[bot]
215f110bd3
build(deps): bump github.com/ipfs/go-unixfs from 0.2.4 to 0.2.5
Bumps [github.com/ipfs/go-unixfs](https://github.com/ipfs/go-unixfs) from 0.2.4 to 0.2.5.
- [Release notes](https://github.com/ipfs/go-unixfs/releases)
- [Commits](https://github.com/ipfs/go-unixfs/compare/v0.2.4...v0.2.5)

Signed-off-by: dependabot[bot] <support@github.com>
2021-04-22 11:16:36 +00:00
Steven Allen
f54aead8fa
Merge pull request #8073 from ipfs/fix/mkrelease-v2
fix(mkreleaselog): partially handle v2 modules
2021-04-21 12:52:55 -07:00
Andrew Gillis
0ae9b2b903
Update migration sharness tests for new migrations (#8053)
* Update migration sharness tests for new migrations

With the new migrations, go-ipfs no longer uses fs-repo-migrations to do repo migrations, and was downloading real migration binaries from the network and running them.  This caused failure, but was not caught because the test was expecting `ipfs daemon --migrate` to fail for other reasons.

This PR fixes the migration tests by creating the appropriate fake migration binaries in the PATH so that those get run and avoid downloading the real ones.  This also fixes a test that was previously marked broken.
2021-04-15 14:47:11 -04:00
Adin Schmahmann
2693565973
Merge pull request #8054 from ipfs/chore/migration-output-stdout
fix: make migrations log output to stdout
2021-04-14 10:57:19 -07:00
Steven Allen
fb4542b9c8
Merge pull request #8069 from ipfs/fix/remove-hardcoded-hostnames
fix(gw): remove hardcoded hostnames
2021-04-13 15:24:00 -07:00
Steven Allen
c744981585 fix(mkreleaselog): partially handle v2 modules
We can now handle v2 modules that use tags, but not v2 modules that use
v2 sub-directories.
2021-04-13 12:45:15 -07:00
Steven Allen
5e3f7fe78b
Merge pull request #8051 from hashbang/master
Fix transposed words in docs/config.md
2021-04-12 09:08:15 -07:00
Steven Allen
c0f1d8fa27
Merge pull request #8052 from ipfs/fix/document-bitswap-cmd
fix: update root help
2021-04-12 09:07:50 -07:00
Marcin Rataj
9f8964e6f9
fix(gw): remove hardcoded hostnames
This closes #7317 by removing hardcoded PL hostnames from default
config, making the localhost the only implicit gateway hostname.
2021-04-12 18:03:44 +02:00
Steven Allen
bcada84f2c
Merge pull request #8055 from ipfs/dont-docker-tag-rc-as-latest
chore: dont docker tag rc as latest
2021-04-12 08:49:54 -07:00
Steven Allen
efe5abd864
Merge pull request #8057 from ipfs/fix/improve-resolve-error
go-namesys v0.1.1
2021-04-12 08:49:02 -07:00
gammazero
79de5ffd32
chore: go-namesys v0.1.1
https://github.com/ipfs/go-namesys/releases/tag/v0.1.1

Closes #8000
2021-04-07 22:39:31 +02:00
Oli Evans
3106e5f911
chore: dont docker tag rc as latest
- add guard for rc releases; publish them to docker hub with the matching git tag
- make the semver regex stricter and only publish as latest when a full semver tag with no pre-release suffix is the name of the git tag.
- add `release` tag as an alias of `latest` as per https://github.com/ipfs/go-ipfs/issues/3999#issuecomment-742228981

Tested manually as the push-docker-tag.sh script is set up for it:
```shell
./push-docker-tags.sh $(date -u +%F) testingsha release v0.9.0-test dry
Nothing to do. No docker tag defined for branch: release, tag: v0.9.0-test

./push-docker-tags.sh $(date -u +%F) testingsha release v0.9.0-rc1 dry
DRY RUN! I would have tagged and pushed the following...
docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:v0.9.0-rc1
docker push ipfs/go-ipfs:v0.9.0-rc1

./push-docker-tags.sh $(date -u +%F) testingsha release v0.9.0 dry
DRY RUN! I would have tagged and pushed the following...
docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:v0.9.0
docker push ipfs/go-ipfs:v0.9.0
DRY RUN! I would have tagged and pushed the following...
docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:latest
docker push ipfs/go-ipfs:latest
DRY RUN! I would have tagged and pushed the following...
docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:release
docker push ipfs/go-ipfs:release
```

fixes #3999

License: MIT
Signed-off-by: Oli Evans <oli@tableflip.io>
2021-04-06 16:39:22 +01:00
gammazero
7c8df87cd0 Make migrations log output to stdout
Migrations were logging to a mix of stdout and stderr.  This was due to the individual migration binaries logging non-error output to stdout, while the migration library (which downloads and executed these migrations) was logging to stderr.  This inconsistency can be confusing.  Also, previous versions of go-ipfs wrote non-error output to stdout. This PR fixes this so that non-error output from the migrations library is written to stdout.

Added test to look for expected log output.
2021-04-05 20:19:09 -07:00
Steven Allen
c4b6366536 fix: update root help
* move the `cid` command to the "datastructures" section.
* document bitswap & pubsub commands

fixes #8047
2021-04-05 16:31:40 -07:00
David Pflug
d6322f485a
Fix transposed words in docs/config.md 2021-04-05 18:01:15 -04:00
Steven Allen
ef866a1400
Merge pull request #8045 from ipfs/dependabot/go_modules/github.com/coreos/go-systemd/v22-22.3.1
build(deps): bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1
2021-04-02 10:11:45 -07:00
Steven Allen
d7109e89d9
Merge pull request #8044 from ipfs/chore/cmd-pin-rm-help
Add info to "pin rm" help about how to tell if pin is indirect
2021-04-02 10:11:19 -07:00
dependabot[bot]
58b840f23c
build(deps): bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1
Bumps [github.com/coreos/go-systemd/v22](https://github.com/coreos/go-systemd) from 22.3.0 to 22.3.1.
- [Release notes](https://github.com/coreos/go-systemd/releases)
- [Commits](https://github.com/coreos/go-systemd/compare/v22.3.0...v22.3.1)

Signed-off-by: dependabot[bot] <support@github.com>
2021-04-02 11:14:30 +00:00
gammazero
8eefcce4a1 Add info to "pin rm" help about how to tell if a pin is indirectly pinned.
Addresses issue #7440
2021-04-01 18:33:18 -07:00
Steven Allen
873b913858
Merge pull request #8020 from ipfs/dependabot/go_modules/contrib.go.opencensus.io/exporter/prometheus-0.3.0
build(deps): bump contrib.go.opencensus.io/exporter/prometheus from 0.2.0 to 0.3.0
2021-04-01 12:10:16 -07:00
Steven Allen
4cdb67f37d
Merge pull request #7890 from ipfs/fix/remove-clear-site-data
fix(gw): remove use of Clear-Site-Data in subdomain router
2021-03-31 16:24:24 -07:00
Steven Allen
f361232fb1
Merge pull request #8038 from ipfs/dependabot/go_modules/github.com/libp2p/go-libp2p-noise-0.1.3
build(deps): bump github.com/libp2p/go-libp2p-noise from 0.1.2 to 0.1.3
2021-03-31 16:23:13 -07:00
Steven Allen
ce617a03e2 fix: set systemd startup timeout to infinity
fixes #7369
fixes #8034
2021-03-31 16:20:46 -07:00
Adin Schmahmann
bb8260abe1 Merge pull request #7857 from ipfs/fix/separate-migrations-bins 2021-03-31 17:05:51 -04:00
gammazero
b75d823950 Update latest distribution CID 2021-03-31 12:25:32 -07:00
dependabot[bot]
418943df4e
build(deps): bump github.com/libp2p/go-libp2p-noise from 0.1.2 to 0.1.3
Bumps [github.com/libp2p/go-libp2p-noise](https://github.com/libp2p/go-libp2p-noise) from 0.1.2 to 0.1.3.
- [Release notes](https://github.com/libp2p/go-libp2p-noise/releases)
- [Commits](https://github.com/libp2p/go-libp2p-noise/compare/v0.1.2...v0.1.3)

Signed-off-by: dependabot[bot] <support@github.com>
2021-03-31 11:28:14 +00:00
Steven Allen
ca53af5adb test(sharness): fix for opencensus updates 2021-03-30 17:07:55 -07:00
dependabot[bot]
52eb25343a build(deps): bump contrib.go.opencensus.io/exporter/prometheus
Bumps [contrib.go.opencensus.io/exporter/prometheus](https://github.com/census-ecosystem/opencensus-go-exporter-prometheus) from 0.2.0 to 0.3.0.
- [Release notes](https://github.com/census-ecosystem/opencensus-go-exporter-prometheus/releases)
- [Commits](https://github.com/census-ecosystem/opencensus-go-exporter-prometheus/compare/v0.2.0...v0.3.0)

Signed-off-by: dependabot[bot] <support@github.com>
2021-03-30 17:07:49 -07:00
Steven Allen
2000384749
Merge pull request #8026 from ipfs/dependabot/go_modules/github.com/ipld/go-car-0.2.2
build(deps): bump github.com/ipld/go-car from 0.2.0 to 0.2.2
2021-03-30 16:56:47 -07:00
dependabot[bot]
ab563dd641
build(deps): bump github.com/ipld/go-car from 0.2.0 to 0.2.2
Bumps [github.com/ipld/go-car](https://github.com/ipld/go-car) from 0.2.0 to 0.2.2.
- [Release notes](https://github.com/ipld/go-car/releases)
- [Commits](https://github.com/ipld/go-car/compare/v0.2.0...v0.2.2)

Signed-off-by: dependabot[bot] <support@github.com>
2021-03-30 23:21:54 +00:00
Steven Allen
f9db31740e
Merge pull request #8035 from RubenKelevra/patch-5
docs: clarification of the Strategic Providing functionality
2021-03-30 16:07:28 -07:00
Steven Allen
04dc6dc9eb
Merge pull request #8019 from ipfs/dependabot/go_modules/github.com/hashicorp/go-multierror-1.1.1
build(deps): bump github.com/hashicorp/go-multierror from 1.1.0 to 1.1.1
2021-03-30 16:06:11 -07:00
Steven Allen
15222d8fe2
Merge pull request #8017 from ipfs/dependabot/go_modules/github.com/ipfs/go-namesys-0.1.0
build(deps): bump github.com/ipfs/go-namesys from 0.0.1 to 0.1.0
2021-03-30 16:05:34 -07:00
Steven Allen
cc54ba1109
Merge pull request #8010 from ipfs/docs/cosmetic-fixes
docs: cosmetic fixes of help text
2021-03-30 15:52:38 -07:00
Steven Allen
0a3f88823c
Merge pull request #7994 from ipfs/chore/deprecate-pathprefixes
chore: deprecate Gateway.PathPrefixes
2021-03-30 15:52:02 -07:00
Marcin Rataj
090953d298
docs: tweak ipfs cmd help
https://github.com/ipfs/go-ipfs/pull/8010#discussion_r600842235
https://github.com/ipfs/go-ipfs/pull/8010#discussion_r600842123
2021-03-30 21:26:32 +02:00
Marcin Rataj
2f105f79b9
chore: deprecate Gateway.PathPrefixes
Context:
https://github.com/ipfs/go-ipfs/issues/7702#issuecomment-803136077
2021-03-30 21:17:41 +02:00
Steven Allen
1ab344d3ce
Merge pull request #8025 from ipfs/dependabot/go_modules/github.com/ipfs/go-ipld-git-0.0.4
build(deps): bump github.com/ipfs/go-ipld-git from 0.0.3 to 0.0.4
2021-03-29 16:17:39 -07:00
Steven Allen
bc2cc9b50d
Merge pull request #8027 from RubenKelevra/patch-3
Fix text contrast for dark mode
2021-03-29 16:16:55 -07:00
Steven Allen
99309df9e1
Merge pull request #7883 from ipfs/chore/pin-ls-all-faster
Do not fetch recursive pins from pinner unnecessarily
2021-03-29 16:04:37 -07:00
gammazero
fb55f09882 Add comment about reading until channel closed 2021-03-29 15:11:38 -07:00
@RubenKelevra
5f0d828e85
docs: clarification of the Strategic Providing functionality
or the lack of
2021-03-29 18:32:02 +02:00
gammazero
2fc1594f51 Use same semver lib that is use elsewhere in go-ipfs 2021-03-26 09:44:13 -07:00
gammazero
fe97eee1c9 Fix typo in log message 2021-03-26 00:48:13 -07:00