From 5863bcf711d098fec3ec74d9508b931cb38f73c9 Mon Sep 17 00:00:00 2001 From: develop-cs <43383361+develop-cs@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:30:22 +0200 Subject: [PATCH] chore: remove a dep with vulnerability Signed-off-by: develop-cs <43383361+develop-cs@users.noreply.github.com> --- .pre-commit-config.yaml | 8 ++++---- CHANGELOG.md | 2 +- pyproject.toml | 3 ++- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bbe94dc..66807e6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,23 +2,23 @@ default_language_version: python: python3 repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.5 + rev: v0.4.9 hooks: - id: ruff args: [ --fix ] - id: ruff-format - repo: https://github.com/pre-commit/mirrors-mypy - rev: 'v1.9.0' + rev: 'v1.10.0' hooks: - id: mypy args: [--config-file=pyproject.toml] files: src - repo: https://github.com/gitleaks/gitleaks - rev: v8.18.2 + rev: v8.18.4 hooks: - id: gitleaks - repo: https://github.com/pypa/pip-audit - rev: v2.7.2 + rev: v2.7.3 hooks: - id: pip-audit args: ["--skip-editable"] diff --git a/CHANGELOG.md b/CHANGELOG.md index adb2ff3..2096996 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.7.0b] - April, 2024 +## [0.7.0b*] - April, 2024 ### New Features - Beta release implementing what you can find in its [documentation](https://maif.github.io/arta/home/). diff --git a/pyproject.toml b/pyproject.toml index 0907cbc..0f8e8eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "arta" -version = "0.7.0b2" +version = "0.7.0b3" requires-python = ">3.8.0" description = "An Open Source Rules Engine - Make rule handling simple" readme = "README.md" @@ -27,6 +27,7 @@ classifiers = [ dependencies = [ "omegaconf>=2.0.0", "pydantic>=1.0.0", + "urllib3!=2.2.1", ] [project.optional-dependencies]