Update dependency postcss to ^8.4.32 - autoclosed #91

Closed
renovate-bot wants to merge 1 commits from renovate/postcss-8.x into develop
Collaborator

This PR contains the following updates:

Package Type Update Change
postcss (source) devDependencies minor ^8.3.11 -> ^8.4.32

Release Notes

postcss/postcss (postcss)

v8.4.32

Compare Source

  • Fixed postcss().process() types (by Andrew Ferreira).

v8.4.31

Compare Source

  • Fixed \r parsing to fix CVE-2023-44270.

v8.4.30

Compare Source

  • Improved source map performance (by Romain Menke).

v8.4.29

Compare Source

  • Fixed Node#source.offset (by Ido Rosenthal).
  • Fixed docs (by Christian Oliff).

v8.4.28

Compare Source

  • Fixed Root.source.end for better source map (by Romain Menke).
  • Fixed Result.root types when process() has no parser.

v8.4.27

Compare Source

  • Fixed Container clone methods types.

v8.4.26

Compare Source

  • Fixed clone methods types.

v8.4.25

Compare Source

v8.4.24

Compare Source

  • Fixed Plugin types.

v8.4.23

Compare Source

  • Fixed warnings in TypeDoc.

v8.4.22

Compare Source

  • Fixed TypeScript support with node16 (by Remco Haszing).

v8.4.21

Compare Source

  • Fixed Input#error types (by Aleks Hudochenkov).

v8.4.20

Compare Source

  • Fixed source map generation for childless at-rules like @layer.

v8.4.19

Compare Source

  • Fixed whitespace preserving after AST transformations (by Romain Menke).

v8.4.18

Compare Source

  • Fixed an error on absolute: true with empty sourceContent (by Rene Haas).

v8.4.17

Compare Source

  • Fixed Node.before() unexpected behavior (by Romain Menke).
  • Added TOC to docs (by Mikhail Dedov).

v8.4.16

Compare Source

  • Fixed Root AST migration.

v8.4.15

Compare Source

  • Fixed AST normalization after using custom parser with old PostCSS AST.

v8.4.14

Compare Source

  • Print “old plugin API” warning only if plugin was used (by @​zardoy).

v8.4.13

Compare Source

  • Fixed append() error after using .parent (by Jordan Pittman).

v8.4.12

Compare Source

  • Fixed package.funding to have same value between all PostCSS packages.

v8.4.11

Compare Source

  • Fixed Declaration#raws.value type.

v8.4.10

Compare Source

  • Fixed package.funding URL format.

v8.4.9

Compare Source

  • Fixed package.funding (by Álvaro Mondéjar).

v8.4.8

Compare Source

  • Fixed end position in empty Custom Properties.

v8.4.7

Compare Source

  • Fixed Node#warn() type (by Masafumi Koba).
  • Fixed comment removal in values after ,.

v8.4.6

Compare Source

  • Prevented comment removing when it change meaning of CSS.
  • Fixed parsing space in last semicolon-less CSS Custom Properties.
  • Fixed comment cleaning in CSS Custom Properties with space.
  • Fixed throwing an error on .root access for plugin-less case.

v8.4.5

Compare Source

  • Fixed raws types to make object extendable (by James Garbutt).
  • Moved from Yarn 1 to pnpm.

v8.4.4

Compare Source

  • Fixed absolute path in source map on zero plugins mode.

v8.4.3

Compare Source

  • Fixed postcss().process() types (by Andrew Ferreira).

v8.4.2

Compare Source

  • Fixed Node#source.offset (by Ido Rosenthal).
  • Fixed docs (by Christian Oliff).

v8.4.1

Compare Source

  • Fixed whitespace preserving after AST transformations (by Romain Menke).

v8.4.0: 8.4 “President Camio”

Compare Source

President Camio seal

PostCSS 8.4 brought ranges for warnings and errors, smaller node_modules size, lazy parsing to avoid PostCSS does nothing warning, and TypeScript fixes.

Thanks to Sponsors

This release was possible thanks to our community.

Sponsored by Tailwind CSS Sponsored by ThemeIsle

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

Rages for Errors and Warnings

@​adalinesimonian, the author of amazing Stylelint extension for VS Code, added ranges to errors and warnings.

result.warn(msg, { index })           // One character warning at index
result.warn(msg, { endIndex })        // Starts at node start, ends at endIndex
result.warn(msg, { index, endIndex }) // Starts at index, ends at endIndex
result.warn(msg, { start })           // Starts at start, ends at node end
result.warn(msg, { end })             // Starts at node start, ends at end
result.warn(msg, { start, end })      // Starts at start, ends at end
result.warn(msg, { word })            // Starts at word location, ends at word index + length

It will improve DX in the IDE extension.

Lazy Parsing

Previously, we found that many tools run PostCSS even if the developer didn’t pass any PostCSS plugins. Parsing is the most expensive step in CSS processing. It led to a waste of resources without any reason.

We tried to resolve the problem by adding a PostCSS does nothing warning. But it didn’t force tool authors to be more careful with user’s resources.

If PostCSS sees that tool call it without passing plugins (or changing parser/stringifier), PostCSS will not parse CSS (until toll will call Result#root). In 8.4, @​bogdan0083 (with the help of @​WilhelmYakunin) tries to solve the problem in another way. It allows us to save resources and remove the PostCSS does nothing warning.

// No plugins, we do not parse CSS
let result = await postcss().process(css, { from  })
result.css  // Is the same string passed to process()
result.map  // Special 1-to-1 source map
result.root // CSS will parsed only here

Install Size Reduction

With ≈60M weekly downloads, PostCSS has responsibility for the world’s resource spending.

Together with @​7rulnik we reduced source-map-js size. It is transitive dependency of PostCSS.

In 8.4, we moved to a fixed version of source-map-js, which reduced the postcss size in your node_modules from ≈1 MB to 0.3 MB. With the huge popularity of PostCSS, it will free a lot of resources on our CIs.

PostCSS install size reduction

Migration from Jest to uvu

@​kimoofey refactored all tests from the popular Jest framework to small and fast uvu.

It will not affect end-users. However, it reduced our node_modules size by 33 MB and made tests twice faster (yarn install & yarn unit: 24 → 13 seconds).

TypeScript Fixes

  • Added Processor types.
  • Added Stringifier types (by @​43081j).
  • Fixed types Root and Document in result values (by @​43081j).
  • Fixed Node#walkRules() types (by @​hudochenkov).

Other Changes


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 is behind base branch, 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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | minor | [`^8.3.11` -> `^8.4.32`](https://renovatebot.com/diffs/npm/postcss/8.3.11/8.4.32) | --- ### Release Notes <details> <summary>postcss/postcss (postcss)</summary> ### [`v8.4.32`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8432) [Compare Source](https://github.com/postcss/postcss/compare/8.4.31...8.4.32) - Fixed `postcss().process()` types (by Andrew Ferreira). ### [`v8.4.31`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8431) [Compare Source](https://github.com/postcss/postcss/compare/8.4.30...8.4.31) - Fixed `\r` parsing to fix CVE-2023-44270. ### [`v8.4.30`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8430) [Compare Source](https://github.com/postcss/postcss/compare/8.4.29...8.4.30) - Improved source map performance (by Romain Menke). ### [`v8.4.29`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8429) [Compare Source](https://github.com/postcss/postcss/compare/8.4.28...8.4.29) - Fixed `Node#source.offset` (by Ido Rosenthal). - Fixed docs (by Christian Oliff). ### [`v8.4.28`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8428) [Compare Source](https://github.com/postcss/postcss/compare/8.4.27...8.4.28) - Fixed `Root.source.end` for better source map (by Romain Menke). - Fixed `Result.root` types when `process()` has no parser. ### [`v8.4.27`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#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#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#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)). ### [`v8.4.24`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8424) [Compare Source](https://github.com/postcss/postcss/compare/8.4.23...8.4.24) - Fixed `Plugin` types. ### [`v8.4.23`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8423) [Compare Source](https://github.com/postcss/postcss/compare/8.4.22...8.4.23) - Fixed warnings in TypeDoc. ### [`v8.4.22`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8422) [Compare Source](https://github.com/postcss/postcss/compare/8.4.21...8.4.22) - Fixed TypeScript support with `node16` (by Remco Haszing). ### [`v8.4.21`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8421) [Compare Source](https://github.com/postcss/postcss/compare/8.4.20...8.4.21) - Fixed `Input#error` types (by Aleks Hudochenkov). ### [`v8.4.20`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8420) [Compare Source](https://github.com/postcss/postcss/compare/8.4.19...8.4.20) - Fixed source map generation for childless at-rules like `@layer`. ### [`v8.4.19`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8419) [Compare Source](https://github.com/postcss/postcss/compare/8.4.18...8.4.19) - Fixed whitespace preserving after AST transformations (by Romain Menke). ### [`v8.4.18`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8418) [Compare Source](https://github.com/postcss/postcss/compare/8.4.17...8.4.18) - Fixed an error on `absolute: true` with empty `sourceContent` (by Rene Haas). ### [`v8.4.17`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8417) [Compare Source](https://github.com/postcss/postcss/compare/8.4.16...8.4.17) - Fixed `Node.before()` unexpected behavior (by Romain Menke). - Added TOC to docs (by Mikhail Dedov). ### [`v8.4.16`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8416) [Compare Source](https://github.com/postcss/postcss/compare/8.4.15...8.4.16) - Fixed `Root` AST migration. ### [`v8.4.15`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8415) [Compare Source](https://github.com/postcss/postcss/compare/8.4.14...8.4.15) - Fixed AST normalization after using custom parser with old PostCSS AST. ### [`v8.4.14`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8414) [Compare Source](https://github.com/postcss/postcss/compare/8.4.13...8.4.14) - Print “old plugin API” warning only if plugin was used (by [@&#8203;zardoy](https://github.com/zardoy)). ### [`v8.4.13`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8413) [Compare Source](https://github.com/postcss/postcss/compare/8.4.12...8.4.13) - Fixed `append()` error after using `.parent` (by Jordan Pittman). ### [`v8.4.12`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8412) [Compare Source](https://github.com/postcss/postcss/compare/8.4.11...8.4.12) - Fixed `package.funding` to have same value between all PostCSS packages. ### [`v8.4.11`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8411) [Compare Source](https://github.com/postcss/postcss/compare/8.4.10...8.4.11) - Fixed `Declaration#raws.value` type. ### [`v8.4.10`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8410) [Compare Source](https://github.com/postcss/postcss/compare/8.4.9...8.4.10) - Fixed `package.funding` URL format. ### [`v8.4.9`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#849) [Compare Source](https://github.com/postcss/postcss/compare/8.4.8...8.4.9) - Fixed `package.funding` (by Álvaro Mondéjar). ### [`v8.4.8`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#848) [Compare Source](https://github.com/postcss/postcss/compare/8.4.7...8.4.8) - Fixed end position in empty Custom Properties. ### [`v8.4.7`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#847) [Compare Source](https://github.com/postcss/postcss/compare/8.4.6...8.4.7) - Fixed `Node#warn()` type (by Masafumi Koba). - Fixed comment removal in values after `,`. ### [`v8.4.6`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#846) [Compare Source](https://github.com/postcss/postcss/compare/8.4.5...8.4.6) - Prevented comment removing when it change meaning of CSS. - Fixed parsing space in last semicolon-less CSS Custom Properties. - Fixed comment cleaning in CSS Custom Properties with space. - Fixed throwing an error on `.root` access for plugin-less case. ### [`v8.4.5`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#845) [Compare Source](https://github.com/postcss/postcss/compare/8.4.4...8.4.5) - Fixed `raws` types to make object extendable (by James Garbutt). - Moved from Yarn 1 to pnpm. ### [`v8.4.4`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#844) [Compare Source](https://github.com/postcss/postcss/compare/8.4.3...8.4.4) - Fixed absolute path in source map on zero plugins mode. ### [`v8.4.3`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8432) [Compare Source](https://github.com/postcss/postcss/compare/8.4.2...8.4.3) - Fixed `postcss().process()` types (by Andrew Ferreira). ### [`v8.4.2`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8429) [Compare Source](https://github.com/postcss/postcss/compare/8.4.1...8.4.2) - Fixed `Node#source.offset` (by Ido Rosenthal). - Fixed docs (by Christian Oliff). ### [`v8.4.1`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8419) [Compare Source](https://github.com/postcss/postcss/compare/8.4.0...8.4.1) - Fixed whitespace preserving after AST transformations (by Romain Menke). ### [`v8.4.0`](https://github.com/postcss/postcss/releases/tag/8.4.0): 8.4 “President Camio” [Compare Source](https://github.com/postcss/postcss/compare/8.3.11...8.4.0) <img src="https://user-images.githubusercontent.com/19343/143240813-e6fb2eff-0188-4426-8534-d9076df9fa96.jpg" align="right" width="200" height="200" alt="President Camio seal"> PostCSS 8.4 brought ranges for warnings and errors, smaller `node_modules` size, lazy parsing to avoid `PostCSS does nothing` warning, and TypeScript fixes. #### Thanks to Sponsors This release was possible thanks to our community. <a href="https://tailwindcss.com/"> <img src="https://refactoringui.nyc3.cdn.digitaloceanspaces.com/tailwind-logo.svg" alt="Sponsored by Tailwind CSS" width="213" height="50"> </a> <a href="https://themeisle.com/"> <img src="https://mllj2j8xvfl0.i.optimole.com/d0cOXWA.3970~373ad/w:auto/h:auto/q:90/https://s30246.pcdn.co/wp-content/uploads/2019/03/logo.png" alt="Sponsored by ThemeIsle" width="171" height="56"> </a> If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by: - [**Tidelift**](https://tidelift.com/) with a Spotify-like subscription model supporting all projects from your lock file. - Direct donations in [**PostCSS & Autoprefixer Open Collective**](https://opencollective.com/postcss#section-contributors). #### Rages for Errors and Warnings [@&#8203;adalinesimonian](https://github.com/adalinesimonian), the author of amazing [Stylelint extension](https://github.com/stylelint/vscode-stylelint) for VS Code, added ranges to errors and warnings. ```js result.warn(msg, { index }) // One character warning at index result.warn(msg, { endIndex }) // Starts at node start, ends at endIndex result.warn(msg, { index, endIndex }) // Starts at index, ends at endIndex result.warn(msg, { start }) // Starts at start, ends at node end result.warn(msg, { end }) // Starts at node start, ends at end result.warn(msg, { start, end }) // Starts at start, ends at end result.warn(msg, { word }) // Starts at word location, ends at word index + length ``` It will improve DX in the IDE extension. #### Lazy Parsing Previously, we found that many tools run PostCSS even if the developer didn’t pass any PostCSS plugins. Parsing is the most expensive step in CSS processing. It led to a waste of resources without any reason. We tried to resolve the problem by adding a `PostCSS does nothing` warning. But it didn’t force tool authors to be more careful with user’s resources. If PostCSS sees that tool call it without passing plugins (or changing parser/stringifier), PostCSS will not parse CSS (until toll will call `Result#root`). In 8.4, [@&#8203;bogdan0083](https://github.com/bogdan0083) (with the help of [@&#8203;WilhelmYakunin](https://github.com/WilhelmYakunin)) tries to solve the problem in another way. It allows us to save resources and remove the `PostCSS does nothing` warning. ```js // No plugins, we do not parse CSS let result = await postcss().process(css, { from }) result.css // Is the same string passed to process() result.map // Special 1-to-1 source map result.root // CSS will parsed only here ``` #### Install Size Reduction With [≈60M weekly](https://npm-stat.com/charts.html?package=postcss) downloads, PostCSS has responsibility for the world’s resource spending. Together with [@&#8203;7rulnik](https://github.com/7rulnik) we [reduced](https://github.com/7rulnik/source-map-js/pull/7) [`source-map-js`](https://github.com/7rulnik/source-map-js) size. It is transitive dependency of PostCSS. In 8.4, we moved to a fixed version of `source-map-js`, which reduced the `postcss` size in your `node_modules` from [≈1 MB to 0.3 MB](https://packagephobia.com/result?p=postcss). With the huge popularity of PostCSS, it will free a lot of resources on our CIs. <img src="https://user-images.githubusercontent.com/19343/143244369-9ec362c5-4dbd-4aff-ba9e-7b4a50a97484.png" width="550" height="392" alt="PostCSS install size reduction"> #### Migration from Jest to `uvu` [@&#8203;kimoofey](https://github.com/kimoofey) refactored all tests from the popular Jest framework to small and fast [`uvu`](https://github.com/lukeed/uvu). It will not affect end-users. However, it reduced our `node_modules` size by 33 MB and made tests twice faster (`yarn install & yarn unit`: 24 → 13 seconds). #### TypeScript Fixes - Added `Processor` types. - Added `Stringifier` types (by [@&#8203;43081j](https://github.com/43081j)). - Fixed types `Root` and `Document` in result values (by [@&#8203;43081j](https://github.com/43081j)). - Fixed `Node#walkRules()` types (by [@&#8203;hudochenkov](https://github.com/hudochenkov)). #### Other Changes - Fixed docs (by [@&#8203;paulshryock](https://github.com/paulshryock)). </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3Ljc3LjEiLCJ0YXJnZXRCcmFuY2giOiJkZXZlbG9wIn0=-->
samuel-p was assigned by renovate-bot 2021-11-24 14:01:41 +00:00
renovate-bot changed title from Update dependency postcss to ^8.4.0 to Update dependency postcss to ^8.4.1 2021-11-25 05:02:20 +00:00
renovate-bot force-pushed renovate/postcss-8.x from fed786e6b8 to 3f79e6d15f 2021-11-25 05:02:21 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.1 to Update dependency postcss to ^8.4.3 2021-11-26 20:01:40 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 3f79e6d15f to 91724bb43d 2021-11-26 20:01:41 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.3 to Update dependency postcss to ^8.4.4 2021-11-27 17:01:19 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 91724bb43d to d19eebd379 2021-11-27 17:01:23 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.4 to Update dependency postcss to ^8.4.5 2021-12-13 05:01:38 +00:00
renovate-bot force-pushed renovate/postcss-8.x from d19eebd379 to 35816162f9 2021-12-13 05:01:42 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.5 to Update dependency postcss to ^8.4.6 2022-02-04 05:03:36 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 35816162f9 to 6534fc501d 2022-02-04 05:03:39 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.6 to Update dependency postcss to ^8.4.7 2022-02-25 05:03:34 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 6534fc501d to 6ce8771a92 2022-02-25 05:03:38 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.7 to Update dependency postcss to ^8.4.8 2022-03-07 05:03:49 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 6ce8771a92 to d04c2439e4 2022-03-07 05:03:50 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.8 to Update dependency postcss to ^8.4.11 2022-03-15 20:02:08 +00:00
renovate-bot force-pushed renovate/postcss-8.x from d04c2439e4 to fe960aee25 2022-03-15 20:02:13 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.11 to Update dependency postcss to ^8.4.12 2022-03-16 11:02:19 +00:00
renovate-bot force-pushed renovate/postcss-8.x from fe960aee25 to 8c4d74c34a 2022-03-16 11:02:22 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.12 to Update dependency postcss to ^8.4.13 2022-04-30 04:01:58 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 8c4d74c34a to aa4dbf07ed 2022-04-30 04:02:01 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.13 to Update dependency postcss to ^8.4.14 2022-05-18 19:01:43 +00:00
renovate-bot force-pushed renovate/postcss-8.x from aa4dbf07ed to cd9ab47e8f 2022-05-18 19:01:48 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.14 to Update dependency postcss to ^8.4.16 2022-08-06 19:01:33 +00:00
renovate-bot force-pushed renovate/postcss-8.x from cd9ab47e8f to a1c928fe70 2022-08-06 19:01:35 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.16 to Update dependency postcss to ^8.4.17 2022-09-30 12:01:39 +00:00
renovate-bot force-pushed renovate/postcss-8.x from a1c928fe70 to 6820e10140 2022-09-30 12:01:41 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.17 to Update dependency postcss to ^8.4.18 2022-10-12 20:01:39 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 6820e10140 to 1c69f9c99a 2022-10-12 20:01:41 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.18 to Update dependency postcss to ^8.4.19 2022-11-11 05:01:45 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 1c69f9c99a to 5294be5b3c 2022-11-11 05:01:47 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.19 to Update dependency postcss to ^8.4.20 2022-12-11 18:01:57 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 5294be5b3c to 2695fcced5 2022-12-11 18:01:59 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.20 to Update dependency postcss to ^8.4.21 2023-01-06 21:03:45 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 2695fcced5 to ff80aa9a19 2023-01-06 21:03:48 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.21 to Update dependency postcss to ^8.4.22 2023-04-16 14:02:14 +00:00
renovate-bot force-pushed renovate/postcss-8.x from ff80aa9a19 to 7bc7025a57 2023-04-16 14:02:15 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.22 to Update dependency postcss to ^8.4.23 2023-04-19 20:02:05 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 7bc7025a57 to a638d46440 2023-04-19 20:02:07 +00:00 Compare
renovate-bot force-pushed renovate/postcss-8.x from a638d46440 to 5258586e5d 2023-05-28 10:03:14 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.23 to Update dependency postcss to ^8.4.24 2023-05-28 10:03:18 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 5258586e5d to c4ba75bba6 2023-07-06 12:02:32 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.24 to Update dependency postcss to ^8.4.25 2023-07-06 12:02:38 +00:00
renovate-bot force-pushed renovate/postcss-8.x from c4ba75bba6 to bc46c39e8d 2023-07-13 20:01:53 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.25 to Update dependency postcss to ^8.4.26 2023-07-13 20:01:57 +00:00
renovate-bot force-pushed renovate/postcss-8.x from bc46c39e8d to fe5825a93f 2023-07-21 12:01:17 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.26 to Update dependency postcss to ^8.4.27 2023-07-21 12:01:21 +00:00
renovate-bot force-pushed renovate/postcss-8.x from fe5825a93f to abd6e6ad0a 2023-08-15 20:01:33 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.27 to Update dependency postcss to ^8.4.28 2023-08-15 20:01:37 +00:00
renovate-bot force-pushed renovate/postcss-8.x from abd6e6ad0a to 896da26612 2023-08-29 18:01:53 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.28 to Update dependency postcss to ^8.4.29 2023-08-29 18:01:58 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 896da26612 to e808957558 2023-09-19 04:01:42 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.29 to Update dependency postcss to ^8.4.30 2023-09-19 04:01:46 +00:00
renovate-bot force-pushed renovate/postcss-8.x from e808957558 to 58b46c8480 2023-09-29 04:01:47 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.30 to Update dependency postcss to ^8.4.31 2023-09-29 04:01:49 +00:00
renovate-bot force-pushed renovate/postcss-8.x from 58b46c8480 to 269d4083c7 2023-12-02 03:01:18 +00:00 Compare
renovate-bot changed title from Update dependency postcss to ^8.4.31 to Update dependency postcss to ^8.4.32 2023-12-02 03:01:19 +00:00
renovate-bot changed title from Update dependency postcss to ^8.4.32 to Update dependency postcss to ^8.4.32 - autoclosed 2023-12-06 23:02:06 +00:00
renovate-bot closed this pull request 2023-12-06 23:02:06 +00:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: samuel-p/sp-magic.de#91
No description provided.