diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 50723859..d8a6fe6a 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -9,3 +9,23 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
+
+ - package-ecosystem: npm
+ directory: /site
+ schedule:
+ interval: "monthly"
+ groups:
+ gatsby:
+ patterns:
+ - "*gatsby*/*"
+ - "*/*gatsby*"
+ - "gatsby*"
+
+ - package-ecosystem: github-actions
+ directory: /
+ schedule:
+ interval: "monthly"
+ groups:
+ artifact-actions:
+ patterns:
+ - "actions/*-artifact*" # Upload/Download usually need to be updated together
diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml
index d227973a..d08c3b9c 100644
--- a/.github/workflows/continuous-integration.yml
+++ b/.github/workflows/continuous-integration.yml
@@ -9,6 +9,9 @@ on:
branches: [main]
workflow_call:
+permissions:
+ contents: read
+
jobs:
build:
strategy:
@@ -16,11 +19,11 @@ jobs:
os: [windows-2022, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
fetch-depth: 0
- name: Setup .NET
- uses: actions/setup-dotnet@v3
+ uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
with:
dotnet-version: |
8.0.x
@@ -31,7 +34,7 @@ jobs:
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal -p:CollectCoverage=true -p:CoverletOutputFormat=opencover
- name: Upload Test Report to Codecov
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6
with:
files: ./test/Crossroads.Test/coverage.opencover.xml, ./test/Crossroads.Launcher.Test/coverage.opencover.xml
flags: unittests
@@ -39,7 +42,7 @@ jobs:
- name: Pack
run: dotnet pack ./src/Crossroads/Crossroads.csproj --no-build --configuration Release --output package
- name: Package published artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: package
path: package/*.nupkg
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 8a425a41..e78c967e 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
+ uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version: 18
cache: 'npm'
@@ -27,7 +27,7 @@ jobs:
- run: npm ci
- run: npm run build
- name: Deploy
- uses: crazy-max/ghaction-github-pages@v3
+ uses: crazy-max/ghaction-github-pages@5859b4ea7efe6b470a5b19c570460eae9323aefc # v3.2.0
with:
target_branch: gh-pages
build_dir: docs
diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml
index 8737fd60..5a67d84d 100644
--- a/.github/workflows/pr-build.yml
+++ b/.github/workflows/pr-build.yml
@@ -9,14 +9,17 @@ defaults:
run:
working-directory: ./site
+permissions:
+ contents: read
+
jobs:
build:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
+ uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version: 18
cache: 'npm'
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index b4cbd937..18ea0a39 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -14,7 +14,7 @@ jobs:
steps:
- name: Download artifact
- uses: actions/download-artifact@v2
+ ses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # v2.1.1
with:
name: package
path: ./package
diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml
index 166be874..9952ef08 100644
--- a/.github/workflows/scorecard.yml
+++ b/.github/workflows/scorecard.yml
@@ -54,7 +54,7 @@ jobs:
# For private repositories:
# - `publish_results` will always be set to `false`, regardless
# of the value entered here.
- publish_results: false
+ publish_results: true
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
diff --git a/Directory.Build.props b/Directory.Build.props
index fffb67c0..5f57b0e2 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -4,8 +4,8 @@
- 7.0.1
- 7.0.0
+ 8.0.0
+ 8.0.0
0.3.0-alpha.21216.1
19.2.69
4.7.0
@@ -17,11 +17,11 @@
- 6.0.0
+ 6.0.1
17.8.0
2.7.0
2.5.7
- 4.20.69
+ 4.20.70
20.0.15
3.2.0
diff --git a/site/package-lock.json b/site/package-lock.json
index 93140f7d..843bd0bf 100644
--- a/site/package-lock.json
+++ b/site/package-lock.json
@@ -10,29 +10,29 @@
"dependencies": {
"@mdx-js/react": "^2.3.0",
"gatsby": "^5.12.11",
- "gatsby-plugin-image": "^3.12.3",
- "gatsby-plugin-manifest": "^5.12.3",
+ "gatsby-plugin-image": "^3.13.1",
+ "gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-mdx": "^5.12.3",
"gatsby-plugin-react-helmet": "^6.12.0",
- "gatsby-plugin-sharp": "^5.12.3",
- "gatsby-plugin-sitemap": "^6.12.3",
+ "gatsby-plugin-sharp": "^5.13.1",
+ "gatsby-plugin-sitemap": "^6.13.1",
"gatsby-plugin-webfonts": "^2.3.2",
"gatsby-remark-autolink-headers": "^6.12.3",
"gatsby-remark-copy-linked-files": "^6.12.0",
- "gatsby-remark-images": "^7.12.3",
+ "gatsby-remark-images": "^7.13.1",
"gatsby-remark-prismjs": "^7.12.0",
"gatsby-remark-responsive-iframe": "^6.12.0",
"gatsby-remark-smartypants": "^6.12.0",
- "gatsby-source-filesystem": "^5.12.1",
+ "gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-sharp": "^5.12.3",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
- "style-to-object": "^0.4.4"
+ "style-to-object": "^1.0.5"
},
"devDependencies": {
- "prettier": "^2.8.8"
+ "prettier": "^3.2.5"
},
"engines": {
"node": "^18.14.0",
@@ -5538,13 +5538,13 @@
}
},
"node_modules/babel-plugin-remove-graphql-queries": {
- "version": "5.12.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.12.1.tgz",
- "integrity": "sha512-R5FyZLs+YfhCpUJkpSyVwIbaw9Ya4TC4xIOBJzPK9Z3u5XVCI459aykLPyfYAWwbsI9yvjm/Ux5ft4/U4rNvMQ==",
+ "version": "5.13.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.13.1.tgz",
+ "integrity": "sha512-yncJ/W6Un48aBRpK/rmdpQOMcr4+EmJ3oi2Wq1zXKu8WLlw+j93KTbejf7fg2msm8GUskb/+9Nnpz7oMCqO9aA==",
"dependencies": {
"@babel/runtime": "^7.20.13",
"@babel/types": "^7.20.7",
- "gatsby-core-utils": "^4.12.1"
+ "gatsby-core-utils": "^4.13.1"
},
"engines": {
"node": ">=18.0.0"
@@ -9841,9 +9841,9 @@
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
},
"node_modules/gatsby-core-utils": {
- "version": "4.12.1",
- "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.12.1.tgz",
- "integrity": "sha512-YW7eCK2M6yGQerT5LkdOHLZTNYMsDvcgeDMRy0q66FWKj7twPZX428I6NaLCMeF5dYoj1HOOO0u96iNlW5jcKQ==",
+ "version": "4.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.13.1.tgz",
+ "integrity": "sha512-w7G6SsQr8T2q+AJ1MxvRNGocCt+wjc22MiRLj2Zi3Ijpjszbr818JxwI4+aPt8WOSHlKT5SYCHICnEvcYPm9gg==",
"dependencies": {
"@babel/runtime": "^7.20.13",
"ci-info": "2.0.0",
@@ -9957,22 +9957,22 @@
}
},
"node_modules/gatsby-plugin-image": {
- "version": "3.12.3",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.12.3.tgz",
- "integrity": "sha512-945XpVY/14M9msfOI2fulunEUSJnw0YnwfbRq7omvqAWOH/fCnXWkyYj89NAcmNIOSM/a+KgQyaIDosnVHXdpw==",
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.13.1.tgz",
+ "integrity": "sha512-v5jGXxjr//iLk7LzpW6RW/9H4KNVezxee2Sgy9mxvdvekTuFQLYoQmtk2jOZINMZMP3Vm+Rl3MqWWVMfhHuWFw==",
"dependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/parser": "^7.20.13",
"@babel/runtime": "^7.20.13",
"@babel/traverse": "^7.20.13",
"babel-jsx-utils": "^1.1.0",
- "babel-plugin-remove-graphql-queries": "^5.12.1",
+ "babel-plugin-remove-graphql-queries": "^5.13.1",
"camelcase": "^6.3.0",
"chokidar": "^3.5.3",
"common-tags": "^1.8.2",
"fs-extra": "^11.1.1",
- "gatsby-core-utils": "^4.12.1",
- "gatsby-plugin-utils": "^4.12.3",
+ "gatsby-core-utils": "^4.13.1",
+ "gatsby-plugin-utils": "^4.13.1",
"objectFitPolyfill": "^2.3.5",
"prop-types": "^15.8.1"
},
@@ -9994,13 +9994,13 @@
}
},
"node_modules/gatsby-plugin-manifest": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.12.3.tgz",
- "integrity": "sha512-qpH0pSIIt7ggO7OnP127eKn6fhD1DKTzg9Aw8vaMCO8MMOQ5qfOn3ZrRCgH6DuaU1admZU18gFKlCKH+QHoGfQ==",
+ "version": "5.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.13.1.tgz",
+ "integrity": "sha512-F8zGMYz2tRDAzQO7hLrYv+xCFyIoeySeGsEk9j1KTdWB4liVQvLtFSXzj7yljyOTinDmA7mDStCiQFStC0rHZQ==",
"dependencies": {
"@babel/runtime": "^7.20.13",
- "gatsby-core-utils": "^4.12.1",
- "gatsby-plugin-utils": "^4.12.3",
+ "gatsby-core-utils": "^4.13.1",
+ "gatsby-plugin-utils": "^4.13.1",
"semver": "^7.5.3",
"sharp": "^0.32.6"
},
@@ -10115,9 +10115,9 @@
}
},
"node_modules/gatsby-plugin-sharp": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.12.3.tgz",
- "integrity": "sha512-bEVhap/Ce6pzXXk/9U6Xug9+MmXwpZKzQZke8PxNBy1ouMZ2H4chgpcASnWpwnWkPvP+Fnehlh/whySDHmoLGw==",
+ "version": "5.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.13.1.tgz",
+ "integrity": "sha512-PA1LxLjZ7nKjgGykfbIxNQqrfqqfNsMN6+7wZNy5HK4Vhqjw1zDyImJEBEn6v08L2T3tlLMgR0or/OE7yo7F9A==",
"dependencies": {
"@babel/runtime": "^7.20.13",
"async": "^3.2.4",
@@ -10125,8 +10125,8 @@
"debug": "^4.3.4",
"filenamify": "^4.3.0",
"fs-extra": "^11.1.1",
- "gatsby-core-utils": "^4.12.1",
- "gatsby-plugin-utils": "^4.12.3",
+ "gatsby-core-utils": "^4.13.1",
+ "gatsby-plugin-utils": "^4.13.1",
"lodash": "^4.17.21",
"probe-image-size": "^7.2.3",
"semver": "^7.5.3",
@@ -10175,9 +10175,9 @@
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
},
"node_modules/gatsby-plugin-sitemap": {
- "version": "6.12.3",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-sitemap/-/gatsby-plugin-sitemap-6.12.3.tgz",
- "integrity": "sha512-D1ZAji/Tj630RPL/1eebzfihIWDArZz1xsV+9bR51UC2lYd3rApqGiGnAyT+Ou4VdL9vtIUtQ0GhhnpovoqXBg==",
+ "version": "6.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-sitemap/-/gatsby-plugin-sitemap-6.13.1.tgz",
+ "integrity": "sha512-PuBcCjpwVj7NVW/GXFgmP2NLhM5FsFV618pVGCWnLSr0cPrtJsmPtLze1PMaq148EGUGnnctl/+7VLozheQ/CA==",
"dependencies": {
"@babel/runtime": "^7.20.13",
"common-tags": "^1.8.2",
@@ -10214,15 +10214,15 @@
}
},
"node_modules/gatsby-plugin-utils": {
- "version": "4.12.3",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.12.3.tgz",
- "integrity": "sha512-AMagRfVAIwc3w66RZzq9cGPma3pkrGe/iyhktmHWDOtu45tOt0zlbSY91juuCw2Oov17WzJp2TWKQ/i0nkuLbA==",
+ "version": "4.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.13.1.tgz",
+ "integrity": "sha512-dQ8cZyUENWHqZOOSBBYWCJ8yG3zSYnHYk0mKQbgZblUS30Sp7ZFM4r0/+lsvUkEYaBOnzFBQjSSQtTa0xu9QWA==",
"dependencies": {
"@babel/runtime": "^7.20.13",
"fastq": "^1.15.0",
"fs-extra": "^11.1.1",
- "gatsby-core-utils": "^4.12.1",
- "gatsby-sharp": "^1.12.1",
+ "gatsby-core-utils": "^4.13.1",
+ "gatsby-sharp": "^1.13.0",
"graphql-compose": "^9.0.10",
"import-from": "^4.0.0",
"joi": "^17.9.2",
@@ -10367,14 +10367,14 @@
}
},
"node_modules/gatsby-remark-images": {
- "version": "7.12.3",
- "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.12.3.tgz",
- "integrity": "sha512-rolG1X6jfLnNWlXYyqqonohpHoS0V5s9bSpS4c8wvupWUHB6dok81g6E2we8ZOo+dJAKokDkBU1YViBC+IBVHg==",
+ "version": "7.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.13.1.tgz",
+ "integrity": "sha512-Fv+k0rGNsP6rDeoCuxjwKP4zsHVqsARVyCso8YrDIAzdv1pZ91THuZcA3phorpkr8wtmija17kLLKDjT8/RZtQ==",
"dependencies": {
"@babel/runtime": "^7.20.13",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
- "gatsby-core-utils": "^4.12.1",
+ "gatsby-core-utils": "^4.13.1",
"is-relative-url": "^3.0.0",
"lodash": "^4.17.21",
"mdast-util-definitions": "^4.0.0",
@@ -10589,9 +10589,9 @@
}
},
"node_modules/gatsby-sharp": {
- "version": "1.12.1",
- "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.12.1.tgz",
- "integrity": "sha512-e7lqA74UZau7MOktc9V+sNh86a8oNZPFIsY5Atk+C0sGlzHx0IcivsJjwLHJ6OF11SIC38a9z2wE8Nl6YiG/Ig==",
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.13.0.tgz",
+ "integrity": "sha512-DviUtgm7tatSd1Hm54o/orHimOcyXBO9OJkSfzEchPFClvOza+2Qe/lqZShio0gFDxmG0Jgn0XCLzG7uH5VyJQ==",
"dependencies": {
"sharp": "^0.32.6"
},
@@ -10600,15 +10600,15 @@
}
},
"node_modules/gatsby-source-filesystem": {
- "version": "5.12.1",
- "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.12.1.tgz",
- "integrity": "sha512-JV6lttId7cBDasVaweFbKuDQP9VH8fFgI1Mg0sM/tfydfKTLXiEbBadKgEHbvbwAZsYjK+/KvT7A58dzrzDdXw==",
+ "version": "5.13.1",
+ "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.13.1.tgz",
+ "integrity": "sha512-nFWzOBpi84nDeVNeO7bpKL9mVYMl1tfjJmE5l868YATFShGzZnA6qMd200XCsf78PexZHAiV/P1MlsyKqjJduA==",
"dependencies": {
"@babel/runtime": "^7.20.13",
"chokidar": "^3.5.3",
"file-type": "^16.5.4",
"fs-extra": "^11.1.1",
- "gatsby-core-utils": "^4.12.1",
+ "gatsby-core-utils": "^4.13.1",
"mime": "^3.0.0",
"pretty-bytes": "^5.6.0",
"valid-url": "^1.0.9",
@@ -10968,6 +10968,11 @@
"node": ">=8"
}
},
+ "node_modules/gatsby/node_modules/inline-style-parser": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
+ "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="
+ },
"node_modules/gatsby/node_modules/lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
@@ -10993,6 +10998,14 @@
"node": ">=10"
}
},
+ "node_modules/gatsby/node_modules/style-to-object": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz",
+ "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==",
+ "dependencies": {
+ "inline-style-parser": "0.1.1"
+ }
+ },
"node_modules/gatsby/node_modules/supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
@@ -11514,6 +11527,19 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/hast-util-to-estree/node_modules/inline-style-parser": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
+ "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="
+ },
+ "node_modules/hast-util-to-estree/node_modules/style-to-object": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz",
+ "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==",
+ "dependencies": {
+ "inline-style-parser": "0.1.1"
+ }
+ },
"node_modules/hast-util-to-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-2.0.0.tgz",
@@ -11808,9 +11834,9 @@
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
},
"node_modules/inline-style-parser": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
- "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.2.tgz",
+ "integrity": "sha512-EcKzdTHVe8wFVOGEYXiW9WmJXPjqi1T+234YpJr98RiFYKHV3cdy1+3mkTE+KHTHxFFLH51SfaGOoUdW+v7ViQ=="
},
"node_modules/inquirer": {
"version": "7.3.3",
@@ -16038,15 +16064,15 @@
}
},
"node_modules/prettier": {
- "version": "2.8.8",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
- "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz",
+ "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==",
"dev": true,
"bin": {
- "prettier": "bin-prettier.js"
+ "prettier": "bin/prettier.cjs"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">=14"
},
"funding": {
"url": "https://github.com/prettier/prettier?sponsor=1"
@@ -18310,11 +18336,11 @@
}
},
"node_modules/style-to-object": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz",
- "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.5.tgz",
+ "integrity": "sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==",
"dependencies": {
- "inline-style-parser": "0.1.1"
+ "inline-style-parser": "0.2.2"
}
},
"node_modules/stylehacks": {
diff --git a/site/package.json b/site/package.json
index 1366037d..e695a9e9 100644
--- a/site/package.json
+++ b/site/package.json
@@ -14,26 +14,26 @@
"dependencies": {
"@mdx-js/react": "^2.3.0",
"gatsby": "^5.12.11",
- "gatsby-plugin-image": "^3.12.3",
- "gatsby-plugin-manifest": "^5.12.3",
+ "gatsby-plugin-image": "^3.13.1",
+ "gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-mdx": "^5.12.3",
"gatsby-plugin-react-helmet": "^6.12.0",
- "gatsby-plugin-sharp": "^5.12.3",
- "gatsby-plugin-sitemap": "^6.12.3",
+ "gatsby-plugin-sharp": "^5.13.1",
+ "gatsby-plugin-sitemap": "^6.13.1",
"gatsby-plugin-webfonts": "^2.3.2",
"gatsby-remark-autolink-headers": "^6.12.3",
"gatsby-remark-copy-linked-files": "^6.12.0",
- "gatsby-remark-images": "^7.12.3",
+ "gatsby-remark-images": "^7.13.1",
"gatsby-remark-prismjs": "^7.12.0",
"gatsby-remark-responsive-iframe": "^6.12.0",
"gatsby-remark-smartypants": "^6.12.0",
- "gatsby-source-filesystem": "^5.12.1",
+ "gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-sharp": "^5.12.3",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
- "style-to-object": "^0.4.4"
+ "style-to-object": "^1.0.5"
},
"scripts": {
"develop": "gatsby develop -H 0.0.0.0",
@@ -44,6 +44,6 @@
"clean": "gatsby clean"
},
"devDependencies": {
- "prettier": "^2.8.8"
+ "prettier": "^3.2.5"
}
}