Back to Backstage

Release v1.16.0-next.2

docs/releases/v1.16.0-next.2-changelog.md

1.51.0-next.251.6 KB
Original Source

Release v1.16.0-next.2

@backstage/[email protected]

Minor Changes

  • eae0352d3864: Tables which use EntityTableProps now have an additional tableOptions prop which can be used to provide additional table options to these components.

Patch Changes

@backstage/[email protected]

Minor Changes

  • b1cc10696f2f: BREAKING Allow incremental event handlers to be async; Force event handler to indicate if it made a change. Instead of returning null or undefined from an event handler to indicate no-oop, instead return the value { type: "ignored" }.

    before

    javascript
    import { createDelta, shouldIgnore } from "./my-delta-creater";
    
    eventHandler: {
      onEvent(params) {
        if (shouldIgnore(params)) {
          return;
        }
        return createDelta(params);
      }
    }
    

    after

    javascript
    import { createDelta, shouldIgnore } from "./my-delta-creater";
    
    eventHandler: {
      async onEvent(params) {
        if (shouldIgnore(params) {
          return { type: "ignored" };
        }
        // code to create delta can now be async if needed
        return await createDelta(params);
      }
    }
    

Patch Changes

@backstage/[email protected]

Minor Changes

  • eae0352d3864: Tables which use EntityTableProps now have an additional tableOptions prop which can be used to provide additional table options to these components.

Patch Changes

@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.0-next.1

Minor Changes

  • 0a7e7c5d0c04: BREAKING

    This change updates the configuration of the confluence-to-markdown action so that it does not conflict with other confluence plguins. Currently many plugins make use of the confluence.auth configuration. However, only the confluence-to-markdown action uses the confluence.auth as a string. This change updates it so that confluence.auth is an object.

    Required Changes

    Below are examples for updating bearer, basic, and userpass implementations.

    For bearer: Before:

    yaml
    confluence:
      baseUrl: 'https://confluence.example.com'
      auth: 'bearer'
      token: '${CONFLUENCE_TOKEN}'
    

    After:

    yaml
    confluence:
      baseUrl: 'https://confluence.example.com'
      auth:
        type: 'bearer'
        token: '${CONFLUENCE_TOKEN}'
    

    For basic:

    Before:

    yaml
    confluence:
      baseUrl: 'https://confluence.example.com'
      auth: 'basic'
      token: '${CONFLUENCE_TOKEN}'
      email: '[email protected]'
    

    After:

    yaml
    confluence:
      baseUrl: 'https://confluence.example.com'
      auth:
        type: 'basic'
        token: '${CONFLUENCE_TOKEN}'
        email: '[email protected]'
    

    For userpass Before:

    yaml
    confluence:
      baseUrl: 'https://confluence.example.com'
      auth: 'userpass'
      username: 'your-username'
      password: 'your-password'
    

    After:

    yaml
    confluence:
      baseUrl: 'https://confluence.example.com'
      auth:
        type: 'userpass'
        username: 'your-username'
        password: 'your-password'
    

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 325a32e9476e: Updated dependency jscodeshift to ^0.15.0.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 4f7292c74dff: Updated included Dockerfile to include g++. Also updated the comments to note that some of the dependencies are also needed by isolated-vm
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 8174cf4c0edf: Fixing MUI / Material UI references

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

@internal/[email protected]

Patch Changes

@internal/[email protected]

Patch Changes