Skip to content

Commit 61e2e35

Browse files
authored
Mod/spr/bump version to8.23.11 (#165)
* Prepare for 8.23.11 publication * DXCB Publish build requires in-file PCore declaration * Update some versions to reduce vulnerability count * Updates to KeyReleaseUpdates.md * Locking @pega/pcore-pconnect-typedefs to 0.0.6 for now * Update release date and note 1st/last PR in release 8.23.11
1 parent c802d10 commit 61e2e35

File tree

30 files changed

+752
-226
lines changed

30 files changed

+752
-226
lines changed

package-lock.json

Lines changed: 635 additions & 218 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pega/react-sdk-components",
3-
"version": "8.23.10",
3+
"version": "8.23.11",
44
"description": "React SDK packaging: bridge and components, overrides",
55
"main": "index.ts",
66
"scripts": {
@@ -70,7 +70,7 @@
7070
"@pega/configs": "^0.4.0",
7171
"@pega/cspell-config": "^0.4.0",
7272
"@pega/eslint-config": "^0.4.0",
73-
"@pega/pcore-pconnect-typedefs": "latest",
73+
"@pega/pcore-pconnect-typedefs": "0.0.6",
7474
"@pega/prettier-config": "^0.4.0",
7575
"@pega/stylelint-config": "^0.4.0",
7676
"@pega/tsconfig": "^0.4.0",
@@ -79,7 +79,7 @@
7979
"@testing-library/react": "^12.1.2",
8080
"@types/jest": "^29.4.0",
8181
"@typescript-eslint/eslint-plugin": "^5.47.0",
82-
"babel-loader": "^9.1.2",
82+
"babel-loader": "^9.1.3",
8383
"clean-webpack-plugin": "^3.0.0",
8484
"commitlint": "^17.3.0",
8585
"compression-webpack-plugin": "^8.0.0",
@@ -108,8 +108,8 @@
108108
"replace-in-file": "^6.3.5",
109109
"sass-loader": "^10.1.1",
110110
"shx": "^0.3.4",
111-
"stylelint": "^14.16.0",
112111
"style-loader": "^2.0.0",
112+
"stylelint": "^15.10.1",
113113
"ts-jest": "^29.0.5",
114114
"ts-loader": "^8.4.0",
115115
"typescript": "^4.7.4",

packages/react-sdk-components/doc/KeyReleaseUpdates.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
#### **Release SDK-R-C 8.23.11 (xx xxxx 2023)**
1+
#### **Release SDK-R-C 8.23.11 (10 August 2023)**
22

3+
* Many significant improvements to localization
34
* Added new AlertBanner component (in designSystemExtension) and its use in Assignment and ModalViewContainer
45
* Bug fixes in Decimal and Attachment components
5-
* Fixed some cases where dropdown items weren't properly loaded from datasource
6+
* Fixed some cases where Dropdown items weren't properly loaded from datasource
7+
* Infrastructure components (FlowContainer and ModalViewContainer) now use overridden component implementations when overrides are available.
8+
* Bug fixes
9+
* Full set of merged PRs can be found in the [react-sdk-components GitHub repo list of merged PRs](https://github.com/pegasystems/react-sdk-components/pulls?page=1&q=is%3Apr+is%3Amerged). This release includes all PRs since (and including) #117 and #165.
610

711
<br />
812

packages/react-sdk-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pega/react-sdk-components",
3-
"version": "8.23.10",
3+
"version": "8.23.11",
44
"description": "React SDK Infrastructure: bridge and components",
55
"_filesComment": "During packing, npm ignores everything NOT in the files list",
66
"files": [

packages/react-sdk-components/src/components/designSystemExtension/Operator/Operator.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ import { makeStyles } from '@material-ui/core/styles';
99

1010
import Utils from '../../helpers/utils';
1111

12+
import PCoreType from '@pega/pcore-pconnect-typedefs/types/pcore';
13+
14+
declare const PCore: typeof PCoreType;
15+
1216

1317
const useStyles = makeStyles((theme) => ({
1418
root: {

packages/react-sdk-components/src/components/field/Currency/currency-utils.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import { default as CurrencyAlias} from '../../helpers/formatters/Currency';
33
// eslint-disable-next-line import/no-named-default
44
import { default as CurrencyMapAlias } from '../../helpers/formatters/CurrencyMap';
55

6+
import PCoreType from '@pega/pcore-pconnect-typedefs/types/pcore';
7+
8+
declare const PCore: typeof PCoreType;
9+
610

711
export const getCurrencyOptions = (inISOCode: string) => {
812

packages/react-sdk-components/src/components/helpers/formatters/common.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
import PCoreType from '@pega/pcore-pconnect-typedefs/types/pcore';
2+
3+
declare const PCore: typeof PCoreType;
4+
5+
16
export function getLocale(locale='') {
27
// use locale if specified
38
if (locale) return locale;

packages/react-sdk-components/src/components/helpers/simpleTableHelpers.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
import { Utils } from './utils';
2+
import PCoreType from '@pega/pcore-pconnect-typedefs/types/pcore';
3+
4+
declare const PCore: typeof PCoreType;
5+
26

37
export const TABLE_CELL = "SdkRenderer";
48
export const DELETE_ICON = "DeleteIcon";

packages/react-sdk-components/src/components/helpers/state-utils.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import React, { useContext } from 'react';
22
import { connect, Provider, shallowEqual } from 'react-redux';
33
import ReactReduxContext from '../../bridge/Context/StoreContext';
4+
import PCoreType from '@pega/pcore-pconnect-typedefs/types/pcore';
5+
6+
declare const PCore: typeof PCoreType;
47

58

69
const connectToState = (mapStateToProps = () => {}) => {

packages/react-sdk-components/src/components/helpers/template-utils.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
// This file is adapted from React DX components/template/utils.js
2+
import PCoreType from '@pega/pcore-pconnect-typedefs/types/pcore';
3+
4+
declare const PCore: typeof PCoreType;
25

36

47
export function getAllFields(pConnect: any) {

0 commit comments

Comments
 (0)