Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency autoprefixer to v10 #1536

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 29, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
autoprefixer ^9.0.0 -> ^10.0.0 age adoption passing confidence

Release Notes

postcss/autoprefixer

v10.4.8

Compare Source

  • Do not print color-adjust warning if print-color-adjust also is in rule.

v10.4.7

Compare Source

  • Fixed print-color-adjust support in Firefox.

v10.4.6

Compare Source

  • Fixed print-color-adjust support.

v10.4.5

Compare Source

v10.4.4

Compare Source

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

v10.4.3

Compare Source

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

v10.4.2

Compare Source

  • Fixed missed -webkit- prefix for width: stretch.

v10.4.1

Compare Source

  • Fixed ::file-selector-button data (by Luke Warlow).

v10.4.0

Compare Source

Coat of arms of South Africa

In Autoprefixer 10.4 @​lukewarlow added :autofill support:

input:-webkit-autofill {
  background-color: red;
}

input:autofill {
  background-color: red;
}

v10.3.7

Compare Source

  • Replaced nanocolors to picocolors.

v10.3.6

Compare Source

  • Updated nanocolors.
  • Reduced package size.

v10.3.5

Compare Source

  • Replaced colorette to nanocolors.

v10.3.4

Compare Source

  • Fixed stretch value in latest Firefox.

v10.3.3

Compare Source

  • Fixed wrong -moz- prefix from ::file-selector-button (by Usman Yunusov).

v10.3.2

Compare Source

  • Fixed ::file-selector-button support (by Usman Yunusov).

v10.3.1

Compare Source

  • Fixed adding wrong prefixes to content (by Luke Warlow).

v10.3.0

Compare Source

Pskov, coat of arms

In Autoprefixer 10.3 @​lukewarlow added ::file-selector-button support.

::-webkit-file-upload-button {
  border: 2px solid #​6c5ce7;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #a29bfe;
}

::file-selector-button {
  border: 2px solid #​6c5ce7;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #a29bfe;
}

v10.2.6

Compare Source

v10.2.5

Compare Source

  • Fixed : support in @supports (by Dmitry Semigradsky).
  • Fixed docs (by Christian Oliff).

v10.2.4

Compare Source

  • Fixed browser names in npx autoprefixer --info.

v10.2.3

Compare Source

  • Fixed PostCSS 8 support.

v10.2.2

Compare Source

  • Fixed PostCSS 8 plugins compatibility.

v10.2.1

Compare Source

v10.2.0

Compare Source

Tudor rose

Autoprefixer 10.2 now has built-in TypeScript definitions. You do not need @types/autoprefixer anymore.

Thanks to @​Semigradsky and DefinitelyTyped’s contributors.

@​Sheraff also improved docs.

v10.1.0

Compare Source

Coat of arms of Botswana

Autoprefixer 10.1 improved min-resolution support.

@​infusion added dpcm unit support and num2fraction with Fraction.js, which uses Farey Sequences as a rational approximation (more precise) and simplifies the fraction using continued fractions to ɛ <0.001 afterward.

/* input */
@&#8203;media (min-resolution: 113.38dpcm) {
  …
}

/* output */
@&#8203;media (-webkit-min-device-pixel-ratio: 3),
       (min--moz-device-pixel-ratio: 3),
       (-o-min-device-pixel-ratio: 3/1),
       (min-resolution: 113.38dpcm) {
  …
}

v10.0.4

Compare Source

  • Fixed Cannot read property 'proxyOf' of undefined error (by Igor Kamyshev).

v10.0.3

Compare Source

  • Fixed substract to subtract value for mask-composite (by Michelle Enos).

v10.0.2

Compare Source

  • Removed -ms-user-select: all because IE and old Edge don’t support it.
  • Fixed Grid Layout warning.

v10.0.1

Compare Source

  • Fix PostCSS 8.1 compatability.
  • Add our OpenCollective to package.json.
  • Clean up code (by Sukka).

v10.0.0

Compare Source

Coat of arms of Oregon

Autoprefixer 10 is based on top of PostCSS 8 (check Known Issues section before updating).

Node.js 6.x, 8.x, 11.x support was removed.

Now you need to install Autoprefixer by npm install --save-dev autoprefixer postcss. We moved postcss from dependencies to peerDependencies according to new PostCSS plugin guidelines.

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

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.

v9.6.1

Compare Source

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

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" in timezone America/Vancouver, 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Used by Renovate bot label Mar 29, 2021
@TDSBot
Copy link

TDSBot commented Mar 29, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from a0cd976 to a468f7e Compare April 21, 2021 18:10
@TDSBot
Copy link

TDSBot commented Apr 21, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from a468f7e to 747fbba Compare May 3, 2021 18:17
@TDSBot
Copy link

TDSBot commented May 3, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 747fbba to 42e971d Compare May 7, 2021 15:54
@TDSBot
Copy link

TDSBot commented May 7, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 42e971d to 81df870 Compare May 7, 2021 17:00
@TDSBot
Copy link

TDSBot commented May 7, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 81df870 to c822227 Compare May 10, 2021 16:32
@TDSBot
Copy link

TDSBot commented May 10, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from c822227 to bd9eb15 Compare June 18, 2021 15:25
@TDSBot
Copy link

TDSBot commented Jun 18, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from bd9eb15 to eac4efb Compare June 18, 2021 16:24
@TDSBot
Copy link

TDSBot commented Jun 18, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from eac4efb to 64686b6 Compare June 23, 2021 14:51
@TDSBot
Copy link

TDSBot commented Jun 23, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 64686b6 to 2ad5931 Compare June 23, 2021 15:51
@TDSBot
Copy link

TDSBot commented Jun 23, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 2ad5931 to 4010f58 Compare June 24, 2021 16:46
@TDSBot
Copy link

TDSBot commented Jun 24, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 4010f58 to 1a03ea3 Compare June 24, 2021 17:49
@TDSBot
Copy link

TDSBot commented Jun 24, 2021

Links:

Packages pending updates:

- @tds/core-benefit: 1.0.51 => 1.0.52
- @tds/core-checkbox: 2.0.51 => 2.0.52
- @tds/core-chevron-link: 2.2.9 => 2.2.10
- @tds/core-decorative-icon: 2.9.0 => 2.10.0
- @tds/core-expand-collapse: 2.3.3 => 2.3.4
- @tds/core-select: 3.2.32 => 3.2.33
- @tds/core-step-tracker: 4.0.45 => 4.0.46
- @tds/core-video: 1.3.17 => 1.3.18
- @tds/core-web-video: 1.1.24 => 1.1.25
- @tds/shared-video-splash: 1.1.44 => 1.1.45 (�[31mprivate�[39m)

If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch 2 times, most recently from 7de5354 to 34e3cfc Compare June 24, 2021 20:26
@TDSBot
Copy link

TDSBot commented Jun 24, 2021

Links:

Packages pending updates:

- @tds/core-benefit: 1.0.52 => 1.0.53
- @tds/core-checkbox: 2.0.52 => 2.0.53
- @tds/core-chevron-link: 2.2.10 => 2.2.11
- @tds/core-decorative-icon: 2.10.0 => 2.11.0
- @tds/core-expand-collapse: 2.3.4 => 2.3.5
- @tds/core-select: 3.2.33 => 3.2.34
- @tds/core-step-tracker: 4.0.46 => 4.0.47
- @tds/core-video: 1.3.18 => 1.3.19
- @tds/core-web-video: 1.1.25 => 1.1.26
- @tds/shared-video-splash: 1.1.45 => 1.1.46 (�[31mprivate�[39m)

If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 34e3cfc to 4f2c0f6 Compare June 25, 2021 15:06
@TDSBot
Copy link

TDSBot commented Jun 25, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 4f2c0f6 to 9aff4a6 Compare June 25, 2021 17:05
@TDSBot
Copy link

TDSBot commented Aug 24, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from a5b6072 to 72a08d9 Compare September 9, 2021 18:44
@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 72a08d9 to b9c3748 Compare September 21, 2021 22:38
@TDSBot
Copy link

TDSBot commented Sep 21, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from b9c3748 to e5010b6 Compare September 21, 2021 23:34
@TDSBot
Copy link

TDSBot commented Sep 21, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from e5010b6 to 2222475 Compare October 21, 2021 20:51
@TDSBot
Copy link

TDSBot commented Oct 21, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 2222475 to 989c128 Compare October 21, 2021 21:52
@TDSBot
Copy link

TDSBot commented Oct 21, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 989c128 to e1d0484 Compare November 1, 2021 18:37
@TDSBot
Copy link

TDSBot commented Nov 1, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from e1d0484 to 4d5d6b1 Compare November 1, 2021 19:38
@TDSBot
Copy link

TDSBot commented Nov 1, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 4d5d6b1 to 2af0f6e Compare November 1, 2021 22:34
@TDSBot
Copy link

TDSBot commented Nov 1, 2021

Links:

Packages pending updates:

- @tds/core-tooltip: 4.4.0 => 4.4.1

If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 2af0f6e to e492a16 Compare November 2, 2021 14:24
@TDSBot
Copy link

TDSBot commented Nov 2, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch 2 times, most recently from 6b3cc8a to 6321379 Compare November 23, 2021 18:16
@TDSBot
Copy link

TDSBot commented Nov 23, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 6321379 to 785695d Compare December 1, 2021 13:12
@TDSBot
Copy link

TDSBot commented Dec 1, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 785695d to c1e0204 Compare December 4, 2021 12:40
@TDSBot
Copy link

TDSBot commented Dec 4, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from c1e0204 to 46142d1 Compare December 7, 2021 20:42
@TDSBot
Copy link

TDSBot commented Dec 7, 2021

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 46142d1 to 639f46b Compare August 13, 2022 15:56
@github-actions
Copy link

Links:

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Used by Renovate bot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant