Skip to content

Commit e08a59e

Browse files
authored
Merge pull request #161 from at-gmbh/feature/fix-security-issues
Feature/fix security issues
2 parents 030d0b3 + 2fecbbe commit e08a59e

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Placeholder for future updates and new features.
1212

13+
14+
## [1.1.2] - 2025-03-14
15+
16+
### Changed
17+
- Updated project version from `1.1.1` to `1.1.2` in `pyproject.toml`.
18+
- Updated `ruff` pre-commit hook from `v0.9.10` to `v0.11.0` in `.pre-commit-config.yaml`.
19+
- Updated `ruff` dependency in `environment-dev.yml` from `>=0.9.7` to `>=0.11.0`.
20+
- Updated `pytest` from `^8.3.4` to `^8.3.5` in `pyproject.toml`.
21+
- Updated `ruff` from `^0.9.7` to `^0.11.0` in `pyproject.toml`.
22+
- Updated `black` from `~22.10` to `~25.1.0` in `requirements-dev.txt`.
23+
- Updated `pytest` from `~8.3` to `~8.3.5` in `requirements-dev.txt`.
24+
- Updated `wheel` from `~0.37` to `~0.45.1` in `requirements-dev.txt`.
25+
1326
## [1.1.1] - 2025-03-13
1427

1528
### Changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "at-python-template"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "This is the official Python Project Template of Alexander Thamm GmbH (AT)"
55
authors = [
66
"Christian Baur <[email protected]>",

{{cookiecutter.project_slug}}/.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
language_version: python3.9
2020
exclude: ^notebooks{% else %}
2121
- repo: https://github.com/astral-sh/ruff-pre-commit
22-
rev: 'v0.9.10'
22+
rev: 'v0.11.0'
2323
hooks:
2424
- id: ruff{% endif %}
2525
- repo: https://github.com/pycqa/isort

{{cookiecutter.project_slug}}/environment-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ dependencies:
1717
- pip:
1818
- black>=25.1.0{% else %}
1919
- pip:
20-
- ruff>=0.9.7{% endif %}
20+
- ruff>=0.11.0{% endif %}

{{cookiecutter.project_slug}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ PyYAML = "^6.0.2"{% endif %}{% if cookiecutter.create_cli == 'yes' %}
1717
typer = "^0.15.1"{% endif %}
1818

1919
[tool.poetry.group.test.dependencies]
20-
pytest = "^8.3.4"
20+
pytest = "^8.3.5"
2121
pytest-cov = "^6.0.0"
2222

2323
[tool.poetry.group.linter.dependencies]{% if cookiecutter.code_formatter == 'black' %}
2424
black = "^25.1.0"{% else %}
25-
ruff = "^0.9.7"{% endif %}
25+
ruff = "^0.11.0"{% endif %}
2626
isort = "^6.0.0"
2727

2828
[tool.poetry.group.dev.dependencies]
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# This file defines the additional requirements for a developer working
22
# with this project (e.g. for testing or useful development tools).
33
# The regular project dependencies are defined in requirements.txt{% if cookiecutter.code_formatter == 'black' %}
4-
black~=22.10{% endif %}
4+
black~=25.1.0{% endif %}
55
pre-commit~=4.1
6-
pytest~=8.3
6+
pytest~=8.3.5
77
pytest-cov~=6.0
8-
wheel~=0.37
8+
wheel~=0.45.1

0 commit comments

Comments
 (0)