Files
backstage/plugins/azure-sites/CHANGELOG.md
T
github-actions[bot] 036b9b3434 Version Packages (next)
2024-04-09 15:55:28 +00:00

29 KiB

@backstage/plugin-azure-sites

0.1.23-next.1

Patch Changes

0.1.23-next.0

Patch Changes

0.1.22

Patch Changes

0.1.21

Patch Changes

0.1.20

Patch Changes

  • 8679bda: Modified azure table to only show loading UI on initial load. Sorted tags in table is their order from the api is indeterminate, and they would randomly shuffle on each load
  • Updated dependencies

0.1.20-next.2

Patch Changes

  • 8679bda: Modified azure table to only show loading UI on initial load. Sorted tags in table is their order from the api is indeterminate, and they would randomly shuffle on each load
  • Updated dependencies
    • @backstage/core-components@0.14.1-next.2
    • @backstage/plugin-catalog-react@1.11.0-next.2
    • @backstage/catalog-model@1.4.5-next.0
    • @backstage/core-plugin-api@1.9.1-next.1
    • @backstage/theme@0.5.2-next.0
    • @backstage/plugin-azure-sites-common@0.1.3-next.1
    • @backstage/plugin-permission-common@0.7.13-next.1
    • @backstage/plugin-permission-react@0.4.21-next.1

0.1.20-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.14.1-next.1
    • @backstage/plugin-catalog-react@1.10.1-next.1
    • @backstage/core-plugin-api@1.9.1-next.1
    • @backstage/plugin-permission-common@0.7.13-next.1
    • @backstage/plugin-permission-react@0.4.21-next.1
    • @backstage/catalog-model@1.4.5-next.0
    • @backstage/theme@0.5.2-next.0
    • @backstage/plugin-azure-sites-common@0.1.3-next.1

0.1.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.5.2-next.0
    • @backstage/core-components@0.14.1-next.0
    • @backstage/plugin-catalog-react@1.10.1-next.0
    • @backstage/plugin-permission-common@0.7.13-next.0
    • @backstage/catalog-model@1.4.5-next.0
    • @backstage/core-plugin-api@1.9.1-next.0
    • @backstage/plugin-azure-sites-common@0.1.3-next.0
    • @backstage/plugin-permission-react@0.4.21-next.0

0.1.19

Patch Changes

  • 09a9c95: Updated README

  • 9aac2b0: Use --cwd as the first yarn argument

  • 8fe56a8: Widen @types/react dependency range to include version 18.

  • 5a409bb: Azure Sites start and stop action is now protected with the Permissions framework.

    The below example describes an action that forbids anyone but the owner of the catalog entity to trigger actions towards a site tied to an entity.

       // packages/backend/src/plugins/permission.ts
      import { azureSitesActionPermission } from '@backstage/plugin-azure-sites-common';
       ...
       class TestPermissionPolicy implements PermissionPolicy {
      async handle(request: PolicyQuery, user?: BackstageIdentityResponse): Promise<PolicyDecision> {
         if (isPermission(request.permission, azureSitesActionPermission)) {
           return createCatalogConditionalDecision(
             request.permission,
             catalogConditions.isEntityOwner({
               claims: user?.identity.ownershipEntityRefs ??  [],
             }),
           );
         }
         ...
         return {
           result: AuthorizeResult.ALLOW,
         };
       }
       ...
       }
    
  • Updated dependencies

0.1.19-next.3

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.5.1-next.1
    • @backstage/core-components@0.14.0-next.2
    • @backstage/plugin-catalog-react@1.10.0-next.3
    • @backstage/catalog-model@1.4.4-next.0
    • @backstage/core-plugin-api@1.9.0-next.1
    • @backstage/plugin-azure-sites-common@0.1.2-next.0
    • @backstage/plugin-permission-common@0.7.12
    • @backstage/plugin-permission-react@0.4.20-next.1

0.1.19-next.2

Patch Changes

  • 09a9c95: Updated README
  • 9aac2b0: Use --cwd as the first yarn argument
  • 8fe56a8: Widen @types/react dependency range to include version 18.
  • Updated dependencies
    • @backstage/core-components@0.14.0-next.1
    • @backstage/core-plugin-api@1.9.0-next.1
    • @backstage/plugin-catalog-react@1.10.0-next.2
    • @backstage/plugin-permission-react@0.4.20-next.1
    • @backstage/theme@0.5.1-next.0
    • @backstage/catalog-model@1.4.4-next.0
    • @backstage/plugin-azure-sites-common@0.1.2-next.0
    • @backstage/plugin-permission-common@0.7.12

0.1.19-next.1

Patch Changes

  • 5a409bb: Azure Sites start and stop action is now protected with the Permissions framework.

    The below example describes an action that forbids anyone but the owner of the catalog entity to trigger actions towards a site tied to an entity.

       // packages/backend/src/plugins/permission.ts
      import { azureSitesActionPermission } from '@backstage/plugin-azure-sites-common';
       ...
       class TestPermissionPolicy implements PermissionPolicy {
      async handle(request: PolicyQuery, user?: BackstageIdentityResponse): Promise<PolicyDecision> {
         if (isPermission(request.permission, azureSitesActionPermission)) {
           return createCatalogConditionalDecision(
             request.permission,
             catalogConditions.isEntityOwner({
               claims: user?.identity.ownershipEntityRefs ??  [],
             }),
           );
         }
         ...
         return {
           result: AuthorizeResult.ALLOW,
         };
       }
       ...
       }
    
  • Updated dependencies

    • @backstage/core-components@0.14.0-next.0
    • @backstage/catalog-model@1.4.4-next.0
    • @backstage/core-plugin-api@1.8.3-next.0
    • @backstage/plugin-azure-sites-common@0.1.2-next.0
    • @backstage/plugin-catalog-react@1.9.4-next.1
    • @backstage/theme@0.5.0
    • @backstage/plugin-permission-common@0.7.12
    • @backstage/plugin-permission-react@0.4.20-next.0

0.1.19-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.9.4-next.0
    • @backstage/core-components@0.13.10
    • @backstage/catalog-model@1.4.3
    • @backstage/core-plugin-api@1.8.2
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.18

Patch Changes

  • a31f688: Show Azure site tags in EntityAzureSitesOverviewWidget.
  • 4016f21: Remove some unused dependencies
  • Updated dependencies
    • @backstage/core-components@0.13.10
    • @backstage/core-plugin-api@1.8.2
    • @backstage/plugin-catalog-react@1.9.3
    • @backstage/catalog-model@1.4.3
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.18-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.9.3-next.2

0.1.18-next.1

Patch Changes

  • a31f688: Show Azure site tags in EntityAzureSitesOverviewWidget.
  • Updated dependencies
    • @backstage/core-plugin-api@1.8.2-next.0
    • @backstage/core-components@0.13.10-next.1
    • @backstage/plugin-catalog-react@1.9.3-next.1
    • @backstage/catalog-model@1.4.3
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.18-next.0

Patch Changes

  • 4016f21: Remove some unused dependencies
  • Updated dependencies
    • @backstage/core-components@0.13.10-next.0
    • @backstage/plugin-catalog-react@1.9.3-next.0
    • @backstage/catalog-model@1.4.3
    • @backstage/core-plugin-api@1.8.1
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.17

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.8.1
    • @backstage/plugin-catalog-react@1.9.2
    • @backstage/core-components@0.13.9
    • @backstage/theme@0.5.0
    • @backstage/catalog-model@1.4.3
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.17-next.3

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.9-next.3
    • @backstage/catalog-model@1.4.3
    • @backstage/core-plugin-api@1.8.1-next.1
    • @backstage/theme@0.5.0-next.1
    • @backstage/plugin-azure-sites-common@0.1.1
    • @backstage/plugin-catalog-react@1.9.2-next.3

0.1.17-next.2

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.5.0-next.1
    • @backstage/plugin-catalog-react@1.9.2-next.2
    • @backstage/catalog-model@1.4.3
    • @backstage/core-components@0.13.9-next.2
    • @backstage/core-plugin-api@1.8.1-next.1
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.9-next.1
    • @backstage/core-plugin-api@1.8.1-next.1
    • @backstage/plugin-catalog-react@1.9.2-next.1
    • @backstage/catalog-model@1.4.3
    • @backstage/theme@0.5.0-next.0
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.17-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-react@1.9.2-next.0
    • @backstage/core-components@0.13.9-next.0
    • @backstage/theme@0.5.0-next.0
    • @backstage/catalog-model@1.4.3
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.15

Patch Changes

  • 6c2b872153: Add official support for React 18.
  • fdb5e23602: Import MissingAnnotationEmptyState from @backstage/plugin-catalog-react to remove the cyclical dependency
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.9.0
    • @backstage/core-components@0.13.8
    • @backstage/core-plugin-api@1.8.0
    • @backstage/theme@0.4.4
    • @backstage/catalog-model@1.4.3
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.15-next.2

Patch Changes

0.1.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.9.0-next.1
    • @backstage/core-components@0.13.8-next.1
    • @backstage/catalog-model@1.4.3
    • @backstage/core-plugin-api@1.8.0-next.0
    • @backstage/theme@0.4.4-next.0
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.15-next.0

Patch Changes

  • 6c2b872153: Add official support for React 18.
  • Updated dependencies
    • @backstage/core-components@0.13.7-next.0
    • @backstage/plugin-catalog-react@1.9.0-next.0
    • @backstage/core-plugin-api@1.8.0-next.0
    • @backstage/theme@0.4.4-next.0
    • @backstage/catalog-model@1.4.3
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.14

Patch Changes

  • 9a1fce352e: Updated dependency @testing-library/jest-dom to ^6.0.0.
  • f95af4e540: Updated dependency @testing-library/dom to ^9.0.0.
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.8.5
    • @backstage/core-plugin-api@1.7.0
    • @backstage/core-components@0.13.6
    • @backstage/catalog-model@1.4.3
    • @backstage/theme@0.4.3
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.14-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.6-next.2
    • @backstage/core-plugin-api@1.7.0-next.1
    • @backstage/catalog-model@1.4.3-next.0
    • @backstage/plugin-catalog-react@1.8.5-next.2
    • @backstage/theme@0.4.3-next.0
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.6-next.1
    • @backstage/plugin-catalog-react@1.8.5-next.1
    • @backstage/core-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.4.2
    • @backstage/theme@0.4.2
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.8.5-next.0
    • @backstage/core-plugin-api@1.7.0-next.0
    • @backstage/core-components@0.13.6-next.0
    • @backstage/catalog-model@1.4.2
    • @backstage/theme@0.4.2
    • @backstage/plugin-azure-sites-common@0.1.1

0.1.13

Patch Changes

  • 482bb5c0bb: Moved @types/react to be a regular dependency
  • 406b786a2a: Mark package as being free of side effects, allowing more optimized Webpack builds.
  • 8cec7664e1: Removed @types/node dependency
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.8.4
    • @backstage/core-components@0.13.5
    • @backstage/catalog-model@1.4.2
    • @backstage/core-plugin-api@1.6.0
    • @backstage/plugin-azure-sites-common@0.1.1
    • @backstage/theme@0.4.2

0.1.13-next.3

Patch Changes

  • 406b786a2a: Mark package as being free of side effects, allowing more optimized Webpack builds.
  • Updated dependencies
    • @backstage/catalog-model@1.4.2-next.2
    • @backstage/core-components@0.13.5-next.3
    • @backstage/core-plugin-api@1.6.0-next.3
    • @backstage/plugin-azure-sites-common@0.1.1-next.0
    • @backstage/plugin-catalog-react@1.8.4-next.3
    • @backstage/theme@0.4.2-next.0

0.1.13-next.2

Patch Changes

  • 8cec7664e1: Removed @types/node dependency
  • Updated dependencies
    • @backstage/core-components@0.13.5-next.2
    • @backstage/core-plugin-api@1.6.0-next.2
    • @backstage/plugin-catalog-react@1.8.4-next.2
    • @backstage/catalog-model@1.4.2-next.1
    • @backstage/theme@0.4.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.13-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.8.4-next.1
    • @backstage/core-components@0.13.5-next.1
    • @backstage/catalog-model@1.4.2-next.0
    • @backstage/core-plugin-api@1.6.0-next.1
    • @backstage/theme@0.4.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.12-next.0

Patch Changes

  • 482bb5c0bb: Moved @types/react to be a regular dependency
  • Updated dependencies
    • @backstage/core-plugin-api@1.6.0-next.0
    • @backstage/core-components@0.13.5-next.0
    • @backstage/catalog-model@1.4.1
    • @backstage/theme@0.4.1
    • @backstage/plugin-azure-sites-common@0.1.0
    • @backstage/plugin-catalog-react@1.8.3-next.0

0.1.10

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.4
    • @backstage/plugin-catalog-react@1.8.1
    • @backstage/core-plugin-api@1.5.3
    • @backstage/catalog-model@1.4.1
    • @backstage/theme@0.4.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.8.1-next.1

0.1.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.4-next.0
    • @backstage/core-plugin-api@1.5.3
    • @backstage/plugin-catalog-react@1.8.1-next.0
    • @backstage/catalog-model@1.4.1
    • @backstage/theme@0.4.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.9

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.4.1
    • @backstage/plugin-catalog-react@1.8.0
    • @backstage/core-components@0.13.3
    • @backstage/core-plugin-api@1.5.3
    • @backstage/catalog-model@1.4.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.9-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.8.0-next.2
    • @backstage/theme@0.4.1-next.1
    • @backstage/core-plugin-api@1.5.3-next.1
    • @backstage/core-components@0.13.3-next.2
    • @backstage/catalog-model@1.4.1-next.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.4.1-next.0
    • @backstage/core-components@0.13.3-next.1
    • @backstage/core-plugin-api@1.5.3-next.0
    • @backstage/plugin-catalog-react@1.7.1-next.1

0.1.9-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.3-next.0
    • @backstage/catalog-model@1.4.1-next.0
    • @backstage/core-plugin-api@1.5.2
    • @backstage/theme@0.4.0
    • @backstage/plugin-azure-sites-common@0.1.0
    • @backstage/plugin-catalog-react@1.7.1-next.0

0.1.8

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.5.2
    • @backstage/core-components@0.13.2
    • @backstage/theme@0.4.0
    • @backstage/plugin-catalog-react@1.7.0
    • @backstage/catalog-model@1.4.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.8-next.3

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.2-next.3
    • @backstage/catalog-model@1.4.0-next.1
    • @backstage/core-plugin-api@1.5.2-next.0
    • @backstage/theme@0.4.0-next.1
    • @backstage/plugin-azure-sites-common@0.1.0
    • @backstage/plugin-catalog-react@1.7.0-next.3

0.1.8-next.2

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.4.0-next.1
    • @backstage/plugin-catalog-react@1.7.0-next.2
    • @backstage/core-components@0.13.2-next.2
    • @backstage/core-plugin-api@1.5.2-next.0

0.1.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.13.2-next.1
    • @backstage/plugin-catalog-react@1.7.0-next.1
    • @backstage/catalog-model@1.4.0-next.0
    • @backstage/core-plugin-api@1.5.2-next.0
    • @backstage/theme@0.4.0-next.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.8-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.7.0-next.0
    • @backstage/theme@0.4.0-next.0
    • @backstage/core-components@0.13.2-next.0
    • @backstage/core-plugin-api@1.5.1
    • @backstage/catalog-model@1.3.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.7

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.3.0
    • @backstage/plugin-catalog-react@1.6.0
    • @backstage/core-components@0.13.1
    • @backstage/catalog-model@1.3.0
    • @backstage/core-plugin-api@1.5.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.7-next.2

Patch Changes

  • Updated dependencies
    • @backstage/theme@0.3.0-next.0
    • @backstage/core-components@0.13.1-next.1
    • @backstage/plugin-catalog-react@1.6.0-next.2
    • @backstage/core-plugin-api@1.5.1

0.1.7-next.1

Patch Changes

0.1.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.6.0-next.0
    • @backstage/core-components@0.13.0
    • @backstage/core-plugin-api@1.5.1
    • @backstage/catalog-model@1.3.0
    • @backstage/theme@0.2.19
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.6

Patch Changes

  • 8e00acb28d: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • e0c6e8b9c3: Update peer dependencies
  • Updated dependencies
    • @backstage/core-components@0.13.0
    • @backstage/plugin-catalog-react@1.5.0
    • @backstage/theme@0.2.19
    • @backstage/core-plugin-api@1.5.1
    • @backstage/catalog-model@1.3.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.6-next.3

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.5.0-next.3
    • @backstage/catalog-model@1.3.0-next.0
    • @backstage/core-components@0.13.0-next.3
    • @backstage/core-plugin-api@1.5.1-next.1
    • @backstage/theme@0.2.19-next.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.6-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.12.6-next.2
    • @backstage/plugin-catalog-react@1.4.1-next.2
    • @backstage/core-plugin-api@1.5.1-next.1
    • @backstage/catalog-model@1.2.1
    • @backstage/theme@0.2.19-next.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.6-next.1

Patch Changes

  • e0c6e8b9c3: Update peer dependencies
  • Updated dependencies
    • @backstage/core-components@0.12.6-next.1
    • @backstage/core-plugin-api@1.5.1-next.0
    • @backstage/plugin-catalog-react@1.4.1-next.1
    • @backstage/theme@0.2.19-next.0
    • @backstage/catalog-model@1.2.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.6-next.0

Patch Changes

  • 8e00acb28d: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • Updated dependencies
    • @backstage/core-components@0.12.6-next.0
    • @backstage/plugin-catalog-react@1.4.1-next.0
    • @backstage/core-plugin-api@1.5.0
    • @backstage/catalog-model@1.2.1
    • @backstage/theme@0.2.18
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.5

Patch Changes

  • cb8ec97cde: Change black & white colors to be theme aware
  • 52b0022dab: Updated dependency msw to ^1.0.0.
  • Updated dependencies
    • @backstage/core-components@0.12.5
    • @backstage/plugin-catalog-react@1.4.0
    • @backstage/core-plugin-api@1.5.0
    • @backstage/catalog-model@1.2.1
    • @backstage/theme@0.2.18
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.5-next.2

Patch Changes

0.1.5-next.1

Patch Changes

  • cb8ec97cde: Change black & white colors to be theme aware
  • 52b0022dab: Updated dependency msw to ^1.0.0.
  • Updated dependencies
    • @backstage/core-components@0.12.5-next.1
    • @backstage/core-plugin-api@1.4.1-next.1
    • @backstage/theme@0.2.18-next.0
    • @backstage/plugin-catalog-react@1.4.0-next.1
    • @backstage/catalog-model@1.2.1-next.1
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.4.0-next.0
    • @backstage/core-plugin-api@1.4.1-next.0
    • @backstage/catalog-model@1.2.1-next.0
    • @backstage/core-components@0.12.5-next.0
    • @backstage/theme@0.2.17
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.4

Patch Changes

  • c51efce2a0: Update docs to always use yarn add --cwd for app & backend
  • 98a00a09d5: Fixed AzureSites plugin start and stop issue #15904 Fixed AzureSites UI load issue #15907
  • 4bdd6bcb3c: Prefer Link over plain anchors
  • Updated dependencies
    • @backstage/core-components@0.12.4
    • @backstage/catalog-model@1.2.0
    • @backstage/theme@0.2.17
    • @backstage/core-plugin-api@1.4.0
    • @backstage/plugin-catalog-react@1.3.0
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.4-next.2

Patch Changes

  • 98a00a09d5: Fixed AzureSites plugin start and stop issue #15904 Fixed AzureSites UI load issue #15907
  • Updated dependencies
    • @backstage/catalog-model@1.2.0-next.1
    • @backstage/core-components@0.12.4-next.1
    • @backstage/core-plugin-api@1.3.0
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0
    • @backstage/plugin-catalog-react@1.3.0-next.2

0.1.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.12.4-next.0
    • @backstage/plugin-catalog-react@1.3.0-next.1
    • @backstage/catalog-model@1.1.6-next.0
    • @backstage/core-plugin-api@1.3.0
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.3.0-next.0
    • @backstage/catalog-model@1.1.6-next.0

0.1.3

Patch Changes

  • 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
  • Updated dependencies
    • @backstage/catalog-model@1.1.5
    • @backstage/plugin-catalog-react@1.2.4
    • @backstage/core-components@0.12.3
    • @backstage/core-plugin-api@1.3.0
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.3.0-next.1
    • @backstage/plugin-catalog-react@1.2.4-next.2
    • @backstage/catalog-model@1.1.5-next.1
    • @backstage/core-components@0.12.3-next.2
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@1.1.5-next.1
    • @backstage/core-components@0.12.3-next.1
    • @backstage/core-plugin-api@1.2.1-next.0
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0
    • @backstage/plugin-catalog-react@1.2.4-next.1

0.1.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@1.1.5-next.0
    • @backstage/plugin-catalog-react@1.2.4-next.0
    • @backstage/core-components@0.12.3-next.0
    • @backstage/core-plugin-api@1.2.0
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.2

Patch Changes

0.1.1

Patch Changes

  • 3280711113: Updated dependency msw to ^0.49.0.
  • Updated dependencies
    • @backstage/core-plugin-api@1.2.0
    • @backstage/core-components@0.12.1
    • @backstage/plugin-catalog-react@1.2.2
    • @backstage/catalog-model@1.1.4
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.1-next.4

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.12.1-next.4
    • @backstage/plugin-catalog-react@1.2.2-next.4
    • @backstage/catalog-model@1.1.4-next.1
    • @backstage/core-plugin-api@1.2.0-next.2
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.1-next.3

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.12.1-next.3
    • @backstage/catalog-model@1.1.4-next.1
    • @backstage/core-plugin-api@1.2.0-next.2
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0
    • @backstage/plugin-catalog-react@1.2.2-next.3

0.1.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.2.0-next.2
    • @backstage/core-components@0.12.1-next.2
    • @backstage/plugin-catalog-react@1.2.2-next.2
    • @backstage/catalog-model@1.1.4-next.1
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.12.1-next.1
    • @backstage/core-plugin-api@1.1.1-next.1
    • @backstage/plugin-catalog-react@1.2.2-next.1
    • @backstage/catalog-model@1.1.4-next.1
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.1-next.0

Patch Changes

  • 3280711113: Updated dependency msw to ^0.49.0.
  • Updated dependencies
    • @backstage/core-components@0.12.1-next.0
    • @backstage/core-plugin-api@1.1.1-next.0
    • @backstage/plugin-catalog-react@1.2.2-next.0
    • @backstage/catalog-model@1.1.4-next.0
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0

0.1.0

Minor Changes

  • 4a75ce761c: Azure Sites (Apps & Functions) support for a given entity. View the current status of the site, quickly jump to site's Overview page, or Log Stream page.

Patch Changes

  • f905853ad6: Prefer using Link from @backstage/core-components rather than material-UI.
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.2.1
    • @backstage/core-components@0.12.0
    • @backstage/core-plugin-api@1.1.0
    • @backstage/catalog-model@1.1.3
    • @backstage/plugin-azure-sites-common@0.1.0
    • @backstage/theme@0.2.16

0.1.0-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.12.0-next.1
    • @backstage/catalog-model@1.1.3-next.0
    • @backstage/core-plugin-api@1.1.0-next.0
    • @backstage/theme@0.2.16
    • @backstage/plugin-azure-sites-common@0.1.0-next.0
    • @backstage/plugin-catalog-react@1.2.1-next.1

0.1.0-next.0

Minor Changes

  • 4a75ce761c: Azure Sites (Apps & Functions) support for a given entity. View the current status of the site, quickly jump to site's Overview page, or Log Stream page.

Patch Changes

  • f905853ad6: Prefer using Link from @backstage/core-components rather than material-UI.
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.2.1-next.0
    • @backstage/core-components@0.12.0-next.0
    • @backstage/core-plugin-api@1.1.0-next.0
    • @backstage/catalog-model@1.1.3-next.0
    • @backstage/plugin-azure-sites-common@0.1.0-next.0
    • @backstage/theme@0.2.16