Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 18, 2022

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@nuxt/image (source) ^0.7.1 -> ^0.7.2 age confidence
composer/installers (source) 2.2.0 -> 2.3.0 age confidence
core-js (source) 3.25.1 -> 3.45.1 age confidence
drupal/core-composer-scaffold (source) 9.4.5 -> 9.5.11 age confidence
drupal/core-dev 9.4.5 -> 9.5.11 age confidence
drupal/core-project-message (source) 9.4.5 -> 9.5.11 age confidence
drupal/core-recommended 9.4.5 -> 9.5.11 age confidence
drupal/druxt (source) 1.1.1 -> 1.2.1 age confidence
drupal/tome (source) ^1.7 -> ^1.13.0 age confidence
drush/drush (source) ^11.1 -> ^11.6.0 age confidence
druxt-site (source) ^0.13.0 -> ^0.14.3 age confidence
nuxt (source) 2.15.8 -> 2.18.1 age confidence
postcss (source) 8.4.16 -> 8.5.6 age confidence

Release Notes

nuxt/image (@​nuxt/image)

v0.7.2

Compare Source

composer/installers (composer/installers)

v2.3.0

Compare Source

Added
  • Added recipes for Drupal 10.3+ to DrupalInstaller #​534
  • Added BotbleInstaller #​533
  • Added new Moodle types (communication, forumreport, h5plib, mlbackend, qbank, tiny) #​535
  • Added support for Fork CMS ^6 #​529
  • Added ConcreteCMS installers and types mimicking concrete5 ones #​522
zloirock/core-js (core-js)

v3.45.1

Compare Source

  • Changes v3.45.0...v3.45.1 (30 commits)
  • Fixed a conflict of native methods from Map upsert proposal with polyfilled methods in the pure version
  • Added bugs fields to package.json of all packages
  • Compat data improvements:
    • Map upsert proposal features marked as shipped from Bun 1.2.20
    • Added Samsung Internet 29 compat data mapping
    • Added Electron 39 compat data mapping

v3.45.0

Compare Source

v3.44.0

Compare Source

v3.43.0

Compare Source

  • Changes v3.42.0...v3.43.0 (139 commits)
  • Explicit Resource Management proposals:
    • Built-ins:
      • Symbol.dispose
      • Symbol.asyncDispose
      • SuppressedError
      • DisposableStack
        • DisposableStack.prototype.dispose
        • DisposableStack.prototype.use
        • DisposableStack.prototype.adopt
        • DisposableStack.prototype.defer
        • DisposableStack.prototype.move
        • DisposableStack.prototype[@​@​dispose]
      • AsyncDisposableStack
        • AsyncDisposableStack.prototype.disposeAsync
        • AsyncDisposableStack.prototype.use
        • AsyncDisposableStack.prototype.adopt
        • AsyncDisposableStack.prototype.defer
        • AsyncDisposableStack.prototype.move
        • AsyncDisposableStack.prototype[@​@​asyncDispose]
      • Iterator.prototype[@​@​dispose]
      • AsyncIterator.prototype[@​@​asyncDispose]
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Array.fromAsync proposal:
    • Built-ins:
      • Array.fromAsync
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Error.isError proposal:
    • Built-ins:
      • Error.isError
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Added Joint iteration stage 2.7 proposal:
    • Added built-ins:
      • Iterator.zip
      • Iterator.zipKeyed
  • Added Iterator chunking stage 2 proposal:
    • Added built-ins:
      • Iterator.prototype.chunks
      • Iterator.prototype.windows
  • Number.prototype.clamp proposal:
  • Always check regular expression flags by flags getter PR. Native methods are not fixed, only own implementation updated for:
    • RegExp.prototype[@​@​match]
    • RegExp.prototype[@​@​replace]
  • Improved handling of RegExp flags in polyfills of some methods in engines without proper support of RegExp.prototype.flags and without polyfill of this getter
  • Added feature detection for a WebKit bug that occurs when this is updated while Set.prototype.difference is being executed
  • Added feature detection for a WebKit bug that occurs when iterator record of a set-like object isn't called before cloning this in the following methods:
    • Set.prototype.symmetricDifference
    • Set.prototype.union
  • Added feature detection for a bug in V8 ~ Chromium < 126. Following methods should throw an error on invalid iterator:
    • Iterator.prototype.drop
    • Iterator.prototype.filter
    • Iterator.prototype.flatMap
    • Iterator.prototype.map
  • Added feature detection for a WebKit bug: incorrect exception thrown by Iterator.from when underlying iterator's return method is null
  • Added feature detection for a FF bug: incorrect exception thrown by Array.prototype.with when index coercion fails
  • Added feature detection for a WebKit bug: TypedArray.prototype.with should truncate negative fractional index to zero, but instead throws an error
  • Worked around a bug of many different tools (example) with incorrect transforming and breaking JS syntax on getting a method from a number literal
  • Fixed deoptimization of the Promise polyfill in the pure version
  • Added some missed dependencies to /iterator/flat-map entries
  • Some other minor fixes and improvements
  • Compat data improvements:
    • Added Deno 2.3 and Deno 2.3.2 compat data mapping
    • Updated Electron 37 compat data mapping
    • Added Opera Android 90 compat data mapping
    • Error.isError marked not supported in Node because of a bug
    • Set.prototype.difference marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Set.prototype.{ symmetricDifference, union } marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterator.from marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterators closing on early errors in Iterator helpers marked as implemented from FF141
    • Array.prototype.with marked as supported only from FF140 because it throws an incorrect exception when index coercion fails
    • TypedArray.prototype.with marked as unsupported in Bun and Safari because it should truncate negative fractional index to zero, but instead throws an error
    • DisposableStack and AsyncDisposableStack marked as shipped in FF141 (SuppressedError has a bug)
    • AsyncDisposableStack bugs marked as fixed in Deno 2.3.2
    • SuppressedError bugs (extra arguments support and arity) marked as fixed in Bun 1.2.15

v3.42.0

Compare Source

  • Changes v3.41.0...v3.42.0 (142 commits)
  • Map upsert proposal:
    • Moved to stage 2.7, April 2025 TC39 meeting
    • Validation order of WeakMap.prototype.getOrInsertComputed updated following tc39/proposal-upsert#79
    • Built-ins:
      • Map.prototype.getOrInsert
      • Map.prototype.getOrInsertComputed
      • WeakMap.prototype.getOrInsert
      • WeakMap.prototype.getOrInsertComputed
  • Don't call well-known Symbol methods for RegExp on primitive values following tc39/ecma262#3009:
    • For avoid performance regression, temporarily, only in own core-js implementations
    • Built-ins:
      • String.prototype.matchAll
      • String.prototype.match
      • String.prototype.replaceAll
      • String.prototype.replace
      • String.prototype.search
      • String.prototype.split
  • Added workaround for the Uint8Array.prototype.setFromBase64 bug in some of Linux builds of WebKit
  • Implemented early-error iterator closing following tc39/ecma262#3467, including fix of a WebKit bug, in the following methods:
    • Iterator.prototype.drop
    • Iterator.prototype.every
    • Iterator.prototype.filter
    • Iterator.prototype.find
    • Iterator.prototype.flatMap
    • Iterator.prototype.forEach
    • Iterator.prototype.map
    • Iterator.prototype.reduce
    • Iterator.prototype.some
    • Iterator.prototype.take
  • Fixed missing forced replacement of AsyncIterator helpers
  • Added closing of sync iterator when async wrapper yields a rejection following tc39/ecma262#2600. Affected methods:
  • Added detection for throwing on undefined initial parameter in Iterator.prototype.reduce (see WebKit bug)
  • core-js-compat and core-js-builder API:
    • Added 'intersect' support for targets.esmodules (Babel 7 behavior)
    • Fixed handling of targets.esmodules: true (Babel 7 behavior)
  • Compat data improvements:

v3.41.0

Compare Source

v3.40.0

Compare Source

v3.39.0

Compare Source

v3.38.1

Compare Source

v3.38.0

Compare Source

v3.37.1

Compare Source

v3.37.0

Compare Source

v3.36.1

Compare Source

v3.36.0

Compare Source

v3.35.1

Compare Source

v3.35.0

Compare Source


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 changed the title chore(deps): update dependency core-js to v3.25.2 chore(deps): update all non-major dependencies Sep 20, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 132ca96 to 752c0ce Compare September 26, 2022 02:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d7ec995 to 6b18cc0 Compare October 3, 2022 19:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d7bddd7 to cc60f8f Compare October 12, 2022 22:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cc60f8f to 8247329 Compare October 14, 2022 09:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3abb9e0 to c410c23 Compare October 24, 2022 14:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c410c23 to e627c35 Compare November 3, 2022 02:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ca2851b to 0de9005 Compare November 13, 2022 19:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bbb5fc0 to 14b3411 Compare March 21, 2023 21:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 99d07f5 to 623ad7c Compare March 24, 2023 17:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 623ad7c to 8418717 Compare April 17, 2023 13:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8418717 to b58762d Compare May 28, 2023 10:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9eb2384 to 39f0c6c Compare June 11, 2023 22:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 94b5342 to 220d767 Compare July 6, 2023 01:21
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 591aa05 and afa7bd6.

Files ignored due to path filters (1)
  • nuxt/package-lock.json is excluded by !**/package-lock.json
Files selected for processing (2)
  • drupal/composer.json (1 hunks)
  • nuxt/package.json (1 hunks)
Files skipped from review as they are similar to previous changes (2)
  • drupal/composer.json
  • nuxt/package.json

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1b41bf1 to 8bd2eb6 Compare September 4, 2024 11:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8bd2eb6 to 2f724ae Compare September 14, 2024 15:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2f724ae to e2b2c9e Compare October 31, 2024 02:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2672be5 to 6c6089f Compare November 11, 2024 22:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6c6089f to ca35641 Compare November 23, 2024 18:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ca35641 to acabf39 Compare January 8, 2025 13:40
Copy link
Contributor Author

renovate bot commented Jan 8, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: drupal/composer.lock
Command failed: composer update composer/installers:2.3.0 drupal/core-composer-scaffold:9.5.11 drupal/core-dev:9.5.11 drupal/core-project-message:9.5.11 drupal/core-recommended:9.5.11 drupal/druxt:1.2.1 drupal/tome:1.13.0 drush/drush:11.6.0 --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins --minimal-changes
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Root composer.json requires drupal/core-recommended 9.5.11 -> satisfiable by drupal/core-recommended[9.5.11].
    - drupal/core-recommended 9.5.11 requires longwave/laminas-diactoros ~2.14.2 -> satisfiable by longwave/laminas-diactoros[2.14.2, 2.14.3, 2.14.x-dev].
    - longwave/laminas-diactoros 2.14.2 requires php ^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 -> your php version (8.4.12) does not satisfy that requirement.
    - longwave/laminas-diactoros[2.14.3, ..., 2.14.x-dev] require php ^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 -> your php version (8.4.12) does not satisfy that requirement.

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9ecdc09 to 827551b Compare January 14, 2025 17:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 827551b to cc64e93 Compare February 11, 2025 12:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cc64e93 to ef6156d Compare February 19, 2025 16:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ef6156d to e712b99 Compare March 1, 2025 17:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e712b99 to 7cc61e1 Compare April 29, 2025 19:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7cc61e1 to f2d6748 Compare May 29, 2025 10:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e56342c to b598806 Compare June 11, 2025 22:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b598806 to 200a1a6 Compare June 16, 2025 14:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 200a1a6 to f95fd28 Compare July 7, 2025 16:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5ede0b8 to 21ae145 Compare August 10, 2025 13:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cec2544 to e32900f Compare August 19, 2025 12:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e32900f to b7d768e Compare August 20, 2025 21:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b7d768e to 3ce545e Compare August 31, 2025 11:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants