Skip to content

Commit

Permalink
Update docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
samscott89 committed Aug 5, 2022
1 parent ad0454d commit c088fe0
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 18 deletions.
23 changes: 23 additions & 0 deletions docs/content/any/project/changelogs/2022-08-05.md
Original file line number Diff line number Diff line change
@@ -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)
15 changes: 1 addition & 14 deletions docs/content/any/project/changelogs/NEXT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down
2 changes: 1 addition & 1 deletion languages/python/django-oso/django_oso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .oso import Oso

__version__ = "0.26.1"
__version__ = "0.26.2"

default_app_config = "django_oso.apps.DjangoOsoConfig"

Expand Down
2 changes: 1 addition & 1 deletion languages/python/django-oso/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
oso~=0.26.1
oso~=0.26.2
django>=2.2
2 changes: 1 addition & 1 deletion languages/python/sqlalchemy-oso/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
oso~=0.26.1
oso~=0.26.2
SQLAlchemy>=1.3.17,<1.5
packaging~=21.3
2 changes: 1 addition & 1 deletion languages/python/sqlalchemy-oso/sqlalchemy_oso/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.26.1"
__version__ = "0.26.2"


from .auth import register_models
Expand Down

0 comments on commit c088fe0

Please sign in to comment.