Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bundle updates #569

Merged
merged 27 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
62b692c
Update dependency ipython to v8.20.0
renovate[bot] Jan 18, 2024
1ce5932
Bump pymongo from 4.6.1 to 4.6.3
dependabot[bot] Apr 8, 2024
11802f2
Update dependency SQLAlchemy to v2.0.30
renovate[bot] May 7, 2024
22a32d3
Update dependency bandit to v1.7.8
renovate[bot] May 7, 2024
eaf5d9d
Update dependency pytest-asyncio to v0.23.6
renovate[bot] May 7, 2024
502dbd9
Update dependency Faker to v22.7.0
renovate[bot] May 7, 2024
3461475
Update dependency python-lsp-server to v1.11.0
renovate[bot] May 7, 2024
7f72285
Update dependency uvicorn to ^0.29.0
renovate[bot] May 7, 2024
760ce79
Update actions/cache action to v4
renovate[bot] May 7, 2024
a2f6b84
Update dependency SQLAlchemy-Utils to v0.41.2
renovate[bot] May 7, 2024
00867cb
Update dependency fastapi to v0.111.0
renovate[bot] May 7, 2024
5f68ab2
Update dependency mypy to v1.10.0
renovate[bot] May 7, 2024
28d768d
Update dependency pydantic to v2.7.1
renovate[bot] May 7, 2024
e4c2cbc
Merge remote-tracking branch 'origin/renovate/pydantic-2.x-lockfile' …
arthurio May 7, 2024
1321394
Merge remote-tracking branch 'origin/renovate/fastapi-0.x-lockfile' i…
arthurio May 7, 2024
a069d67
Merge remote-tracking branch 'origin/renovate/mypy-1.x-lockfile' into…
arthurio May 7, 2024
d2abad9
Merge remote-tracking branch 'origin/renovate/sqlalchemy-utils-0.x-lo…
arthurio May 7, 2024
8e10d4d
Merge remote-tracking branch 'origin/renovate/ipython-8.x-lockfile' i…
arthurio May 7, 2024
3937923
Merge remote-tracking branch 'origin/renovate/actions-cache-4.x' into…
arthurio May 7, 2024
67ec461
Merge remote-tracking branch 'origin/renovate/uvicorn-0.x' into bundl…
arthurio May 7, 2024
f18ea94
Merge remote-tracking branch 'origin/renovate/python-lsp-server-1.x-l…
arthurio May 7, 2024
4e9cb2a
Merge remote-tracking branch 'origin/renovate/faker-22.x-lockfile' in…
arthurio May 7, 2024
fa726b2
Merge remote-tracking branch 'origin/renovate/pytest-asyncio-0.x-lock…
arthurio May 7, 2024
32e10a5
Merge remote-tracking branch 'origin/renovate/bandit-1.x-lockfile' in…
arthurio May 7, 2024
b38c312
Merge remote-tracking branch 'origin/renovate/sqlalchemy-2.x-lockfile…
arthurio May 7, 2024
9582e44
Merge remote-tracking branch 'origin/dependabot/pip/pymongo-4.6.3' in…
arthurio May 7, 2024
981eb52
Update poetry.lock
arthurio May 7, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ steps.setup-python.outputs.python-version }}-1.7.1-0
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-0
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ steps.setup-python.outputs.python-version }}-1.7.1-0
Expand All @@ -94,7 +94,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-0
Expand Down
Loading
Loading