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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0757111b1e0ce96bb8df0615adb8ccb87070c20cde63721f880643197dacae0
4
- data.tar.gz: c1dff55138bfe1de33ea2c51cfd9e40ab410ea3e87e66933bfd310bb03d9d028
3
+ metadata.gz: aa45441798e60123ce88d6ca1192da1dc4d91ee5596a16ef0fb4fb62eaa8e18c
4
+ data.tar.gz: fb9dca01c7298e684c63665f6f1d0846af4d0d8647b6eedb7562a4dedc58e312
5
5
  SHA512:
6
- metadata.gz: 545c91df370d3e7f6f16ce24adc3b37b5d93f87a26cfbf1f872bb7101b04e0fddc22ab96b7d3ba38aca401aa8f3fff396f569ae14964210492f38db4b03e22d9
7
- data.tar.gz: 408a910ff17ba7cad8186d746ca8d573e9bd4b6c2c44c3b56cb3750bf860e6e9c7d30b088f1cbbd41f24c7e44cb8c40a9fb508bbbaf7507e5d94223d3d5ef3dc
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.2",
242
+ "sasso 0.5.3",
243
243
  ]
244
244
 
245
245
  [[package]]
246
246
  name = "sasso"
247
- version = "0.5.2"
247
+ version = "0.5.3"
248
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "cd0695e62b0b86e3ac26ddb5a02b2341dbb150438514c6744840ffeadffb6c85"
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.2" }
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
@@ -3,5 +3,5 @@
3
3
  module Sasso
4
4
  # The gem version floats INDEPENDENTLY of the core `sasso` crate version; the
5
5
  # native extension pins the crate exactly (ext/sasso/Cargo.toml: sasso = "=…").
6
- VERSION = "0.2.2"
6
+ VERSION = "0.2.3"
7
7
  end
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.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-14 00:00:00.000000000 Z
11
+ date: 2026-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys