Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PIMS-2233: Update winston and few dev dependencies to latest versions in express-api #2861

Merged
merged 18 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
fb9e611
Update eslint from version 9.10.0 to 9.11.1
Sharala-Perumal Sep 25, 2024
544030d
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Sep 25, 2024
84c1998
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 2, 2024
fe60759
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 2, 2024
c428bb4
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 9, 2024
5724fcf
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 17, 2024
219a36d
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 18, 2024
4da925a
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 23, 2024
6b2be7e
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 23, 2024
be33be6
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Oct 29, 2024
c5e1431
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Nov 5, 2024
25ffea5
Merge branch 'main' of https://github.com/bcgov/PIMS
Sharala-Perumal Nov 13, 2024
1341e99
Update winston to version 3.17.0
Sharala-Perumal Nov 13, 2024
2a1cf53
Update dev dependencies to latest versions
Sharala-Perumal Nov 13, 2024
92e65c6
Merge branch 'main' into PIMS-2233
Sharala-Perumal Nov 13, 2024
32d9b0c
Merge branch 'main' into PIMS-2233
Sharala-Perumal Nov 13, 2024
bec3c00
Changed the faker.internet.userName() to faker.internet.username()
Sharala-Perumal Nov 13, 2024
0a652e7
Merge branch 'PIMS-2233' of https://github.com/bcgov/PIMS into PIMS-2233
Sharala-Perumal Nov 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions express-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,27 +39,27 @@
"tsconfig-paths": "4.2.0",
"typeorm": "0.3.20",
"typeorm-naming-strategies": "4.1.0",
"winston": "3.16.0",
"winston": "3.17.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"zod": "3.23.3"
},
"devDependencies": {
"@eslint/js": "9.11.1",
"@faker-js/faker": "9.0.1",
"@eslint/js": "9.14.0",
"@faker-js/faker": "9.2.0",
"@types/compression": "1.7.4",
"@types/cookie-parser": "1.4.5",
"@types/cors": "2.8.15",
"@types/express": "4.17.20",
"@types/jest": "29.5.10",
"@types/morgan": "1.9.9",
"@types/multer": "1.4.11",
"@types/node": "22.7.4",
"@types/node": "22.9.0",
"@types/nunjucks": "3.2.6",
"@types/supertest": "6.0.2",
"@types/swagger-jsdoc": "6.0.4",
"@types/swagger-ui-express": "4.1.6",
"cross-env": "7.0.3",
"eslint": "9.11.1",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
Expand All @@ -69,6 +69,6 @@
"ts-jest": "29.2.0",
"tsc-alias": "1.8.8",
"typescript": "5.6.2",
"typescript-eslint": "8.8.0"
"typescript-eslint": "8.14.0"
}
}
2 changes: 1 addition & 1 deletion express-api/tests/integration/users/users.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const mockUser: IUser = {
middleName: faker.person.middleName(),
lastName: faker.person.lastName(),
email: faker.internet.email(),
username: faker.internet.userName(),
username: faker.internet.username(),
position: 'Tester',
};
const TOKEN = '';
Expand Down
2 changes: 1 addition & 1 deletion express-api/tests/testUtils/factories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const produceUser = (props?: Partial<User>): User => {
MiddleName: faker.person.middleName(),
LastName: faker.person.lastName(),
Email: faker.internet.email(),
Username: faker.internet.userName(),
Username: faker.internet.username(),
Position: 'Tester',
Note: '',
LastLogin: faker.date.anytime(),
Expand Down
Loading