Skip to content

Commit 51dbcc3

Browse files
authored
Merge pull request #35 from stainless-api/release-please--branches--main
chore: release main
2 parents efea772 + 28605ea commit 51dbcc3

17 files changed

+89
-23
lines changed

.release-please-manifest.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"packages/cli": "0.1.0",
3-
"packages/express": "0.1.0",
4-
"packages/next-auth": "0.1.0",
5-
"packages/next": "0.1.0",
6-
"packages/prisma": "0.1.0",
7-
"packages/react-query": "0.0.4",
8-
"packages/stainless": "0.1.0",
9-
"packages/ts-to-zod": "0.0.4"
2+
"packages/cli": "0.1.1",
3+
"packages/express": "0.1.2",
4+
"packages/next-auth": "0.1.6",
5+
"packages/next": "0.1.1",
6+
"packages/prisma": "0.1.1",
7+
"packages/react-query": "0.0.5",
8+
"packages/stainless": "0.1.1",
9+
"packages/ts-to-zod": "0.0.5"
1010
}

packages/cli/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### Dependencies
4+
5+
* The following workspace dependencies were updated
6+
* dependencies
7+
* ts-to-zod bumped from github:stainless-api/stl-api#ts-to-zod-0.0.4 to github:stainless-api/stl-api#ts-to-zod-0.0.5
8+
39
## [0.1.0](https://github.com/stainless-api/stl-api/compare/cli-v0.0.3...cli-v0.1.0) (2023-12-06)
410

511
### ⚠ BREAKING CHANGES

packages/cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stl-api/cli",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Bundle-time utilities implementing ergonomic stl-api helpers.\"",
55
"author": "[email protected]",
66
"repository": {
@@ -32,7 +32,7 @@
3232
"pkg-up": "~3.1.0",
3333
"resolve": "^1.22.8",
3434
"ts-morph": "^19.0.0",
35-
"ts-to-zod": "github:stainless-api/stl-api#ts-to-zod-0.0.4"
35+
"ts-to-zod": "github:stainless-api/stl-api#ts-to-zod-0.0.5"
3636
},
3737
"devDependencies": {
3838
"@swc/core": "^1.3.100",

packages/express/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### Dependencies
4+
5+
* The following workspace dependencies were updated
6+
* dependencies
7+
* stainless bumped from github:stainless-api/stl-api#stainless-0.1.3 to github:stainless-api/stl-api#stainless-0.1.1
8+
39
## [0.1.0](https://github.com/stainless-api/stl-api/compare/express-v0.0.3...express-v0.1.0) (2023-12-06)
410

511
### ⚠ BREAKING CHANGES

packages/express/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stl-api/express",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"license": "ISC",
55
"description": "express integration for stainless api",
66
"author": "[email protected]",
@@ -38,6 +38,6 @@
3838
"dependencies": {
3939
"express": "^4.18.2",
4040
"lodash": "^4.17.21",
41-
"stainless": "github:stainless-api/stl-api#stainless-0.1.3"
41+
"stainless": "github:stainless-api/stl-api#stainless-0.1.1"
4242
}
4343
}

packages/next-auth/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### Dependencies
4+
5+
* The following workspace dependencies were updated
6+
* dependencies
7+
* @stl-api/next bumped from github:stainless-api/stl-api#next-0.1.6 to github:stainless-api/stl-api#next-0.1.1
8+
* stainless bumped from github:stainless-api/stl-api#stainless-0.1.3 to github:stainless-api/stl-api#stainless-0.1.1
9+
310
## [0.1.0](https://github.com/stainless-api/stl-api/compare/next-auth-v0.0.3...next-auth-v0.1.0) (2023-12-06)
411

512
### ⚠ BREAKING CHANGES

packages/next-auth/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stl-api/next-auth",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "next-auth plugin for stainless api",
55
"author": "[email protected]",
66
"repository": {
@@ -32,8 +32,8 @@
3232
"typescript": "^5.3.2"
3333
},
3434
"dependencies": {
35-
"@stl-api/next": "github:stainless-api/stl-api#next-0.1.6",
36-
"stainless": "github:stainless-api/stl-api#stainless-0.1.3"
35+
"@stl-api/next": "github:stainless-api/stl-api#next-0.1.1",
36+
"stainless": "github:stainless-api/stl-api#stainless-0.1.1"
3737
},
3838
"peerDependenices": {
3939
"next": "^13.5.6",

packages/next/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.1.1](https://github.com/stainless-api/stl-api/compare/next-v0.1.0...next-v0.1.1) (2024-09-23)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** update dependency hono to v4 [security] ([6c8b437](https://github.com/stainless-api/stl-api/commit/6c8b437fb86c9674cbcf6abe6bdd02253d584187))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* stainless bumped from github:stainless-api/stl-api#stainless-0.1.3 to github:stainless-api/stl-api#stainless-0.1.1
16+
317
## [0.1.0](https://github.com/stainless-api/stl-api/compare/next-v0.0.3...next-v0.1.0) (2023-12-06)
418

519
### ⚠ BREAKING CHANGES

packages/next/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stl-api/next",
3-
"version": "0.1.6",
3+
"version": "0.1.1",
44
"license": "ISC",
55
"description": "next.js plugin for stainless api",
66
"author": "[email protected]",
@@ -34,7 +34,7 @@
3434
"hono": "^4.0.0",
3535
"lodash": "^4.17.21",
3636
"qs": "^6.11.2",
37-
"stainless": "github:stainless-api/stl-api#stainless-0.1.3"
37+
"stainless": "github:stainless-api/stl-api#stainless-0.1.1"
3838
},
3939
"peerDependency": {
4040
"next": "^13.5.6"

packages/prisma/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### Dependencies
4+
5+
* The following workspace dependencies were updated
6+
* dependencies
7+
* stainless bumped from github:stainless-api/stl-api#stainless-0.1.3 to github:stainless-api/stl-api#stainless-0.1.1
8+
39
## [0.1.0](https://github.com/stainless-api/stl-api/compare/prisma-v0.0.3...prisma-v0.1.0) (2023-12-06)
410

511
### ⚠ BREAKING CHANGES

packages/prisma/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stl-api/prisma",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "prisma plugin for stainless api",
55
"author": "[email protected]",
66
"repository": {
@@ -31,7 +31,7 @@
3131
},
3232
"dependencies": {
3333
"lodash": "^4.17.21",
34-
"stainless": "github:stainless-api/stl-api#stainless-0.1.3",
34+
"stainless": "github:stainless-api/stl-api#stainless-0.1.1",
3535
"zod": "^3.22.4"
3636
},
3737
"peerDependencies": {

packages/react-query/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.0.5](https://github.com/stainless-api/stl-api/compare/react-query-v0.0.4...react-query-v0.0.5) (2024-09-23)
4+
5+
6+
### Features
7+
8+
* **react-query:** fix multiple argument query key behavior ([e8f3ffc](https://github.com/stainless-api/stl-api/commit/e8f3ffc9a60fc6edf3344a39b7341717e9fc5dbe))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* stainless bumped from github:stainless-api/stl-api#stainless-0.1.3 to github:stainless-api/stl-api#stainless-0.1.1
16+
317
## [0.0.4](https://github.com/stainless-api/stl-api/compare/react-query-v0.0.3...react-query-v0.0.4) (2023-12-06)
418

519
### Features

packages/react-query/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stl-api/react-query",
3-
"version": "0.1.2",
3+
"version": "0.0.5",
44
"description": "react-query client for stainless api",
55
"author": "[email protected]",
66
"repository": {
@@ -63,7 +63,7 @@
6363
"dependencies": {
6464
"lodash": "^4.17.21",
6565
"qs": "^6.11.2",
66-
"stainless": "github:stainless-api/stl-api#stainless-0.1.3"
66+
"stainless": "github:stainless-api/stl-api#stainless-0.1.1"
6767
},
6868
"peerDependencies": {
6969
"@tanstack/query-core": "^4.29.5",

packages/stainless/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.1](https://github.com/stainless-api/stl-api/compare/stainless-v0.1.0...stainless-v0.1.1) (2024-09-23)
4+
5+
6+
### Bug Fixes
7+
8+
* **api:** disable includable for now ([ccc8298](https://github.com/stainless-api/stl-api/commit/ccc82981f938f9eee0804ed244ced337f5d86924))
9+
310
## [0.1.0](https://github.com/stainless-api/stl-api/compare/stainless-v0.0.3...stainless-v0.1.0) (2023-12-06)
411

512
### ⚠ BREAKING CHANGES

packages/stainless/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stainless",
3-
"version": "0.1.3",
3+
"version": "0.1.1",
44
"description": "stainless api server and client",
55
"author": "[email protected]",
66
"repository": {

packages/ts-to-zod/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### Dependencies
4+
5+
* The following workspace dependencies were updated
6+
* devDependencies
7+
* stainless bumped to 0.1.1
8+
39
## [0.0.4](https://github.com/stainless-api/stl-api/compare/ts-to-zod-v0.0.3...ts-to-zod-v0.0.4) (2023-12-06)
410

511
### Features

packages/ts-to-zod/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-to-zod",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)