Skip to content

Commit 67c3709

Browse files
committed
Release 0.1.0-2
1 parent 3365caf commit 67c3709

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Removed
1717

18+
### Deprecated
19+
20+
### Security
21+
22+
## [0.1.0-2] - 2025-05-26
23+
24+
### Added
25+
26+
### Changed
27+
28+
### Fixed
29+
30+
### Removed
31+
1832
- Removed unused `api_` fields.
1933

2034
### Deprecated
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package = "kong-plugin-kong-authz-openfga"
2+
version = "0.1.0-2"
3+
source = {
4+
url = "git+https://github.com/dol/kong-authz-openfga.git",
5+
tag = "v0.1.0-2"
6+
}
7+
description = {
8+
summary = "Kong plugin for kong-authz-openfga integration",
9+
homepage = "https://github.com/dol/kong-authz-openfga",
10+
license = "MIT"
11+
}
12+
dependencies = {
13+
"lua ~> 5.1"
14+
}
15+
build = {
16+
type = "builtin",
17+
modules = {
18+
["kong.plugins.kong-authz-openfga.access"] = "kong/plugins/kong-authz-openfga/access.lua",
19+
["kong.plugins.kong-authz-openfga.handler"] = "kong/plugins/kong-authz-openfga/handler.lua",
20+
["kong.plugins.kong-authz-openfga.schema"] = "kong/plugins/kong-authz-openfga/schema.lua"
21+
}
22+
}

plugin.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
KONG_PLUGIN_NAME=kong-authz-openfga
22
KONG_PLUGIN_VERSION=0.1.0
3-
KONG_PLUGIN_REVISION=1
3+
KONG_PLUGIN_REVISION=2
44
# Important: If you change any version, the image hash/digest must be updated as well
55
# wget -q -O - "https://hub.docker.com/v2/namespaces/kong/repositories/kong-gateway/tags?page_size=1000" | jq -r '.results[] | "\(.name)@\(.digest)"' | grep '^3.*-rhel' | sed '/-/!{s/$/_/}' | sort -V | sed 's/_$//'
66
KONG_IMAGE_NAME=docker.io/kong/kong-gateway

0 commit comments

Comments
 (0)