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

Commit a5d322d

Browse files
authored
Increment version to 1.0.0 (#90)
* Update package.json information * Add change log * Remove auto publishing
1 parent 18b03a7 commit a5d322d

12 files changed

+95
-98
lines changed

.github/workflows/deploy.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
uses: actions/setup-node@v1
2020
with:
2121
node-version: 12
22-
registry-url: https://npm.pkg.github.com/
23-
scope: '@awslabs'
2422
- name: Install dependencies
2523
run: |
2624
cd auditLogMover
@@ -59,8 +57,6 @@ jobs:
5957
uses: actions/setup-node@v1
6058
with:
6159
node-version: 12
62-
registry-url: https://npm.pkg.github.com/
63-
scope: '@awslabs'
6460
- name: Setup config file
6561
env:
6662
DEV_AWS_USER_ACCOUNT_ARN: ${{ secrets.DEV_AWS_USER_ACCOUNT_ARN }}

.github/workflows/unit-test.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
uses: actions/setup-node@v1
2020
with:
2121
node-version: 12
22-
registry-url: https://npm.pkg.github.com/
23-
scope: '@awslabs'
2422
- name: Install dependencies
2523
run: |
2624
cd auditLogMover

.npmignore

-21
This file was deleted.

.npmrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# Helps with using npm package-locally, while in a yarn workflow (avoids coupling scripts to yarn).
22
# This is needed because yarn goes out of it's way to ensure it controls what `node` binary is used (for good!)
3-
scripts-prepend-node-path=auto
4-
@awslabs:registry=https://npm.pkg.github.com
3+
scripts-prepend-node-path=auto

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.0.0] - 2020-08-31
6+
7+
### Added
8+
9+
- Initial launch! :rocket:

ddbToEsLambda/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import { handleDdbToEsEvent } from '@awslabs/fhir-works-on-aws-persistence-ddb';
6+
import { handleDdbToEsEvent } from 'fhir-works-on-aws-persistence-ddb';
77

88
exports.handler = async (event: any) => {
99
await handleDdbToEsEvent(event);

package.json

+24-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
{
2-
"name": "@awslabs/fhir-works-on-aws-deployment",
3-
"version": "0.9.0",
2+
"name": "fhir-works-on-aws-deployment",
3+
"version": "1.0.0",
44
"description": "FHIR Works on AWS deployment",
55
"stackname": "fhir-works-on-aws-deployment",
66
"main": "src/index.ts",
7-
"author": "amzn",
7+
"author": {
8+
"name": "Amazon Web Services",
9+
"email": "[email protected]",
10+
"url": "https://aws.amazon.com/"
11+
},
12+
"contributors": [
13+
"Robert Smayda <[email protected]>",
14+
"Tim Nguyen <[email protected]>",
15+
"Nestor Carvantes <[email protected]>"
16+
],
817
"license": "Apache-2.0",
918
"scripts": {
1019
"lint": "eslint . --ext .ts,.tsx",
@@ -22,11 +31,11 @@
2231
"local": "node ."
2332
},
2433
"dependencies": {
25-
"@awslabs/fhir-works-on-aws-interface": "^0.9.3",
26-
"@awslabs/fhir-works-on-aws-persistence-ddb": "^0.9.3",
27-
"@awslabs/fhir-works-on-aws-authz-rbac": "^0.9.3",
28-
"@awslabs/fhir-works-on-aws-routing": "^0.9.3",
29-
"@awslabs/fhir-works-on-aws-search-es": "^0.9.3",
34+
"fhir-works-on-aws-interface": "^1.0.0",
35+
"fhir-works-on-aws-persistence-ddb": "^1.0.0",
36+
"fhir-works-on-aws-authz-rbac": "^1.0.0",
37+
"fhir-works-on-aws-routing": "^1.0.0",
38+
"fhir-works-on-aws-search-es": "^1.0.0",
3039
"serverless-http": "^2.3.1"
3140
},
3241
"devDependencies": {
@@ -71,5 +80,12 @@
7180
"<rootDir>/auditLogMover/",
7281
"<rootDir>/node_modules/"
7382
]
83+
},
84+
"repository": {
85+
"type": "git",
86+
"url": "git://github.com/awslabs/fhir-works-on-aws-deployment.git"
87+
},
88+
"engines": {
89+
"node": ">=12.0.0"
7490
}
7591
}

src/RBACRules.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import { R4Resource } from '@awslabs/fhir-works-on-aws-interface';
7-
import { RBACConfig } from '@awslabs/fhir-works-on-aws-authz-rbac';
6+
import { R4Resource } from 'fhir-works-on-aws-interface';
7+
import { RBACConfig } from 'fhir-works-on-aws-authz-rbac';
88
import { SUPPORTED_R4_RESOURCES } from './constants';
99

1010
export const financialResources: R4Resource[] = [

src/config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import { FhirConfig, FhirVersion, stubs } from '@awslabs/fhir-works-on-aws-interface';
7-
import { ElasticSearchService } from '@awslabs/fhir-works-on-aws-search-es';
8-
import { RBACHandler } from '@awslabs/fhir-works-on-aws-authz-rbac';
6+
import { FhirConfig, FhirVersion, stubs } from 'fhir-works-on-aws-interface';
7+
import { ElasticSearchService } from 'fhir-works-on-aws-search-es';
8+
import { RBACHandler } from 'fhir-works-on-aws-authz-rbac';
99
import {
1010
DynamoDb,
1111
DynamoDbDataService,
1212
DynamoDbBundleService,
1313
S3DataService,
1414
DynamoDbUtil,
15-
} from '@awslabs/fhir-works-on-aws-persistence-ddb';
15+
} from 'fhir-works-on-aws-persistence-ddb';
1616
import RBACRules from './RBACRules';
1717
import { SUPPORTED_R4_RESOURCES, SUPPORTED_STU3_RESOURCES } from './constants';
1818

src/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import { R4Resource, STU3Resource } from '@awslabs/fhir-works-on-aws-interface';
6+
import { R4Resource, STU3Resource } from 'fhir-works-on-aws-interface';
77

88
export const SUPPORTED_R4_RESOURCES: R4Resource[] = [
99
'Account',

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
import serverless from 'serverless-http';
7-
import { generateServerlessRouter } from '@awslabs/fhir-works-on-aws-routing';
7+
import { generateServerlessRouter } from 'fhir-works-on-aws-routing';
88
import { fhirConfig, genericResources } from './config';
99

1010
const serverlessHandler = serverless(generateServerlessRouter(fhirConfig, genericResources), {

yarn.lock

+52-52
Original file line numberDiff line numberDiff line change
@@ -10,58 +10,6 @@
1010
d "1"
1111
es5-ext "^0.10.47"
1212

13-
"@awslabs/fhir-works-on-aws-authz-rbac@^0.9.3":
14-
version "0.9.3"
15-
resolved "https://npm.pkg.github.com/download/@awslabs/fhir-works-on-aws-authz-rbac/0.9.3/4a523fd8d75919b2b97a32346367dfdfbb27302c291143e18af6822b73040258#332c98d032dbe47d2e06d6ac0a56f263ff162422"
16-
integrity sha512-2DGdKo6Jx2yRi98vQTxYgvbFo+JfTkgCMp/YN16UcsoWf7wep7gGM/wzD6w6R3N0rNHA56OtrtF5Cup387cWOg==
17-
dependencies:
18-
"@awslabs/fhir-works-on-aws-interface" "^0.9.3"
19-
jsonwebtoken "^8.5.1"
20-
21-
"@awslabs/fhir-works-on-aws-interface@^0.9.3":
22-
version "0.9.3"
23-
resolved "https://npm.pkg.github.com/download/@awslabs/fhir-works-on-aws-interface/0.9.3/9ef960751411ba6b2a2166b2cc1c87c2d9ca5f3796d9cc74bf8dc982f5b51206#5d9ace1bf8611bf6668674c70dc6369b3ebf7df1"
24-
integrity sha512-3/10Y10hKjzi3TD2whsQFclwPztYKTPBb3ejOybDhHkcmrahkYFAFOQ8zNu0Ao+aKXCZQiiS8wJ+UBnd7CI4tQ==
25-
26-
"@awslabs/fhir-works-on-aws-persistence-ddb@^0.9.3":
27-
version "0.9.3"
28-
resolved "https://npm.pkg.github.com/download/@awslabs/fhir-works-on-aws-persistence-ddb/0.9.3/6978a50d221c975c7b2a85c1f57311ff24d260b524feb1fd0d2ac2903b78e9fe#46534601dcee990d7de96fb41ef203393d078b29"
29-
integrity sha512-EcAxMiUcMuE64ALrgc2n6Rt9pPoqdFzEbRk1AEwToUrC4dsatEjjBkaE0w5L22EiNd5FmXwJHMmdTJoJUtf38A==
30-
dependencies:
31-
"@awslabs/fhir-works-on-aws-interface" "^0.9.3"
32-
"@elastic/elasticsearch" "7"
33-
aws-elasticsearch-connector "^8.2.0"
34-
aws-sdk "^2.610.0"
35-
mime-types "^2.1.26"
36-
promise.allsettled "^1.0.2"
37-
uuid "^3.4.0"
38-
39-
"@awslabs/fhir-works-on-aws-routing@^0.9.3":
40-
version "0.9.3"
41-
resolved "https://npm.pkg.github.com/download/@awslabs/fhir-works-on-aws-routing/0.9.3/396a518179286b3408f9bf05e1d222909a8552eb8386f5ba30e752a4362d39a4#9ee2c8c072d745b76e4da32ba7f7977a7e222e53"
42-
integrity sha512-/8nuJYhbPPmzO6ETb3RPNOnHsBB5weEi3n32qZnO/6fhnTmA6fqqvvjH8eZ/Cd1LUO/ijtTwvdPCXs9TUP+cMg==
43-
dependencies:
44-
"@awslabs/fhir-works-on-aws-interface" "^0.9.3"
45-
ajv "^6.11.0"
46-
errorhandler "^1.5.1"
47-
express "^4.17.1"
48-
flat "^5.0.0"
49-
http-errors "^1.8.0"
50-
lodash "^4.17.15"
51-
mime-types "^2.1.26"
52-
serverless-http "^2.3.1"
53-
uuid "^3.4.0"
54-
55-
"@awslabs/fhir-works-on-aws-search-es@^0.9.3":
56-
version "0.9.3"
57-
resolved "https://npm.pkg.github.com/download/@awslabs/fhir-works-on-aws-search-es/0.9.3/56e610e20eab48ae960714923f80cb78f9bcd1ec0c0a16052f36c046bc72ee43#d129f9ec36168220b03dd2436cfccd0e39416933"
58-
integrity sha512-xL+thoIMW3R96mYqFHv6Eri1IhtxXLhMBdCCSoNwwoXz+l5I2Yz5AWfFzyJTHPRQc02tRjQtGth0bhrt2HRTjA==
59-
dependencies:
60-
"@awslabs/fhir-works-on-aws-interface" "^0.9.3"
61-
"@elastic/elasticsearch" "7"
62-
aws-elasticsearch-connector "^8.2.0"
63-
aws-sdk "^2.610.0"
64-
6513
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.3":
6614
version "7.10.3"
6715
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.3.tgz#324bcfd8d35cd3d47dae18cde63d752086435e9a"
@@ -3964,6 +3912,58 @@ fecha@^4.2.0:
39643912
resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.0.tgz#3ffb6395453e3f3efff850404f0a59b6747f5f41"
39653913
integrity sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg==
39663914

3915+
fhir-works-on-aws-authz-rbac@^1.0.0:
3916+
version "1.0.0"
3917+
resolved "https://registry.yarnpkg.com/fhir-works-on-aws-authz-rbac/-/fhir-works-on-aws-authz-rbac-1.0.0.tgz#75f1203bad7fce32f940553731f9601d2a2e1c3e"
3918+
integrity sha512-bxZoGiRUcxAAjCiKiPItXATEWSL+2lFpgcocvCHjvl3fEmaiOCknVy+8ysx5ADqlDCiLUVaXq5vJCP+aQsMkHg==
3919+
dependencies:
3920+
fhir-works-on-aws-interface "^1.0.0"
3921+
jsonwebtoken "^8.5.1"
3922+
3923+
fhir-works-on-aws-interface@^1.0.0:
3924+
version "1.0.0"
3925+
resolved "https://registry.yarnpkg.com/fhir-works-on-aws-interface/-/fhir-works-on-aws-interface-1.0.0.tgz#7de73929ebab013745582518f7596607c85a4ad0"
3926+
integrity sha512-b+B7D4/Msfzku/efM7dhbqCANEjCEKqUm7YJwEsQVjfmNbyRHWNmk+Mer89POmPnbw0eqryjnvV7C698C/8+rQ==
3927+
3928+
fhir-works-on-aws-persistence-ddb@^1.0.0:
3929+
version "1.0.0"
3930+
resolved "https://registry.yarnpkg.com/fhir-works-on-aws-persistence-ddb/-/fhir-works-on-aws-persistence-ddb-1.0.0.tgz#6dcfa8c89fd79cb9088aba468b8fe25e2c2493f7"
3931+
integrity sha512-t67yKWaw6mPWl5RVb25WQP494IWYf3rkUYAPhBFQOm33GIm5yj8PsxGLJvQbVyMXAH/80N+TqZiia7smTmehmA==
3932+
dependencies:
3933+
"@elastic/elasticsearch" "7"
3934+
aws-elasticsearch-connector "^8.2.0"
3935+
aws-sdk "^2.610.0"
3936+
fhir-works-on-aws-interface "^1.0.0"
3937+
mime-types "^2.1.26"
3938+
promise.allsettled "^1.0.2"
3939+
uuid "^3.4.0"
3940+
3941+
fhir-works-on-aws-routing@^1.0.0:
3942+
version "1.0.0"
3943+
resolved "https://registry.yarnpkg.com/fhir-works-on-aws-routing/-/fhir-works-on-aws-routing-1.0.0.tgz#559646459cab8bb2e4d4564e947fb8c74ae49a9d"
3944+
integrity sha512-n+nke4Y8pglrSVkaEp3YCTuq0dhKZpeUC7o3i6gBZ1y3MYYm3A27XgI0wA9ZU15EEwHzCIQpvz9YLQNokEyJkA==
3945+
dependencies:
3946+
ajv "^6.11.0"
3947+
errorhandler "^1.5.1"
3948+
express "^4.17.1"
3949+
fhir-works-on-aws-interface "^1.0.0"
3950+
flat "^5.0.0"
3951+
http-errors "^1.8.0"
3952+
lodash "^4.17.15"
3953+
mime-types "^2.1.26"
3954+
serverless-http "^2.3.1"
3955+
uuid "^3.4.0"
3956+
3957+
fhir-works-on-aws-search-es@^1.0.0:
3958+
version "1.0.0"
3959+
resolved "https://registry.yarnpkg.com/fhir-works-on-aws-search-es/-/fhir-works-on-aws-search-es-1.0.0.tgz#7e2331c3f8ac278851a359b8072339b87d4810cc"
3960+
integrity sha512-Vczx9O8kk8Knpwq8EJJf+snaqwfkryrCiJQBszNtjKVBpRNwNhkKfxy2NpdDZF6pkVBLPHdmEyh5bxEYHX/PGA==
3961+
dependencies:
3962+
"@elastic/elasticsearch" "7"
3963+
aws-elasticsearch-connector "^8.2.0"
3964+
aws-sdk "^2.610.0"
3965+
fhir-works-on-aws-interface "^1.0.0"
3966+
39673967
figures@^2.0.0:
39683968
version "2.0.0"
39693969
resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"

0 commit comments

Comments
 (0)