Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Apr 7, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
autoprefixer 9.5.0 -> 9.8.8 age adoption passing confidence

Release Notes

postcss/autoprefixer

v9.8.8

Compare Source

  • Replaced nanocolors with picocolors.
  • Reduced package size.

v9.8.7

Compare Source

  • Replaced colorette with nanocolors.
  • Reduced package size.

v9.8.6

Compare Source

  • Fixed env option.

v9.8.5

Compare Source

  • Improved Grid Layout warnings (by Daniel Tonon).
  • Fixed align-self and justify-self with display: flex (by Daniel Tonon).

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: 9.8 “Vigilo Confido”

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: 9.7 “Ad Victoriam”

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.

v9.6.1

Compare Source

  • Fix -webkit-line-clamp truncating multi-line text support.

v9.6.0: 9.6 “Nunc id vides, nunc ne vides”

Compare Source

Unseen University coat of arms by Damien Tonkin

Autoprefixer 9.6 marked browsers option as deprecated and added text-orientation and @media (min-resolution: 2x) support.

We added the “Sponsor” button to your repository. You can support Autoprefixer and other open source projects important for your business by Tidelift.

Browsers

Autoprefixer adds prefixes only for target browsers, browsers which is support on your project.

Initially, Autoprefixer had the browsers option to set target browsers. But we found that many tools need target browsers too. postcss-preset-env and babel-preset-env use them to add only actual polyfills, postcss-normalize uses them to add only necessary CSS reset rules, plugins for ESLint and Stylelint will warn you if some of the target browsers doesn’t support your code.

This is why we created Browserslist config file. It is a single config for all tools.

A lot of users still uses the browsers option. We understand them; it is hard to change old practice. Unfortunately, using the browsers option creates many problems. For instance, you can miss that your build tool has own Autoprefixer inside. It will cut your prefixes because it will not know about your target browsers.

This is why, in 9.6, we decided to deprecate the browsers option. Autoprefixer will show a warning on this option. In the next 10.0 release, we will drop this option. This is how you can migrate:

  1. Create browserslist key with an array in package.json.

  2. Copy queries from the browsers option. If you have browsers: [“last 1 version”, “not dead”], then you need:

       "browserslist": [
         "last 1 version",
         "not dead"
       ]

HiDPI Media Query

We all need to support HiDPI/retina screen now. Autoprefixer supports specific media query for HiDPI screens:

.image {
  background-image: url(image@1x.png);
}
@&#8203;media (min-resolution: 2dppx) {
  .image {
    background-image: url(image@2x.png);
  }
}
.image {
  background-image: url(image@1x.png);
}
@&#8203;media (-webkit-min-device-pixel-ratio: 2),
       (-o-min-device-pixel-ratio: 2/1),
       (min-resolution: 2dppx) {
  .image {
    background-image: url(image@2x.png);
  }
}

Bug we found that CSS Values 4 spec added x alias for dppx.

Autoprefixer 9.6 supports @media (min-resolution: 2x) shortcut. Note, that Autoprefixer will not convert it to 2dppx. Autoprefixer adds only prefixes. Use postcss-preset-env to add polyfills.

Other

v9.5.1

Compare Source

  • Fix backdrop-filter for Edge (by Oleh Aloshkin).
  • Fix min-resolution media query support in Firefox < 16.

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.

🔕 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 Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.5.1 Update dependency autoprefixer to v9.5.1 May 17, 2019
@renovate renovate bot changed the title Update dependency autoprefixer to v9.5.1 chore(deps): update dependency autoprefixer to v9.5.1 May 17, 2019
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.5.1 Update dependency autoprefixer to v9.5.1 May 17, 2019
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 1ed4c32 to 4632f7d Compare June 3, 2019 18:45
@renovate renovate bot changed the title Update dependency autoprefixer to v9.5.1 Update dependency autoprefixer to v9.6.0 Jun 3, 2019
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 4632f7d to 2dd0fb5 Compare July 11, 2019 09:26
@renovate renovate bot changed the title Update dependency autoprefixer to v9.6.0 Update dependency autoprefixer to v9.6.1 Jul 11, 2019
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 2dd0fb5 to 067143b Compare November 12, 2019 11:59
@renovate renovate bot changed the title Update dependency autoprefixer to v9.6.1 Update dependency autoprefixer to v9.7.1 Nov 12, 2019
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 067143b to 67112e7 Compare November 21, 2019 10:17
@renovate renovate bot changed the title Update dependency autoprefixer to v9.7.1 Update dependency autoprefixer to v9.7.2 Nov 21, 2019
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 67112e7 to 8935513 Compare December 14, 2019 17:58
@renovate renovate bot changed the title Update dependency autoprefixer to v9.7.2 Update dependency autoprefixer to v9.7.3 Dec 14, 2019
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 8935513 to 2384f85 Compare January 19, 2020 06:03
@renovate renovate bot changed the title Update dependency autoprefixer to v9.7.3 Update dependency autoprefixer to v9.7.4 Jan 19, 2020
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 2384f85 to e0d4576 Compare April 26, 2020 16:01
@renovate renovate bot changed the title Update dependency autoprefixer to v9.7.4 Update dependency autoprefixer to v9.7.6 Apr 26, 2020
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from e0d4576 to 8bb21fd Compare July 1, 2020 06:00
@renovate renovate bot changed the title Update dependency autoprefixer to v9.7.6 Update dependency autoprefixer to v9.8.4 Jul 1, 2020
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from 8bb21fd to e878749 Compare August 26, 2020 15:58
@renovate renovate bot changed the title Update dependency autoprefixer to v9.8.4 Update dependency autoprefixer to v9.8.6 Aug 26, 2020
@renovate renovate bot changed the title Update dependency autoprefixer to v9.8.6 chore(deps): update dependency autoprefixer to v9.8.6 Oct 28, 2020
@renovate renovate bot force-pushed the renovate/autoprefixer-9.x branch from e878749 to 1e6b603 Compare October 19, 2021 03:00
@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.8.6 chore(deps): update dependency autoprefixer to v9.8.8 Oct 19, 2021
@renovate
Copy link
Author

renovate bot commented Mar 24, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v9.8.8 chore(deps): update dependency autoprefixer to v9.8.8 - abandoned Dec 8, 2024
@renovate
Copy link
Author

renovate bot commented Dec 8, 2024

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

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.

1 participant