Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
 - nice-grpc-client-middleware-deadline@1.0.0
 - nice-grpc-common@1.0.0
 - nice-grpc-web@1.0.0
 - nice-grpc@1.0.0
  • Loading branch information
aikoven committed Jun 29, 2021
1 parent 53a4861 commit c064bde
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 9 deletions.
8 changes: 8 additions & 0 deletions packages/nice-grpc-client-middleware-deadline/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2021-06-29)

**Note:** Version bump only for package nice-grpc-client-middleware-deadline
6 changes: 3 additions & 3 deletions packages/nice-grpc-client-middleware-deadline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nice-grpc-client-middleware-deadline",
"version": "0.1.0",
"version": "1.0.0",
"description": "Deadline client middleware for nice-grpc",
"repository": "deeplay-io/nice-grpc",
"main": "lib/index.js",
Expand Down Expand Up @@ -28,10 +28,10 @@
"google-protobuf": "^3.14.0",
"grpc-tools": "^1.10.0",
"grpc_tools_node_protoc_ts": "^5.0.1",
"nice-grpc": "^0.1.5"
"nice-grpc": "^1.0.0"
},
"dependencies": {
"nice-grpc-common": "^0.1.0",
"nice-grpc-common": "^1.0.0",
"node-abort-controller": "^2.0.0"
}
}
8 changes: 8 additions & 0 deletions packages/nice-grpc-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2021-06-29)

**Note:** Version bump only for package nice-grpc-common
4 changes: 2 additions & 2 deletions packages/nice-grpc-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nice-grpc-common",
"version": "0.1.0",
"version": "1.0.0",
"description": "Common stuff for nice-grpc and nice-grpc-web",
"repository": "deeplay-io/nice-grpc",
"main": "lib/index.js",
Expand All @@ -20,7 +20,7 @@
"author": "Daniel Lytkin <aikoven@deeplay.io>",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1"
"@tsconfig/recommended": "^1.0.1"
},
"dependencies": {
"node-abort-controller": "^2.0.0"
Expand Down
11 changes: 11 additions & 0 deletions packages/nice-grpc-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2021-06-29)


### Features

* **nice-grpc-web:** support `ts-proto` service definitions ([#15](https://github.com/deeplay-io/nice-grpc/issues/15)) ([53a4861](https://github.com/deeplay-io/nice-grpc/commit/53a48610ce92263963882a68ef47bdf5ed26190c))
4 changes: 2 additions & 2 deletions packages/nice-grpc-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nice-grpc-web",
"version": "0.1.0",
"version": "1.0.0",
"description": "A Browser gRPC library that is nice to you",
"keywords": [
"grpc",
Expand Down Expand Up @@ -52,7 +52,7 @@
"abort-controller-x": "^0.2.6",
"ix": "^4.4.0",
"js-base64": "^3.6.1",
"nice-grpc-common": "^0.1.0",
"nice-grpc-common": "^1.0.0",
"node-abort-controller": "^2.0.0"
}
}
26 changes: 26 additions & 0 deletions packages/nice-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2021-06-29)


### Code Refactoring

* **nice-grpc:** migrate to `nice-grpc-common` ([#12](https://github.com/deeplay-io/nice-grpc/issues/12)) ([79ec8f8](https://github.com/deeplay-io/nice-grpc/commit/79ec8f8c7c1df9d6d5df4f268acef9c86de766c9))


### Features

* **nice-grpc:** support `ts-proto` service definitions ([#14](https://github.com/deeplay-io/nice-grpc/issues/14)) ([1852519](https://github.com/deeplay-io/nice-grpc/commit/1852519dd8cdb7f616a5a2a14bb45d8902c171c3))


### BREAKING CHANGES

* **nice-grpc:** APIs now use `nice-grpc-common` instead of `grpc-js`

- `grpc-js#Metadata` replaced with `nice-grpc-common#Metadata`.
- `grpc-js#status` replaced with `nice-grpc-common#Status`.
- Server middleware `call.definition` replaced with `call.method` containing a universal method descriptor.
- Built-in deadline support was removed in favor of a separate deadline client middleware.
4 changes: 2 additions & 2 deletions packages/nice-grpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nice-grpc",
"version": "0.1.5",
"version": "1.0.0",
"description": "A Node.js gRPC library that is nice to you",
"keywords": [
"grpc",
Expand Down Expand Up @@ -45,7 +45,7 @@
"dependencies": {
"@grpc/grpc-js": "^1.2.6",
"abort-controller-x": "^0.2.4",
"nice-grpc-common": "^0.1.0",
"nice-grpc-common": "^1.0.0",
"node-abort-controller": "^1.2.1"
}
}

0 comments on commit c064bde

Please # to comment.