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 #264

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 9, 2024

This PR contains the following updates:

Package Type Update Change
node (source) engines major 14 -> 22.12.0

Release Notes

nodejs/node (node)

v22.12.0

Compare Source

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 - "after 6am and before 10am on monday" (UTC), 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 this update 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 Dec 9, 2024
Copy link
Contributor

github-actions bot commented Dec 9, 2024

Images automagically compressed by Calibre's image-actions

Compression reduced images by 44.8%, saving 8.30 MB.

Filename Before After Improvement Visual comparison
template/public/img/uploads/10.png 4.55 KB 2.16 KB -52.6% View diff
template/public/img/uploads/11.png 6.33 KB 3.65 KB -42.3% View diff
template/public/img/uploads/12.png 5.38 KB 3.06 KB -43.2% View diff
template/public/img/uploads/13.png 4.91 KB 2.47 KB -49.6% View diff
template/public/img/uploads/16.png 6.08 KB 3.56 KB -41.5% View diff
template/public/img/uploads/2.png 8.09 KB 3.77 KB -53.4% View diff
template/public/img/uploads/56465-d.jpg 29.40 KB 20.67 KB -29.7% View diff
template/public/img/uploads/abstrato-duplo-marrom-a.jpg 55.13 KB 38.37 KB -30.4% View diff
template/public/img/uploads/amb-tela-20x60-mandalas-2.jpg 35.62 KB 27.58 KB -22.6% View diff
template/public/img/uploads/artestore-atelie-logo.png 77.09 KB 66.83 KB -13.3% View diff
template/public/img/uploads/artestore-empresa-associada-abcomm.png 11.08 KB 8.26 KB -25.5% View diff
template/public/img/uploads/atelie-artestore-icone.png 7.46 KB 6.00 KB -19.6% View diff
template/public/img/uploads/aula-de-desenho-gratis.webp 424.31 KB 108.17 KB -74.5% View diff
template/public/img/uploads/aula-de-pintura-gratis.webp 207.46 KB 174.98 KB -15.7% View diff
template/public/img/uploads/baaner-fino-artestore.png 95.83 KB 86.68 KB -9.5% View diff
template/public/img/uploads/baaner-fino-artestore.webp 49.91 KB 14.11 KB -71.7% View diff
template/public/img/uploads/banner-atelie-artestore-m.webp 194.80 KB 26.07 KB -86.6% View diff
template/public/img/uploads/banner-atelie-artestore.webp 267.79 KB 30.93 KB -88.4% View diff
template/public/img/uploads/banner-chapeus.webp 6.44 KB 6.37 KB -1.1% View diff
template/public/img/uploads/banner-fino-artestore_m.png 92.49 KB 86.51 KB -6.5% View diff
template/public/img/uploads/banner-fino-artestore_m.webp 49.86 KB 11.54 KB -76.9% View diff
template/public/img/uploads/banner-para-queima-de-estoque-m.webp 976.31 KB 134.54 KB -86.2% View diff
template/public/img/uploads/banner-para-queima-de-estoque.webp 343.12 KB 53.77 KB -84.3% View diff
template/public/img/uploads/banner-serar-estoque-frete-gratis.webp 156.86 KB 44.43 KB -71.7% View diff
template/public/img/uploads/banner-super-liquida-artestore-loja-m.jpg 144.42 KB 137.31 KB -4.9% View diff
template/public/img/uploads/banner-super-liquida-artestore-loja-m.webp 90.67 KB 78.19 KB -13.8% View diff
template/public/img/uploads/banner-urbana-praia-artestore-m.webp 16.87 KB 16.67 KB -1.2% View diff
template/public/img/uploads/banner-urbana-praia-artestore.webp 55.79 KB 54.97 KB -1.5% View diff
template/public/img/uploads/black-friday-artestore-frete-gratis-m.png 1.07 MB 1.03 MB -3.2% View diff
template/public/img/uploads/black-friday-artestore-frete-gratis-m.webp 580.88 KB 157.83 KB -72.8% View diff
template/public/img/uploads/black-friday-artestore-frete-gratis.png 543.32 KB 524.26 KB -3.5% View diff
template/public/img/uploads/black-friday-artestore-frete-gratis.webp 276.57 KB 71.22 KB -74.2% View diff
template/public/img/uploads/black-friday-artestore-m.png 1.07 MB 1.03 MB -3.5% View diff
template/public/img/uploads/black-friday-artestore-m.webp 579.65 KB 160.25 KB -72.4% View diff
template/public/img/uploads/black-friday-artestore.png 543.26 KB 524.27 KB -3.5% View diff
template/public/img/uploads/black-friday-artestore.webp 276.63 KB 71.14 KB -74.3% View diff
template/public/img/uploads/black-friday21.png 150.68 KB 139.74 KB -7.3% View diff
template/public/img/uploads/black-friday21.webp 81.37 KB 23.18 KB -71.5% View diff
template/public/img/uploads/black-friday21m.png 246.93 KB 221.32 KB -10.4% View diff
template/public/img/uploads/black-friday21m.webp 138.34 KB 36.43 KB -73.7% View diff
template/public/img/uploads/bolsa-de-palha-pra-grid.webp 26.22 KB 25.91 KB -1.2% View diff
template/public/img/uploads/bolsa-de-palha-praia-artestore-home-m.webp 25.13 KB 24.83 KB -1.2% View diff
template/public/img/uploads/bolsa-de-praia-como-escolher.webp 39.39 KB 38.97 KB -1.1% View diff
template/public/img/uploads/bolsas-com-frete-gratis-m.webp 94.97 KB 91.44 KB -3.7% View diff
template/public/img/uploads/bolsas-frete-gratis.webp 61.59 KB 59.11 KB -4.0% View diff
template/public/img/uploads/bord-amar-v.jpg 29.02 KB 19.18 KB -33.9% View diff
template/public/img/uploads/brown-cart-online-shop-icon-modern-logo-1-.png 25.48 KB 16.95 KB -33.5% View diff
template/public/img/uploads/campanha-natal-economia-frete-artestore-m.webp 705.18 KB 71.28 KB -89.9% View diff
template/public/img/uploads/campanha-natal-economia-frete-artestore.webp 517.46 KB 57.03 KB -89.0% View diff
template/public/img/uploads/categoria-chapeus.webp 27.16 KB 26.56 KB -2.2% View diff
template/public/img/uploads/categoria-clutches.webp 36.64 KB 36.07 KB -1.5% View diff
template/public/img/uploads/categoriacessorios-m.webp 9.76 KB 9.66 KB -1.0% View diff
template/public/img/uploads/circulo-esfera.png 24.04 KB 19.23 KB -20.0% View diff
template/public/img/uploads/combo-de-carteiras-de-palha-m.webp 19.26 KB 19.02 KB -1.2% View diff
template/public/img/uploads/como-caecar-a-desenhar.png 17.60 KB 13.13 KB -25.4% View diff
template/public/img/uploads/como-caecar-a-desenhar.webp 8.53 KB 1.98 KB -76.7% View diff
template/public/img/uploads/como-comecar-a-desenhar.png 57.55 KB 42.33 KB -26.5% View diff
template/public/img/uploads/como-escolher-a-bolsa-de-palha.webp 18.57 KB 3.09 KB -83.4% View diff
template/public/img/uploads/cores-rgb-e-cmyk.webp 15.00 KB 2.92 KB -80.5% View diff
template/public/img/uploads/decoracao-com-mandalas-na-parede.jpg 6.83 KB 4.70 KB -31.2% View diff
template/public/img/uploads/desenho-aulas-gratis.webp 66.74 KB 55.28 KB -17.2% View diff
template/public/img/uploads/desenho-cubos-simples.jpg 62.43 KB 57.62 KB -7.7% View diff
template/public/img/uploads/desenho-paisagem.jpg 35.41 KB 31.35 KB -11.5% View diff
template/public/img/uploads/desenho-vaso.jpg 51.40 KB 46.48 KB -9.6% View diff
template/public/img/uploads/desenho-xicara.jpg 64.15 KB 60.06 KB -6.4% View diff
template/public/img/uploads/design-sem-nome-1-.jpg 20.47 KB 14.91 KB -27.2% View diff
template/public/img/uploads/design-sem-nome-2-.jpg 35.41 KB 31.35 KB -11.5% View diff
template/public/img/uploads/desneho-colher.jpg 71.84 KB 67.23 KB -6.4% View diff
template/public/img/uploads/divisoria-texto-artestore.jpg 10.90 KB 7.43 KB -31.8% View diff
template/public/img/uploads/dueto-9902b.jpg 53.94 KB 37.57 KB -30.4% View diff
template/public/img/uploads/dueto-vert-verm-verde.jpg 73.87 KB 51.90 KB -29.7% View diff
template/public/img/uploads/duo-20-60-3-v.jpg 47.37 KB 33.62 KB -29.0% View diff
template/public/img/uploads/duo-areia.jpg 57.72 KB 38.11 KB -34.0% View diff
template/public/img/uploads/duo-azul.jpg 44.10 KB 31.23 KB -29.2% View diff
template/public/img/uploads/duo-indi.jpg 78.29 KB 53.39 KB -31.8% View diff
template/public/img/uploads/duo-metalizado.jpg 31.46 KB 22.01 KB -30.0% View diff
template/public/img/uploads/duo-novo-amar-2a.jpg 113.88 KB 79.12 KB -30.5% View diff
template/public/img/uploads/duo-vermelho-azul.jpg 28.52 KB 20.04 KB -29.7% View diff
template/public/img/uploads/estudo-e-teoria-da-cor.webp 26.19 KB 18.69 KB -28.6% View diff
template/public/img/uploads/fav-artestore-2021-v-.png 16.09 KB 13.56 KB -15.7% View diff
template/public/img/uploads/fav-logo-artestore-2021.png 23.11 KB 20.24 KB -12.4% View diff
template/public/img/uploads/foto-luz-sombra-2.png 64.99 KB 64.08 KB -1.4% View diff
template/public/img/uploads/foto-perfil-logo-artestore.webp 245.73 KB 45.77 KB -81.4% View diff
template/public/img/uploads/frete-gratis-cortesia-artestore-m.png 133.05 KB 85.05 KB -36.1% View diff
template/public/img/uploads/frete-gratis-cortesia-artestore-m.webp 47.69 KB 31.17 KB -34.6% View diff
template/public/img/uploads/frete-gratis-cortesia-artestore.png 121.24 KB 79.51 KB -34.4% View diff
template/public/img/uploads/frete-gratis-cortesia-artestore.webp 45.10 KB 27.82 KB -38.3% View diff
template/public/img/uploads/frete-gratis-toda-loja-artestore_m.webp 60.59 KB 54.82 KB -9.5% View diff
template/public/img/uploads/frete-gratis-toda-loja-artestore.jpg 67.69 KB 62.96 KB -7.0% View diff
template/public/img/uploads/frete-gratis-toda-loja-artestore.webp 47.79 KB 42.26 KB -11.6% View diff
template/public/img/uploads/girassois-van-gogh.webp 24.56 KB 4.91 KB -80.0% View diff
template/public/img/uploads/grandes-mestres-da-pintura-arte.webp 162.39 KB 135.31 KB -16.7% View diff
template/public/img/uploads/harmonia-das-cores.webp 11.11 KB 1.50 KB -86.5% View diff
template/public/img/uploads/historia-das-cores.webp 16.66 KB 2.30 KB -86.2% View diff
template/public/img/uploads/lencos-e-echarpes.webp 18.57 KB 2.63 KB -85.8% View diff
template/public/img/uploads/logo_atelei_artestore.png 63.11 KB 57.94 KB -8.2% View diff
template/public/img/uploads/logo-amazon.png 7.01 KB 5.75 KB -17.9% View diff
template/public/img/uploads/logo-artestore_atelie.png 36.65 KB 28.56 KB -22.1% View diff
template/public/img/uploads/logo-artestore-2021-2.png 69.93 KB 63.38 KB -9.4% View diff
template/public/img/uploads/logo-artestore-2021-2v.png 22.32 KB 17.36 KB -22.2% View diff
template/public/img/uploads/logo-artestore-2021-v.png 22.66 KB 19.78 KB -12.7% View diff
template/public/img/uploads/logo-artestore-2021.jpg 13.56 KB 5.25 KB -61.3% View diff
template/public/img/uploads/logo-artestore-2022.png 14.66 KB 10.89 KB -25.7% View diff
template/public/img/uploads/logo-artestore-atelie.png 16.93 KB 15.95 KB -5.8% View diff
template/public/img/uploads/loja-artestore.png 11.25 KB 10.24 KB -9.0% View diff
template/public/img/uploads/mandala-25.jpg 54.95 KB 39.23 KB -28.6% View diff
template/public/img/uploads/mandala-79-marrom-a.jpg 112.54 KB 81.70 KB -27.4% View diff
template/public/img/uploads/mandala-amarela-ouro.jpg 117.50 KB 82.46 KB -29.8% View diff
template/public/img/uploads/mandala-amarelo-veneza-pedr.jpg 224.10 KB 78.44 KB -65.0% View diff
template/public/img/uploads/mandala-amor-bordo.jpg 124.34 KB 89.82 KB -27.8% View diff
template/public/img/uploads/mandala-azul-craquele-2.jpg 189.47 KB 130.03 KB -31.4% View diff
template/public/img/uploads/mandala-craque.jpg 224.08 KB 155.03 KB -30.8% View diff
template/public/img/uploads/mandala-craquele-yin-yang.jpg 122.41 KB 84.07 KB -31.3% View diff
template/public/img/uploads/mandala-estrela-dourada-nov.jpg 92.92 KB 66.13 KB -28.8% View diff
template/public/img/uploads/mandala-indiana-10.jpg 95.58 KB 68.10 KB -28.8% View diff
template/public/img/uploads/mandala-lilas-quartzo-rosa.jpg 189.19 KB 134.93 KB -28.7% View diff
template/public/img/uploads/mandala-verde-petroleo-citr.jpg 108.87 KB 77.48 KB -28.8% View diff
template/public/img/uploads/mandala-yin-yang.jpg 145.08 KB 102.95 KB -29.0% View diff
template/public/img/uploads/mistura-de-cores-tabela.webp 23.75 KB 3.99 KB -83.2% View diff
template/public/img/uploads/monet-3.webp 26.31 KB 4.33 KB -83.5% View diff
template/public/img/uploads/mural-kandinsky.webp 6.12 KB 4.48 KB -26.8% View diff
template/public/img/uploads/o-que-e-um-circulo-mandala.jpg 19.94 KB 18.00 KB -9.7% View diff
template/public/img/uploads/o-que-sao-mandalas-circulo-significado.webp 8.41 KB 5.97 KB -29.0% View diff
template/public/img/uploads/o-que-sao-por-que-utiliza-las-alem-da-decoracao-de-ambientes-1.jpg 48.48 KB 45.11 KB -7.0% View diff
template/public/img/uploads/paisagem-peb.png 103.12 KB 76.69 KB -25.6% View diff
template/public/img/uploads/paleta-de-cores.webp 18.14 KB 3.20 KB -82.4% View diff
template/public/img/uploads/pashminas-e-cachecois-elegantes-1.webp 48.79 KB 47.51 KB -2.6% View diff
template/public/img/uploads/pintar-pinceis.webp 78.96 KB 13.33 KB -83.1% View diff
template/public/img/uploads/pintura-aulas-gratis.webp 99.38 KB 77.73 KB -21.8% View diff
template/public/img/uploads/pintura-como-comecar.webp 16.00 KB 2.36 KB -85.3% View diff
template/public/img/uploads/pintura-tela.webp 42.11 KB 5.10 KB -87.9% View diff
template/public/img/uploads/post-instagram-dia-do-desenhista-com-foto-de-aquarela.webp 88.95 KB 68.68 KB -22.8% View diff
template/public/img/uploads/primeiros-passos-no-desenho.webp 17.23 KB 2.48 KB -85.6% View diff
template/public/img/uploads/produtos-sustentaveis.webp 14.09 KB 1.95 KB -86.2% View diff
template/public/img/uploads/quadradinhos.png 2.37 KB 2.23 KB -5.9% View diff
template/public/img/uploads/reducao-de-frete.webp 23.07 KB 22.69 KB -1.6% View diff
template/public/img/uploads/reducao-frete-w.webp 35.23 KB 34.69 KB -1.6% View diff
template/public/img/uploads/selo_empresaassociada.png 91.34 KB 19.71 KB -78.4% View diff
template/public/img/uploads/selo-abcomm-arte.webp 2.90 KB 2.86 KB -1.4% View diff
template/public/img/uploads/significado-das-cores.webp 5.55 KB 3.79 KB -31.7% View diff
template/public/img/uploads/sobre-os-mestres-da-pintura.webp 310.33 KB 259.01 KB -16.5% View diff
template/public/img/uploads/sobre-palha-de-buriti-bolsas-m.webp 220.02 KB 37.63 KB -82.9% View diff
template/public/img/uploads/sobre-palha-de-buriti-bolsas.webp 287.29 KB 42.13 KB -85.3% View diff
template/public/img/uploads/super-liquida-artestore-m.webp 283.77 KB 43.85 KB -84.5% View diff
template/public/img/uploads/super-liquida-artestore.webp 212.47 KB 35.11 KB -83.5% View diff
template/public/img/uploads/t2.jpg 36.89 KB 18.62 KB -49.5% View diff
template/public/img/uploads/tela10.jpg 68.36 KB 46.89 KB -31.4% View diff
template/public/img/uploads/tipos-de-palha-300.webp 6.61 KB 4.71 KB -28.7% View diff
template/public/img/uploads/tipos-de-palha.webp 128.58 KB 126.17 KB -1.9% View diff
template/public/img/uploads/tipos-e-modelos-de-bolsas-m.webp 23.11 KB 22.83 KB -1.2% View diff
template/public/img/uploads/tipos-e-modelos-de-bolsas.webp 28.34 KB 27.71 KB -2.2% View diff
template/public/img/uploads/trio-yellow.jpg 73.21 KB 51.64 KB -29.5% View diff
template/public/img/uploads/um-pouco-de-historia-da-cor.webp 9.56 KB 7.14 KB -25.3% View diff
template/public/img/uploads/van-gogh-autoretrato.png 1.28 MB 365.43 KB -72.1% View diff
template/public/img/uploads/zerar-estoque-pronta-entrega_m.webp 59.78 KB 54.21 KB -9.3% View diff
template/public/img/uploads/zerar-estoque-pronta-entrega.jpg 70.74 KB 65.39 KB -7.6% View diff
template/public/img/uploads/zerar-estoque-pronta-entrega.webp 50.68 KB 45.74 KB -9.7% View diff

322 images did not require optimisation.

Copy link
Contributor Author

renovate bot commented Dec 9, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

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