chore(deps): update [dev] minor and patch dependencies for gatsby-plugin-image #443
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^7.1.12
->^7.20.5
^7.11.1
->^7.20.6
^14.10.2
->^14.18.63
^15.7.3
->^15.7.13
^17.0.40
->^17.0.83
^17.0.13
->^17.0.25
^4.1.10
->^4.1.11
^3.0.18
->^3.1.1
^0.15.0
->^0.15.1
^8.2.9
->^8.4.49
^5.3.8
->^5.36.0
Release Notes
cssnano/cssnano (cssnano)
v4.1.11
Compare Source
4.1.11
Bug Fixes
developit/microbundle (microbundle)
v0.15.1
Compare Source
Patch Changes
cebafa1
#961 Thanks @zyrong! - Fix for when multiple entries reference different CSS, only the CSS referenced by the first entry will be packaged9a4e2b2
#954 Thanks @rschristian! - Bumps Node target to v124ad4b76
#967 Thanks @agilgur5! - deps: upgrade rpt2 to latest v0.32.0 to fix monorepos6018e58
#956 Thanks @rschristian! - Silences warnings when using Node builtins with the 'node:...' protocol on imports. Warnings related to bare usage of these builtins were already silenced.88241dd
#968 Thanks @PeterBurner! - deps: upgrade babel-plugin-transform-async-to-promises to latest v0.8.18 to fix #565e72377a
#964 Thanks @rschristian! - Fixes filename generation for es & modern outputs. Both 'jsnext:main' and 'esmodule' were incorrectly ignored.postcss/postcss (postcss)
v8.4.49
Compare Source
source.offset
(by @romainmenke).v8.4.48
Compare Source
v8.4.47
Compare Source
v8.4.46
Compare Source
Cannot read properties of undefined (reading 'before')
.v8.4.45
Compare Source
v8.4.44
Compare Source
markClean is not a function
error.v8.4.43
Compare Source
markClean is not a function
error.v8.4.42
Compare Source
v8.4.41
Compare Source
v8.4.40
Compare Source
v8.4.39
Compare Source
CssSyntaxError
types (by @romainmenke).v8.4.38
Compare Source
endIndex: 0
in errors and warnings (by @romainmenke).v8.4.37
Compare Source
original.column are not numbers
error in another case.v8.4.36
Compare Source
original.column are not numbers
error on broken previous source map.v8.4.35
Compare Source
!
innode.parent.nodes
type.undefined
to node adding method to simplify types.v8.4.34
Compare Source
AtRule#nodes
type (by Tim Weißenfels).v8.4.33
Compare Source
NoWorkResult
behavior difference with normal mode (by Romain Menke).NoWorkResult
usage conditions (by @ahmdammarr).v8.4.32
Compare Source
postcss().process()
types (by Andrew Ferreira).v8.4.31
Compare Source
\r
parsing to fix CVE-2023-44270.v8.4.30
Compare Source
v8.4.29
Compare Source
Node#source.offset
(by Ido Rosenthal).v8.4.28
Compare Source
Root.source.end
for better source map (by Romain Menke).Result.root
types whenprocess()
has no parser.v8.4.27
Compare Source
Container
clone methods types.v8.4.26
Compare Source
v8.4.25
Compare Source
v8.4.24
Compare Source
Plugin
types.v8.4.23
Compare Source
v8.4.22
Compare Source
node16
(by Remco Haszing).v8.4.21
Compare Source
Input#error
types (by Aleks Hudochenkov).v8.4.20
Compare Source
@layer
.v8.4.19
Compare Source
v8.4.18
Compare Source
absolute: true
with emptysourceContent
(by Rene Haas).v8.4.17
Compare Source
Node.before()
unexpected behavior (by Romain Menke).v8.4.16
Compare Source
Root
AST migration.v8.4.15
Compare Source
v8.4.14
Compare Source
v8.4.13
Compare Source
append()
error after using.parent
(by Jordan Pittman).v8.4.12
Compare Source
package.funding
to have same value between all PostCSS packages.v8.4.11
Compare Source
Declaration#raws.value
type.v8.4.10
Compare Source
package.funding
URL format.v8.4.9
Compare Source
package.funding
(by Álvaro Mondéjar).v8.4.8
Compare Source
v8.4.7
Compare Source
Node#warn()
type (by Masafumi Koba).,
.v8.4.6
Compare Source
.root
access for plugin-less case.v8.4.5
Compare Source
raws
types to make object extendable (by James Garbutt).v8.4.4
Compare Source
v8.4.3
Compare Source
this.css.replace is not a function
error.v8.4.2
Compare Source
Node#source.offset
(by Ido Rosenthal).v8.4.1
Compare Source
v8.4.0
: 8.4 “President Camio”Compare Source
PostCSS 8.4 brought ranges for warnings and errors, smaller
node_modules
size, lazy parsing to avoidPostCSS does nothing
warning, and TypeScript fixes.Thanks to Sponsors
This release was possible thanks to our community.
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.
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 thePostCSS does nothing
warning.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 thepostcss
size in yournode_modules
from ≈1 MB to 0.3 MB. With the huge popularity of PostCSS, it will free a lot of resources on our CIs.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
Processor
types.Stringifier
types (by @43081j).Root
andDocument
in result values (by @43081j).Node#walkRules()
types (by @hudochenkov).Other Changes
terser/terser (terser)
v5.36.0
Compare Source
with
syntaxv5.35.0
Compare Source
v5.34.1
Compare Source
v5.34.0
Compare Source
drop_console
: emit an empty function if the return value ofconsole.METHOD(...)
may be called.v5.33.0
Compare Source
reduce_vars
improved when dealing with hoisted function definitions (#1544)v5.32.0
Compare Source
import("module")
can now be input and output from ESTree AST (#1557)BigInt
literals can now be input and output from ESTree AST (#1555)typeof
an object or array (typeof {}
andtypeof []
) can now be statically evaluated. (#1546)v5.31.6
Compare Source
case
when the expression is a sequence (comma) expressionv5.31.5
Compare Source
v5.31.4
Compare Source
extends
partv5.31.3
Compare Source
v5.31.2
Compare Source
v5.31.1
Compare Source
v5.31.0
Compare Source
...spreads
in objects (#1141)v5.30.4
Compare Source
#private in ...
when next to other operatorsv5.30.3
Compare Source
#private in ...
operatorv5.30.2
Compare Source
v5.30.1
Compare Source
\
escapes for non-ascii charactersv5.30.0
Compare Source
v5.29.2
Compare Source
v5.29.1
Compare Source
v5.29.0
Compare Source
v5.28.1
Compare Source
(hotfix release)
v5.28.0
Compare Source
|
,^
,&
,>>
,<<
)BigInt
math operationsv5.27.2
Compare Source
this
as a reference to the surrounding class indrop_unused
. Closes #1472v5.27.1
Compare Source
collapse_vars
inlinesawait
expressions into non-async functions.v5.27.0
Compare Source
minify_sync()
alternative tominify()
since there's no async code left.v5.26.0
Compare Source
/*#__PURE__*/
annotation into account when theside_effects
compress option is off.preserve_annotations
option now automatically opts annotation comments in, instead of requiring thecomments
option to be configured for this.()
)v5.25.0
Compare Source
pure_new
option added to drop unusednew
expressions.v5.24.0
Compare Source
v5.23.0
Compare Source
static {}
blocks.v5.22.0
Compare Source
unsafe
ly shorten expressions like a?.toString() when they're conditional.v5.21.0
Compare Source
v5.20.0
Compare Source
minify()
zero files will now throw a clean exception (#1450)drop_console
supports passing in an array ofconsole.*
method names (#1445)v5.19.4
Compare Source
if..return
v5.19.3
Compare Source
optional?.chains
.v5.19.2
Compare Source
v5.19.1
Compare Source
</script>
and HTML comments.async
orstatic
v5.19.0
Compare Source
/*@​__MANGLE_PROP__*/
annotation inobject.property
, in addition to property declarations.v5.18.2
Compare Source
v5.18.1
Compare Source
v5.18.0
Compare Source
/*@​__MANGLE_PROP__*/
annotation, to mark properties that should be mangled.v5.17.7
Compare Source
v
RegExp flaginert
DOM attribute to dompropsv5.17.6
Compare Source
configurable
andenumerable
, used in Object.defineProperty, added to domprops (#1393)v5.17.5
Compare Source
v5.17.4
Compare Source
!class{}
)yield
/await
and its argumentv5.17.3
Compare Source
this
.v5.17.2
Compare Source
var
in hoisted functions.continue
statementv5.17.1
Compare Source
.length
when the source array might've been mutatedv5.17.0
Compare Source
= undefined
default argument in IIFE calls (#1366).length
property when statically determinable@__KEY__
annotation to mangle string literals (#1365)v5.16.9
Compare Source
a?.b
) (#1374)lhs_constants
option, allowing to stop Terser from swapping comparison operands (#1361)v5.16.8
Compare Source
reduce_vars
import.meta
expressions such that method calls are allowedv5.16.6
Compare Source
reduce_vars
import.meta
as a real AST node and not anobject.property
v5.16.5
Compare Source
v5.16.4
Compare Source
(defaultArg = undefined) => ...
, because default args don't count for function length?.
optional chainscatch
andfinally
aren't children oftry
in the AST\p{...}
) to parse identifiers when availablev5.16.3
Compare Source
v5.16.2
Compare Source
let
out offor
initializers, as it can change scopingif (something) let x
("let" in braceless if body)asObject
sourcemap option to typescript defs (#1321)v5.16.1
Compare Source
const { [reference]: val } = ...
).#privatefield
in nested classescollapse_vars
handle block scope correctlyv5.16.0
Compare Source
#privatefield in object
(#1279)#privatefield in object
v5.15.1
Compare Source
let
orconst
as the bodies ofif
statements (#1253)!==
classes.v5.15.0
Compare Source
AudioWorkletNode
constructor options to domprops list (#1230)id(...expandedArgs)
Configuration
📅 Schedule: Branch creation - "before 7am on the first day of the month" in timezone GMT, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.
This PR was generated by Mend Renovate. View the repository job log.