@backstage/plugin-scaffolder-react 1.14.0-next.3 → 1.14.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/plugin-scaffolder-react
2
2
 
3
+ ## 1.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 69fb6e7: Fix `contextMenu` not being disabled bug in new scaffolder pages
8
+
9
+ ### Patch Changes
10
+
11
+ - 8b5ff7e: Fix issue with form state not refreshing when updating
12
+ - ade301c: Fix issue with `Stepper` and trying to trim additional properties. This is now all behind `liveOmit` and `omitExtraData` instead.
13
+ - f61d4cc: Add scaffolder permission `scaffolder.template.management` for accessing the template management features
14
+ - Updated dependencies
15
+ - @backstage/catalog-client@1.8.0
16
+ - @backstage/theme@0.6.1
17
+ - @backstage/types@1.2.0
18
+ - @backstage/plugin-catalog-react@1.14.1
19
+ - @backstage/plugin-scaffolder-common@1.5.7
20
+ - @backstage/core-components@0.16.0
21
+ - @backstage/catalog-model@1.7.1
22
+ - @backstage/core-plugin-api@1.10.1
23
+ - @backstage/frontend-plugin-api@0.9.1
24
+ - @backstage/version-bridge@1.0.10
25
+ - @backstage/plugin-permission-react@0.4.28
26
+
3
27
  ## 1.14.0-next.3
4
28
 
5
29
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /// <reference types="react" />
2
2
  import { ApiHolder, Extension } from '@backstage/core-plugin-api';
3
- import React__default, { HTMLAttributes, ReactNode, FormEvent, ElementType, Ref, ComponentType, PropsWithChildren } from 'react';
3
+ import React__default, { HTMLAttributes, ReactNode, ComponentType, FormEvent, ElementType, Ref, PropsWithChildren } from 'react';
4
4
  import { JsonObject, JsonValue, Observable } from '@backstage/types';
5
5
  import { JSONSchema7 } from 'json-schema';
6
- import { StrictRJSFSchema, RJSFSchema, FormContextType, GenericObjectType, UiSchema, IdSchema, ErrorSchema, Registry, ValidatorType, TemplatesType, RegistryWidgetsType, RJSFValidationError, CustomValidator, ErrorTransformer, Experimental_DefaultFormStateBehavior, UIOptionsType, FieldValidation } from '@rjsf/utils';
6
+ import { StrictRJSFSchema, RJSFSchema, FormContextType, GenericObjectType, UiSchema, IdSchema, ErrorSchema, Registry, ValidatorType, TemplatesType, RegistryWidgetsType, RJSFValidationError, CustomValidator, ErrorTransformer, Experimental_DefaultFormStateBehavior, FieldValidation, UIOptionsType } from '@rjsf/utils';
7
7
  import Form, { IChangeEvent, FormProps as FormProps$1 } from '@rjsf/core';
8
8
  import { TemplateEntityV1beta3, TemplatePresentationV1beta3, TaskSpec, TaskStep } from '@backstage/plugin-scaffolder-common';
9
9
  import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { Content, ItemCardGrid, ContentHeader } from '@backstage/core-components';
2
+ import { Content, ContentHeader, ItemCardGrid } from '@backstage/core-components';
3
3
  import { stringifyEntityRef } from '@backstage/catalog-model';
4
4
  import { TemplateCard } from '../TemplateCard/TemplateCard.esm.js';
5
5
 
@@ -1,5 +1,5 @@
1
1
  import { createVersionedContext, createVersionedValueMap } from '@backstage/version-bridge';
2
- import React, { useState, useContext, useCallback } from 'react';
2
+ import React, { useContext, useCallback, useState } from 'react';
3
3
 
4
4
  const SecretsContext = createVersionedContext("secrets-context");
5
5
  const SecretsContextProvider = (props) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-react",
3
- "version": "1.14.0-next.3",
3
+ "version": "1.14.0",
4
4
  "description": "A frontend library that helps other Backstage plugins interact with the Scaffolder",
5
5
  "backstage": {
6
6
  "role": "web-library",
@@ -66,17 +66,17 @@
66
66
  "test": "backstage-cli package test"
67
67
  },
68
68
  "dependencies": {
69
- "@backstage/catalog-client": "1.8.0-next.1",
70
- "@backstage/catalog-model": "1.7.0",
71
- "@backstage/core-components": "0.16.0-next.2",
72
- "@backstage/core-plugin-api": "1.10.0",
73
- "@backstage/frontend-plugin-api": "0.9.1-next.2",
74
- "@backstage/plugin-catalog-react": "1.14.1-next.3",
75
- "@backstage/plugin-permission-react": "0.4.27",
76
- "@backstage/plugin-scaffolder-common": "1.5.7-next.0",
77
- "@backstage/theme": "0.6.1-next.0",
78
- "@backstage/types": "1.1.1",
79
- "@backstage/version-bridge": "1.0.10",
69
+ "@backstage/catalog-client": "^1.8.0",
70
+ "@backstage/catalog-model": "^1.7.1",
71
+ "@backstage/core-components": "^0.16.0",
72
+ "@backstage/core-plugin-api": "^1.10.1",
73
+ "@backstage/frontend-plugin-api": "^0.9.1",
74
+ "@backstage/plugin-catalog-react": "^1.14.1",
75
+ "@backstage/plugin-permission-react": "^0.4.28",
76
+ "@backstage/plugin-scaffolder-common": "^1.5.7",
77
+ "@backstage/theme": "^0.6.1",
78
+ "@backstage/types": "^1.2.0",
79
+ "@backstage/version-bridge": "^1.0.10",
80
80
  "@material-ui/core": "^4.12.2",
81
81
  "@material-ui/icons": "^4.9.1",
82
82
  "@material-ui/lab": "4.0.0-alpha.61",
@@ -102,12 +102,12 @@
102
102
  "zod-to-json-schema": "^3.20.4"
103
103
  },
104
104
  "devDependencies": {
105
- "@backstage/cli": "0.29.0-next.3",
106
- "@backstage/core-app-api": "1.15.1",
107
- "@backstage/plugin-catalog": "1.25.0-next.3",
108
- "@backstage/plugin-catalog-common": "1.1.0",
109
- "@backstage/plugin-permission-common": "0.8.1",
110
- "@backstage/test-utils": "1.7.1-next.0",
105
+ "@backstage/cli": "^0.29.0",
106
+ "@backstage/core-app-api": "^1.15.2",
107
+ "@backstage/plugin-catalog": "^1.25.0",
108
+ "@backstage/plugin-catalog-common": "^1.1.1",
109
+ "@backstage/plugin-permission-common": "^0.8.2",
110
+ "@backstage/test-utils": "^1.7.1",
111
111
  "@testing-library/dom": "^10.0.0",
112
112
  "@testing-library/jest-dom": "^6.0.0",
113
113
  "@testing-library/react": "^16.0.0",