@speedkit/cli 2.56.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 +8 -0
- package/README.md +1 -1
- package/dist/commands/build-prewarm-query.js +1 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
|
|
1
9
|
# [2.56.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.55.0...v2.56.0) (2024-09-10)
|
|
2
10
|
|
|
3
11
|
|
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}'
|
package/oclif.manifest.json
CHANGED