diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 89884b8158..29307b4ecd 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -6,7 +6,7 @@ on: description: "docs s3 path (docs.oso.dev or docs-preview.oso.dev)" oso_version: description: "oso release to build docs for" - default: "0.26.0" # oso_version + default: "0.26.1" # oso_version flask_oso_version: description: "flask oso release to build docs for" default: "0.26.0" # flask_oso_version diff --git a/Cargo.lock b/Cargo.lock index 0ec0f33fd9..ab30118888 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -655,7 +655,7 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "oso" -version = "0.26.0" +version = "0.26.1" dependencies = [ "anyhow", "clap", @@ -679,7 +679,7 @@ dependencies = [ [[package]] name = "oso-derive" -version = "0.26.0" +version = "0.26.1" dependencies = [ "quote", "syn", @@ -795,7 +795,7 @@ dependencies = [ [[package]] name = "polar-c-api" -version = "0.26.0" +version = "0.26.1" dependencies = [ "cbindgen", "polar-core", @@ -805,7 +805,7 @@ dependencies = [ [[package]] name = "polar-core" -version = "0.26.0" +version = "0.26.1" dependencies = [ "criterion", "indoc", @@ -825,7 +825,7 @@ dependencies = [ [[package]] name = "polar-language-server" -version = "0.26.0" +version = "0.26.1" dependencies = [ "console_error_panic_hook", "js-sys", @@ -839,7 +839,7 @@ dependencies = [ [[package]] name = "polar-wasm-api" -version = "0.26.0" +version = "0.26.1" dependencies = [ "console_error_panic_hook", "js-sys", diff --git a/VERSION b/VERSION index 4e8f395fa5..30f6cf8d98 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.26.0 +0.26.1 diff --git a/docs/content/any/project/changelogs/2022-05-04.md b/docs/content/any/project/changelogs/2022-05-04.md new file mode 100644 index 0000000000..c8b481712a --- /dev/null +++ b/docs/content/any/project/changelogs/2022-05-04.md @@ -0,0 +1,18 @@ +--- +title: Release 2022-05-04 +menuTitle: 2022-05-04 +any: true +description: >- + Changelog for Release 2022-05-04 (oso 0.26.1) containing new features, + bug fixes, and more. +draft: false +--- + +## `oso` 0.26.1 + +### 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 2652d9e6d5..e2c15a74ed 100644 --- a/docs/content/any/project/changelogs/NEXT.md +++ b/docs/content/any/project/changelogs/NEXT.md @@ -10,13 +10,6 @@ draft: true ## `RELEASED_PACKAGE_1` NEW_VERSION -### 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) - ### LANGUAGE (e.g., 'Core' or 'Python' or 'Node.js') #### Breaking changes @@ -47,5 +40,3 @@ Link to [relevant documentation section](). - Bulleted list - Of smaller improvements - Potentially with doc [links](). - - diff --git a/docs/examples/Makefile b/docs/examples/Makefile index 1d67504c13..ea301b476d 100644 --- a/docs/examples/Makefile +++ b/docs/examples/Makefile @@ -7,7 +7,7 @@ JS_DIR := $(OSO_ROOT)/languages/js RUBY_DIR := $(OSO_ROOT)/languages/ruby # Needed for tests -JAVA_PACKAGE_JAR_PATH := $(JAVA_DIR)/oso/target/oso-0.26.0.jar +JAVA_PACKAGE_JAR_PATH := $(JAVA_DIR)/oso/target/oso-0.26.1.jar # Note: if you are using bundler in a sub-makefile (in a docs test for example), # you need to add `unexport BUNDLE_GEMFILE` to that makefile. Otherwise this diff --git a/languages/java/oso/pom.xml b/languages/java/oso/pom.xml index 35b63e3652..072ca1c18d 100644 --- a/languages/java/oso/pom.xml +++ b/languages/java/oso/pom.xml @@ -12,7 +12,7 @@ com.osohq oso - 0.26.0 + 0.26.1 diff --git a/languages/js/package.json b/languages/js/package.json index f34f35d616..b0be661adf 100644 --- a/languages/js/package.json +++ b/languages/js/package.json @@ -1,6 +1,6 @@ { "name": "oso", - "version": "0.26.0", + "version": "0.26.1", "description": "oso authorization library.", "bin": "bin/repl.js", "main": "dist/src/index.js", diff --git a/languages/python/docs/conf.py b/languages/python/docs/conf.py index 3565a83bcb..f712d92458 100644 --- a/languages/python/docs/conf.py +++ b/languages/python/docs/conf.py @@ -42,8 +42,8 @@ project = "oso" copyright = "2020-2021 Oso Security, Inc" author = "oso" -version = "0.26.0" -release = "0.26.0" +version = "0.26.1" +release = "0.26.1" # -- General configuration --------------------------------------------------- diff --git a/languages/python/oso/oso/oso.py b/languages/python/oso/oso/oso.py index 6b3e293aff..e391bd7725 100644 --- a/languages/python/oso/oso/oso.py +++ b/languages/python/oso/oso/oso.py @@ -1,6 +1,6 @@ """Core oso functionality""" -__version__ = "0.26.0" +__version__ = "0.26.1" import os from typing import List, Any, Set diff --git a/languages/ruby/Gemfile.lock b/languages/ruby/Gemfile.lock index e395f01c8b..640443b4ca 100644 --- a/languages/ruby/Gemfile.lock +++ b/languages/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - oso-oso (0.26.0) + oso-oso (0.26.1) ffi (~> 1.0) GEM diff --git a/languages/ruby/lib/oso/version.rb b/languages/ruby/lib/oso/version.rb index 7a08b94775..8538334bef 100644 --- a/languages/ruby/lib/oso/version.rb +++ b/languages/ruby/lib/oso/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Oso - VERSION = '0.26.0' + VERSION = '0.26.1' end diff --git a/languages/rust/oso-derive/Cargo.toml b/languages/rust/oso-derive/Cargo.toml index 375719d89e..007666e8ea 100644 --- a/languages/rust/oso-derive/Cargo.toml +++ b/languages/rust/oso-derive/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" homepage = "https://github.com/osohq/oso" readme = "README.md" -version = "0.26.0" +version = "0.26.1" edition = "2021" diff --git a/languages/rust/oso/Cargo.toml b/languages/rust/oso/Cargo.toml index 12b1d95a37..1f7d6f4936 100644 --- a/languages/rust/oso/Cargo.toml +++ b/languages/rust/oso/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" name = "oso" readme = "README.md" -version = "0.26.0" +version = "0.26.1" edition = "2021" @@ -30,8 +30,8 @@ required-features = ["anyhow"] [dependencies] impl-trait-for-tuples = "0.2.1" maplit = "1.0.2" -oso-derive = { path = "../oso-derive", version = "=0.26.0", optional = true } -polar-core = { path = "../../../polar-core", version = "=0.26.0" } +oso-derive = { path = "../oso-derive", version = "=0.26.1", optional = true } +polar-core = { path = "../../../polar-core", version = "=0.26.1" } thiserror = "1.0.30" tracing = { version = "0.1.29", features = ["log"] } tracing-subscriber = { version = "0.3.1", default-features = false, features = [ @@ -51,7 +51,7 @@ uuid-10 = { package = "uuid", version = ">=1.0.0, <2.0.0", optional = true } [dev-dependencies] anyhow = "1.0.44" criterion = "0.3.5" -oso-derive = { path = "../oso-derive", version = "=0.26.0" } +oso-derive = { path = "../oso-derive", version = "=0.26.1" } static_assertions = "1.1.0" tempfile = "3.2.0" diff --git a/polar-c-api/Cargo.toml b/polar-c-api/Cargo.toml index f57ed6ef13..450f987ec4 100644 --- a/polar-c-api/Cargo.toml +++ b/polar-c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polar-c-api" -version = "0.26.0" +version = "0.26.1" authors = ["Oso Security, Inc. "] edition = "2021" @@ -10,7 +10,7 @@ crate-type = ["lib", "staticlib", "cdylib"] bench = false [dependencies] -polar-core = { path = "../polar-core", version = "=0.26.0" } +polar-core = { path = "../polar-core", version = "=0.26.1" } serde = "1.0" serde_json = "1.0.61" diff --git a/polar-core/Cargo.toml b/polar-core/Cargo.toml index 128ebee889..f4e6e1b4d2 100644 --- a/polar-core/Cargo.toml +++ b/polar-core/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" homepage = "https://github.com/osohq/oso" readme = "README.md" -version = "0.26.0" +version = "0.26.1" edition = "2021" diff --git a/polar-language-server/Cargo.toml b/polar-language-server/Cargo.toml index fbebc53953..3dbd0beab4 100644 --- a/polar-language-server/Cargo.toml +++ b/polar-language-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polar-language-server" -version = "0.26.0" +version = "0.26.1" authors = ["Oso Security, Inc. "] edition = "2021" @@ -12,7 +12,7 @@ bench = false console_error_panic_hook = "0.1.6" js-sys = "0.3.53" lsp-types = "0.90.0" -polar-core = { path = "../polar-core", version = "=0.26.0" } +polar-core = { path = "../polar-core", version = "=0.26.1" } serde = { version = "1.0", features = ["derive"] } serde-wasm-bindgen = "0.3.1" wasm-bindgen = "0.2.76" diff --git a/polar-wasm-api/Cargo.toml b/polar-wasm-api/Cargo.toml index ac5f6c1399..99bc3cc867 100644 --- a/polar-wasm-api/Cargo.toml +++ b/polar-wasm-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polar-wasm-api" -version = "0.26.0" +version = "0.26.1" authors = ["Oso Security, Inc. "] edition = "2021" @@ -11,7 +11,7 @@ bench = false [dependencies] console_error_panic_hook = "0.1.6" js-sys = "0.3.53" -polar-core = { path = "../polar-core", version = "=0.26.0" } +polar-core = { path = "../polar-core", version = "=0.26.1" } serde = { version = "1.0.119", features = ["rc"] } serde-wasm-bindgen = "0.3.1" wasm-bindgen = "0.2.76" diff --git a/vscode/oso/package.json b/vscode/oso/package.json index 4885776835..cd8a975350 100644 --- a/vscode/oso/package.json +++ b/vscode/oso/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.26.0", + "version": "0.26.1", "name": "oso", "displayName": "Oso", "author": "Oso Security Inc.",