ipfs / go-ipfs-http-client

[archived] Legacy Kubo RPC client, use kubo/client/rpc instead.
MIT License
109 stars 41 forks source link

build(deps): bump github.com/libp2p/go-libp2p-core from 0.5.1 to 0.6.1 #118

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps github.com/libp2p/go-libp2p-core from 0.5.1 to 0.6.1.

Release notes

Sourced from github.com/libp2p/go-libp2p-core's releases.

v0.6.1

dependency upgrades.

v0.6.0

This release adds EXPERIMENTAL introspection support. See libp2p/go-libp2p#947 for more info.

  • New introspection package encapsulating all introspection abstractions.
    • Introspector: to be satisfied by components that are capable of spelunking the state of the system, and representing in accordance with the introspection schema.
    • IntrospectionEndpoint: interface to be implemented by introspection endpoints. An introspection endpoint makes introspection data accessible to external consumers, over, for example, WebSockets, or TCP, or libp2p itself.
  • New host.IntrospectableHost interface to be implemented by introspectable hosts.
  • Protobuf introspection schema under introspection/pb.
  • ID() string methods in network.Conn and network.Stream.
  • Opened field in network.Stat to track the opening timestamp of connections and streams.

v0.5.7

  • Extends the ConnectionManager interface to support querying for protected peers; see #158.
  • Adds a generic DHT event; see #154.
  • Adds wildcard subscriptions for events and an accessor to enumerate known types; see #153.

v0.5.6

  • Decaying tags: added the capability to explicitly Remove() a decaying tag from a peer, and to Close(), stop tracking and clear a decaying tag for all peers.

v0.5.5

Highlights

📉 Decaying tags in the Connection Manager

This release introduces Decaying Tags in the Connection Manager interfaces. A decaying tag is one whose value automatically decays over time.

The actual application of the decay behaviour is encapsulated in a user-provided decaying function (DecayFn). The function is called on every tick (determined by the tag's Interval property), and returns either the new value of the tag, or whether it should be erased altogether.

We do not set values directly on a decaying tag. Rather, we "bump" decaying tags by a delta. Doing so calls the BumpFn with the old value and the delta, to determine the new value.

Such a pluggable design affords a great deal of flexibility and versatility. Behaviours that are straightforward to implement include:

  • Decay a tag by -1, or by half its current value, on every tick.
  • Every time a value is bumped, sum it to its current value.
  • Exponentially boost a score with every bump.
  • Sum the incoming score, but keep it within min, max bounds.

To use Decaying Tags, check if the Connection Manager supports them first via the SupportsDecay function.

Check the godocs in the connmgr package for more info.

Minor changes

  • Stringer functions for network package enums.

v0.5.4

Highlights

Commits
  • 98f9714 upgrade deps. (#161)
  • 9cf214f go mod tidy.
  • 21efed7 experimental introspection support (#159)
  • 0d53a55 connmgr: add IsProtected interface (#158)
  • 2647886 eventbus: add wildcard subscription type; getter to enumerate known types (#153)
  • 30bf48c events: add a generic DHT event. (#154)
  • acf0d3d build(deps): bump github.com/multiformats/go-multiaddr from 0.2.1 to 0.2.2 (#...
  • a1c90aa decaying tags: support removal and closure. (#151)
  • e74305c minor godoc fixes.
  • 65c8515 minor godoc fixes.
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
dependabot-preview[bot] commented 4 years ago

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

dependabot-preview[bot] commented 4 years ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.