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

chore(deps): update node.js to v22 #1791

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 29, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
node (source) major 20.18.1 -> 22.11.0 age adoption passing confidence
@types/node (source) devDependencies minor 22.8.2 -> 22.10.1 age adoption passing confidence

Release Notes

nodejs/node (node)

v22.11.0

Compare Source

v22.10.0: 2024-10-16, Version 22.10.0 (Current), @​aduh95

Compare Source

Notable Changes
New "module-sync" exports condition

This release introduces a "module-sync" exports condition that's enabled when
require(esm) is enabled, so packages can supply a synchronous ES module to the
Node.js module loader, no matter if it's being required or imported. This is
similar to the "module" condition that bundlers have been using to support
require(esm) in Node.js, and allows dual-package authors to opt into ESM-first
only on newer versions of Node.js that supports require(esm) to avoid the
dual-package hazard.

{
  "type": "module",
  "exports": {
    "node": {
      // On new version of Node.js, both require() and import get
      // the ESM version
      "module-sync": "./index.js",
      // On older version of Node.js, where "module-sync" and require(esm) are
      // not supported, use the CJS version to avoid dual-package hazard.
      // When package authors think it's time to drop support for older versions of
      // Node.js, they can remove the exports conditions and just use "main": "index.js".
      "default": "./dist/index.cjs"
    },
    // On any other environment, use the ESM version.
    "default": "./index.js"
  }
}

Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have require(esm):

{
  "type": "module",
  "exports": {
    // On new version of Node.js, both require() and import get the ESM version
    "module-sync": "./index.js",
    // On older version of Node.js, where "module-sync" and require(esm) are
    // not supported, use the CJS version to avoid dual-package hazard.
    // When package authors think it's time to drop support for older versions of
    // Node.js, they can remove the exports conditions and just use "main": "index.js".
    "default": "./dist/index.cjs"
  }
}

For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support require(esm) while some older ones don't.
When all active Node.js LTS lines support require(esm), packages can simplify
their distributions by bumping the major version, dropping their CJS exports,
and removing the module-sync exports condition (with only main or default
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync and module and point them to the same ESM file. If the package
already doesn't want to support older versions of Node.js that doesn't support
require(esm), don't use this export condition.

For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both module/module-sync conditions during the
transition period, and can drop module-sync+module when they no longer need
to support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.

We ended up implementing a condition with a different name instead of reusing
"module", because existing code in the ecosystem using the "module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding import './noext' or import './directory'), so it would be
breaking to implement a "module" condition without implementing the forbidden
ESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.

Contributed by Joyee Cheung in #​54648.

node --run is now stable

This CLI flag runs a specified command from a package.json's "scripts" object.

For the following package.json:

{
  "scripts": {
    "test": "node --test-reporter junit --test ./test"
  }
}

You can run node --run test and that would start the test suite.

Contributed by Yagiz Nizipli in #​53763.

Other notable changes
  • [f0b441230a] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #​55262
  • [349d2ed07b] - (SEMVER-MINOR) crypto: add Date fields for validTo and validFrom (Andrew Moon) #​54159
  • [bebc95ed58] - doc: add abmusse to collaborators (Abdirahim Musse) #​55086
  • [914db60159] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #​54875
  • [f7c3b03759] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #​54826
  • [32261fc98a] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #​54933
  • [06957ff355] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #​54971
  • [2dcf70c347] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #​54971
  • [f9b19d7c44] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #​54971
  • [e95163b170] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [4050f68e5d] - (SEMVER-MINOR) process: add process.features.typescript (Aviv Keller) #​54295
  • [86f7cb802d] - (SEMVER-MINOR) test_runner: support custom arguments in run() (Aviv Keller) #​55126
  • [b62f2f8259] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #​54851
  • [d7c708aec5] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #​53937
  • [5fda4a1498] - (SEMVER-MINOR) worker: add markAsUncloneable api (Jason Zhang) #​55234
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Oct 29, 2024
@github-actions github-actions bot deployed to renovate/node-22.x October 29, 2024 17:08 Active
Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6721173f049c712bffdc5617 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6721173f049c712bffdc5617 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6721173f049c712bffdc5617 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6721173f049c712bffdc5617 Website draft URL: https://6721173f049c712bffdc5617--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

@github-actions github-actions bot deployed to renovate/node-22.x October 29, 2024 19:20 Active
@github-actions github-actions bot deployed to renovate/node-22.x October 29, 2024 19:20 Active
Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6721363fa7313653eaf29030 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6721363fa7313653eaf29030 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6721363fa7313653eaf29030 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6721363fa7313653eaf29030 Website draft URL: https://6721363fa7313653eaf29030--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67213642735dd857f59ac0f0 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67213642735dd857f59ac0f0 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67213642735dd857f59ac0f0 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67213642735dd857f59ac0f0 Website draft URL: https://67213642735dd857f59ac0f0--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

@github-actions github-actions bot deployed to renovate/node-22.x October 31, 2024 06:06 Active
@github-actions github-actions bot deployed to renovate/node-22.x October 31, 2024 06:06 Active
Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67231eeea52404ff0e8b263b dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67231eeea52404ff0e8b263b Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67231eeea52404ff0e8b263b Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67231eeea52404ff0e8b263b Website draft URL: https://67231eeea52404ff0e8b263b--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67231f01b12b7e00ffdfcabc dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67231f01b12b7e00ffdfcabc Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67231f01b12b7e00ffdfcabc Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67231f01b12b7e00ffdfcabc Website draft URL: https://67231f01b12b7e00ffdfcabc--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6723ce8e08b675073a228d13 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6723ce8e08b675073a228d13 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6723ce8e08b675073a228d13 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6723ce8e08b675073a228d13 Website draft URL: https://6723ce8e08b675073a228d13--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

@github-actions github-actions bot deployed to renovate/node-22.x October 31, 2024 18:44 Active
Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6723d069a37a3713b2c81eaf dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6723d069a37a3713b2c81eaf Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6723d069a37a3713b2c81eaf Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6723d069a37a3713b2c81eaf Website draft URL: https://6723d069a37a3713b2c81eaf--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

@github-actions github-actions bot deployed to renovate/node-22.x November 3, 2024 06:40 Active
@github-actions github-actions bot deployed to renovate/node-22.x November 3, 2024 06:40 Active
Copy link

github-actions bot commented Nov 3, 2024

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67271b9d388ea8b79457634a dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67271b9d388ea8b79457634a Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67271b9d388ea8b79457634a Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67271b9d388ea8b79457634a Website draft URL: https://67271b9d388ea8b79457634a--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

github-actions bot commented Nov 3, 2024

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67271ba42a603e8980801d1a dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67271ba42a603e8980801d1a Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67271ba42a603e8980801d1a Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67271ba42a603e8980801d1a Website draft URL: https://67271ba42a603e8980801d1a--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

@github-actions github-actions bot deployed to renovate/node-22.x November 5, 2024 04:32 Active
@github-actions github-actions bot deployed to renovate/node-22.x November 5, 2024 04:32 Active
Copy link

github-actions bot commented Nov 5, 2024

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6729a0986dee42e8a5af7f7f dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6729a0986dee42e8a5af7f7f Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6729a0986dee42e8a5af7f7f Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6729a0986dee42e8a5af7f7f Website draft URL: https://6729a0986dee42e8a5af7f7f--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

github-actions bot commented Nov 5, 2024

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6729a09c6dee42e8a5af7f82 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6729a09c6dee42e8a5af7f82 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6729a09c6dee42e8a5af7f82 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6729a09c6dee42e8a5af7f82 Website draft URL: https://6729a09c6dee42e8a5af7f82--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

@renovate renovate bot changed the title chore(deps): update dependency node to v22 chore(deps): update node.js to v22 Nov 13, 2024
@github-actions github-actions bot deployed to renovate/node-22.x November 13, 2024 05:26 Active
@github-actions github-actions bot deployed to renovate/node-22.x November 21, 2024 17:17 Active
@github-actions github-actions bot deployed to renovate/node-22.x November 21, 2024 17:17 Active
Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 673f6bcce900973790b1a2d7 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/673f6bcce900973790b1a2d7 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:673f6bcce900973790b1a2d7 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:673f6bcce900973790b1a2d7 Website draft URL: https://673f6bcce900973790b1a2d7--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 673f6bdc9d6f2628e2f6a9ae dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/673f6bdc9d6f2628e2f6a9ae Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:673f6bdc9d6f2628e2f6a9ae Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:673f6bdc9d6f2628e2f6a9ae Website draft URL: https://673f6bdc9d6f2628e2f6a9ae--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67413b354c4a7daa94c5c0b0 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67413b354c4a7daa94c5c0b0 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67413b354c4a7daa94c5c0b0 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67413b354c4a7daa94c5c0b0 Website draft URL: https://67413b354c4a7daa94c5c0b0--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67413b5f5bbf05aaaaba276a dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67413b5f5bbf05aaaaba276a Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67413b5f5bbf05aaaaba276a Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67413b5f5bbf05aaaaba276a Website draft URL: https://67413b5f5bbf05aaaaba276a--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67417b11e47b0bd440fcc77e dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67417b11e47b0bd440fcc77e Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67417b11e47b0bd440fcc77e Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67417b11e47b0bd440fcc77e Website draft URL: https://67417b11e47b0bd440fcc77e--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67417b4df2fea4ee332fb764 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67417b4df2fea4ee332fb764 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67417b4df2fea4ee332fb764 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67417b4df2fea4ee332fb764 Website draft URL: https://67417b4df2fea4ee332fb764--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67450c0e55f8ee658b7b5cc7 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67450c0e55f8ee658b7b5cc7 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67450c0e55f8ee658b7b5cc7 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67450c0e55f8ee658b7b5cc7 Website draft URL: https://67450c0e55f8ee658b7b5cc7--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 67450c1f1a06b5673ad4aecd dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/67450c1f1a06b5673ad4aecd Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:67450c1f1a06b5673ad4aecd Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:67450c1f1a06b5673ad4aecd Website draft URL: https://67450c1f1a06b5673ad4aecd--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6745433baa323c9c6b95d8bd dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6745433baa323c9c6b95d8bd Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6745433baa323c9c6b95d8bd Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6745433baa323c9c6b95d8bd Website draft URL: https://6745433baa323c9c6b95d8bd--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6745436755f8eea8727b5c7b dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6745436755f8eea8727b5c7b Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6745436755f8eea8727b5c7b Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6745436755f8eea8727b5c7b Website draft URL: https://6745436755f8eea8727b5c7b--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 674826150b2e0b631bb31510 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/674826150b2e0b631bb31510 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:674826150b2e0b631bb31510 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:674826150b2e0b631bb31510 Website draft URL: https://674826150b2e0b631bb31510--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Copy link

🚀 This pull request is being automatically deployed to Netlify.

✅ Preview:
🔍 Inspect:
📝 Output: Deploy path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/public Configuration path: /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml Deploying to draft URL... ​ Netlify Build ──────────────────────────────────────────────────────────────── ​ ❯ Version @netlify/build 29.56.0 ​ ❯ Flags auth: TkAPXA5PNB7g1X-jIR4Gvb7rjjn4KctoVolh8snXz5E deployId: 6748261786d4e8542561f063 dir: public open: false prod: false prodIfUnlocked: false site: 418e0ffe-e0eb-46d1-84a1-43fec5698791 skipFunctionsCache: false ​ ❯ Current directory /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby ​ ❯ Config file /home/runner/work/KCVV-Elewijt-Gatsby/KCVV-Elewijt-Gatsby/netlify.toml ​ ❯ Context dev Build logs: https://app.netlify.com/sites/kcvvelewijt/deploys/6748261786d4e8542561f063 Function logs: https://app.netlify.com/sites/kcvvelewijt/logs/functions?scope=deploy:6748261786d4e8542561f063 Edge function Logs: https://app.netlify.com/sites/kcvvelewijt/logs/edge-functions?scope=deployid:6748261786d4e8542561f063 Website draft URL: https://6748261786d4e8542561f063--kcvvelewijt.netlify.app If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants