gscan 4.31.1 → 4.31.2
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.
- package/lib/specs/canary.js +4 -4
- package/package.json +1 -1
package/lib/specs/canary.js
CHANGED
|
@@ -27,8 +27,8 @@ let rules = {
|
|
|
27
27
|
},
|
|
28
28
|
'GS010-PJ-GHOST-CARD-ASSETS-NOT-PRESENT': {
|
|
29
29
|
level: 'warning',
|
|
30
|
-
rule: '<code>"card_assets"</code> will default
|
|
31
|
-
details: oneLineTrim`The <code>"card_assets"</code> property is enabled by default if not explicitly set.<br>
|
|
30
|
+
rule: '<code>"card_assets"</code> will now be included by default, including bookmark and gallery cards.',
|
|
31
|
+
details: oneLineTrim`The <code>"card_assets"</code> property is enabled by default and set to <code>true</code> (include all) if not explicitly set.<br>
|
|
32
32
|
Find more information about the <code>card_assets</code> property <a href="${docsBaseUrl}content/#editor-cards" target=_blank>here</a>.`
|
|
33
33
|
},
|
|
34
34
|
'GS090-NO-AUTHOR-HELPER-IN-POST-CONTEXT': {
|
|
@@ -94,8 +94,8 @@ let rules = {
|
|
|
94
94
|
'GS090-NO-PRICE-DATA-MONTHLY-YEARLY': {
|
|
95
95
|
level: 'error',
|
|
96
96
|
fatal: true,
|
|
97
|
-
rule: 'Replace <code>{{@price.monthly}}</code> and <code>{{@price.yearly}}</code> with <code>{{
|
|
98
|
-
details: oneLineTrim`There is no longer a global <code>@price</code> object. You need to use <code>{{#get "tiers"}}</code> to fetch all the tiers and get access to the <code>{{monthly_price}}</code> or <code>{{yearly_price}}</code> for each tier<br>
|
|
97
|
+
rule: 'Replace <code>{{@price.monthly}}</code> and <code>{{@price.yearly}}</code> with <code>{{price monthly_price currency=currency}}</code> and <code>{{price yearly_price currency=currency}}</code> after fetching tier data with <code>{{#get "tiers"}}</code>',
|
|
98
|
+
details: oneLineTrim`There is no longer a global <code>@price</code> object. You need to use <code>{{#get "tiers"}}</code> to fetch all the tiers and get access to the <code>{{price monthly_price currency=currency}}</code> or <code>{{price yearly_price currency=currency}}</code> for each tier<br>
|
|
99
99
|
Find more information about the <code>{{price}}</code> helper <a href="${docsBaseUrl}helpers/price/" target=_blank>here</a>.`
|
|
100
100
|
},
|
|
101
101
|
'GS090-NO-TIER-PRICE-AS-OBJECT': {
|