-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/mula/refactor-queue
* main: (78 commits) Translations update from Hosted Weblate (#3048) Translations update from Hosted Weblate (#3018) Fix empty consumes of boefjes will trigger tasks in scheduler (#3017) Fixes text in secondary menu on scan profile detail page (#3035) chore: Resolves css-issues found by sonarcloud (#3034) Add raw AuthToken SQL migration (#3009) Translations update from Hosted Weblate (#3012) Rewrite xtdb-cli.py with "click" (#2957) Phase out the Repository model from the KATalogus (#2984) Fix merge conflicts in weblate (#3007) Translations update from Hosted Weblate (#2996) Reports: Fix select all OOIs (#2909) Adding IPv6 support to documentation for Docker setups (#2813) Translations update from Hosted Weblate (#2930) User documentation for reports (#2898) Fix task api status code response for malformed id in the scheduler (#2953) Add drill trace option in dnssec boefje (#2979) Updated packages (#2972) Update granian and remove workaround for fixed bug (#2980) Fix typing in boefjes/normalizers (#2933) ...
- Loading branch information
Showing
612 changed files
with
18,543 additions
and
14,184 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 |
---|---|---|
@@ -1,15 +1,17 @@ | ||
--- | ||
name: User story | ||
about: Create a task that is phrased as a user story | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## User Story | ||
|
||
As a [type of user], | ||
I want [some goal or desired outcome], | ||
so that [some reason or benefit]. | ||
|
||
## Acceptance Criteria: | ||
|
||
- [List specific conditions or criteria that must be met for the story to be considered complete.] |
This file contains 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 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 |
---|---|---|
@@ -1,32 +1,41 @@ | ||
### Changes | ||
|
||
_Please describe the essence of this PR in a few sentences. Mention any breaking changes or required configuration steps._ | ||
|
||
### Issue link | ||
|
||
_Please add a link to the issue after "Closes". If there is no issue for this PR, please add it to the project board directly._ | ||
|
||
Closes ... | ||
|
||
### Demo | ||
|
||
_Please add some proof in the form of screenshots or screen recordings to show (off) new functionality, if there are interesting new features for end-users._ | ||
|
||
--- | ||
|
||
### Code Checklist | ||
|
||
- [ ] All the commits in this PR are properly PGP-signed and verified. | ||
- [ ] This PR only contains functionality relevant to the issue; tickets have been created for newly discovered issues. | ||
- [ ] I have written unit tests for the changes or fixes I made. | ||
- [ ] For any non-trivial functionality, I have added integration and/or end-to-end tests. | ||
- [ ] I have performed a self-review of my code and refactored it to the best of my abilities. | ||
|
||
### Communication | ||
|
||
- [ ] I have informed others of any required `.env` changes files if required and changed the `.env-dist` accordingly. | ||
- [ ] I have made corresponding changes to the documentation, if necessary. | ||
- [ ] I have included comments in the code to elaborate on what is not self-evident from the code itself, including references to issues and discussions online, or implicit behavior of an interface. | ||
|
||
--- | ||
|
||
## Checklist for code reviewers: | ||
|
||
Copy-paste the checklist from [the docs/source/templates folder](https://github.com/minvws/nl-kat-coordination/blob/main/docs/source/templates/pull_request_template_review_code.md) into your comment. | ||
|
||
--- | ||
|
||
## Checklist for QA: | ||
|
||
Copy-paste the checklist from [the docs/source/templates folder](https://github.com/minvws/nl-kat-coordination/blob/main/docs/source/templates/pull_request_template_review_qa.md) into your comment. |
This file contains 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 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 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 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 |
---|---|---|
|
@@ -26,8 +26,8 @@ jobs: | |
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
python-version: "3.10" | ||
cache: "pip" | ||
|
||
- name: Prep Install requirements | ||
run: sudo apt install gettext -y | ||
|
@@ -38,7 +38,7 @@ jobs: | |
- name: Prep Configure git | ||
run: git config --global url."https://github.com/".insteadOf "ssh://[email protected]/" | ||
|
||
# Octopoes | ||
# Octopoes | ||
- name: Octopoes Create /var/lib/html | ||
run: sudo rm -rfv /var/lib/html; sudo mkdir -p /var/www/html ; sudo chown `id -u`:`id -g` /var/www/html | ||
|
||
|
@@ -75,7 +75,7 @@ jobs: | |
- name: Octopoes Cleanup | ||
run: sudo rm -rfv /var/www/html/ | ||
|
||
# Rocky | ||
# Rocky | ||
- name: Rocky Create /var/lib/html | ||
run: sudo rm -rfv /var/lib/html; sudo mkdir -p /var/www/html ; sudo chown `id -u`:`id -g` /var/www/html | ||
|
||
|
@@ -129,7 +129,7 @@ jobs: | |
run: tar -cvzf ${{ env.PKGDIR }}/rocky_${{ env.RELEASE_VERSION }}.tar.gz --exclude node_modules --exclude rocky_venv* --exclude=.git* --exclude .parcel-cache --exclude Dockerfile . | ||
working-directory: ./rocky | ||
|
||
# Bytes | ||
# Bytes | ||
- name: Bytes Create /var/lib/html | ||
run: sudo rm -rfv /var/lib/html; sudo mkdir -p /var/www/html ; sudo chown `id -u`:`id -g` /var/www/html | ||
|
||
|
@@ -150,7 +150,7 @@ jobs: | |
- name: Bytes Create bytes venv package | ||
run: tar -zcvf ${{ env.PKGDIR }}/bytes_venv_${{ env.RELEASE_VERSION }}.tar.gz -C /var/www/html/ .venv | ||
|
||
# Mula / Scheduler | ||
# Mula / Scheduler | ||
- name: Mula Create /var/lib/html | ||
run: sudo rm -rfv /var/lib/html; sudo mkdir -p /var/www/html ; sudo chown `id -u`:`id -g` /var/www/html | ||
|
||
|
@@ -175,7 +175,7 @@ jobs: | |
- name: Create venv archive | ||
run: tar -zcvf ${{ env.PKGDIR }}/scheduler_venv_${{ env.RELEASE_VERSION }}.tar.gz -C /var/www/html/ .venv | ||
|
||
# Boefjes | ||
# Boefjes | ||
- name: Boefjes Create /var/lib/html | ||
run: sudo rm -rfv /var/lib/html; sudo mkdir -p /var/www/html ; sudo chown `id -u`:`id -g` /var/www/html | ||
|
||
|
@@ -187,7 +187,7 @@ jobs: | |
run: python3.10 -m venv /var/www/html/.venv | ||
|
||
- name: Install requirements | ||
run: source .venv/bin/activate; pip install --upgrade pip; find . -name requirements.txt | xargs -L 1 pip install -r; pip install ${{ github.workspace }}/octopoes/dist/octopoes*.whl | ||
run: source .venv/bin/activate; pip install --upgrade pip; grep -v git+https:// requirements.txt | pip install -r /dev/stdin ; grep git+https:// requirements.txt | pip install -r /dev/stdin; pip install ${{ github.workspace }}/octopoes/dist/octopoes*.whl | ||
working-directory: /var/www/html | ||
|
||
- name: Create archive | ||
|
@@ -197,7 +197,7 @@ jobs: | |
run: tar -cvzf ${{ env.PKGDIR }}/boefjes_${{ env.RELEASE_VERSION }}.tar.gz . | ||
working-directory: ./boefjes | ||
|
||
# Keiko | ||
# Keiko | ||
- name: Keiko Create /var/lib/html | ||
run: sudo rm -rfv /var/lib/html; sudo mkdir -p /var/www/html ; sudo chown `id -u`:`id -g` /var/www/html | ||
|
||
|
@@ -219,7 +219,7 @@ jobs: | |
run: tar -cvzf ${{ env.PKGDIR }}/katkeiko_${{ env.RELEASE_VERSION }}.tar.gz . | ||
working-directory: ./keiko | ||
|
||
# Common / Uploads | ||
# Common / Uploads | ||
- name: Octopoes Upload whl package | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|
This file contains 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 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 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.