Skip to content

Commit

Permalink
Release v0.13.2 (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
smaye81 authored Aug 29, 2023
1 parent 2675e56 commit 73e8b76
Show file tree
Hide file tree
Showing 21 changed files with 69 additions and 69 deletions.
62 changes: 31 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/connect-express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connectrpc/connect-express",
"version": "0.13.1",
"version": "0.13.2",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand All @@ -26,8 +26,8 @@
"node": ">=16.0.0"
},
"dependencies": {
"@connectrpc/connect": "0.13.1",
"@connectrpc/connect-node": "^0.13.1",
"@connectrpc/connect": "0.13.2",
"@connectrpc/connect-node": "^0.13.2",
"@types/express": "^4.17.17"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/connect-fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connectrpc/connect-fastify",
"version": "0.13.1",
"version": "0.13.2",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand All @@ -26,8 +26,8 @@
"node": ">=16.0.0"
},
"dependencies": {
"@connectrpc/connect": "0.13.1",
"@connectrpc/connect-node": "^0.13.1",
"@connectrpc/connect": "0.13.2",
"@connectrpc/connect-node": "^0.13.2",
"fastify": "^4.21.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-migrate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connectrpc/connect-migrate",
"version": "0.13.1",
"version": "0.13.2",
"description": "This tool updates your Connect project to use the new @connectrpc packages.",
"license": "Apache-2.0",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions packages/connect-migrate/src/migrations/v0.13.1.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ describe("migration", function () {
expect(packageJsonWritten.length).toBe(1);
expect(packageJsonWritten[0].pkg).toEqual({
dependencies: {
"@connectrpc/connect": "^0.13.1",
"@connectrpc/connect-web": "^0.13.1",
"@connectrpc/protoc-gen-connect-es": "^" + targetVersionConnectEs,
"@connectrpc/connect": `^${targetVersionConnectEs}`,
"@connectrpc/connect-web": `^${targetVersionConnectEs}`,
"@connectrpc/protoc-gen-connect-es": `^${targetVersionConnectEs}`,
},
});
expect(lockFilesUpdated.length).toBe(1);
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-migrate/src/migrations/v0.13.1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { migrateSourceFiles } from "../lib/migrate-source-files";
import { migratePackages } from "../lib/migrate-packages";
import { migrateLockFiles } from "../lib/migrate-lock-files";

export const targetVersionConnectEs = "0.13.1";
export const targetVersionConnectEs = "0.13.2";
export const targetVersionConnectQuery = "0.4.2";

/**
Expand Down
6 changes: 3 additions & 3 deletions packages/connect-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connectrpc/connect-next",
"version": "0.13.1",
"version": "0.13.2",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand All @@ -26,8 +26,8 @@
"node": ">=16.0.0"
},
"dependencies": {
"@connectrpc/connect": "0.13.1",
"@connectrpc/connect-node": "^0.13.1"
"@connectrpc/connect": "0.13.2",
"@connectrpc/connect-node": "^0.13.2"
},
"peerDependencies": {
"@bufbuild/protobuf": "^1.2.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/connect-node-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"default": "./dist/esm/index.js"
},
"dependencies": {
"@connectrpc/connect": "0.13.1",
"@connectrpc/connect-express": "0.13.1",
"@connectrpc/connect-fastify": "0.13.1",
"@connectrpc/connect-node": "0.13.1",
"@connectrpc/connect-web": "0.13.1",
"@connectrpc/connect": "0.13.2",
"@connectrpc/connect-express": "0.13.2",
"@connectrpc/connect-fastify": "0.13.2",
"@connectrpc/connect-node": "0.13.2",
"@connectrpc/connect-web": "0.13.2",
"@grpc/grpc-js": "^1.8.21",
"@types/express": "^4.17.17",
"@types/jasmine": "^4.3.5",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/connect-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connectrpc/connect-node",
"version": "0.13.1",
"version": "0.13.2",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand All @@ -26,7 +26,7 @@
"node": ">=16.0.0"
},
"dependencies": {
"@connectrpc/connect": "0.13.1",
"@connectrpc/connect": "0.13.2",
"undici": "^5.23.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-web-bench/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ it like a web server would usually do.

| code generator | bundle size | minified | compressed |
|----------------|-------------------:|-----------------------:|---------------------:|
| connect | 112,509 b | 49,592 b | 13,389 b |
| connect | 112,509 b | 49,592 b | 13,387 b |
| grpc-web | 414,071 b | 300,352 b | 53,255 b |
2 changes: 1 addition & 1 deletion packages/connect-web-bench/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"clean": "rm -rf README.md src/gen"
},
"dependencies": {
"@connectrpc/connect-web": "0.13.1",
"@connectrpc/connect-web": "0.13.2",
"@bufbuild/protobuf": "^1.2.1",
"@bufbuild/protoc-gen-es": "^1.2.1",
"brotli": "^1.3.3",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/connect-web-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"default": "./dist/esm/index.js"
},
"dependencies": {
"@connectrpc/connect-web": "0.13.1",
"@connectrpc/connect": "0.13.1",
"@connectrpc/connect-web": "0.13.2",
"@connectrpc/connect": "0.13.2",
"@types/jasmine": "^4.3.5",
"esbuild": "^0.16.12",
"jasmine": "^5.0.0",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/connect-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connectrpc/connect-web",
"version": "0.13.1",
"version": "0.13.2",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand All @@ -23,7 +23,7 @@
"require": "./dist/cjs/index.js"
},
"dependencies": {
"@connectrpc/connect": "0.13.1"
"@connectrpc/connect": "0.13.2"
},
"peerDependencies": {
"@bufbuild/protobuf": "^1.2.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/connect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connectrpc/connect",
"version": "0.13.1",
"version": "0.13.2",
"description": "Type-safe APIs with Protobuf and TypeScript.",
"license": "Apache-2.0",
"repository": {
Expand Down
Loading

0 comments on commit 73e8b76

Please sign in to comment.