Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
feat: Supporting new 3.0.0 interface and bulk export (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyen102 committed Nov 12, 2020
1 parent 1de9d52 commit 25adc00
Show file tree
Hide file tree
Showing 7 changed files with 903 additions and 446 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ module.exports = {
'@typescript-eslint/no-useless-constructor': 'error',
'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': 'error',
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["**/*.test.ts"]}]
},
settings: {
'import/resolver': {
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,18 @@

All notable changes to this project will be documented in this file.

## [3.0.0] - 2020-11-11

### Added

- feat: Implement `fhir-works-on-aws-interface` v3.0.0
- This adds 4 new methods to this package
- Throwing UnauthorizedError instead of a boolean

## [2.0.0] - 2020-09-25

### Added

- Implement `fhir-works-on-aws-interface` v2.0.0

## [1.0.0] - 2020-08-31
Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @awslabs/fhir-works
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fhir-works-on-aws-authz-rbac",
"version": "2.0.0",
"version": "3.0.0",
"description": "FHIR Works on AWS role base access control",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -28,13 +28,16 @@
"prepublish": "tsc"
},
"dependencies": {
"fhir-works-on-aws-interface": "^2.0.0",
"jsonwebtoken": "^8.5.1"
"fhir-works-on-aws-interface": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.161",
"@types/node": "^12",
"@types/shuffle-array": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
Expand All @@ -45,6 +48,7 @@
"jest": "^25.1.0",
"jest-mock-extended": "^1.0.8",
"prettier": "^1.19.1",
"shuffle-array": "^1.0.1",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
},
Expand Down
Loading

0 comments on commit 25adc00

Please sign in to comment.