Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
deps:
- name: pmm
branch: PMM-13453-change-force-update-flag
url: https://github.com/percona/pmm
- name: grafana
branch: PMM-13453-change-force-update-flag
url: https://github.com/percona/grafana
2 changes: 1 addition & 1 deletion sources/grafana-dashboards
Submodule grafana-dashboards updated 38 files
+2 −1 .github/CODEOWNERS
+5 −5 .github/workflows/build.yml
+1 −1 pmm-app/.nvmrc
+1 −3 pmm-app/config/jest-setup.ts
+0 −1 pmm-app/jest.config.js
+0 −4 pmm-app/package.json
+7 −4 pmm-app/src/pmm-qan/panel/components/Details/Explain/Explain.tools.ts
+11 −11 pmm-app/src/pmm-qan/panel/components/Details/Explain/components/ClassicExplain/ClassicExplain.test.tsx
+11 −11 pmm-app/src/pmm-qan/panel/components/Details/Explain/components/JsonExplain/JsonExplain.test.tsx
+10 −11 pmm-app/src/pmm-qan/panel/components/Details/Explain/components/VisualExplain/VisualExplain.test.tsx
+10 −12 pmm-app/src/pmm-qan/panel/components/Details/Metrics/Metrics.test.tsx
+0 −4 pmm-app/src/pmm-qan/panel/components/Details/Plan/Plan.test.tsx
+9 −6 pmm-app/src/pmm-qan/panel/components/Details/database-models/mongodb/mongodb.ts
+2 −2 pmm-app/src/pmm-qan/panel/components/Details/database-models/mongodb/service.ts
+8 −20 pmm-app/src/pmm-qan/panel/components/Details/database-models/mysql/mysql.ts
+4 −4 pmm-app/src/pmm-qan/panel/components/Details/database-models/mysql/service.ts
+22 −23 pmm-app/src/pmm-qan/panel/components/Filters/components/CheckboxGroup/CheckboxGroup.test.tsx
+16 −16 pmm-app/src/pmm-qan/panel/components/ManageColumns/OptionContent/OptionContent.test.tsx
+53 −5 pmm-app/src/pmm-qan/panel/components/Overview/components/MetricColumns/MetricColumns.test.tsx
+12 −7 pmm-app/src/pmm-qan/panel/components/Overview/components/Search/Search.test.tsx
+26 −0 pmm-app/src/shared/components/Actions/Actions.utils.ts
+1 −1 pmm-app/src/shared/components/Actions/index.ts
+5 −3 pmm-app/src/shared/components/Elements/Charts/TimeDistribution/TimeDistribution.test.tsx
+45 −23 pmm-app/src/shared/components/Elements/Charts/TimeDistribution/__snapshots__/TimeDistribution.test.tsx.snap
+3 −3 pmm-app/src/shared/components/Elements/LinkTooltip/LinkTooltip.test.tsx
+20 −14 pmm-app/src/shared/components/Elements/Modal/Modal.test.tsx
+5 −4 pmm-app/src/shared/components/Elements/OverflowTooltip/OverflowTooltip.test.tsx
+10 −10 pmm-app/src/shared/components/Elements/Overlay/Overlay.test.tsx
+19 −19 pmm-app/src/shared/components/Elements/Table/Table.test.tsx
+8 −23 pmm-app/src/shared/components/Form/ButtonWithSpinner/ButtonWithSpinner.test.tsx
+5 −4 pmm-app/src/shared/components/Form/Checkbox/Checkbox.test.tsx
+17 −13 pmm-app/src/shared/components/Form/Radio/RadioButton.test.tsx
+11 −11 pmm-app/src/shared/components/Form/Radio/RadioButtonGroup.test.tsx
+5 −4 pmm-app/src/shared/components/helpers/Helpers.test.tsx
+20 −795 pmm-app/src/shared/components/helpers/__snapshots__/Helpers.test.tsx.snap
+0 −1 pmm-app/src/shared/core/test.utils.ts
+7 −0 pmm-app/src/shared/core/utils.ts
+14 −297 pmm-app/yarn.lock
Submodule pmm-ui-tests updated 42 files
+2 −6 cli/tests/generic.spec.ts
+1 −3 cli/tests/mongoDb-psmdb-shard.spec.ts
+31 −17 cli/tests/mongoDb-psmdb.spec.ts
+2 −1 cli/tests/pmm-server-only.spec.ts
+22 −0 tests/QAN/common_test.js
+24 −2 tests/QAN/details_test.js
+2 −2 tests/QAN/externalClickhouse_test.js
+1 −0 tests/advisors/pages/advisorsPage.js
+13 −0 tests/advisors/pages/api/advisorsAPI.js
+2 −1 tests/backup/inventory_test.js
+1 −1 tests/backup/pages/restorePage.js
+24 −0 tests/configuration/permissions_test.js
+8 −8 tests/configuration/verifyPMMInventory_test.js
+1 −1 tests/configuration/verifyPMMServerDisconnect_test.js
+2 −5 tests/configuration/verifyPMMSettingsPageFunctionality_test.js
+11 −0 tests/dashboards/pages/homeDashboard.js
+2 −1 tests/dashboards/pages/searchDashboardsModal.js
+10 −1 tests/helper/apiHelper.js
+31 −2 tests/helper/grafana_helper.js
+0 −20 tests/metrics/verifyPostgresql_test.js
+2 −2 tests/pages/api/addInstanceAPI.js
+5 −0 tests/pages/api/inventoryAPI.js
+7 −0 tests/pages/components/queryAnalytics/queryAnalyticsData.js
+29 −0 tests/pages/components/queryAnalytics/queryAnalyticsQueryDetails.js
+1 −0 tests/pages/homePage.js
+131 −9 tests/pages/remoteInstancesPage.js
+30 −12 tests/qa-integration/pmm_pgsm_integration_test.js
+1 −1 tests/qa-integration/pmm_pgss_integration_test.js
+1 −1 tests/qa-integration/pmm_ps_integration_test.js
+59 −11 tests/remoteInstances/remoteInstancesHelper.js
+157 −0 tests/upgrade/advisorsAlerting_test.js
+54 −0 tests/upgrade/annotationsPrometheus_test.js
+1 −0 tests/upgrade/customPassword_test.js
+174 −0 tests/upgrade/dashboards_test.js
+8 −8 tests/upgrade/externalService_test.js
+98 −0 tests/upgrade/settingsMetrics_test.js
+8 −6 tests/upgrade/upgradePMM_test.js
+78 −17 tests/verifyAWSRDSMySQLInstance_test.js
+44 −9 tests/verifyAWSRDSPostgreSQLInstance_test.js
+17 −10 tests/verifyAuroraMySQLRemoteInstance_test.js
+94 −0 tests/verifyAuroraPostgreSQLRemoteInstance_test.js
+5 −5 tests/verifyRemoteInstances_test.js
Submodule pmm updated 198 files
Loading