From c088fe0dc732dadcd91a78b69bd93eda35baabca Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Fri, 5 Aug 2022 15:56:45 -0500 Subject: [PATCH] Update docs. --- .../any/project/changelogs/2022-08-05.md | 23 +++++++++++++++++++ docs/content/any/project/changelogs/NEXT.md | 15 +----------- .../python/django-oso/django_oso/__init__.py | 2 +- languages/python/django-oso/requirements.txt | 2 +- .../python/sqlalchemy-oso/requirements.txt | 2 +- .../sqlalchemy-oso/sqlalchemy_oso/__init__.py | 2 +- 6 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 docs/content/any/project/changelogs/2022-08-05.md diff --git a/docs/content/any/project/changelogs/2022-08-05.md b/docs/content/any/project/changelogs/2022-08-05.md new file mode 100644 index 0000000000..21f0fe6a00 --- /dev/null +++ b/docs/content/any/project/changelogs/2022-08-05.md @@ -0,0 +1,23 @@ +--- +title: Release 2022-08-05 +menuTitle: 2022-08-05 +any: true +description: >- + Changelog for Release 2022-08-05 (0.26.2) containing new features, + bug fixes, and more. +--- + +## `oso 0.26.2` + +### Java + +#### Other bugs & improvements. + +A new `loadFilesFromResources` API has been added to allow loading policy source code from resource files contained in your packaged `.jar`. Special thanks to [`@kovacstamasx`](https://github.com/kovacstamasx) for this contribution. + +### Python + +#### Other bugs & improvements + +- Resolved an `IndexError` exception in `sqlalchemy-oso` Data Filtering. (thanks to @jackdreillyvia for the contribution) +- Resolved a false-negative in `sqlalchemy-oso` Data Filtering when comparing ORM objects. (thanks to @jackdreillyvia for the contribution) diff --git a/docs/content/any/project/changelogs/NEXT.md b/docs/content/any/project/changelogs/NEXT.md index 8f94d7f635..e2c15a74ed 100644 --- a/docs/content/any/project/changelogs/NEXT.md +++ b/docs/content/any/project/changelogs/NEXT.md @@ -8,20 +8,7 @@ description: >- draft: true --- -## `oso 0.26.2` - -### Java - -#### Other bugs & improvements. - -A new `loadFilesFromResources` API has been added to allow loading policy source code from resource files contained in your packaged `.jar`. Special thanks to [`@kovacstamasx`](https://github.com/kovacstamasx) for this contribution. - -### Python - -#### Other bugs & improvements - -- Resolved an `IndexError` exception in `sqlalchemy-oso` Data Filtering. (thanks to @jackdreillyvia for the contribution) -- Resolved a false-negative in `sqlalchemy-oso` Data Filtering when comparing ORM objects. (thanks to @jackdreillyvia for the contribution) +## `RELEASED_PACKAGE_1` NEW_VERSION ### LANGUAGE (e.g., 'Core' or 'Python' or 'Node.js') diff --git a/languages/python/django-oso/django_oso/__init__.py b/languages/python/django-oso/django_oso/__init__.py index aa0f4ac583..ce5e2a05db 100644 --- a/languages/python/django-oso/django_oso/__init__.py +++ b/languages/python/django-oso/django_oso/__init__.py @@ -2,7 +2,7 @@ from .oso import Oso -__version__ = "0.26.1" +__version__ = "0.26.2" default_app_config = "django_oso.apps.DjangoOsoConfig" diff --git a/languages/python/django-oso/requirements.txt b/languages/python/django-oso/requirements.txt index 4a91480c6d..13b03c6fa9 100644 --- a/languages/python/django-oso/requirements.txt +++ b/languages/python/django-oso/requirements.txt @@ -1,2 +1,2 @@ -oso~=0.26.1 +oso~=0.26.2 django>=2.2 diff --git a/languages/python/sqlalchemy-oso/requirements.txt b/languages/python/sqlalchemy-oso/requirements.txt index 00fa97f15f..9c7fff47a0 100644 --- a/languages/python/sqlalchemy-oso/requirements.txt +++ b/languages/python/sqlalchemy-oso/requirements.txt @@ -1,3 +1,3 @@ -oso~=0.26.1 +oso~=0.26.2 SQLAlchemy>=1.3.17,<1.5 packaging~=21.3 diff --git a/languages/python/sqlalchemy-oso/sqlalchemy_oso/__init__.py b/languages/python/sqlalchemy-oso/sqlalchemy_oso/__init__.py index 9d1d1eec02..ff2471b10e 100644 --- a/languages/python/sqlalchemy-oso/sqlalchemy_oso/__init__.py +++ b/languages/python/sqlalchemy-oso/sqlalchemy_oso/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.26.1" +__version__ = "0.26.2" from .auth import register_models