Skip to content

Releases: IIBenII/backstage-plugin-dbt

v2.2.0

27 May 12:22
Compare
Choose a tag to compare

2.2.0 (2024-05-27)

Features

  • Allow json files to be at root level (#257) (84c141c)

v2.1.0

17 May 13:30
Compare
Choose a tag to compare

2.1.0 (2024-05-17)

Note: Version bump only for package root

v2.1.0-alpha.0

17 May 13:26
Compare
Choose a tag to compare
v2.1.0-alpha.0 Pre-release
Pre-release

2.1.0-alpha.0 (2024-05-17)

Features

v2.0.0

16 May 20:12
Compare
Choose a tag to compare

2.0.0 (2024-05-16)

Note: Version bump only for package root

v2.0.0-alpha.0

16 May 20:08
Compare
Choose a tag to compare
v2.0.0-alpha.0 Pre-release
Pre-release

2.0.0-alpha.0 (2024-05-16)

Features

BREAKING CHANGES

  • Backend type S3 or Google Storage are now define in app-config.yaml. Read the README.md to check how to update from v1 to v2

v1.0.1-alpha.0

30 Oct 14:50
Compare
Choose a tag to compare
v1.0.1-alpha.0 Pre-release
Pre-release

1.0.1-alpha.0 (2023-10-30)

Note: Version bump only for package root

v1.0.0

23 Oct 15:37
Compare
Choose a tag to compare

1.0.0 (2023-10-23)

Note: Version bump only for package root

v1.0.0-alpha.1

16 Oct 15:27
Compare
Choose a tag to compare
v1.0.0-alpha.1 Pre-release
Pre-release

1.0.0-alpha.1 (2023-10-16)

Bug Fixes

v1.0.0-alpha.0

16 Oct 15:09
Compare
Choose a tag to compare
v1.0.0-alpha.0 Pre-release
Pre-release

1.0.0-alpha.0 (2023-10-16)

Features

BREAKING CHANGES

  • You need to import the storage provider when adding the pluging
// packages/backend/src/plugins/dbt.ts
import {
  createRouter,
  GoogleStorageProvider, #ADD THIS
} from "@iiben_orgii/backstage-plugin-dbt-backend";
import { Router } from "express";
import { PluginEnvironment } from "../types";

const storageProvider = new GoogleStorageProvider(); #ADD THIS

export default async function createPlugin(
  env: PluginEnvironment,
): Promise<Router> {
  return await createRouter({
    logger: env.logger,
    storageProvider: storageProvider, #ADD THIS
  });
}

v0.3.4-alpha.0

16 Oct 14:39
Compare
Choose a tag to compare
v0.3.4-alpha.0 Pre-release
Pre-release

0.3.4-alpha.0 (2023-10-16)

Note: Version bump only for package root