34 KiB
@backstage/plugin-scaffolder
0.11.0
Minor Changes
e30646aeb: Add Bitbucket workspace and project fields to RepoUrlPicker to support Bitbucket cloud and server
Patch Changes
-
8bedb75ae: Update Luxon dependency to 2.x -
7894421f1: Added UI Schema support for array items for example, support EntityPicker within an array field -
fa84fe44e: - Adds a new fieldEntityNamePickerthat can be used in scaffolder templates to accept and validate an entity name. This field is registered by default, and can be used in templates by setting theui:fieldproperty toEntityNamePicker. If you've customized your scaffolder field extensions, you can include this one by adding it when registering the scaffolder route:import { ScaffolderFieldExtensions, + EntityNamePickerFieldExtension, } from '@backstage/plugin-scaffolder'; <Route path="/create" element={<ScaffolderPage />}> <ScaffolderFieldExtensions> {/* ...custom field extensions... */} + <EntityNamePickerFieldExtension /> </ScaffolderFieldExtensions> </Route>;- Adds a new generic field
TextValuePickerto be used when writing custom field extensions that use a standard UI with custom validation. An example of doing this can be found inpackages/app/src/components/scaffolder/customScaffolderExtensions.tsx.
- Adds a new generic field
-
56c773909: Switched@types/reactdependency to request*rather than a specific version. -
Updated dependencies
- @backstage/integration@0.6.0
- @backstage/core-components@0.3.1
- @backstage/core-plugin-api@0.1.6
- @backstage/plugin-catalog-react@0.4.2
- @backstage/integration-react@0.1.7
0.10.3
Patch Changes
7b8aa8d0d: Move theCreateComponentButtonfrom the catalog plugin to thecore-components& rename it toCreateButtonto be reused inside the api-docs plugin & scaffolder plugin, but also future plugins. Additionally, improve responsiveness ofCreateButton&SupportButtonby shrinking them toIconButtonson smaller screens.- Updated dependencies
- @backstage/core-components@0.3.0
- @backstage/config@0.1.6
- @backstage/core-plugin-api@0.1.5
- @backstage/integration@0.5.9
- @backstage/integration-react@0.1.6
- @backstage/plugin-catalog-react@0.4.1
0.10.2
Patch Changes
0d5d0e2e6: chore: set the lifecycle as beta logo9d40fcb1e: - Bumpingmaterial-ui/coreversion to at least4.12.2as they made some breaking changes in later versions which brokePaginationof theTable.- Switching out
material-tableto@material-table/corefor support for the later versions ofmaterial-ui/core - This causes a minor API change to
@backstage/core-componentsas the interface forTablere-exports thepropfrom the underlyingTablecomponents. onChangeRowsPerPagehas been renamed toonRowsPerPageChangeonChangePagehas been renamed toonPageChange- Migration guide is here: https://material-table-core.com/docs/breaking-changes
- Switching out
- Updated dependencies
- @backstage/core-components@0.2.0
- @backstage/plugin-catalog-react@0.4.0
- @backstage/core-plugin-api@0.1.4
- @backstage/integration-react@0.1.5
- @backstage/theme@0.2.9
- @backstage/catalog-client@0.3.18
0.10.1
Patch Changes
-
73951fc44: Add options to mask or hide values on review state -
976b61080: Updated the software templates list page (ScaffolderPage) to use theuseEntityListProviderhook from #5643. This reduces the code footprint, making it easier to customize the display of this page, and consolidates duplicate approaches to querying the catalog with filters.- The
useEntityTypeFilterhook has been updated along with the underlyingEntityTypeFilterto work with multiple values, to allow more flexibility for different user interfaces. It's unlikely that this change affects you; however, if you're using either of these directly, you'll need to update your usage. SearchToolbarwas renamed toEntitySearchBarand moved tocatalog-reactto be usable by other entity list pagesUserListPickernow has anavailableTypesprop to restrict which user-related options to present
- The
-
Updated dependencies
- @backstage/plugin-catalog-react@0.3.0
0.10.0
Minor Changes
-
60e830222: Support forTemplatekinds with versionbackstage.io/v1alpha1has now been removed. This means that the old method of running templates withPreparers,TemplatersandPublishershas also been removed. If you had any logic in these abstractions, they should now be moved toactionsinstead, and you can find out more about those in the documentationIf you need any help migrating existing templates, there's a migration guide. Reach out to us on Discord in the #support channel if you're having problems.
The
scaffolder-backendnow no longer requires thesePreparers,Templaters, andPublishersto be passed in, now all it needs is thecontainerRunner.Please update your
packages/backend/src/plugins/scaffolder.tslike the following- import { - DockerContainerRunner, - SingleHostDiscovery, - } from '@backstage/backend-common'; + import { DockerContainerRunner } from '@backstage/backend-common'; import { CatalogClient } from '@backstage/catalog-client'; - import { - CookieCutter, - CreateReactAppTemplater, - createRouter, - Preparers, - Publishers, - Templaters, - } from '@backstage/plugin-scaffolder-backend'; + import { createRouter } from '@backstage/plugin-scaffolder-backend'; import Docker from 'dockerode'; import { Router } from 'express'; import type { PluginEnvironment } from '../types'; export default async function createPlugin({ config, database, reader, + discovery, }: PluginEnvironment): Promise<Router> { const dockerClient = new Docker(); const containerRunner = new DockerContainerRunner({ dockerClient }); - const cookiecutterTemplater = new CookieCutter({ containerRunner }); - const craTemplater = new CreateReactAppTemplater({ containerRunner }); - const templaters = new Templaters(); - templaters.register('cookiecutter', cookiecutterTemplater); - templaters.register('cra', craTemplater); - - const preparers = await Preparers.fromConfig(config, { logger }); - const publishers = await Publishers.fromConfig(config, { logger }); - const discovery = SingleHostDiscovery.fromConfig(config); const catalogClient = new CatalogClient({ discoveryApi: discovery }); return await createRouter({ - preparers, - templaters, - publishers, + containerRunner, logger, config, database,
Patch Changes
-
02b962394: Added acontextparameter to validator functions, letting them have access to the API holder.If you have implemented custom validators and use
createScaffolderFieldExtension, yourvalidationfunction can now optionally accept a third parameter,context: { apiHolder: ApiHolder }. -
6841e0113: fix minor version of git-url-parse as 11.5.x introduced a bug for Bitbucket Server -
0adfae5c8: add support for uiSchema on dependent form fields -
bd764f78a: Pass through theidTokeninAuthorizationHeader forlistActionsrequest -
Updated dependencies
- @backstage/integration@0.5.8
- @backstage/core-components@0.1.5
- @backstage/catalog-model@0.9.0
- @backstage/catalog-client@0.3.16
- @backstage/plugin-catalog-react@0.2.6
0.9.10
Patch Changes
9e60a728e: Upgraderjsfto 3.0.0.a94587cad: Update dependencies- Updated dependencies
- @backstage/plugin-catalog-react@0.2.5
- @backstage/core-components@0.1.4
- @backstage/integration@0.5.7
- @backstage/catalog-client@0.3.15
0.9.9
Patch Changes
5f4339b8c: AddingFeatureFlagcomponent and treatingFeatureFlagsas first class citizens to composability API71416fb64: Moved installation instructions from the main backstage.io documentation to the package README file. These instructions are not generally needed, since the plugin comes installed by default withnpx @backstage/create-app.48c9fcd33: Migrated to use the new@backstage/core-*packages rather than@backstage/core.- Updated dependencies
- @backstage/core-plugin-api@0.1.3
- @backstage/catalog-client@0.3.14
- @backstage/catalog-model@0.8.4
- @backstage/integration-react@0.1.4
- @backstage/plugin-catalog-react@0.2.4
0.9.8
Patch Changes
-
27a9b503a: Introduce conditional steps in scaffolder templates.A step can now include an
ifproperty that only executes a step if the condition is truthy. The condition can include handlebar templates.- id: register if: '{{ not parameters.dryRun }}' name: Register action: catalog:register input: repoContentsUrl: '{{ steps.publish.output.repoContentsUrl }}' catalogInfoPath: '/catalog-info.yaml'Also introduces a
nothelper in handlebar templates that allows to negate boolean expressions. -
9b4010965: Provide a link to the template source on theTemplateCard. -
Updated dependencies [
27a9b503a] -
Updated dependencies [
f4e3ac5ce] -
Updated dependencies [
7028ee1ca] -
Updated dependencies [
70bc30c5b] -
Updated dependencies [
eda9dbd5f]- @backstage/catalog-model@0.8.2
- @backstage/integration-react@0.1.3
- @backstage/plugin-catalog-react@0.2.2
- @backstage/catalog-client@0.3.13
- @backstage/integration@0.5.6
0.9.7
Patch Changes
-
497f4ce18: Scaffolder Field Extensions are here! This means you'll now the ability to create custom field extensions and have the Scaffolder use the components when collecting information from the user in the wizard. By default we supply theRepoUrlPickerand theOwnerPicker, but if you want to provide some more extensions or override the built on ones you will have to change how theScaffolderPageis wired up in yourapp/src/App.tsxto pass in the custom fields to the Scaffolder.You'll need to move this:
<Route path="/create" element={<ScaffolderPage />} />To this:
import { ScaffolderFieldExtensions, RepoUrlPickerFieldExtension, OwnerPickerFieldExtension, } from '@backstage/plugin-scaffolder'; <Route path="/create" element={<ScaffolderPage />}> <ScaffolderFieldExtensions> <RepoUrlPickerFieldExtension /> <OwnerPickerFieldExtension /> {/*Any other extensions you want to provide*/} </ScaffolderFieldExtensions> </Route>;More documentation on how to write your own
FieldExtensionsto follow. -
3772de8ba: Remove the trailing space from a the aria-label of the Template "CHOOSE" button. -
f430b6c6f: Don't merge with previous from state on form changes. -
76f99a1a0: ExportcreateScaffolderFieldExtensionto enable the creation of new field extensions. -
1157fa307: Add a<EntityPicker>field to the scaffolder to pick arbitrary entity kinds, like systems. -
Updated dependencies [
e7c5e4b30] -
Updated dependencies [
ebe802bc4] -
Updated dependencies [
49d7ec169] -
Updated dependencies [
1cf1d351f] -
Updated dependencies [
deaba2e13] -
Updated dependencies [
8e919a6f8]- @backstage/theme@0.2.8
- @backstage/catalog-model@0.8.1
- @backstage/integration@0.5.5
- @backstage/core@0.7.12
- @backstage/plugin-catalog-react@0.2.1
0.9.6
Patch Changes
- Updated dependencies [
0fd4ea443] - Updated dependencies [
add62a455] - Updated dependencies [
cc592248b] - Updated dependencies [
17c497b81] - Updated dependencies [
704875e26]- @backstage/integration@0.5.4
- @backstage/catalog-client@0.3.12
- @backstage/catalog-model@0.8.0
- @backstage/core@0.7.11
- @backstage/plugin-catalog-react@0.2.0
0.9.5
Patch Changes
f7f7783a3: Add Owner field in template card and new data distribution Add spec.owner as optional field into TemplateV1Alpha and TemplateV1Beta Schema Add relations ownedBy and ownerOf into Template entity Template documentation updated81d7b9c6f: Added deprecation warnings forv1alpha1templates- Updated dependencies [
f7f7783a3] - Updated dependencies [
65e6c4541] - Updated dependencies [
68fdbf014] - Updated dependencies [
5da6a561d]- @backstage/catalog-model@0.7.10
- @backstage/core@0.7.10
- @backstage/integration@0.5.3
0.9.4
Patch Changes
062bbf90f: chore: bump@testing-library/user-eventfrom 12.8.3 to 13.1.881ef1d57b: Show error on task page if task does not exist.675a569a9: chore: bumpreact-usedependency in all packages- Updated dependencies [
062bbf90f] - Updated dependencies [
10c008a3a] - Updated dependencies [
889d89b6e] - Updated dependencies [
16be1d093] - Updated dependencies [
3f988cb63] - Updated dependencies [
675a569a9]- @backstage/core@0.7.9
- @backstage/integration-react@0.1.2
- @backstage/plugin-catalog-react@0.1.6
- @backstage/catalog-model@0.7.9
0.9.3
Patch Changes
9314a8592: Close eventSource upon completion of a scaffolder taskd8b81fd28: Bumpjson-schemadependency from0.2.5to0.3.0.- Updated dependencies [
38ca05168] - Updated dependencies [
f65adcde7] - Updated dependencies [
81c54d1f2] - Updated dependencies [
80888659b] - Updated dependencies [
7b8272fb7] - Updated dependencies [
d8b81fd28] - Updated dependencies [
d1b1306d9]- @backstage/integration@0.5.2
- @backstage/core@0.7.8
- @backstage/plugin-catalog-react@0.1.5
- @backstage/theme@0.2.7
- @backstage/catalog-model@0.7.8
- @backstage/config@0.1.5
- @backstage/catalog-client@0.3.11
0.9.2
Patch Changes
f6efa71ee: Enable starred templates on Scaffolder frontend19a4dd710: Removed unusedswrdependency.23769512a: SupportanyOf,oneOfandallOfschemas in the scaffolder template.- Updated dependencies [
9afcac5af] - Updated dependencies [
e0c9ed759] - Updated dependencies [
6eaecbd81]- @backstage/core@0.7.7
0.9.1
Patch Changes
99fbef232: Adding Headings for Accessibility on the Scaffolder Plugincb0206b2b: Respect top-level UI schema keys in scaffolder forms. Allows more advanced RJSF features such as explicit field ordering.- Updated dependencies [
94da20976] - Updated dependencies [
d8cc7e67a] - Updated dependencies [
99fbef232] - Updated dependencies [
ab07d77f6] - Updated dependencies [
931b21a12] - Updated dependencies [
937ed39ce] - Updated dependencies [
9a9e7a42f] - Updated dependencies [
50ce875a0]- @backstage/core@0.7.6
- @backstage/theme@0.2.6
0.9.0
Minor Changes
-
a360f9478: Expose the catalog-import route as an external route from the scaffolder.This will make it possible to hide the "Register Existing Component" button when you for example are running backstage with
catalog.readonly=true.As a consequence of this change you need add a new binding to your createApp call to keep the button visible. However, if you instead want to hide the button you can safely ignore the following example.
To bind the external route from the catalog-import plugin to the scaffolder template index page, make sure you have the appropriate imports and add the following to the createApp call:
import { catalogImportPlugin } from '@backstage/plugin-catalog-import'; const app = createApp({ // ... bindRoutes({ bind }) { // ... bind(scaffolderPlugin.externalRoutes, { registerComponent: catalogImportPlugin.routes.importPage, }); }, });
Patch Changes
- Updated dependencies [
bb5055aee] - Updated dependencies [
d0d1c2f7b] - Updated dependencies [
5d0740563] - Updated dependencies [
5cafcf452] - Updated dependencies [
86a95ba67] - Updated dependencies [
442f34b87] - Updated dependencies [
e27cb6c45]- @backstage/catalog-model@0.7.7
- @backstage/core@0.7.5
- @backstage/catalog-client@0.3.10
0.8.2
Patch Changes
3f96a9d5a: Support auth by sending cookies in event stream request98dd5da71: Add support for multiple links to post-scaffold task summary page- Updated dependencies [
1279a3325] - Updated dependencies [
4a4681b1b] - Updated dependencies [
97b60de98] - Updated dependencies [
b051e770c] - Updated dependencies [
98dd5da71]- @backstage/core@0.7.4
- @backstage/catalog-model@0.7.6
0.8.1
Patch Changes
2ab6f3ff0: Add OwnerPicker component to scaffolder for specifying a component's owner from users and groups in the catalog.676ede643: Added thegetOriginLocationByEntityandremoveLocationByIdmethods to the catalog client- Updated dependencies [
676ede643] - Updated dependencies [
9f48b548c] - Updated dependencies [
b196a4569] - Updated dependencies [
8488a1a96]- @backstage/catalog-client@0.3.9
- @backstage/plugin-catalog-react@0.1.4
- @backstage/catalog-model@0.7.5
0.8.0
Minor Changes
3385b374b: UsescmIntegrationsApiReffrom the new@backstage/integration-react.
Patch Changes
9ca0e4009: use local version of lowerCase and upperCase methods- Updated dependencies [
8686eb38c] - Updated dependencies [
0434853a5] - Updated dependencies [
8686eb38c] - Updated dependencies [
9ca0e4009] - Updated dependencies [
34ff49b0f]- @backstage/catalog-client@0.3.8
- @backstage/config@0.1.4
- @backstage/core@0.7.2
- @backstage/plugin-catalog-react@0.1.2
0.7.1
Patch Changes
-
f98f212e4: Introduce scaffolder actions page which lists all available actions along with documentation about their input/output.Allow for actions to be extended with a description.
The list actions page is by default available at
/create/actions. -
2089de76b: Make use of the new coreItemCardGridandItemCardHeaderinstead of the deprecatedItemCard. -
4202807bb: Added a default type when is not defined in the schema to prevent id collision -
Updated dependencies [
277644e09] -
Updated dependencies [
52f613030] -
Updated dependencies [
0b42fff22] -
Updated dependencies [
0b42fff22] -
Updated dependencies [
ff4d666ab] -
Updated dependencies [
905cbfc96] -
Updated dependencies [
2089de76b] -
Updated dependencies [
d4e77ec5f] -
Updated dependencies [
dc1fc92c8]- @backstage/integration@0.5.1
- @backstage/catalog-model@0.7.4
- @backstage/catalog-client@0.3.7
- @backstage/core@0.7.1
- @backstage/theme@0.2.4
0.7.0
Minor Changes
-
8106c9528: The scaffolder has been updated to support the newv1beta2template schema which allows for custom template actions!See documentation for more information how to create and register new template actions.
Breaking changes
The backend scaffolder plugin now needs a
UrlReaderwhich can be pulled from the PluginEnvironment.The following change is required in
backend/src/plugins/scaffolder.tsexport default async function createPlugin({ logger, config, database, + reader, }: PluginEnvironment): Promise<Router> { // omitted code return await createRouter({ preparers, templaters, publishers, logger, config, dockerClient, database, catalogClient, + reader, });
Patch Changes
12d8f27a6: Move logic for constructing the template form to the backend, using a new./parameter-schemaendpoint that returns the form schema for a given template.bc327dc42: Tweak the template cards to be even more compliant with MUI examples, and a little bit more dense.- Updated dependencies [
12d8f27a6] - Updated dependencies [
40c0fdbaa] - Updated dependencies [
2a271d89e] - Updated dependencies [
bece09057] - Updated dependencies [
169f48deb] - Updated dependencies [
8a1566719] - Updated dependencies [
9d455f69a] - Updated dependencies [
4c049a1a1] - Updated dependencies [
02816ecd7]- @backstage/catalog-model@0.7.3
- @backstage/core@0.7.0
- @backstage/plugin-catalog-react@0.1.1
0.6.0
Minor Changes
-
a5f42cf66: The Scaffolder and Catalog plugins have been migrated to partially require use of the new composability API. The Scaffolder used to register its pages using the deprecated route registration plugin API, but those registrations have been removed. This means you now need to add the Scaffolder plugin page to the app directly.The page is imported from the Scaffolder plugin and added to the
<FlatRoutes>component:<Route path="/create" element={<ScaffolderPage />} />The Catalog plugin has also been migrated to use an external route reference to dynamically link to the create component page. This means you need to migrate the catalog plugin to use the new extension components, as well as bind the external route.
To use the new extension components, replace existing usage of the
CatalogRouterwith the following:<Route path="/catalog" element={<CatalogIndexPage />} /> <Route path="/catalog/:namespace/:kind/:name" element={<CatalogEntityPage />}> <EntityPage /> </Route>And to bind the external route from the catalog plugin to the scaffolder template index page, make sure you have the appropriate imports and add the following to the
createAppcall:import { catalogPlugin } from '@backstage/plugin-catalog'; import { scaffolderPlugin } from '@backstage/plugin-scaffolder'; const app = createApp({ // ... bindRoutes({ bind }) { bind(catalogPlugin.externalRoutes, { createComponent: scaffolderPlugin.routes.root, }); }, }); -
d0760ecdf: Moved common useStarredEntities hook to plugin-catalog-react -
e8e35fb5f: Adding Search and Filter features to Scaffolder/Templates Grid
Patch Changes
-
a5f42cf66: # Stateless scaffoldingThe scaffolder has been redesigned to be horizontally scalable and to persistently store task state and execution logs in the database.
Each scaffolder task is given a unique task ID which is persisted in the database. Tasks are then picked up by a
TaskWorkerwhich performs the scaffolding steps. Execution logs are also persisted in the database meaning you can now refresh the scaffolder task status page without losing information.The task status page is now dynamically created based on the step information stored in the database. This allows for custom steps to be displayed once the next version of the scaffolder template schema is available.
The task page is updated to display links to both the git repository and to the newly created catalog entity.
Component registration has moved from the frontend into a separate registration step executed by the
TaskWorker. This requires that aCatalogClientis passed to the scaffolder backend instead of the oldCatalogEntityClient.Make sure to update
plugins/scaffolder.tsimport { CookieCutter, createRouter, Preparers, Publishers, CreateReactAppTemplater, Templaters, - CatalogEntityClient, } from '@backstage/plugin-scaffolder-backend'; +import { CatalogClient } from '@backstage/catalog-client'; const discovery = SingleHostDiscovery.fromConfig(config); -const entityClient = new CatalogEntityClient({ discovery }); +const catalogClient = new CatalogClient({ discoveryApi: discovery }) return await createRouter({ preparers, templaters, publishers, logger, config, dockerClient, - entityClient, database, + catalogClient, });As well as adding the
@backstage/catalog-clientpackages as a dependency of your backend package. -
e488f0502: Update messages that process during loading, error, and no templates found. Remove unused dependencies. -
Updated dependencies [
3a58084b6] -
Updated dependencies [
e799e74d4] -
Updated dependencies [
d0760ecdf] -
Updated dependencies [
1407b34c6] -
Updated dependencies [
88f1f1b60] -
Updated dependencies [
bad21a085] -
Updated dependencies [
9615e68fb] -
Updated dependencies [
49f9b7346] -
Updated dependencies [
5c2e2863f] -
Updated dependencies [
3a58084b6] -
Updated dependencies [
a1f5e6545] -
Updated dependencies [
2c1f2a7c2]- @backstage/core@0.6.3
- @backstage/plugin-catalog-react@0.1.0
- @backstage/catalog-model@0.7.2
- @backstage/config@0.1.3
0.5.1
Patch Changes
6c4a76c59: Make theTemplateCardconform to what material-ui recommends in their examples. This fixes the extra padding around the buttons.- Updated dependencies [
fd3f2a8c0] - Updated dependencies [
d34d26125] - Updated dependencies [
0af242b6d] - Updated dependencies [
f4c2bcf54] - Updated dependencies [
10a0124e0] - Updated dependencies [
07e226872] - Updated dependencies [
f62e7abe5] - Updated dependencies [
96f378d10] - Updated dependencies [
688b73110]- @backstage/core@0.6.2
- @backstage/plugin-catalog-react@0.0.4
0.5.0
Minor Changes
6ed2b47d6: Include Backstage identity token in requests to backend plugins.
Patch Changes
- Updated dependencies [
19d354c78] - Updated dependencies [
b51ee6ece]- @backstage/plugin-catalog-react@0.0.3
- @backstage/core@0.6.1
0.4.2
Patch Changes
720149854: Migrated to new composability API, exporting the plugin asscaffolderPlugin. The template list page (/create) is exported as theTemplateIndexPageextension, and the templating page itself is exported asTemplatePage.019fe39a0: Switch dependency from@backstage/plugin-catalogto@backstage/plugin-catalog-react.- Updated dependencies [
12ece98cd] - Updated dependencies [
d82246867] - Updated dependencies [
7fc89bae2] - Updated dependencies [
c810082ae] - Updated dependencies [
5fa3bdb55] - Updated dependencies [
6e612ce25] - Updated dependencies [
025e122c3] - Updated dependencies [
21e624ba9] - Updated dependencies [
da9f53c60] - Updated dependencies [
32c95605f] - Updated dependencies [
7881f2117] - Updated dependencies [
54c7d02f7] - Updated dependencies [
11cb5ef94]- @backstage/core@0.6.0
- @backstage/plugin-catalog-react@0.0.2
- @backstage/theme@0.2.3
- @backstage/catalog-model@0.7.1
0.4.1
Patch Changes
9dd057662: Upgrade git-url-parse to v11.4.4 which fixes parsing an Azure DevOps branch ref.- Updated dependencies [
9dd057662] - Updated dependencies [
0b1182346]- @backstage/plugin-catalog@0.2.14
0.4.0
Minor Changes
-
ed6baab66: - Deprecating thescaffolder.${provider}.tokenauth duplication and favoringintegrations.${provider}instead. If you receive deprecation warnings your config should change like the following:scaffolder: github: token: $env: GITHUB_TOKEN visibility: publicTo something that looks like this:
integration: github: - host: github.com token: $env: GITHUB_TOKEN scaffolder: github: visibility: publicYou can also configure multiple different hosts under the
integrationconfig like the following:integration: github: - host: github.com token: $env: GITHUB_TOKEN - host: ghe.mycompany.com token: $env: GITHUB_ENTERPRISE_TOKENThis of course is the case for all the providers respectively.
-
Adding support for cross provider scaffolding, you can now create repositories in for example Bitbucket using a template residing in GitHub.
-
Fix GitLab scaffolding so that it returns a
catalogInfoUrlwhich automatically imports the project into the catalog. -
The
Store Pathfield on thescaffolderfrontend has now changed so that you require the full URL to the desired destination repository.
backstage/new-repositorywould becomehttps://github.com/backstage/new-repositoryif provider was GitHub for example. -
Patch Changes
- Updated dependencies [
def2307f3] - Updated dependencies [
efd6ef753] - Updated dependencies [
593632f07] - Updated dependencies [
33846acfc] - Updated dependencies [
a187b8ad0] - Updated dependencies [
f04db53d7] - Updated dependencies [
a93f42213]- @backstage/catalog-model@0.7.0
- @backstage/core@0.5.0
- @backstage/plugin-catalog@0.2.12
0.3.6
Patch Changes
8e083f41f: Bug fix: User can retry creating a new component if an error occurs, without having to reload the page.947d3c269: You can now maximize the logs into full-screen by clicking the button under each step of the job- Updated dependencies [
9c09a364f]- @backstage/plugin-catalog@0.2.10
0.3.5
Patch Changes
19554f6d6: Added GitHub Actions for Create React App, and allow better imports of files inside a module when they're exposed usingfilesinpackage.json- Updated dependencies [
1dc445e89] - Updated dependencies [
342270e4d]- @backstage/core@0.4.2
- @backstage/plugin-catalog@0.2.8
0.3.4
Patch Changes
- Updated dependencies [
c911061b7] - Updated dependencies [
8ef71ed32] - Updated dependencies [
0e6298f7e] - Updated dependencies [
ac3560b42]- @backstage/catalog-model@0.6.0
- @backstage/core@0.4.1
- @backstage/plugin-catalog@0.2.7
0.3.3
Patch Changes
- Updated dependencies [
2527628e1] - Updated dependencies [
6011b7d3e] - Updated dependencies [
1c69d4716] - Updated dependencies [
83b6e0c1f] - Updated dependencies [
1665ae8bb] - Updated dependencies [
04f26f88d] - Updated dependencies [
ff243ce96]- @backstage/core@0.4.0
- @backstage/plugin-catalog@0.2.6
- @backstage/catalog-model@0.5.0
- @backstage/theme@0.2.2
0.3.2
Patch Changes
-
a9fd599f7: Add Analyze location endpoint to catalog backend. Add catalog-import plugin and replace import-component with it. To start using Analyze location endpoint, you have add it to thecreateRouterfunction options in the\backstage\packages\backend\src\plugins\catalog.tsfile:export default async function createPlugin(env: PluginEnvironment) { const builder = new CatalogBuilder(env); const { entitiesCatalog, locationsCatalog, higherOrderOperation, locationAnalyzer, //<-- } = await builder.build(); return await createRouter({ entitiesCatalog, locationsCatalog, higherOrderOperation, locationAnalyzer, //<-- logger: env.logger, }); } -
Updated dependencies [
08835a61d] -
Updated dependencies [
a9fd599f7] -
Updated dependencies [
bcc211a08] -
Updated dependencies [
ebf37bbae]- @backstage/catalog-model@0.4.0
- @backstage/plugin-catalog@0.2.5
0.3.1
Patch Changes
ef2831dde: Move constructing the catalog-info.yaml URL for scaffolded components to the publishers- Updated dependencies [
475fc0aaa] - Updated dependencies [
1166fcc36] - Updated dependencies [
1185919f3]- @backstage/core@0.3.2
- @backstage/catalog-model@0.3.0
- @backstage/plugin-catalog@0.2.3
0.3.0
Minor Changes
-
59166e5ec:createRouterof scaffolder backend will now require additional option asentityClientwhich could be generated byCatalogEntityClientinplugin-scaffolder-backendpackage. Here is example to generateentityClient.import { CatalogEntityClient } from '@backstage/plugin-scaffolder-backend'; import { SingleHostDiscovery } from '@backstage/backend-common'; const discovery = SingleHostDiscovery.fromConfig(config); const entityClient = new CatalogEntityClient({ discovery });- Scaffolder's API
/v1/jobswill accepttemplateNameinstead oftemplateEntity.
- Scaffolder's API
Patch Changes
- Updated dependencies [
7b37d65fd] - Updated dependencies [
4aca74e08] - Updated dependencies [
e8f69ba93] - Updated dependencies [
0c0798f08] - Updated dependencies [
0c0798f08] - Updated dependencies [
199237d2f] - Updated dependencies [
6627b626f] - Updated dependencies [
4577e377b] - Updated dependencies [
2d0bd1be7]- @backstage/core@0.3.0
- @backstage/theme@0.2.1
- @backstage/plugin-catalog@0.2.1
0.2.0
Minor Changes
28edd7d29: Create backend plugin through CLI
Patch Changes
-
fb74f1db6: Make title meaningful after component creationFixes #2458.
After the change, the UX should look like this:
If the component creation was successful:
If the component creation failed:
-
c5ef12926: fix the accordion details design when job stage fail -
1c8c43756: The newscaffolder.github.baseUrlconfig property allows to specify a custom base url for GitHub Enterprise instances -
Updated dependencies [
28edd7d29] -
Updated dependencies [
819a70229] -
Updated dependencies [
3a4236570] -
Updated dependencies [
ae5983387] -
Updated dependencies [
0d4459c08] -
Updated dependencies [
482b6313d] -
Updated dependencies [
e0be86b6f] -
Updated dependencies [
f70a52868] -
Updated dependencies [
12b5fe940] -
Updated dependencies [
368fd8243] -
Updated dependencies [
1c60f716e] -
Updated dependencies [
144c66d50] -
Updated dependencies [
a768a07fb] -
Updated dependencies [
b79017fd3] -
Updated dependencies [
6d97d2d6f] -
Updated dependencies [
5adfc005e] -
Updated dependencies [
f0aa01bcc] -
Updated dependencies [
0aecfded0] -
Updated dependencies [
93a3fa3ae] -
Updated dependencies [
782f3b354] -
Updated dependencies [
8b9c8196f] -
Updated dependencies [
2713f28f4] -
Updated dependencies [
406015b0d] -
Updated dependencies [
82759d3e4] -
Updated dependencies [
60d40892c] -
Updated dependencies [
ac8d5d5c7] -
Updated dependencies [
2ebcfac8d] -
Updated dependencies [
fa56f4615] -
Updated dependencies [
ebca83d48] -
Updated dependencies [
aca79334f] -
Updated dependencies [
c0d5242a0] -
Updated dependencies [
b3d57961c] -
Updated dependencies [
0b956f21b] -
Updated dependencies [
97c2cb19b] -
Updated dependencies [
3beb5c9fc] -
Updated dependencies [
754e31db5] -
Updated dependencies [
1611c6dbc]- @backstage/plugin-catalog@0.2.0
- @backstage/core@0.2.0
- @backstage/catalog-model@0.2.0
- @backstage/theme@0.2.0

