From 324a148b5b8ac8f2336becd8db050db5a4e803ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 17:16:14 -0800 Subject: [PATCH] Bump authlib from 1.3.0 to 1.6.5 (#724) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [authlib](https://github.com/authlib/authlib) from 1.3.0 to 1.6.5.
Release notes

Sourced from authlib's releases.

v1.6.5

What's Changed

New Contributors

Full Changelog: https://github.com/authlib/authlib/compare/v1.6.4...v1.6.5

v1.6.4

What's Changed

New Contributors

Full Changelog: https://github.com/authlib/authlib/compare/v1.6.3...v1.6.4

Version 1.6.3

What's Changed

Full Changelog: https://github.com/authlib/authlib/compare/v1.6.2...v1.6.3

Version 1.6.2

What's Changed

Full Changelog: https://github.com/authlib/authlib/compare/v1.6.1...v1.6.2

... (truncated)

Changelog

Sourced from authlib's changelog.

Version 1.6.5

Released on Oct 2, 2025

Version 1.6.4

Released on Sep 17, 2025

Version 1.6.3

Released on Aug 26, 2025

Version 1.6.2

Released on Aug 23, 2025

Version 1.6.1

Released on Jul 20, 2025

Version 1.6.0

Released on May 22, 2025

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=authlib&package-manager=pip&previous-version=1.3.0&new-version=1.6.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/ArcadeAI/arcade-mcp/network/alerts).
--- > [!NOTE] > Skip GHA secret-backed toolkit tests for dependabot, add Dockerized Postgres test setup and default to postgres user, and bump authlib to 1.6.5. > > - **CI**: > - Update `Test stand-alone toolkits (with secrets)` condition to also exclude `github.actor == 'dependabot[bot]'`. > - Execute optional `tests/test_setup.sh` before pytest when present. > - **Postgres toolkit tests**: > - Default `POSTGRES_DATABASE_CONNECTION_STRING` user changed to `postgres` in `toolkits/postgres/tests/test_postgres.py`. > - Add `toolkits/postgres/tests/test_setup.sh` to spin up a Docker `postgres` and wait until ready. > - **Dependencies**: > - Upgrade `authlib` to `1.6.5` in `pyproject.toml`. > > Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit f3600e7536a409ecd8e645f473d747b9ba363765. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot). --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cursor Agent Co-authored-by: evan --- .github/workflows/test-toolkits.yml | 3 ++- pyproject.toml | 2 +- toolkits/postgres/tests/test_postgres.py | 2 +- toolkits/postgres/tests/test_setup.sh | 15 +++++++++++++++ 4 files changed, 19 insertions(+), 3 deletions(-) create mode 100755 toolkits/postgres/tests/test_setup.sh diff --git a/.github/workflows/test-toolkits.yml b/.github/workflows/test-toolkits.yml index ca514166..b308497a 100644 --- a/.github/workflows/test-toolkits.yml +++ b/.github/workflows/test-toolkits.yml @@ -99,7 +99,8 @@ jobs: - name: Test stand-alone toolkits (with secrets) if: | - !github.event.pull_request.head.repo.fork + !github.event.pull_request.head.repo.fork && + github.actor != 'dependabot[bot]' working-directory: toolkits/${{ matrix.toolkit }} env: TEST_POSTGRES_DATABASE_CONNECTION_STRING: ${{ secrets.TEST_POSTGRES_DATABASE_CONNECTION_STRING }} # TODO: dynamically only load the `TEST_${{ matrix.toolkit }}_DATABASE_CONNECTION_STRING secret` diff --git a/pyproject.toml b/pyproject.toml index c6f30f0b..d7e96ef9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ "typer==0.10.0", "rich==13.9.4", "Jinja2==3.1.6", - "authlib==1.3.0", + "authlib==1.6.5", "arcadepy==1.8.0", "tqdm==4.67.1", "openai==1.82.1", diff --git a/toolkits/postgres/tests/test_postgres.py b/toolkits/postgres/tests/test_postgres.py index 7cb8ec23..b9904664 100644 --- a/toolkits/postgres/tests/test_postgres.py +++ b/toolkits/postgres/tests/test_postgres.py @@ -17,7 +17,7 @@ from sqlalchemy.ext.asyncio import create_async_engine POSTGRES_DATABASE_CONNECTION_STRING = ( environ.get("TEST_POSTGRES_DATABASE_CONNECTION_STRING") - or "postgresql://evan@localhost:5432/postgres" + or "postgresql://postgres@localhost:5432/postgres" ) diff --git a/toolkits/postgres/tests/test_setup.sh b/toolkits/postgres/tests/test_setup.sh new file mode 100755 index 00000000..bac01757 --- /dev/null +++ b/toolkits/postgres/tests/test_setup.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Run PostgreSQL container +docker run -d --name some-postgres-server -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres:latest + +# Wait for PostgreSQL to be ready +echo "Waiting for PostgreSQL to be ready..." +for i in {1..30}; do + if docker exec some-postgres-server pg_isready -U postgres > /dev/null 2>&1; then + echo "PostgreSQL is ready!" + break + fi + echo "Waiting... ($i/30)" + sleep 1 +done