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

⬆️ [maykinmedia/open-api-framework#117] Upgrade dependencies #256

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
postgres: ['12', '13', '14', '15', '16']
postgres: ['13', '14', '15', '16', '17']

name: Tests (PG ${{ matrix.postgres }})

Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
id: image-name

open-api-ci:
uses: maykinmedia/open-api-workflows/.github/workflows/ci.yml@v3.0.2
uses: maykinmedia/open-api-workflows/.github/workflows/ci.yml@v5
needs:
- store-reusable-workflow-vars
with:
Expand All @@ -113,7 +113,7 @@ jobs:
django-settings-module: nrc.conf.ci

open-api-publish:
uses: maykinmedia/open-api-workflows/.github/workflows/publish.yml@v3.0.2
uses: maykinmedia/open-api-workflows/.github/workflows/publish.yml@v5
needs:
- store-reusable-workflow-vars
- open-api-ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
open-api-workflow-code-quality:
uses: maykinmedia/open-api-workflows/.github/workflows/code-quality.yml@v1
uses: maykinmedia/open-api-workflows/.github/workflows/code-quality.yml@v5
with:
python-version: '3.11'
node-version: '16'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ on:

jobs:
open-api-workflow-code-analysis:
uses: maykinmedia/open-api-workflows/.github/workflows/code-analysis.yml@v1
uses: maykinmedia/open-api-workflows/.github/workflows/code-analysis.yml@v5
2 changes: 1 addition & 1 deletion .github/workflows/generate-postman-collection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ on:

jobs:
open-api-workflow-generate-postman-collection:
uses: maykinmedia/open-api-workflows/.github/workflows/generate-postman-collection.yml@v1
uses: maykinmedia/open-api-workflows/.github/workflows/generate-postman-collection.yml@v5
with:
schema-path: 'src/openapi.yaml'
2 changes: 1 addition & 1 deletion .github/workflows/generate-sdks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ on:

jobs:
open-api-workflow-generate-sdks:
uses: maykinmedia/open-api-workflows/.github/workflows/generate-sdks.yml@v1
uses: maykinmedia/open-api-workflows/.github/workflows/generate-sdks.yml@v5
with:
schema-path: 'src/openapi.yaml'
2 changes: 1 addition & 1 deletion .github/workflows/lint-oas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ on:

jobs:
open-api-workflow-lint-oas:
uses: maykinmedia/open-api-workflows/.github/workflows/lint-oas.yml@v1
uses: maykinmedia/open-api-workflows/.github/workflows/lint-oas.yml@v5
with:
schema-path: 'src/openapi.yaml'
2 changes: 1 addition & 1 deletion .github/workflows/oaf-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
open-api-workflow-check-oas:
uses: maykinmedia/open-api-workflows/.github/workflows/oaf-check.yml@v4
uses: maykinmedia/open-api-workflows/.github/workflows/oaf-check.yml@v5

with:
python-version: '3.11'
2 changes: 1 addition & 1 deletion .github/workflows/oas-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
open-api-workflow-check-oas:
uses: maykinmedia/open-api-workflows/.github/workflows/oas-check.yml@v5.0.0
uses: maykinmedia/open-api-workflows/.github/workflows/oas-check.yml@v5
with:
python-version: '3.11'
django-settings-module: 'nrc.conf.ci'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quick-start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ on:

jobs:
open-api-workflow-quick-start:
uses: maykinmedia/open-api-workflows/.github/workflows/quick-start.yml@v4.2.0
uses: maykinmedia/open-api-workflows/.github/workflows/quick-start.yml@v5
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
Changes
=======

1.x.x (2025-03-31)
==================

**Project maintenance**

* Confirm support for Postgres 17 and drop (verified) support for Postgres 12
* Confirm support for RabbitMQ 4.0 and drop (verified) support for RabbitMQ 3.9
* Upgrade dependencies

* Development tools: black to 25.1.0, flake to 7.1.2 and isort to 6.0.1


1.8.1 (2025-03-04)
==================

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.4'

services:
db:
image: postgis/postgis:12-2.5
image: postgis/postgis:17-3.5
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
Expand All @@ -12,7 +12,7 @@ services:
command: postgres -c max_connections=300 -c log_min_messages=LOG

rabbitmq:
image: rabbitmq:3.9-alpine
image: rabbitmq:4.0-alpine

redis:
image: redis
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
CREATE USER opennotificaties;
CREATE DATABASE opennotificaties;
GRANT ALL PRIVILEGES ON DATABASE opennotificaties TO opennotificaties;
CREATE DATABASE opennotificaties WITH OWNER opennotificaties;
3 changes: 1 addition & 2 deletions docker/postgres.entrypoint-initdb.d/0002-openzaak.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
CREATE USER openzaak;
CREATE DATABASE openzaak;
GRANT ALL PRIVILEGES ON DATABASE openzaak TO openzaak;
CREATE DATABASE openzaak WITH OWNER openzaak;
2 changes: 1 addition & 1 deletion publiccode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ dependsOn:
open:
- name: PostgreSQL
optional: true
versionMin: '10.0'
versionMin: '13.0'
- name: Kubernetes
optional: true
versionMin: '1.12'
Expand Down
8 changes: 4 additions & 4 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ billiard==4.2.0
# -c requirements/base.txt
# -r requirements/base.txt
# celery
black==24.3.0
black==25.1.0
# via -r requirements/test-tools.in
bleach==6.1.0
# via
Expand Down Expand Up @@ -382,7 +382,7 @@ faker==13.15.1
# via
# factory-boy
# zgw-consumers-oas
flake8==7.0.0
flake8==7.1.2
# via -r requirements/test-tools.in
flower==2.0.1
# via
Expand Down Expand Up @@ -431,7 +431,7 @@ isodate==0.6.1
# -c requirements/base.txt
# -r requirements/base.txt
# commonground-api-common
isort==5.13.2
isort==6.0.1
# via -r requirements/test-tools.in
itypes==1.2.0
# via
Expand Down Expand Up @@ -546,7 +546,7 @@ psycopg2==2.9.9
# -c requirements/base.txt
# -r requirements/base.txt
# open-api-framework
pycodestyle==2.11.1
pycodestyle==2.12.1
# via flake8
pycparser==2.22
# via
Expand Down
8 changes: 4 additions & 4 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ billiard==4.2.0
# -c requirements/ci.txt
# -r requirements/ci.txt
# celery
black==24.3.0
black==25.1.0
# via
# -c requirements/ci.txt
# -r requirements/ci.txt
Expand Down Expand Up @@ -428,7 +428,7 @@ faker==13.15.1
# -r requirements/ci.txt
# factory-boy
# zgw-consumers-oas
flake8==7.0.0
flake8==7.1.2
# via
# -c requirements/ci.txt
# -r requirements/ci.txt
Expand Down Expand Up @@ -499,7 +499,7 @@ isodate==0.6.1
# -c requirements/ci.txt
# -r requirements/ci.txt
# commonground-api-common
isort==5.13.2
isort==6.0.1
# via
# -c requirements/ci.txt
# -r requirements/ci.txt
Expand Down Expand Up @@ -649,7 +649,7 @@ psycopg2==2.9.9
# -c requirements/ci.txt
# -r requirements/ci.txt
# open-api-framework
pycodestyle==2.11.1
pycodestyle==2.12.1
# via
# -c requirements/ci.txt
# -r requirements/ci.txt
Expand Down