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
7 changes: 6 additions & 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.1
current_version = 3.0.2

[bumpversion:file:README.rst]
search = :Version: {current_version}
Expand All @@ -22,3 +22,8 @@ replace = "version": "{new_version}"
[bumpversion:file:publiccode.yaml]
search = softwareVersion: {current_version}
replace = softwareVersion: {new_version}

[bumpversion:file(date):publiccode.yaml] # works with bump-my-version
search = releaseDate: '\d{{4}}-\d{{2}}-\d{{2}}'
replace = releaseDate: '{now:%Y-%m-%d}'
regex = true
21 changes: 21 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@
Change history
==============

3.0.2 (2025-03-07)
------------------

**Bugfixes and QOL**

* [:objects-api:`538`] Optimize objects list performance
* [:objects-api:`523`] Added help text in Permission admin view to explain that authorization fields are
reset when the Object type is changed

**Project maintenance**

* Upgrade dependencies:

* [:objects-api:`541`] Upgrade kombu to 5.4.2, this should fix the issue that caused Celery workers
to not be able to reestablish connections with Redis
* Upgrade Django to 4.2.20
* Upgrade jinja2 to 3.1.6 to fix security issue

* [:objects-api:`538`] Add performance test for objects API list
* [:objects-api:`538`] Add django-silk for performance profiling in development environment

3.0.1 (2025-03-04)
------------------

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.1
:Version: 3.0.2
: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.1
:Version: 3.0.2
:Source: https://github.com/maykinmedia/objects-api
:Keywords: objects, assets, zaakobjecten

Expand Down
4 changes: 2 additions & 2 deletions docs/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ API Specification version(s)
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/objecttypes-api/3.0.1/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.1/src/objects/api/v2/openapi.yaml>`__,
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/objects-api/3.0.1/src/objects/api/v2/openapi.yaml>`__
`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>`__
)
====================== ==========================================

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.1",
"version": "3.0.2",
"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.1
releaseDate: '2025-01-22'
softwareVersion: 3.0.2
releaseDate: '2025-03-06'
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.1"
__version__ = "3.0.2"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/maykinmedia/objects-api"