Skip to content

Commit 8e56c9c

Browse files
committed
chore(release): publish
- project: keto-relations-parser 0.0.8 - project: kratos-client-wrapper 0.1.5 - project: base-client-wrapper 0.1.5 - project: keto-client-wrapper 0.2.4 - project: kratos-cli 0.2.0 - project: keto-cli 0.2.0
1 parent 9c9e68f commit 8e56c9c

File tree

12 files changed

+119
-10
lines changed

12 files changed

+119
-10
lines changed

packages/base-client-wrapper/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.5 (2024-04-05)
2+
3+
This was a version bump only for base-client-wrapper to align it with other projects, there were no code changes.
4+
15
## 0.1.4 (2024-04-05)
26

37
This was a version bump only for base-client-wrapper to align it with other projects, there were no code changes.

packages/base-client-wrapper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@getlarge/base-client-wrapper",
33
"private": true,
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"license": "MIT",
66
"dependencies": {
77
"@nestjs/axios": "^3.0.1",

packages/keto-cli/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## 0.2.0 (2024-04-05)
2+
3+
4+
### 🚀 Features
5+
6+
- improve CLI loggers ([075fd52](https://github.com/getlarge/nestjs-ory-integration/commit/075fd52))
7+
8+
- **keto-cli:** create CLI to interact with Keto API ([35ff1a6](https://github.com/getlarge/nestjs-ory-integration/commit/35ff1a6))
9+
10+
- **keto-cli:** type and validate ConfigService values ([f4d8242](https://github.com/getlarge/nestjs-ory-integration/commit/f4d8242))
11+
12+
- **keto-cli:** add CreateRelationCommand ([487e238](https://github.com/getlarge/nestjs-ory-integration/commit/487e238))
13+
14+
- **keto-cli:** create DeleteRelationCommand ([d0bb25c](https://github.com/getlarge/nestjs-ory-integration/commit/d0bb25c))
15+
16+
- **keto-cli:** create ExpandPermissionsCommand ([8d25484](https://github.com/getlarge/nestjs-ory-integration/commit/8d25484))
17+
18+
- **keto-cli:** create GetRelationsCommand ([1c70342](https://github.com/getlarge/nestjs-ory-integration/commit/1c70342))
19+
20+
21+
### 🩹 Fixes
22+
23+
- **keto-cli:** handle checkPermission response correctly ([e6cb12b](https://github.com/getlarge/nestjs-ory-integration/commit/e6cb12b))
24+
25+
- **keto-cli:** make option casing uniform ([5483446](https://github.com/getlarge/nestjs-ory-integration/commit/5483446))
26+
27+
28+
### ❤️ Thank You
29+
30+
- Edouard @getlarge
31+
- getlarge @getlarge
32+
133
## 0.1.2 (2024-04-05)
234

335

packages/keto-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "@getlarge/keto-cli",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"license": "MIT",
55
"homepage": "https://github.com/getlarge/nestjs-ory-integration/tree/main/packages/keto-cli",
66
"publishConfig": {
77
"access": "public"
88
},
99
"dependencies": {
1010
"tslib": "^2.3.0",
11-
"@getlarge/keto-client-wrapper": "0.2.3",
11+
"@getlarge/keto-client-wrapper": "0.2.4",
1212
"@nestjs/common": "^10.0.2",
1313
"@nestjs/config": "^3.1.1",
14-
"@getlarge/keto-relations-parser": "0.0.7",
14+
"@getlarge/keto-relations-parser": "0.0.8",
1515
"@ory/client": "^1.4.9",
1616
"nest-commander": "^3.12.5",
1717
"class-transformer": "^0.5.1",

packages/keto-client-wrapper/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.2.4 (2024-04-05)
2+
3+
4+
### 🚀 Features
5+
6+
- **keto-cli:** create CLI to interact with Keto API ([35ff1a6](https://github.com/getlarge/nestjs-ory-integration/commit/35ff1a6))
7+
8+
- **keto-client-wrapper:** allow override Ory client configuration ([7ad906d](https://github.com/getlarge/nestjs-ory-integration/commit/7ad906d))
9+
10+
11+
### 🩹 Fixes
12+
13+
- update useFactory arguments to allow any type in ory-permissions, ory-relationships, ory-frontend, and ory-identities module interfaces ([b776b5d](https://github.com/getlarge/nestjs-ory-integration/commit/b776b5d))
14+
15+
16+
### ❤️ Thank You
17+
18+
- Edouard @getlarge
19+
- getlarge @getlarge
20+
121
## 0.2.3 (2024-04-05)
222

323

packages/keto-client-wrapper/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@getlarge/keto-client-wrapper",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"license": "MIT",
55
"homepage": "https://github.com/getlarge/nestjs-ory-integration/tree/main/packages/keto-client-wrapper",
66
"publishConfig": {
77
"access": "public"
88
},
99
"dependencies": {
10-
"@getlarge/keto-relations-parser": "0.0.7",
10+
"@getlarge/keto-relations-parser": "0.0.8",
1111
"tslib": "^2.3.0",
1212
"defekt": "^9.3.1",
1313
"rxjs": "^7.8.0"

packages/keto-relations-parser/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 0.0.8 (2024-04-05)
2+
3+
4+
### 🚀 Features
5+
6+
- **keto-relations-parser:** export extra types ([715ecac](https://github.com/getlarge/nestjs-ory-integration/commit/715ecac))
7+
8+
9+
### ❤️ Thank You
10+
11+
- Edouard @getlarge
12+
- getlarge @getlarge
13+
114
## 0.0.7 (2024-04-05)
215

316

packages/keto-relations-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@getlarge/keto-relations-parser",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"license": "MIT",
55
"homepage": "https://github.com/getlarge/nestjs-ory-integration/tree/main/packages/keto-relations-parser",
66
"publishConfig": {

packages/kratos-cli/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 0.2.0 (2024-04-05)
2+
3+
4+
### 🚀 Features
5+
6+
- improve CLI loggers ([075fd52](https://github.com/getlarge/nestjs-ory-integration/commit/075fd52))
7+
8+
- **kratos-cli:** init AppModule ([54ec682](https://github.com/getlarge/nestjs-ory-integration/commit/54ec682))
9+
10+
- **kratos-cli:** create Login and Registration commands ([516f027](https://github.com/getlarge/nestjs-ory-integration/commit/516f027))
11+
12+
13+
### 🩹 Fixes
14+
15+
- **kratos-cli:** enable password via CLI flag ([654fec0](https://github.com/getlarge/nestjs-ory-integration/commit/654fec0))
16+
17+
18+
### ❤️ Thank You
19+
20+
- Edouard @getlarge
21+
- getlarge @getlarge
22+
123
## 0.1.1 (2024-04-05)
224

325

packages/kratos-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@getlarge/kratos-cli",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"license": "MIT",
55
"homepage": "https://github.com/getlarge/nestjs-ory-integration/tree/main/packages/kratos-cli",
66
"publishConfig": {
@@ -9,7 +9,7 @@
99
"dependencies": {
1010
"tslib": "^2.3.0",
1111
"@nestjs/common": "^10.0.2",
12-
"@getlarge/kratos-client-wrapper": "0.1.4",
12+
"@getlarge/kratos-client-wrapper": "0.1.5",
1313
"@nestjs/config": "^3.1.1",
1414
"nest-commander": "^3.12.5",
1515
"class-transformer": "^0.5.1",

0 commit comments

Comments
 (0)