merged with master

Signed-off-by: Matt Mulligan <mmulligan03@gmail.com>
This commit is contained in:
Matt Mulligan
2022-06-23 08:42:06 -04:00
418 changed files with 6063 additions and 3284 deletions
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-stack-overflow
## 0.1.3-next.0
### Patch Changes
- 12ae3eed2f: - Publicly exports `StackOverflowIcon`.
- `HomePageStackOverflowQuestions` accepts optional icon property.
- Updated dependencies
- @backstage/core-components@0.9.6-next.0
- @backstage/plugin-home@0.4.23-next.0
## 0.1.2
### Patch Changes
+3 -3
View File
@@ -18,17 +18,17 @@ export interface Config {
/**
* Configuration options for the stack overflow plugin
*/
stackoverflow: {
stackoverflow?: {
/**
* The base url of the Stack Overflow API used for the plugin
* @visibility frontend
*/
baseUrl: string;
baseUrl?: string;
/**
* The api key to authenticate to Stack Overflow API
* @visibility backend
*/
apiKey: string;
apiKey?: string;
};
}
+10 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-stack-overflow",
"version": "0.1.2",
"version": "0.1.3-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -24,9 +24,9 @@
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/core-components": "^0.9.5",
"@backstage/core-components": "^0.9.6-next.0",
"@backstage/core-plugin-api": "^1.0.3",
"@backstage/plugin-home": "^0.4.22",
"@backstage/plugin-home": "^0.4.23-next.0",
"@backstage/plugin-search-common": "^0.3.5",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
@@ -42,10 +42,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.17.2",
"@backstage/core-app-api": "^1.0.3",
"@backstage/dev-utils": "^1.0.3",
"@backstage/test-utils": "^1.1.1",
"@backstage/cli": "^0.17.3-next.0",
"@backstage/core-app-api": "^1.0.4-next.0",
"@backstage/dev-utils": "^1.0.4-next.0",
"@backstage/test-utils": "^1.1.2-next.0",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^26.0.7",
@@ -54,6 +54,7 @@
},
"files": [
"dist",
"config"
]
"config.d.ts"
],
"configSchema": "config.d.ts"
}