This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@frontside/backstage-plugin-graphql-backend@0.1.6
Patch Changes
fb0e84d: Make module default exports to allow using import syntax
This change allows to use import syntax to load modules
import { createBackend } from '@backstage/backend-defaults';
-import { graphqlPlugin } from '@frontside/backstage-plugin-graphql-backend';
-import { graphqlModuleCatalog } from '@frontside/backstage-plugin-graphql-backend-module-catalog';
const backend = createBackend();
-backend.add(graphqlPlugin());
+backend.add(import('@frontside/backstage-plugin-graphql-backend'));
-backend.add(graphqlModuleCatalog());
+backend.add(import('@frontside/backstage-plugin-graphql-backend-module-catalog'));
backend.start();
b6f76c1: Bump Backstage to 1.20.x along with related dependencies. This includes a bump of Knex to v3. Additionally, this version of Backstage begins to shift scaffolder alpha features into the mainline which affects the types in related packages.
## @frontside/backstage-plugin-graphql-backend-module-catalog@0.2.5
### Patch Changes
- fb0e84d: Make module default exports to allow using import syntax
This change allows to use import syntax to load modules
```diff
import { createBackend } from '@backstage/backend-defaults';
-import { graphqlPlugin } from '@frontside/backstage-plugin-graphql-backend';
-import { graphqlModuleCatalog } from '@frontside/backstage-plugin-graphql-backend-module-catalog';
const backend = createBackend();
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@frontside/backstage-plugin-graphql-backend@0.1.6
Patch Changes
fb0e84d: Make module default exports to allow using import syntax
This change allows to use import syntax to load modules
0.1.5
Patch Changes
0.1.4
Patch Changes
1.20.x
along with related dependencies. This includes a bump of Knex to v3. Additionally, this version of Backstage begins to shift scaffolder alpha features into the mainline which affects the types in related packages.0.1.3
Patch Changes
0.1.2
Patch Changes
createCatalogLoader
function0.1.1
Patch Changes
0.1.0
Minor Changes
Patch Changes
-backend.add(graphqlPlugin()); +backend.add(import('@frontside/backstage-plugin-graphql-backend')); -backend.add(graphqlModuleCatalog()); +backend.add(import('@frontside/backstage-plugin-graphql-backend-module-catalog'));
backend.start();