-
Notifications
You must be signed in to change notification settings - Fork 192
Handle WSS shutdown and UDP buffer sizing #108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0877143
Handle WSS shutdown and UDP buffer sizing
AlexStocks 7539afe
docs: design comprehensive GitHub CI hardening
AlexStocks 21f84b8
docs: plan comprehensive GitHub CI hardening
AlexStocks 70dc8a1
docs: fix CI plan whitespace
AlexStocks 84c1557
build: make CI checks deterministic
AlexStocks 4172694
ci: harden tests race and platform builds
AlexStocks 67bb4e2
ci: isolate Codecov OIDC upload
AlexStocks 1999485
ci: minimize coverage permissions
AlexStocks 709cdb8
ci: add CodeQL analysis
AlexStocks c1dd4d9
ci: add Dependabot updates
AlexStocks 6a17b6e
docs: replace Travis CI references
AlexStocks 7c02e88
docs: align CI design with reviewed implementation
AlexStocks d075d46
docs: make CI verification plan executable
AlexStocks 6dff6fe
docs: harden remaining WSL command transport
AlexStocks 25bd029
ci: update setup-go to v7
AlexStocks 90d9ec5
build: make format check read-only
AlexStocks 41e5057
build: propagate format enumeration failures
AlexStocks 588997a
ci: disable checkout credential persistence
AlexStocks 7ff8448
Document PR 108 review repair strategy
AlexStocks 36680e8
Test UDP buffer limits through the real receive path
AlexStocks 1e2ea17
Bound UDP receive buffers across limit edge cases
AlexStocks 9cbc414
Check UDP test socket cleanup errors
AlexStocks b1e1701
Align PR 108 release plan with reviewed implementation
AlexStocks 80c67d8
Align PR 108 mutation rerun checklist
AlexStocks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: gomod | ||
| directory: / | ||
| target-branch: master | ||
| schedule: | ||
| interval: weekly | ||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: deps | ||
|
|
||
| - package-ecosystem: github-actions | ||
| directory: / | ||
| target-branch: master | ||
| schedule: | ||
| interval: monthly | ||
| open-pull-requests-limit: 3 | ||
| commit-message: | ||
| prefix: ci |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| name: CodeQL | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| schedule: | ||
| - cron: '30 1 * * 1' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| analyze: | ||
| name: Analyze (Go) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 20 | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
| steps: | ||
| - name: Check out repository | ||
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@a2983b8bed1923f44751c5c43237f479442827b3 # v3 | ||
| with: | ||
| languages: go | ||
| build-mode: autobuild | ||
|
|
||
| - name: Analyze | ||
| uses: github/codeql-action/analyze@a2983b8bed1923f44751c5c43237f479442827b3 # v3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.