sasso 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/Cargo.lock +3 -3
- data/README.md +11 -0
- data/ext/sasso/Cargo.toml +1 -1
- data/lib/sasso/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa45441798e60123ce88d6ca1192da1dc4d91ee5596a16ef0fb4fb62eaa8e18c
|
|
4
|
+
data.tar.gz: fb9dca01c7298e684c63665f6f1d0846af4d0d8647b6eedb7562a4dedc58e312
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93e47fce10188e49412daeaab413365aa21ceb4999ab9d6514c51f783f214c88094e139966da015ec6a4d8e3452b22b3a26b6b6cbb505cf8a0a7b735ba6f3678
|
|
7
|
+
data.tar.gz: 6cf49194173aac55935efdd10ffb4fe49ced5d20ab9ba4885829a47aab283f1c22e84f47758f978897e442c44d6b973090ca9aaacc19fbfd6f52af07e1258ca9
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,21 @@ notes the exact core crate version it pins.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.2.3] - 2026-06-15
|
|
12
|
+
|
|
13
|
+
Adopts core crate **v0.5.3**.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Via core v0.5.3: a `!default` assignment no longer evaluates its right-hand
|
|
18
|
+
side when the variable already holds a non-null value (dart-sass
|
|
19
|
+
short-circuits first), fixing a spurious "incompatible units" error in
|
|
20
|
+
Bootstrap-on-Shopware setups.
|
|
21
|
+
- Via core v0.5.3: legacy `rgb()`/`hsl()` now preserve the caller's
|
|
22
|
+
`rgba`/`hsla` spelling in special-value passthroughs (e.g.
|
|
23
|
+
`rgba(var(--bs-body-color-rgb), …)`), matching dart-sass instead of
|
|
24
|
+
normalizing the name down to `rgb`/`hsl`.
|
|
25
|
+
|
|
11
26
|
## [0.2.2] - 2026-06-14
|
|
12
27
|
|
|
13
28
|
Adopts core crate **v0.5.2**.
|
data/Cargo.lock
CHANGED
|
@@ -239,14 +239,14 @@ dependencies = [
|
|
|
239
239
|
"magnus",
|
|
240
240
|
"rb-sys",
|
|
241
241
|
"rb-sys-env",
|
|
242
|
-
"sasso 0.5.
|
|
242
|
+
"sasso 0.5.3",
|
|
243
243
|
]
|
|
244
244
|
|
|
245
245
|
[[package]]
|
|
246
246
|
name = "sasso"
|
|
247
|
-
version = "0.5.
|
|
247
|
+
version = "0.5.3"
|
|
248
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
249
|
+
checksum = "c3a6ad160fc4c310e7bcfa5494c3be21588c28c564d66365f1429781bf4c5214"
|
|
250
250
|
|
|
251
251
|
[[package]]
|
|
252
252
|
name = "seq-macro"
|
data/README.md
CHANGED
|
@@ -70,6 +70,17 @@ rescue Sasso::CompileError => e
|
|
|
70
70
|
end
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
## Framework integrations
|
|
74
|
+
|
|
75
|
+
Using a Ruby web framework? These drop-in gems build on this one and compile
|
|
76
|
+
your Sass/SCSS **in-process** (no Node, no Dart, no subprocess), byte-for-byte
|
|
77
|
+
identical to dart-sass — typically ~6–7× faster per compile than the Node `sass`
|
|
78
|
+
default:
|
|
79
|
+
|
|
80
|
+
- **Rails** (Propshaft + Sprockets) — [`sasso-rails`](https://github.com/momiji-rs/sasso-rails)
|
|
81
|
+
- **Bridgetown** — [`bridgetown-sasso`](https://github.com/momiji-rs/bridgetown-sasso)
|
|
82
|
+
- **Hanami** (2.1+) — [`hanami-sasso`](https://github.com/momiji-rs/hanami-sasso)
|
|
83
|
+
|
|
73
84
|
## Conformance
|
|
74
85
|
|
|
75
86
|
The core passes **100% of the *attempted* official sass-spec suite**
|
data/ext/sasso/Cargo.toml
CHANGED
|
@@ -29,7 +29,7 @@ rb-sys = "0.9"
|
|
|
29
29
|
# The published core compiler, pinned exactly to the API surface this binding
|
|
30
30
|
# targets. Renamed to `sasso_core` so this package can be named `sasso` (a
|
|
31
31
|
# package may not depend on a crate of its own name without a rename).
|
|
32
|
-
sasso_core = { package = "sasso", version = "=0.5.
|
|
32
|
+
sasso_core = { package = "sasso", version = "=0.5.3" }
|
|
33
33
|
|
|
34
34
|
[build-dependencies]
|
|
35
35
|
rb-sys-env = "0.1"
|
data/lib/sasso/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sasso
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- momiji-rs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb_sys
|