@backstage/plugin-signals 0.0.25-next.1 → 0.0.25

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,19 @@
1
1
  # @backstage/plugin-signals
2
2
 
3
+ ## 0.0.25
4
+
5
+ ### Patch Changes
6
+
7
+ - 71c22f3: Removed/moved unused dependencies
8
+ - f0f006e: Fixes a bug where the `SignalClient` would try to subscribe to the same channel twice after an error, instead of just once.
9
+ - 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's `erasableSyntaxOnly` setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
10
+ - Updated dependencies
11
+ - @backstage/frontend-plugin-api@0.13.0
12
+ - @backstage/core-compat-api@0.5.4
13
+ - @backstage/core-components@0.18.3
14
+ - @backstage/core-plugin-api@1.12.0
15
+ - @backstage/plugin-signals-react@0.0.17
16
+
3
17
  ## 0.0.25-next.1
4
18
 
5
19
  ### Patch Changes
package/dist/alpha.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api'
2
2
 
3
3
  /** @alpha */
4
4
  declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
5
- "api:signals": _backstage_frontend_plugin_api.ExtensionDefinition<{
5
+ "api:signals": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
6
6
  kind: "api";
7
7
  name: undefined;
8
8
  config: {};
@@ -1,5 +1,5 @@
1
1
  var name = "@backstage/plugin-signals";
2
- var version = "0.0.25-next.1";
2
+ var version = "0.0.25";
3
3
  var backstage = {
4
4
  role: "frontend-plugin",
5
5
  pluginId: "signals",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals",
3
- "version": "0.0.25-next.1",
3
+ "version": "0.0.25",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "signals",
@@ -63,20 +63,20 @@
63
63
  "test": "backstage-cli package test"
64
64
  },
65
65
  "dependencies": {
66
- "@backstage/core-compat-api": "0.5.4-next.0",
67
- "@backstage/core-components": "0.18.3-next.1",
68
- "@backstage/core-plugin-api": "1.11.2-next.1",
69
- "@backstage/frontend-plugin-api": "0.12.2-next.1",
70
- "@backstage/plugin-signals-react": "0.0.17-next.0",
71
- "@backstage/theme": "0.7.0",
72
- "@backstage/types": "1.2.2",
66
+ "@backstage/core-compat-api": "^0.5.4",
67
+ "@backstage/core-components": "^0.18.3",
68
+ "@backstage/core-plugin-api": "^1.12.0",
69
+ "@backstage/frontend-plugin-api": "^0.13.0",
70
+ "@backstage/plugin-signals-react": "^0.0.17",
71
+ "@backstage/theme": "^0.7.0",
72
+ "@backstage/types": "^1.2.2",
73
73
  "@material-ui/core": "^4.12.4",
74
74
  "uuid": "^11.0.0"
75
75
  },
76
76
  "devDependencies": {
77
- "@backstage/cli": "0.34.5-next.1",
78
- "@backstage/dev-utils": "1.1.17-next.1",
79
- "@backstage/test-utils": "1.7.13-next.0",
77
+ "@backstage/cli": "^0.34.5",
78
+ "@backstage/dev-utils": "^1.1.17",
79
+ "@backstage/test-utils": "^1.7.13",
80
80
  "@testing-library/jest-dom": "^6.0.0",
81
81
  "@testing-library/react": "^16.0.0",
82
82
  "@types/react": "^18.0.0",