@backstage/integration 1.4.0-next.0 → 1.4.0

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 +31 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d05e1841ce: This patch brings Gitea as a valid integration: target, via the ScmIntegration interface. It adds gitea to the relevant static properties (get integration by name, get integration by type) for plugins to be able to reference the same Gitea server.
8
+ - c1784a4980: Replaces in-code uses of `GitHub` with `Github` and deprecates old versions.
9
+
10
+ Deprecates:
11
+
12
+ - `getGitHubFileFetchUrl` replaced by `getGithubFileFetchUrl`
13
+ - `GitHubIntegrationConfig` replaced by `GithubIntegrationConfig`
14
+ - `GitHubIntegration` replaced by `GithubIntegration`
15
+ - `readGitHubIntegrationConfig` replaced by `readGithubIntegrationConfig`
16
+ - `readGitHubIntegrationConfigs` replaced by `readGithubIntegrationConfigs`
17
+ - `replaceGitHubUrlType` replaced by `replaceGithubUrlType`
18
+
19
+ ### Patch Changes
20
+
21
+ - 7573b65232: Internal refactor of imports to avoid circular dependencies
22
+ - a6d779d58a: Remove explicit default visibility at `config.d.ts` files.
23
+
24
+ ```ts
25
+ /**
26
+ * @visibility backend
27
+ */
28
+ ```
29
+
30
+ - Updated dependencies
31
+ - @backstage/config@1.0.4
32
+ - @backstage/errors@1.1.3
33
+
3
34
  ## 1.4.0-next.0
4
35
 
5
36
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/integration",
3
3
  "description": "Helpers for managing integrations towards external systems",
4
- "version": "1.4.0-next.0",
4
+ "version": "1.4.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -32,8 +32,8 @@
32
32
  "clean": "backstage-cli package clean"
33
33
  },
34
34
  "dependencies": {
35
- "@backstage/config": "^1.0.4-next.0",
36
- "@backstage/errors": "^1.1.3-next.0",
35
+ "@backstage/config": "^1.0.4",
36
+ "@backstage/errors": "^1.1.3",
37
37
  "@octokit/auth-app": "^4.0.0",
38
38
  "@octokit/rest": "^19.0.3",
39
39
  "cross-fetch": "^3.1.5",
@@ -42,11 +42,11 @@
42
42
  "luxon": "^3.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@backstage/cli": "^0.21.0-next.0",
46
- "@backstage/config-loader": "^1.1.6-next.0",
47
- "@backstage/test-utils": "^1.2.2-next.0",
45
+ "@backstage/cli": "^0.21.0",
46
+ "@backstage/config-loader": "^1.1.6",
47
+ "@backstage/test-utils": "^1.2.2",
48
48
  "@types/luxon": "^3.0.0",
49
- "msw": "^0.47.0"
49
+ "msw": "^0.48.0"
50
50
  },
51
51
  "files": [
52
52
  "dist",