Skip to content

Commit

Permalink
Merge pull request #391 from thefrontside/changeset-release/main
Browse files Browse the repository at this point in the history
Version Packages
  • Loading branch information
taras authored Feb 18, 2024
2 parents df3dd12 + 2113200 commit ffac9ff
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 27 deletions.
24 changes: 0 additions & 24 deletions .changeset/slimy-cooks-relate.md

This file was deleted.

27 changes: 27 additions & 0 deletions plugins/graphql-backend-module-catalog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @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();


-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();
```

- Updated dependencies [fb0e84d]
- @frontside/backstage-plugin-graphql-backend@0.1.6

## 0.2.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions plugins/graphql-backend-module-catalog/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontside/backstage-plugin-graphql-backend-module-catalog",
"description": "Backstage GraphQL backend module that adds catalog schema",
"version": "0.2.4",
"version": "0.2.5",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -46,7 +46,7 @@
"@backstage/catalog-model": "^1.4.3",
"@backstage/plugin-auth-node": "^0.4.1",
"@backstage/plugin-catalog-node": "^1.5.0",
"@frontside/backstage-plugin-graphql-backend": "^0.1.5",
"@frontside/backstage-plugin-graphql-backend": "^0.1.6",
"@frontside/hydraphql": "^0.1.2",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/utils": "^10.0.0",
Expand Down
24 changes: 24 additions & 0 deletions plugins/graphql-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @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

```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();


-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();
```

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/graphql-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontside/backstage-plugin-graphql-backend",
"description": "Backstage backend plugin for GraphQL",
"version": "0.1.5",
"version": "0.1.6",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down

0 comments on commit ffac9ff

Please sign in to comment.