Files
backstage/plugins/kafka-backend/CHANGELOG.md
T
github-actions[bot] b6d947b67f Version Packages
2022-03-10 11:30:23 +00:00

5.8 KiB

@backstage/plugin-kafka-backend

0.2.22

Patch Changes

0.2.22-next.0

Patch Changes

0.2.21

Patch Changes

0.2.20

Patch Changes

0.2.19

Patch Changes

0.2.18

Patch Changes

0.2.17

Patch Changes

0.2.17-next.0

Patch Changes

0.2.16

Patch Changes

0.2.16-next.0

Patch Changes

0.2.15

Patch Changes

0.2.15-next.0

Patch Changes

0.2.14

Patch Changes

0.2.13

Patch Changes

0.2.12

Patch Changes

  • 4f81bfd356: Add ACL requirements for kafka-backend plugin
  • Updated dependencies
    • @backstage/errors@0.1.5
    • @backstage/backend-common@0.9.11

0.2.11

Patch Changes

  • 9145449220: Update Kafka configuration types
  • Updated dependencies
    • @backstage/catalog-model@0.9.7
    • @backstage/backend-common@0.9.10

0.2.10

Patch Changes

  • febddedcb2: Bump lodash to remediate SNYK-JS-LODASH-590103 security vulnerability
  • Updated dependencies
    • @backstage/catalog-model@0.9.3
    • @backstage/backend-common@0.9.4
    • @backstage/config@0.1.10

0.2.9

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.9.0
    • @backstage/config@0.1.8

0.2.8

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.0
    • @backstage/backend-common@0.8.5

0.2.7

Patch Changes

  • 8ab897e01: Properly return a 404 when an unknown cluster is given
  • Updated dependencies
    • @backstage/backend-common@0.8.4

0.2.6

Patch Changes

  • Updated dependencies [add62a455]
  • Updated dependencies [704875e26]
    • @backstage/catalog-model@0.8.0

0.2.5

Patch Changes

  • Updated dependencies [22fd8ce2a]
  • Updated dependencies [10c008a3a]
  • Updated dependencies [f9fb4a205]
  • Updated dependencies [16be1d093]
    • @backstage/backend-common@0.8.0
    • @backstage/catalog-model@0.7.9

0.2.4

Patch Changes

  • Updated dependencies [e0bfd3d44]
  • Updated dependencies [38ca05168]
  • Updated dependencies [d8b81fd28]
    • @backstage/backend-common@0.7.0
    • @backstage/catalog-model@0.7.8
    • @backstage/config@0.1.5

0.2.3

Patch Changes

  • f03a52f5b: Add support for SASL authentication & SSL boolean config.
  • Updated dependencies [8488a1a96]
  • Updated dependencies [37e3a69f5]
    • @backstage/catalog-model@0.7.5
    • @backstage/backend-common@0.6.1

0.2.2

Patch Changes

  • Updated dependencies [8686eb38c]
  • Updated dependencies [0434853a5]
  • Updated dependencies [8686eb38c]
    • @backstage/backend-common@0.6.0
    • @backstage/config@0.1.4

0.2.1

Patch Changes

  • 4fbc9df79: Fixed config.d.ts not being included in the published package.
  • f43192207: remove usage of res.send() for res.json() and res.end() to ensure content types are more consistently application/json on backend responses and error cases
  • Updated dependencies [12d8f27a6]
  • Updated dependencies [497859088]
  • Updated dependencies [8adb48df4]
    • @backstage/catalog-model@0.7.3
    • @backstage/backend-common@0.5.5

0.2.0

Minor Changes

  • 234e7d985: Added support for multiple Kafka clusters and multiple consumers per component. Note that this introduces several breaking changes.

    1. Configuration in app-config.yaml has changed to support the ability to configure multiple clusters. This means you are required to update the configs in the following way:
    kafka:
       clientId: backstage
    -  brokers:
    -    - localhost:9092
    +  clusters:
    +    - name: prod
    +      brokers:
    +        - localhost:9092
    
    1. Configuration of services has changed as well to support multiple clusters:
      annotations:
    -    kafka.apache.org/consumer-groups: consumer
    +    kafka.apache.org/consumer-groups: prod/consumer
    
    1. Kafka Backend API has changed, so querying offsets of a consumer group is now done with the following query path: /consumers/${clusterId}/${consumerGroup}/offsets

Patch Changes

0.1.1

Patch Changes