Skip to content
This repository has been archived by the owner on Jul 17, 2021. It is now read-only.

Commit

Permalink
chore(release): 1.2.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.2.0](v1.1.5...v1.2.0) (2021-04-08)

### Features

* use WebCrypto API instead of node crypto ([f6573be](f6573be)), closes [#4](#4)
  • Loading branch information
semantic-release-bot committed Apr 8, 2021
1 parent f6573be commit a4315aa
Show file tree
Hide file tree
Showing 12 changed files with 136 additions and 56 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.2.0](https://github.com/iris-gateway/IRIS-library-js/compare/v1.1.5...v1.2.0) (2021-04-08)


### Features

* use WebCrypto API instead of node crypto ([f6573be](https://github.com/iris-gateway/IRIS-library-js/commit/f6573be6cec7fee6d002d7d0bed7e95e57d8715c)), closes [#4](https://github.com/iris-gateway/IRIS-library-js/issues/4)

## [1.1.5](https://github.com/iris-gateway/IRIS-library-js/compare/v1.1.4...v1.1.5) (2021-03-27)


Expand Down
75 changes: 42 additions & 33 deletions dist/index.test.js

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

2 changes: 1 addition & 1 deletion dist/index.test.js.map

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

2 changes: 1 addition & 1 deletion dist/lib/Iris.js

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

2 changes: 1 addition & 1 deletion dist/lib/Iris.js.map

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

4 changes: 2 additions & 2 deletions dist/lib/crypto.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export declare function encryptData(keyOfHealthDepartment: string, data: any): {
export declare function encryptData(keyOfHealthDepartment: string, data: any): Promise<{
dataToTransport: string;
keyToTransport: string;
nonce: string;
};
}>;
45 changes: 35 additions & 10 deletions dist/lib/crypto.js

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

Loading

0 comments on commit a4315aa

Please sign in to comment.