Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 23, 2022

This PR contains the following updates:

Package Change Age Confidence
@nuxtjs/storybook (source) 4.2.0 -> 4.3.2 age confidence
composer/installers (source) 2.0.1 -> 2.3.0 age confidence
core-js (source) 3.21.1 -> 3.45.1 age confidence
drupal/core-composer-scaffold (source) 9.3.6 -> 9.5.11 age confidence
drupal/core-dev 9.3.6 -> 9.5.11 age confidence
drupal/core-project-message (source) 9.3.6 -> 9.5.11 age confidence
drupal/druxt (source) 1.1.1 -> 1.2.1 age confidence
drupal/tome (source) ^1.5 -> ^1.13.0 age confidence
drush/drush (source) ^11.0 -> ^11.6.0 age confidence
druxt-site (source) 0.11.0 -> 0.14.3 age confidence

Release Notes

nuxt-modules/storybook (@​nuxtjs/storybook)

v4.3.2

Compare Source

🏡 Chore

  • upgrade to Storybook v6.5.6

v4.3.1

Compare Source

🐛 Bug Fixes
  • Undefined render args argument (#​378)
  • keep NODE_ENV set by users (#​383)
💖 Thanks to

v4.3.0

Compare Source

🚀 Features
🐛 Bug Fixes
📝 Docs & Examples
💖 Thanks to
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

v2.2.0

Compare Source

Added

v2.1.1

Compare Source

Fixed
  • Fixed TastyIgniter parsing of extra data to use the package being installed instead of the root package (#​507)

v2.1.0

Compare Source

Added
  • Added new types (antivirus, customfield, contenttype, dataformat, media, paygw) for Moodle (#​497)
  • Added new tastyigniter-module type to TastyIgniter (#​503)
  • Added new extra.plugin-modifies-install-path to composer/installers for Composer 2.3 support, see docs if you are writing your own custom installer plugin.
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


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 force-pushed the renovate/all-minor-patch branch from db9570a to 2310194 Compare February 24, 2022 23:11
@renovate renovate bot changed the title Update dependency druxt-site to v0.11.1 Update all non-major dependencies Feb 24, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dc05dca to e6cfe11 Compare March 5, 2022 15:59
@Decipher Decipher self-requested a review March 5, 2022 21:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e6cfe11 to 1ce1ef6 Compare March 7, 2022 02:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from fa7f275 to 62bf114 Compare March 21, 2022 22:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 8a5e3bb to 65dcbf8 Compare April 20, 2022 00:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 27b4729 to e43f557 Compare April 24, 2022 18:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e43f557 to a4fe310 Compare May 16, 2022 00:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5c6665f to 6f9f6e4 Compare June 23, 2022 22:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f9f6e4 to 7f19116 Compare September 8, 2022 03:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7f19116 to 1418cba Compare September 25, 2022 18:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1418cba to eb89191 Compare November 20, 2022 16:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from abe545d to c27b56f Compare March 17, 2023 03:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c27b56f to 0f2346a Compare March 20, 2023 20:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e99838b to 16c21e3 Compare December 6, 2023 08:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16c21e3 to 64ae6b2 Compare December 29, 2023 08:34
Copy link
Author

renovate bot commented Dec 29, 2023

⚠ 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.2.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.0 drupal/tome:1.12.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
Loading composer repositories with package information
������������������������������������������������������                                                      ������������������������������������������������������Updating dependencies
Your requirements could not be resolved to an installable set of packages.

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

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 2e21d6c to a7fd320 Compare January 13, 2024 14:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a7fd320 to fc02534 Compare January 21, 2024 14:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fc02534 to 124d3d5 Compare February 15, 2024 05:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 124d3d5 to 880c9ad Compare March 20, 2024 02:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 880c9ad to 4f8b0a6 Compare April 17, 2024 05:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4f8b0a6 to 5aa886c Compare May 23, 2024 02:38
Copy link
Author

renovate bot commented May 23, 2024

⚠️ 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/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
    - drupal/core-recommended is locked to version 9.3.6 and an update of this package was not requested.
    - drupal/core-recommended 9.3.6 requires laminas/laminas-diactoros 2.8.0 -> satisfiable by laminas/laminas-diactoros[2.8.0].
    - laminas/laminas-diactoros[2.7.0, ..., 2.14.x-dev] require php ^7.3 || ~8.0.0 || ~8.1.0 -> your php version (8.4.11) 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 from 5aa886c to ccd39a6 Compare June 15, 2024 11:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 931f9bb to f5af8fe Compare June 29, 2024 08:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f5af8fe to 0e8eb72 Compare August 5, 2024 17:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e8eb72 to 513eb77 Compare August 20, 2024 23:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 513eb77 to 67f9886 Compare October 31, 2024 23:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 67f9886 to 575983c Compare November 24, 2024 05:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 575983c to 8ef436e Compare January 10, 2025 04:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8ef436e to e59ccce Compare March 2, 2025 07:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e59ccce to fd8b809 Compare May 3, 2025 03:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fd8b809 to c44ae58 Compare June 15, 2025 00:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c44ae58 to 278b655 Compare July 13, 2025 03:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c490977 to c9e81d6 Compare August 5, 2025 04:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f2de36e to 5450ad1 Compare August 15, 2025 23:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5450ad1 to 66a0807 Compare August 23, 2025 08:11
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