Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
183061b
Quic secure transport implementation (#407)
ianopolous Apr 11, 2025
e7ae1b6
Follow up to #407: refactor NettyTransport (#408)
Nashatyrev Apr 14, 2025
cae1036
ci: uci/copy-templates (#410)
web3-bot May 1, 2025
8b62e1f
Add QUIC os-specific bindings as implementation (#411)
StefanBratanov May 28, 2025
e4c25d5
Add interop test support (#421)
lucassaldanha Aug 26, 2025
3d4b05f
[QUIC] Set muxer session and secure session on connection (#413)
tbenr Aug 27, 2025
33ffc1a
Use netty core instead of incubator artifact for QUIC (#412)
StefanBratanov Aug 28, 2025
25dd797
Apply InboundTrafficLimitHandler only if max bytes > 0 (#416)
westernbear Aug 28, 2025
63d74d0
Apply TotalTimeoutHandler only if duration seconds > 0 (#415)
westernbear Aug 29, 2025
1419d27
docs: add build path to README (#419)
operagxsasha Aug 29, 2025
8aa477d
Move QUIC implementation to prototype 🍋 (#423)
StefanBratanov Sep 12, 2025
8104b86
Add quic to interop client (#425)
lucassaldanha Sep 16, 2025
a0123a6
Fix default redis param and simplifying compose test file (#427)
lucassaldanha Sep 18, 2025
bd921ba
Fix quic-v1 config (#428)
lucassaldanha Sep 18, 2025
09b67d7
Add websocket to interop client (#429)
StefanBratanov Sep 19, 2025
737456d
Switch base image from OpenJDK to Eclipse Temurin
dhuseby Nov 5, 2025
c2554a6
Updated rpc protobuf definition for partial messages (#434)
lucassaldanha Jan 27, 2026
eff9dd4
Add support for Extension Control Messages (gossipsub v1.3) 1/2 (#438)
lucassaldanha Feb 12, 2026
1ba3fc4
Sending control extension message to remote peers (#442)
lucassaldanha Feb 17, 2026
00e7419
Gossip Extensions feature flag (#443)
lucassaldanha Feb 19, 2026
77f7625
Added peer penalties logic when sending multiple ControlExtensions me…
lucassaldanha Feb 25, 2026
9445f0d
Fix ConnectionClosedException propagating to Netty event loop from Mu…
lucassaldanha Apr 20, 2026
a88d1ed
Update dependencies (#459)
lucassaldanha Apr 23, 2026
b7d8361
Add partial-messages extension design document (#457)
lucassaldanha Apr 26, 2026
1af87c7
Fixed mainClassname. (#453)
murdak Apr 27, 2026
de6d0ec
Update .gitignore to include .worktrees (#462)
lucassaldanha Apr 27, 2026
772b2b0
Skip CI for documentation-only changes (#464)
lucassaldanha Apr 27, 2026
ddbf62a
Filter backoff peers in subscribe() and make v1.3 honour backoff/IDON…
lucassaldanha Apr 29, 2026
c34cc11
Add PubsubRpcLimits decoding count-cap to reduce memory footprint (#477)
lucassaldanha May 19, 2026
45caa8d
Merge remote-tracking branch 'upstream/master' into 1.3.0
StefanBratanov May 20, 2026
2da63e4
1.3.0 release
StefanBratanov May 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
name: build
on: [push, pull_request]
on:
push:
paths-ignore:
- '**/*.md'
- 'docs/**'
- '.gitignore'
- 'LICENSE-APACHE'
- 'LICENSE-MIT'
- 'funding.json'
- '.github/ISSUE_TEMPLATE/**'
pull_request:
paths-ignore:
- '**/*.md'
- 'docs/**'
- '.gitignore'
- 'LICENSE-APACHE'
- 'LICENSE-MIT'
- 'funding.json'
- '.github/ISSUE_TEMPLATE/**'
jobs:
gradle:
strategy:
Expand All @@ -12,12 +30,16 @@ jobs:
with:
distribution: temurin
java-version: 11
- name: Install and run ipfs
run: ./install-run-ipfs.sh

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Setup Android SDK
uses: android-actions/setup-android@v2
uses: android-actions/setup-android@v3
with:
cmdline-tools-version: 8512546

- name: Execute Gradle build
run: ./gradlew -s build dokkaJar
14 changes: 14 additions & 0 deletions .github/workflows/generated-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Close Generated PRs

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

permissions:
issues: write
pull-requests: write

jobs:
stale:
uses: ipdxco/unified-github-workflows/.github/workflows/reusable-generated-pr.yml@v1
8 changes: 8 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ on:
push:
branches:
- "develop"
paths-ignore:
- '**/*.md'
- 'docs/**'
- '.gitignore'
- 'LICENSE-APACHE'
- 'LICENSE-MIT'
- 'funding.json'
- '.github/ISSUE_TEMPLATE/**'
jobs:
publish:
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: Close and mark stale issue
name: Close Stale Issues

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

permissions:
issues: write
pull-requests: write

jobs:
stale:
uses: pl-strflt/.github/.github/workflows/reusable-stale-issue.yml@v0.3
uses: ipdxco/unified-github-workflows/.github/workflows/reusable-stale-issue.yml@v1
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -190,3 +190,11 @@ $RECYCLE.BIN/
node_modules
package-lock.json
/src/jmh/java/generated/

#Jenv
.java-version

# Claude
CLAUDE.local.md
.claude/settings.local.json
.worktrees/
Loading
Loading