@speedkit/cli 2.23.1 → 2.23.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.23.2](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.23.1...v2.23.2) (2024-04-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **onboarding:** disable parameter dashboard temporarily ([c71bd4f](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/c71bd4faae3a38c7884d5bfcf20a48e7be2ccbe1))
|
|
7
|
+
|
|
1
8
|
## [2.23.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.23.0...v2.23.1) (2024-04-12)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -109,7 +109,12 @@ class OnboardingServiceFactory {
|
|
|
109
109
|
const athenaClient = await this.getAthenaClient();
|
|
110
110
|
if (athenaClient) {
|
|
111
111
|
handlers.push(new dashboard_request_1.DashboardRequest(new dashboard_1.Dashboard(customerConfig, parameterQueryBuilder, athenaClient, requestDiffService, cache)));
|
|
112
|
-
|
|
112
|
+
/**
|
|
113
|
+
* todo check error `Cannot read properties of undefined (reading 'mainFrame')`
|
|
114
|
+
* until this is fixed, we need to deaktivate the parameter dashboard
|
|
115
|
+
* See ticket: https://www.notion.so/baqend/d3749c5796d647f5892aa5ebfa2fd75f?v=306744f97b924ce29f59a2a3779a045c&p=728aae13a9a94c10807f368143b7dabf&pm=s
|
|
116
|
+
**/
|
|
117
|
+
// browserContext.startParameterDashboard = true;
|
|
113
118
|
}
|
|
114
119
|
return new fetch_event_handler_1.FetchEventHandler(handlers, customerConfig, cli, configApi);
|
|
115
120
|
}
|
package/oclif.manifest.json
CHANGED