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

893 upgrade client dependencies reopened #1028

Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
6f8e566
Update packages to latest and fix broken test
atomicgamedeveloper Sep 24, 2024
8449592
Update eslint
atomicgamedeveloper Sep 25, 2024
bd99735
Fix new eslint issues
atomicgamedeveloper Sep 25, 2024
31f6035
Eslint fixes: add img alt text and missing useEffect dependency
atomicgamedeveloper Sep 25, 2024
d5fa623
Install @babel/plugin-proposal-private-property-in-object
atomicgamedeveloper Sep 25, 2024
60d77fb
Fix formatting
atomicgamedeveloper Oct 1, 2024
59d3161
Change function names to camel case
atomicgamedeveloper Oct 1, 2024
6b9d83d
Match upgrades in yarn and package.json
atomicgamedeveloper Oct 1, 2024
191a67a
Eslint fixes: Turn getAndSetUsername and signOut into hooks
atomicgamedeveloper Oct 2, 2024
0a0f7d6
Format correctly
atomicgamedeveloper Oct 2, 2024
606eea9
Fix warnings when installing packages
atomicgamedeveloper Oct 2, 2024
cdc0359
Upgrade mui and emotion packages to latest
atomicgamedeveloper Oct 2, 2024
ef87ca9
Refactor useSignOut
atomicgamedeveloper Oct 2, 2024
abd141b
Rename Hooks hook into useSetupMiniDrawer
atomicgamedeveloper Oct 2, 2024
ff4e0f2
Add Windows as OS in client.yml
atomicgamedeveloper Oct 8, 2024
c47a776
Upgrade all client dependencies to latest
atomicgamedeveloper Oct 8, 2024
e9a5a0b
Downgrade typescript for Eslint
atomicgamedeveloper Oct 9, 2024
fcf744a
Manual merge
atomicgamedeveloper Oct 9, 2024
65547d1
Downgrade Typescript to 5.1.6, fix new eslint issues
atomicgamedeveloper Oct 11, 2024
be13430
Fix broken preview unit tests
atomicgamedeveloper Oct 16, 2024
feeb415
Fix broken preview int tests
atomicgamedeveloper Oct 16, 2024
b2621e2
Add network timeout to yarn install in client.yml
atomicgamedeveloper Oct 16, 2024
21f4956
Add OS check for playwright report name
atomicgamedeveloper Oct 16, 2024
076eae4
Refactor store in preview tests
atomicgamedeveloper Oct 16, 2024
73a5eab
Add ignore pattern for unused errors and upgrade jest-dom
atomicgamedeveloper Oct 18, 2024
44746e9
Add changes made to yarn.lock
atomicgamedeveloper Oct 18, 2024
0103a9c
Fix broken preview tests
atomicgamedeveloper Oct 23, 2024
c8ea46c
Update packages to latest and fix broken test
atomicgamedeveloper Sep 24, 2024
d87b1b0
Update eslint
atomicgamedeveloper Sep 25, 2024
231c5ca
Fix new eslint issues
atomicgamedeveloper Sep 25, 2024
4af828d
Install @babel/plugin-proposal-private-property-in-object
atomicgamedeveloper Sep 25, 2024
91cb4e7
Change function names to camel case
atomicgamedeveloper Oct 1, 2024
118e92e
Match upgrades in yarn and package.json
atomicgamedeveloper Oct 1, 2024
e9e9d06
Eslint fixes: Turn getAndSetUsername and signOut into hooks
atomicgamedeveloper Oct 2, 2024
2cc1baf
Format correctly
atomicgamedeveloper Oct 2, 2024
8fe3a44
Resolve packages with yarn rather than npm
atomicgamedeveloper Oct 2, 2024
2c5d085
Upgrade mui and emotion packages to latest
atomicgamedeveloper Oct 2, 2024
0bc4e2d
Upgrade all client dependencies to latest
atomicgamedeveloper Oct 8, 2024
8769b40
Downgrade typescript for Eslint
atomicgamedeveloper Oct 9, 2024
d9a7562
Downgrade Typescript to 5.1.6, fix new eslint issues
atomicgamedeveloper Oct 11, 2024
037e832
Fix broken preview unit tests
atomicgamedeveloper Oct 16, 2024
5ff6a89
Fix broken preview int tests
atomicgamedeveloper Oct 16, 2024
f8c8a52
Add ignore pattern for unused errors and upgrade jest-dom
atomicgamedeveloper Oct 18, 2024
8d1bf2b
Add changes made to yarn.lock
atomicgamedeveloper Oct 18, 2024
53f7db7
Fix broken preview tests
atomicgamedeveloper Oct 23, 2024
6a49ee5
Format and add 1 local retry to inconsistent e2e tests
atomicgamedeveloper Oct 30, 2024
680c487
Remove extra error string
atomicgamedeveloper Nov 1, 2024
05f53e7
Update test.js
atomicgamedeveloper Nov 1, 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
Prev Previous commit
Next Next commit
Format correctly
  • Loading branch information
atomicgamedeveloper committed Nov 1, 2024
commit 2cc1baf387d3632f9806930a02e0d50ff1c01d2d
2 changes: 1 addition & 1 deletion client/test/unit/util/Auth/Authentication.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('useSignOut', () => {
return {
ok: true,
status: 401,
json: async () => { },
json: async () => {},
};
default: {
throw new Error(`Unhandled request: ${URL}`);
Expand Down