Update dependency autoprefixer to v9.8.4 #2

Manually merged
samuel-p merged 1 commits from renovate/autoprefixer-9.x into master 2020-07-05 11:34:52 +00:00
Collaborator

This PR contains the following updates:

Package Type Update Change
autoprefixer devDependencies minor 9.6.1 -> 9.8.4

Release Notes

postcss/autoprefixer

v9.8.4

Compare Source

  • Replace color output library.

v9.8.3

Compare Source

  • Return old non-LTS Node.js versions to avoid breaking changes.

v9.8.2

Compare Source

  • Remove Node.js 13.0-13.7 from supported engines, because of buggy ESM support.

v9.8.1

Compare Source

  • Replace chalk to kleur (by Luke Edwards).
  • Update docs (by @​mbomb007).

v9.8.0

Compare Source

XCOM coat of arms

Autoprefixer 9.8 brings IE support for :placeholder-shown.

Placeholder Shown

@​tkrotoff found that input:placeholder-shown can be emulated with input:-ms-input-placeholder.

input:-ms-input-placeholder {
  box-shadow: 0 0 0 1px blue;
}

input:placeholder-shown {
  box-shadow: 0 0 0 1px blue;
}

Note, that we already had support for ::placeholder. Selector ::placeholder is for the text of the placeholder. :placeholder-shown is for the input, where placeholder text is shown. In ::placeholder you can’t change the border or size of the <input>.

v9.7.6

Compare Source

  • Revert -webkit-stretch fix.

v9.7.5

Compare Source

  • Fix -webkit-stretch support.

v9.7.4

Compare Source

  • Fix warning text (by Dmitry Ishkov).

v9.7.3

Compare Source

  • Fix compatibility with PostCSS Modules.

v9.7.2

Compare Source

  • Add -ms-user-select: element support.
  • Add funding link for npm fund.

v9.7.1

Compare Source

  • Avoid unnecessary transitions in prefixed selectors (by Andrey Alexandrov).
  • Fix fit-content for Firefox.

v9.7.0

Compare Source

Brotherhood of Steel coat of arms

Autoprefixer 9.7 brings AUTOPREFIXER_GRID environment variable and huge performance improvments.

Grid Environment Variable

Autoprefixer can add CSS Grid polyfills for IE. You need to manually enable it to prove that you understand the limits of polyfill.

In previous versions you can enable Grid polyfill by grid: 'autoplace' option or by /* autoprefixer grid: autoplace */ control comment. But in some cases, developers were not able to use both methods. For instance, during work with Material UI’ CSS-in-JS in Create React App.

Now Autoprefixer supports environment variable to enable CSS Grid polyfill:

AUTOPREFIXER_GRID=autoplace npm build

Performance Improvements

@​Knagis found that Browserslist takes 70% of the Autoprefixer time.

Autoprefixer 9.6.5 profiling

We did a lot of improvements in Browserslist and now Autoprefixer should work much faster.

67417985-a283e180-f5d2-11e9-879a-e364c9acccf1

Other

v9.6.5

Compare Source

  • Fix selector prefixing (by Andrey Alexandrov).

v9.6.4

Compare Source

  • Now the real fix for 'startsWith' of undefined error.

v9.6.3

Compare Source

  • Fix Cannot read property 'startsWith' of undefined error.

v9.6.2

Compare Source

  • Fix false Replace fill to stretch warning.

Renovate configuration

📅 Schedule: 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 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 | |---|---|---|---| | [autoprefixer](https://github.com/postcss/autoprefixer) | devDependencies | minor | [`9.6.1` -> `9.8.4`](https://renovatebot.com/diffs/npm/autoprefixer/9.6.1/9.8.4) | --- ### Release Notes <details> <summary>postcss/autoprefixer</summary> ### [`v9.8.4`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;984) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.8.3...9.8.4) - Replace color output library. ### [`v9.8.3`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;983) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.8.2...9.8.3) - Return old non-LTS Node.js versions to avoid breaking changes. ### [`v9.8.2`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;982) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.8.1...9.8.2) - Remove Node.js 13.0-13.7 from supported engines, because of buggy ESM support. ### [`v9.8.1`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;981) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.8.0...9.8.1) - Replace `chalk` to `kleur` (by Luke Edwards). - Update docs (by [@&#8203;mbomb007](https://github.com/mbomb007)). ### [`v9.8.0`](https://github.com/postcss/autoprefixer/releases/9.8.0) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.7.6...9.8.0) <img src="https://user-images.githubusercontent.com/19343/82136582-6073f480-97dd-11ea-83ed-1367462eaba7.png" alt="XCOM coat of arms" width="180" height="240" align="right"> Autoprefixer 9.8 brings IE support for `:placeholder-shown`. #### Placeholder Shown [@&#8203;tkrotoff](https://github.com/tkrotoff) [found](https://github.com/postcss/autoprefixer/issues/1311) that `input:placeholder-shown` can be emulated with `input:-ms-input-placeholder`. ```css input:-ms-input-placeholder { box-shadow: 0 0 0 1px blue; } input:placeholder-shown { box-shadow: 0 0 0 1px blue; } ``` Note, that we already had support for `::placeholder`. Selector `::placeholder` is for the _text_ of the placeholder. `:placeholder-shown` is for the input, where placeholder text is shown. In `::placeholder` you can’t change the border or size of the `<input>`. ### [`v9.7.6`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;976) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.7.5...9.7.6) - Revert `-webkit-stretch` fix. ### [`v9.7.5`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;975) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.7.4...9.7.5) - Fix `-webkit-stretch` support. ### [`v9.7.4`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;974) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.7.3...9.7.4) - Fix warning text (by Dmitry Ishkov). ### [`v9.7.3`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;973) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.7.2...9.7.3) - Fix compatibility with PostCSS Modules. ### [`v9.7.2`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;972) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.7.1...9.7.2) - Add `-ms-user-select: element` support. - Add funding link for `npm fund`. ### [`v9.7.1`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;971) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.7.0...9.7.1) - Avoid unnecessary transitions in prefixed selectors (by Andrey Alexandrov). - Fix `fit-content` for Firefox. ### [`v9.7.0`](https://github.com/postcss/autoprefixer/releases/9.7.0) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.6.5...9.7.0) <img src="https://user-images.githubusercontent.com/19343/67488300-8bb0be00-f6aa-11e9-8ca1-5b466387bc01.png" alt="Brotherhood of Steel coat of arms" width="180" height="216" align="right"> Autoprefixer 9.7 brings `AUTOPREFIXER_GRID` environment variable and huge performance improvments. #### Grid Environment Variable Autoprefixer can add [CSS Grid polyfills for IE](https://github.com/postcss/autoprefixer#does-autoprefixer-polyfill-grid-layout-for-ie). You need to manually enable it to prove that you understand the limits of polyfill. In previous versions you can enable Grid polyfill by `grid: 'autoplace'` option or by `/* autoprefixer grid: autoplace */` control comment. But in some cases, developers were not able to use both methods. For instance, during [work with Material UI’ CSS-in-JS in Create React App](https://github.com/postcss/autoprefixer/issues/1257). Now Autoprefixer supports environment variable to enable CSS Grid polyfill: ```sh AUTOPREFIXER_GRID=autoplace npm build ``` #### Performance Improvements [@&#8203;Knagis](https://github.com/Knagis) [found](https://github.com/postcss/autoprefixer/issues/1256) that Browserslist takes 70% of the Autoprefixer time. ![Autoprefixer 9.6.5 profiling](https://user-images.githubusercontent.com/19343/67489064-e0a10400-f6ab-11e9-895b-1507608e2446.png) We did a lot of improvements in Browserslist and now Autoprefixer should work much faster. ![67417985-a283e180-f5d2-11e9-879a-e364c9acccf1](https://user-images.githubusercontent.com/19343/67489142-01695980-f6ac-11e9-96a2-c2cc169b6767.png) #### Other - Fix [`Cannot read property 'grid' of undefined`](https://github.com/postcss/autoprefixer/issues/1244) error ### [`v9.6.5`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;965) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.6.4...9.6.5) - Fix selector prefixing (by Andrey Alexandrov). ### [`v9.6.4`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;964) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.6.3...9.6.4) - Now the real fix for `'startsWith' of undefined` error. ### [`v9.6.3`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;963) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.6.2...9.6.3) - Fix `Cannot read property 'startsWith' of undefined` error. ### [`v9.6.2`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;962) [Compare Source](https://github.com/postcss/autoprefixer/compare/9.6.1...9.6.2) - Fix false `Replace fill to stretch` warning. </details> --- ### Renovate configuration 📅 **Schedule**: 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 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).
samuel-p was assigned by renovate-bot 2020-07-05 02:27:16 +00:00
renovate-bot force-pushed renovate/autoprefixer-9.x from fae16426bb to 371e707188 2020-07-05 10:54:49 +00:00 Compare
samuel-p manually merged commit dbe2d449ce into master 2020-07-05 11:34:52 +00:00
samuel-p deleted branch renovate/autoprefixer-9.x 2020-07-05 11:34:59 +00:00
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#2
No description provided.