Update all dependencies #137

Merged
kjuulh merged 1 commits from renovate/all into main 2023-07-25 01:17:59 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
Mediatr nuget minor 12.0.1 -> 12.1.1
eslint (source) devDependencies minor 8.44.0 -> 8.45.0
postcss (source) devDependencies patch 8.4.24 -> 8.4.27
prettier (source) devDependencies major 2.8.8 -> 3.0.0
tailwindcss (source) dependencies patch 3.3.2 -> 3.3.3

Release Notes

jbogard/MediatR

v12.1.1

What's Changed

Full Changelog: https://github.com/jbogard/MediatR/compare/v12.1.0...v12.1.1

v12.1.0

Migration Guide

https://github.com/jbogard/MediatR/wiki/Migration-Guide-12.0-to-12.1

What's Changed

New Contributors

Full Changelog: https://github.com/jbogard/MediatR/compare/v12.0.1...v12.1.0

This release removes all scanning around behaviors, stream behaviors, and pre/post processors. That proved too problematic so you MUST register each of these explicitly with the appropriate registration methods inside AddMediatR. This also ensures that the order of behaviors and pre/post processors reflects the explicit order of registration. With the scanning approach, you couldn't control the order.

eslint/eslint

v8.45.0

Compare Source

Features

  • cdd063c feat: Expose LegacyESLint in unsupported API (#​17341) (Nicholas C. Zakas)
  • d34abe5 feat: fix indent rule for else-if (#​17318) (Milos Djermanovic)

Bug Fixes

  • b79b6fb fix: Fix suggestion message in no-useless-escape (#​17339) (Francesco Trotta)
  • c667055 fix: provide unique fix and fix.range objects in lint messages (#​17332) (Milos Djermanovic)

Documentation

  • 89f3225 docs: add playground links to correct and incorrect code blocks (#​17306) (Josh Goldberg )
  • f8892b5 docs: Expand rule option schema docs (#​17198) (Matt Wilkinson)
  • 8bcbf11 docs: Config Migration Guide (#​17230) (Ben Perlmutter)
  • bb30908 docs: Update README (GitHub Actions Bot)
  • 84d243b docs: Update README (GitHub Actions Bot)
  • b762632 docs: Update README (GitHub Actions Bot)
  • 138c096 docs: add more prefer-destructuring examples with array destructuring (#​17330) (Milos Djermanovic)
  • 1fc50a8 docs: max-len rule code and tabWidth as positional arguments (#​17331) (Jesús Leganés-Combarro)

Chores

postcss/postcss

v8.4.27

Compare Source

  • Fixed Container clone methods types.

v8.4.26

Compare Source

  • Fixed clone methods types.

v8.4.25

Compare Source

prettier/prettier

v3.0.0

Compare Source

diff

🔗 Release Notes

tailwindlabs/tailwindcss

v3.3.3

Compare Source

Fixed
  • Fix issue where some pseudo-element variants generated the wrong selector (#​10943, #​10962, #​11111)
  • Make font settings propagate into buttons, inputs, etc. (#​10940)
  • Fix parsing of theme() inside calc() when there are no spaces around operators (#​11157)
  • Ensure repeating-conic-gradient is detected as an image (#​11180)
  • Move unknown pseudo-elements outside of :is by default (#​11345)
  • Escape animation names when prefixes contain special characters (#​11470)
  • Don't prefix arbitrary classes in group and peer variants (#​11454)
  • Sort classes using position of first matching rule (#​11504)
  • Allow variant to be an at-rule without a prelude (#​11589)
  • Make PostCSS plugin async to improve performance (#​11548)
  • Don’t error when a config file is missing (f97759f)
Added
Changed
  • Reset padding for <dialog> elements in preflight (#​11069)

Configuration

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

🚦 Automerge: Enabled.

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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Mediatr](https://github.com/jbogard/MediatR) | nuget | minor | `12.0.1` -> `12.1.1` | | [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint)) | devDependencies | minor | [`8.44.0` -> `8.45.0`](https://renovatebot.com/diffs/npm/eslint/8.44.0/8.45.0) | | [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | patch | [`8.4.24` -> `8.4.27`](https://renovatebot.com/diffs/npm/postcss/8.4.24/8.4.27) | | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | major | [`2.8.8` -> `3.0.0`](https://renovatebot.com/diffs/npm/prettier/2.8.8/3.0.0) | | [tailwindcss](https://tailwindcss.com) ([source](https://github.com/tailwindlabs/tailwindcss)) | dependencies | patch | [`3.3.2` -> `3.3.3`](https://renovatebot.com/diffs/npm/tailwindcss/3.3.2/3.3.3) | --- ### Release Notes <details> <summary>jbogard/MediatR</summary> ### [`v12.1.1`](https://github.com/jbogard/MediatR/releases/tag/v12.1.1) #### What's Changed - Fixing registration problem; moving exception behaviors first so that… by [@&#8203;jbogard](https://github.com/jbogard) in https://github.com/jbogard/MediatR/pull/925 **Full Changelog**: https://github.com/jbogard/MediatR/compare/v12.1.0...v12.1.1 ### [`v12.1.0`](https://github.com/jbogard/MediatR/releases/tag/v12.1.0) #### Migration Guide https://github.com/jbogard/MediatR/wiki/Migration-Guide-12.0-to-12.1 #### What's Changed - AddOpenBehavior(type) now supports stream behaviors without duplicate registrations by [@&#8203;asimmon](https://github.com/asimmon) in https://github.com/jbogard/MediatR/pull/860 - Remove unnecessary usage of GetTypeInfo by [@&#8203;jvandertil](https://github.com/jvandertil) in https://github.com/jbogard/MediatR/pull/859 - Fix typo in comment by [@&#8203;owns](https://github.com/owns) in https://github.com/jbogard/MediatR/pull/873 - Fix runtime exception in DryIoc sample by [@&#8203;hymccord](https://github.com/hymccord) in https://github.com/jbogard/MediatR/pull/881 - Fix broken Benchmarks by [@&#8203;maxime-poulain](https://github.com/maxime-poulain) in https://github.com/jbogard/MediatR/pull/899 - Adding method for registering stream behaviors by [@&#8203;jbogard](https://github.com/jbogard) in https://github.com/jbogard/MediatR/pull/919 - Adding open stream behaviors by [@&#8203;jbogard](https://github.com/jbogard) in https://github.com/jbogard/MediatR/pull/920 - Removing extraneous interfaces and classes for exceptions by [@&#8203;jbogard](https://github.com/jbogard) in https://github.com/jbogard/MediatR/pull/921 - Explicit processor registration by [@&#8203;jbogard](https://github.com/jbogard) in https://github.com/jbogard/MediatR/pull/922 #### New Contributors - [@&#8203;jvandertil](https://github.com/jvandertil) made their first contribution in https://github.com/jbogard/MediatR/pull/859 - [@&#8203;owns](https://github.com/owns) made their first contribution in https://github.com/jbogard/MediatR/pull/873 - [@&#8203;hymccord](https://github.com/hymccord) made their first contribution in https://github.com/jbogard/MediatR/pull/881 - [@&#8203;maxime-poulain](https://github.com/maxime-poulain) made their first contribution in https://github.com/jbogard/MediatR/pull/899 **Full Changelog**: https://github.com/jbogard/MediatR/compare/v12.0.1...v12.1.0 This release removes all scanning around behaviors, stream behaviors, and pre/post processors. That proved too problematic so you MUST register each of these explicitly with the appropriate registration methods inside `AddMediatR`. This also ensures that the order of behaviors and pre/post processors reflects the explicit order of registration. With the scanning approach, you couldn't control the order. </details> <details> <summary>eslint/eslint</summary> ### [`v8.45.0`](https://github.com/eslint/eslint/releases/tag/v8.45.0) [Compare Source](https://github.com/eslint/eslint/compare/v8.44.0...v8.45.0) #### Features - [`cdd063c`](https://github.com/eslint/eslint/commit/cdd063c388bbfe1781d7a864a832f03a2c1cc277) feat: Expose LegacyESLint in unsupported API ([#&#8203;17341](https://github.com/eslint/eslint/issues/17341)) (Nicholas C. Zakas) - [`d34abe5`](https://github.com/eslint/eslint/commit/d34abe59eb23932dcbc79757d7932d08ee8b20e5) feat: fix indent rule for else-if ([#&#8203;17318](https://github.com/eslint/eslint/issues/17318)) (Milos Djermanovic) #### Bug Fixes - [`b79b6fb`](https://github.com/eslint/eslint/commit/b79b6fb64473969b426d086b484d2e29594a5e9a) fix: Fix suggestion message in `no-useless-escape` ([#&#8203;17339](https://github.com/eslint/eslint/issues/17339)) (Francesco Trotta) - [`c667055`](https://github.com/eslint/eslint/commit/c667055fb9da8ebac3a99f6e5a8b5565cc86af8e) fix: provide unique `fix` and `fix.range` objects in lint messages ([#&#8203;17332](https://github.com/eslint/eslint/issues/17332)) (Milos Djermanovic) #### Documentation - [`89f3225`](https://github.com/eslint/eslint/commit/89f3225108c66425e4132f76db6c1ab13aac98d7) docs: add playground links to correct and incorrect code blocks ([#&#8203;17306](https://github.com/eslint/eslint/issues/17306)) (Josh Goldberg ✨) - [`f8892b5`](https://github.com/eslint/eslint/commit/f8892b52920b8967f9e7bec23c75b74e03977d6b) docs: Expand rule option schema docs ([#&#8203;17198](https://github.com/eslint/eslint/issues/17198)) (Matt Wilkinson) - [`8bcbf11`](https://github.com/eslint/eslint/commit/8bcbf11b6050418262ffa8e0ca37f365ae92e7ce) docs: Config Migration Guide ([#&#8203;17230](https://github.com/eslint/eslint/issues/17230)) (Ben Perlmutter) - [`bb30908`](https://github.com/eslint/eslint/commit/bb3090897166dbfd2931a43a70e2a5c1f3fa0a07) docs: Update README (GitHub Actions Bot) - [`84d243b`](https://github.com/eslint/eslint/commit/84d243b245b01b667f0752b592e8bda02a9aa2b1) docs: Update README (GitHub Actions Bot) - [`b762632`](https://github.com/eslint/eslint/commit/b762632298f20c4f81e7d01ab850c3f5e3874637) docs: Update README (GitHub Actions Bot) - [`138c096`](https://github.com/eslint/eslint/commit/138c096bc9468b553dbafc0e573c6522a17a7922) docs: add more prefer-destructuring examples with array destructuring ([#&#8203;17330](https://github.com/eslint/eslint/issues/17330)) (Milos Djermanovic) - [`1fc50a8`](https://github.com/eslint/eslint/commit/1fc50a89753346f4f4c786ffd20ac4cf185bb036) docs: `max-len` rule `code` and `tabWidth` as positional arguments ([#&#8203;17331](https://github.com/eslint/eslint/issues/17331)) (Jesús Leganés-Combarro) #### Chores - [`68f63d7`](https://github.com/eslint/eslint/commit/68f63d76ce785fab4f42b76f1599026eea379bf7) chore: package.json update for [@&#8203;eslint/js](https://github.com/eslint/js) release (ESLint Jenkins) - [`5ca9b4d`](https://github.com/eslint/eslint/commit/5ca9b4d29f747e9cf5c9055e85c93b3b605d57fc) chore: update eslint-config-eslint exports ([#&#8203;17336](https://github.com/eslint/eslint/issues/17336)) (Milos Djermanovic) - [`7bf2e86`](https://github.com/eslint/eslint/commit/7bf2e86022c9e95db4ca1472fddfa2ea4edd1870) chore: remove unused dependencies ([#&#8203;17352](https://github.com/eslint/eslint/issues/17352)) (Percy Ma) - [`c6f8cd0`](https://github.com/eslint/eslint/commit/c6f8cd0d62e4a3c314c6860ff367490bbd05325a) chore: Remove `defaultIgnores` from FlatESLint private members ([#&#8203;17349](https://github.com/eslint/eslint/issues/17349)) (Francesco Trotta) - [`0052374`](https://github.com/eslint/eslint/commit/0052374035672efe9129343fc00ee51a4c288ff3) chore: move jsdoc settings to eslint-config-eslint ([#&#8203;17338](https://github.com/eslint/eslint/issues/17338)) (唯然) </details> <details> <summary>postcss/postcss</summary> ### [`v8.4.27`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#&#8203;8427) [Compare Source](https://github.com/postcss/postcss/compare/8.4.26...8.4.27) - Fixed `Container` clone methods types. ### [`v8.4.26`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#&#8203;8426) [Compare Source](https://github.com/postcss/postcss/compare/8.4.25...8.4.26) - Fixed clone methods types. ### [`v8.4.25`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#&#8203;8425) [Compare Source](https://github.com/postcss/postcss/compare/8.4.24...8.4.25) - Improve stringify performance (by Romain Menke). - Fixed docs (by [@&#8203;vikaskaliramna07](https://github.com/vikaskaliramna07)). </details> <details> <summary>prettier/prettier</summary> ### [`v3.0.0`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;300) [Compare Source](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) [diff](https://github.com/prettier/prettier/compare/3.0.0-alpha.6...3.0.0) 🔗 [Release Notes](https://prettier.io/blog/2023/07/05/3.0.0.html) </details> <details> <summary>tailwindlabs/tailwindcss</summary> ### [`v3.3.3`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.3.3) [Compare Source](https://github.com/tailwindlabs/tailwindcss/compare/v3.3.2...v3.3.3) ##### Fixed - Fix issue where some pseudo-element variants generated the wrong selector ([#&#8203;10943](https://github.com/tailwindlabs/tailwindcss/pull/10943), [#&#8203;10962](https://github.com/tailwindlabs/tailwindcss/pull/10962), [#&#8203;11111](https://github.com/tailwindlabs/tailwindcss/pull/11111)) - Make font settings propagate into buttons, inputs, etc. ([#&#8203;10940](https://github.com/tailwindlabs/tailwindcss/pull/10940)) - Fix parsing of `theme()` inside `calc()` when there are no spaces around operators ([#&#8203;11157](https://github.com/tailwindlabs/tailwindcss/pull/11157)) - Ensure `repeating-conic-gradient` is detected as an image ([#&#8203;11180](https://github.com/tailwindlabs/tailwindcss/pull/11180)) - Move unknown pseudo-elements outside of `:is` by default ([#&#8203;11345](https://github.com/tailwindlabs/tailwindcss/pull/11345)) - Escape animation names when prefixes contain special characters ([#&#8203;11470](https://github.com/tailwindlabs/tailwindcss/pull/11470)) - Don't prefix arbitrary classes in `group` and `peer` variants ([#&#8203;11454](https://github.com/tailwindlabs/tailwindcss/pull/11454)) - Sort classes using position of first matching rule ([#&#8203;11504](https://github.com/tailwindlabs/tailwindcss/pull/11504)) - Allow variant to be an at-rule without a prelude ([#&#8203;11589](https://github.com/tailwindlabs/tailwindcss/pull/11589)) - Make PostCSS plugin async to improve performance ([#&#8203;11548](https://github.com/tailwindlabs/tailwindcss/pull/11548)) - Don’t error when a config file is missing ([f97759f](https://github.com/tailwindlabs/tailwindcss/commit/f97759f808d15ace66647b1405744fcf95a392e5)) ##### Added - Add `aria-busy` utility ([#&#8203;10966](https://github.com/tailwindlabs/tailwindcss/pull/10966)) ##### Changed - Reset padding for `<dialog>` elements in preflight ([#&#8203;11069](https://github.com/tailwindlabs/tailwindcss/pull/11069)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh force-pushed renovate/all from 2a91943c23 to d708876a26 2023-07-25 00:33:20 +02:00 Compare
kjuulh force-pushed renovate/all from d708876a26 to 8377475f4d 2023-07-25 00:56:18 +02:00 Compare
kjuulh merged commit 8377475f4d into main 2023-07-25 01:17:59 +02:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/todo#137
No description provided.