@backstage/core-plugin-api 0.1.9 → 0.1.13
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 +62 -0
- package/dist/index.d.ts +840 -87
- package/dist/index.esm.js +121 -13
- package/dist/index.esm.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,67 @@
|
|
|
1
1
|
# @backstage/core-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4a336fd292: Deprecate use of extensions without name. Adds a warning to the developer console to prompt integrators to provide names for extensions.
|
|
8
|
+
- 8b4284cd5c: Improve API documentation for @backstage/core-plugin-api
|
|
9
|
+
- e059aea7b9: Deprecate unused ApiRef types
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/theme@0.2.13
|
|
12
|
+
|
|
13
|
+
## 0.1.12
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 41c49884d2: Start using the new `@backstage/types` package. Initially, this means using the `Observable` and `Json*` types from there. The types also remain in their old places but deprecated, and will be removed in a future release.
|
|
18
|
+
- 925a967f36: Replace usage of test-utils-core with test-utils
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/config@0.1.11
|
|
21
|
+
- @backstage/theme@0.2.12
|
|
22
|
+
|
|
23
|
+
## 0.1.11
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 202f322927: Atlassian auth provider
|
|
28
|
+
|
|
29
|
+
- AtlassianAuth added to core-app-api
|
|
30
|
+
- Atlassian provider added to plugin-auth-backend
|
|
31
|
+
- Updated user-settings with Atlassian connection
|
|
32
|
+
|
|
33
|
+
- 36e67d2f24: Internal updates to apply more strict checks to throw errors.
|
|
34
|
+
|
|
35
|
+
## 0.1.10
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- 829bc698f4: Introducing the Analytics API: a lightweight way for plugins to instrument key
|
|
40
|
+
events that could help inform a Backstage Integrator how their instance of
|
|
41
|
+
Backstage is being used. The API consists of the following:
|
|
42
|
+
|
|
43
|
+
- `useAnalytics()`, a hook to be used inside plugin components which retrieves
|
|
44
|
+
an Analytics Tracker.
|
|
45
|
+
- `tracker.captureEvent()`, a method on the tracker used to instrument key
|
|
46
|
+
events. The method expects an action (the event name) and a subject (a unique
|
|
47
|
+
identifier of the object the action is being taken on).
|
|
48
|
+
- `<AnalyticsContext />`, a way to declaratively attach additional information
|
|
49
|
+
to any/all events captured in the underlying React tree. There is also a
|
|
50
|
+
`withAnalyticsContext()` HOC utility.
|
|
51
|
+
- The `tracker.captureEvent()` method also accepts an `attributes` option for
|
|
52
|
+
providing additional run-time information about an event, as well as a
|
|
53
|
+
`value` option for capturing a numeric/metric value.
|
|
54
|
+
|
|
55
|
+
By default, captured events are not sent anywhere. In order to collect and
|
|
56
|
+
redirect events to an analytics system, the `analyticsApi` will need to be
|
|
57
|
+
implemented and instantiated by an App Integrator.
|
|
58
|
+
|
|
59
|
+
- 4c3eea7788: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.
|
|
60
|
+
|
|
61
|
+
- BitbucketAuth added to core-app-api.
|
|
62
|
+
- Bitbucket provider added to plugin-auth-backend.
|
|
63
|
+
- Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
|
|
64
|
+
|
|
3
65
|
## 0.1.9
|
|
4
66
|
|
|
5
67
|
### Patch Changes
|