Skip to content

Latest commit

 

History

History
165 lines (91 loc) · 7.24 KB

CHANGELOG.md

File metadata and controls

165 lines (91 loc) · 7.24 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

2.2.0 (2024-05-27)

Features

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

2.1.0 (2024-05-17)

Note: Version bump only for package root

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

Features

2.0.0 (2024-05-16)

Note: Version bump only for package root

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

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

Note: Version bump only for package root

1.0.0 (2023-10-23)

Note: Version bump only for package root

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

Bug Fixes

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
  });
}

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

Note: Version bump only for package root

0.3.3 (2023-07-31)

Note: Version bump only for package root

0.3.3-alpha.0 (2023-07-31)

Note: Version bump only for package root

0.3.2 (2023-07-31)

Note: Version bump only for package root

0.3.2-alpha.0 (2023-07-31)

Bug Fixes

  • Keep version synchronized between backend and front (#109) (05f4115)

0.3.1 (2023-07-28)

Bug Fixes

  • isDBTAvailable not working when global bucket is set (#108) (41b428d)

0.3.0 (2023-07-28)

Note: Version bump only for package root

0.3.0-alpha.1 (2023-07-28)

Features

0.3.0-alpha.0 (2023-07-27)

Features

  • Add bucket definition in app-conf.yaml (#106) (45adc2a)

0.2.2 (2023-06-15)

Note: Version bump only for package root

0.2.2-alpha.2 (2023-06-15)

Bug Fixes

0.2.2-alpha.1 (2023-06-15)

Note: Version bump only for package root

0.2.2-alpha.0 (2023-06-15)

Bug Fixes

Reverts

  • Revert "chore(deps-dev): bump lerna from 6.6.1 to 7.0.1 (#67)" (#76) (f26a48f), closes #67 #76

0.2.1 (2023-04-27)

Note: Version bump only for package root

0.2.1-alpha.1 (2023-04-27)

Note: Version bump only for package root

0.2.1-alpha.0 (2023-04-27)

Note: Version bump only for package root

0.2.0 (2023-04-26)

Features