Skip to content
This repository was archived by the owner on Jul 27, 2024. It is now read-only.

Commit 41587d2

Browse files
committed
v1.9.0 (#522)
1 parent 55c196b commit 41587d2

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11

2+
v1.9.0 / 2021-12-01
3+
===================
4+
5+
## Features
6+
7+
* Add Corrections as Code Actions in Language Server (quickfix + source.fixAll) (#471)
8+
* Add SchemaJsonFormat check ([#512](https://github.com/shopify/theme-check/issues/512))
9+
* Add checkOn{Open,Change,Save} Language Server Configurations ([#511](https://github.com/shopify/theme-check/issues/511))
10+
* Add support for new filters `image_tag` + `image_url`
11+
* Add autocorrection to `img_url` to ease migration
12+
* Deprecate `img_tag`, `img_url`
13+
14+
## Fixes
15+
16+
* Fix missing null check in ValidHTMLTranslation ([#517](https://github.com/shopify/theme-check/issues/517))
17+
* Fix MatchingTranslations check + corrections ([#515](https://github.com/shopify/theme-check/issues/515))
18+
* Fix RemoteAsset false positive from settings variables ([#516](https://github.com/shopify/theme-check/issues/516))
19+
* Make SpaceInsideBraces work for missing cases ([#509](https://github.com/shopify/theme-check/issues/509))
20+
* Fix Liquid in HTML parsing
21+
* Make TranslationKeyExists also check section translations
22+
223
v1.8.0 / 2021-11-09
324
===================
425

docs/checks/schema_json_format.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Prevent unformatted schema tags (`SchemaJsonFormat`)
22

3-
_Version THEME_CHECK_VERSION+_
3+
_Version 1.9.0+_
44

55
This check exists to ensure the JSON in your schemas is pretty.
66

lib/theme_check/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module ThemeCheck
3-
VERSION = "1.8.0"
3+
VERSION = "1.9.0"
44
end

0 commit comments

Comments
 (0)