Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: libp2p/rust-libp2p
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9bef5dcf24ae19a60d4e61327210de6393acaf2c
Choose a base ref
..
head repository: libp2p/rust-libp2p
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 16b1ee5d118cbe5ebd40f33d12a7f03329a86fbe
Choose a head ref
Showing with 505 additions and 704 deletions.
  1. +1 −1 .github/workflows/ci.yml
  2. +110 −139 Cargo.lock
  3. +1 −1 core/Cargo.toml
  4. +2 −2 examples/autonat/Cargo.toml
  5. +1 −1 examples/browser-webrtc/Cargo.toml
  6. +1 −1 examples/chat/Cargo.toml
  7. +2 −2 examples/dcutr/Cargo.toml
  8. +1 −1 examples/distributed-key-value-store/Cargo.toml
  9. +2 −2 examples/file-sharing/Cargo.toml
  10. +1 −1 examples/identify/Cargo.toml
  11. +2 −2 examples/ipfs-kad/Cargo.toml
  12. +1 −1 examples/ipfs-private/Cargo.toml
  13. +1 −1 examples/metrics/Cargo.toml
  14. +1 −1 examples/ping/Cargo.toml
  15. +2 −2 examples/relay-server/Cargo.toml
  16. +1 −1 examples/rendezvous/Cargo.toml
  17. +1 −1 examples/upnp/Cargo.toml
  18. +2 −2 hole-punching-tests/Cargo.toml
  19. +1 −1 identity/Cargo.toml
  20. +1 −1 interop-tests/Cargo.toml
  21. +8 −8 misc/allow-block-list/src/lib.rs
  22. +1 −1 misc/connection-limits/src/lib.rs
  23. +1 −1 misc/futures-bounded/Cargo.toml
  24. +3 −3 misc/keygen/Cargo.toml
  25. +0 −2 misc/metrics/CHANGELOG.md
  26. +1 −50 misc/metrics/src/swarm.rs
  27. +1 −1 misc/rw-stream-sink/Cargo.toml
  28. +2 −2 misc/server/Cargo.toml
  29. +1 −1 muxers/mplex/Cargo.toml
  30. +1 −1 muxers/test-harness/Cargo.toml
  31. +1 −1 muxers/yamux/Cargo.toml
  32. +1 −1 protocols/autonat/tests/test_client.rs
  33. +2 −2 protocols/dcutr/Cargo.toml
  34. +17 −7 protocols/dcutr/tests/lib.rs
  35. +1 −3 protocols/floodsub/CHANGELOG.md
  36. +1 −2 protocols/floodsub/Cargo.toml
  37. +5 −6 protocols/floodsub/src/layer.rs
  38. +3 −4 protocols/floodsub/src/protocol.rs
  39. +2 −2 protocols/gossipsub/Cargo.toml
  40. +1 −1 protocols/gossipsub/tests/smoke.rs
  41. +0 −7 protocols/identify/CHANGELOG.md
  42. +1 −1 protocols/identify/Cargo.toml
  43. +28 −30 protocols/identify/src/behaviour.rs
  44. +3 −1 protocols/identify/src/handler.rs
  45. +3 −114 protocols/identify/tests/smoke.rs
  46. +1 −1 protocols/kad/CHANGELOG.md
  47. +1 −1 protocols/kad/Cargo.toml
  48. +10 −7 protocols/kad/tests/client_mode.rs
  49. +1 −1 protocols/mdns/Cargo.toml
  50. +2 −2 protocols/perf/Cargo.toml
  51. +1 −1 protocols/perf/tests/lib.rs
  52. +1 −1 protocols/ping/Cargo.toml
  53. +2 −2 protocols/ping/tests/ping.rs
  54. +1 −1 protocols/relay/Cargo.toml
  55. +2 −0 protocols/relay/src/behaviour.rs
  56. +27 −1 protocols/relay/src/behaviour/handler.rs
  57. +18 −2 protocols/relay/src/priv_client.rs
  58. +23 −1 protocols/relay/src/priv_client/handler.rs
  59. +3 −1 protocols/relay/src/protocol/outbound_hop.rs
  60. +4 −0 protocols/relay/src/protocol/outbound_stop.rs
  61. +4 −4 protocols/rendezvous/tests/rendezvous.rs
  62. +1 −1 protocols/request-response/Cargo.toml
  63. +6 −6 protocols/request-response/tests/error_reporting.rs
  64. +3 −3 protocols/request-response/tests/ping.rs
  65. +1 −1 protocols/upnp/Cargo.toml
  66. +3 −3 scripts/ensure-version-bump-and-changelog.sh
  67. +1 −1 swarm-test/Cargo.toml
  68. +50 −98 swarm-test/src/lib.rs
  69. +0 −2 swarm/CHANGELOG.md
  70. +2 −2 swarm/Cargo.toml
  71. +2 −7 swarm/src/behaviour.rs
  72. +94 −120 swarm/src/lib.rs
  73. +1 −1 swarm/tests/connection_close.rs
  74. +1 −1 transports/dns/Cargo.toml
  75. +1 −1 transports/noise/Cargo.toml
  76. +1 −1 transports/plaintext/Cargo.toml
  77. +1 −1 transports/pnet/Cargo.toml
  78. +2 −2 transports/quic/Cargo.toml
  79. +1 −1 transports/tcp/Cargo.toml
  80. +3 −3 transports/tls/Cargo.toml
  81. +1 −1 transports/uds/Cargo.toml
  82. +1 −1 transports/webrtc/Cargo.toml
  83. +1 −1 transports/websocket-websys/Cargo.toml
  84. +2 −2 transports/websocket/Cargo.toml
  85. +1 −1 transports/webtransport-websys/Cargo.toml
  86. +1 −1 wasm-tests/webtransport-tests/Cargo.toml
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -283,7 +283,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: wget -q -O- https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v0.24.2/cargo-semver-checks-x86_64-unknown-linux-gnu.tar.gz | tar -xz -C ~/.cargo/bin
- run: wget -q -O- https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v0.24.0/cargo-semver-checks-x86_64-unknown-linux-gnu.tar.gz | tar -xz -C ~/.cargo/bin
shell: bash
- uses: obi1kenobi/cargo-semver-checks-action@e275dda72e250d4df5b564e969e1348d67fefa52 # v2

Loading