Skip to content

Commit

Permalink
update the internal pubsub depencency to v0.10.0 and go1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
cortze committed Mar 20, 2024
1 parent e1a8975 commit 3a9c812
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build:

dependencies:
$(GIT_SUBM) update --init
cd go-libp2p-pubsub && git checkout origin/armiarma && git pull origin armiarma
cd go-libp2p-pubsub && git checkout origin/armiarma-v2 && git pull origin armiarma-v2
cd ../

install:
Expand Down
2 changes: 1 addition & 1 deletion go-libp2p-pubsub
Submodule go-libp2p-pubsub updated 56 files
+1 −1 .circleci/config.yml
+13 −0 .github/workflows/stale.yml
+2 −0 .gitignore
+1 −1 README.md
+107 −0 backoff.go
+122 −0 backoff_test.go
+4 −10 blacklist.go
+1 −1 blacklist_test.go
+48 −26 comm.go
+4 −4 discovery.go
+4 −4 discovery_test.go
+3 −3 floodsub.go
+20 −9 floodsub_test.go
+79 −12 go.mod
+406 −522 go.sum
+2 −2 gossip_tracer.go
+1 −1 gossip_tracer_test.go
+63 −28 gossipsub.go
+15 −11 gossipsub_connmgr_test.go
+1 −1 gossipsub_feat.go
+1 −1 gossipsub_feat_test.go
+3 −3 gossipsub_matchfn_test.go
+4 −4 gossipsub_spam_test.go
+148 −25 gossipsub_test.go
+1 −1 mcache.go
+2 −2 notify.go
+4 −4 peer_gater.go
+1 −1 peer_gater_test.go
+118 −55 pubsub.go
+3 −3 randomsub.go
+1 −1 randomsub_test.go
+16 −9 score.go
+177 −47 score_params.go
+517 −106 score_params_test.go
+1 −1 score_test.go
+2 −2 sign.go
+2 −2 sign_test.go
+1 −1 subscription_filter.go
+1 −1 subscription_filter_test.go
+10 −10 tag_tracer.go
+19 −7 tag_tracer_test.go
+56 −0 timecache/first_seen_cache.go
+46 −0 timecache/first_seen_cache_test.go
+58 −0 timecache/last_seen_cache.go
+92 −0 timecache/last_seen_cache_test.go
+52 −0 timecache/time_cache.go
+35 −0 timecache/util.go
+65 −17 topic.go
+147 −3 topic_test.go
+2 −2 trace.go
+6 −6 trace_test.go
+5 −5 tracer.go
+67 −23 validation.go
+101 −0 validation_builtin.go
+278 −0 validation_builtin_test.go
+1 −1 validation_test.go

0 comments on commit 3a9c812

Please sign in to comment.