Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = False
current_version = 3.0.2
current_version = 3.0.3

[bumpversion:file:README.rst]
search = :Version: {current_version}
Expand Down
20 changes: 17 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,31 @@
Change history
==============

3.x.x (2025-03-31)
3.0.3 (2025-04-03)
------------------

**Project maintenance**

* Confirm support for Postgres 17 and drop (verified) support for Postgres 12
* [:open-api-framework:`59`] Deprecate django.contrib.sites and add ``SITE_DOMAIN`` environment variable
as a replacement (see :ref:`installation_env_config` > Optional for more information)
* [:open-api-framework:`125`] Upgrade docker image to debian-bookworm
* [:open-api-framework:`117`] Confirm support for Postgres 17 and drop (verified) support for Postgres 12
* Confirm support for Postgis 3.2/3.5 and drop (verified) support for Postgis 2.5
* Upgrade nodejs version in Docker image to 20
* Upgrade dependencies

* Development tools: black to 25.1.0, flake to 7.1.2 and isort to 6.0.1
* open-api-framework to 0.9.6
* commonground-api-common to 2.5.5
* notifications-api-common to 0.7.2

* Upgrade dev dependencies

* black to 25.1.0
* flake to 7.1.2
* isort to 6.0.1

* [:open-api-framework:`116`] Fix codecov publish
* [:open-api-framework:`115`] Fix oas CI check

3.0.2 (2025-03-07)
------------------
Expand Down
2 changes: 1 addition & 1 deletion README.NL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Objecten API
============

:Version: 3.0.2
:Version: 3.0.3
:Source: https://github.com/maykinmedia/objecttypes-api
:Keywords: objecten, assets, zaakobjecten

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Objects API
===========

:Version: 3.0.2
:Version: 3.0.3
:Source: https://github.com/maykinmedia/objects-api
:Keywords: objects, assets, zaakobjecten

Expand Down
8 changes: 4 additions & 4 deletions docs/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ as of March 1, 2022`_. Their specifications can be found below.
API Specification version(s)
====================== ==========================================
`Objecttypes API`_ 2.2.2 (
`Redoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/objecttypes-api/3.0.1/src/objecttypes/api/v2/openapi.yaml>`__,
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/objecttypes-api/3.0.1/src/objecttypes/api/v2/openapi.yaml>`__
`Redoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/objecttypes-api/3.0.2/src/objecttypes/api/v2/openapi.yaml>`__,
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/objecttypes-api/3.0.2/src/objecttypes/api/v2/openapi.yaml>`__
)
`Objects API`_ 2.4.3 (
`Redoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/objects-api/3.0.2/src/objects/api/v2/openapi.yaml>`__,
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/objects-api/3.0.2/src/objects/api/v2/openapi.yaml>`__
`Redoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/objects-api/3.0.3/src/objects/api/v2/openapi.yaml>`__,
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/objects-api/3.0.3/src/objects/api/v2/openapi.yaml>`__
)
====================== ==========================================

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "objects",
"version": "3.0.2",
"version": "3.0.3",
"description": "objects project",
"main": "src/objects/static/bundles/objects-js.js",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions publiccode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ publiccodeYmlVersion: '0.2'
name: Objects API
url: 'http://github.com/maykinmedia/objects-api.git'
softwareType: standalone/backend
softwareVersion: 3.0.2
releaseDate: '2025-03-06'
softwareVersion: 3.0.3
releaseDate: '2025-03-28'
logo: 'https://github.com/maykinmedia/objects-api/blob/master/docs/logo.png'
platforms:
- web
Expand Down
2 changes: 1 addition & 1 deletion src/objects/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .celery import app as celery_app

__all__ = ("celery_app",)
__version__ = "3.0.2"
__version__ = "3.0.3"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/maykinmedia/objects-api"
7 changes: 7 additions & 0 deletions src/objects/conf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,10 @@
)

NOTIFICATIONS_API_GET_DOMAIN = "objects.utils.get_domain"

#
# Needed for geo widget
#
CSP_SCRIPT_SRC = CSP_SCRIPT_SRC + ["cdn.jsdelivr.net"]
CSP_STYLE_SRC = CSP_STYLE_SRC + ["cdn.jsdelivr.net"]
CSP_IMG_SRC = CSP_IMG_SRC + ["tile.openstreetmap.org"]