@backstage-community/plugin-search-backend-module-azure-devops 0.1.2 → 0.2.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,17 @@
1
1
  # @backstage-community/plugin-search-backend-module-azure-devops
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 50fe5c4: Updated the `titleSuffix` to be optional in the config schema, the code already handles it as optional everywhere else.
8
+
9
+ ## 0.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - f9618c9: Backstage version bump to v1.46.2
14
+
3
15
  ## 0.1.2
4
16
 
5
17
  ### Patch Changes
package/config.d.ts CHANGED
@@ -56,7 +56,7 @@ export interface Config {
56
56
  /**
57
57
  * A string to append to the title of articles to make them easier to identify as search results from the wiki; optional
58
58
  */
59
- titleSuffix: string;
59
+ titleSuffix?: string;
60
60
  }>;
61
61
  };
62
62
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.2",
2
+ "version": "0.2.1",
3
3
  "license": "Apache-2.0",
4
4
  "name": "@backstage-community/plugin-search-backend-module-azure-devops",
5
5
  "description": "The azure-devops backend module for the search plugin.",
@@ -33,17 +33,17 @@
33
33
  "postpack": "backstage-cli package postpack"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-plugin-api": "^1.5.0",
36
+ "@backstage/backend-plugin-api": "^1.6.0",
37
37
  "@backstage/config": "^1.3.6",
38
38
  "@backstage/errors": "^1.2.7",
39
- "@backstage/plugin-search-backend-node": "^1.3.17",
39
+ "@backstage/plugin-search-backend-node": "^1.4.0",
40
40
  "@backstage/plugin-search-common": "^1.2.21",
41
41
  "axios": "^1.4.0",
42
42
  "axios-retry": "^3.5.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@backstage/backend-test-utils": "^1.10.0",
46
- "@backstage/cli": "^0.34.5"
45
+ "@backstage/backend-test-utils": "^1.10.2",
46
+ "@backstage/cli": "^0.35.1"
47
47
  },
48
48
  "files": [
49
49
  "dist",