Note
This release was brought to you by the Shipyard team.
- Overview
- π¦ Highlights
- π Repository migration from v16 to v17 with embedded tooling
- π¦ Gateway concurrent request limits and retrieval timeouts
- π§ AutoConf: Complete control over network defaults
- ποΈ Clear provide queue when reprovide strategy changes
- πͺ΅ Revamped
ipfs log level
command - π Named pins in
ipfs add
command - π New IPNS publishing options
- π’ Custom sequence numbers in
ipfs name publish
- βοΈ
Reprovider.Strategy
is now consistently respected - βοΈ
Reprovider.Strategy=all
: improved memory efficiency - π§Ή Removed unnecessary dependencies
- π Improved
ipfs cid
- β οΈ Deprecated
ipfs stats reprovide
- π AutoRelay now uses all connected peers for relay discovery
- π Anonymous telemetry for better feature prioritization
- π¦οΈ Important dependency updates
- π Changelog
- π¨βπ©βπ§βπ¦ Contributors
Overview
Kubo 0.37.0 introduces embedded repository migrations, gateway resource protection, complete AutoConf control, improved reprovider strategies, and anonymous telemetry for better feature prioritization. This release significantly improves memory efficiency, network configuration flexibility, and operational reliability while maintaining full backward compatibility.
π¦ Highlights
π Repository migration from v16 to v17 with embedded tooling
This release migrates the Kubo repository from version 16 to version 17. Migrations are now built directly into the binary - completing in milliseconds without internet access or external downloads.
ipfs daemon --migrate
performs migrations automatically. Manual migration: ipfs repo migrate --to=17
(or --to=16 --allow-downgrade
for compatibility). Embedded migrations apply to v17+; older versions still require external tools.
Legacy migration deprecation: Support for legacy migrations that download binaries from the internet will be removed in a future version. Only embedded migrations for the last 3 releases will be supported. Users with very old repositories should update in stages rather than skipping multiple versions.
π¦ Gateway concurrent request limits and retrieval timeouts
New configurable limits protect gateway resources during high load:
Gateway.RetrievalTimeout
(default: 30s): Maximum duration for content retrieval. Returns 504 Gateway Timeout when exceeded - applies to both initial retrieval (time to first byte) and between subsequent writes.Gateway.MaxConcurrentRequests
(default: 4096): Limits concurrent HTTP requests. Returns 429 Too Many Requests when exceeded. Protects nodes from traffic spikes and resource exhaustion, especially useful behind reverse proxies without rate-limiting.
New Prometheus metrics for monitoring:
ipfs_http_gw_concurrent_requests
: Current requests being processedipfs_http_gw_responses_total
: HTTP responses by status codeipfs_http_gw_retrieval_timeouts_total
: Timeouts by status code and truncation status
Tuning tips:
- Monitor metrics to understand gateway behavior and adjust based on observations
- Watch
ipfs_http_gw_concurrent_requests
for saturation - Track
ipfs_http_gw_retrieval_timeouts_total
vs success rates to identify timeout patterns indicating routing or storage provider issues
π§ AutoConf: Complete control over network defaults
Configuration fields now support ["auto"]
placeholders that resolve to network defaults from AutoConf.URL
. These defaults can be inspected, replaced with custom values, or disabled entirely. Previously, empty configuration fields like Routing.DelegatedRouters: []
would use hardcoded defaults - this system makes those defaults explicit through "auto"
values. When upgrading to Kubo 0.37, custom configurations remain unchanged.
New --expand-auto
flag shows resolved values for any config field:
ipfs config show --expand-auto # View all resolved endpoints
ipfs config Bootstrap --expand-auto # Check specific values
ipfs config Routing.DelegatedRouters --expand-auto
ipfs config DNS.Resolvers --expand-auto
Configuration can be managed via:
- Replace
"auto"
with custom endpoints or set[]
to disable features - Switch modes with
--profile=autoconf-on|autoconf-off
- Configure via
AutoConf.Enabled
and custom manifests viaAutoConf.URL
# Enable automatic configuration
ipfs config profiles apply autoconf-on
# Or manually set specific fields
ipfs config Bootstrap '["auto"]'
ipfs config --json DNS.Resolvers '{".": ["https://dns.example.com/dns-query"], "eth.": ["auto"]}'
Organizations can host custom AutoConf manifests for private networks. See AutoConf documentation and format spec at https://conf.ipfs-mainnet.org/
ποΈ Clear provide queue when reprovide strategy changes
Changing Reprovider.Strategy
and restarting Kubo now automatically clears the provide queue. Only content matching the new strategy will be announced.
Manual queue clearing is also available:
ipfs provide clear
- clear all queued content announcements
Note
Upgrading to Kubo 0.37 will automatically clear any preexisting provide queue. The next time Reprovider.Interval
hits, Reprovider.Strategy
will be executed on a clean slate, ensuring consistent behavior with your current configuration.
πͺ΅ Revamped ipfs log level
command
The ipfs log level
command has been completely revamped to support both getting and setting log levels with a unified interface.
New: Getting log levels
ipfs log level
- Shows default level onlyipfs log level all
- Shows log level for every subsystem, including default levelipfs log level foo
- Shows log level for a specific subsystem only- Kubo RPC API:
POST /api/v0/log/level?arg=<subsystem>
Enhanced: Setting log levels
ipfs log level foo debug
- Sets "foo" subsystem to "debug" levelipfs log level all info
- Sets all subsystems to "info" level (convenient, no escaping)ipfs log level '*' info
- Equivalent to above but requires shell escapingipfs log level foo default
- Sets "foo" subsystem to current default level
The command now provides full visibility into your current logging configuration while maintaining full backward compatibility. Both all
and *
work for specifying all subsystems, with all
being more convenient since it doesn't require shell escaping.
π§· Named pins in ipfs add
command
Added --pin-name
flag to ipfs add
for assigning names to pins.
$ ipfs add --pin-name=testname cat.jpg
added bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi cat.jpg
$ ipfs pin ls --names
bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi recursive testname
π New IPNS publishing options
Added support for controlling IPNS record publishing strategies with new command flags and configuration.
New command flags:
# Publish without network connectivity (local datastore only)
ipfs name publish --allow-offline /ipfs/QmHash
# Publish without DHT connectivity (uses local datastore and HTTP delegated publishers)
ipfs name publish --allow-delegated /ipfs/QmHash
Delegated publishers configuration:
Ipns.DelegatedPublishers
configures HTTP endpoints for IPNS publishing. Supports "auto"
for network defaults or custom HTTP endpoints. The --allow-delegated
flag enables publishing through these endpoints without requiring DHT connectivity, useful for nodes behind restrictive networks or during testing.
π’ Custom sequence numbers in ipfs name publish
Added --sequence
flag to ipfs name publish
for setting custom sequence numbers in IPNS records. This enables advanced use cases like manually coordinating updates across multiple nodes. See ipfs name publish --help
for details.
βοΈ Reprovider.Strategy
is now consistently respected
Prior to this version, files added, blocks received etc. were "provided" to the network (announced on the DHT) regardless of the "reproviding strategy" setting. For example:
- Strategy set to "pinned" +
ipfs add --pin=false
β file was provided regardless - Strategy set to "roots" +
ipfs pin add
β all blocks (not only the root) were provided
Only the periodic "reproviding" action (runs every 22h by default) respected the strategy.
This was inefficient as content that should not be provided was getting provided once. Now all operations respect Reprovider.Strategy
. If set to "roots", no blocks other than pin roots will be provided regardless of what is fetched, added etc.
Note
Behavior change: The --offline
flag no longer affects providing behavior. Both ipfs add
and ipfs --offline add
now provide blocks according to the reproviding strategy when run against an online daemon (previously --offline add
did not provide). Since ipfs add
has been nearly as fast as offline mode since v0.35, --offline
is rarely needed. To run truly offline operations, use ipfs --offline daemon
.
βοΈ Reprovider.Strategy=all
: improved memory efficiency
The memory cost of Reprovider.Strategy=all
no longer grows with the number of pins. The strategy now processes blocks directly from the datastore in undefined order, eliminating the memory pressure tied to the number of pins.
As part of this improvement, the flat
reprovider strategy has been renamed to all
(the default). This cleanup removes the workaround introduced in v0.28 for pin root prioritization. With the introduction of more granular strategies like pinned+mfs
, we can now optimize the default all
strategy for lower memory usage without compromising users who need pin root prioritization (rationale).
Note
Migration guidance: If you experience undesired announcement delays of root CIDs with the new all
strategy, switch to pinned+mfs
for root prioritization.
π§Ή Removed unnecessary dependencies
Kubo has been cleaned up by removing unnecessary dependencies and packages:
- Removed
thirdparty/assert
(replaced bygithub.com/stretchr/testify/require
) - Removed
thirdparty/dir
(replaced bymisc/fsutil
) - Removed
thirdparty/notifier
(unused) - Removed
goprocess
dependency (replaced with native Gocontext
patterns)
These changes reduce the dependency footprint while improving code maintainability and following Go best practices.
π Improved ipfs cid
Certain ipfs cid
commands can now be run without a daemon or repository, and return correct exit code 1 on error, making it easier to perform CID conversion in scripts and CI/CD pipelines.
While at it, we also fixed unicode support in ipfs cid bases --prefix
to correctly show base256emoji
π :-)
β οΈ Deprecated ipfs stats reprovide
The ipfs stats reprovide
command has moved to ipfs provide stat
. This was done to organize provider commands in one location.
Note
ipfs stats reprovide
still works, but is marked as deprecated and will be removed in a future release.
π AutoRelay now uses all connected peers for relay discovery
AutoRelay's relay discovery now includes all connected peers as potential relay candidates, not just peers discovered through the DHT. This allows peers connected via HTTP routing and manual ipfs swarm connect
commands to serve as relays, improving connectivity for nodes using non-DHT routing configurations.
π Anonymous telemetry for better feature prioritization
Per a suggestion from the IPFS Foundation, Kubo now sends optional anonymized telemetry information to Shipyard maintainers.
Privacy first: The telemetry system collects only anonymous data - no personally identifiable information, file paths, or content data. A random UUID is generated on first run for anonymous identification. Users are notified before any data is sent and have time to opt-out.
Why: We want to better understand Kubo usage across the ecosystem so we can better direct funding and work efforts. For example, we have little insights into how many nodes are NAT'ed and rely on AutoNAT for reachability. Some of the information can be inferred by crawling the network or logging /identify
details in the bootstrappers, but users have no way of opting out from that, so we believe it is more transparent to concentrate this functionality in one place.
What: Currently, we send the following anonymous metrics:
Click to see telemetry metrics example
"uuid": "<unique_uuid>",
"agent_version": "kubo/0.37.0-dev",
"private_network": false,
"bootstrappers_custom": false,
"repo_size_bucket": 1073741824,
"uptime_bucket": 86400000000000,
"reprovider_strategy": "pinned",
"routing_type": "auto",
"routing_accelerated_dht_client": false,
"routing_delegated_count": 0,
"autonat_service_mode": "enabled",
"autonat_reachability": "",
"autoconf": true,
"autoconf_custom": false,
"swarm_enable_hole_punching": true,
"swarm_circuit_addresses": false,
"swarm_ipv4_public_addresses": true,
"swarm_ipv6_public_addresses": true,
"auto_tls_auto_wss": true,
"auto_tls_domain_suffix_custom": false,
"discovery_mdns_enabled": true,
"platform_os": "linux",
"platform_arch": "amd64",
"platform_containerized": false,
"platform_vm": false
The exact data sent for your node can be inspected by setting GOLOG_LOG_LEVEL="telemetry=debug"
. Users will see an informative message the first time they launch a telemetry-enabled daemon, with time to opt-out before any data is collected. Telemetry data is sent every 24h, with the first collection starting 15 minutes after daemon launch.
User control: You can opt-out at any time:
- Set environment variable
IPFS_TELEMETRY=off
before starting the daemon - Or run
ipfs config Plugins.Plugins.telemetry.Config.Mode off
and restart the daemon
The telemetry plugin code lives in plugin/plugins/telemetry
.
Learn more: /kubo/docs/telemetry.md
π¦οΈ Important dependency updates
- update
boxo
to v0.34.0 (incl. v0.33.1) - update
go-libp2p
to v0.43.0 - update
go-libp2p-kad-dht
to v0.34.0 - update
go-libp2p-pubsub
to v0.14.2 (incl. v0.14.1, v0.14.0) - update
ipfs-webui
to v4.8.0 - update to Go 1.25
π Changelog
Full Changelog
- github.com/ipfs/kubo:
- chore: set version to v0.37.0
- feat(ci): docker linting (#10927) (ipfs/kubo#10927)
- fix: disable telemetry in test profile (#10931) (ipfs/kubo#10931)
- fix: harness tests random panic (#10933) (ipfs/kubo#10933)
- chore: v0.37.0-rc1
- feat: Reprovider.Strategy: rename "flat" to "all" (#10928) (ipfs/kubo#10928)
- docs: improve
ipfs add --help
(#10926) (ipfs/kubo#10926) - feat: optimize docker builds (#10925) (ipfs/kubo#10925)
- feat(config): AutoConf with "auto" placeholders (#10883) (ipfs/kubo#10883)
- fix(ci): make NewRandPort thread-safe (#10921) (ipfs/kubo#10921)
- fix: resolve TestAddMultipleGCLive race condition (#10916) (ipfs/kubo#10916)
- feat: telemetry plugin (#10866) (ipfs/kubo#10866)
- fix typos in docs and comments (#10920) (ipfs/kubo#10920)
- Upgrade to Boxo v0.34.0 (#10917) (ipfs/kubo#10917)
- test: fix flaky repo verify (#10743) (ipfs/kubo#10743)
- feat(config):
Gateway.RetrievalTimeout|MaxConcurrentRequests
(#10905) (ipfs/kubo#10905) - chore: replace random test utils with equivalents in go-test/random (#10915) (ipfs/kubo#10915)
- feat: require go1.25 for building kubo (#10913) (ipfs/kubo#10913)
- feat(ci): reusable spellcheck from unified CI (#10873) (ipfs/kubo#10873)
- fix(ci): docker build (#10914) (ipfs/kubo#10914)
- Replace
uber-go/multierr
witherrors.Join
(#10912) (ipfs/kubo#10912) - feat(ipns): support passing custom sequence number during publishing (#10851) (ipfs/kubo#10851)
- fix(relay): feed connected peers to AutoRelay discovery (#10901) (ipfs/kubo#10901)
- fix(sharness): no blocking on unclean FUSE unmount (#10906) (ipfs/kubo#10906)
- feat: add query functionality to log level command (#10885) (ipfs/kubo#10885)
- fix(ci): switch to debian:bookworm-slim
- Fix failing FUSE test (#10904) (ipfs/kubo#10904)
- fix(cmd): exit 1 on error (#10903) (ipfs/kubo#10903)
- feat: go-libp2p v0.43.0 (#10892) (ipfs/kubo#10892)
- fix:
ipfs cid
without repo (#10897) (ipfs/kubo#10897) - client/rpc: re-enable tests on windows. (#10895) (ipfs/kubo#10895)
- fix: Provide according to Reprovider.Strategy (#10886) (ipfs/kubo#10886)
- feat: ipfs-webui v4.8.0 (#10902) (ipfs/kubo#10902)
- refactor: move
ipfs stat provide/reprovide
toipfs provide stat
(#10896) (ipfs/kubo#10896) - Bitswap: use a single ConnectEventManager. (ipfs/kubo#10889)
- feat(add): add support for naming pinned CIDs (#10877) (ipfs/kubo#10877)
- refactor: remove goprocess (#10872) (ipfs/kubo#10872)
- feat(daemon): accelerated client startup note (#10859) (ipfs/kubo#10859)
- docs:added GOLOG_LOG_LEVEL to debug-guide for logging more info (#10894) (ipfs/kubo#10894)
- core: Add a ContentDiscovery field (ipfs/kubo#10890)
- chore: update go-libp2p and p2p-forge (#10887) (ipfs/kubo#10887)
- Upgrade to Boxo v0.33.1 (#10888) (ipfs/kubo#10888)
- remove unneeded thirdparty packages (#10871) (ipfs/kubo#10871)
- provider: clear provide queue when reprovide strategy changes (#10863) (ipfs/kubo#10863)
- chore: merge release v0.36.0 (ipfs/kubo#10868)
- docs: release checklist fixes from 0.36 (#10861) (ipfs/kubo#10861)
- docs(config): add network exposure considerations (#10856) (ipfs/kubo#10856)
- fix: handling of EDITOR env var (#10855) (ipfs/kubo#10855)
- refactor: use slices.Sort where appropriate (#10858) (ipfs/kubo#10858)
- Upgrade to Boxo v0.33.0 (#10857) (ipfs/kubo#10857)
- chore: Upgrade github.com/cockroachdb/pebble/v2 to v2.0.6 for Go 1.25 support (#10850) (ipfs/kubo#10850)
- core:constructor: add a log line about http retrieval (ipfs/kubo#10852)
- chore: p2p-forge v0.6.0 + go-libp2p 0.42.0 (#10840) (ipfs/kubo#10840)
- docs: fix minor typos (#10849) (ipfs/kubo#10849)
- Replace use of go-car v1 with go-car/v2 (#10845) (ipfs/kubo#10845)
- chore: 0.37.0-dev
- github.com/ipfs/boxo (v0.33.0 -> v0.34.0):
- Release v0.34.0 (ipfs/boxo#1003)
- blockstore: remove HashOnRead (ipfs/boxo#1001)
- Update go-log to v2.8.1 (ipfs/boxo#998)
- feat: autoconf client library (#997) (ipfs/boxo#997)
- feat(gateway): concurrency and retrieval timeout limits (#994) (ipfs/boxo#994)
- update dependencies (ipfs/boxo#999)
- fix: cidqueue gc must iterate all elements in queue (ipfs/boxo#1000)
- Replace
uber-go/multierr
witherrors.Join
(ipfs/boxo#996) - feat(namesys/IPNSPublisher): expose ability to set Sequence (#962) (ipfs/boxo#962)
- upgrade to go-libp2p v0.43.0 (ipfs/boxo#993)
- Remove providing Exchange. Call Provide() from relevant places. (ipfs/boxo#976)
- reprovider: s/initial/initial (ipfs/boxo#992)
- Release v0.33.1 (ipfs/boxo#991)
- fix(bootstrap): filter-out peers behind relays (#987) (ipfs/boxo#987)
- Bitswap: fix double-worker in connectEventManager. Logging improvements. (ipfs/boxo#986)
- upgrade to go-libp2p v0.42.1 (#988) (ipfs/boxo#988)
- bitswap/httpnet: fix sudden stop of http retrieval requests (#984) (ipfs/boxo#984)
- bitswap/client: disable use of traceability block by default (#956) (ipfs/boxo#956)
- test(gateway): fix race in TestCarBackendTar (#985) (ipfs/boxo#985)
- Shutdown the sessionWantSender changes queue when session is shutdown (#983) (ipfs/boxo#983)
- bitswap/httpnet: start pinging before signaling Connected (ipfs/boxo#982)
- Queue all changes in order using non-blocking async queue (ipfs/boxo#981)
- bitswap/httpnet: fix peers silently stopping from doing http requests (ipfs/boxo#980)
- provider: clear provide queue (#978) (ipfs/boxo#978)
- update dependencies (ipfs/boxo#977)
- github.com/ipfs/go-datastore (v0.8.2 -> v0.8.3):
- new version (#245) (ipfs/go-datastore#245)
- sort using slices.Sort (#243) (ipfs/go-datastore#243)
- Replace
uber-go/multierr
witherrors.Join
(#242) (ipfs/go-datastore#242) - replace gopkg.in/check.v1 with github.com/stretchr/testify (#241) (ipfs/go-datastore#241)
- github.com/ipfs/go-ipld-cbor (v0.2.0 -> v0.2.1):
- new version (ipfs/go-ipld-cbor#111)
- update dependencies (ipfs/go-ipld-cbor#110)
- github.com/ipfs/go-log/v2 (v2.6.0 -> v2.8.1):
- new version (#171) (ipfs/go-log#171)
- feat: add LevelEnabled function to check if log level enabled (#170) (ipfs/go-log#170)
- Replace
uber-go/multierr
witherrors.Join
(#168) (ipfs/go-log#168) - new version (#167) (ipfs/go-log#167)
- Test using testify package (#166) (ipfs/go-log#166)
- Revise the loglevel API to be more golang idiomatic (#165) (ipfs/go-log#165)
- new version (#164) (ipfs/go-log#164)
- feat: add GetLogLevel and GetAllLogLevels (#160) (ipfs/go-log#160)
- github.com/ipfs/go-test (v0.2.2 -> v0.2.3):
- new version (#30) (ipfs/go-test#30)
- fix: multihash random generation (#28) (ipfs/go-test#28)
- Add RandomName function to generate random filename (#26) (ipfs/go-test#26)
- github.com/libp2p/go-libp2p (v0.42.0 -> v0.43.0):
- Release v0.43 (#3353) (libp2p/go-libp2p#3353)
- basichost: fix deadlock with addrs_manager (#3348) (libp2p/go-libp2p#3348)
- basichost: fix Addrs docstring (#3341) (libp2p/go-libp2p#3341)
- quic: upgrade quic-go to v0.53 (#3323) (libp2p/go-libp2p#3323)
- github.com/libp2p/go-libp2p-kad-dht (v0.33.1 -> v0.34.0):
- chore: release v0.34.0 (#1130) (libp2p/go-libp2p-kad-dht#1130)
- make crawler protocol messenger configurable (#1128) (libp2p/go-libp2p-kad-dht#1128)
- fix: move non-error log to warning level (#1119) (libp2p/go-libp2p-kad-dht#1119)
- migrate providers package (#1094) (libp2p/go-libp2p-kad-dht#1094)
- github.com/libp2p/go-libp2p-pubsub (v0.13.1 -> v0.14.2):
- Release v0.14.2 (#629) (libp2p/go-libp2p-pubsub#629)
- Fix test races and enable race tests in CI (#626) (libp2p/go-libp2p-pubsub#626)
- Fix race when calling Preprocess and msg ID generator(#627) (libp2p/go-libp2p-pubsub#627)
- Release v0.14.1 (#623) (libp2p/go-libp2p-pubsub#623)
- fix(BatchPublishing): Make topic.AddToBatch threadsafe (#622) (libp2p/go-libp2p-pubsub#622)
- Release v0.14.0 (#614) (libp2p/go-libp2p-pubsub#614)
- refactor: 10x faster RPC splitting (#615) (libp2p/go-libp2p-pubsub#615)
- test: Fix flaky TestMessageBatchPublish (#616) (libp2p/go-libp2p-pubsub#616)
- Send IDONTWANT before first publish (#612) (libp2p/go-libp2p-pubsub#612)
- feat(gossipsub): Add MessageBatch (#607) (libp2p/go-libp2p-pubsub#607)
- fix(IDONTWANT)!: Do not IDONTWANT your sender (#609) (libp2p/go-libp2p-pubsub#609)
- github.com/multiformats/go-multiaddr (v0.16.0 -> v0.16.1):
- Release v0.16.1 (#281) (multiformats/go-multiaddr#281)
- reduce allocations in Bytes() and manet methods (#280) (multiformats/go-multiaddr#280)
- github.com/whyrusleeping/cbor-gen (v0.1.2 -> v0.3.1):
- fix: capture field count early for "optional" length check (#112) (whyrusleeping/cbor-gen#112)
- doc: basic cbor-gen documentation (#110) (whyrusleeping/cbor-gen#110)
- feat: add support for optional fields at the end of tuple structs (#109) (whyrusleeping/cbor-gen#109)
- Regenerate test files (whyrusleeping/cbor-gen#107)
- improve allocations in map serialization (whyrusleeping/cbor-gen#105)
- fixed array in struct instead of heap slice (whyrusleeping/cbor-gen#104)
- optionally sort type names in generated code file (whyrusleeping/cbor-gen#102)
- fix handling of an []*string field (whyrusleeping/cbor-gen#101)
- fix: reject negative big integers (whyrusleeping/cbor-gen#100)
π¨βπ©βπ§βπ¦ Contributors
Contributor | Commits | Lines Β± | Files Changed |
---|---|---|---|
Marcin Rataj | 26 | +16033/-755 | 176 |
Andrew Gillis | 35 | +2656/-1911 | 142 |
Hector Sanjuan | 30 | +2638/-760 | 114 |
Marco Munizaga | 11 | +1244/-362 | 41 |
Russell Dempsey | 2 | +1031/-33 | 7 |
Guillaume Michel | 4 | +899/-65 | 15 |
whyrusleeping | 4 | +448/-177 | 15 |
sukun | 9 | +312/-191 | 31 |
gammazero | 23 | +239/-216 | 45 |
Brian Olson | 5 | +343/-16 | 11 |
Steven Allen | 3 | +294/-7 | 9 |
Sergey Gorbunov | 2 | +247/-11 | 9 |
Kapil Sareen | 1 | +86/-13 | 10 |
Masih H. Derkani | 1 | +72/-24 | 1 |
Piotr Galar | 1 | +40/-55 | 23 |
Rod Vagg | 1 | +13/-11 | 3 |
Ankita Sahu | 1 | +2/-0 | 1 |
Ε tefan Baebler | 1 | +1/-0 | 1 |