File tree Expand file tree Collapse file tree 6 files changed +142
-21
lines changed
Expand file tree Collapse file tree 6 files changed +142
-21
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,28 @@ jobs:
2626 - name : SCM Checkout
2727 uses : actions/checkout@v4
2828
29+ - name : Free disk space
30+ uses : jlumbroso/free-disk-space@main
31+ with :
32+ tool-cache : true
33+ large-packages : false
34+ - name : Free disk space by removing large directories
35+ run : |
36+ sudo rm -rf /usr/local/graalvm/
37+ sudo rm -rf /usr/local/.ghcup/
38+ sudo rm -rf /usr/local/share/powershell
39+ sudo rm -rf /usr/local/share/chromium
40+ sudo rm -rf /usr/local/lib/node_modules
41+ sudo rm -rf /opt/ghc
42+
2943 - name : Setup Python & Poetry Environment
3044 uses : exasol/python-toolbox/.github/actions/python-environment@v1
3145 with :
3246 python-version : ${{ matrix.python-version }}
3347
48+ - name : Allow unprivileged user namespaces
49+ run : sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
50+
3451 - name : Run Tests and Collect Coverage
3552 run : >
3653 poetry run -- nox -s test:integration --
Original file line number Diff line number Diff line change 11# 📝 Changes
22
33* [ unreleased] ( unreleased.md )
4+ * [ 0.12.1] ( changes_0.12.1.md )
45* [ 0.12.0] ( changes_0.12.0.md )
56* [ 0.11.0] ( changes_0.11.0.md )
67* [ 0.10.0] ( changes_0.10.0.md )
2021hidden:
2122---
2223unreleased
24+ changes_0.12.1
2325changes_0.12.0
2426changes_0.11.0
2527changes_0.10.0
Original file line number Diff line number Diff line change 1+ # 0.12.1 - 2025-12-17
2+
3+
4+ ## Dependency Updates
5+
6+ ### ` main `
7+ * Updated dependency ` click:8.3.0 ` to ` 8.2.1 `
8+ * Updated dependency ` exasol-script-languages-container-tool:3.4.1 ` to ` 3.5.0 `
9+ * Updated dependency ` exasol-integration-test-docker-environment:4.4.1 ` to ` 5.0.0 `
10+ * Updated dependency ` urllib3:2.5.0 ` to ` 2.6.2 `
11+ * Updated dependency ` filelock:3.20.0 ` to ` 3.20..1 `
12+ * Updated dependency ` exasol-saas-api:2.4.0 ` to ` 2.6.0 `
13+
14+ ### ` dev `
15+ * Updated dependency ` pytest-exasol-backend:1.2.1 ` to ` 1.2.4 `
Original file line number Diff line number Diff line change 11[project ]
22name = " exasol-python-extension-common"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44requires-python = " >=3.10,<4.0"
55description = " A collection of common utilities for Exasol extensions."
66authors = [
Original file line number Diff line number Diff line change 1010
1111MAJOR = 0
1212MINOR = 12
13- PATCH = 0
13+ PATCH = 1
1414VERSION = f"{ MAJOR } .{ MINOR } .{ PATCH } "
1515__version__ = VERSION
You can’t perform that action at this time.
0 commit comments