-
f368ad7279: BREAKING: Bumped
jest
,jest-runtime
, andjest-environment-jsdom
to v29. This is up from v27, so check out both the v28 and v29 (later here) migration guides.Particular changes that where encountered in the main Backstage repo are:
- The updated snapshot format.
jest.useFakeTimers('legacy')
is nowjest.useFakeTimers({ legacyFakeTimers: true })
.- Error objects collected by
withLogCollector
from@backstage/test-utils
are now objects with adetail
property rather than a string.
-
78d5eb299e: Tweak the Jest Caching loader to only operate when in
watch
mode -
9c595302cb: Normalize on winston version ^3.2.1
-
24b40140c4: Treat files in
__testUtils__
and__mocks__
directories as test files for linting purposes.Updates the parts of the eslint configuration generator that specify which files should be treated as test code to include any files under two additional directories:
__mocks__
: this is the directory used by Jest0 for mock code.__testUtils__
: a suggested location for utility code executed only when running tests.
-
3e309107ca: Updated fallback versions of dependencies in all templates.
-
292a088807: Added a new
repo test
command. -
ba63cae41c: Updated lockfile parsing to have better support for Yarn 3.
-
2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
-
2dddb32fea: Switched the Jest transform for YAML files to use a custom one available at
@backstage/cli/config/jestYamlTransform.js
. -
a541a3a78a: Switch to upfront resolution of
swc-loader
in Webpack config. -
cfb3598410: Removed
tsx
andjsx
as supported extensions in backend packages. For most repos, this will not have any effect. But if you inadvertently had added sometsx
/jsx
files to your backend package, you may now start to seecode: 'MODULE_NOT_FOUND'
errors when launching the backend locally. The reason for this is that the offending files get ignored during transpilation. Hence, the importing file can no longer find anything to import.The fix is to rename any
.tsx
files in your backend packages to.ts
instead, or.jsx
to.js
. -
Updated dependencies
- @backstage/cli-common@0.1.10
- @backstage/config@1.0.3
- @backstage/config-loader@1.1.5
- @backstage/errors@1.1.2
- @backstage/release-manifests@0.0.6
- @backstage/types@1.0.0
-
e2dc42e9f0: Google OAuth refresh tokens will now be revoked on logout by calling Google's API
-
5fa831ce55: CookieConfigurer can optionally return the
SameSite
cookie attribute. CookieConfigurer now requires an additional argumentappOrigin
- the origin URL of the app - which is used to calculate theSameSite
attribute. defaultCookieConfigurer returns theSameSite
attribute which defaults toLax
. In cases where an auth-backend is running on a different domain than the App,SameSite=None
is used - but only for secure contexts. This is so that cookies can be included in third-party requests.OAuthAdapterOptions has been modified to require additional arguments,
baseUrl
, andcookieConfigurer
. OAuthAdapter now resolves cookie configuration using its supplied CookieConfigurer for each request to make sure that the proper attributes always are set.
- b5c126010c: Auth0 provider now supports optional
connection
andconnectionScope
parameters to configure social identity providers. - 8c6ec175bf: Fix GitLab provider setup so that it supports GitLab installations with a path in the URL.
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
-
8554533546: BREAKING The bazaar-backend
createRouter
now requires that theidentityApi
is passed to the router.These changes are required to
packages/backend/src/plugins/bazaar.ts
The user entity ref is now added to the members table and is taken from the requesting user using the
identityApi
.import { PluginEnvironment } from '../types'; import { createRouter } from '@backstage/plugin-bazaar-backend'; import { Router } from 'express'; export default async function createPlugin( env: PluginEnvironment, ): Promise<Router> { return await createRouter({ logger: env.logger, config: env.config, database: env.database, + identity: env.identity, }); }
- f7c2855d76: Router now also has endpoint
getLatestProjects
that takes a limit of projects as prop. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/backend-test-utils@0.1.29
- @backstage/plugin-auth-node@0.2.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
-
ad74723fbf: Update Bitbucket Cloud models to latest OAS version.
The latest specification contained some BREAKING CHANGES due to removed fields.
All of these fields are not used at other plugins, though. Therefore, this change has no impact on other modules here.
- Updated dependencies
- @backstage/integration@1.3.2
-
d558f41d3a: Added new column
Label
toCatalogTable.columns
, this new column allows you make use of labels from metadata. For example: category and visibility are type of labels associated with API entity illustrated below.YAML code snippet for API entity
apiVersion: backstage.io/v1alpha1 kind: API metadata: name: sample-api description: API for sample links: - url: http://localhost:8080/swagger-ui.html title: Swagger UI tags: - http labels: category: legacy visibility: protected
Consumers can customise columns to include label column and show in api-docs list
const columns = [ CatalogTable.columns.createNameColumn({ defaultKind: 'API' }), CatalogTable.columns.createLabelColumn('category', { title: 'Category' }), CatalogTable.columns.createLabelColumn('visibility', { title: 'Visibility', defaultValue: 'public', }), ];
- 4efadb6968: Implemented the visual parts of
EntityKindPicker
so that it can be shown alongside the other filters on the left side of your catalog pages. - 182000c663: Added
emptyContent
property to CatalogTable and DefaultCatalogPage to support customization of the Catalog Table. - e89e1f614d: Added support for copy entity URL in entity page context menu
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/catalog-client@1.1.1
- @backstage/plugin-search-react@1.2.0
- @backstage/plugin-search-common@1.1.0
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
-
b2e6cb6acf: Added a new method
addLocationAnalyzers
to theCatalogBuilder
. With this you can add location analyzers to your catalog. These analyzers will be used by the /analyze-location endpoint to decide if the provided URL contains any catalog-info.yaml files already or not.Moved the following types from this package to
@backstage/plugin-catalog-backend
.- AnalyzeLocationResponse
- AnalyzeLocationRequest
- AnalyzeLocationExistingEntity
- AnalyzeLocationGenerateEntity
- AnalyzeLocationEntityField
-
eb25f7e12d: The exported permission rules and the API of
createCatalogConditionalDecision
have changed to reflect the breaking changes made to thePermissionRule
type. Note that all involved types are exported from@backstage/plugin-catalog-backend/alpha
- 8cb6e10105: Fixed a bug where entities provided without a location key would always replace �existing entities, rather than updating them.
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- 63296ebcd4: Allow Placeholder value to be any value, not only string.
- 74022e0163: Make sure to stitch entities correctly after deletion, to ensure that their relations are updated.
- Updated dependencies
- @backstage/plugin-catalog-node@1.2.0
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/plugin-permission-node@0.7.0
- @backstage/backend-plugin-api@0.1.3
- @backstage/plugin-permission-common@0.7.0
- @backstage/catalog-client@1.1.1
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-scaffolder-common@1.2.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
-
b2e6cb6acf: Breaking Moved the code search for the existing catalog-info.yaml files to the backend from the frontend. It means it will use the configured GitHub integration's credentials.
Add the following to your
CatalogBuilder
to have the repo URL ingestion working again.// catalog.ts import { GithubLocationAnalyzer } from '@backstage/plugin-catalog-backend-module-github'; ... builder.addLocationAnalyzers( new GithubLocationAnalyzer({ discovery: env.discovery, config: env.config, }), ); ...
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/catalog-client@1.1.1
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- 404366c853: Deprecated the
LocationSpec
type. It got moved from this package to the@backstage/plugin-catalog-common
so make sure imports are updated.
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/backend-plugin-api@0.1.3
- @backstage/catalog-client@1.1.1
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
- 4efadb6968: Implemented the visual parts of
EntityKindPicker
so that it can be shown alongside the other filters on the left side of your catalog pages.
- 7939e743f5: Added two new
EntityRefLinks
props, the first beinggetTitle
that allows for customization of the title used for each link. The second one isfetchEntities
, which triggers a fetching of all entities so that the full entity definition is available in thegetTitle
callback. - e9e532ebd8: Fixed issue where the query kind parameter is not honored
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/core-components@0.11.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/plugin-permission-common@0.7.0
- @backstage/catalog-client@1.1.1
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- @backstage/version-bridge@1.0.1
- @backstage/plugin-permission-react@0.4.6
-
46b4a72cee: BREAKING: When defining permission rules, it's now necessary to provide a ZodSchema that specifies the parameters the rule expects. This has been added to help better describe the parameters in the response of the metadata endpoint and to validate the parameters before a rule is executed.
To help with this, we have also made a change to the API of permission rules. Before, the permission rules
toQuery
andapply
signature expected parameters to be separate arguments, like so...createPermissionRule({ apply: (resource, foo, bar) => true, toQuery: (foo, bar) => {}, });
The API has now changed to expect the parameters as a single object
createPermissionRule({ paramSchema: z.object({ foo: z.string().describe('Foo value to match'), bar: z.string().describe('Bar value to match'), }), apply: (resource, { foo, bar }) => true, toQuery: ({ foo, bar }) => {}, });
One final change made is to limit the possible values for a parameter to primitives and arrays of primitives.
- Updated dependencies
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
-
46b4a72cee: BREAKING: When defining permission rules, it's now necessary to provide a ZodSchema that specifies the parameters the rule expects. This has been added to help better describe the parameters in the response of the metadata endpoint and to validate the parameters before a rule is executed.
To help with this, we have also made a change to the API of permission rules. Before, the permission rules
toQuery
andapply
signature expected parameters to be separate arguments, like so...createPermissionRule({ apply: (resource, foo, bar) => true, toQuery: (foo, bar) => {}, });
The API has now changed to expect the parameters as a single object
createPermissionRule({ paramSchema: z.object({ foo: z.string().describe('Foo value to match'), bar: z.string().describe('Bar value to match'), }), apply: (resource, { foo, bar }) => true, toQuery: ({ foo, bar }) => {}, });
One final change made is to limit the possible values for a parameter to primitives and arrays of primitives.
- 9335ad115e: Exported types for the .metadata endpoint of the permission router
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/plugin-permission-common@0.7.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
-
eb25f7e12d: BREAKING The exported permission rules have changed to reflect the breaking changes made to the PermissionRule type.
For example, the
playlistConditions.isOwner
API has changed from:playlistConditions.isOwner(['user:default/me', 'group:default/owner']);
to:
playlistConditions.isOwner({ owners: ['user:default/me', 'group:default/owner'], });
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/backend-test-utils@0.1.29
- @backstage/plugin-auth-node@0.2.6
- @backstage/plugin-permission-node@0.7.0
- @backstage/plugin-permission-common@0.7.0
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/plugin-playlist-common@0.1.1
- f13d5f3f06: Add support for link to TechDocs and other links defined in template entity specification metadata on TemplateCard
- 05f22193c5: EntityPickers now support flags to control when to include default namespace in result
- e4f0a96424: Making the description of the GitLab repoUrl owner field more clearer by focusing it refers to the GitLab namespace.
- 92e490d6b4: Make the
/next
scaffolder work end to end with the oldTaskPage
view - 8220f2fd83: Support custom layouts in dry run editor
- 1047baa926: Bump to
react-jsonschema-form@v5-beta
for theNextRouter
under@alpha
exports - 98ae18b68f: Fixed a bug where the
allowed*
values for theRepoUrlPicker
would be reset on render. - 8960d83013: Add support for
allowedOrganizations
andallowedOwners
to theAzureRepoPicker
. - b681275e69: Ignore .git directories in Template Editor, increase upload limit for dry-runs to 10MB.
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/catalog-client@1.1.1
- @backstage/plugin-scaffolder-common@1.2.1
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- @backstage/plugin-permission-react@0.4.6
- 253453fa14: Added a new property called
additionalTemplateGlobals
which allows you to add global functions to the scaffolder nunjucks templates. - 17ff77154c: Update the
github:publish
action to allow passing whether pull requests must be up to date with the default branch before merging. - 304305dd20: Add
allowAutoMerge
option forpublish:github
action - 694bfe2d61: Add functionality to shutdown scaffolder tasks if they are stale
- a8e9848479: Added optional
sourcePath
parameter topublish:gitlab:merge-request
action,targetPath
is now optional and falls back to current workspace path.
- 489621f613: Switching off duplicated timestamp in case of logging via task logger in a custom action
- 4880d43e25: Fixed setting default branch for Bitbucket Server
- b681275e69: Ignore .git directories in Template Editor, increase upload limit for dry-runs to 10MB.
- a35a27df70: Updated the
moduleId
of the experimental module export. - Updated dependencies
- @backstage/plugin-catalog-node@1.2.0
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/plugin-auth-node@0.2.6
- @backstage/backend-tasks@0.3.6
- @backstage/backend-plugin-api@0.1.3
- @backstage/catalog-client@1.1.1
- @backstage/plugin-scaffolder-common@1.2.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
-
16c853a6ed: Be less restrictive with unknown keys on query endpoint
-
a799972bb1: The query received by search engines now contains a property called
pageLimit
, it specifies how many results to return per page when sending a query request to the search backend.Example: Returns up to 30 results per page
GET /query?pageLimit=30
The search backend validates the page limit and this value must not exceed 100, but it doesn't set a default value for the page limit parameter, it leaves it up to each search engine to set this, so Lunr, Postgres and Elastic Search set 25 results per page as a default value.
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/plugin-permission-node@0.7.0
- @backstage/plugin-permission-common@0.7.0
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-search-backend-node@1.0.3
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
- a799972bb1: There is a new property called
pageLimit
on theSearchQuery
interface that specifies how many results should be returned per page.
- Updated dependencies
- @backstage/plugin-permission-common@0.7.0
- @backstage/types@1.0.0
-
4ed1fa2480: The search query state now has an optional
pageLimit
property that determines how many results will be requested per page, it defaults to 25.Examples: Basic
<SearchResults query={{ pageLimit: 30 }}> {results => { // Item rendering logic is omitted }} </SearchResults>
With context
<SearchContextProvider initialState={{ pageLimit: 30 }}> <SearchResults> {results => { // Item rendering logic is omitted }} </SearchResults> </SearchContextProvider>
-
bed5a1dc6e: The
<SearchResultList />
component now accepts an optional propertydisableRenderingWithNoResults
to disable rendering when no results are returned. Possibility to provide a custom no results component if needed through thenoResultsComponent
property.Examples:
Rendering a custom no results component
<SearchResultList query={query} noResultsComponent={<ListItemText primary="No results were found" />} />
Disable rendering when there are no results
<SearchResultList query={query} disableRenderingWithNoResults />
-
3de4bd4f19: A
<SearchPagination />
component was created for limiting the number of results shown per search page. Use this new component to give users options to select how many search results they want to display per page. The default options are 10, 25, 50, 100.See examples below:
Basic
import React, { useState } from 'react'; import { Grid } from '@material-ui/core'; import { Page, Header, Content, Lifecycle } from '@backstage/core-components'; import { SearchBarBase, SearchPaginationBase, SearchResultList, } from '@backstage/plugin-search-react'; const SearchPage = () => { const [term, setTerm] = useState(''); const [pageLimit, setPageLimit] = useState(25); const [pageCursor, setPageCursor] = useState<string>(); return ( <Page themeId="home"> <Header title="Search" subtitle={<Lifecycle alpha />} /> <Content> <Grid container direction="row"> <Grid item xs={12}> <SearchBarBase value={term} onChange={setTerm} /> </Grid> <Grid item xs={12}> <SearchPaginationBase limit={pageLimit} onLimitChange={setPageLimit} cursor={pageCursor} onCursorChange={setPageCursor} /> </Grid> <Grid item xs={12}> <SearchResultList query={{ term, pageLimit }} /> </Grid> </Grid> </Content> </Page> ); };
With context
import React from 'react'; import { Grid } from '@material-ui/core'; import { Page, Header, Content, Lifecycle } from '@backstage/core-components'; import { SearchBar, SearchResult, SearchPagination, SearchResultListLayout, SearchContextProvider, DefaultResultListItem, } from '@backstage/plugin-search-react'; const SearchPage = () => ( <SearchContextProvider> <Page themeId="home"> <Header title="Search" subtitle={<Lifecycle alpha />} /> <Content> <Grid container direction="row"> <Grid item xs={12}> <SearchBar /> </Grid> <Grid item xs={12}> <SearchPagination /> </Grid> <Grid item xs={12}> <SearchResult> {({ results }) => ( <SearchResultListLayout resultItems={results} renderResultItem={({ document }) => ( <DefaultResultListItem key={document.location} result={document} /> )} /> )} </SearchResult> </Grid> </Grid> </Content> </Page> </SearchContextProvider> );
-
6faaa05626: The
<SearchResultGroup />
component now accepts an optional propertydisableRenderingWithNoResults
to disable rendering when no results are returned. Possibility to provide a custom no results component if needed through thenoResultsComponent
property.Examples:
Rendering a custom no results component
<SearchResultGroup query={query} icon={<DocsIcon />} title="Documentation" noResultsComponent={<ListItemText primary="No results were found" />} />
Disable rendering when there are no results
<SearchResultGroup query={query} icon={<DocsIcon />} title="Documentation" disableRenderingWithNoResults />
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/plugin-search-common@1.1.0
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- @backstage/version-bridge@1.0.1
- 7ced1b4076: Add optional
catalogClient
argument tocreateRoute
parameters
- 8006f8a602: In order to improve the debuggability of the search indexing process, messages logged during indexing are now tagged with a
documentType
whose value corresponds to thetype
being indexed. - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/plugin-techdocs-node@1.4.1
- @backstage/plugin-permission-common@0.7.0
- @backstage/catalog-client@1.1.1
- @backstage/plugin-search-common@1.1.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
-
5543e86660: BREAKING: The
apiRef
passed toProviderSettingsItem
now needs to implementProfileInfoApi & SessionApi
, rather than just the latter. This is unlikely to have an effect on most users though, since the builtin auth providers generally implement both.Fixed settings page showing providers as logged out when the user is using more than one provider, and displayed some additional login information.
- 06d61d1266: Handle errors that may occur when the user logs out
- 44c9a95dcf: Prevent
.set()
to execute a request to the StorageClient if the user isguest
- 174f02a00a: Update installation instructions
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-app-api@1.1.1
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-app-api@1.1.1
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- @backstage/plugin-permission-react@0.4.6
- 0027a749cd: Added possibility to configure index plugin of the HTTP router service.
- 45857bffae: Properly export
rootLoggerFactory
. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/backend-tasks@0.3.6
- @backstage/plugin-permission-node@0.7.0
- @backstage/backend-plugin-api@0.1.3
- @backstage/errors@1.1.2
- e8d7976413: Added back support for when no branch is provided for the Bitbucket Server
UrlReader
- c44cf412de: Fix BitBucket server integration
- c31f7cdfbc: Fixed an issue where
getClient()
for apluginId
would return different clients and not share them - 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/cli-common@0.1.10
- @backstage/config@1.0.3
- @backstage/config-loader@1.1.5
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
- 96d288a02d: Added root logger service to the set of default services.
- Updated dependencies
- @backstage/backend-app-api@0.2.2
- @backstage/backend-plugin-api@0.1.3
- 28377dc89f: Allow interfaces to be used for inferred option types.
- a35a27df70: Added documentation for
createBackendModule
, with guidelines for choosing a module ID. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/backend-tasks@0.3.6
- @backstage/plugin-permission-common@0.7.0
- @backstage/config@1.0.3
- d4fea86ea3: Added new function
readTaskScheduleDefinitionFromConfig
to readTaskScheduleDefinition
(aka. schedule) from theConfig
. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
- 72549952d1: Fixed handling of root scoped services in
startTestBackend
. - e91e8e9c55: Increased test database max connection pool size to reduce the risk of resource exhaustion.
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/cli@0.20.0
- @backstage/backend-app-api@0.2.2
- @backstage/backend-plugin-api@0.1.3
- @backstage/config@1.0.3
- 4f2ac624b4: Renamed argument in
validateEntity
fromlocation
tolocationRef
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/errors@1.1.2
- 6f3b8d0962: Defer
ajv
compilation of schema validators to improve module-import performance - Updated dependencies
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/cli-common@0.1.10
- Updated dependencies
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/cli-common@0.1.10
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
- 27e6404aba: Fixed a bug where gathered index routes would fail to bind routable extensions. This would typically show up when placing a routable extension in the entity page overview tab.
- Updated dependencies
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/types@1.0.0
- @backstage/version-bridge@1.0.1
- bde1e8c8e2: Added
curve
prop to theDependencyGraph
component to select the type of layout - 882101cd9b: Deep-import LightAsync component to improve module-import speed
- 0d0f30d87e: Fixed layout for core-components docs where table was broken by splitting with code sample
- Updated dependencies
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/version-bridge@1.0.1
- Updated dependencies
- @backstage/config@1.0.3
- @backstage/types@1.0.0
- @backstage/version-bridge@1.0.1
-
58c2264325: Newly created Backstage repositories now use the stable version 6 of
react-router
, just like the main repo does. Please let us know if you find any issues with this.Migrating to the stable version of
react-router
is optional for the time being. But if you want to do the same for your existing repository, please follow this guide. -
e05e0f021b: Update versions of packages used in the create-app template, to match those in the main repo
-
01dff06be4: Leverage cache mounts in Dockerfile during
yarn install ...
andapt-get ...
commands to speed up repeated builds. -
90616bcaa6: Add the new search pagination component to the search page template.
-
7c6306fc8a: Initializes a git repository when creating an app using @packages/create-app
-
52f25858a8: Added
*.session.sql
Visual Studio Code database functionality files to.gitignore
in the default template. This is optional but potentially helpful if your developers use Visual Studio Code; you can add a line with that exact value to your own root.gitignore
if you want the same. -
6d00e80146: Updated the root
test
scripts to usebackstage-cli repo test
.To apply this change to an existing app, make the following change to the root
package.json
:- "test": "backstage-cli test", - "test:all": "lerna run test -- --coverage", + "test": "backstage-cli repo test", + "test:all": "backstage-cli repo test --coverage",
-
Updated dependencies
- @backstage/cli-common@0.1.10
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-app-api@1.1.1
- @backstage/test-utils@1.2.1
- @backstage/app-defaults@1.0.7
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
-
0b2a30dead: fixing techdocs-cli Docker client creation
Docker client does not need to be created when --no-docker option is provided.
If you had DOCKER_CERT_PATH environment variable defined the Docker client was looking for certificates and breaking techdocs-cli generate command even with --no-docker option.
-
Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-techdocs-node@1.4.1
- @backstage/cli-common@0.1.10
- @backstage/config@1.0.3
- e05e0f021b: Align on the version of
@material-ui/icons
used, to^4.9.1
like other packages in the main repo - Updated dependencies
- @backstage/core-app-api@1.1.1
- @backstage/plugin-permission-common@0.7.0
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- @backstage/plugin-permission-react@0.4.6
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-search-react@1.2.0
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-adr-common@0.2.2
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- 8006f8a602: In order to improve the debuggability of the search indexing process, messages logged during indexing are now tagged with a
documentType
whose value corresponds to thetype
being indexed. - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/catalog-client@1.1.1
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-adr-common@0.2.2
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-search-common@1.1.0
- @backstage/integration@1.3.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/test-utils@1.2.1
- @backstage/dev-utils@1.0.7
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- 50c6e14aee: Updated dependency
@asyncapi/react-component
to1.0.0-next.43
. - 3d5bb521ee: Updated dependency
@asyncapi/react-component
to1.0.0-next.42
. - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/plugin-catalog@1.6.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- 11c9e0ad33: Added alpha plugin implementation for the new backend system. Available at
@backstage/plugin-app-backend/alpha
. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/backend-plugin-api@0.1.3
- @backstage/config@1.0.3
- @backstage/config-loader@1.1.5
- @backstage/types@1.0.0
- f3a3fefb96: Ensure
getIdentity
throws anAuthenticationError
instead of aNotAllowed
error when authentication fails - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/plugin-azure-devops-common@0.3.0
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- @backstage/plugin-azure-devops-common@0.3.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- f7c2855d76: Added a
Overview Card
for either latest or random projects. ChangedProjectPreview.tsx
so it takegridSize
anduseTablePagination
as props. - c0352bbc69: Link to the user catalog entity of a member
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/plugin-catalog@1.6.0
- @backstage/core-components@0.11.2
- @backstage/cli@0.20.0
- @backstage/catalog-client@1.1.1
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
-
23f9199a0f: Deprecate
@backstage/plugin-catalog-backend-module-bitbucket
.Please migrate to
@backstage/plugin-catalog-backend-module-bitbucket-cloud
or@backstage/plugin-catalog-backend-module-bitbucket-server
instead. -
Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/plugin-bitbucket-cloud-common@0.2.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
-
f66e696e7b: Bitbucket Cloud provider: Add option to configure schedule via
app-config.yaml
instead of in code.Please find how to configure the schedule at the config at https://backstage.io/docs/integrations/bitbucketCloud/discovery
-
a9b91d39bb: Add
bitbucketCloudCatalogModule
(new backend-plugin-api, alpha). -
Updated dependencies
- @backstage/plugin-catalog-node@1.2.0
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/backend-plugin-api@0.1.3
- @backstage/plugin-bitbucket-cloud-common@0.2.0
- @backstage/config@1.0.3
- @backstage/integration@1.3.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
-
8749df3d02:
GitHubEntityProvider
: Add option to configure schedule viaapp-config.yaml
instead of in code.Please find how to configure the schedule at the config at https://backstage.io/docs/integrations/github/discovery
-
7022aebf35: Added
GithubLocationAnalyzer
. This can be used to add to theCatalogBuilder
. When added this will be used byRepoLocationAnalyzer
to figure out if the given URL that you are trying to import from the /catalog-import page already contains catalog-info.yaml files. -
51046b58b0: Use schedule from config at backend module.
Also, it removes
GithubEntityProviderCatalogModuleOptions
in favor of config-only for the backend module setup like at other similar modules. -
7edb5909e8: Add missing config schema for the
GitHubEntityProvider
. -
be9474b103: Replaces in-code uses of
GitHub
byGithub
and deprecates old versions.Deprecates
GitHubEntityProvider
replaced byGithubEntityProvider
GitHubLocationAnalyzer
replaced byGithubLocationAnalyzer
GitHubLocationAnalyzerOptions
replaced byGithubLocationAnalyzerOptions
GitHubOrgEntityProvider
replaced byGithubOrgEntityProvider
GitHubOrgEntityProviderOptions
replaced byGithubOrgEntityProviderOptions
Renames
GitHubLocationAnalyzer
toGithubLocationAnalyzer
GitHubLocationAnalyzerOptions
toGithubLocationAnalyzerOptions
-
a35a27df70: Updated the
moduleId
of the experimental module export. -
Updated dependencies
- @backstage/plugin-catalog-node@1.2.0
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/backend-plugin-api@0.1.3
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- Updated dependencies
- @backstage/plugin-catalog-node@1.2.0
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/config@1.0.3
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
-
823acaa88b: Moved the following types from
@backstage/plugin-catalog-backend
to this package.- AnalyzeLocationResponse
- AnalyzeLocationRequest
- AnalyzeLocationExistingEntity
- AnalyzeLocationGenerateEntity
- AnalyzeLocationEntityField
-
Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-permission-common@0.7.0
- @backstage/plugin-search-common@1.1.0
- bde1e8c8e2: Added
curve
prop to theDependencyGraph
component to select the type of layout - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/catalog-client@1.1.1
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/config@1.0.3
- @backstage/types@1.0.0
- e05e0f021b: Align on the version of
@material-ui/icons
used, to^4.9.1
like other packages in the main repo - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-plugin-api@1.0.7
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-cicd-statistics@0.1.12
- @backstage/core-plugin-api@1.0.7
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- a94c2ed1b7: Fixed bug in
CostOverviewBreakdownChart
component where some datasets caused the cost overview breakdown chart to tear. - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- @backstage/plugin-cost-insights-common@0.1.1
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- @backstage/plugin-explore-react@0.0.22
- Updated dependencies
- @backstage/core-plugin-api@1.0.7
- Updated dependencies
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- 4c2ed7ecf1: Fixed loader showing when user not signed in
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- 8c7bff2bb4: Updated the
luxon
dependency to 3.x - 719ccbb963: Properly filter on relations instead of the spec, when finding by owner
- df226e124c: Add filtering and ordering to the graphql query
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- 719ccbb963: Properly filter on relations instead of the spec, when finding by owner
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-graphql@0.3.14
- @backstage/config@1.0.3
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-stack-overflow@0.1.6
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/plugin-jenkins-common@0.1.9
- b19ea927af: Fixed a bug where
extraRequestHeaders
configuration was ignored. - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/plugin-permission-common@0.7.0
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/plugin-jenkins-common@0.1.9
- Updated dependencies
- @backstage/plugin-catalog-common@1.0.7
- @backstage/plugin-permission-common@0.7.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- 51af8361de: Add useCustomResources react hook for fetching Kubernetes Custom Resources
- 35a6cfe257: Fix infinite call bug in
useCustomResources
hook - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-kubernetes-common@0.4.3
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- de676888bc: Added missing cluster locator configuration schema entries, for the catalog and local proxy types
- d4a8c683be: kubernetes service locator now take request context parameters
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/catalog-client@1.1.1
- @backstage/plugin-kubernetes-common@0.4.3
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- f2b4b55636: consistently show parent and child relations in group profile card
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/plugin-permission-node@0.7.0
- @backstage/plugin-permission-common@0.7.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/plugin-permission-common@0.7.0
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-catalog-common@1.0.7
- @backstage/plugin-permission-common@0.7.0
- @backstage/plugin-search-react@1.2.0
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/plugin-permission-react@0.4.6
- @backstage/plugin-playlist-common@0.1.1
- Updated dependencies
- @backstage/plugin-permission-common@0.7.0
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-scaffolder-backend@1.7.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-scaffolder-backend@1.7.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.7.0
- @backstage/config@1.0.3
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-search-react@1.2.0
- @backstage/plugin-search-common@1.1.0
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- @backstage/version-bridge@1.0.1
- a799972bb1: The search engine has been updated to take advantage of the
pageLimit
property on search queries. If none is provided, the search engine will continue to use its default value of 25 results per page. - 8006f8a602: In order to improve the debuggability of the search indexing process, messages logged during indexing are now tagged with a
documentType
whose value corresponds to thetype
being indexed. - Updated dependencies
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-search-backend-node@1.0.3
- @backstage/config@1.0.3
- a799972bb1: The search engine has been updated to take advantage of the
pageLimit
property on search queries. If none is provided, the search engine will continue to use its default value of 25 results per page. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-search-backend-node@1.0.3
- @backstage/config@1.0.3
- a799972bb1: The search engine has been updated to take advantage of the
pageLimit
property on search queries. If none is provided, the search engine will continue to use its default value of 25 results per page. - 8006f8a602: In order to improve the debuggability of the search indexing process, messages logged during indexing are now tagged with a
documentType
whose value corresponds to thetype
being indexed. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/backend-tasks@0.3.6
- @backstage/plugin-permission-common@0.7.0
- @backstage/plugin-search-common@1.1.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- 9c595302cb: Normalize on winston version ^3.2.1
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-home@0.4.26
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- 8006f8a602: In order to improve the debuggability of the search indexing process, messages logged during indexing are now tagged with a
documentType
whose value corresponds to thetype
being indexed. - Updated dependencies
- @backstage/cli@0.20.0
- @backstage/plugin-search-common@1.1.0
- @backstage/config@1.0.3
- f3d272cf57: Make sure to reload score card contents when props change
- a60a6807bd: making available the search for the last FACTS executed
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.0
- @backstage/plugin-tech-insights-common@0.2.7
- 296aea34da: The Tech Insights plugin supports running fact retrievers across multiple instances. Update the README to remove the stale instructions.
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- f7cbfb97ed: Modify router endpoint to handle singular and collections of request parameters similarly.
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/backend-tasks@0.3.6
- @backstage/catalog-client@1.1.1
- @backstage/plugin-tech-insights-node@0.3.5
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/plugin-tech-insights-common@0.2.7
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-tech-insights-node@0.3.5
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/plugin-tech-insights-common@0.2.7
- Updated dependencies
- @backstage/types@1.0.0
- 0963b4d5fb: Updated package role to be
node-library
. - Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/types@1.0.0
- @backstage/plugin-tech-insights-common@0.2.7
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-search-react@1.2.0
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-techdocs-react@1.0.5
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/plugin-catalog@1.6.0
- @backstage/core-components@0.11.2
- @backstage/core-app-api@1.1.1
- @backstage/test-utils@1.2.1
- @backstage/plugin-search-react@1.2.0
- @backstage/plugin-techdocs@1.3.3
- @backstage/plugin-techdocs-react@1.0.5
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/plugin-techdocs-react@1.0.5
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/integration@1.3.2
- @backstage/theme@0.2.16
-
0b2a30dead: fixing techdocs-cli Docker client creation
Docker client does not need to be created when --no-docker option is provided.
If you had DOCKER_CERT_PATH environment variable defined the Docker client was looking for certificates and breaking techdocs-cli generate command even with --no-docker option.
-
Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-search-common@1.1.0
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/version-bridge@1.0.1
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/integration@1.3.2
- f3463b176b: Use
Response.status
instead of.send(number)
- 2d3a5f09ab: Use
response.json
rather thanresponse.send
where appropriate, as outlined inSECURITY.md
- 82ac9bcfe5: Fix wrong import statement in
README.md
. - Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- 9c595302cb: Normalize on winston version ^3.2.1
- dae0bbe522: VaultBuilder.tsx renamed to VaultBuilder in order for module to be correctly loaded.
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/backend-test-utils@0.1.29
- @backstage/backend-tasks@0.3.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/errors@1.1.2
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/plugin-user-settings@0.5.0
- @backstage/plugin-scaffolder@1.7.0
- @backstage/plugin-org@0.5.10
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog-react@1.2.0
- @backstage/core-components@0.11.2
- @backstage/plugin-catalog-graph@0.2.22
- @backstage/core-app-api@1.1.1
- @backstage/cli@0.20.0
- @backstage/plugin-catalog-common@1.0.7
- @backstage/plugin-catalog-import@0.9.0
- @backstage/plugin-tech-insights@0.3.1
- @backstage/plugin-kubernetes@0.7.3
- @backstage/plugin-gcalendar@0.3.6
- @backstage/plugin-api-docs@0.8.10
- @backstage/plugin-search-react@1.2.0
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-cost-insights@0.11.32
- @backstage/plugin-airbrake@0.3.10
- @backstage/plugin-azure-devops@0.2.1
- @backstage/plugin-badges@0.2.34
- @backstage/plugin-circleci@0.3.10
- @backstage/plugin-cloudbuild@0.3.10
- @backstage/plugin-code-coverage@0.2.3
- @backstage/plugin-dynatrace@1.0.0
- @backstage/plugin-explore@0.3.41
- @backstage/plugin-github-actions@0.5.10
- @backstage/plugin-gocd@0.1.16
- @backstage/plugin-home@0.4.26
- @backstage/plugin-jenkins@0.7.9
- @backstage/plugin-kafka@0.3.10
- @backstage/plugin-lighthouse@0.3.10
- @backstage/plugin-newrelic-dashboard@0.2.3
- @backstage/plugin-pagerduty@0.5.3
- @backstage/plugin-playlist@0.1.1
- @backstage/plugin-rollbar@0.4.10
- @backstage/plugin-search@1.0.3
- @backstage/plugin-sentry@0.4.3
- @backstage/plugin-techdocs@1.3.3
- @backstage/plugin-techdocs-react@1.0.5
- @backstage/plugin-todo@0.2.12
- @internal/plugin-catalog-customized@0.0.3
- @backstage/app-defaults@1.0.7
- @backstage/integration-react@1.1.5
- @backstage/plugin-apache-airflow@0.2.3
- @backstage/plugin-gcp-projects@0.3.29
- @backstage/plugin-graphiql@0.2.42
- @backstage/plugin-newrelic@0.3.28
- @backstage/plugin-shortcuts@0.3.2
- @backstage/plugin-stack-overflow@0.1.6
- @backstage/plugin-tech-radar@0.5.17
- @backstage/plugin-techdocs-module-addons-contrib@1.0.5
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- @backstage/plugin-permission-react@0.4.6
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/plugin-scaffolder-backend@1.7.0
- @backstage/plugin-auth-node@0.2.6
- @backstage/backend-tasks@0.3.6
- @backstage/plugin-permission-node@0.7.0
- @backstage/plugin-auth-backend@0.17.0
- @backstage/plugin-permission-common@0.7.0
- @backstage/plugin-tech-insights-backend@0.5.3
- @backstage/plugin-search-backend@1.1.0
- @backstage/catalog-client@1.1.1
- @backstage/plugin-playlist-backend@0.2.0
- @backstage/plugin-jenkins-backend@0.1.27
- @backstage/plugin-app-backend@0.3.37
- @backstage/plugin-badges-backend@0.1.31
- @backstage/plugin-graphql-backend@0.1.27
- @backstage/plugin-permission-backend@0.5.12
- @backstage/plugin-rollbar-backend@0.1.34
- @backstage/plugin-kubernetes-backend@0.7.3
- @backstage/plugin-search-common@1.1.0
- @backstage/plugin-search-backend-node@1.0.3
- @backstage/plugin-search-backend-module-pg@0.4.1
- @backstage/plugin-search-backend-module-elasticsearch@1.0.3
- @backstage/plugin-techdocs-backend@1.4.0
- @backstage/plugin-tech-insights-node@0.3.5
- example-app@0.2.76
- @backstage/plugin-code-coverage-backend@0.2.3
- @backstage/plugin-kafka-backend@0.2.30
- @backstage/plugin-todo-backend@0.1.34
- @backstage/plugin-azure-devops-backend@0.3.16
- @backstage/plugin-proxy-backend@0.2.31
- @backstage/plugin-scaffolder-backend-module-rails@0.4.5
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.21
- @backstage/config@1.0.3
- @backstage/integration@1.3.2
- Updated dependencies
- @backstage/plugin-catalog-backend@1.5.0
- @backstage/plugin-scaffolder-backend@1.7.0
- @backstage/backend-defaults@0.1.2
- @backstage/plugin-app-backend@0.3.37
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/plugin-catalog@1.6.0
- @backstage/core-components@0.11.2
- @backstage/core-app-api@1.1.1
- @backstage/cli@0.20.0
- @backstage/test-utils@1.2.1
- @backstage/plugin-techdocs@1.3.3
- @backstage/plugin-techdocs-react@1.0.5
- @backstage/app-defaults@1.0.7
- @backstage/integration-react@1.1.5
- @backstage/core-plugin-api@1.0.7
- @backstage/config@1.0.3
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/plugin-catalog-react@1.2.0
- @backstage/plugin-catalog@1.6.0
- Updated dependencies
- @backstage/core-components@0.11.2
- @backstage/core-plugin-api@1.0.7
- @backstage/theme@0.2.16
- Updated dependencies
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- Updated dependencies
- @backstage/plugin-permission-common@0.7.0