@backstage/plugin-catalog-backend-module-github-org 0.1.7 → 0.1.8-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -23
  2. package/package.json +23 -23
package/CHANGELOG.md CHANGED
@@ -1,37 +1,28 @@
1
1
  # @backstage/plugin-catalog-backend-module-github-org
2
2
 
3
- ## 0.1.7
3
+ ## 0.1.8-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-common@0.21.3
9
- - @backstage/backend-tasks@0.5.18
10
- - @backstage/plugin-catalog-backend-module-github@0.5.3
11
- - @backstage/plugin-catalog-node@1.7.3
12
- - @backstage/backend-plugin-api@0.6.13
8
+ - @backstage/config@1.2.0-next.1
9
+ - @backstage/backend-common@0.21.4-next.1
10
+ - @backstage/backend-plugin-api@0.6.14-next.1
11
+ - @backstage/backend-tasks@0.5.19-next.1
12
+ - @backstage/plugin-catalog-backend-module-github@0.5.4-next.1
13
+ - @backstage/plugin-catalog-node@1.8.0-next.1
13
14
 
14
- ## 0.1.6
15
+ ## 0.1.7-next.0
15
16
 
16
17
  ### Patch Changes
17
18
 
18
19
  - Updated dependencies
19
- - @backstage/backend-common@0.21.2
20
- - @backstage/backend-tasks@0.5.17
21
- - @backstage/plugin-catalog-backend-module-github@0.5.2
22
- - @backstage/backend-plugin-api@0.6.12
23
- - @backstage/plugin-catalog-node@1.7.2
24
-
25
- ## 0.1.5
26
-
27
- ### Patch Changes
28
-
29
- - Updated dependencies
30
- - @backstage/backend-common@0.21.1
31
- - @backstage/backend-tasks@0.5.16
32
- - @backstage/plugin-catalog-backend-module-github@0.5.1
33
- - @backstage/backend-plugin-api@0.6.11
34
- - @backstage/plugin-catalog-node@1.7.1
20
+ - @backstage/backend-common@0.21.3-next.0
21
+ - @backstage/plugin-catalog-backend-module-github@0.5.3-next.0
22
+ - @backstage/backend-plugin-api@0.6.13-next.0
23
+ - @backstage/plugin-catalog-node@1.8.0-next.0
24
+ - @backstage/backend-tasks@0.5.18-next.0
25
+ - @backstage/config@1.1.2-next.0
35
26
 
36
27
  ## 0.1.4
37
28
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-github-org",
3
+ "version": "0.1.8-next.1",
3
4
  "description": "The github-org backend module for the catalog plugin.",
4
- "version": "0.1.7",
5
- "main": "dist/index.cjs.js",
6
- "types": "dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "backend-plugin-module"
7
+ },
8
8
  "publishConfig": {
9
9
  "access": "public",
10
10
  "main": "dist/index.cjs.js",
@@ -15,32 +15,32 @@
15
15
  "url": "https://github.com/backstage/backstage",
16
16
  "directory": "plugins/catalog-backend-module-github-org"
17
17
  },
18
- "backstage": {
19
- "role": "backend-plugin-module"
20
- },
18
+ "license": "Apache-2.0",
19
+ "main": "dist/index.cjs.js",
20
+ "types": "dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
21
24
  "scripts": {
22
- "start": "backstage-cli package start",
23
25
  "build": "backstage-cli package build",
24
- "lint": "backstage-cli package lint",
25
- "test": "backstage-cli package test",
26
26
  "clean": "backstage-cli package clean",
27
+ "lint": "backstage-cli package lint",
27
28
  "prepack": "backstage-cli package prepack",
28
- "postpack": "backstage-cli package postpack"
29
+ "postpack": "backstage-cli package postpack",
30
+ "start": "backstage-cli package start",
31
+ "test": "backstage-cli package test"
29
32
  },
30
33
  "dependencies": {
31
- "@backstage/backend-common": "^0.21.3",
32
- "@backstage/backend-plugin-api": "^0.6.13",
33
- "@backstage/backend-tasks": "^0.5.18",
34
- "@backstage/config": "^1.1.1",
35
- "@backstage/plugin-catalog-backend-module-github": "^0.5.3",
36
- "@backstage/plugin-catalog-node": "^1.7.3"
34
+ "@backstage/backend-common": "^0.21.4-next.1",
35
+ "@backstage/backend-plugin-api": "^0.6.14-next.1",
36
+ "@backstage/backend-tasks": "^0.5.19-next.1",
37
+ "@backstage/config": "^1.2.0-next.1",
38
+ "@backstage/plugin-catalog-backend-module-github": "^0.5.4-next.1",
39
+ "@backstage/plugin-catalog-node": "^1.8.0-next.1"
37
40
  },
38
41
  "devDependencies": {
39
- "@backstage/backend-test-utils": "^0.3.3",
40
- "@backstage/cli": "^0.25.2",
42
+ "@backstage/backend-test-utils": "^0.3.4-next.1",
43
+ "@backstage/cli": "^0.25.3-next.1",
41
44
  "luxon": "^3.0.0"
42
- },
43
- "files": [
44
- "dist"
45
- ]
45
+ }
46
46
  }