@speedkit/cli 2.55.0 → 2.56.1
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [2.56.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.56.0...v2.56.1) (2024-09-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove breaking comma ([acb2d22](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/acb2d226356725f8da2ede03c5041b29dd8ddf01))
|
|
7
|
+
* remove uadevice from prewarmQuery ([52b91f7](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/52b91f770f7e2a815e05f4e94dbd3d2458418d62))
|
|
8
|
+
|
|
9
|
+
# [2.56.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.55.0...v2.56.0) (2024-09-10)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **customer-config:** provide default currency for ga ecommerce tracking plugin ([1e26367](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/1e263670d19fa8d4f9b18e2ed0bdc6bb4c06ebb2))
|
|
15
|
+
|
|
1
16
|
# [2.55.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.54.0...v2.55.0) (2024-08-28)
|
|
2
17
|
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -26,8 +26,7 @@ class BuildPrewarmQuery extends core_1.Command {
|
|
|
26
26
|
return `
|
|
27
27
|
select url
|
|
28
28
|
from (
|
|
29
|
-
select regexp_replace(regexp_replace(${parameterReplaceFilter}, '(^[^&?]*)&','$1?'), '\\?$','') as url
|
|
30
|
-
uadevice
|
|
29
|
+
select regexp_replace(regexp_replace(${parameterReplaceFilter}, '(^[^&?]*)&','$1?'), '\\?$','') as url
|
|
31
30
|
from live.rum.pi
|
|
32
31
|
where app = '${app}'
|
|
33
32
|
and date >= '${date}'
|
|
@@ -24,7 +24,7 @@ import { GAEcommerceTrackingPlugin } from 'rum/GAEcommerceTrackingPlugin';
|
|
|
24
24
|
new HistoryApiPlugin(), // Soft Navigation Tracking using History API
|
|
25
25
|
{{/if}}
|
|
26
26
|
{{#if useGATracking}}
|
|
27
|
-
new GAEcommerceTrackingPlugin(),
|
|
27
|
+
new GAEcommerceTrackingPlugin({ defaultCurrency: "EUR" }),
|
|
28
28
|
{{/if}}
|
|
29
29
|
|
|
30
30
|
{{#if addPreRendering}}
|
package/oclif.manifest.json
CHANGED