Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/slow-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,28 @@ jobs:
- name: SCM Checkout
uses: actions/checkout@v4

- name: Free disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: true
large-packages: false
- name: Free disk space by removing large directories
run: |
sudo rm -rf /usr/local/graalvm/
sudo rm -rf /usr/local/.ghcup/
sudo rm -rf /usr/local/share/powershell
sudo rm -rf /usr/local/share/chromium
sudo rm -rf /usr/local/lib/node_modules
sudo rm -rf /opt/ghc

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@v1
with:
python-version: ${{ matrix.python-version }}

- name: Allow unprivileged user namespaces
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

- name: Run Tests and Collect Coverage
run: >
poetry run -- nox -s test:integration --
Expand Down
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 📝 Changes

* [unreleased](unreleased.md)
* [0.12.1](changes_0.12.1.md)
* [0.12.0](changes_0.12.0.md)
* [0.11.0](changes_0.11.0.md)
* [0.10.0](changes_0.10.0.md)
Expand All @@ -20,6 +21,7 @@
hidden:
---
unreleased
changes_0.12.1
changes_0.12.0
changes_0.11.0
changes_0.10.0
Expand Down
15 changes: 15 additions & 0 deletions doc/changes/changes_0.12.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 0.12.1 - 2025-12-17


## Dependency Updates

### `main`
* Updated dependency `click:8.3.0` to `8.2.1`
* Updated dependency `exasol-script-languages-container-tool:3.4.1` to `3.5.0`
* Updated dependency `exasol-integration-test-docker-environment:4.4.1` to `5.0.0`
* Updated dependency `urllib3:2.5.0` to `2.6.2`
* Updated dependency `filelock:3.20.0` to `3.20..1`
* Updated dependency `exasol-saas-api:2.4.0` to `2.6.0`

### `dev`
* Updated dependency `pytest-exasol-backend:1.2.1` to `1.2.4`
125 changes: 106 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "exasol-python-extension-common"
version = "0.12.0"
version = "0.12.1"
requires-python = ">=3.10,<4.0"
description = "A collection of common utilities for Exasol extensions."
authors = [
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

MAJOR = 0
MINOR = 12
PATCH = 0
PATCH = 1
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
__version__ = VERSION