Skip to content

Commit 08c3d8b

Browse files
dependabot[bot]kodiakhq[bot]
authored andcommitted
Bump eslint-plugin-react from 7.26.1 to 7.27.0
Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.26.1 to 7.27.0. - [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases) - [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](jsx-eslint/eslint-plugin-react@v7.26.1...v7.27.0) --- updated-dependencies: - dependency-name: eslint-plugin-react dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9db2518 commit 08c3d8b

File tree

10 files changed

+69
-110
lines changed

10 files changed

+69
-110
lines changed

src/abacus-backoffice/src/forms/FormSubmit.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export default function FormSubmit(props: Props): Node {
5353
return snapshot.getLoadable(formStateAtomFamily(id)).contents;
5454
});
5555

56+
// eslint-disable-next-line relay/generated-flow-types -- discovered when upgrading Relay Eslint plugin, FIXME
5657
const [runMutation, isMutationInProgress] = useMutation(props.mutation);
5758

5859
const handleButtonClick = (event) => {

src/eslint-config-adeira/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
- New rules enabled: `react/no-arrow-function-lifecycle` and `react/no-unused-class-component-methods` (warnings or errors in strict mode).
4+
35
# 6.7.0
46

57
- Delete dropped rules from [`eslint-plugin-jest`](https://github.com/jest-community/eslint-plugin-jest):

src/eslint-config-adeira/__tests__/__fixtures__/valid-eslint-examples/react/no-unused-state.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export default class MyProvider extends Component<Props, State> {
2424
};
2525
}
2626

27+
// eslint-disable-next-line react/no-unused-class-component-methods
2728
setAccessToken: (?string) => void = (accessToken) => {
2829
this.setState({ accessToken });
2930
};

src/eslint-config-adeira/__tests__/__fixtures__/valid-eslint-examples/react/sort-comp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @flow strict
22

3-
/* eslint-disable no-useless-constructor, no-unused-vars */
3+
/* eslint-disable no-useless-constructor, no-unused-vars, react/no-unused-class-component-methods */
44

55
const React = {
66
Component: class Component<S, P> {},

src/eslint-config-adeira/__tests__/__snapshots__/index.test.js.snap

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -874,6 +874,7 @@ Object {
874874
"react/no-access-state-in-setstate": 2,
875875
"react/no-adjacent-inline-elements": 0,
876876
"react/no-array-index-key": 0,
877+
"react/no-arrow-function-lifecycle": 1,
877878
"react/no-children-prop": 0,
878879
"react/no-danger": 0,
879880
"react/no-danger-with-children": 2,
@@ -882,6 +883,7 @@ Object {
882883
"react/no-did-update-set-state": 2,
883884
"react/no-direct-mutation-state": 2,
884885
"react/no-find-dom-node": 2,
886+
"react/no-invalid-html-attribute": 0,
885887
"react/no-is-mounted": 2,
886888
"react/no-multi-comp": Array [
887889
2,
@@ -905,6 +907,7 @@ Object {
905907
"allowAsProps": true,
906908
},
907909
],
910+
"react/no-unused-class-component-methods": 1,
908911
"react/no-unused-prop-types": 0,
909912
"react/no-unused-state": 0,
910913
"react/no-will-update-set-state": 0,
@@ -1208,6 +1211,16 @@ Snapshot Diff:
12081211
- 1,
12091212
+ 2,
12101213
Object {
1214+
@@ --- --- @@
1215+
"react/no-array-index-key": 0,
1216+
- "react/no-arrow-function-lifecycle": 1,
1217+
+ "react/no-arrow-function-lifecycle": 2,
1218+
"react/no-children-prop": 0,
1219+
@@ --- --- @@
1220+
],
1221+
- "react/no-unused-class-component-methods": 1,
1222+
+ "react/no-unused-class-component-methods": 2,
1223+
"react/no-unused-prop-types": 0,
12111224
@@ --- --- @@
12121225
"sx/no-unused-stylesheet": 2,
12131226
- "sx/use-logical-properties": 1,

src/eslint-config-adeira/__tests__/__snapshots__/presets.test.js.snap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -971,6 +971,7 @@ Object {
971971
"react/no-access-state-in-setstate": 2,
972972
"react/no-adjacent-inline-elements": 0,
973973
"react/no-array-index-key": 0,
974+
"react/no-arrow-function-lifecycle": 1,
974975
"react/no-children-prop": 0,
975976
"react/no-danger": 0,
976977
"react/no-danger-with-children": 2,
@@ -979,6 +980,7 @@ Object {
979980
"react/no-did-update-set-state": 2,
980981
"react/no-direct-mutation-state": 2,
981982
"react/no-find-dom-node": 2,
983+
"react/no-invalid-html-attribute": 0,
982984
"react/no-is-mounted": 2,
983985
"react/no-multi-comp": Array [
984986
2,
@@ -1002,6 +1004,7 @@ Object {
10021004
"allowAsProps": true,
10031005
},
10041006
],
1007+
"react/no-unused-class-component-methods": 1,
10051008
"react/no-unused-prop-types": 0,
10061009
"react/no-unused-state": 0,
10071010
"react/no-will-update-set-state": 0,

src/eslint-config-adeira/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"eslint-plugin-node": "^11.1.0",
3030
"eslint-plugin-prettier": "^4.0.0",
3131
"eslint-plugin-promise": "^5.1.1",
32-
"eslint-plugin-react": "^7.26.1",
32+
"eslint-plugin-react": "^7.27.0",
3333
"eslint-plugin-react-hooks": "^4.3.0",
3434
"eslint-plugin-react-native": "^3.11.0",
3535
"eslint-plugin-relay": "^1.8.3",

src/eslint-config-adeira/src/presets/react.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ module.exports = ({
6969
'react/jsx-uses-vars': ERROR,
7070
'react/no-access-state-in-setstate': ERROR,
7171
'react/no-array-index-key': OFF,
72+
'react/no-arrow-function-lifecycle': NEXT_VERSION_ERROR,
7273
'react/no-children-prop': OFF,
7374
'react/no-danger': OFF,
7475
'react/no-danger-with-children': ERROR,
@@ -77,6 +78,7 @@ module.exports = ({
7778
'react/no-did-update-set-state': ERROR,
7879
'react/no-direct-mutation-state': ERROR,
7980
'react/no-find-dom-node': ERROR,
81+
'react/no-invalid-html-attribute': OFF, // TODO: https://github.com/yannickcr/eslint-plugin-react/issues/3132
8082
'react/no-is-mounted': ERROR,
8183
'react/no-multi-comp': [ERROR, { ignoreStateless: true }],
8284
'react/no-namespace': OFF, // complains about `<fbt:param/>` and similar
@@ -90,6 +92,7 @@ module.exports = ({
9092
'react/no-unknown-property': ERROR,
9193
'react/no-unsafe': OFF,
9294
'react/no-unstable-nested-components': [ERROR, { allowAsProps: true }],
95+
'react/no-unused-class-component-methods': NEXT_VERSION_ERROR,
9396
'react/no-unused-prop-types': OFF,
9497
'react/no-unused-state': OFF, // Enable when they fix this issue: https://github.com/yannickcr/eslint-plugin-react/issues/1910
9598
'react/no-will-update-set-state': OFF,

src/relay/src/__flowtests__/useMutation.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const mutation = graphql`
1111
module.exports = {
1212
validUsage: (): (() => void) => {
1313
return function TestComponent() {
14+
// eslint-disable-next-line relay/generated-flow-types -- discovered when upgrading Relay Eslint plugin, FIXME
1415
const [executeMutation, isMutationPending] = useMutation(mutation);
1516
(executeMutation: ({
1617
onCompleted: () => void,
@@ -32,6 +33,7 @@ module.exports = {
3233
// Invalid usages:
3334
invalidUsage: (): (() => void) => {
3435
return function TestComponent() {
36+
// eslint-disable-next-line relay/generated-flow-types -- discovered when upgrading Relay Eslint plugin, FIXME
3537
const [executeMutation] = useMutation(mutation);
3638

3739
// $FlowExpectedError[prop-missing]: property onCompleted is missing

yarn.lock

Lines changed: 42 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -5264,15 +5264,14 @@ array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.5:
52645264
define-properties "^1.1.3"
52655265
es-abstract "^1.19.0"
52665266

5267-
array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.4:
5268-
version "1.2.4"
5269-
resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
5270-
integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
5267+
array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.5:
5268+
version "1.2.5"
5269+
resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446"
5270+
integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==
52715271
dependencies:
52725272
call-bind "^1.0.0"
52735273
define-properties "^1.1.3"
5274-
es-abstract "^1.18.0-next.1"
5275-
function-bind "^1.1.1"
5274+
es-abstract "^1.19.0"
52765275

52775276
array.prototype.map@^1.0.3:
52785277
version "1.0.3"
@@ -8551,52 +8550,6 @@ es-abstract@^1.18.0-next.2:
85518550
string.prototype.trimstart "^1.0.4"
85528551
unbox-primitive "^1.0.0"
85538552

8554-
es-abstract@^1.18.1:
8555-
version "1.18.6"
8556-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.6.tgz#2c44e3ea7a6255039164d26559777a6d978cb456"
8557-
integrity sha512-kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ==
8558-
dependencies:
8559-
call-bind "^1.0.2"
8560-
es-to-primitive "^1.2.1"
8561-
function-bind "^1.1.1"
8562-
get-intrinsic "^1.1.1"
8563-
get-symbol-description "^1.0.0"
8564-
has "^1.0.3"
8565-
has-symbols "^1.0.2"
8566-
internal-slot "^1.0.3"
8567-
is-callable "^1.2.4"
8568-
is-negative-zero "^2.0.1"
8569-
is-regex "^1.1.4"
8570-
is-string "^1.0.7"
8571-
object-inspect "^1.11.0"
8572-
object-keys "^1.1.1"
8573-
object.assign "^4.1.2"
8574-
string.prototype.trimend "^1.0.4"
8575-
string.prototype.trimstart "^1.0.4"
8576-
unbox-primitive "^1.0.1"
8577-
8578-
es-abstract@^1.18.2:
8579-
version "1.18.3"
8580-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0"
8581-
integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==
8582-
dependencies:
8583-
call-bind "^1.0.2"
8584-
es-to-primitive "^1.2.1"
8585-
function-bind "^1.1.1"
8586-
get-intrinsic "^1.1.1"
8587-
has "^1.0.3"
8588-
has-symbols "^1.0.2"
8589-
is-callable "^1.2.3"
8590-
is-negative-zero "^2.0.1"
8591-
is-regex "^1.1.3"
8592-
is-string "^1.0.6"
8593-
object-inspect "^1.10.3"
8594-
object-keys "^1.1.1"
8595-
object.assign "^4.1.2"
8596-
string.prototype.trimend "^1.0.4"
8597-
string.prototype.trimstart "^1.0.4"
8598-
unbox-primitive "^1.0.1"
8599-
86008553
es-abstract@^1.19.0, es-abstract@^1.19.1:
86018554
version "1.19.1"
86028555
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3"
@@ -8868,25 +8821,25 @@ eslint-plugin-react-native@^3.11.0:
88688821
"@babel/traverse" "^7.7.4"
88698822
eslint-plugin-react-native-globals "^0.1.1"
88708823

8871-
eslint-plugin-react@^7.26.1:
8872-
version "7.26.1"
8873-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.26.1.tgz#41bcfe3e39e6a5ac040971c1af94437c80daa40e"
8874-
integrity sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ==
8824+
eslint-plugin-react@^7.27.0:
8825+
version "7.27.0"
8826+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.27.0.tgz#f952c76517a3915b81c7788b220b2b4c96703124"
8827+
integrity sha512-0Ut+CkzpppgFtoIhdzi2LpdpxxBvgFf99eFqWxJnUrO7mMe0eOiNpou6rvNYeVVV6lWZvTah0BFne7k5xHjARg==
88758828
dependencies:
8876-
array-includes "^3.1.3"
8877-
array.prototype.flatmap "^1.2.4"
8829+
array-includes "^3.1.4"
8830+
array.prototype.flatmap "^1.2.5"
88788831
doctrine "^2.1.0"
8879-
estraverse "^5.2.0"
8832+
estraverse "^5.3.0"
88808833
jsx-ast-utils "^2.4.1 || ^3.0.0"
88818834
minimatch "^3.0.4"
8882-
object.entries "^1.1.4"
8883-
object.fromentries "^2.0.4"
8884-
object.hasown "^1.0.0"
8885-
object.values "^1.1.4"
8835+
object.entries "^1.1.5"
8836+
object.fromentries "^2.0.5"
8837+
object.hasown "^1.1.0"
8838+
object.values "^1.1.5"
88868839
prop-types "^15.7.2"
88878840
resolve "^2.0.0-next.3"
88888841
semver "^6.3.0"
8889-
string.prototype.matchall "^4.0.5"
8842+
string.prototype.matchall "^4.0.6"
88908843

88918844
eslint-plugin-relay@^1.8.3:
88928845
version "1.8.3"
@@ -9026,10 +8979,10 @@ estraverse@^4.1.1:
90268979
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
90278980
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
90288981

9029-
estraverse@^5.1.0, estraverse@^5.2.0:
9030-
version "5.2.0"
9031-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
9032-
integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
8982+
estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
8983+
version "5.3.0"
8984+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
8985+
integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
90338986

90348987
esutils@^2.0.2:
90358988
version "2.0.3"
@@ -11474,14 +11427,6 @@ is-regex@^1.1.2:
1147411427
call-bind "^1.0.2"
1147511428
has-symbols "^1.0.1"
1147611429

11477-
is-regex@^1.1.3:
11478-
version "1.1.3"
11479-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
11480-
integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
11481-
dependencies:
11482-
call-bind "^1.0.2"
11483-
has-symbols "^1.0.2"
11484-
1148511430
is-regex@^1.1.4:
1148611431
version "1.1.4"
1148711432
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
@@ -11530,11 +11475,6 @@ is-string@^1.0.5:
1153011475
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
1153111476
integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
1153211477

11533-
is-string@^1.0.6:
11534-
version "1.0.6"
11535-
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
11536-
integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
11537-
1153811478
is-string@^1.0.7:
1153911479
version "1.0.7"
1154011480
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
@@ -13944,11 +13884,6 @@ object-hash@^2.2.0:
1394413884
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5"
1394513885
integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==
1394613886

13947-
object-inspect@^1.10.3:
13948-
version "1.10.3"
13949-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
13950-
integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
13951-
1395213887
object-inspect@^1.11.0:
1395313888
version "1.11.0"
1395413889
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1"
@@ -13994,24 +13929,23 @@ object.assign@^4.1.0, object.assign@^4.1.1, object.assign@^4.1.2:
1399413929
has-symbols "^1.0.1"
1399513930
object-keys "^1.1.1"
1399613931

13997-
object.entries@^1.1.0, object.entries@^1.1.4:
13998-
version "1.1.4"
13999-
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd"
14000-
integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==
13932+
object.entries@^1.1.0, object.entries@^1.1.5:
13933+
version "1.1.5"
13934+
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
13935+
integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
1400113936
dependencies:
1400213937
call-bind "^1.0.2"
1400313938
define-properties "^1.1.3"
14004-
es-abstract "^1.18.2"
13939+
es-abstract "^1.19.1"
1400513940

14006-
"object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.4:
14007-
version "2.0.4"
14008-
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8"
14009-
integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==
13941+
"object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.5:
13942+
version "2.0.5"
13943+
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
13944+
integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
1401013945
dependencies:
1401113946
call-bind "^1.0.2"
1401213947
define-properties "^1.1.3"
14013-
es-abstract "^1.18.0-next.2"
14014-
has "^1.0.3"
13948+
es-abstract "^1.19.1"
1401513949

1401613950
object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0:
1401713951
version "2.1.0"
@@ -14030,13 +13964,13 @@ object.getownpropertydescriptors@^2.1.2:
1403013964
define-properties "^1.1.3"
1403113965
es-abstract "^1.18.0-next.2"
1403213966

14033-
object.hasown@^1.0.0:
14034-
version "1.0.0"
14035-
resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.0.0.tgz#bdbade33cfacfb25d7f26ae2b6cb870bf99905c2"
14036-
integrity sha512-qYMF2CLIjxxLGleeM0jrcB4kiv3loGVAjKQKvH8pSU/i2VcRRvUNmxbD+nEMmrXRfORhuVJuH8OtSYCZoue3zA==
13967+
object.hasown@^1.1.0:
13968+
version "1.1.0"
13969+
resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5"
13970+
integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==
1403713971
dependencies:
1403813972
define-properties "^1.1.3"
14039-
es-abstract "^1.18.1"
13973+
es-abstract "^1.19.1"
1404013974

1404113975
object.pick@^1.3.0:
1404213976
version "1.3.0"
@@ -14045,7 +13979,7 @@ object.pick@^1.3.0:
1404513979
dependencies:
1404613980
isobject "^3.0.1"
1404713981

14048-
object.values@^1.1.0, object.values@^1.1.4, object.values@^1.1.5:
13982+
object.values@^1.1.0, object.values@^1.1.5:
1404913983
version "1.1.5"
1405013984
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
1405113985
integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
@@ -17351,14 +17285,14 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
1735117285
is-fullwidth-code-point "^3.0.0"
1735217286
strip-ansi "^6.0.0"
1735317287

17354-
"string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.5:
17355-
version "4.0.5"
17356-
resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da"
17357-
integrity sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q==
17288+
"string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.6:
17289+
version "4.0.6"
17290+
resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa"
17291+
integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==
1735817292
dependencies:
1735917293
call-bind "^1.0.2"
1736017294
define-properties "^1.1.3"
17361-
es-abstract "^1.18.2"
17295+
es-abstract "^1.19.1"
1736217296
get-intrinsic "^1.1.1"
1736317297
has-symbols "^1.0.2"
1736417298
internal-slot "^1.0.3"

0 commit comments

Comments
 (0)