Merge branch 'backstage:master' into feature/git-wrapper-branch-command

This commit is contained in:
Magnus Persson
2022-09-19 09:33:52 +02:00
committed by GitHub
344 changed files with 9177 additions and 2974 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
Added $select attribute to user query
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-kubernetes-backend': patch
---
Adds skipMetricsLookup to the kubernetes-backend schema
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Support displaying and ordering by counts in `EntityTagPicker` field. Add the `showCounts` option to enable this. Also support configuring `helperText`.
+25
View File
@@ -188,19 +188,24 @@
"clever-turtles-work",
"cold-frogs-kiss",
"cool-cameras-count",
"cuddly-clocks-dance",
"cuddly-needles-marry",
"curly-hounds-wait",
"dry-games-end",
"dry-tips-build",
"dull-spoons-doubt",
"eight-shrimps-call",
"eight-spies-protect",
"eleven-bees-marry",
"empty-colts-whisper",
"famous-cups-roll",
"famous-hounds-sit",
"famous-pianos-kick",
"famous-wombats-happen",
"fast-paws-press",
"five-carrots-pay",
"flat-crabs-love",
"flat-humans-dance",
"flat-plums-shout",
"flat-walls-kiss",
"fresh-rabbits-juggle",
@@ -211,17 +216,21 @@
"gold-laws-attend",
"good-avocados-grow",
"good-papayas-dress",
"gorgeous-boats-prove",
"gorgeous-pillows-retire",
"gorgeous-swans-kiss",
"great-cats-sit",
"great-rules-march",
"grumpy-kiwis-juggle",
"happy-kiwis-look",
"heavy-ligers-laugh",
"hot-brooms-drive",
"hot-files-begin",
"hot-suits-glow",
"hungry-dogs-agree",
"itchy-brooms-end",
"itchy-kiwis-warn",
"large-books-deny",
"large-eagles-shop",
"large-trainers-float",
"late-turtles-listen",
@@ -230,13 +239,17 @@
"light-donuts-obey",
"loud-comics-search",
"lovely-ants-invite",
"lucky-ads-worry",
"lucky-points-wash",
"many-rules-raise",
"mean-tomatoes-visit",
"metal-candles-tease",
"metal-crabs-wash",
"metal-weeks-kiss",
"moody-berries-sneeze",
"neat-kangaroos-turn",
"nervous-rivers-sneeze",
"new-taxis-vanish",
"old-lemons-switch",
"old-readers-provide",
"old-rockets-doubt",
@@ -247,7 +260,9 @@
"purple-jeans-bathe",
"purple-plums-travel",
"purple-wolves-confess",
"quick-items-invite",
"quick-lamps-talk",
"rare-tips-glow",
"red-numbers-suffer",
"renovate-16f36a0",
"renovate-1a6cc1f",
@@ -263,6 +278,7 @@
"rotten-books-crash",
"rude-books-rush",
"rude-tips-argue",
"rude-weeks-retire",
"search-feet-flash",
"search-planets-flash",
"search-zebras-tap",
@@ -273,11 +289,14 @@
"shiny-lobsters-fix",
"shiny-ties-leave",
"shiny-walls-kiss",
"short-mice-explode",
"silent-kings-live",
"slimy-stingrays-type",
"slimy-zebras-reply",
"slow-phones-count",
"small-lemons-brake",
"small-walls-promise",
"smart-sloths-search",
"smart-squids-change",
"smooth-yaks-hug",
"spicy-cherries-remember",
@@ -286,10 +305,13 @@
"strong-planes-return",
"stupid-pigs-appear",
"sweet-fishes-taste",
"sweet-grapes-explain",
"swift-readers-sin",
"tall-trains-remain",
"tame-papayas-protect",
"tame-socks-sniff",
"tame-trainers-rule",
"tasty-clouds-cover",
"techdocs-feet-dress",
"techdocs-jeans-wait",
"tender-ladybugs-relax",
@@ -298,13 +320,16 @@
"tiny-oranges-thank",
"tiny-rocks-flash",
"tough-dolphins-smile",
"twenty-dolls-smoke",
"two-planets-provide",
"veka-fingrar-drar",
"weak-camels-roll",
"weak-radios-sin",
"weak-yaks-learn",
"wild-sheep-roll",
"witty-cats-wink",
"witty-queens-happen",
"young-falcons-sleep",
"young-trees-rescue"
]
}
+283
View File
@@ -0,0 +1,283 @@
---
'@backstage/plugin-search-react': minor
---
The `<SearchResult/>` component now accepts a optional `query` prop to request results from the search api:
> Note: If a query prop is not defined, the results will by default be consumed from the context.
Example:
```jsx
import React, { useState, useCallback } from 'react';
import { Grid, List, Paper } from '@material-ui/core';
import { Page, Header, Content, Lifecycle } from '@backstage/core-components';
import {
DefaultResultListItem,
SearchBarBase,
SearchResult,
} from '@backstage/plugin-search-react';
const SearchPage = () => {
const [query, setQuery] = useState({
term: '',
types: [],
filters: {},
});
const handleChange = useCallback(
(term: string) => {
setQuery(prevQuery => ({ ...prevQuery, term }));
},
[setQuery],
);
return (
<Page themeId="home">
<Header title="Search" subtitle={<Lifecycle alpha />} />
<Content>
<Grid container direction="row">
<Grid item xs={12}>
<Paper>
<SearchBarBase debounceTime={100} onChange={handleChange} />
</Paper>
</Grid>
<Grid item xs>
<SearchResult query={query}>
{({ results }) => (
<List>
{results.map(({ document }) => (
<DefaultResultListItem
key={document.location}
result={document}
/>
))}
</List>
)}
</SearchResult>
</Grid>
</Grid>
</Content>
</Page>
);
};
```
Additionally, a search page can also be composed using these two new results layout components:
```jsx
// Example rendering results as list
<SearchResult>
{({ results }) => (
<SearchResultListLayout
resultItems={results}
renderResultItem={({ type, document }) => {
switch (type) {
case 'custom-result-item':
return (
<CustomResultListItem key={document.location} result={document} />
);
default:
return (
<DefaultResultListItem
key={document.location}
result={document}
/>
);
}
}}
/>
)}
</SearchResult>
```
```jsx
// Example rendering results as groups
<SearchResult>
{({ results }) => (
<>
<SearchResultGroupLayout
icon={<CustomIcon />}
title="Custom"
link="See all custom results"
resultItems={results.filter(
({ type }) => type === 'custom-result-item',
)}
renderResultItem={({ document }) => (
<CustomResultListItem key={document.location} result={document} />
)}
/>
<SearchResultGroupLayout
icon={<DefaultIcon />}
title="Default"
resultItems={results.filter(
({ type }) => type !== 'custom-result-item',
)}
renderResultItem={({ document }) => (
<DefaultResultListItem key={document.location} result={document} />
)}
/>
</>
)}
</SearchResult>
```
A `SearchResultList` and `SearchResultGroup` components were also created for users who have search pages with multiple queries, both are specializations of `SearchResult` and also accept a `query` as a prop as well:
```jsx
// Example using the <SearchResultList />
const SearchPage = () => {
const query = {
term: 'example',
};
return (
<SearchResultList
query={query}
renderResultItem={({ type, document, highlight, rank }) => {
switch (type) {
case 'custom':
return (
<CustomResultListItem
key={document.location}
icon={<CatalogIcon />}
result={document}
highlight={highlight}
rank={rank}
/>
);
default:
return (
<DefaultResultListItem
key={document.location}
result={document}
/>
);
}
}}
/>
);
};
```
```jsx
// Example using the <SearchResultGroup /> for creating a component that search and group software catalog results
import React, { useState, useCallback } from 'react';
import { MenuItem } from '@material-ui/core';
import { JsonValue } from '@backstage/types';
import { CatalogIcon } from '@backstage/core-components';
import { CatalogSearchResultListItem } from '@backstage/plugin-catalog';
import {
SearchResultGroup,
SearchResultGroupTextFilterField,
SearchResultGroupSelectFilterField,
} from @backstage/plugin-search-react;
import { SearchQuery } from '@backstage/plugin-search-common';
const CatalogResultsGroup = () => {
const [query, setQuery] = useState<Partial<SearchQuery>>({
types: ['software-catalog'],
});
const filterOptions = [
{
label: 'Lifecycle',
value: 'lifecycle',
},
{
label: 'Owner',
value: 'owner',
},
];
const handleFilterAdd = useCallback(
(key: string) => () => {
setQuery(prevQuery => {
const { filters: prevFilters, ...rest } = prevQuery;
const newFilters = { ...prevFilters, [key]: undefined };
return { ...rest, filters: newFilters };
});
},
[],
);
const handleFilterChange = useCallback(
(key: string) => (value: JsonValue) => {
setQuery(prevQuery => {
const { filters: prevFilters, ...rest } = prevQuery;
const newFilters = { ...prevFilters, [key]: value };
return { ...rest, filters: newFilters };
});
},
[],
);
const handleFilterDelete = useCallback(
(key: string) => () => {
setQuery(prevQuery => {
const { filters: prevFilters, ...rest } = prevQuery;
const newFilters = { ...prevFilters };
delete newFilters[key];
return { ...rest, filters: newFilters };
});
},
[],
);
return (
<SearchResultGroup
query={query}
icon={<CatalogIcon />}
title="Software Catalog"
link="See all software catalog results"
filterOptions={filterOptions}
renderFilterOption={({ label, value }) => (
<MenuItem key={value} onClick={handleFilterAdd(value)}>
{label}
</MenuItem>
)}
renderFilterField={(key: string) => {
switch (key) {
case 'lifecycle':
return (
<SearchResultGroupSelectFilterField
key={key}
label="Lifecycle"
value={query.filters?.lifecycle}
onChange={handleFilterChange('lifecycle')}
onDelete={handleFilterDelete('lifecycle')}
>
<MenuItem value="production">Production</MenuItem>
<MenuItem value="experimental">Experimental</MenuItem>
</SearchResultGroupSelectFilterField>
);
case 'owner':
return (
<SearchResultGroupTextFilterField
key={key}
label="Owner"
value={query.filters?.owner}
onChange={handleFilterChange('owner')}
onDelete={handleFilterDelete('owner')}
/>
);
default:
return null;
}
}
renderResultItem={({ document, highlight, rank }) => (
<CatalogSearchResultListItem
key={document.location}
result={document}
highlight={highlight}
rank={rank}
/>
)}
/>
);
};
```
+2 -2
View File
@@ -162,7 +162,7 @@ _You can do this by using the [Adopter form](https://form.typeform.com/to/zcOaKi
| [Procter & Gamble](https://us.pg.com/) | [Binita Nayak](https://github.com/binitan), [Josh Rose](https://github.com/joshuarose), [RJ Winkler](https://github.com/rjwink) | P&G leverages Backstage to build internal developer portal to ensure developers' happiness. This developer portal shall act as single source of information needed by development teams to seamlessly create, find and maintain their software components/resources/documentation. |
| [SANS Institute](https://www.sans.org) | [Christopher Klewin](mailto:cklewin@sans.org) | Developer portal for centralized visibility, reporting, and tooling across multiple organizations. |
| [Okay](https://www.okayhq.com/) | [Tomas Barreto](mailto:tomas@okayhq.com) | Service catalog, developer portal, and technical documentation |
| [Kaluza](https://www.kaluza.com) | [James Condren](mailto:james.condron@kaluza.com) | To provide an automated golden path to developers, with a focus on discovery and documentation |
| [Kaluza](https://www.kaluza.com) | [James Condron](mailto:james.condron@kaluza.com) | To provide an automated golden path to developers, with a focus on discovery and documentation |
| [LinkedIn](https://linkedin.com) | [Joshua Lawrence](mailto:jlawrence@linkedin.com) | We are building a platform for internal web tools |
| [Forto](https://forto.com) | [Rodolfo Matos](mailto:rodolfo.matos@forto.com) | Still in a experimental phase/assessing the organisational fit. We will be using it mostly a developer portal -- pretty standard use case. |
| [BetterUp](https://betterup.com) | [Jordan Hochenbaum](mailto:jordan.hochenbaum@betterup.co) | We're starting to use Backstage as the central hub for service discovery, documentation, and develop experience. |
@@ -202,7 +202,7 @@ _You can do this by using the [Adopter form](https://form.typeform.com/to/zcOaKi
| [Skillz](https://skillz.com/) | [Peiman Jafari](https://github.com/peimanja) | Internal developers portal for technical documentations, components ownership and relationship, software templates and integrations with internal tools |
| [Telus](https://www.telus.com/en/) | [Leo Li](mailto:leo.li@telus.com), [Laurent Robichaud](mailto:laurent.robichaud@telus.com), [Seb Barre](https://github.com/sbarre) | Simplifying the developer experience through centralized team member portals. Our current focus includes the adoption of Tech Docs, Software Catalog, Software Templates, the plethora of plugins, and contributing features back to Backstage. 🤖 |
| [Fidelity Investments](https://fidelity.com) | [Ankita Upadhyay](mailto:ankita.upadhyay@fmr.com) | Getting started with the adoption for Monorepo projects |
| [Verisk](https://verisk.com) | [Callen Barton](mailto:cbarton@verisk.com) | Developer portal to quickly create and deploy microservices. |
| [Verisk](https://verisk.com) | [Callen Barton](mailto:#xw_architecture@verisk.com), [Kevin Johnson](mailto:#xw_architecture@verisk.com) | Developer portal to quickly create and deploy microservices. |
| [iodigital](https://iodigital.com) | [Jan-Willem Mulder](mailto:jan-willem.mulder@iodigital.com) | Internal developer portal for discovery of applications, projects and teams. Using several plugins like the Software Catalog and Tech Insights for promoting best practices and supporting our SDLC toolchain |
| [Fanatics](https://www.fanaticsinc.com/) | [Rory Scott](mailto:rscott@fanatics.com) | Internal Portal consolidating documentation, making it easier to manage applications, internal developer community platform, and self-service cloud infrastructure + pipelines. |
| [Appfolio](https://appfolio.com) | [Andy Vaughn](mailto:andy.vaughn@appfolio.com) | Internal software catalog, tech radar, documentation portal to disambiguate software and domain ownership, foster exploration of available developer platform services and tools, improve communication, democratize documentation and knowledge sharing, and coordinate the software lifecycle; all in service of a best-in-class developer experience. |
+1 -1
View File
@@ -65,7 +65,7 @@ the local `auth.environment` setting will be selected.
> and access to a Backstage Identity Token, which can be passed to backend
> plugins.
Using an authentication provide for sign-in is something you need to configure
Using an authentication provider for sign-in is something you need to configure
both in the frontend app, as well as the `auth` backend plugin. For information
on how to configure the backend app, see [Sign-in Identities and Resolvers](./identity-resolver.md).
The rest of this section will focus on how to configure sign-in for the frontend app.
@@ -156,15 +156,16 @@ export default async function createPlugin(
Here is a list of Open Source custom actions that you can add to your Backstage
scaffolder backend:
| Name | Package | Owner |
| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- |
| Yeoman | [plugin-scaffolder-backend-module-yeoman](https://www.npmjs.com/package/@backstage/plugin-scaffolder-backend-module-yeoman) | [Backstage](https://backstage.io) |
| Cookiecutter | [plugin-scaffolder-backend-module-cookiecutter](https://www.npmjs.com/package/@backstage/plugin-scaffolder-backend-module-cookiecutter) | [Backstage](https://backstage.io) |
| Rails | [plugin-scaffolder-backend-module-rails](https://www.npmjs.com/package/@backstage/plugin-scaffolder-backend-module-rails) | [Backstage](https://backstage.io) |
| HTTP requests | [scaffolder-backend-module-http-request](https://www.npmjs.com/package/@roadiehq/scaffolder-backend-module-http-request) | [Roadie](https://roadie.io) |
| Utility actions | [scaffolder-backend-module-utils](https://www.npmjs.com/package/@roadiehq/scaffolder-backend-module-utils) | [Roadie](https://roadie.io) |
| AWS cli actions | [scaffolder-backend-module-aws](https://www.npmjs.com/package/@roadiehq/scaffolder-backend-module-aws) | [Roadie](https://roadie.io) |
| Scaffolder .NET Actions | [plugin-scaffolder-dotnet-backend](https://www.npmjs.com/package/@plusultra/plugin-scaffolder-dotnet-backend) | [Alef Carlos](https://github.com/alefcarlos) |
| Scaffolder Git Actions | [plugin-scaffolder-git-actions](https://www.npmjs.com/package/@mdude2314/backstage-plugin-scaffolder-git-actions) | [Drew Hill](https://github.com/arhill05) |
| Name | Package | Owner |
| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------ |
| Yeoman | [plugin-scaffolder-backend-module-yeoman](https://www.npmjs.com/package/@backstage/plugin-scaffolder-backend-module-yeoman) | [Backstage](https://backstage.io) |
| Cookiecutter | [plugin-scaffolder-backend-module-cookiecutter](https://www.npmjs.com/package/@backstage/plugin-scaffolder-backend-module-cookiecutter) | [Backstage](https://backstage.io) |
| Rails | [plugin-scaffolder-backend-module-rails](https://www.npmjs.com/package/@backstage/plugin-scaffolder-backend-module-rails) | [Backstage](https://backstage.io) |
| HTTP requests | [scaffolder-backend-module-http-request](https://www.npmjs.com/package/@roadiehq/scaffolder-backend-module-http-request) | [Roadie](https://roadie.io) |
| Utility actions | [scaffolder-backend-module-utils](https://www.npmjs.com/package/@roadiehq/scaffolder-backend-module-utils) | [Roadie](https://roadie.io) |
| AWS cli actions | [scaffolder-backend-module-aws](https://www.npmjs.com/package/@roadiehq/scaffolder-backend-module-aws) | [Roadie](https://roadie.io) |
| Scaffolder .NET Actions | [plugin-scaffolder-dotnet-backend](https://www.npmjs.com/package/@plusultra/plugin-scaffolder-dotnet-backend) | [Alef Carlos](https://github.com/alefcarlos) |
| Scaffolder Git Actions | [plugin-scaffolder-git-actions](https://www.npmjs.com/package/@mdude2314/backstage-plugin-scaffolder-git-actions) | [Drew Hill](https://github.com/arhill05) |
| Azure Pipeline Actions | [scaffolder-backend-module-azure-pipelines](https://www.npmjs.com/package/@parfuemerie-douglas/scaffolder-backend-module-azure-pipelines) | [Parfümerie Douglas](https://github.com/Parfuemerie-Douglas) |
Have fun! 🚀
+3 -1
View File
@@ -49,6 +49,8 @@ The api for providing custom rules may differ between plugins, but there should
// packages/backend/src/plugins/catalog.ts
import { isInSystemRule } from './permission';
// The CatalogBuilder with the addPermissionRules function is in the alpha path
import { CatalogBuilder } from '@backstage/plugin-catalog-backend/alpha';
...
@@ -56,7 +58,7 @@ export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
const builder = await CatalogBuilder.create(env);
builder.addPermissionRules(isInSystem);
builder.addPermissionRules(isInSystemRule);
...
return router;
}
+1 -4
View File
@@ -77,10 +77,7 @@ export default async function createPlugin(
logger: env.logger,
discovery: env.discovery,
policy: new TestPermissionPolicy(),
identity: IdentityClient.create({
discovery: env.discovery,
issuer: await env.discovery.getExternalBaseUrl('auth'),
}),
identity: env.identity,
});
}
```
File diff suppressed because it is too large Load Diff
+19
View File
@@ -73,4 +73,23 @@ The `--production` flag to `yarn install` has been removed in Yarn 3, instead yo
RUN yarn workspaces focus --all --production && rm -rf "$(yarn cache clean)"
```
Additionally, `yarn config` has been reworked from being able to store any arbitrary key-value pairs to only supporting a handful of predefined pairs. Previously, we would set our preferred `python3` interpreter to work around [any issues related to node-gyp](https://github.com/backstage/backstage/issues/11583) so we need to provide an appropriate substitute.
```diff
FROM node:16-bullseye-slim
+# Set Python interpreter for `node-gyp` to use
+ENV PYTHON /usr/bin/python3
# Install sqlite3 dependencies. You can skip this if you don't use sqlite3 in the image,
# in which case you should also move better-sqlite3 to "devDependencies" in package.json.
RUN apt-get update && \
apt-get install -y --no-install-recommends libsqlite3-dev python3 build-essential && \
- rm -rf /var/lib/apt/lists/* && \
- yarn config set python /usr/bin/python3
+ rm -rf /var/lib/apt/lists/*
```
You'll want to make sure that the `PYTHON` environment variable is declared relatively early, before any instances of `Yarn` are invoked as `node-gyp` is indirectly triggered by some modules during installation.
If you have any internal CLI tools in your project that are exposed through `"bin"` entries in `package.json`, then you'll need to add these packages as dependencies in your project root `package.json`. This is to make sure Yarn picks up the executables and makes them available through `yarn <executable>`.
+1 -1
View File
@@ -45,7 +45,7 @@
"@types/react": "^17",
"@types/react-dom": "^17"
},
"version": "1.6.0-next.2",
"version": "1.6.0-next.3",
"dependencies": {
"@manypkg/get-packages": "^1.1.3",
"@microsoft/api-documenter": "^7.17.11",
+12
View File
@@ -1,5 +1,17 @@
# @backstage/app-defaults
## 1.0.6-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- d9e39544be: Add missing peer dependencies
- Updated dependencies
- @backstage/core-app-api@1.1.0-next.3
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/plugin-permission-react@0.4.5-next.2
## 1.0.6-next.1
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/app-defaults",
"description": "Provides the default wiring of a Backstage App",
"version": "1.0.6-next.1",
"version": "1.0.6-next.2",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
@@ -32,10 +32,10 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/core-app-api": "^1.1.0-next.1",
"@backstage/core-components": "^0.11.1-next.1",
"@backstage/core-plugin-api": "^1.0.6-next.1",
"@backstage/plugin-permission-react": "^0.4.5-next.1",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/plugin-permission-react": "^0.4.5-next.2",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1"
@@ -47,8 +47,8 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/test-utils": "^1.2.0-next.1",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@types/node": "^16.11.26",
+56
View File
@@ -1,5 +1,61 @@
# example-app
## 0.2.75-next.3
### Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.1.4-next.2
- @backstage/app-defaults@1.0.6-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/config@1.0.2-next.0
- @backstage/core-app-api@1.1.0-next.3
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/integration-react@1.1.4-next.2
- @backstage/plugin-airbrake@0.3.9-next.3
- @backstage/plugin-apache-airflow@0.2.2-next.3
- @backstage/plugin-api-docs@0.8.9-next.3
- @backstage/plugin-azure-devops@0.2.0-next.3
- @backstage/plugin-badges@0.2.33-next.3
- @backstage/plugin-catalog-graph@0.2.21-next.2
- @backstage/plugin-catalog-import@0.8.12-next.3
- @backstage/plugin-circleci@0.3.9-next.3
- @backstage/plugin-cloudbuild@0.3.9-next.3
- @backstage/plugin-code-coverage@0.2.2-next.3
- @backstage/plugin-cost-insights@0.11.31-next.3
- @backstage/plugin-dynatrace@0.2.0-next.3
- @backstage/plugin-explore@0.3.40-next.3
- @backstage/plugin-gcalendar@0.3.5-next.3
- @backstage/plugin-gcp-projects@0.3.28-next.3
- @backstage/plugin-github-actions@0.5.9-next.3
- @backstage/plugin-gocd@0.1.15-next.2
- @backstage/plugin-graphiql@0.2.41-next.3
- @backstage/plugin-home@0.4.25-next.3
- @backstage/plugin-jenkins@0.7.8-next.3
- @backstage/plugin-kafka@0.3.9-next.3
- @backstage/plugin-kubernetes@0.7.2-next.3
- @backstage/plugin-lighthouse@0.3.9-next.3
- @backstage/plugin-newrelic@0.3.27-next.3
- @backstage/plugin-org@0.5.9-next.3
- @backstage/plugin-pagerduty@0.5.2-next.3
- @backstage/plugin-permission-react@0.4.5-next.2
- @backstage/plugin-rollbar@0.4.9-next.3
- @backstage/plugin-scaffolder@1.6.0-next.3
- @backstage/plugin-search@1.0.2-next.3
- @backstage/plugin-sentry@0.4.2-next.3
- @backstage/plugin-shortcuts@0.3.1-next.3
- @backstage/plugin-stack-overflow@0.1.5-next.3
- @backstage/plugin-tech-insights@0.3.0-next.3
- @backstage/plugin-tech-radar@0.5.16-next.3
- @backstage/plugin-techdocs@1.3.2-next.3
- @backstage/plugin-techdocs-module-addons-contrib@1.0.4-next.2
- @backstage/plugin-todo@0.2.11-next.3
- @backstage/plugin-user-settings@0.4.8-next.3
- @backstage/cli@0.19.0-next.3
- @backstage/plugin-newrelic-dashboard@0.2.2-next.2
- @backstage/plugin-techdocs-react@1.0.4-next.2
## 0.2.75-next.2
### Patch Changes
+52 -52
View File
@@ -1,65 +1,65 @@
{
"name": "example-app",
"version": "0.2.75-next.2",
"version": "0.2.75-next.3",
"private": true,
"backstage": {
"role": "frontend"
},
"bundled": true,
"dependencies": {
"@backstage/app-defaults": "^1.0.6-next.1",
"@backstage/catalog-model": "^1.1.0",
"@backstage/cli": "^0.19.0-next.2",
"@backstage/config": "^1.0.1",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/integration-react": "^1.1.4-next.1",
"@backstage/plugin-airbrake": "^0.3.9-next.2",
"@backstage/plugin-apache-airflow": "^0.2.2-next.2",
"@backstage/plugin-api-docs": "^0.8.9-next.2",
"@backstage/plugin-azure-devops": "^0.2.0-next.2",
"@backstage/plugin-badges": "^0.2.33-next.2",
"@backstage/app-defaults": "^1.0.6-next.2",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/integration-react": "^1.1.4-next.2",
"@backstage/plugin-airbrake": "^0.3.9-next.3",
"@backstage/plugin-apache-airflow": "^0.2.2-next.3",
"@backstage/plugin-api-docs": "^0.8.9-next.3",
"@backstage/plugin-azure-devops": "^0.2.0-next.3",
"@backstage/plugin-badges": "^0.2.33-next.3",
"@backstage/plugin-catalog-common": "^1.0.6-next.0",
"@backstage/plugin-catalog-graph": "^0.2.21-next.1",
"@backstage/plugin-catalog-import": "^0.8.12-next.2",
"@backstage/plugin-catalog-react": "^1.1.4-next.1",
"@backstage/plugin-circleci": "^0.3.9-next.2",
"@backstage/plugin-cloudbuild": "^0.3.9-next.2",
"@backstage/plugin-code-coverage": "^0.2.2-next.2",
"@backstage/plugin-cost-insights": "^0.11.31-next.2",
"@backstage/plugin-dynatrace": "^0.2.0-next.2",
"@backstage/plugin-explore": "^0.3.40-next.2",
"@backstage/plugin-gcalendar": "^0.3.5-next.2",
"@backstage/plugin-gcp-projects": "^0.3.28-next.2",
"@backstage/plugin-github-actions": "^0.5.9-next.2",
"@backstage/plugin-gocd": "^0.1.15-next.1",
"@backstage/plugin-graphiql": "^0.2.41-next.2",
"@backstage/plugin-home": "^0.4.25-next.2",
"@backstage/plugin-jenkins": "^0.7.8-next.2",
"@backstage/plugin-kafka": "^0.3.9-next.2",
"@backstage/plugin-kubernetes": "^0.7.2-next.2",
"@backstage/plugin-lighthouse": "^0.3.9-next.2",
"@backstage/plugin-newrelic": "^0.3.27-next.2",
"@backstage/plugin-newrelic-dashboard": "^0.2.2-next.1",
"@backstage/plugin-org": "^0.5.9-next.2",
"@backstage/plugin-pagerduty": "0.5.2-next.2",
"@backstage/plugin-permission-react": "^0.4.5-next.1",
"@backstage/plugin-rollbar": "^0.4.9-next.2",
"@backstage/plugin-scaffolder": "^1.6.0-next.2",
"@backstage/plugin-search": "^1.0.2-next.2",
"@backstage/plugin-catalog-graph": "^0.2.21-next.2",
"@backstage/plugin-catalog-import": "^0.8.12-next.3",
"@backstage/plugin-catalog-react": "^1.1.4-next.2",
"@backstage/plugin-circleci": "^0.3.9-next.3",
"@backstage/plugin-cloudbuild": "^0.3.9-next.3",
"@backstage/plugin-code-coverage": "^0.2.2-next.3",
"@backstage/plugin-cost-insights": "^0.11.31-next.3",
"@backstage/plugin-dynatrace": "^0.2.0-next.3",
"@backstage/plugin-explore": "^0.3.40-next.3",
"@backstage/plugin-gcalendar": "^0.3.5-next.3",
"@backstage/plugin-gcp-projects": "^0.3.28-next.3",
"@backstage/plugin-github-actions": "^0.5.9-next.3",
"@backstage/plugin-gocd": "^0.1.15-next.2",
"@backstage/plugin-graphiql": "^0.2.41-next.3",
"@backstage/plugin-home": "^0.4.25-next.3",
"@backstage/plugin-jenkins": "^0.7.8-next.3",
"@backstage/plugin-kafka": "^0.3.9-next.3",
"@backstage/plugin-kubernetes": "^0.7.2-next.3",
"@backstage/plugin-lighthouse": "^0.3.9-next.3",
"@backstage/plugin-newrelic": "^0.3.27-next.3",
"@backstage/plugin-newrelic-dashboard": "^0.2.2-next.2",
"@backstage/plugin-org": "^0.5.9-next.3",
"@backstage/plugin-pagerduty": "0.5.2-next.3",
"@backstage/plugin-permission-react": "^0.4.5-next.2",
"@backstage/plugin-rollbar": "^0.4.9-next.3",
"@backstage/plugin-scaffolder": "^1.6.0-next.3",
"@backstage/plugin-search": "^1.0.2-next.3",
"@backstage/plugin-search-common": "^1.0.1-next.0",
"@backstage/plugin-search-react": "^1.1.0-next.2",
"@backstage/plugin-sentry": "^0.4.2-next.2",
"@backstage/plugin-shortcuts": "^0.3.1-next.2",
"@backstage/plugin-stack-overflow": "^0.1.5-next.2",
"@backstage/plugin-tech-insights": "^0.3.0-next.2",
"@backstage/plugin-tech-radar": "^0.5.16-next.2",
"@backstage/plugin-techdocs": "^1.3.2-next.2",
"@backstage/plugin-techdocs-module-addons-contrib": "^1.0.4-next.1",
"@backstage/plugin-techdocs-react": "^1.0.4-next.1",
"@backstage/plugin-todo": "^0.2.11-next.2",
"@backstage/plugin-user-settings": "^0.4.8-next.2",
"@backstage/plugin-sentry": "^0.4.2-next.3",
"@backstage/plugin-shortcuts": "^0.3.1-next.3",
"@backstage/plugin-stack-overflow": "^0.1.5-next.3",
"@backstage/plugin-tech-insights": "^0.3.0-next.3",
"@backstage/plugin-tech-radar": "^0.5.16-next.3",
"@backstage/plugin-techdocs": "^1.3.2-next.3",
"@backstage/plugin-techdocs-module-addons-contrib": "^1.0.4-next.2",
"@backstage/plugin-techdocs-react": "^1.0.4-next.2",
"@backstage/plugin-todo": "^0.2.11-next.3",
"@backstage/plugin-user-settings": "^0.4.8-next.3",
"@backstage/theme": "^0.2.16",
"@internal/plugin-catalog-customized": "0.0.2-next.0",
"@material-ui/core": "^4.12.2",
@@ -80,7 +80,7 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@rjsf/core": "^3.2.1",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.10.1",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/backend-app-api
## 0.2.1-next.2
### Patch Changes
- 854ba37357: Updated to support new `ServiceFactory` formats.
- 409ed984e8: Updated service implementations and backend wiring to support scoped service.
- Updated dependencies
- @backstage/backend-plugin-api@0.1.2-next.2
- @backstage/errors@1.1.1-next.0
- @backstage/backend-common@0.15.1-next.3
- @backstage/backend-tasks@0.3.5-next.1
- @backstage/plugin-permission-node@0.6.5-next.3
## 0.2.1-next.1
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-app-api",
"description": "Core API used by Backstage backend apps",
"version": "0.2.1-next.1",
"version": "0.2.1-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -33,17 +33,17 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/backend-plugin-api": "^0.1.2-next.1",
"@backstage/backend-tasks": "^0.3.5-next.0",
"@backstage/errors": "^1.1.0",
"@backstage/plugin-permission-node": "^0.6.5-next.2",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/backend-plugin-api": "^0.1.2-next.2",
"@backstage/backend-tasks": "^0.3.5-next.1",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/plugin-permission-node": "^0.6.5-next.3",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2"
"@backstage/cli": "^0.19.0-next.3"
},
"files": [
"dist",
+12
View File
@@ -1,5 +1,17 @@
# @backstage/backend-common
## 0.15.1-next.3
### Patch Changes
- 96689fbdcb: Workaround for a rare race condition in tests.
- Updated dependencies
- @backstage/config-loader@1.1.4-next.2
- @backstage/cli-common@0.1.10-next.0
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
- @backstage/integration@1.3.1-next.2
## 0.15.1-next.2
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-common",
"description": "Common functionality library for Backstage backends",
"version": "0.15.1-next.2",
"version": "0.15.1-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -34,11 +34,11 @@
"test:kubernetes": "backstage-cli package test -t KubernetesContainerRunner --no-watch"
},
"dependencies": {
"@backstage/cli-common": "^0.1.9",
"@backstage/config": "^1.0.1",
"@backstage/config-loader": "^1.1.4-next.1",
"@backstage/errors": "^1.1.0",
"@backstage/integration": "^1.3.1-next.1",
"@backstage/cli-common": "^0.1.10-next.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/config-loader": "^1.1.4-next.2",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/integration": "^1.3.1-next.2",
"@backstage/types": "^1.0.0",
"@google-cloud/storage": "^6.0.0",
"@keyv/redis": "^2.2.3",
@@ -94,8 +94,8 @@
}
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.28-next.2",
"@backstage/cli": "^0.19.0-next.2",
"@backstage/backend-test-utils": "^0.1.28-next.3",
"@backstage/cli": "^0.19.0-next.3",
"@types/archiver": "^5.1.0",
"@types/base64-stream": "^1.0.2",
"@types/compression": "^1.7.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/backend-defaults
## 0.1.1-next.1
### Patch Changes
- 854ba37357: Updated to support new `ServiceFactory` formats.
- Updated dependencies
- @backstage/backend-plugin-api@0.1.2-next.2
- @backstage/backend-app-api@0.2.1-next.2
## 0.1.1-next.0
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-defaults",
"description": "Backend defaults used by Backstage backend apps",
"version": "0.1.1-next.0",
"version": "0.1.1-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -32,11 +32,11 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-app-api": "^0.2.1-next.0",
"@backstage/backend-plugin-api": "^0.1.2-next.0"
"@backstage/backend-app-api": "^0.2.1-next.2",
"@backstage/backend-plugin-api": "^0.1.2-next.2"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1"
"@backstage/cli": "^0.19.0-next.3"
},
"files": [
"dist"
+12
View File
@@ -1,5 +1,17 @@
# @backstage/backend-plugin-api
## 0.1.2-next.2
### Patch Changes
- 409ed984e8: Service are now scoped to either `'plugin'` or `'root'` scope. Service factories have been updated to provide dependency instances directly rather than factory functions.
- 854ba37357: The `createServiceFactory` method has been updated to return a higher-order factory that can accept options.
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/plugin-permission-common@0.6.4-next.2
- @backstage/backend-common@0.15.1-next.3
- @backstage/backend-tasks@0.3.5-next.1
## 0.1.2-next.1
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-plugin-api",
"description": "Core API used by Backstage backend plugins",
"version": "0.1.2-next.1",
"version": "0.1.2-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -33,17 +33,17 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/backend-tasks": "^0.3.5-next.0",
"@backstage/config": "^1.0.1",
"@backstage/plugin-permission-common": "^0.6.4-next.1",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/backend-tasks": "^0.3.5-next.1",
"@backstage/config": "^1.0.2-next.0",
"@backstage/plugin-permission-common": "^0.6.4-next.2",
"@types/express": "^4.17.6",
"express": "^4.17.1",
"winston": "^3.2.1",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2"
"@backstage/cli": "^0.19.0-next.3"
},
"files": [
"dist",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/backend-tasks
## 0.3.5-next.1
### Patch Changes
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
- @backstage/backend-common@0.15.1-next.3
## 0.3.5-next.0
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-tasks",
"description": "Common distributed task management library for Backstage backends",
"version": "0.3.5-next.0",
"version": "0.3.5-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -32,9 +32,9 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.1",
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.1.0",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/types": "^1.0.0",
"@types/luxon": "^3.0.0",
"cron": "^2.0.0",
@@ -47,8 +47,8 @@
"zod": "^3.9.5"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.28-next.1",
"@backstage/cli": "^0.19.0-next.1",
"@backstage/backend-test-utils": "^0.1.28-next.3",
"@backstage/cli": "^0.19.0-next.3",
"@types/cron": "^2.0.0",
"wait-for-expect": "^3.0.2"
},
+12
View File
@@ -1,5 +1,17 @@
# @backstage/backend-test-utils
## 0.1.28-next.3
### Patch Changes
- 854ba37357: Updated to support new `ServiceFactory` formats.
- Updated dependencies
- @backstage/backend-plugin-api@0.1.2-next.2
- @backstage/config@1.0.2-next.0
- @backstage/backend-app-api@0.2.1-next.2
- @backstage/cli@0.19.0-next.3
- @backstage/backend-common@0.15.1-next.3
## 0.1.28-next.2
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-test-utils",
"description": "Test helpers library for Backstage backends",
"version": "0.1.28-next.2",
"version": "0.1.28-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -34,11 +34,11 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-app-api": "^0.2.1-next.1",
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/backend-plugin-api": "^0.1.2-next.1",
"@backstage/cli": "^0.19.0-next.2",
"@backstage/config": "^1.0.1",
"@backstage/backend-app-api": "^0.2.1-next.2",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/backend-plugin-api": "^0.1.2-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/config": "^1.0.2-next.0",
"better-sqlite3": "^7.5.0",
"knex": "^2.0.0",
"msw": "^0.47.0",
@@ -48,7 +48,7 @@
"uuid": "^8.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2"
"@backstage/cli": "^0.19.0-next.3"
},
"files": [
"dist",
+40
View File
@@ -1,5 +1,45 @@
# example-backend
## 0.2.75-next.3
### Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.1.0-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/config@1.0.2-next.0
- @backstage/integration@1.3.1-next.2
- @backstage/plugin-permission-common@0.6.4-next.2
- @backstage/plugin-scaffolder-backend-module-rails@0.4.4-next.1
- @backstage/plugin-catalog-backend@1.4.0-next.3
- @backstage/plugin-auth-backend@0.16.0-next.3
- @backstage/backend-common@0.15.1-next.3
- @backstage/plugin-scaffolder-backend@1.6.0-next.3
- @backstage/plugin-badges-backend@0.1.30-next.1
- @backstage/plugin-code-coverage-backend@0.2.2-next.2
- @backstage/plugin-jenkins-backend@0.1.26-next.3
- @backstage/plugin-kubernetes-backend@0.7.2-next.3
- @backstage/plugin-tech-insights-backend@0.5.2-next.2
- @backstage/plugin-techdocs-backend@1.3.0-next.2
- @backstage/plugin-todo-backend@0.1.33-next.2
- example-app@0.2.75-next.3
- @backstage/plugin-kafka-backend@0.2.29-next.1
- @backstage/backend-tasks@0.3.5-next.1
- @backstage/plugin-app-backend@0.3.36-next.3
- @backstage/plugin-auth-node@0.2.5-next.3
- @backstage/plugin-azure-devops-backend@0.3.15-next.2
- @backstage/plugin-graphql-backend@0.1.26-next.3
- @backstage/plugin-permission-backend@0.5.11-next.2
- @backstage/plugin-permission-node@0.6.5-next.3
- @backstage/plugin-proxy-backend@0.2.30-next.2
- @backstage/plugin-rollbar-backend@0.1.33-next.3
- @backstage/plugin-search-backend@1.0.2-next.1
- @backstage/plugin-search-backend-module-elasticsearch@1.0.2-next.2
- @backstage/plugin-search-backend-module-pg@0.4.0-next.2
- @backstage/plugin-search-backend-node@1.0.2-next.2
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.20-next.1
- @backstage/plugin-tech-insights-node@0.3.4-next.1
## 0.2.75-next.2
### Patch Changes
+35 -35
View File
@@ -1,6 +1,6 @@
{
"name": "example-backend",
"version": "0.2.75-next.2",
"version": "0.2.75-next.3",
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -26,40 +26,40 @@
"build-image": "docker build ../.. -f Dockerfile --tag example-backend"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/backend-tasks": "^0.3.5-next.0",
"@backstage/catalog-client": "^1.0.5-next.1",
"@backstage/catalog-model": "^1.1.0",
"@backstage/config": "^1.0.1",
"@backstage/integration": "^1.3.1-next.1",
"@backstage/plugin-app-backend": "^0.3.36-next.2",
"@backstage/plugin-auth-backend": "^0.16.0-next.2",
"@backstage/plugin-auth-node": "^0.2.5-next.2",
"@backstage/plugin-azure-devops-backend": "^0.3.15-next.1",
"@backstage/plugin-badges-backend": "^0.1.30-next.0",
"@backstage/plugin-catalog-backend": "^1.4.0-next.2",
"@backstage/plugin-code-coverage-backend": "^0.2.2-next.1",
"@backstage/plugin-graphql-backend": "^0.1.26-next.2",
"@backstage/plugin-jenkins-backend": "^0.1.26-next.2",
"@backstage/plugin-kafka-backend": "^0.2.29-next.0",
"@backstage/plugin-kubernetes-backend": "^0.7.2-next.2",
"@backstage/plugin-permission-backend": "^0.5.11-next.1",
"@backstage/plugin-permission-common": "^0.6.4-next.1",
"@backstage/plugin-permission-node": "^0.6.5-next.2",
"@backstage/plugin-proxy-backend": "^0.2.30-next.1",
"@backstage/plugin-rollbar-backend": "^0.1.33-next.2",
"@backstage/plugin-scaffolder-backend": "^1.6.0-next.2",
"@backstage/plugin-scaffolder-backend-module-rails": "^0.4.4-next.0",
"@backstage/plugin-search-backend": "^1.0.2-next.0",
"@backstage/plugin-search-backend-module-elasticsearch": "^1.0.2-next.1",
"@backstage/plugin-search-backend-module-pg": "^0.4.0-next.1",
"@backstage/plugin-search-backend-node": "^1.0.2-next.1",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/backend-tasks": "^0.3.5-next.1",
"@backstage/catalog-client": "^1.1.0-next.2",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/integration": "^1.3.1-next.2",
"@backstage/plugin-app-backend": "^0.3.36-next.3",
"@backstage/plugin-auth-backend": "^0.16.0-next.3",
"@backstage/plugin-auth-node": "^0.2.5-next.3",
"@backstage/plugin-azure-devops-backend": "^0.3.15-next.2",
"@backstage/plugin-badges-backend": "^0.1.30-next.1",
"@backstage/plugin-catalog-backend": "^1.4.0-next.3",
"@backstage/plugin-code-coverage-backend": "^0.2.2-next.2",
"@backstage/plugin-graphql-backend": "^0.1.26-next.3",
"@backstage/plugin-jenkins-backend": "^0.1.26-next.3",
"@backstage/plugin-kafka-backend": "^0.2.29-next.1",
"@backstage/plugin-kubernetes-backend": "^0.7.2-next.3",
"@backstage/plugin-permission-backend": "^0.5.11-next.2",
"@backstage/plugin-permission-common": "^0.6.4-next.2",
"@backstage/plugin-permission-node": "^0.6.5-next.3",
"@backstage/plugin-proxy-backend": "^0.2.30-next.2",
"@backstage/plugin-rollbar-backend": "^0.1.33-next.3",
"@backstage/plugin-scaffolder-backend": "^1.6.0-next.3",
"@backstage/plugin-scaffolder-backend-module-rails": "^0.4.4-next.1",
"@backstage/plugin-search-backend": "^1.0.2-next.1",
"@backstage/plugin-search-backend-module-elasticsearch": "^1.0.2-next.2",
"@backstage/plugin-search-backend-module-pg": "^0.4.0-next.2",
"@backstage/plugin-search-backend-node": "^1.0.2-next.2",
"@backstage/plugin-search-common": "^1.0.1-next.0",
"@backstage/plugin-tech-insights-backend": "^0.5.2-next.1",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.20-next.0",
"@backstage/plugin-tech-insights-node": "^0.3.4-next.0",
"@backstage/plugin-techdocs-backend": "^1.3.0-next.1",
"@backstage/plugin-todo-backend": "^0.1.33-next.1",
"@backstage/plugin-tech-insights-backend": "^0.5.2-next.2",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.20-next.1",
"@backstage/plugin-tech-insights-node": "^0.3.4-next.1",
"@backstage/plugin-techdocs-backend": "^1.3.0-next.2",
"@backstage/plugin-todo-backend": "^0.1.33-next.2",
"@gitbeaker/node": "^35.1.0",
"@octokit/rest": "^19.0.3",
"azure-devops-node-api": "^11.0.1",
@@ -76,7 +76,7 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/dockerode": "^3.3.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/catalog-client
## 1.1.0-next.2
### Minor Changes
- 65d1d4343f: Adding `validateEntity` method that calls `/validate-entity` endpoint.
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/catalog-model@1.1.1-next.0
- @backstage/errors@1.1.1-next.0
## 1.0.5-next.1
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/catalog-client",
"description": "An isomorphic client for the catalog backend",
"version": "1.0.5-next.1",
"version": "1.1.0-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,12 +32,12 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/catalog-model": "^1.1.0",
"@backstage/errors": "^1.1.0",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/errors": "^1.1.1-next.0",
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"msw": "^0.47.0"
},
"files": [
+9
View File
@@ -1,5 +1,14 @@
# @backstage/catalog-model
## 1.1.1-next.0
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
## 1.1.0
### Minor Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/catalog-model",
"description": "Types and validators that help describe the model of a Backstage Catalog",
"version": "1.1.0",
"version": "1.1.1-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,8 +33,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.1.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/types": "^1.0.0",
"ajv": "^8.10.0",
"json-schema": "^0.4.0",
@@ -42,7 +42,7 @@
"uuid": "^8.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/cli": "^0.19.0-next.3",
"@types/json-schema": "^7.0.5",
"@types/lodash": "^4.14.151",
"yaml": "^2.0.0"
+6
View File
@@ -1,5 +1,11 @@
# @backstage/cli-common
## 0.1.10-next.0
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
## 0.1.9
### Patch Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/cli-common",
"description": "Common functionality used by cli, backend, and create-app",
"version": "0.1.9",
"version": "0.1.10-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -32,7 +32,7 @@
"start": "backstage-cli package start"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/cli": "^0.19.0-next.3",
"@types/node": "^16.0.0"
},
"files": [
+13
View File
@@ -1,5 +1,18 @@
# @backstage/cli
## 0.19.0-next.3
### Patch Changes
- 7d47def9c4: Added dependency on `@types/jest` v27. The `@types/jest` dependency has also been removed from the plugin template and should be removed from any of your own internal packages. If you wish to override the version of `@types/jest` or `jest`, use Yarn resolutions.
- a7e82c9b01: Updated `versions:bump` command to be compatible with Yarn 3.
- Updated dependencies
- @backstage/config-loader@1.1.4-next.2
- @backstage/cli-common@0.1.10-next.0
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
- @backstage/release-manifests@0.0.6-next.2
## 0.19.0-next.2
### Patch Changes
+13 -13
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/cli",
"description": "CLI for developing Backstage plugins and apps",
"version": "0.19.0-next.2",
"version": "0.19.0-next.3",
"publishConfig": {
"access": "public"
},
@@ -30,11 +30,11 @@
"backstage-cli": "bin/backstage-cli"
},
"dependencies": {
"@backstage/cli-common": "^0.1.9",
"@backstage/config": "^1.0.1",
"@backstage/config-loader": "^1.1.4-next.1",
"@backstage/errors": "^1.1.0",
"@backstage/release-manifests": "^0.0.6-next.1",
"@backstage/cli-common": "^0.1.10-next.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/config-loader": "^1.1.4-next.2",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/release-manifests": "^0.0.6-next.2",
"@backstage/types": "^1.0.0",
"@manypkg/get-packages": "^1.1.3",
"@octokit/request": "^6.0.0",
@@ -129,13 +129,13 @@
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/config": "^1.0.1",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@backstage/theme": "^0.2.16",
"@types/diff": "^5.0.0",
"@types/express": "^4.17.6",
+7
View File
@@ -1,5 +1,12 @@
# @backstage/codemods
## 0.1.39-next.0
### Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.10-next.0
## 0.1.38
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/codemods",
"description": "A collection of codemods for Backstage projects",
"version": "0.1.38",
"version": "0.1.39-next.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js"
@@ -25,21 +25,21 @@
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"prepack": "backstage-cli prepack",
"postpack": "backstage-cli postpack",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean"
},
"bin": {
"backstage-codemods": "bin/backstage-codemods"
},
"dependencies": {
"@backstage/cli-common": "^0.1.9",
"@backstage/cli-common": "^0.1.10-next.0",
"chalk": "^4.0.0",
"jscodeshift": "^0.13.0",
"jscodeshift-add-imports": "^1.0.10"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/cli": "^0.19.0-next.3",
"@types/jscodeshift": "^0.11.0",
"@types/node": "^16.11.26",
"commander": "^9.1.0",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/config-loader
## 1.1.4-next.2
### Patch Changes
- 5ecca7e44b: No longer log when reloading remote config.
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/cli-common@0.1.10-next.0
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
## 1.1.4-next.1
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/config-loader",
"description": "Config loading functionality used by Backstage backend, and CLI",
"version": "1.1.4-next.1",
"version": "1.1.4-next.2",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
@@ -33,9 +33,9 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/cli-common": "^0.1.9",
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.1.0",
"@backstage/cli-common": "^0.1.10-next.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/types": "^1.0.0",
"@types/json-schema": "^7.0.6",
"ajv": "^8.10.0",
@@ -50,7 +50,7 @@
"yup": "^0.32.9"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/json-schema-merge-allof": "^0.6.0",
"@types/mock-fs": "^4.10.0",
"@types/node": "^16.11.26",
+6
View File
@@ -1,5 +1,11 @@
# @backstage/config
## 1.0.2-next.0
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
## 1.0.1
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/config",
"description": "Config API used by Backstage core, backend, and CLI",
"version": "1.0.1",
"version": "1.0.2-next.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
@@ -36,8 +36,8 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/test-utils": "^1.2.0-next.1",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/test-utils": "^1.2.0-next.3",
"@types/node": "^16.0.0"
},
"files": [
+9
View File
@@ -1,5 +1,14 @@
# @backstage/core-app-api
## 1.1.0-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/core-plugin-api@1.0.6-next.3
## 1.1.0-next.2
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-app-api",
"description": "Core app API used by Backstage apps",
"version": "1.1.0-next.2",
"version": "1.1.0-next.3",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
@@ -32,8 +32,8 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/types": "^1.0.0",
"@backstage/version-bridge": "^1.0.1",
"@types/prop-types": "^15.7.3",
@@ -48,8 +48,8 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/core-components
## 0.11.1-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/errors@1.1.1-next.0
## 0.11.1-next.2
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-components",
"description": "Core components used by Backstage plugins and apps",
"version": "0.11.1-next.2",
"version": "0.11.1-next.3",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
@@ -32,9 +32,9 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/errors": "^1.1.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/theme": "^0.2.16",
"@backstage/version-bridge": "^1.0.1",
"@material-table/core": "^3.1.0",
@@ -78,9 +78,9 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/core-plugin-api
## 1.0.6-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/config@1.0.2-next.0
## 1.0.6-next.2
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/core-plugin-api",
"description": "Core API used by Backstage plugins",
"version": "1.0.6-next.2",
"version": "1.0.6-next.3",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
@@ -33,7 +33,7 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/config": "^1.0.2-next.0",
"@backstage/types": "^1.0.0",
"@backstage/version-bridge": "^1.0.1",
"history": "^5.0.0",
@@ -46,9 +46,9 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/create-app
## 0.4.31-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/cli-common@0.1.10-next.0
## 0.4.31-next.2
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "A CLI that helps you create your own Backstage app",
"version": "0.4.31-next.2",
"version": "0.4.31-next.3",
"publishConfig": {
"access": "public"
},
@@ -32,7 +32,7 @@
"start": "nodemon --"
},
"dependencies": {
"@backstage/cli-common": "^0.1.9",
"@backstage/cli-common": "^0.1.10-next.0",
"chalk": "^4.0.0",
"commander": "^9.1.0",
"fs-extra": "10.1.0",
@@ -42,7 +42,7 @@
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^8.1.3",
"@types/node": "^16.11.26",
+16
View File
@@ -1,5 +1,21 @@
# @backstage/dev-utils
## 1.0.6-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- 329ed2b9c7: Fixed routing when using React Router v6 stable.
- Updated dependencies
- @backstage/plugin-catalog-react@1.1.4-next.2
- @backstage/app-defaults@1.0.6-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/core-app-api@1.1.0-next.3
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/integration-react@1.1.4-next.2
- @backstage/test-utils@1.2.0-next.3
## 1.0.6-next.1
### Patch Changes
+10 -10
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/dev-utils",
"description": "Utilities for developing Backstage plugins.",
"version": "1.0.6-next.1",
"version": "1.0.6-next.2",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
@@ -32,14 +32,14 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/app-defaults": "^1.0.6-next.1",
"@backstage/catalog-model": "^1.1.0",
"@backstage/core-app-api": "^1.1.0-next.1",
"@backstage/core-components": "^0.11.1-next.1",
"@backstage/core-plugin-api": "^1.0.6-next.1",
"@backstage/integration-react": "^1.1.4-next.0",
"@backstage/plugin-catalog-react": "^1.1.4-next.1",
"@backstage/test-utils": "^1.2.0-next.1",
"@backstage/app-defaults": "^1.0.6-next.2",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/integration-react": "^1.1.4-next.2",
"@backstage/plugin-catalog-react": "^1.1.4-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -57,7 +57,7 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/cli": "^0.19.0-next.3",
"@types/node": "^16.0.0"
},
"files": [
+3 -3
View File
@@ -27,9 +27,9 @@
},
"bin": "bin/e2e-test",
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/cli-common": "^0.1.9-next.0",
"@backstage/errors": "^1.1.0-next.0",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/cli-common": "^0.1.10-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^16.11.26",
"@types/puppeteer": "^5.4.4",
+6
View File
@@ -1,5 +1,11 @@
# @backstage/errors
## 1.1.1-next.0
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
## 1.1.0
### Minor Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/errors",
"description": "Common utilities for error handling within Backstage",
"version": "1.1.0",
"version": "1.1.1-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -37,7 +37,7 @@
"serialize-error": "^8.0.1"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1"
"@backstage/cli": "^0.19.0-next.3"
},
"files": [
"dist"
+11
View File
@@ -1,5 +1,16 @@
# @backstage/integration-react
## 1.1.4-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/integration@1.3.1-next.2
## 1.1.4-next.1
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration-react",
"description": "Frontend package for managing integrations towards external systems",
"version": "1.1.4-next.1",
"version": "1.1.4-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -23,10 +23,10 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/integration": "^1.3.1-next.1",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/integration": "^1.3.1-next.2",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -37,9 +37,9 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/integration
## 1.3.1-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- f76f22c649: Improved caching around github app tokens.
Tokens are now cached for 50 minutes, not 10.
Calls to get app installations are also included in this cache.
If you have more than one github app configured, consider adding `allowedInstallationOwners` to your apps configuration to gain the most benefit from these performance changes.
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
## 1.3.1-next.1
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration",
"description": "Helpers for managing integrations towards external systems",
"version": "1.3.1-next.1",
"version": "1.3.1-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,8 +32,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.1.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@octokit/auth-app": "^4.0.0",
"@octokit/rest": "^19.0.3",
"cross-fetch": "^3.1.5",
@@ -42,9 +42,9 @@
"luxon": "^3.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/config-loader": "^1.1.4-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/config-loader": "^1.1.4-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@types/luxon": "^3.0.0",
"msw": "^0.47.0"
},
+6
View File
@@ -1,5 +1,11 @@
# @backstage/release-manifests
## 0.0.6-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
## 0.0.6-next.1
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/release-manifests",
"description": "Helper library for receiving release manifests",
"version": "0.0.6-next.1",
"version": "0.0.6-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -35,8 +35,8 @@
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/test-utils": "^1.2.0-next.3",
"@types/node": "^16.0.0",
"msw": "^0.47.0"
},
@@ -1,5 +1,23 @@
# techdocs-cli-embedded-app
## 0.2.74-next.2
### Patch Changes
- Updated dependencies
- @backstage/app-defaults@1.0.6-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/config@1.0.2-next.0
- @backstage/core-app-api@1.1.0-next.3
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/integration-react@1.1.4-next.2
- @backstage/test-utils@1.2.0-next.3
- @backstage/plugin-catalog@1.5.1-next.3
- @backstage/plugin-techdocs@1.3.2-next.3
- @backstage/cli@0.19.0-next.3
- @backstage/plugin-techdocs-react@1.0.4-next.2
## 0.2.74-next.1
### Patch Changes
+14 -14
View File
@@ -1,24 +1,24 @@
{
"name": "techdocs-cli-embedded-app",
"version": "0.2.74-next.1",
"version": "0.2.74-next.2",
"private": true,
"backstage": {
"role": "frontend"
},
"bundled": true,
"dependencies": {
"@backstage/app-defaults": "^1.0.6-next.1",
"@backstage/catalog-model": "^1.1.0",
"@backstage/cli": "^0.19.0-next.1",
"@backstage/config": "^1.0.1",
"@backstage/core-app-api": "^1.1.0-next.1",
"@backstage/core-components": "^0.11.1-next.1",
"@backstage/core-plugin-api": "^1.0.6-next.1",
"@backstage/integration-react": "^1.1.4-next.0",
"@backstage/plugin-catalog": "^1.5.1-next.1",
"@backstage/plugin-techdocs": "^1.3.2-next.1",
"@backstage/plugin-techdocs-react": "^1.0.4-next.1",
"@backstage/test-utils": "^1.2.0-next.1",
"@backstage/app-defaults": "^1.0.6-next.2",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/integration-react": "^1.1.4-next.2",
"@backstage/plugin-catalog": "^1.5.1-next.3",
"@backstage/plugin-techdocs": "^1.3.2-next.3",
"@backstage/plugin-techdocs-react": "^1.0.4-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
@@ -30,7 +30,7 @@
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1",
"@backstage/cli": "^0.19.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+12
View File
@@ -1,5 +1,17 @@
# @techdocs/cli
## 1.2.1-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/catalog-model@1.1.1-next.0
- @backstage/cli-common@0.1.10-next.0
- @backstage/config@1.0.2-next.0
- @backstage/backend-common@0.15.1-next.3
- @backstage/plugin-techdocs-node@1.4.0-next.2
## 1.2.1-next.1
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@techdocs/cli",
"description": "Utility CLI for managing TechDocs sites in Backstage.",
"version": "1.2.1-next.1",
"version": "1.2.1-next.2",
"publishConfig": {
"access": "public"
},
@@ -36,7 +36,7 @@
"techdocs-cli": "bin/techdocs-cli"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.6",
"@types/http-proxy": "^1.17.4",
@@ -60,11 +60,11 @@
"ext": "ts"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/catalog-model": "^1.1.0",
"@backstage/cli-common": "^0.1.9",
"@backstage/config": "^1.0.1",
"@backstage/plugin-techdocs-node": "^1.4.0-next.1",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/cli-common": "^0.1.10-next.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/plugin-techdocs-node": "^1.4.0-next.2",
"@types/dockerode": "^3.3.0",
"commander": "^9.1.0",
"dockerode": "^3.3.1",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/test-utils
## 1.2.0-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- d9e39544be: Add missing peer dependencies
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/core-app-api@1.1.0-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/plugin-permission-common@0.6.4-next.2
- @backstage/plugin-permission-react@0.4.5-next.2
## 1.2.0-next.2
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/test-utils",
"description": "Utilities to test Backstage plugins and apps.",
"version": "1.2.0-next.2",
"version": "1.2.0-next.3",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
@@ -32,11 +32,11 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/plugin-permission-common": "^0.6.4-next.1",
"@backstage/plugin-permission-react": "^0.4.5-next.1",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/plugin-permission-common": "^0.6.4-next.2",
"@backstage/plugin-permission-react": "^0.4.5-next.2",
"@backstage/theme": "^0.2.16",
"@backstage/types": "^1.0.0",
"@material-ui/core": "^4.12.2",
@@ -55,7 +55,7 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/node": "^16.11.26",
"msw": "^0.47.0"
},
+13
View File
@@ -1,5 +1,18 @@
# @backstage/plugin-adr-backend
## 0.2.1-next.3
### Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.1.0-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
- @backstage/integration@1.3.1-next.2
- @backstage/backend-common@0.15.1-next.3
- @backstage/plugin-adr-common@0.2.1-next.1
## 0.2.1-next.2
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-adr-backend",
"version": "0.2.1-next.2",
"version": "0.2.1-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -28,13 +28,13 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/catalog-client": "^1.0.5-next.1",
"@backstage/catalog-model": "^1.1.0",
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.1.0",
"@backstage/integration": "^1.3.1-next.1",
"@backstage/plugin-adr-common": "^0.2.1-next.0",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/catalog-client": "^1.1.0-next.2",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/integration": "^1.3.1-next.2",
"@backstage/plugin-adr-common": "^0.2.1-next.1",
"@backstage/plugin-search-common": "^1.0.1-next.0",
"luxon": "^3.0.0",
"marked": "^4.0.14",
@@ -43,7 +43,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/marked": "^4.0.0",
"@types/supertest": "^2.0.8",
"msw": "^0.47.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-adr-common
## 0.2.1-next.1
### Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.1-next.0
- @backstage/integration@1.3.1-next.2
## 0.2.1-next.0
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-adr-common",
"description": "Common functionalities for the adr plugin",
"version": "0.2.1-next.0",
"version": "0.2.1-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,12 +29,12 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/catalog-model": "^1.1.0",
"@backstage/integration": "^1.3.1-next.0",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/integration": "^1.3.1-next.2",
"@backstage/plugin-search-common": "^1.0.1-next.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.1"
"@backstage/cli": "^0.19.0-next.3"
},
"files": [
"dist"
+13
View File
@@ -1,5 +1,18 @@
# @backstage/plugin-adr
## 0.2.1-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/plugin-catalog-react@1.1.4-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/integration-react@1.1.4-next.2
- @backstage/plugin-adr-common@0.2.1-next.1
## 0.2.1-next.2
### Patch Changes
+11 -11
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-adr",
"version": "0.2.1-next.2",
"version": "0.2.1-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,12 +22,12 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/catalog-model": "^1.1.0",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/integration-react": "^1.1.4-next.1",
"@backstage/plugin-adr-common": "^0.2.1-next.0",
"@backstage/plugin-catalog-react": "^1.1.4-next.1",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/integration-react": "^1.1.4-next.2",
"@backstage/plugin-adr-common": "^0.2.1-next.1",
"@backstage/plugin-catalog-react": "^1.1.4-next.2",
"@backstage/plugin-search-common": "^1.0.1-next.0",
"@backstage/plugin-search-react": "^1.1.0-next.2",
"@backstage/theme": "^0.2.16",
@@ -45,10 +45,10 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+8
View File
@@ -1,5 +1,13 @@
# @backstage/plugin-airbrake-backend
## 0.2.9-next.3
### Patch Changes
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/backend-common@0.15.1-next.3
## 0.2.9-next.2
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-airbrake-backend",
"version": "0.2.9-next.2",
"version": "0.2.9-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,8 +22,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/config": "^1.0.1",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/config": "^1.0.2-next.0",
"@types/express": "*",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
@@ -32,7 +32,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/http-proxy-middleware": "^0.19.3",
"@types/supertest": "^2.0.8",
"msw": "^0.47.0",
+13
View File
@@ -1,5 +1,18 @@
# @backstage/plugin-airbrake
## 0.3.9-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/plugin-catalog-react@1.1.4-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/dev-utils@1.0.6-next.2
- @backstage/test-utils@1.2.0-next.3
## 0.3.9-next.2
### Patch Changes
+11 -11
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-airbrake",
"version": "0.3.9-next.2",
"version": "0.3.9-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,12 +22,12 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/catalog-model": "^1.1.0",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/plugin-catalog-react": "^1.1.4-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/plugin-catalog-react": "^1.1.4-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -40,10 +40,10 @@
"react-router": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/app-defaults": "^1.0.6-next.1",
"@backstage/cli": "^0.19.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/app-defaults": "^1.0.6-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+11
View File
@@ -1,5 +1,16 @@
# @backstage/plugin-allure
## 0.1.25-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/plugin-catalog-react@1.1.4-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
## 0.1.25-next.2
### Patch Changes
+9 -9
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-allure",
"description": "A Backstage plugin that integrates with Allure",
"version": "0.1.25-next.2",
"version": "0.1.25-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -23,10 +23,10 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/catalog-model": "^1.1.0",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/plugin-catalog-react": "^1.1.4-next.1",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/plugin-catalog-react": "^1.1.4-next.2",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -38,10 +38,10 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+10
View File
@@ -1,5 +1,15 @@
# @backstage/plugin-analytics-module-ga
## 0.1.20-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
## 0.1.20-next.1
### Patch Changes
+8 -8
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-analytics-module-ga",
"version": "0.1.20-next.1",
"version": "0.1.20-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,9 +22,9 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/config": "^1.0.1",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/config": "^1.0.2-next.0",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -36,10 +36,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-apache-airflow
## 0.2.2-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
## 0.2.2-next.2
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-apache-airflow",
"version": "0.2.2-next.2",
"version": "0.2.2-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,8 +22,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
@@ -35,10 +35,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+12
View File
@@ -1,5 +1,17 @@
# @backstage/plugin-api-docs
## 0.8.9-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/plugin-catalog-react@1.1.4-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/plugin-catalog@1.5.1-next.3
## 0.8.9-next.2
### Patch Changes
+10 -10
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-api-docs",
"description": "A Backstage plugin that helps represent API entities in the frontend",
"version": "0.8.9-next.2",
"version": "0.8.9-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,11 +33,11 @@
},
"dependencies": {
"@asyncapi/react-component": "1.0.0-next.40",
"@backstage/catalog-model": "^1.1.0",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/plugin-catalog": "^1.5.1-next.2",
"@backstage/plugin-catalog-react": "^1.1.4-next.1",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/plugin-catalog": "^1.5.1-next.3",
"@backstage/plugin-catalog-react": "^1.1.4-next.2",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -56,10 +56,10 @@
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-apollo-explorer
## 0.1.2-next.2
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
## 0.1.2-next.1
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-apollo-explorer",
"version": "0.1.2-next.1",
"version": "0.1.2-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -23,8 +23,8 @@
},
"dependencies": {
"@apollo/explorer": "^1.1.1",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
@@ -36,10 +36,10 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-app-backend
## 0.3.36-next.3
### Patch Changes
- Updated dependencies
- @backstage/config-loader@1.1.4-next.2
- @backstage/config@1.0.2-next.0
- @backstage/backend-common@0.15.1-next.3
## 0.3.36-next.2
### Patch Changes
+6 -6
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-app-backend",
"description": "A Backstage backend plugin that serves the Backstage frontend app",
"version": "0.3.36-next.2",
"version": "0.3.36-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,9 +32,9 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/config": "^1.0.1",
"@backstage/config-loader": "^1.1.4-next.1",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/config-loader": "^1.1.4-next.2",
"@backstage/types": "^1.0.0",
"@types/express": "^4.17.6",
"express": "^4.17.1",
@@ -49,8 +49,8 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.28-next.2",
"@backstage/cli": "^0.19.0-next.2",
"@backstage/backend-test-utils": "^0.1.28-next.3",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/types": "^1.0.0",
"@types/supertest": "^2.0.8",
"mock-fs": "^5.1.0",
+18
View File
@@ -1,5 +1,23 @@
# @backstage/plugin-auth-backend
## 0.16.0-next.3
### Minor Changes
- 8600855fbf: The auth0 integration is updated to use the `passport-auth0` library. The configuration under `auth.providers.auth0.\*` now supports an optional `audience` parameter; providing that allows you to connect to the correct API to get permissions, access tokens, and full profile information.
[What is an Audience](https://community.auth0.com/t/what-is-the-audience/71414)
### Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.1.0-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
- @backstage/backend-common@0.15.1-next.3
- @backstage/plugin-auth-node@0.2.5-next.3
## 0.16.0-next.2
### Patch Changes
+9 -9
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-auth-backend",
"description": "A Backstage backend plugin that handles authentication",
"version": "0.16.0-next.2",
"version": "0.16.0-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,12 +32,12 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/catalog-client": "^1.0.5-next.1",
"@backstage/catalog-model": "^1.1.0",
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.1.0",
"@backstage/plugin-auth-node": "^0.2.5-next.2",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/catalog-client": "^1.1.0-next.2",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/config": "^1.0.2-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/plugin-auth-node": "^0.2.5-next.3",
"@backstage/types": "^1.0.0",
"@davidzemon/passport-okta-oauth": "^0.0.5",
"@google-cloud/firestore": "^6.0.0",
@@ -76,8 +76,8 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.28-next.2",
"@backstage/cli": "^0.19.0-next.2",
"@backstage/backend-test-utils": "^0.1.28-next.3",
"@backstage/cli": "^0.19.0-next.3",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.2",
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-auth-node
## 0.2.5-next.3
### Patch Changes
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/errors@1.1.1-next.0
- @backstage/backend-common@0.15.1-next.3
## 0.2.5-next.2
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-node",
"version": "0.2.5-next.2",
"version": "0.2.5-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,9 +22,9 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.1.0",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/errors": "^1.1.1-next.0",
"@types/express": "*",
"express": "^4.17.1",
"jose": "^4.6.0",
@@ -32,8 +32,8 @@
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.28-next.2",
"@backstage/cli": "^0.19.0-next.2",
"@backstage/backend-test-utils": "^0.1.28-next.3",
"@backstage/cli": "^0.19.0-next.3",
"lodash": "^4.17.21",
"msw": "^0.47.0",
"uuid": "^8.0.0"
@@ -1,5 +1,13 @@
# @backstage/plugin-azure-devops-backend
## 0.3.15-next.2
### Patch Changes
- Updated dependencies
- @backstage/config@1.0.2-next.0
- @backstage/backend-common@0.15.1-next.3
## 0.3.15-next.1
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-azure-devops-backend",
"version": "0.3.15-next.1",
"version": "0.3.15-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,8 +22,8 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/config": "^1.0.1",
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/plugin-azure-devops-common": "^0.3.0-next.0",
"@types/express": "^4.17.6",
"azure-devops-node-api": "^11.0.1",
@@ -35,7 +35,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@types/supertest": "^2.0.8",
"msw": "^0.47.0",
"supertest": "^6.1.6"
+12
View File
@@ -1,5 +1,17 @@
# @backstage/plugin-azure-devops
## 0.2.0-next.3
### Patch Changes
- 7d47def9c4: Removed dependency on `@types/jest`.
- Updated dependencies
- @backstage/plugin-catalog-react@1.1.4-next.2
- @backstage/catalog-model@1.1.1-next.0
- @backstage/core-components@0.11.1-next.3
- @backstage/core-plugin-api@1.0.6-next.3
- @backstage/errors@1.1.1-next.0
## 0.2.0-next.2
### Patch Changes
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-azure-devops",
"version": "0.2.0-next.2",
"version": "0.2.0-next.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -28,12 +28,12 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/catalog-model": "^1.1.0",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/errors": "^1.1.0",
"@backstage/catalog-model": "^1.1.1-next.0",
"@backstage/core-components": "^0.11.1-next.3",
"@backstage/core-plugin-api": "^1.0.6-next.3",
"@backstage/errors": "^1.1.1-next.0",
"@backstage/plugin-azure-devops-common": "^0.3.0-next.0",
"@backstage/plugin-catalog-react": "^1.1.4-next.1",
"@backstage/plugin-catalog-react": "^1.1.4-next.2",
"@backstage/theme": "^0.2.16",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -47,10 +47,10 @@
"react-router": "6.0.0-beta.0 || ^6.3.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.2",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/cli": "^0.19.0-next.3",
"@backstage/core-app-api": "^1.1.0-next.3",
"@backstage/dev-utils": "^1.0.6-next.2",
"@backstage/test-utils": "^1.2.0-next.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.0.0",

Some files were not shown because too many files have changed in this diff Show More