Skip to content

Commit 5680a53

Browse files
committed
Add new changelog workflow
1 parent 0fddfd5 commit 5680a53

31 files changed

+537
-153
lines changed

.github/workflows/changelog.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Check Unreleased
2+
on:
3+
pull_request:
4+
types: [opened, edited]
5+
branches-ignore:
6+
- main
7+
permissions: {}
8+
9+
jobs:
10+
changelog:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 2
17+
18+
- name: Check for new file in .unreleased
19+
run: |
20+
FILE_COUNT=$(git diff --name-only main..HEAD -- .unreleased | wc -l)
21+
if [ "$FILE_COUNT" -eq "0" ]; then
22+
echo "No new file in .unreleased directory. Please add a new file describing your changes."
23+
exit 1
24+
fi

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ tcli.log
44
!/.cargo
55
!/.github
66
!/.gitlab
7+
!/.unreleased
78
*.pyc
89
*.box
910
*.deb

.unreleased/LLT-2515

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Implement PMTU discovery for VPN connection paths on Linux/Android

.unreleased/LLT-4154

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Optimize Upnp/Stun providers

.unreleased/LLT-4168

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix telio-dns assert panics in debug mode

.unreleased/LLT-4351

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix when shutting down meshnet, in the disconnect event, path is sometimes incorrectly reported as direct

.unreleased/LLT-4687

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add PQ VPN nat-lab tests

.unreleased/LLT-4855

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add Aggregator struct for connectivity events gathering

.unreleased/LLT-4856

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Enable aggregator timed events

.unreleased/LLT-4858

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NAT state analytics reporting

0 commit comments

Comments
 (0)