Skip to content

Commit cc59840

Browse files
committed
bump deps to v5
1 parent 020f4bc commit cc59840

File tree

5 files changed

+3659
-3042
lines changed

5 files changed

+3659
-3042
lines changed

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
"ethereum-blockies-base64": "^1.0.2",
2929
"focus-trap-react": "^10.0.0",
3030
"framer-motion": "^6.5.1",
31-
"gatsby": "^4.21.1",
32-
"gatsby-plugin-emotion": "^7.19.0",
33-
"gatsby-plugin-gatsby-cloud": "^4.20.0",
34-
"gatsby-plugin-image": "^2.21.0",
35-
"gatsby-plugin-manifest": "^4.21.0",
36-
"gatsby-plugin-matomo": "^0.9.0",
31+
"gatsby": "^5.4.0",
32+
"gatsby-plugin-emotion": "^8.4.0",
33+
"gatsby-plugin-gatsby-cloud": "^5.4.0",
34+
"gatsby-plugin-image": "^3.4.0",
35+
"gatsby-plugin-manifest": "^5.4.0",
36+
"gatsby-plugin-matomo": "^0.14.0",
3737
"gatsby-plugin-mdx": "^3.0.0",
38-
"gatsby-plugin-netlify": "^5.0.1",
39-
"gatsby-plugin-react-helmet": "^5.0.0",
38+
"gatsby-plugin-netlify": "^5.1.0",
39+
"gatsby-plugin-react-helmet": "^6.4.0",
4040
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
4141
"gatsby-plugin-react-svg": "^3.1.0",
4242
"gatsby-plugin-robots-txt": "^1.7.1",
@@ -46,14 +46,14 @@
4646
"gatsby-remark-copy-linked-files": "^5.21.0",
4747
"gatsby-remark-images": "^6.21.0",
4848
"gatsby-remark-reading-time": "^1.1.0",
49-
"gatsby-source-filesystem": "^4.21.1",
49+
"gatsby-source-filesystem": "^5.4.0",
5050
"gatsby-theme-i18n": "^3.0.0",
5151
"gatsby-theme-i18n-react-intl": "^3.0.0",
52-
"gatsby-transformer-csv": "^4.0.0",
52+
"gatsby-transformer-csv": "^5.4.0",
5353
"gatsby-transformer-gitinfo": "^1.1.0",
54-
"gatsby-transformer-json": "^4.11.0",
55-
"gatsby-transformer-remark": "^3.0.0",
56-
"gatsby-transformer-sharp": "^4.21.0",
54+
"gatsby-transformer-json": "^5.4.0",
55+
"gatsby-transformer-remark": "^6.4.0",
56+
"gatsby-transformer-sharp": "^5.4.0",
5757
"is-relative-url": "^3.0.0",
5858
"lodash": "^4.17.21",
5959
"luxon": "^1.24.1",
@@ -118,7 +118,7 @@
118118
}
119119
},
120120
"volta": {
121-
"node": "16.15.0",
121+
"node": "18.13.0",
122122
"npm": "8.5.5",
123123
"yarn": "1.22.18"
124124
}

src/pages/bug-bounty.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ export const ClientLogosSmall = graphql`
889889
export const query = graphql`
890890
query BugBountyPage {
891891
consensusBountyHunters: allConsensusBountyHuntersCsv(
892-
sort: { order: DESC, fields: score }
892+
sort: { score: DESC }
893893
) {
894894
nodes {
895895
username
@@ -898,7 +898,7 @@ export const query = graphql`
898898
}
899899
}
900900
executionBountyHunters: allExecutionBountyHuntersCsv(
901-
sort: { order: DESC, fields: score }
901+
sort: { score: DESC }
902902
) {
903903
nodes {
904904
username

src/pages/developers/tutorials.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ export const query = graphql`
466466
query DevelopersTutorialsPage {
467467
allTutorials: allMdx(
468468
filter: { slug: { regex: "/tutorials/" } }
469-
sort: { fields: frontmatter___published, order: DESC }
469+
sort: { frontmatter: { published: DESC } }
470470
) {
471471
nodes {
472472
fields {

src/pages/upgrades/get-involved/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -542,9 +542,7 @@ export const Clients = graphql`
542542

543543
export const query = graphql`
544544
query GetInvolvedPage {
545-
bountyHunters: allConsensusBountyHuntersCsv(
546-
sort: { order: DESC, fields: score }
547-
) {
545+
bountyHunters: allConsensusBountyHuntersCsv(sort: { score: DESC }) {
548546
nodes {
549547
username
550548
name

0 commit comments

Comments
 (0)