Skip to content

Commit 8c7d8d7

Browse files
authored
Prepare release 0.8.0 (#133)
1 parent a986d81 commit 8c7d8d7

File tree

12 files changed

+50
-38
lines changed

12 files changed

+50
-38
lines changed

.github/actions/security-issues/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
- name: Install Python Toolbox / Security tool
4040
shell: bash
4141
run: |
42-
pip install exasol-toolbox==0.7.0
42+
pip install exasol-toolbox==0.8.0
4343
4444
- name: Create Security Issue Report
4545
shell: bash

doc/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
Unreleased
77
==========
88

9+
0.8.0 - 2024-02-07
10+
==================
11+
912
✨ Added
1013
--------
1114
* Added output `created-issues` to `security-issues` action containing the found security issues including the created GitHub issues in JSONL format.

exasol/toolbox/templates/github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v3
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
20+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
2121

2222
- name: Build Artifacts
2323
run: poetry build

exasol/toolbox/templates/github/workflows/check-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v3
1515

1616
- name: Setup Python & Poetry Environment
17-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
17+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
1818

1919
- name: Check Tag Version
2020
# make sure the pushed/created tag matched the project version

exasol/toolbox/templates/github/workflows/checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616

1717
- name: Setup Python & Poetry Environment
18-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
18+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
1919

2020
- name: Check Version(s)
2121
run: poetry run version-check exasol/toolbox/version.py
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v3
3131

3232
- name: Setup Python & Poetry Environment
33-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
33+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
3434

3535
- name: Build Documentation
3636
run: |
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v3
5151

5252
- name: Setup Python & Poetry Environment
53-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
53+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656

@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v3
7272

7373
- name: Setup Python & Poetry Environment
74-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
74+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
7575
with:
7676
python-version: ${{ matrix.python-version }}
7777

@@ -93,7 +93,7 @@ jobs:
9393
uses: actions/checkout@v3
9494

9595
- name: Setup Python & Poetry Environment
96-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
96+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
9797
with:
9898
python-version: ${{ matrix.python-version }}
9999

exasol/toolbox/templates/github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v3
1313

1414
- name: Setup Python & Poetry Environment
15-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
15+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
1616

1717
- name: Build Documentation
1818
run: |

exasol/toolbox/templates/github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fetch-depth: 0
2222

2323
- name: Setup Python & Poetry Environment
24-
uses: exasol/python-toolbox/.github/actions/python-environment@0.6.2
24+
uses: exasol/python-toolbox/.github/actions/python-environment@0.8.0
2525

2626
- name: Download Artifacts
2727
uses: actions/download-artifact@v3

exasol/toolbox/tools/security.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,10 +255,12 @@ def create(
255255
stderr(std_err)
256256
stdout(format_jsonl(issue_url, issue))
257257

258+
258259
def format_jsonl(issue_url: str, issue: Issue) -> str:
259260
issue_json = asdict(issue)
260-
issue_json["url"] = issue_url.strip()
261+
issue_json["issue_url"] = issue_url.strip()
261262
return json.dumps(issue_json)
262263

264+
263265
if __name__ == "__main__":
264266
CLI()

exasol/toolbox/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 0
8-
MINOR = 7
8+
MINOR = 8
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "exasol-toolbox"
33
packages = [
44
{ include = "exasol" },
55
]
6-
version = "0.7.0"
6+
version = "0.8.0"
77
description = ""
88
authors = [
99
"Nicola Coretti <[email protected]>"

0 commit comments

Comments
 (0)