Skip to content
This repository has been archived by the owner on Feb 7, 2022. It is now read-only.

deps(deps): update dependencies-non-major #24

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 26, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
autoprefixer 10.3.4 -> 10.4.2 age adoption passing confidence
p5 1.4.0 -> 1.4.1 age adoption passing confidence
postcss (source) 8.3.6 -> 8.4.6 age adoption passing confidence
react-dropzone 11.3.4 -> 11.7.1 age adoption passing confidence
tailwindcss (source) 2.2.15 -> 2.2.19 age adoption passing confidence

Release Notes

postcss/autoprefixer

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.
processing/p5.js

v1.4.1

Compare Source

What's Changed 🎉
New Contributors 💗

Full Changelog: processing/p5.js@v1.4.0...v1.4.1

postcss/postcss

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 this.css.replace is not a function error.

v8.4.2

Compare Source

  • Fixed previous source map support in zero plugins mode.

v8.4.1

Compare Source

  • Fixed Stringifier types (by James Garbutt).

v8.4.0

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

v8.3.11

Compare Source

  • Remove debugging code.

v8.3.10

Compare Source

  • Fixed Maximum call stack issue of some source maps (by Yeting Li).

v8.3.9

Compare Source

  • Replaced nanocolors to picocolors.
  • Reduced package size.

v8.3.8

Compare Source

  • Update nanocolors.

v8.3.7

Compare Source

  • Replaced colorette to nanocolors.
  • Added bug field to package.json (by Christian Oliff).
  • Improved docs (by Andrew Bruce and Paul Shryock).
react-dropzone/react-dropzone

v11.7.1

Compare Source

Bug Fixes
  • disable file system access API usage by default and close #​1131 (15dd32f)

v11.7.0

Compare Source

Features
  • set role attr to button by default on the root and close #​1110 (207282b)

v11.6.0

Compare Source

Features

v11.5.3

Compare Source

Bug Fixes
  • fix minor grammatical mistake in file size error (ab4359f)

v11.5.2

Compare Source

Bug Fixes
  • remove doka/pintura source files (60f6ef0)

v11.5.1

Compare Source

Bug Fixes
  • declare the package as side effect free (199556b)

v11.5.0

Compare Source

Features
  • add onFileDialogOpen callback (d50c578)

v11.4.2

Compare Source

Bug Fixes
  • re-export ErrorCode from './utils' (2e83d35)

v11.4.1

Compare Source

Bug Fixes

v11.4.0

Compare Source

Features
  • ts: export the error codes as an enum (58abc82)

v11.3.5

Compare Source

Bug Fixes
  • ignore the vendor dir to avoid licensing issues (7447fd2)
tailwindlabs/tailwindcss

v2.2.19

Compare Source

Fixed
  • Ensure corePlugins order is consisent in AOT mode (#​5928)

v2.2.18

Compare Source

Fixed
  • Bump versions for security vulnerabilities (#​5924)

v2.2.17

Compare Source

Fixed
  • Configure chokidar's awaitWriteFinish setting to avoid occasional stale builds on Windows (#​5758)

v2.2.16

Compare Source

Fixed
  • JIT: Properly handle animations that use CSS custom properties (#​5602)

Configuration

📅 Schedule: "every 2 weeks on Monday before 7am" in timezone Europe/Berlin.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot requested a review from vogelino as a code owner September 26, 2021 22:35
@vercel
Copy link

vercel bot commented Sep 26, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/technologiestiftung/digital-vereint-social-pic-maker/98KhvQY1gPM5dsjQatWGUmVhLj22
✅ Preview: https://digital-vereint-social-pic-make-git-3c89f3-technologiestiftung1.vercel.app

@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from d054b9a to 992279e Compare October 4, 2021 20:34
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 992279e to f63c8d6 Compare October 13, 2021 18:18
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from f63c8d6 to 803d002 Compare October 20, 2021 19:51
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 803d002 to 7103e1e Compare October 21, 2021 14:01
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 7103e1e to 4916d04 Compare October 28, 2021 11:29
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 4916d04 to 4d29342 Compare October 29, 2021 10:05
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 4d29342 to 6976f0a Compare October 29, 2021 13:41
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 6976f0a to 08e1c62 Compare November 24, 2021 14:01
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 08e1c62 to 5decdd1 Compare November 24, 2021 23:36
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 5decdd1 to c3dfb38 Compare November 26, 2021 21:41
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from c3dfb38 to 562ee8f Compare November 27, 2021 16:38
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 562ee8f to 15e8b13 Compare December 4, 2021 22:09
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 15e8b13 to dfc63a4 Compare December 13, 2021 02:35
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from dfc63a4 to 0900f26 Compare December 29, 2021 17:19
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant