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

👷 Update all non-major dependencies #2920

Merged
merged 4 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
894 changes: 0 additions & 894 deletions .yarn/releases/yarn-4.3.1.cjs

This file was deleted.

925 changes: 925 additions & 0 deletions .yarn/releases/yarn-4.4.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
yarnPath: .yarn/releases/yarn-4.3.1.cjs
yarnPath: .yarn/releases/yarn-4.4.0.cjs
defaultSemverRangePrefix: ''
nodeLinker: node-modules

Expand Down
4 changes: 2 additions & 2 deletions developer-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"@datadog/browser-core": "workspace:*",
"@datadog/browser-logs": "workspace:*",
"@datadog/browser-rum": "workspace:*",
"@mantine/core": "7.11.2",
"@mantine/hooks": "7.11.2",
"@mantine/core": "7.12.0",
"@mantine/hooks": "7.12.0",
"clsx": "2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isIE } from '@datadog/browser-core'
import { isIE } from '../../../../../../packages/core/src/tools/utils/browserDetection'
import type { TelemetryEvent } from '../../../../../../packages/core/src/domain/telemetry'
import type { LogsEvent } from '../../../../../../packages/logs/src/logsEvent.types'
import type { RumEvent } from '../../../../../../packages/rum-core/src/rumEvent.types'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isIE, isSafari } from '@datadog/browser-core'
import { isIE, isSafari } from '../../../../../packages/core/src/tools/utils/browserDetection'
import { parseQuery, matchWithWildcard } from './eventFilters'

if (!isIE() && !isSafari()) {
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jasmine": "3.10.18",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@wdio/browserstack-service": "8.39.1",
"@wdio/cli": "8.39.1",
"@wdio/jasmine-framework": "8.39.1",
"@wdio/junit-reporter": "8.39.0",
"@wdio/local-runner": "8.39.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@wdio/browserstack-service": "8.40.0",
"@wdio/cli": "8.40.0",
"@wdio/jasmine-framework": "8.40.0",
"@wdio/junit-reporter": "8.40.0",
"@wdio/local-runner": "8.40.0",
"@wdio/spec-reporter": "8.39.0",
"ajv": "6.12.6",
"browserstack-local": "1.5.5",
Expand All @@ -55,7 +55,7 @@
"eslint-module-utils": "2.8.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jasmine": "4.2.0",
"eslint-plugin-jsdoc": "48.9.2",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-local-rules": "3.0.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "55.0.0",
Expand All @@ -64,7 +64,7 @@
"html-webpack-plugin": "5.6.0",
"jasmine-core": "3.99.1",
"json-schema-to-typescript": "bcaudan/json-schema-to-typescript#bcaudan/add-readonly-support",
"karma": "6.4.3",
"karma": "6.4.4",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
Expand All @@ -73,17 +73,17 @@
"karma-sourcemap-loader": "0.4.0",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "5.0.0",
"lerna": "8.1.7",
"lerna": "8.1.8",
"minimatch": "10.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"puppeteer": "22.14.0",
"puppeteer": "22.15.0",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.5.4",
"webdriverio": "8.39.1",
"webdriverio": "8.40.0",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-middleware": "7.3.0"
Expand All @@ -95,5 +95,5 @@
"node": "20.16.0",
"yarn": "1.22.22"
},
"packageManager": "yarn@4.3.1"
"packageManager": "yarn@4.4.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ describe('listenActionEvents', () => {
beforeMouseUp,
target = document.body,
clickEventIsPrimary = undefined,
}: { beforeMouseUp?(): void; target?: Node; clickEventIsPrimary?: boolean } = {}) {
}: { beforeMouseUp?(this: void): void; target?: Node; clickEventIsPrimary?: boolean } = {}) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👏 praise: ‏TIL! We usually solve this by changing the type to beforeMouseUp?: (...) => void but this:void sounds nice too

window.dispatchEvent(createNewEvent('pointerdown', { target, isPrimary: true }))
window.dispatchEvent(createNewEvent('mousedown', { target }))
beforeMouseUp?.()
Expand Down
2 changes: 1 addition & 1 deletion packages/rum-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@types/react-dom": "18.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.25.1"
"react-router-dom": "6.26.0"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions performances/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"start": "ts-node ./src/main.ts"
},
"dependencies": {
"@types/node": "22.0.0",
"@types/node": "22.1.0",
"@types/node-forge": "1.3.11",
"node-forge": "1.3.1",
"puppeteer": "22.14.0",
"puppeteer": "22.15.0",
"ts-node": "10.9.2"
},
"volta": {
Expand Down
2 changes: 1 addition & 1 deletion performances/src/profiling.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Proxy } from './proxy'

export interface Scenario {
description: string
run(page: Page, takeMeasurements: () => Promise<void>): Promise<void>
run(this: void, page: Page, takeMeasurements: () => Promise<void>): Promise<void>
}

export interface ProfilingOptions {
Expand Down
Loading