Skip to content

Commit 1764267

Browse files
authored
Migrate aws sdk react components to the new form styling under feature flag (#62)
* Prepare 0.3.0
1 parent ef96d96 commit 1764267

23 files changed

+3138
-1913
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## v0.3.0
6+
7+
- Migrate aws sdk react components to the new form styling under feature flag awsDatasourcesNewFormStyling in [#62](https://github.com/grafana/grafana-aws-sdk-react/pull/62)
8+
59
## v0.2.0
610

711
- Add support for temporary credentials in athena

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/aws-sdk",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Common AWS features for grafana",
55
"main": "dist/index.js",
66
"module": "dist/esm/index.js",
@@ -27,13 +27,13 @@
2727
"license": "Apache-2.0",
2828
"dependencies": {
2929
"@grafana/async-query-data": "0.1.4",
30-
"@grafana/experimental": "1.1.0"
30+
"@grafana/experimental": "1.7.0"
3131
},
3232
"devDependencies": {
33-
"@grafana/data": "9.3.2",
34-
"@grafana/runtime": "9.3.2",
35-
"@grafana/toolkit": "9.3.2",
36-
"@grafana/ui": "9.3.2",
33+
"@grafana/data": "9.4.14",
34+
"@grafana/runtime": "9.4.14",
35+
"@grafana/toolkit": "9.4.14",
36+
"@grafana/ui": "9.4.14",
3737
"@rollup/plugin-node-resolve": "^15.0.1",
3838
"@testing-library/jest-dom": "5.16.5",
3939
"@testing-library/react": "12.1.5",

src/ConnectionConfig.tsx

Lines changed: 0 additions & 295 deletions
This file was deleted.

src/ConnectionConfig.test.tsx renamed to src/components/ConnectionConfig.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import '@testing-library/jest-dom/extend-expect';
22
import React from 'react';
33
import { render, screen, waitFor } from '@testing-library/react';
4-
import { AwsAuthDataSourceJsonData, AwsAuthDataSourceSecureJsonData, AwsAuthType } from './types';
4+
import { AwsAuthDataSourceJsonData, AwsAuthDataSourceSecureJsonData, AwsAuthType } from '../types';
55
import { ConnectionConfig, ConnectionConfigProps } from './ConnectionConfig';
66
import selectEvent from 'react-select-event';
77
import { config } from '@grafana/runtime';

0 commit comments

Comments
 (0)