@backstage/plugin-kubernetes 0.7.9-next.1 → 0.7.9

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,32 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.7.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 8adeb19b37d: GitLab can now be used as an `oidcTokenProvider` for Kubernetes clusters
8
+ - c10384a9235: Switch to using `LinkButton` instead of the deprecated `Button`
9
+ - 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
10
+ - Updated dependencies
11
+ - @backstage/core-components@0.12.5
12
+ - @backstage/plugin-catalog-react@1.4.0
13
+ - @backstage/core-plugin-api@1.5.0
14
+ - @backstage/catalog-model@1.2.1
15
+ - @backstage/config@1.0.7
16
+ - @backstage/theme@0.2.18
17
+ - @backstage/plugin-kubernetes-common@0.6.1
18
+
19
+ ## 0.7.9-next.2
20
+
21
+ ### Patch Changes
22
+
23
+ - 8adeb19b37d: GitLab can now be used as an `oidcTokenProvider` for Kubernetes clusters
24
+ - Updated dependencies
25
+ - @backstage/core-components@0.12.5-next.2
26
+ - @backstage/plugin-catalog-react@1.4.0-next.2
27
+ - @backstage/core-plugin-api@1.5.0-next.2
28
+ - @backstage/config@1.0.7-next.0
29
+
3
30
  ## 0.7.9-next.1
4
31
 
5
32
  ### Patch Changes
package/dist/index.esm.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { stringifyEntityRef } from '@backstage/catalog-model';
2
- import { createApiRef, createRouteRef, createPlugin, createApiFactory, discoveryApiRef, identityApiRef, googleAuthApiRef, microsoftAuthApiRef, oktaAuthApiRef, oneloginAuthApiRef, createRoutableExtension, useApi } from '@backstage/core-plugin-api';
2
+ import { createApiRef, createRouteRef, createPlugin, createApiFactory, discoveryApiRef, identityApiRef, gitlabAuthApiRef, googleAuthApiRef, microsoftAuthApiRef, oktaAuthApiRef, oneloginAuthApiRef, createRoutableExtension, useApi } from '@backstage/core-plugin-api';
3
3
  import * as React from 'react';
4
4
  import React__default, { Fragment, useCallback, useState, useContext } from 'react';
5
5
  import { useEntity } from '@backstage/plugin-catalog-react';
@@ -209,18 +209,21 @@ const kubernetesPlugin = createPlugin({
209
209
  createApiFactory({
210
210
  api: kubernetesAuthProvidersApiRef,
211
211
  deps: {
212
+ gitlabAuthApi: gitlabAuthApiRef,
212
213
  googleAuthApi: googleAuthApiRef,
213
214
  microsoftAuthApi: microsoftAuthApiRef,
214
215
  oktaAuthApi: oktaAuthApiRef,
215
216
  oneloginAuthApi: oneloginAuthApiRef
216
217
  },
217
218
  factory: ({
219
+ gitlabAuthApi,
218
220
  googleAuthApi,
219
221
  microsoftAuthApi,
220
222
  oktaAuthApi,
221
223
  oneloginAuthApi
222
224
  }) => {
223
225
  const oidcProviders = {
226
+ gitlab: gitlabAuthApi,
224
227
  google: googleAuthApi,
225
228
  microsoft: microsoftAuthApi,
226
229
  okta: oktaAuthApi,