From 60bbe4f9997b5b29bf22b70148467e8b617538c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Jul 2023 11:23:50 -0400 Subject: [PATCH 1/3] Bump the actions-dependencies group with 1 update (#268) Bumps the actions-dependencies group with 1 update: [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact). - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v1...v2) --- updated-dependencies: - dependency-name: actions/upload-pages-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/DocumentationBuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/DocumentationBuild.yml b/.github/workflows/DocumentationBuild.yml index bc4eb13..5c4b5ff 100644 --- a/.github/workflows/DocumentationBuild.yml +++ b/.github/workflows/DocumentationBuild.yml @@ -31,6 +31,6 @@ jobs: run: make html SPHINXOPTS="-W" - name: Upload docs to artifact storage - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v2 with: path: docs/build/html From 9f96ebce5ce05d0469d5beff59b0b54cff144521 Mon Sep 17 00:00:00 2001 From: Daniel Perrefort Date: Mon, 31 Jul 2023 11:50:21 -0400 Subject: [PATCH 2/3] Exclude sphinx from general python dependency updates (#271) --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 152dbe5..ef157a6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,8 @@ updates: python-dependencies: patterns: - "*" + exclude-patterns: + - "sphinx*" documentation-dependencies: patterns: - "sphinx*" From d5c3df8c33a8fa38be49b12522308b3567b26ac7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Jul 2023 12:00:35 -0400 Subject: [PATCH 3/3] Bump the python-dependencies group with 2 updates (#272) Updates the requirements on [pydantic-settings](https://github.com/pydantic/pydantic-settings) and [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) to permit the latest version. Updates `pydantic-settings` to 2.0.2 - [Release notes](https://github.com/pydantic/pydantic-settings/releases) - [Commits](https://github.com/pydantic/pydantic-settings/compare/v2.0.1...v2.0.2) Updates `sqlalchemy` to 2.0.19 - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) --- updated-dependencies: - dependency-name: pydantic-settings dependency-type: direct:production dependency-group: python-dependencies - dependency-name: sqlalchemy dependency-type: direct:production dependency-group: python-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 914b5b7..41a9571 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,8 +29,8 @@ notifier = "quota_notifier.cli:Application.execute" [tool.poetry.dependencies] python = ">=3.8" -pydantic-settings = "2.0.1" -sqlalchemy = "2.0.17" +pydantic-settings = "2.0.2" +sqlalchemy = "2.0.19" [tool.poetry.group.tests] optional = true