Skip to content

Releases: glenn2223/vscode-live-sass-compiler

v6.1.2

22 Nov 23:46
a44ef47
Compare
Choose a tag to compare

6.1.2 - 2023-11-22

Compare to previous release

Fixed

  • Fix for a network file-resolution bug introduced in v6.1.1. Closes #322

Updated


What's Changed

Full Changelog: v6.1.1...v6.1.2

v6.1.1

17 Aug 23:48
4ba1cba
Compare
Choose a tag to compare

6.1.1 - 2023-08-18

Compare to previous release

Changes

  • Updated sass to v1.66.0 to revert breaking change
    "Drop support for the additional CSS calculations defined in CSS Values
    and Units 4. Custom Sass functions whose names overlapped with these new
    CSS functions were being parsed as CSS calculations instead, causing an
    unintentional breaking change outside our normal compatibility policy
    for CSS compatibility changes
    "

Updated

v6.1.0

12 Aug 00:38
f714bb0
Compare
Choose a tag to compare

6.1.0 - 2023-08-12

Compare to previous release

Added

  • New formats[].generateMap setting allows you to decide on map output on a format basis
    The liveSassCompile.settings.generateMap is applied if this setting is null (its default).

Changes

  • formats[].extensionName now allows any string ending with .css without throwing a warning.
  • Tweaks to docs, reflecting the settings changes and correcting outdated info too

Updated

v6.0.6

21 Jul 22:26
c37e4e2
Compare
Choose a tag to compare

6.0.6 - 2023-07-21

Compare to previous release

Fixed

  • Corrected some setting types to stop warnings for valid values

Changes

  • Updated docs to remove typos and references to dead settings and outdated info

Updated

  • sass to 1.62.1 Changelog
  • postcss to 8.4.26 Changelog
  • Various dev dependency updates (nothing user facing)

New Contributors (Thank You!)

Full Changelog: v6.0.5...v6.0.6

v6.0.5

09 Apr 22:11
6c079ff
Compare
Choose a tag to compare

6.0.5 - 2023-04-09

Compare to previous release

Fixed

  • Fix for a formats[].savePath bug introduced in 6.0.4

Updated

  • sass to 1.61.0 Changelog
  • Various dev dependency updates (nothing user facing)

v6.0.4

28 Mar 14:03
Compare
Choose a tag to compare

6.0.4 - 2023-03-28

Compare to previous release

Fixed

  • formats[].savePath no longer throws a warning for the valid path / - Closes #282

Updated

  • sass to 1.60.0 Changelog
  • autoprefixer to 10.4.14 Changelog
  • Various dev dependency updates (nothing user facing)

v6.0.3

24 Feb 17:52
9bd70a8
Compare
Choose a tag to compare

6.0.3 - 2023-02-24

Compare to previous release

Fixed

  • Using the new compiler (liveSassCompile.settings.useNewCompiler) outputs source maps correctly - Closes #276

Updated

  • sass to 1.58.3 Changelog
  • Various dev dependency updates (nothing user facing)

v6.0.2

09 Feb 16:00
abae28d
Compare
Choose a tag to compare

6.0.2 - 2023-02-09

Compare to previous release

Fixed

  • Prevent picomatch error - Closes #267

v6.0.1

09 Feb 15:05
03a716a
Compare
Choose a tag to compare

6.0.1 - 2023-02-09

Compare to previous release

Changed

  • Corrected information about the new liveSassCompile.settings.useNewCompiler setting
  • Updated the docs: fixed a link and also corrected references to the new minimum VS Code version (1.74)
  • Tweaked some code to make it slightly more performant when processing many workspaces or many files

Updated

v6.0.0

07 Feb 12:47
4f5d252
Compare
Choose a tag to compare

6.0.0 - 2023-02-07

Compare to previous release

Breaking changes

  • The following deprecated settings have been removed:
    • liveSassCompile.settings.formats[].savePathSegmentKeys
    • liveSassCompile.settings.formats[].savePathReplaceSegmentsWith
    • Note: other deprecated settings will remain in place to maintain backwards compatibility, or until SASS2.0
  • Requires VS Code v1.74 or later

Added

  • New liveSassCompile.settings.useNewCompiler setting. Use it to try the SASS 2.0 compiler - before it becomes mandatory discussion ref
    Try the new, more performant, SASS compiler - go on, kick the tyres on this new entry point. Note: lineFeed, indentType and indentWidth do not work in this new compiler (and never will [ref])

Fixed

  • debugFileList command now correctly includes the files that fall under the excluded and partial patterns
  • All node module paths are now resolved correctly (when utilising the ~/[node module name]/file_path feature)
  • Any output (Information or higher) is saved in the output window. It still only pops up depending on your setting.
    This is to match the original extension.

Updated