sasso 0.2.2-x86_64-linux → 0.2.4-x86_64-linux

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: b1a3217b4fc77a2d5001ca785d23ec610b51ee5c6045ad91526998e84b7d9e42
4
- data.tar.gz: 10979ed92480f989f9284b2f19f00b3995443b25841bf850b2e986942c007da3
3
+ metadata.gz: 9ba3f8c42f30e1dbfd80ecaeb89743aa7f09243d857c3350f30076f0ab805e4f
4
+ data.tar.gz: 7e44d666f99594c9d539124140a438eb466aa27ba08a89a5fa768582f01dac55
5
5
  SHA512:
6
- metadata.gz: 35c643b9055d304725ee61cd3d8e922407b0c4cff5afd2a4222e03e140cdc6ff0fab9a39e67fd0a0dae1304197e36d280c37175b7f931e202cb137e80a4d3bbf
7
- data.tar.gz: a406ccf53b4fdf6d7369f83b9d00d90fc8f60aac85dee161e17af1d5fec126ee4501cf76aa33404a9dc6f0890e72d727ce324b4c0d959086e061e4f5e4c0739e
6
+ metadata.gz: ec33ef0b24909f08025681bf185b860e74322c0b746acba366d803a3d832633c91e2e08be66b06b510973bc49dded625aa39df4044e05ba8e201d97b81adc337
7
+ data.tar.gz: f573b247b55b7a64ce1af2880aa95fbe5df53c521bf78a0a22542f9a7f1d565af945f3cd81c4eaa657d3695451ded7a5c6b523a5692902f271c38a8c76aa02bd
data/CHANGELOG.md CHANGED
@@ -8,6 +8,31 @@ notes the exact core crate version it pins.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.2.4] - 2026-06-15
12
+
13
+ ### Changed
14
+
15
+ - Adopt core **sasso 0.6.0**. The core release is a breaking change to the
16
+ Rust `Importer` trait (two-phase `canonicalize`/`load`), but the gem exposes
17
+ **no userland importer** — it builds the built-in `FsImporter` only — so this
18
+ is a recompile-only bump with **no change to the gem's Ruby API** (the same
19
+ `Sasso.compile` / `Sasso.compile_string` with `load_paths:` / `source_map:`).
20
+
21
+ ## [0.2.3] - 2026-06-15
22
+
23
+ Adopts core crate **v0.5.3**.
24
+
25
+ ### Fixed
26
+
27
+ - Via core v0.5.3: a `!default` assignment no longer evaluates its right-hand
28
+ side when the variable already holds a non-null value (dart-sass
29
+ short-circuits first), fixing a spurious "incompatible units" error in
30
+ Bootstrap-on-Shopware setups.
31
+ - Via core v0.5.3: legacy `rgb()`/`hsl()` now preserve the caller's
32
+ `rgba`/`hsla` spelling in special-value passthroughs (e.g.
33
+ `rgba(var(--bs-body-color-rgb), …)`), matching dart-sass instead of
34
+ normalizing the name down to `rgb`/`hsl`.
35
+
11
36
  ## [0.2.2] - 2026-06-14
12
37
 
13
38
  Adopts core crate **v0.5.2**.
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**
Binary file
Binary file
Binary file
Binary file
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.4"
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.4
5
5
  platform: x86_64-linux
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: rake