Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a31e19d
refactor: remove Http3StreamType
st0o0 Apr 21, 2026
2d96940
refactor: remove ReconnectItem record from Messages.cs
st0o0 Apr 21, 2026
1a15aaf
refactor: remove auto-connect from transport layer
st0o0 Apr 22, 2026
2973db7
refactor: prepare transport layer for separation
st0o0 Apr 22, 2026
6b6d5a9
refactor: draft transport layer separation
st0o0 Apr 23, 2026
a0fb026
test: move tests to match transport layer structure
st0o0 Apr 23, 2026
44c4f42
feat: add ServusTrace integration
st0o0 Apr 23, 2026
ffb7c1b
chore: apply code formatting
st0o0 Apr 23, 2026
6036386
docs: update Obsidian notes
st0o0 Apr 23, 2026
e93aac6
test: add additional transport layer tests
st0o0 Apr 25, 2026
a164382
refactor: minor transport layer improvements
st0o0 Apr 25, 2026
53c5868
refactor: replace transport IO with System.IO.Pipelines
st0o0 Apr 26, 2026
c7610f7
perf: enhance HTTP/2 and HTTP/3 transport performance and streaming
st0o0 Apr 26, 2026
5ff3d8a
chore: clean up transport layer code
st0o0 Apr 27, 2026
2c45e57
test: add HTTP/3 benchmark
st0o0 Apr 27, 2026
5a2c3f5
test: add more request test cases
st0o0 Apr 27, 2026
06e2234
refactor: improve QUIC transport implementation
st0o0 Apr 28, 2026
d90f9ba
fix: minor fixes
st0o0 Apr 28, 2026
9f19e4c
test: add transport layer specs
st0o0 Apr 29, 2026
e612a90
feat: add TCP transport implementation
st0o0 Apr 29, 2026
223a0f2
feat: add QUIC transport implementation
st0o0 Apr 29, 2026
e693158
test: add transport tests
st0o0 Apr 29, 2026
7f23fd4
refactor: transport separation phase 1-2
st0o0 Apr 29, 2026
df0dd0e
refactor: transport separation phase 3-4
st0o0 Apr 29, 2026
5d70b79
fix: minor transport fix
st0o0 Apr 29, 2026
f6c8a6c
refactor: remove obsolete transport code
st0o0 Apr 29, 2026
cd1c4dd
refactor: restructure HTTP/3 and QUIC layers
st0o0 Apr 30, 2026
c95b6d4
test: add more HTTP/3 and QUIC tests
st0o0 Apr 30, 2026
3eafe72
test: remove helper from specs
st0o0 Apr 30, 2026
582c44f
feat: add Servus.Akka.TestKit dependency
st0o0 May 1, 2026
23feffc
feat: add Servus.Akka.Transport listener
st0o0 May 1, 2026
b8b7dbe
refactor: create Client namespace
st0o0 May 1, 2026
0cd4931
build: update Servus.Core dependency
st0o0 May 1, 2026
4427d10
fix: minor fixes
st0o0 May 2, 2026
851a4c1
test: increase test timeout
st0o0 May 2, 2026
2a14b82
chore: clean up
st0o0 May 4, 2026
e9fc62f
build: update Akka and pin dependencies
st0o0 May 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
24 changes: 16 additions & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# Auto detect text files and perform LF normalization
* text=auto

# Binary files - prevent diff/merge attempts
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.bmp binary
*.pdf binary
# Images — always stored in LFS, compared as binary
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.gif filter=lfs diff=lfs merge=lfs -text
*.bmp filter=lfs diff=lfs merge=lfs -text
*.webp filter=lfs diff=lfs merge=lfs -text
*.tiff filter=lfs diff=lfs merge=lfs -text
*.tif filter=lfs diff=lfs merge=lfs -text
*.svg filter=lfs diff=lfs merge=lfs -text

# Other binary assets — LFS + no text diff
*.ico filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
10 changes: 4 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,10 @@ jobs:
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
config: |
paths-ignore:
- docs
- notes


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
Expand Down
481 changes: 0 additions & 481 deletions .maggus/features/feature_001_completed.md

This file was deleted.

163 changes: 0 additions & 163 deletions .maggus/features/feature_002_completed.md

This file was deleted.

Loading