To install Sass 1.79.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
Update the $channel parameter in the suggested replacement for color.red(), color.green(), color.blue(), color.hue(), color.saturation(), color.lightness(), color.whiteness(), and color.blackness() to use a quoted string.
To install Sass 1.79.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
Add a $space parameter to the suggested replacement for color.red(), color.green(), color.blue(), color.hue(), color.saturation(), color.lightness(), color.whiteness(), and color.blackness().
Update deprecation warnings for the legacy JS API to include a link to relevant documentation.
Update the $channel parameter in the suggested replacement for
color.red(), color.green(), color.blue(), color.hue(),
color.saturation(), color.lightness(), color.whiteness(), and
color.blackness() to use a quoted string.
1.79.2
Add a $space parameter to the suggested replacement for color.red(),
color.green(), color.blue(), color.hue(), color.saturation(),
color.lightness(), color.whiteness(), and color.blackness().
Update deprecation warnings for the legacy JS API to include a link to
relevant documentation.
1.79.1
No user-visible changes.
1.79.0
Breaking change: Passing a number with unit % to the $alpha parameter
of color.change(), color.adjust(), change-color(), and adjust-color()
is now interpreted as a percentage, instead of ignoring the unit. For example,
color.change(red, $alpha: 50%) now returns rgb(255 0 0 / 0.5).
Potentially breaking compatibility fix: Sass no longer rounds RGB channels
to the nearest integer. This means that, for example, rgb(0 0 1) != rgb(0 0 0.6). This matches the latest version of the CSS spec and browser behavior.
Potentially breaking compatibility fix: Passing large positive or negative
values to color.adjust() can now cause a color's channels to go outside that
color's gamut. In most cases this will currently be clipped by the browser and
end up showing the same color as before, but once browsers implement gamut
mapping it may produce a different result.
Add support for CSS Color Level 4 [color spaces]. Each color value now tracks
its color space along with the values of each channel in that color space.
There are two general principles to keep in mind when dealing with new color
spaces:
With the exception of legacy color spaces (rgb, hsl, and hwb), colors
will always be emitted in the color space they were defined in unless
they're explicitly converted.
The color.to-space() function is the only way to convert a color to
another color space. Some built-in functions may do operations in a
... (truncated)
Commits
b85ef9c Quote $channel in channel function replacement suggestions (#2361)
fa4827f Add documentation link to legacy-js-api warning (#2355)
7c3f5e2 Add a $space parameter to the channel function deprecation (#2354)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Bumps the patch-minor group with 9 updates:
0.11.0
0.11.1
1.47.1
1.47.2
3.2.4
3.2.5
5.4.3
5.4.4
2.5.27
2.5.28
25.0.0
25.0.1
1.78.0
1.79.3
2.18.1
2.19.0
5.4.5
5.4.7
Updates
satori
from 0.11.0 to 0.11.1Release notes
Sourced from satori's releases.
Commits
c55e4da
fix: clipping behavior of children with transform (#635)Updates
@playwright/test
from 1.47.1 to 1.47.2Release notes
Sourced from
@playwright/test
's releases.Commits
d93029f
chore: mark v1.47.2 (#32729)0c6217a
cherry-pick(#32699): fix(codegen): use content_frame property in pythonf96b487
cherry-pick(#32714): fix(test runner): page.pause() should enable debug mode ...937424f
cherry-pick(#32661): fix(trace-viewer): time delta between local and … (#32663)Updates
@sveltejs/adapter-auto
from 3.2.4 to 3.2.5Release notes
Sourced from
@sveltejs/adapter-auto
's releases.Changelog
Sourced from
@sveltejs/adapter-auto
's changelog.Commits
f8d06f5
Version Packages (#12681)e798ef7
fix: addnode:
prefix and import instead of using globals (#12641)5d1ce18
chore: upgrade to svelte-check 4 (#12646)Updates
@sveltejs/adapter-vercel
from 5.4.3 to 5.4.4Release notes
Sourced from
@sveltejs/adapter-vercel
's releases.Changelog
Sourced from
@sveltejs/adapter-vercel
's changelog.Commits
f8d06f5
Version Packages (#12681)e798ef7
fix: addnode:
prefix and import instead of using globals (#12641)5d1ce18
chore: upgrade to svelte-check 4 (#12646)Updates
@sveltejs/kit
from 2.5.27 to 2.5.28Release notes
Sourced from
@sveltejs/kit
's releases.Changelog
Sourced from
@sveltejs/kit
's changelog.Commits
f8d06f5
Version Packages (#12681)e798ef7
fix: addnode:
prefix and import instead of using globals (#12641)Updates
jsdom
from 25.0.0 to 25.0.1Release notes
Sourced from jsdom's releases.
Changelog
Sourced from jsdom's changelog.
Commits
04541b3
Version 25.0.196bd111
Update dependencies and dev dependenciesd08440c
Upgrade tough-cookie to v5.0.0Updates
sass
from 1.78.0 to 1.79.3Release notes
Sourced from sass's releases.
Changelog
Sourced from sass's changelog.
... (truncated)
Commits
b85ef9c
Quote$channel
in channel function replacement suggestions (#2361)fa4827f
Add documentation link to legacy-js-api warning (#2355)7c3f5e2
Add a$space
parameter to the channel function deprecation (#2354)5fa04d3
Fix sass-parser publishing (#2349)d740d02
Emit deprecation warnings for the legacy JS API (#2343)a957eea
Bump chokidar to v4 (#2347)aa35aa2
Bump bufbuild/buf-setup-action in /.github/util/initialize (#2346)f826ed2
Stop emittingmixed-decls
in a bunch of unnecessary cases (#2342)2f0d0da
Merge pull request #2341 from sass/feature.color-4de181d9
Poke CIUpdates
sveltekit-superforms
from 2.18.1 to 2.19.0Release notes
Sourced from sveltekit-superforms's releases.
Changelog
Sourced from sveltekit-superforms's changelog.
Commits
9cbf06f
2.19.049dc12d
2.19.0 changelog and readme update.5668961
Updating the same variable to the same value prevented onChange.5c1dafc
Svelte 5 compatibility fix for testfa3800c
Changelog1fc9912
Error status for event exceptions fixed.abcd34c
WIP: Exception handling for events work, but need correct status.5639f14
Schema fixes for Arktyped2d7501
Arktype schema type fix995a5fc
ChangelogUpdates
vite
from 5.4.5 to 5.4.7Changelog
Sourced from vite's changelog.
Commits
a403e73
release: v5.4.7b5908a2
fix: treat config file as ESM in Deno (#18158)f969176
release: v5.4.6179b177
fix: avoid DOM Clobbering gadget ingetRelativeUrlFromDocument
(#18115)6820bb3
fix: fs raw query (#18112)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show