@xylabs/express 4.8.6 → 4.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/express",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.8",
|
|
4
4
|
"description": "SDK for base code for Api repos that use express and deploy on AWS ECS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xylabs",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"coverage": "vitest --coverage"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
49
|
-
"@xylabs/assert": "^4.8.
|
|
48
|
+
"@aws-sdk/client-secrets-manager": "^3.798.0",
|
|
49
|
+
"@xylabs/assert": "^4.8.8",
|
|
50
50
|
"body-parser": "^2.2.0",
|
|
51
51
|
"express-mung": "^0.5.1",
|
|
52
52
|
"http-status-codes": "^2.3.0",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
"@types/express": "^4.17.21",
|
|
62
62
|
"@types/express-mung": "^0.5.5",
|
|
63
63
|
"@types/express-serve-static-core": "^5.0.6",
|
|
64
|
-
"@types/node": "^22.
|
|
65
|
-
"@xylabs/ts-scripts-yarn3": "^6.
|
|
66
|
-
"@xylabs/tsconfig": "^6.
|
|
67
|
-
"@xylabs/vitest-extended": "^4.8.
|
|
64
|
+
"@types/node": "^22.15.3",
|
|
65
|
+
"@xylabs/ts-scripts-yarn3": "^6.4.5",
|
|
66
|
+
"@xylabs/tsconfig": "^6.4.5",
|
|
67
|
+
"@xylabs/vitest-extended": "^4.8.8",
|
|
68
68
|
"body-parser": "^2.2.0",
|
|
69
69
|
"express": "^4.21.2",
|
|
70
70
|
"express-mung": "^0.5.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"node-cache": "^5.1.2",
|
|
73
73
|
"rollbar": "^2.26.4",
|
|
74
74
|
"typescript": "^5.8.3",
|
|
75
|
-
"vitest": "^3.1.
|
|
75
|
+
"vitest": "^3.1.2",
|
|
76
76
|
"vitest-mock-extended": "^3.1.0",
|
|
77
77
|
"winston": "^3.17.0",
|
|
78
78
|
"winston-transport": "^4.9.0"
|
|
@@ -9,7 +9,7 @@ import { getEnvFromAws } from '../getEnvFromAws.ts'
|
|
|
9
9
|
const nonExistentSecret = 'does-not-exist'
|
|
10
10
|
const errorMessage = "Secrets Manager can't find the specified secret."
|
|
11
11
|
|
|
12
|
-
describe('getEnvFromAws', () => {
|
|
12
|
+
describe.skip('getEnvFromAws', () => {
|
|
13
13
|
it('gets the ENV from AWS', async () => {
|
|
14
14
|
await expect(async () => await getEnvFromAws(nonExistentSecret)).rejects.toThrow(errorMessage)
|
|
15
15
|
})
|