Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Release: v0.19.0 #9741

Merged
merged 28 commits into from
Mar 20, 2023
Merged

Merge Release: v0.19.0 #9741

merged 28 commits into from
Mar 20, 2023

Commits on Mar 6, 2023

  1. chore: update version

    galargh committed Mar 6, 2023
    Configuration menu
    Copy the full SHA
    0f1181d View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2023

  1. fix: typo in documentation for install path

    By default, `go install` will install go $GOBIN and not $GOPATH/bin. In
    most cases there is no functional difference -- `go install` falls
    back to $GOPATH/bin when $GOBIN is empty.
    hawkinsw authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    adcee3e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #9689 from ipfs/no-testground

    ci: remove disabled testground workflow
    galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    c30ab94 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #9699 from ipfs/early-testers

    docs: add bifrost to early testers
    galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    ff01936 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #9696 from ipfs/galargh-patch-2

    fix: t0116-gateway-cache.sh
    galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    8fe7d77 View commit details
    Browse the repository at this point in the history
  5. chore: bump go-libipfs v0.6.1

    This does nothing, just move from an untagged commit to a tagged commit but contain the same things.
    Jorropo authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    d339059 View commit details
    Browse the repository at this point in the history
  6. test: port legacy DHT tests to Go

    guseggert authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    bfa425f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    840eaa7 View commit details
    Browse the repository at this point in the history
  8. feat: add "autoclient" routing type

    This routing type is the same as "auto" but it creates the DHT in
    "client" mode and hence does not start a DHT server.
    guseggert authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    2510f06 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6bab5ce View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d001ed7 View commit details
    Browse the repository at this point in the history
  11. test: use T.TempDir to create temporary test directory

    This commit replaces `os.MkdirTemp` with `t.TempDir` in tests. The
    directory created by `t.TempDir` is automatically removed when the test
    and all its subtests complete.
    
    Prior to this commit, temporary directory created using `os.MkdirTemp`
    needs to be removed manually by calling `os.RemoveAll`, which is omitted
    in some tests. The error handling boilerplate e.g.
    	defer func() {
    		if err := os.RemoveAll(dir); err != nil {
    			t.Fatal(err)
    		}
    	}
    is also tedious, but `t.TempDir` handles this for us nicely.
    
    Reference: https://pkg.go.dev/testing#T.TempDir
    Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
    Juneezee authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    5f76661 View commit details
    Browse the repository at this point in the history
  12. test: port peering test from sharness to Go

    This is the slowest test in the sharness test suite, because it has
    very long sleeps. It usually takes 2+ minutes to run.
    
    This new impl runs all peering tests in about 20 seconds, since it
    polls for conditions instead of sleeping, and runs the tests in
    parallel.
    
    This also has an additional test case for a peer that was never online
    and then connects.
    guseggert authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    b4211be View commit details
    Browse the repository at this point in the history
  13. chore: deprecate the pubsub api

    Fixes #9717
    Jorropo authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    cc5e132 View commit details
    Browse the repository at this point in the history
  14. test: fix flaky rcmgr test

    guseggert authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    c78c988 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    6ff764f View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    3830653 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    af79d84 View commit details
    Browse the repository at this point in the history
  18. chore: bump go-libipfs@v0.6.2

    hacdias authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    3c35a0c View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    010e22b View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    6cdc3c8 View commit details
    Browse the repository at this point in the history
  21. fix: canonicalize user defined headers

    hacdias authored and galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    a22db79 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    7ea6e32 View commit details
    Browse the repository at this point in the history
  23. Merge pull request #9707 from ipfs/changelog-0.19

    docs: 0.19 changelog
    galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    754264f View commit details
    Browse the repository at this point in the history
  24. chore: update version

    galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    8221061 View commit details
    Browse the repository at this point in the history
  25. docs: update changelog

    galargh committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    1386592 View commit details
    Browse the repository at this point in the history
  26. Merge pull request #9697 from ipfs/release-v0.19.0

    Release: v0.19.0
    galargh authored Mar 20, 2023
    Configuration menu
    Copy the full SHA
    1963219 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    eb7d6f9 View commit details
    Browse the repository at this point in the history