Skip to content

Commit 90b45b9

Browse files
Bump the wp-packages group with 19 updates (#14144)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pascal Birchler <pascalb@google.com>
1 parent 281c96c commit 90b45b9

File tree

26 files changed

+2049
-2255
lines changed

26 files changed

+2049
-2255
lines changed

package-lock.json

Lines changed: 1891 additions & 2105 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@
9494
"@web-stories-wp/karma-failed-tests-reporter": "*",
9595
"@web-stories-wp/karma-puppeteer-client": "*",
9696
"@web-stories-wp/karma-puppeteer-launcher": "*",
97-
"@wordpress/babel-plugin-import-jsx-pragma": "^4.33.0",
98-
"@wordpress/dependency-extraction-webpack-plugin": "^5.1.0",
99-
"@wordpress/eslint-plugin": "^17.7.0",
97+
"@wordpress/babel-plugin-import-jsx-pragma": "^5.22.0",
98+
"@wordpress/dependency-extraction-webpack-plugin": "^6.22.0",
99+
"@wordpress/eslint-plugin": "^22.8.0",
100100
"ajv-cli": "^5.0.0",
101101
"ajv-formats": "^3.0.1",
102102
"babel-jest": "^29.6.1",
103-
"babel-loader": "^9.2.1",
104-
"babel-plugin-react-compiler": "19.0.0-beta-714736e-20250131",
103+
"babel-loader": "^10.0.0",
104+
"babel-plugin-react-compiler": "19.1.0-rc.1",
105105
"babel-plugin-styled-components": "^2.1.4",
106106
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
107107
"browserslist": "^4.24.5",
@@ -126,8 +126,8 @@
126126
"eslint-plugin-oxlint": "^0.16.8",
127127
"eslint-plugin-prettier": "^5.2.6",
128128
"eslint-plugin-react": "^7.37.5",
129-
"eslint-plugin-react-compiler": "19.0.0-beta-714736e-20250131",
130-
"eslint-plugin-react-hooks": "^5.1.0",
129+
"eslint-plugin-react-compiler": "19.1.0-rc.1",
130+
"eslint-plugin-react-hooks": "^5.2.0",
131131
"eslint-plugin-security": "^3.0.1",
132132
"eslint-plugin-styled-components-a11y": "^2.2.0",
133133
"eslint-plugin-testing-library": "^7.1.1",
@@ -162,7 +162,7 @@
162162
"postcss-syntax": "^0.36.2",
163163
"prettier": "^3.5.3",
164164
"puppeteer": "^24.8.0",
165-
"react-compiler-runtime": "19.0.0-beta-714736e-20250131",
165+
"react-compiler-runtime": "19.1.0-rc.1",
166166
"react-refresh": "^0.17.0",
167167
"react-test-renderer": "^17.0.2",
168168
"rollup": "^2.79.2",

packages/activation-notice/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@emotion/is-prop-valid": "^1.3.1",
3131
"@googleforcreators/tracking": "*",
3232
"@wordpress/element": "^6.22.0",
33-
"@wordpress/i18n": "^4.47.0",
33+
"@wordpress/i18n": "^5.22.0",
3434
"flagged": "^2.0.10",
3535
"polished": "^4.3.1",
3636
"styled-components": "^6.0.7",

packages/animation/src/parts/createAnimation.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import type { AMPAnimationProps, WAAPIAnimation, AnimationPart } from './types';
3232
function createAnimation<T extends Keyframes>(
3333
keyframes: T,
3434
timings: AMPEffectTiming,
35-
useClippingContainer = false,
35+
withClippingContainer = false,
3636
targetLeafElement = false
3737
): AnimationPart<T> {
3838
const id = `anim-${uuidv4()}`;
@@ -41,7 +41,7 @@ function createAnimation<T extends Keyframes>(
4141
timings: sanitizeTimings(timings),
4242
keyframes,
4343
targetLeafElement,
44-
useClippingContainer,
44+
useClippingContainer: withClippingContainer,
4545
};
4646

4747
const animationStyle = targetLeafElement
@@ -55,7 +55,7 @@ function createAnimation<T extends Keyframes>(
5555
<WithAnimation
5656
id={id}
5757
className="animation-wrapper"
58-
useClippingContainer={useClippingContainer}
58+
useClippingContainer={withClippingContainer}
5959
style={style}
6060
animationStyle={animationStyle}
6161
>

packages/dashboard/src/app/views/myStories/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ function MyStoriesView() {
8282
const isMountedRef = useRef(false);
8383

8484
useEffect(() => {
85+
// eslint-disable-next-line react-compiler/react-compiler -- FIXME
8586
isMountedRef.current = true;
8687

8788
return () => {

packages/dashboard/src/utils/useStoryView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ export default function useStoryView({
9090
}, [viewStyle, setViewStyle]);
9191

9292
const requestNextPage = useCallback(() => {
93+
// eslint-disable-next-line react-compiler/react-compiler -- FIXME
9394
showStoriesWhileLoadingRef.current = true;
9495
setPageClamped(page + 1);
9596
}, [page, setPageClamped]);

packages/design-system/src/utils/useForwardedRef.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ function useForwardedRef<T>(ref: React.ForwardedRef<T>) {
3535
if (typeof ref === 'function') {
3636
ref(referenceRef.current);
3737
} else {
38+
// eslint-disable-next-line react-compiler/react-compiler -- FIXME
3839
ref.current = referenceRef.current;
3940
}
4041
}

packages/e2e-test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"type": "module",
2727
"main": "./src/index.js",
2828
"dependencies": {
29-
"@wordpress/url": "^3.48.0",
29+
"@wordpress/url": "^4.22.0",
3030
"expect-puppeteer": "^11.0.0"
3131
},
3232
"devDependencies": {

packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@web-stories-wp/e2e-test-utils": "*",
3030
"@web-stories-wp/jest-puppeteer-amp": "*",
3131
"@web-stories-wp/jest-resolver": "*",
32-
"@wordpress/jest-console": "^7.18.0",
32+
"@wordpress/jest-console": "^8.22.0",
3333
"babel-jest": "^29.5.0",
3434
"expect-puppeteer": "^11.0.0",
3535
"jest-extended": "^4.0.2",

packages/e2e-tests/src/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default {
4646
setupFilesAfterEnv: [
4747
'jest-extended/all',
4848
'<rootDir>/packages/e2e-tests/src/config/bootstrap.js',
49-
'<rootDir>/packages/e2e-tests/node_modules/@wordpress/jest-console',
49+
'<rootDir>/node_modules/@wordpress/jest-console',
5050
'<rootDir>/node_modules/expect-puppeteer',
5151
],
5252
modulePathIgnorePatterns: ['<rootDir>/build', '<rootDir>/vendor'],

0 commit comments

Comments
 (0)