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 #327

Merged
merged 1 commit into from
Aug 3, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 10, 2022

Mend Renovate

This PR contains the following updates:

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

Release Notes

postcss/autoprefixer (autoprefixer)

v10.4.14

Compare Source

  • Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).

v10.4.13

Compare Source

  • Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.

v10.4.12

Compare Source

  • Fixed support of unit-less zero angle in backgrounds (by 一丝).

v10.4.11

Compare Source

  • Fixed text-decoration prefixes by moving to MDN data (by Romain Menke).

v10.4.10

Compare Source

  • Fixed unicode-bidi prefixes by moving to MDN data.

v10.4.9

Compare Source

  • Fixed css-unicode-bidi issue from latest Can I Use.

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

  • Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).

v10.4.0: 10.4 “ǃke e꞉ ǀxarra ǁke”

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: 10.3 “Чести своей не отдам никому”

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: 10.2 “Sub rosa”

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: 10.1 “Pula”

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: 10.0 “Alis volat propriis”

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.

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 added the renovate label Jan 10, 2022
@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 941706c to 704d858 Compare February 16, 2022 03:37
@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 704d858 to 568c9c3 Compare July 11, 2022 01:40
@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 568c9c3 to c3a0361 Compare July 25, 2022 08:09
@github-actions
Copy link
Contributor

Visit the preview URL for this PR (updated for commit c3a0361):

https://ameba-spindle--pr327-renovate-autoprefixe-3lrwbo5d.web.app

(expires Wed, 24 Aug 2022 08:23:51 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

@reg-suit
Copy link

reg-suit bot commented Jul 25, 2022

reg-suit detected visual differences.

Check this report, and review them.

⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪

What do the circles mean? The number of circles represent the number of changed images.
🔴 : Changed items, ⚪ : New items, ⚫ : Deleted items, and 🔵 Passed items

How can I change the check status? If reviewers approve this PR, the reg context status will be green automatically.

@renovate renovate bot changed the title chore(deps): update dependency autoprefixer to v10 Update dependency autoprefixer to v10 Dec 17, 2022
@renovate renovate bot changed the title Update dependency autoprefixer to v10 chore(deps): update dependency autoprefixer to v10 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from c3a0361 to 88fa7ae Compare December 28, 2022 09:49
@github-actions
Copy link
Contributor

github-actions bot commented Dec 28, 2022

Visit the preview URL for this PR (updated for commit d366ef7):

https://ameba-spindle--pr327-renovate-autoprefixe-1jrtdq7i.web.app

(expires Sat, 02 Sep 2023 02:47:30 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Sign: e7521619a2dd5c653490c8246e81ec2a5c8f1435

@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 88fa7ae to 7aa883d Compare January 10, 2023 07:55
@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch 2 times, most recently from a36d70c to 5ab00e4 Compare July 18, 2023 04:24
@tokimari
Copy link
Contributor

tokimari commented Aug 3, 2023

Error: PostCSS plugin autoprefixer requires PostCSS 8.
Migration guide for end-users:
https://github.com/postcss/postcss/wiki/PostCSS-8-for-end-users
at Processor.normalize (/home/runner/work/spindle/spindle/node_modules/postcss/lib/processor.js:153:15)
at new Processor (/home/runner/work/spindle/spindle/node_modules/postcss/lib/processor.js:56:25)
at postcss (/home/runner/work/spindle/spindle/node_modules/postcss/lib/postcss.js:55:10)
at /home/runner/work/spindle/spindle/node_modules/postcss-cli/index.js:216:14
at async Promise.all (index 0)
https://github.com/openameba/spindle/actions/runs/5583304243/job/15120251287?pr=327#step:7:310

これも#273 (comment) かな、#273の後で確認します

@tokimari tokimari self-assigned this Aug 3, 2023
@renovate renovate bot force-pushed the renovate/autoprefixer-10.x branch from 5ab00e4 to d366ef7 Compare August 3, 2023 02:25
Copy link
Contributor

@tokimari tokimari left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:yoshi:

@tokimari tokimari merged commit 94090da into main Aug 3, 2023
11 checks passed
@tokimari tokimari deleted the renovate/autoprefixer-10.x branch August 3, 2023 03:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants