Update all dependencies #13
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/all"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
10.4.5->10.4.138.4.12->8.4.182.6.2->2.7.10.1.10->0.1.131.50.1->1.55.03.0.24->3.2.18.3.2->9.0.0Release Notes
postcss/autoprefixer
v10.4.13Compare Source
v10.4.12Compare Source
v10.4.11Compare Source
text-decorationprefixes by moving to MDN data (by Romain Menke).v10.4.10Compare Source
unicode-bidiprefixes by moving to MDN data.v10.4.9Compare Source
css-unicode-bidiissue from latest Can I Use.v10.4.8Compare Source
color-adjustwarning ifprint-color-adjustalso is in rule.v10.4.7Compare Source
print-color-adjustsupport in Firefox.v10.4.6Compare Source
print-color-adjustsupport.postcss/postcss
v8.4.18Compare Source
absolute: truewith emptysourceContent(by Rene Haas).v8.4.17Compare Source
Node.before()unexpected behavior (by Romain Menke).v8.4.16Compare Source
RootAST migration.v8.4.15Compare Source
v8.4.14Compare Source
v8.4.13Compare Source
append()error after using.parent(by Jordan Pittman).prettier/prettier
v2.7.1Compare Source
diff
Keep useful empty lines in description (#13013 by @chimurai)
v2.7.0Compare Source
"""
First line
Second Line
"""
type Person {
name: String
}
tailwindlabs/prettier-plugin-tailwindcss
v0.1.13Compare Source
Fixed
v0.1.12Compare Source
Added
v0.1.11Compare Source
Changed
prettier-plugin-sveltetov2.7.0(#77)Fixed
:elseblocks (#79)sass/dart-sass
v1.55.0Compare Source
Potentially breaking bug fix: Sass numbers are now universally stored as
64-bit floating-point numbers, rather than sometimes being stored as integers.
This will generally make arithmetic with very large numbers more reliable and
more consistent across platforms, but it does mean that numbers between nine
quadrillion and nine quintillion will no longer be represented with full
accuracy when compiling Sass on the Dart VM.
Potentially breaking bug fix: Sass equality is now properly transitive.
Two numbers are now considered equal (after doing unit conversions) if they
round to the same
1e-11th. Previously, numbers were considered equal if theywere within
1e-11of one another, which led to some circumstances where$a == $band$b == $cbut$a != $b.Potentially breaking bug fix: Various functions in
sass:mathno longertreat floating-point numbers that are very close (but not identical) to
integers as integers. Instead, these functions now follow the floating-point
specification exactly. For example,
math.pow(0.000000000001, -1)now returns1000000000000instead ofInfinity.Emit a deprecation warning for
$a -$band$a +$b, since these look likethey could be unary operations but they're actually parsed as binary
operations. Either explicitly write
$a - $bor$a (-$b). Seehttps://sass-lang.com/d/strict-unary for more details.
Dart API
Add an optional
argumentNameparameter toSassScriptException()to make iteasier to throw exceptions associated with particular argument names.
Most APIs that previously returned
numnow returndouble. All APIscontinue to accept
num, although in Dart 2.0.0 these APIs will be changedto accept only
double.JS API
accessible by the JS API.
v1.54.9Compare Source
@mediaquery deprecation warnings.v1.54.8Compare Source
v1.54.7Compare Source
v1.54.6Compare Source
@mediaquery could be incorrectly omitted from astylesheet if it had multiple levels of nested
@mediaqueries within itand the inner queries were mergeable but the outer query was not.
v1.54.5Compare Source
Properly consider
a ~ cto be a superselector ofa ~ b ~ canda + b + c.Properly consider
b > cto be a superselector ofa > b > c, and similarlyfor other combinators.
Properly calculate specificity for selector pseudoclasses.
Deprecate use of
random()when$limithas units to make it explicit thatrandom()currently ignores units. A future version will no longer ignoreunits.
Don't throw an error when the same module is
@forwarded multiple timesthrough a configured module.
Embedded Sass
install, the
sass-embeddednpm package now declares optional dependencies onplatform-specific embedded compiler packages.
v1.54.4Compare Source
out-of-bounds to various color functions.
v1.54.3Compare Source
v1.54.2Compare Source
v1.54.1Compare Source
@extendandselector.unify(), ensure that:root,:scope,:host, and:host-contextonly appear at the beginningof complex selectors.
v1.54.0Compare Source
Deprecate selectors with leading or trailing combinators, or with multiple
combinators in a row. If they're included in style rules after nesting is
resolved, Sass will now produce a deprecation warning and, in most cases, omit
the selector. Leading and trailing combinators can still be freely used for
nesting purposes.
See https://sass-lang.com/d/bogus-combinators for more details.
Add partial support for new media query syntax from Media Queries Level 4. The
only exception are logical operations nested within parentheses, as these were
previously interpreted differently as SassScript expressions.
A parenthesized media condition that begins with
notor an openingparenthesis now produces a deprecation warning. In a future release, these
will be interpreted as plain CSS instead.
Deprecate passing non-
degunits tocolor.hwb()'s$hueargument.Fix a number of bugs when determining whether selectors with pseudo-elements
are superselectors.
Treat
*as a superselector of all selectors.Dart API
fakeFromImport()function for testing custom importersthat use
AsyncImporter.fromImport.JS API
Add a
charsetoption that controls whether or not Sass emits a@charset/BOM for non-ASCII stylesheets.Fix Sass npm package types for TS 4.7+ Node16 and NodeNext module resolution.
v1.53.0Compare Source
var()with an empty second argument, such asvar(--side, ).JS API
meta.load-css()would sometimes resolve relative URLsincorrectly when called from a mixin using the legacy JS API.
Embedded Sass
v1.52.3Compare Source
/* ... */) appear twice in a rowacross two different imports which themselves imported the same file each.
v1.52.2Compare Source
/* ... */) instead of pushingthe comment to the next line.
v1.52.1Compare Source
Command Line Interface
--watchmode would close immediately in TTY mode. This wascaused by our change to close
--watchwhen stdin was closed outside of TTYmode, which has been reverted for now while we work on a fix.
v1.52.0Compare Source
Add support for arbitrary modifiers at the end of plain CSS imports, in
addition to the existing
supports()and media queries. Sass now allows anysequence of identifiers of functions after the URL of an import for forwards
compatibility with future additions to the CSS spec.
Fix an issue where source locations tracked through variable references could
potentially become incorrect.
Fix a bug where a loud comment in the source can break the source map when
embedding the sources, when using the command-line interface or the legacy JS
API.
JS API
SassNumber.assertUnit()andSassNumber.assertNoUnits()now correctlyreturn the number called on when it passes the assertion.
v1.51.0Compare Source
Potentially breaking change: Change the order of maps returned by
map.deep-merge()to match those returned bymap.merge(). All keys thatappeared in the first map will now be listed first in the same order they
appeared in that map, followed by any new keys added from the second map.
Improve the string output of some AST nodes in error messages.
tailwindlabs/tailwindcss
v3.2.1Compare Source
Fixed
supportsin types (#9616)micromatchis a proper CLI dependency (#9620)modifiersobject formatchVariant(ba6551db0f2726461371b4f3c6cd4c7090888504)v3.2.0Compare Source
Added
@configdirective (#9405)relative: trueoption to resolve content paths relative to the config file (#9396)supports-*variant (#9453)min-*andmax-*variants (#9558)aria-*variants (#9557, #9588)data-*variants (#9559, #9588)break-keeputility forword-break: keep-all(#9393)collapseutility forvisibility: collapse(#9181)fill-noneutility forfill: none(#9403)stroke-noneutility forstroke: none(#9403)place-content-baselineutility forplace-content: baseline(#9498)place-items-baselineutility forplace-items: baseline(#9507)content-baselineutility foralign-content: baseline(#9507)font-feature-settingsfor a font family (#9039)node16-linux-armv7) (#9084)outline-offset(#9136)matchUtilities(#9541)min/max/clamp(#9237)sortfunction inmatchVariant(#9423)postcss-nestedv6.0 (#9546)Fixed
respectDefaultRingColorOpacity(#9070)@apply-ing a selector with joined classes (#9107)outline-hiddenutility (#9147)hiddenattribute on elements in preflight (#9174)fontFamilyconfig TypeScript types (#9214):where()and:has()(#9309)nullorundefined) when resolving the classList for intellisense (#9385)contentkey in custom plugin configs (#9502, #9545)--contentis used in the CLI when passed (#9587)v3.1.8Compare Source
Fixed
@applyof user utilities when negative and non-negative versions both exist (#9027)v3.1.7Compare Source
Fixed
@layerrules (#8971)Added
resolveConfig(#8924)v3.1.6Compare Source
Fixed
theme()in CSS (#8831)v3.1.5Compare Source
Added
font-weightfor each font size utility (#8763)Fixed
tailwindcssandautoprefixerinpostcss.config.jsin standalone CLI (#8769)v3.1.4Compare Source
Fixed
<alpha-value>when usingtheme()(#8652)/that are preceded by numbers (#8688)v3.1.3Compare Source
Fixed
corePluginListtype definition (#8587)addVariant(#8608)theme()function when using quotes (#8625)::marker(#8622)v3.1.2Compare Source
Fixed
\is a valid arbitrary variant token (#8576)postcss-importin the CLI by default in watch mode (#8574, #8580)v3.1.1Compare Source
Fixed
::backdropinto separate defaults group (#8567)v3.1.0Compare Source
Fixed
@apply(#8125)@applyrules (#8213)[hidden]style in preflight (#8248)importantselector to the front when@apply-ing selector-modifying variants in custom utilities (#8313)matchVariantthat use at-rules and placeholders (#8392)tailwindcss/plugin(#8400)addVariantormatchVariantcallback functions (#8455)postcssinstallation first in the CLI (#8270)tovalue from parent gradients (#8489)@import 'tailwindcss/...'without node_modules (#8537)Changed
Added
Documentnodes (#7291)text-startandtext-endutilities (#6656)darkMode: 'class'(#5800)--polloption to the CLI (#7725)border-spacingutilities (#7102)enabledvariant (#7905)tailwind.config.jsfile (#7891)backdropvariant (#7924, #8526)grid-flow-denseutility (#8193)mix-blend-plus-lighterutility (#8288)matchVariantAPI (#8310, 34fd0fb8)prefers-contrastmedia query variants (#8410)themefunction (#8416)postcss-importsupport to the CLI (#8437)optionalvariant (#8486)<alpha-value>placeholder support for custom colors (#8501)uuidjs/uuid
v9.0.0Compare Source
⚠ BREAKING CHANGES
Drop Node.js 10.x support. This library always aims at supporting one EOLed LTS release which by this time now is 12.x which has reached EOL 30 Apr 2022.
Remove the minified UMD build from the package.
Minified code is hard to audit and since this is a widely used library it seems more appropriate nowadays to optimize for auditability than to ship a legacy module format that, at best, serves educational purposes nowadays.
For production browser use cases, users should be using a bundler. For educational purposes, today's online sandboxes like replit.com offer convenient ways to load npm modules, so the use case for UMD through repos like UNPKG or jsDelivr has largely vanished.
Drop IE 11 and Safari 10 support. Drop support for browsers that don't correctly implement const/let and default arguments, and no longer transpile the browser build to ES2015.
This also removes the fallback on msCrypto instead of the crypto API.
Browser tests are run in the first supported version of each supported browser and in the latest (as of this commit) version available on Browserstack.
Features
Bug Fixes
build
drop Node.js 8.x from babel transpile target (#603) (aa11485)
drop support for legacy browsers (IE11, Safari 10) (#604) (0f433e5)
drop node 10.x to upgrade dev dependencies (#653) (28a5712), closes #643
8.3.2 (2020-12-08)
Bug Fixes
8.3.1 (2020-10-04)
Bug Fixes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled due to failing status checks.
♻ 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.
This PR has been generated by Renovate Bot.
a7625acc85to6febe53adb6febe53adbtoeb8cf086de