Skip to content
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

Release version 2.4.0 #369

Merged
merged 30 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
62e34f5
feat: add support for additional proxy protocols
tim-crisp Jun 1, 2024
a7e7aa0
fix: fallback to protocols default port for onAuthRequired
tim-crisp Jun 1, 2024
f2aee15
fix: types
tim-crisp Jun 1, 2024
3536898
Add WIP implementation of #177
younesaassila Jan 31, 2025
2ce563b
Fix #360
younesaassila Feb 1, 2025
e96e509
Clean up auto whitelist option code
younesaassila Feb 1, 2025
09750b6
Fix some errors, improve code for message handlers
younesaassila Feb 1, 2025
66e0ccb
Merge pull request #361 from younesaassila/feat/auto-whitelist-subs
younesaassila Feb 1, 2025
4ef7449
Upgrade dependencies
younesaassila Feb 1, 2025
fc0cb7e
Bump version number to 2.4.0
younesaassila Feb 1, 2025
3b9103c
Fix build error
younesaassila Feb 1, 2025
125cece
Remove unused deps
younesaassila Feb 1, 2025
ebe2f76
Upgrade workflow dependencies
younesaassila Feb 1, 2025
66d3ef3
Add VOD check for auto whitelist sub channel feature
younesaassila Feb 1, 2025
7ab206e
Reduce log level for "no manifest for weaver" because of frequency du…
younesaassila Feb 1, 2025
2a79647
Implement review changes
younesaassila Feb 2, 2025
be39a53
Fix auto whitelist subs feature
younesaassila Feb 2, 2025
ac50e0c
Improve implementation of auto whitelist feature
younesaassila Feb 4, 2025
010265c
Cleanup + fix warnings caused by clearStats
younesaassila Feb 4, 2025
9f45b77
Upgrade dependencies
younesaassila Feb 4, 2025
6fcae2e
Fix review comments
younesaassila Feb 4, 2025
f9fcce5
Update workflows
younesaassila Feb 7, 2025
b0b0cb0
Merge pull request #332 from tim-crisp/feature/proxy-protocol-support
younesaassila Feb 7, 2025
de97812
Reformat code, add toggle option for protocol support
younesaassila Feb 7, 2025
6df1cc7
Improve code
younesaassila Feb 7, 2025
2cba7c1
Improve UX of "Allow other protocols" option
younesaassila Feb 9, 2025
21fc889
Upgrade dependencies
younesaassila Feb 9, 2025
4693ceb
Fix export of `allowOtherProxyProtocols` setting
younesaassila Feb 9, 2025
e7f00f4
Remove extra dot to avoid format confusion
younesaassila Feb 9, 2025
9d86b37
Upgrade dependencies
younesaassila Feb 13, 2025
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
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ on:
tags-ignore: ["**"]
pull_request:
branches: ["**"]
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:
name: Build
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
concurrency: build-${{ github.ref }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run linter
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ on:
pull_request:
# The branches below must be a subset of the branches above
branches: ["v2"]
types: [opened, synchronize, reopened, ready_for_review]
schedule:
- cron: "32 9 * * 6"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
concurrency: codeql-${{ github.ref }}
permissions:
actions: read
Expand All @@ -42,11 +44,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -59,7 +61,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
Expand All @@ -72,6 +74,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
8 changes: 7 additions & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,20 @@
# Source repository: https://github.com/actions/dependency-review-action
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: "Dependency Review"
on: [pull_request]
on:
pull_request:
branches: ["**"]
types: [opened, synchronize, reopened, ready_for_review]

permissions:
contents: read

jobs:
dependency-review:
name: Dependency Review
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
concurrency: dependencies-${{ github.ref }}
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
Expand Down
Loading
Loading