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 dependency node to v22 #26

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2024

This PR contains the following updates:

Package Type Update Change
node (source) major 16.20.2 -> 22.11.0
node (source) engines major 16.20.2 -> 22.11.0
node (source) engines major 16 -> 22.11.0

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 - "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 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 Nov 11, 2024
Copy link

Images automagically compressed by Calibre's image-actions

Compression reduced images by 24.2%, saving 3.10 MB.

Filename Before After Improvement Visual comparison
template/public/img/uploads/300x300.png 2.50 KB 1.75 KB -30.1% View diff
template/public/img/uploads/BANNER-CATEGORIA-F1-MARcO-2024.jpeg 92.49 KB 84.38 KB -8.8% View diff
template/public/img/uploads/BANNER-CATEGORIA-NBA-MARcO-2024.jpeg 70.74 KB 65.13 KB -7.9% View diff
template/public/img/uploads/BANNER-CATEGORIA-NETSHOES-CAMISAS-PERSONALIZADAS_lf6ypNyl7t.jpeg 29.96 KB 26.40 KB -11.9% View diff
template/public/img/uploads/BANNER-CATEGORIA-NETSHOES-FEMININO_MCguBuZD48.jpeg 25.54 KB 23.00 KB -10.0% View diff
template/public/img/uploads/BANNER-CATEGORIA-NETSHOES-INFANTIL_FJQ6poSH11.jpeg 18.52 KB 16.55 KB -10.7% View diff
template/public/img/uploads/BANNER-CATEGORIA-NETSHOES-IVO_GLLtLHDp15.jpeg 19.38 KB 17.20 KB -11.2% View diff
template/public/img/uploads/BANNER-CATEGORIA-NETSHOES-RETRO_6lwdTec57X.jpeg 26.65 KB 23.39 KB -12.2% View diff
template/public/img/uploads/BANNER-CATEGORIA-NFL-MARcO-2024.jpeg 120.88 KB 110.55 KB -8.5% View diff
template/public/img/uploads/BANNER-CATEGORIA-RUGBY-MARcO-2024.jpeg 94.22 KB 87.24 KB -7.4% View diff
template/public/img/uploads/BANNER-LOGO-MESSI_ayZXzgsZ03.jpeg 62.06 KB 57.39 KB -7.5% View diff
template/public/img/uploads/banner-o-melhor-do-seu-time-1-_boyofkqc17.jpeg 110.39 KB 99.61 KB -9.8% View diff
template/public/img/uploads/BANNER-Prancheta-1_1HDm3pRd8Z.jpeg 88.60 KB 79.37 KB -10.4% View diff
template/public/img/uploads/BANNER-Prancheta-2_ifGIa6nV63.jpeg 95.02 KB 84.36 KB -11.2% View diff
template/public/img/uploads/BANNER-Prancheta-3-1_PdGD6SPB9S.jpeg 84.09 KB 75.90 KB -9.7% View diff
template/public/img/uploads/BANNER-SHOP-AL-NASSR_q751yRNR69.jpeg 168.10 KB 153.40 KB -8.7% View diff
template/public/img/uploads/BANNER-SHOP-REAL-MADRID_67t3TvJ609.jpeg 204.36 KB 187.74 KB -8.1% View diff
template/public/img/uploads/BANNER-SHOP-ROMA_O4QebzIn01.jpeg 174.82 KB 160.45 KB -8.2% View diff
template/public/img/uploads/BANNER-SUPORTE-MARcO-2024.jpeg 162.49 KB 145.58 KB -10.4% View diff
template/public/img/uploads/blobid0.png 22.49 KB 18.21 KB -19.0% View diff
template/public/img/uploads/blocktransp.png 4.78 KB 3.47 KB -27.4% View diff
template/public/img/uploads/botao-novo-1.png 1.38 KB 1.17 KB -14.6% View diff
template/public/img/uploads/brand-fav-preto.png 2.50 KB 1.48 KB -40.8% View diff
template/public/img/uploads/COPA ITÁLIA.jpg 88.59 KB 87.63 KB -1.1% View diff
template/public/img/uploads/destaque.png 994 bytes 643 bytes -35.3% View diff
template/public/img/uploads/EFL CUP.jpg 248.17 KB 240.08 KB -3.3% View diff
template/public/img/uploads/ELIMINATÓRIAS 2026.png 125.82 KB 110.10 KB -12.5% View diff
template/public/img/uploads/eliminatorias-2026.png 125.82 KB 110.10 KB -12.5% View diff
template/public/img/uploads/eurocopa-copa-america.png 48.04 KB 42.30 KB -12.0% View diff
template/public/img/uploads/Feedback-Marco-2024-1.jpg 49.32 KB 40.70 KB -17.5% View diff
template/public/img/uploads/Feedback-Marco-2024-2.jpg 52.00 KB 43.48 KB -16.4% View diff
template/public/img/uploads/Feedback-Marco-2024-3.jpg 51.15 KB 43.06 KB -15.8% View diff
template/public/img/uploads/Feedback-Marco-2024-4.jpg 62.30 KB 51.77 KB -16.9% View diff
template/public/img/uploads/Feedback-Marco-2024-5.jpg 41.55 KB 32.98 KB -20.6% View diff
template/public/img/uploads/frete-gratis.png 1.09 KB 681 bytes -38.8% View diff
template/public/img/uploads/inverno.png 154.22 KB 137.70 KB -10.7% View diff
template/public/img/uploads/la-liga-retro-2016-2023.jpg 77.34 KB 75.62 KB -2.2% View diff
template/public/img/uploads/lancamentos.png 148.67 KB 136.21 KB -8.4% View diff
template/public/img/uploads/LIGA PORTUGAL CAMPEÃO.jpg 146.16 KB 43.92 KB -69.9% View diff
template/public/img/uploads/LIGA PORTUGAL.jpg 43.12 KB 28.45 KB -34.0% View diff
template/public/img/uploads/liga-portugal-campeao.jpg 146.16 KB 43.92 KB -69.9% View diff
template/public/img/uploads/liga-turca-2024-25.jpg 28.43 KB 25.98 KB -8.6% View diff
template/public/img/uploads/Logo-AIK-FC-atualizado.png 27.87 KB 23.63 KB -15.2% View diff
template/public/img/uploads/Logo-Ajax.png 20.22 KB 17.38 KB -14.1% View diff
template/public/img/uploads/Logo-astonvilla.png 28.69 KB 23.29 KB -18.8% View diff
template/public/img/uploads/Logo-atalanta.png 21.07 KB 16.87 KB -19.9% View diff
template/public/img/uploads/Logo-atleticodemadrid.png 17.72 KB 13.66 KB -22.9% View diff
template/public/img/uploads/Logo-barca.png 23.07 KB 19.97 KB -13.4% View diff
template/public/img/uploads/Logo-bayerndemunique.png 47.72 KB 38.25 KB -19.9% View diff
template/public/img/uploads/Logo-Benfica.png 43.79 KB 37.85 KB -13.6% View diff
template/public/img/uploads/Logo-betis.png 24.73 KB 22.01 KB -11.0% View diff
template/public/img/uploads/Logo-bilbao.png 26.29 KB 22.10 KB -15.9% View diff
template/public/img/uploads/Logo-Boca-Juniors.png 36.74 KB 28.99 KB -21.1% View diff
template/public/img/uploads/Logo-Borussia-Dortmund.png 27.12 KB 20.98 KB -22.6% View diff
template/public/img/uploads/Logo-brighton.png 25.89 KB 20.24 KB -21.8% View diff
template/public/img/uploads/Logo-bundesliga.png 11.40 KB 8.71 KB -23.6% View diff
template/public/img/uploads/Logo-celta.png 17.30 KB 16.15 KB -6.6% View diff
template/public/img/uploads/Logo-Celtic-atualizado.png 27.03 KB 20.10 KB -25.6% View diff
template/public/img/uploads/Logo-chelsea.png 46.08 KB 40.33 KB -12.5% View diff
template/public/img/uploads/Logo-colonia.png 38.48 KB 34.57 KB -10.2% View diff
template/public/img/uploads/LOGO-CRISTIANO-RONALDO-IVO.jpg 69.05 KB 52.75 KB -23.6% View diff
template/public/img/uploads/Logo-crystal-Palace.png 36.17 KB 29.83 KB -17.5% View diff
template/public/img/uploads/Logo-Fenerbahce-atualizado.png 21.86 KB 16.29 KB -25.5% View diff
template/public/img/uploads/Logo-fiorentina.png 16.87 KB 12.72 KB -24.6% View diff
template/public/img/uploads/Logo-frankfurt.png 30.13 KB 21.67 KB -28.1% View diff
template/public/img/uploads/Logo-Galatasaray.png 16.67 KB 12.83 KB -23.0% View diff
template/public/img/uploads/LOGO-HAALAND-IVO.jpg 74.94 KB 56.45 KB -24.7% View diff
template/public/img/uploads/Logo-Hamburgo.png 3.39 KB 2.41 KB -29.0% View diff
template/public/img/uploads/Logo-hertha.png 15.20 KB 12.85 KB -15.5% View diff
template/public/img/uploads/Logo-Italia-atualizado.png 11.18 KB 10.68 KB -4.5% View diff
template/public/img/uploads/Logo-juve.png 3.30 KB 2.21 KB -32.9% View diff
template/public/img/uploads/Logo-La-coruna.png 17.67 KB 15.34 KB -13.2% View diff
template/public/img/uploads/LOGO-LA-LIGA-IVO.png 5.95 KB 4.83 KB -18.8% View diff
template/public/img/uploads/Logo-lazio.png 14.78 KB 12.46 KB -15.7% View diff
template/public/img/uploads/Logo-leeds-United.png 27.60 KB 22.43 KB -18.7% View diff
template/public/img/uploads/Logo-leverkusen.png 28.46 KB 22.89 KB -19.6% View diff
template/public/img/uploads/Logo-ligue1.png 22.38 KB 22.13 KB -1.1% View diff
template/public/img/uploads/Logo-Lille.png 16.91 KB 12.56 KB -25.7% View diff
template/public/img/uploads/Logo-mainz.png 25.13 KB 21.28 KB -15.3% View diff
template/public/img/uploads/Logo-Mallorca.png 16.89 KB 14.46 KB -14.4% View diff
template/public/img/uploads/Logo-Manchester-city.png 53.74 KB 48.49 KB -9.8% View diff
template/public/img/uploads/Logo-Manchester-united.png 51.56 KB 44.45 KB -13.8% View diff
template/public/img/uploads/Logo-milan.png 14.11 KB 11.57 KB -18.0% View diff
template/public/img/uploads/Logo-monchen.png 18.70 KB 11.45 KB -38.7% View diff
template/public/img/uploads/Logo-Nacional-do-Uruguai-atualizado.png 10.53 KB 7.78 KB -26.1% View diff
template/public/img/uploads/Logo-Nantes.png 7.96 KB 6.49 KB -18.5% View diff
template/public/img/uploads/Logo-napoli.png 30.36 KB 26.26 KB -13.5% View diff
template/public/img/uploads/LOGO-NEYMAR-IVO.jpg 78.75 KB 59.52 KB -24.4% View diff
template/public/img/uploads/Logo-Nice.png 26.25 KB 22.02 KB -16.1% View diff
template/public/img/uploads/Logo-Notthingham-Forest-atualizado.png 6.38 KB 5.07 KB -20.5% View diff
template/public/img/uploads/Logo-Olympique-de-Marseille.png 20.82 KB 16.53 KB -20.6% View diff
template/public/img/uploads/Logo-Olympique-Lyon.png 27.70 KB 23.99 KB -13.4% View diff
template/public/img/uploads/Logo-osasuna.png 31.95 KB 27.66 KB -13.4% View diff
template/public/img/uploads/logo-outros-clubes.png 13.88 KB 8.60 KB -38.0% View diff
template/public/img/uploads/Logo-Penarol-atualizado.png 7.94 KB 7.00 KB -11.8% View diff
template/public/img/uploads/Logo-Porto.png 38.83 KB 38.04 KB -2.0% View diff
template/public/img/uploads/Logo-premier-league.png 33.47 KB 31.78 KB -5.0% View diff
template/public/img/uploads/Logo-PSG.png 30.59 KB 22.96 KB -24.9% View diff
template/public/img/uploads/Logo-Rangers.png 65.13 KB 59.19 KB -9.1% View diff
template/public/img/uploads/Logo-Rayo-vallecano.png 10.90 KB 8.93 KB -18.1% View diff
template/public/img/uploads/Logo-realmadrid.png 39.84 KB 34.68 KB -12.9% View diff
template/public/img/uploads/Logo-Rennes.png 13.11 KB 11.28 KB -13.9% View diff
template/public/img/uploads/Logo-River-Plate.png 17.09 KB 13.72 KB -19.7% View diff
template/public/img/uploads/Logo-roma.png 31.83 KB 29.49 KB -7.3% View diff
template/public/img/uploads/Logo-schalke.png 16.78 KB 13.21 KB -21.3% View diff
template/public/img/uploads/logo-selecoes-atualizado.png 34.38 KB 32.56 KB -5.3% View diff
template/public/img/uploads/Logo-Serie-A-Tim.png 14.22 KB 13.18 KB -7.3% View diff
template/public/img/uploads/Logo-sevilla.png 36.96 KB 35.30 KB -4.5% View diff
template/public/img/uploads/Logo-Sporting.png 31.62 KB 24.22 KB -23.4% View diff
template/public/img/uploads/Logo-ST-PAULI.png 15.75 KB 11.16 KB -29.1% View diff
template/public/img/uploads/Logo-tottenham.png 19.19 KB 16.38 KB -14.6% View diff
template/public/img/uploads/Logo-UnionBerlin.png 16.30 KB 13.02 KB -20.1% View diff
template/public/img/uploads/Logo-valencia.png 18.12 KB 15.22 KB -16.0% View diff
template/public/img/uploads/Logo-valladolid.png 37.67 KB 34.18 KB -9.3% View diff
template/public/img/uploads/Logo-Venezia-FC.png 15.32 KB 10.93 KB -28.7% View diff
template/public/img/uploads/Logo-villa.png 36.83 KB 32.44 KB -11.9% View diff
template/public/img/uploads/LOGO-VINI-JR-IVO.jpg 64.99 KB 48.79 KB -24.9% View diff
template/public/img/uploads/Logo-werder.png 16.08 KB 12.06 KB -25.0% View diff
template/public/img/uploads/Logo-westham.png 28.24 KB 24.27 KB -14.1% View diff
template/public/img/uploads/Logo-wolfsburg.png 16.32 KB 15.86 KB -2.8% View diff
template/public/img/uploads/Logo-wolves.png 20.53 KB 15.90 KB -22.6% View diff
template/public/img/uploads/logo.png 18.45 KB 10.60 KB -42.5% View diff
template/public/img/uploads/LOGOalemanha.png 37.64 KB 28.81 KB -23.5% View diff
template/public/img/uploads/LOGOargentina.png 27.74 KB 25.93 KB -6.5% View diff
template/public/img/uploads/LOGObelgica.png 18.94 KB 17.37 KB -8.3% View diff
template/public/img/uploads/LOGOcamaroes.png 33.49 KB 28.46 KB -15.0% View diff
template/public/img/uploads/LOGOcanada.png 23.24 KB 20.67 KB -11.1% View diff
template/public/img/uploads/LOGOcoreiadosul.png 19.39 KB 16.50 KB -14.9% View diff
template/public/img/uploads/LOGOcosta-rica.png 20.80 KB 16.86 KB -18.9% View diff
template/public/img/uploads/LOGOcroacia.png 34.04 KB 30.79 KB -9.5% View diff
template/public/img/uploads/LOGOdinamarca.png 49.67 KB 38.66 KB -22.2% View diff
template/public/img/uploads/LOGOequador.png 17.07 KB 13.52 KB -20.8% View diff
template/public/img/uploads/LOGOgana.png 33.68 KB 28.71 KB -14.7% View diff
template/public/img/uploads/LOGOinglaterra.png 28.80 KB 22.47 KB -22.0% View diff
template/public/img/uploads/LOGOiran.png 22.73 KB 19.59 KB -13.8% View diff
template/public/img/uploads/LOGOjapan.png 18.86 KB 14.59 KB -22.6% View diff
template/public/img/uploads/LOGOmarrocos.png 32.48 KB 29.66 KB -8.7% View diff
template/public/img/uploads/LOGOmexico.png 44.24 KB 37.10 KB -16.1% View diff
template/public/img/uploads/LOGOpolonia.png 42.98 KB 34.54 KB -19.6% View diff
template/public/img/uploads/LOGOportugal.png 29.26 KB 23.36 KB -20.2% View diff
template/public/img/uploads/LOGOqatar.png 39.02 KB 33.26 KB -14.7% View diff
template/public/img/uploads/logoredesocialpretasemfundo.png 69.97 KB 58.96 KB -15.7% View diff
template/public/img/uploads/LOGOsenegal.png 46.36 KB 37.86 KB -18.3% View diff
template/public/img/uploads/LOGOservia.png 23.05 KB 18.67 KB -19.0% View diff
template/public/img/uploads/LOGOspain.png 39.13 KB 34.02 KB -13.1% View diff
template/public/img/uploads/LOGOsuica.png 21.60 KB 18.53 KB -14.2% View diff
template/public/img/uploads/LOGOtunisia.png 26.31 KB 21.95 KB -16.6% View diff
template/public/img/uploads/LOGOuruguai.png 15.16 KB 13.10 KB -13.6% View diff
template/public/img/uploads/LOGOusa.png 11.88 KB 9.51 KB -20.0% View diff
template/public/img/uploads/LOGOwales.png 29.14 KB 23.88 KB -18.0% View diff
template/public/img/uploads/mls-2024.jpg 31.59 KB 27.38 KB -13.3% View diff
template/public/img/uploads/mls-campeao.jpg 36.42 KB 31.45 KB -13.6% View diff
template/public/img/uploads/moda-nba-1-.png 943.02 KB 885.05 KB -6.1% View diff
template/public/img/uploads/moda-nfl-1-.png 970.28 KB 935.84 KB -3.5% View diff
template/public/img/uploads/moda-rugby-1-.png 886.41 KB 826.72 KB -6.7% View diff
template/public/img/uploads/o-melhor-do-seu-time_lcaigjfa2j.jpeg 103.67 KB 92.94 KB -10.3% View diff
template/public/img/uploads/SCOTTISH PREMIERSHIP.png 70.68 KB 69.37 KB -1.9% View diff
template/public/img/uploads/SERIE A TIM + COPA ITÁLIA.jpg 303.76 KB 80.23 KB -73.6% View diff
template/public/img/uploads/SERIE A TIM CAMPEÃO.jpg 330.20 KB 87.08 KB -73.6% View diff
template/public/img/uploads/serie-a-campeao.jpg 85.91 KB 84.19 KB -2.0% View diff
template/public/img/uploads/sul-americana-24-25.jpg 182.60 KB 116.81 KB -36.0% View diff
template/public/img/uploads/SUPERLIG.jpg 84.11 KB 82.68 KB -1.7% View diff
template/public/img/uploads/tabela-de-medidas-basquete-23-24.jpg 248.72 KB 125.33 KB -49.6% View diff
template/public/img/uploads/tabela-de-medidas-feminino-23-24.jpg 274.40 KB 135.86 KB -50.5% View diff
template/public/img/uploads/tabela-de-medidas-infantil-23-24.jpg 303.25 KB 153.30 KB -49.4% View diff
template/public/img/uploads/tabela-de-medidas-jaqueta-e-calca.png 155.82 KB 129.82 KB -16.7% View diff
template/public/img/uploads/tabela-de-medidas-jaqueta.png 160.19 KB 140.59 KB -12.2% View diff
template/public/img/uploads/tabela-de-medidas-masculino-atualizado.jpg 277.75 KB 138.07 KB -50.3% View diff
template/public/img/uploads/tabela-de-tamanho-calcao.png 17.72 KB 13.61 KB -23.2% View diff
template/public/img/uploads/tabela-de-tamanhos-chuteira.jpg 927.02 KB 264.49 KB -71.5% View diff
template/public/img/uploads/tabelas-medidas-nfl.jpg 265.93 KB 134.42 KB -49.5% View diff
template/public/img/uploads/UCL 6 TAÇAS.jpg 11.48 KB 7.83 KB -31.8% View diff
template/public/img/uploads/UCL 7 TAÇAS.jpg 44.96 KB 7.96 KB -82.3% View diff
template/public/img/uploads/UCL.png 34.79 KB 34.18 KB -1.8% View diff
template/public/img/uploads/uefaeuro2024-atualizado.jpg 71.69 KB 51.51 KB -28.2% View diff
template/public/img/uploads/ULC 4 TAÇAS.jpg 11.44 KB 7.79 KB -31.9% View diff
template/public/img/uploads/ulc-4-tacas.jpg 11.44 KB 7.79 KB -31.9% View diff

159 images did not require optimisation.

Copy link
Contributor Author

renovate bot commented Nov 11, 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