@backstage/plugin-catalog-node 1.17.1-next.0 → 1.17.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @backstage/plugin-catalog-node
2
2
 
3
+ ## 1.17.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 0169b23: Internal tweak to avoid circular dependencies
8
+ - Updated dependencies
9
+ - @backstage/catalog-client@1.10.1
10
+ - @backstage/backend-plugin-api@1.4.0
11
+ - @backstage/catalog-model@1.7.4
12
+ - @backstage/errors@1.2.7
13
+ - @backstage/types@1.2.1
14
+ - @backstage/plugin-catalog-common@1.1.4
15
+ - @backstage/plugin-permission-common@0.9.0
16
+ - @backstage/plugin-permission-node@0.10.1
17
+
18
+ ## 1.17.1-next.1
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @backstage/catalog-client@1.10.1-next.0
24
+ - @backstage/backend-plugin-api@1.4.0-next.1
25
+ - @backstage/catalog-model@1.7.4
26
+ - @backstage/errors@1.2.7
27
+ - @backstage/types@1.2.1
28
+ - @backstage/plugin-catalog-common@1.1.4
29
+ - @backstage/plugin-permission-common@0.9.0
30
+ - @backstage/plugin-permission-node@0.10.1-next.1
31
+
3
32
  ## 1.17.1-next.0
4
33
 
5
34
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -298,24 +298,6 @@ type ScmLocationAnalyzer = {
298
298
  }>;
299
299
  };
300
300
 
301
- /**
302
- * A helper function that parses a YAML file, properly handling multiple
303
- * documents in a single file.
304
- *
305
- * @public
306
- * @remarks
307
- *
308
- * Each document is expected to be a valid Backstage entity. Each item in the
309
- * iterable is in the form of an entity result if the document seemed like a
310
- * valid object, or in the form of an error result if it seemed incorrect. This
311
- * way, you can choose to retain a partial result if you want.
312
- *
313
- * Note that this function does NOT perform any validation of the entities. No
314
- * assumptions whatsoever can be made on the emnitted entities except that they
315
- * are valid JSON objects.
316
- */
317
- declare function parseEntityYaml(data: string | Buffer, location: LocationSpec$1): Iterable<CatalogProcessorResult>;
318
-
319
301
  /**
320
302
  * A 'full' mutation replaces all existing entities created by this entity provider with new ones.
321
303
  * A 'delta' mutation can both add and remove entities provided by this provider. Previously provided
@@ -394,6 +376,24 @@ declare function locationSpecToLocationEntity(opts: {
394
376
  parentEntity?: Entity;
395
377
  }): LocationEntityV1alpha1;
396
378
 
379
+ /**
380
+ * A helper function that parses a YAML file, properly handling multiple
381
+ * documents in a single file.
382
+ *
383
+ * @public
384
+ * @remarks
385
+ *
386
+ * Each document is expected to be a valid Backstage entity. Each item in the
387
+ * iterable is in the form of an entity result if the document seemed like a
388
+ * valid object, or in the form of an error result if it seemed incorrect. This
389
+ * way, you can choose to retain a partial result if you want.
390
+ *
391
+ * Note that this function does NOT perform any validation of the entities. No
392
+ * assumptions whatsoever can be made on the emnitted entities except that they
393
+ * are valid JSON objects.
394
+ */
395
+ declare function parseEntityYaml(data: string | Buffer, location: LocationSpec$1): Iterable<CatalogProcessorResult>;
396
+
397
397
  /**
398
398
  * @public
399
399
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-node",
3
- "version": "1.17.1-next.0",
3
+ "version": "1.17.1",
4
4
  "description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -72,20 +72,20 @@
72
72
  "test": "backstage-cli package test"
73
73
  },
74
74
  "dependencies": {
75
- "@backstage/backend-plugin-api": "1.4.0-next.0",
76
- "@backstage/catalog-client": "1.10.0",
77
- "@backstage/catalog-model": "1.7.4",
78
- "@backstage/errors": "1.2.7",
79
- "@backstage/plugin-catalog-common": "1.1.4",
80
- "@backstage/plugin-permission-common": "0.9.0",
81
- "@backstage/plugin-permission-node": "0.10.1-next.0",
82
- "@backstage/types": "1.2.1",
75
+ "@backstage/backend-plugin-api": "^1.4.0",
76
+ "@backstage/catalog-client": "^1.10.1",
77
+ "@backstage/catalog-model": "^1.7.4",
78
+ "@backstage/errors": "^1.2.7",
79
+ "@backstage/plugin-catalog-common": "^1.1.4",
80
+ "@backstage/plugin-permission-common": "^0.9.0",
81
+ "@backstage/plugin-permission-node": "^0.10.1",
82
+ "@backstage/types": "^1.2.1",
83
83
  "lodash": "^4.17.21",
84
84
  "yaml": "^2.0.0"
85
85
  },
86
86
  "devDependencies": {
87
- "@backstage/backend-test-utils": "1.6.0-next.0",
88
- "@backstage/cli": "0.32.1",
87
+ "@backstage/backend-test-utils": "^1.6.0",
88
+ "@backstage/cli": "^0.33.0",
89
89
  "msw": "^1.0.0"
90
90
  }
91
91
  }