Skip to content

Commit

Permalink
chore: Release v1.3.1 - See CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun-KumarH committed Sep 19, 2023
1 parent 330a4eb commit 3ddde0e
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 30 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.3.1 (September 18th, 2023)

- updated test proto files

### 1.3.0 (September 18th, 2023)

- updated deps (all fields are made optional in proto file)
Expand Down
50 changes: 25 additions & 25 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@restorecommerce/chassis-srv",
"version": "1.3.0",
"version": "1.3.1",
"description": "Restore Commerce microservice chassis",
"main": "./lib/index.js",
"author": "n-fuse GmbH",
Expand All @@ -19,10 +19,10 @@
"dependencies": {
"@grpc/grpc-js": "^1.9.3",
"@restorecommerce/grpc-client": "^2.0.3",
"@restorecommerce/kafka-client": "^1.1.0",
"@restorecommerce/kafka-client": "^1.1.1",
"@restorecommerce/logger": "^1.2.4",
"@restorecommerce/protos": "^6.1.0",
"@restorecommerce/rc-grpc-clients": "^5.1.0",
"@restorecommerce/protos": "^6.1.1",
"@restorecommerce/rc-grpc-clients": "^5.1.1",
"@restorecommerce/service-config": "^1.0.6",
"arangojs": "^8.4.1",
"async": "^3.2.4",
Expand Down
2 changes: 1 addition & 1 deletion test/microservice.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ describe('microservice.Server', () => {
should.exist(notFoundResult.status);
notFoundResult.status.code.should.equal(404);
notFoundResult.status.message.should.equal('test not found');
notFoundResult.result.should.be.empty();
should.not.exist(notFoundResult.result);

// 'requestStream'
const streamChannel = createChannel(cfg.get('client:stream:address'));
Expand Down

0 comments on commit 3ddde0e

Please sign in to comment.