Skip to content

Commit

Permalink
Bump typescript from 5.2.2 to 5.3.2 (#6987)
Browse files Browse the repository at this point in the history
* Bump typescript from 5.2.2 to 5.3.2

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.2.2 to 5.3.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* ignoring redux-related ts errors in tests

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Graham Langford <[email protected]>
  • Loading branch information
dependabot[bot] and grahamlangford authored Nov 27, 2023
1 parent c5c3cb4 commit cbcee40
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"type-fest": "^4.8.2",
"typescript": "^5.2.2",
"typescript": "^5.3.2",
"typescript-plugin-css-modules": "^5.0.2",
"webpack": "^5.89.0",
"webpack-build-notifier": "^2.3.0",
Expand Down
1 change: 1 addition & 0 deletions src/components/logViewer/LogCard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ function renderLogCard(state?: LogState) {
reducer: {
logs: logSlice.reducer,
},
// @ts-expect-error -- ignoring preloadedState type error for testing
preloadedState:
state == null
? undefined
Expand Down
2 changes: 2 additions & 0 deletions src/pageEditor/tabs/editTab/useReportTraceError.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jest.mock("@/telemetry/reportEvent");
const renderUseReportTraceError = (traces: TraceRecord[] = []) => {
const activeElementId = uuidv4();

// @ts-expect-error -- ignoring excessively deep warning for test
const store: Store = configureStore({
reducer: {
session: sessionSlice.reducer,
Expand All @@ -53,6 +54,7 @@ const renderUseReportTraceError = (traces: TraceRecord[] = []) => {
activeElementId,
},
runtime: {
// @ts-expect-error -- TS is detecting the wrong type; ignoring since this is only for testing
extensionTraces: {
[activeElementId]: traces,
},
Expand Down

0 comments on commit cbcee40

Please sign in to comment.