Skip to content

Commit 975df76

Browse files
committed
include releasenotes of 1.5
1 parent d4342fd commit 975df76

File tree

6 files changed

+61
-5
lines changed

6 files changed

+61
-5
lines changed

.github/workflows/submodules.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
git submodule status
1818
git submodule update --init --force
1919
cd docs/_include/vyos-1x
20-
git checkout current
20+
git checkout sagitta
2121
git pull
2222
git submodule status
2323
- name: update releasenotes
@@ -26,7 +26,7 @@ jobs:
2626
if: env.PHABRICATOR_API != null
2727
run: |
2828
pip3 install phabricator==0.8.0
29-
python3 docs/_ext/releasenotes.py -t ${{ secrets.PHABRICATOR_API }} -b current equuleus
29+
python3 docs/_ext/releasenotes.py -t ${{ secrets.PHABRICATOR_API }} -b circinus sagitta equuleus
3030
- name: Create Pull Request
3131
uses: peter-evans/create-pull-request@v3
3232
with:

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "docs/_include/vyos-1x"]
22
path = docs/_include/vyos-1x
33
url = https://github.com/vyos/vyos-1x
4-
branch = current
4+
branch = sagitta

docs/_ext/releasenotes.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
print(projects.response['data'][project]['phid'], projects.response['data'][project]['name'])
2020
'''
2121

22+
# find phid here https://vyos.dev/conduit/method/project.query/
2223
projects = {
2324
'equuleus': {
2425
'phid': 'PHID-PROJ-zu26ui4vbmvykpjtepij',
@@ -27,12 +28,19 @@
2728
'tasks': [],
2829
'releasenotes': []
2930
},
30-
'current': {
31+
'sagitta': {
3132
'phid': 'PHID-PROJ-m4utvy456e2shcprpq3b',
3233
'name': '1.4 Sagitta',
3334
'filename': 'docs/changelog/1.4.rst',
3435
'tasks': [],
3536
'releasenotes': []
37+
},
38+
'circinus': {
39+
'phid': 'PHID-PROJ-cfi33xi3uijxyjsxoqzv',
40+
'name': '1.5 Circinus',
41+
'filename': 'docs/changelog/1.5.rst',
42+
'tasks': [],
43+
'releasenotes': []
3644
}
3745
}
3846

docs/_include/vyos-1x

Submodule vyos-1x updated 1896 files

docs/changelog/1.5.rst

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
############
2+
1.5 Circinus
3+
############
4+
5+
..
6+
Please don't add anything by hand.
7+
This file is managed by the script:
8+
_ext/releasenotes.py
9+
10+
11+
2023-09-11
12+
==========
13+
14+
* :vytask:`T5562` ``(bug): Smoketests fail for vyos:current (test_netns.py)``
15+
* :vytask:`T5551` ``(bug): Missing check for boot_configuration_complete raises error in vyos-save-config.py``
16+
* :vytask:`T5353` ``(bug): config-mgmt: normalize archive updates and commit log entries``
17+
18+
19+
2023-09-10
20+
==========
21+
22+
* :vytask:`T5555` ``(bug): Fix timezone migrator (system 13-to-14)``
23+
24+
25+
2023-09-09
26+
==========
27+
28+
* :vytask:`T5423` ``(bug): ipsec: no output for op-cmd "show vpn ike secrets"``
29+
30+
31+
2023-09-08
32+
==========
33+
34+
* :vytask:`T5560` ``(bug): VyOS version in current branch should be changed from 1.4 to 1.5``
35+
36+
37+
2023-09-07
38+
==========
39+
40+
* :vytask:`T5556` ``(bug): reboot now and poweroff does not work``
41+
* :vytask:`T5489` ``(feature): Change to BBR as TCP congestion control, or at least make it an config option``
42+
43+
44+
2023-09-06
45+
==========
46+
47+
* :vytask:`T5548` ``(bug): HAProxy renders timeouts incorrectly``

docs/changelog/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Changelog
1010
:maxdepth: 1
1111
:includehidden:
1212

13+
1.5
1314
1.4
1415
1.3
1516
1.2.6

0 commit comments

Comments
 (0)