From 422df7d4778e07ebd3ff5d9c0d2fc8e0929659a8 Mon Sep 17 00:00:00 2001 From: sadilchamishka Date: Thu, 24 Oct 2024 09:35:34 +0530 Subject: [PATCH 01/59] Remove unnecessary org qualified callback url regex for portal apps --- .../apps/common/util/AppPortalUtils.java | 33 +++++-------------- 1 file changed, 8 insertions(+), 25 deletions(-) diff --git a/identity-apps-core/components/org.wso2.identity.apps.common/src/main/java/org/wso2/identity/apps/common/util/AppPortalUtils.java b/identity-apps-core/components/org.wso2.identity.apps.common/src/main/java/org/wso2/identity/apps/common/util/AppPortalUtils.java index f3bbf917535..bc370139631 100644 --- a/identity-apps-core/components/org.wso2.identity.apps.common/src/main/java/org/wso2/identity/apps/common/util/AppPortalUtils.java +++ b/identity-apps-core/components/org.wso2.identity.apps.common/src/main/java/org/wso2/identity/apps/common/util/AppPortalUtils.java @@ -135,32 +135,15 @@ public static void createOAuth2Application(String applicationName, String portal throw new IdentityOAuthAdminException("Server encountered an error while building callback URL with " + "placeholders for the server URL", e); } - if (CarbonConstants.ENABLE_LEGACY_AUTHZ_RUNTIME) { - if (SUPER_TENANT_DOMAIN_NAME.equals(tenantDomain)) { - if (StringUtils.equals(CONSOLE_APP, applicationName) && - AppsCommonDataHolder.getInstance().isOrganizationManagementEnabled()) { - callbackUrl = "regexp=(" + callbackUrl - + "|" + callbackUrl.replace(portalPath, "/t/(.*)" + portalPath) - + "|" + callbackUrl.replace(portalPath, "/o/(.*)" + portalPath) - + ")"; - } else { - callbackUrl = "regexp=(" + callbackUrl - + "|" + callbackUrl.replace(portalPath, "/t/(.*)" + portalPath) - + ")"; - } - } + if (SUPER_TENANT_DOMAIN_NAME.equals(tenantDomain)) { + callbackUrl = "regexp=(" + callbackUrl + + "|" + callbackUrl.replace(portalPath, "/t/carbon.super" + portalPath) + + "|" + callbackUrl.replace(portalPath, "/t/carbon.super/o/(.*)" + portalPath) + + ")"; } else { - if (SUPER_TENANT_DOMAIN_NAME.equals(tenantDomain)) { - callbackUrl = "regexp=(" + callbackUrl - + "|" + callbackUrl.replace(portalPath, "/o/(.*)" + portalPath) - + "|" + callbackUrl.replace(portalPath, "/t/carbon.super" + portalPath) - + "|" + callbackUrl.replace(portalPath, "/t/carbon.super/o/(.*)" + portalPath) - + ")"; - } else { - callbackUrl = "regexp=(" + callbackUrl.replace(portalPath, "/t/(.*)" + portalPath) - + "|" + callbackUrl.replace(portalPath, "/t/(.*)/o/(.*)" + portalPath) - + ")"; - } + callbackUrl = "regexp=(" + callbackUrl.replace(portalPath, "/t/(.*)" + portalPath) + + "|" + callbackUrl.replace(portalPath, "/t/(.*)/o/(.*)" + portalPath) + + ")"; } oAuthConsumerAppDTO.setCallbackUrl(callbackUrl); oAuthConsumerAppDTO.setBypassClientCredentials(true); From d8ac25af8c462eac2d2bb5c949f32996ad83a000 Mon Sep 17 00:00:00 2001 From: sadilchamishka Date: Thu, 24 Oct 2024 09:36:44 +0530 Subject: [PATCH 02/59] =?UTF-8?q?Add=20changeset=20=F0=9F=A6=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/early-chairs-impress.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/early-chairs-impress.md diff --git a/.changeset/early-chairs-impress.md b/.changeset/early-chairs-impress.md new file mode 100644 index 00000000000..38182ccbcb6 --- /dev/null +++ b/.changeset/early-chairs-impress.md @@ -0,0 +1,5 @@ +--- +"@wso2is/identity-apps-core": patch +--- + +Remove unnecessary org qualified callback url regex for portal apps From f4a015d9b19a8765ce6daca16a7b8694c794a8d6 Mon Sep 17 00:00:00 2001 From: savindi7 Date: Wed, 18 Dec 2024 15:42:21 +0530 Subject: [PATCH 03/59] Add build script to convert css files into RTL --- modules/theme/package.json | 1 + modules/theme/scripts/build.js | 20 +++- pnpm-lock.yaml | 212 +++++++++++++++++---------------- 3 files changed, 131 insertions(+), 102 deletions(-) diff --git a/modules/theme/package.json b/modules/theme/package.json index b709d8f58d4..88464e78060 100644 --- a/modules/theme/package.json +++ b/modules/theme/package.json @@ -51,6 +51,7 @@ "rc-tree": "^4.0.0-beta.2", "replace": "^1.1.5", "rimraf": "^3.0.2", + "rtlcss": "^4.3.0", "semantic-ui-css": "^2.4.1", "semantic-ui-less": "^2.4.1", "ts-jest": "^29.1.2", diff --git a/modules/theme/scripts/build.js b/modules/theme/scripts/build.js index 4d3e86a8834..05aaea972ca 100644 --- a/modules/theme/scripts/build.js +++ b/modules/theme/scripts/build.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -25,6 +25,7 @@ const fs = require("fs-extra"); const lessToJson = require("less-to-json"); const mergeFiles = require("merge-files"); const replace = require("replace"); +const rtlcss = require("rtlcss"); const { Theme } = require("../src/theme"); /** @@ -147,6 +148,16 @@ const writeFile = (theme, file, content) => { log.info(theme + "/" + "theme" + file + " generated."); }; +/** + * Generates RTL CSS files using rtlcss. + * + * @param {string} ltrCss - LTR CSS content. + * @returns {string} RTL-compatible CSS content. + */ +const generateRTLCSS = (ltrCss) => { + return rtlcss.process(ltrCss); +}; + /* * Copy semantic.js files to each theme to make them self contained * @@ -253,10 +264,15 @@ const generateThemes = () => { return Theme.compile(themeIndexFile, {}).then((output) => { const minifiedOutput = new CleanCSS().minify(output.css); + const rtlCSS = generateRTLCSS(output.css); // Generate RTL CSS + const rtlMinCSS = new CleanCSS().minify(rtlCSS); // Minify RTL CSS + const files = { ".css": output.css, ".css.map": output.map, - ".min.css": minifiedOutput.styles + ".min.css": minifiedOutput.styles, + ".rtl.css": rtlCSS, + ".rtl.min.css": rtlMinCSS.styles }; Object.keys(files).map((key) => { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 421d1c3ad1d..c47baa64a26 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21042,6 +21042,9 @@ importers: rimraf: specifier: ^3.0.2 version: 3.0.2 + rtlcss: + specifier: ^4.3.0 + version: 4.3.0 semantic-ui-css: specifier: ^2.4.1 version: 2.5.0 @@ -21251,10 +21254,10 @@ packages: '@babel/helpers': 7.26.0 '@babel/parser': 7.26.2 '@babel/template': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 convert-source-map: 1.9.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 lodash: 4.17.21 @@ -21276,10 +21279,10 @@ packages: '@babel/helpers': 7.26.0 '@babel/parser': 7.26.2 '@babel/template': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 convert-source-map: 2.0.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -21306,7 +21309,7 @@ packages: resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color @@ -21333,7 +21336,7 @@ packages: '@babel/helper-optimise-call-expression': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -21356,10 +21359,10 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 - debug: 4.3.7(supports-color@6.1.0) + '@babel/traverse': 7.25.9(supports-color@5.5.0) + debug: 4.3.7(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.8 semver: 6.3.1 @@ -21374,7 +21377,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -21384,16 +21387,7 @@ packages: resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 - transitivePeerDependencies: - - supports-color - - /@babel/helper-module-imports@7.25.9: - resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color @@ -21406,7 +21400,6 @@ packages: '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color - dev: false /@babel/helper-module-transforms@7.26.0(@babel/core@7.12.9): resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} @@ -21415,9 +21408,9 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21428,9 +21421,9 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21456,7 +21449,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21469,7 +21462,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21477,7 +21470,7 @@ packages: resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color @@ -21486,7 +21479,7 @@ packages: resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color @@ -21508,7 +21501,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color @@ -21545,7 +21538,7 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21588,7 +21581,7 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21934,7 +21927,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -21945,7 +21938,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: @@ -22004,7 +21997,7 @@ packages: '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -22118,7 +22111,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -22193,7 +22186,7 @@ packages: '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -22379,7 +22372,7 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) '@babel/types': 7.26.0 @@ -22432,7 +22425,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@babel/helper-plugin-utils': 7.25.9 babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) @@ -22716,20 +22709,6 @@ packages: '@babel/parser': 7.26.2 '@babel/types': 7.26.0 - /@babel/traverse@7.25.9: - resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.2 - '@babel/parser': 7.26.2 - '@babel/template': 7.25.9 - '@babel/types': 7.26.0 - debug: 4.3.7(supports-color@6.1.0) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/traverse@7.25.9(supports-color@5.5.0): resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} engines: {node: '>=6.9.0'} @@ -22743,7 +22722,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false /@babel/types@7.26.0: resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} @@ -22993,7 +22971,7 @@ packages: /@emotion/babel-plugin@11.12.0: resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==} dependencies: - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@babel/runtime': 7.26.0 '@emotion/hash': 0.9.2 '@emotion/memoize': 0.9.0 @@ -23330,7 +23308,7 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) espree: 7.3.1 globals: 13.24.0 ignore: 4.0.6 @@ -23347,7 +23325,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.2 @@ -23416,7 +23394,7 @@ packages: deprecated: Use @eslint/config-array instead dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -23427,7 +23405,7 @@ packages: deprecated: Use @eslint/config-array instead dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -24984,7 +24962,7 @@ packages: dependencies: '@open-draft/until': 1.0.3 '@xmldom/xmldom': 0.7.13 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) headers-utils: 3.0.2 outvariant: 1.4.3 strict-event-emitter: 0.2.8 @@ -26997,7 +26975,7 @@ packages: optional: true dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) '@rollup/pluginutils': 3.1.0(rollup@2.79.2) rollup: 2.79.2 transitivePeerDependencies: @@ -28566,7 +28544,7 @@ packages: '@babel/parser': 7.26.2 '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/mdx1-csf': 0.0.1(@babel/core@7.26.0) @@ -28584,7 +28562,7 @@ packages: dependencies: '@babel/generator': 7.26.2 '@babel/parser': 7.26.2 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 '@storybook/csf': 0.1.11 '@storybook/types': 7.6.9 @@ -28904,7 +28882,7 @@ packages: typescript: '>= 3.x' webpack: 5.84.1 dependencies: - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -28923,7 +28901,7 @@ packages: typescript: '>= 4.x' webpack: 5.84.1 dependencies: - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -29801,7 +29779,7 @@ packages: '@swc-node/sourcemap-support': 0.3.0 '@swc/core': 1.3.99(@swc/helpers@0.5.9) colorette: 2.0.20 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) pirates: 4.0.6 tslib: 2.8.0 typescript: 5.1.6 @@ -30985,7 +30963,7 @@ packages: '@typescript-eslint/type-utils': 6.5.0(eslint@7.32.0)(typescript@5.1.6) '@typescript-eslint/utils': 6.5.0(eslint@7.32.0)(typescript@5.1.6) '@typescript-eslint/visitor-keys': 6.5.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) eslint: 7.32.0 graphemer: 1.4.0 ignore: 5.3.2 @@ -31014,7 +30992,7 @@ packages: '@typescript-eslint/type-utils': 6.5.0(eslint@8.46.0)(typescript@4.9.5) '@typescript-eslint/utils': 6.5.0(eslint@8.46.0)(typescript@4.9.5) '@typescript-eslint/visitor-keys': 6.5.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) eslint: 8.46.0 graphemer: 1.4.0 ignore: 5.3.2 @@ -31040,7 +31018,7 @@ packages: '@typescript-eslint/types': 6.5.0 '@typescript-eslint/typescript-estree': 6.5.0(typescript@5.1.6) '@typescript-eslint/visitor-keys': 6.5.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) eslint: 7.32.0 typescript: 5.1.6 transitivePeerDependencies: @@ -31061,7 +31039,7 @@ packages: '@typescript-eslint/types': 6.5.0 '@typescript-eslint/typescript-estree': 6.5.0(typescript@4.9.5) '@typescript-eslint/visitor-keys': 6.5.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) eslint: 8.46.0 typescript: 4.9.5 transitivePeerDependencies: @@ -31096,7 +31074,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 6.5.0(typescript@5.1.6) '@typescript-eslint/utils': 6.5.0(eslint@7.32.0)(typescript@5.1.6) - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) eslint: 7.32.0 ts-api-utils: 1.4.0(typescript@5.1.6) typescript: 5.1.6 @@ -31116,7 +31094,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 6.5.0(typescript@4.9.5) '@typescript-eslint/utils': 6.5.0(eslint@8.46.0)(typescript@4.9.5) - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) eslint: 8.46.0 ts-api-utils: 1.4.0(typescript@4.9.5) typescript: 4.9.5 @@ -31145,7 +31123,7 @@ packages: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -31166,7 +31144,7 @@ packages: dependencies: '@typescript-eslint/types': 6.5.0 '@typescript-eslint/visitor-keys': 6.5.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -31187,7 +31165,7 @@ packages: dependencies: '@typescript-eslint/types': 6.5.0 '@typescript-eslint/visitor-keys': 6.5.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -31567,7 +31545,7 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color dev: true @@ -32318,7 +32296,7 @@ packages: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) transitivePeerDependencies: - supports-color dev: true @@ -34677,7 +34655,6 @@ packages: dependencies: ms: 2.1.3 supports-color: 5.5.0 - dev: false /debug@4.3.7(supports-color@6.1.0): resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} @@ -35000,7 +34977,7 @@ packages: hasBin: true dependencies: address: 1.2.2 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -35569,7 +35546,7 @@ packages: peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) esbuild: 0.18.20 transitivePeerDependencies: - supports-color @@ -36060,7 +36037,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) doctrine: 3.0.0 enquirer: 2.4.1 escape-string-regexp: 4.0.0 @@ -36114,7 +36091,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -36200,7 +36177,7 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 c8: 7.14.0 transitivePeerDependencies: @@ -38179,7 +38156,7 @@ packages: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color dev: true @@ -38190,7 +38167,7 @@ packages: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color dev: true @@ -38272,7 +38249,7 @@ packages: engines: {node: '>= 6.0.0'} dependencies: agent-base: 5.1.1 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -38281,7 +38258,7 @@ packages: engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color dev: true @@ -39226,7 +39203,7 @@ packages: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -39703,7 +39680,7 @@ packages: resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@jest/environment': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 @@ -40917,8 +40894,6 @@ packages: peerDependenciesMeta: webpack: optional: true - webpack-sources: - optional: true dependencies: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 3.2.3 @@ -41128,7 +41103,7 @@ packages: deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. dependencies: date-format: 2.1.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) flatted: 2.0.2 rfdc: 1.4.1 streamroller: 1.0.6 @@ -41762,7 +41737,7 @@ packages: resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} dependencies: '@types/debug': 4.1.12 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -44649,7 +44624,7 @@ packages: engines: {node: '>=8.16.0'} dependencies: '@types/mime-types': 2.1.4 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -44951,7 +44926,7 @@ packages: engines: {node: '>=16.14.0'} dependencies: '@babel/core': 7.26.0 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.25.9(supports-color@5.5.0) '@babel/types': 7.26.0 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 @@ -46320,6 +46295,17 @@ packages: resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} engines: {node: 6.* || >= 7.*} + /rtlcss@4.3.0: + resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + escalade: 3.2.0 + picocolors: 1.1.1 + postcss: 8.4.47 + strip-json-comments: 3.1.1 + dev: true + /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -46818,7 +46804,7 @@ packages: /simple-git@1.132.0: resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} dependencies: - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color dev: true @@ -46935,7 +46921,7 @@ packages: engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -47104,6 +47090,19 @@ packages: /spdx-license-ids@3.0.20: resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} + /spdy-transport@3.0.0: + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + dependencies: + debug: 4.3.7(supports-color@5.5.0) + detect-node: 2.1.0 + hpack.js: 2.1.6 + obuf: 1.1.2 + readable-stream: 3.6.2 + wbuf: 1.7.3 + transitivePeerDependencies: + - supports-color + dev: true + /spdy-transport@3.0.0(supports-color@6.1.0): resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: @@ -47116,6 +47115,19 @@ packages: transitivePeerDependencies: - supports-color + /spdy@4.0.2: + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} + dependencies: + debug: 4.3.7(supports-color@5.5.0) + handle-thing: 2.0.1 + http-deceiver: 1.2.7 + select-hose: 2.0.0 + spdy-transport: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + /spdy@4.0.2(supports-color@6.1.0): resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} @@ -47669,7 +47681,7 @@ packages: hasBin: true dependencies: '@adobe/css-tools': 4.4.0 - debug: 4.3.7(supports-color@6.1.0) + debug: 4.3.7(supports-color@5.5.0) glob: 7.2.3 sax: 1.2.4 source-map: 0.7.4 @@ -48338,7 +48350,7 @@ packages: bs-logger: 0.2.6 esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest: 29.7.0(@types/node@18.11.9) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -49457,7 +49469,7 @@ packages: selfsigned: 2.4.1 serve-index: 1.9.1(supports-color@6.1.0) sockjs: 0.3.24 - spdy: 4.0.2(supports-color@6.1.0) + spdy: 4.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) webpack-dev-middleware: 5.3.4(webpack@5.84.1) From 1699288032271909f28f0df8501c873a73966826 Mon Sep 17 00:00:00 2001 From: savindi7 Date: Fri, 3 Jan 2025 17:29:54 +0530 Subject: [PATCH 04/59] Update theme selection logic based on language direction --- .../main/resources/LanguageOptions.properties | 3 +- .../src/main/webapp/includes/header.jsp | 64 ++++++++++++++++++- .../main/resources/LanguageOptions.properties | 3 +- .../src/main/webapp/includes/header.jsp | 63 +++++++++++++++++- 4 files changed, 128 insertions(+), 5 deletions(-) diff --git a/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties b/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties index 838b3e4ddd5..e4e7fd5235a 100644 --- a/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties +++ b/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties @@ -19,7 +19,8 @@ # -------------------------------------------------------------------------------------- # This file contains the language switcher configurations -# The format of the file is =, +# The format of the file is =,,text direction(rtl/ltr) +# The default text direction is set to "ltr". lang.switch.en_US=us,English - United States lang.switch.fr_FR=fr,Français - France lang.switch.es_ES=es,Español - España diff --git a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp index 2e119c677d7..4f8299c4219 100644 --- a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp @@ -19,6 +19,8 @@ <%@ page import="org.apache.commons.text.StringEscapeUtils" %> <%@ page import="org.wso2.carbon.identity.application.authentication.endpoint.util.AuthenticationEndpointUtil" %> <%@ page import="java.io.File" %> +<%@ page import="java.io.BufferedReader" %> +<%@ page import="java.io.FileReader" %> <%-- Include tenant context --%> @@ -29,18 +31,72 @@ <%-- Branding Preferences --%> - <%-- Extract the name of the stylesheet--%> <% String themeName = "wso2is"; + String language = "en"; // Default language + Cookie[] userCookies = request.getCookies(); + if (userCookies != null) { + for (Cookie cookie : userCookies) { + if ("ui_lang".equals(cookie.getName())) { + language = cookie.getValue(); + break; + } + } + } + + // Specify the file path + String filePath = application.getRealPath("/") + "/WEB-INF/classes/LanguageOptions.properties"; + + // Create a Map to store the language direction + Map languageDirectionMap = new HashMap<>(); + + // Use a BufferedReader to read the file content + try (BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath))) { + String line; + while ((line = bufferedReader.readLine()) != null) { + // Ignore comments and empty lines + if (!line.trim().startsWith("#") && !line.trim().isEmpty()) { + // Split the line into key and value using '=' + String[] keyValue = line.split("="); + if (keyValue.length == 2) { // Ensure valid format + // Extract the language code from the key + String[] keyParts = keyValue[0].split("\\."); + String languageCode = keyParts[keyParts.length - 1]; + + // Split the value into components (languageCode, languageName, direction) + String[] valueParts = keyValue[1].split(","); + if (valueParts.length >= 3) { // Ensure the value has at least 3 parts + String direction = valueParts[2].trim(); + languageDirectionMap.put(languageCode, direction); + } else { + languageDirectionMap.put(languageCode, "ltr"); // Default to LTR if direction is missing + } + } + } + } + } catch (Exception e) { + throw e; + } + + // Get the current language's direction + String direction = languageDirectionMap.getOrDefault(language, "ltr"); + out.write(""); + + String themeSuffix = ""; + if ("rtl".equals(languageDirectionMap.get(language))) { + themeSuffix = ".rtl"; + } + File themeDir = new File(request.getSession().getServletContext().getRealPath("/") + "/" + "libs/themes/" + themeName + "/"); String[] fileNames = themeDir.list(); String themeFileName = ""; for(String file: fileNames) { - if(file.endsWith("min.css")) { + if(file.endsWith(themeSuffix + ".min.css")) { themeFileName = file; + break; } } %> @@ -109,3 +165,7 @@ } } + + diff --git a/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties b/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties index 838b3e4ddd5..e4e7fd5235a 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties +++ b/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties @@ -19,7 +19,8 @@ # -------------------------------------------------------------------------------------- # This file contains the language switcher configurations -# The format of the file is =, +# The format of the file is =,,text direction(rtl/ltr) +# The default text direction is set to "ltr". lang.switch.en_US=us,English - United States lang.switch.fr_FR=fr,Français - France lang.switch.es_ES=es,Español - España diff --git a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp index 3d060ca40e9..cdecce2f1df 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp @@ -20,6 +20,8 @@ <%@ page import="org.wso2.carbon.identity.mgt.endpoint.util.IdentityManagementEndpointUtil" %> <%@ page import="org.owasp.encoder.Encode" %> <%@ page import="java.io.File" %> +<%@ page import="java.io.BufferedReader" %> +<%@ page import="java.io.FileReader" %> <%-- Localization --%> @@ -33,14 +35,69 @@ <% String themeName = "wso2is"; + String language = "en"; // Default language + Cookie[] userCookies = request.getCookies(); + if (userCookies != null) { + for (Cookie cookie : userCookies) { + if ("ui_lang".equals(cookie.getName())) { + language = cookie.getValue(); + break; + } + } + } + + // Specify the file path + String filePath = application.getRealPath("/") + "/WEB-INF/classes/LanguageOptions.properties"; + + // Create a Map to store the language direction + Map languageDirectionMap = new HashMap<>(); + + // Use a BufferedReader to read the file content + try (BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath))) { + String line; + while ((line = bufferedReader.readLine()) != null) { + // Ignore comments and empty lines + if (!line.trim().startsWith("#") && !line.trim().isEmpty()) { + // Split the line into key and value using '=' + String[] keyValue = line.split("="); + if (keyValue.length == 2) { // Ensure valid format + // Extract the language code from the key + String[] keyParts = keyValue[0].split("\\."); + String languageCode = keyParts[keyParts.length - 1]; + + // Split the value into components (languageCode, languageName, direction) + String[] valueParts = keyValue[1].split(","); + if (valueParts.length >= 3) { // Ensure the value has at least 3 parts + String direction = valueParts[2].trim(); + languageDirectionMap.put(languageCode, direction); + } else { + languageDirectionMap.put(languageCode, "ltr"); // Default to LTR if direction is missing + } + } + } + } + } catch (Exception e) { + throw e; + } + + // Get the current language's direction + String direction = languageDirectionMap.getOrDefault(language, "ltr"); + out.write(""); + + String themeSuffix = ""; + if ("rtl".equals(languageDirectionMap.get(language))) { + themeSuffix = ".rtl"; + } + File themeDir = new File(request.getSession().getServletContext().getRealPath("/") + "/" + "libs/themes/" + themeName + "/"); String[] fileNames = themeDir.list(); String themeFileName = ""; for(String file: fileNames) { - if(file.endsWith("min.css")) { + if(file.endsWith(themeSuffix + ".min.css")) { themeFileName = file; + break; } } %> @@ -96,3 +153,7 @@ <% } %> + + From 2b4f5e240882d86aa2fb38d72b2c90e7941a1a2f Mon Sep 17 00:00:00 2001 From: savindi7 Date: Fri, 3 Jan 2025 22:51:00 +0530 Subject: [PATCH 05/59] Remove redundant code and add null check --- .../src/main/webapp/includes/header.jsp | 8 +++++--- .../recovery-portal/src/main/webapp/includes/header.jsp | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp index 4f8299c4219..175fc069ecf 100644 --- a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp @@ -81,7 +81,6 @@ // Get the current language's direction String direction = languageDirectionMap.getOrDefault(language, "ltr"); - out.write(""); String themeSuffix = ""; if ("rtl".equals(languageDirectionMap.get(language))) { @@ -166,6 +165,9 @@ } - diff --git a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp index cdecce2f1df..d853cad2ac8 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp @@ -82,7 +82,6 @@ // Get the current language's direction String direction = languageDirectionMap.getOrDefault(language, "ltr"); - out.write(""); String themeSuffix = ""; if ("rtl".equals(languageDirectionMap.get(language))) { @@ -154,6 +153,9 @@ } %> - From 9556875aff180ee4677b0816388dbe05ff09974a Mon Sep 17 00:00:00 2001 From: savindi7 Date: Mon, 6 Jan 2025 13:38:49 +0530 Subject: [PATCH 06/59] Remove redundant comments and update lock file --- .../src/main/webapp/includes/header.jsp | 27 +++++++++-------- .../src/main/webapp/includes/header.jsp | 27 +++++++++-------- pnpm-lock.yaml | 29 ++++++++++++------- 3 files changed, 45 insertions(+), 38 deletions(-) diff --git a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp index 175fc069ecf..8e07ee36da6 100644 --- a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp @@ -34,10 +34,13 @@ <%-- Extract the name of the stylesheet--%> <% String themeName = "wso2is"; - String language = "en"; // Default language + String language = "en"; Cookie[] userCookies = request.getCookies(); + if (userCookies != null) { + for (Cookie cookie : userCookies) { + if ("ui_lang".equals(cookie.getName())) { language = cookie.getValue(); break; @@ -45,32 +48,28 @@ } } - // Specify the file path String filePath = application.getRealPath("/") + "/WEB-INF/classes/LanguageOptions.properties"; - // Create a Map to store the language direction Map languageDirectionMap = new HashMap<>(); - // Use a BufferedReader to read the file content try (BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath))) { String line; + while ((line = bufferedReader.readLine()) != null) { - // Ignore comments and empty lines + if (!line.trim().startsWith("#") && !line.trim().isEmpty()) { - // Split the line into key and value using '=' String[] keyValue = line.split("="); - if (keyValue.length == 2) { // Ensure valid format - // Extract the language code from the key + + if (keyValue.length == 2) { String[] keyParts = keyValue[0].split("\\."); String languageCode = keyParts[keyParts.length - 1]; - - // Split the value into components (languageCode, languageName, direction) String[] valueParts = keyValue[1].split(","); - if (valueParts.length >= 3) { // Ensure the value has at least 3 parts + + if (valueParts.length >= 3) { String direction = valueParts[2].trim(); languageDirectionMap.put(languageCode, direction); } else { - languageDirectionMap.put(languageCode, "ltr"); // Default to LTR if direction is missing + languageDirectionMap.put(languageCode, "ltr"); } } } @@ -79,7 +78,7 @@ throw e; } - // Get the current language's direction + // Get the selected language's direction. String direction = languageDirectionMap.getOrDefault(language, "ltr"); String themeSuffix = ""; @@ -93,7 +92,7 @@ String themeFileName = ""; for(String file: fileNames) { - if(file.endsWith(themeSuffix + ".min.css")) { + if (file.endsWith(themeSuffix + ".min.css")) { themeFileName = file; break; } diff --git a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp index d853cad2ac8..cf7110c8cee 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp @@ -35,10 +35,13 @@ <% String themeName = "wso2is"; - String language = "en"; // Default language + String language = "en"; Cookie[] userCookies = request.getCookies(); + if (userCookies != null) { + for (Cookie cookie : userCookies) { + if ("ui_lang".equals(cookie.getName())) { language = cookie.getValue(); break; @@ -46,32 +49,28 @@ } } - // Specify the file path String filePath = application.getRealPath("/") + "/WEB-INF/classes/LanguageOptions.properties"; - // Create a Map to store the language direction Map languageDirectionMap = new HashMap<>(); - // Use a BufferedReader to read the file content try (BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath))) { String line; + while ((line = bufferedReader.readLine()) != null) { - // Ignore comments and empty lines + if (!line.trim().startsWith("#") && !line.trim().isEmpty()) { - // Split the line into key and value using '=' String[] keyValue = line.split("="); - if (keyValue.length == 2) { // Ensure valid format - // Extract the language code from the key + + if (keyValue.length == 2) { String[] keyParts = keyValue[0].split("\\."); String languageCode = keyParts[keyParts.length - 1]; - - // Split the value into components (languageCode, languageName, direction) String[] valueParts = keyValue[1].split(","); - if (valueParts.length >= 3) { // Ensure the value has at least 3 parts + + if (valueParts.length >= 3) { String direction = valueParts[2].trim(); languageDirectionMap.put(languageCode, direction); } else { - languageDirectionMap.put(languageCode, "ltr"); // Default to LTR if direction is missing + languageDirectionMap.put(languageCode, "ltr"); } } } @@ -80,7 +79,7 @@ throw e; } - // Get the current language's direction + // Get the selected language's direction String direction = languageDirectionMap.getOrDefault(language, "ltr"); String themeSuffix = ""; @@ -94,7 +93,7 @@ String themeFileName = ""; for(String file: fileNames) { - if(file.endsWith(themeSuffix + ".min.css")) { + if (file.endsWith(themeSuffix + ".min.css")) { themeFileName = file; break; } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0eb3ea7dab7..b1fdb8a30a6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -20965,7 +20965,7 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/traverse': 7.26.4 debug: 4.4.0(supports-color@6.1.0) @@ -21024,7 +21024,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 '@babel/traverse': 7.26.4 transitivePeerDependencies: @@ -21037,7 +21037,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 '@babel/traverse': 7.26.4 transitivePeerDependencies: @@ -21545,7 +21545,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: @@ -21975,7 +21975,7 @@ packages: dependencies: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) '@babel/types': 7.26.3 @@ -22028,7 +22028,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) @@ -22589,7 +22589,7 @@ packages: /@emotion/babel-plugin@11.13.5: resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} dependencies: - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@babel/runtime': 7.26.0 '@emotion/hash': 0.9.2 '@emotion/memoize': 0.9.0 @@ -26605,7 +26605,7 @@ packages: optional: true dependencies: '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.9 '@rollup/pluginutils': 3.1.0(rollup@2.79.2) rollup: 2.79.2 transitivePeerDependencies: @@ -40638,8 +40638,6 @@ packages: peerDependenciesMeta: webpack: optional: true - webpack-sources: - optional: true dependencies: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 3.2.3 @@ -46101,6 +46099,17 @@ packages: resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} engines: {node: 6.* || >= 7.*} + /rtlcss@4.3.0: + resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + escalade: 3.2.0 + picocolors: 1.1.1 + postcss: 8.4.49 + strip-json-comments: 3.1.1 + dev: true + /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} From 664b1ec3c513595cdcc91216af4371dbe70ab996 Mon Sep 17 00:00:00 2001 From: savindi7 Date: Mon, 6 Jan 2025 13:47:27 +0530 Subject: [PATCH 07/59] Add Changeset --- .changeset/hip-melons-crash.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/hip-melons-crash.md diff --git a/.changeset/hip-melons-crash.md b/.changeset/hip-melons-crash.md new file mode 100644 index 00000000000..761a3cddb84 --- /dev/null +++ b/.changeset/hip-melons-crash.md @@ -0,0 +1,6 @@ +--- +"@wso2is/identity-apps-core": minor +"@wso2is/theme": minor +--- + +Add RTL support. From d110fed7bac9d7fba0b3f97b89c40c70c5c18309 Mon Sep 17 00:00:00 2001 From: savindi7 Date: Mon, 6 Jan 2025 13:51:54 +0530 Subject: [PATCH 08/59] Remove redundant comments. --- modules/theme/scripts/build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/theme/scripts/build.js b/modules/theme/scripts/build.js index 05aaea972ca..3c475d73da3 100644 --- a/modules/theme/scripts/build.js +++ b/modules/theme/scripts/build.js @@ -264,8 +264,8 @@ const generateThemes = () => { return Theme.compile(themeIndexFile, {}).then((output) => { const minifiedOutput = new CleanCSS().minify(output.css); - const rtlCSS = generateRTLCSS(output.css); // Generate RTL CSS - const rtlMinCSS = new CleanCSS().minify(rtlCSS); // Minify RTL CSS + const rtlCSS = generateRTLCSS(output.css); + const rtlMinCSS = new CleanCSS().minify(rtlCSS); const files = { ".css": output.css, From 0d0db77e0aae8a9bafbf2eaa86ba0f1204e07ba0 Mon Sep 17 00:00:00 2001 From: savindi7 Date: Mon, 6 Jan 2025 18:32:36 +0530 Subject: [PATCH 09/59] Remove unnecessary new lines --- .../src/main/webapp/includes/header.jsp | 5 +---- .../apps/recovery-portal/src/main/webapp/includes/header.jsp | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp index 8e07ee36da6..69598b8ad78 100644 --- a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp @@ -38,9 +38,7 @@ Cookie[] userCookies = request.getCookies(); if (userCookies != null) { - for (Cookie cookie : userCookies) { - if ("ui_lang".equals(cookie.getName())) { language = cookie.getValue(); break; @@ -56,7 +54,6 @@ String line; while ((line = bufferedReader.readLine()) != null) { - if (!line.trim().startsWith("#") && !line.trim().isEmpty()) { String[] keyValue = line.split("="); @@ -80,8 +77,8 @@ // Get the selected language's direction. String direction = languageDirectionMap.getOrDefault(language, "ltr"); - String themeSuffix = ""; + if ("rtl".equals(languageDirectionMap.get(language))) { themeSuffix = ".rtl"; } diff --git a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp index cf7110c8cee..855106aeab6 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp @@ -39,9 +39,7 @@ Cookie[] userCookies = request.getCookies(); if (userCookies != null) { - for (Cookie cookie : userCookies) { - if ("ui_lang".equals(cookie.getName())) { language = cookie.getValue(); break; @@ -57,7 +55,6 @@ String line; while ((line = bufferedReader.readLine()) != null) { - if (!line.trim().startsWith("#") && !line.trim().isEmpty()) { String[] keyValue = line.split("="); @@ -81,8 +78,8 @@ // Get the selected language's direction String direction = languageDirectionMap.getOrDefault(language, "ltr"); - String themeSuffix = ""; + if ("rtl".equals(languageDirectionMap.get(language))) { themeSuffix = ".rtl"; } From 243a246c6ac3e1145279b402984684be857233eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 8 Jan 2025 04:32:20 +0000 Subject: [PATCH 10/59] [WSO2 Release] [GitHub Action #2920] [Release] [skip ci] prepare release identity-apps-console-2.36.12 --- .../org.wso2.identity.apps.console.server.feature/pom.xml | 4 ++-- apps/console/java/pom.xml | 4 ++-- apps/console/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml index 8c714c8754f..e06f627bf46 100644 --- a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml +++ b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.12-SNAPSHOT + 2.36.12 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-console-2.36.12 diff --git a/apps/console/java/pom.xml b/apps/console/java/pom.xml index 910f29d7945..41c0c1e30ea 100644 --- a/apps/console/java/pom.xml +++ b/apps/console/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-console pom - 2.36.12-SNAPSHOT + 2.36.12 WSO2 Identity Server Console - Parent WSO2 Identity Server Console Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-console-2.36.12 diff --git a/apps/console/java/webapp/pom.xml b/apps/console/java/webapp/pom.xml index 836426ae164..c3033a3f770 100644 --- a/apps/console/java/webapp/pom.xml +++ b/apps/console/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.12-SNAPSHOT + 2.36.12 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-console-2.36.12 From dc5e1b022c07f95ac2f0e41d26915c3e641db3c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 8 Jan 2025 04:32:24 +0000 Subject: [PATCH 11/59] [WSO2 Release] [GitHub Action #2920] [Release] [skip ci] prepare for next development iteration --- .../org.wso2.identity.apps.console.server.feature/pom.xml | 4 ++-- apps/console/java/pom.xml | 4 ++-- apps/console/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml index e06f627bf46..4444120743a 100644 --- a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml +++ b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.12 + 2.36.13-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-console-2.36.12 + HEAD diff --git a/apps/console/java/pom.xml b/apps/console/java/pom.xml index 41c0c1e30ea..6f9e90c5f5e 100644 --- a/apps/console/java/pom.xml +++ b/apps/console/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-console pom - 2.36.12 + 2.36.13-SNAPSHOT WSO2 Identity Server Console - Parent WSO2 Identity Server Console Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-console-2.36.12 + HEAD diff --git a/apps/console/java/webapp/pom.xml b/apps/console/java/webapp/pom.xml index c3033a3f770..b04935626ff 100644 --- a/apps/console/java/webapp/pom.xml +++ b/apps/console/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.12 + 2.36.13-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-console-2.36.12 + HEAD From da34d02f576b7fb15daf193556c20b9eaa64b242 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 8 Jan 2025 04:41:04 +0000 Subject: [PATCH 12/59] [WSO2 Release] [GitHub Action #2920] [Release] [skip ci] prepare release identity-apps-myaccount-2.13.52 --- .../org.wso2.identity.apps.myaccount.server.feature/pom.xml | 4 ++-- apps/myaccount/java/pom.xml | 4 ++-- apps/myaccount/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml index 0be79a0f915..a522e2d8450 100644 --- a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml +++ b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.52-SNAPSHOT + 2.13.52 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-myaccount-2.13.52 diff --git a/apps/myaccount/java/pom.xml b/apps/myaccount/java/pom.xml index 23592885dbd..d1da6606a96 100644 --- a/apps/myaccount/java/pom.xml +++ b/apps/myaccount/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-myaccount pom - 2.13.52-SNAPSHOT + 2.13.52 WSO2 Identity Server MyAccount - Parent WSO2 Identity Server MyAccount Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-myaccount-2.13.52 diff --git a/apps/myaccount/java/webapp/pom.xml b/apps/myaccount/java/webapp/pom.xml index 55bb11f32ca..b545e44dd11 100644 --- a/apps/myaccount/java/webapp/pom.xml +++ b/apps/myaccount/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.52-SNAPSHOT + 2.13.52 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-myaccount-2.13.52 From b5e7866d27f0b55ec72221431000be4285b1f0da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 8 Jan 2025 04:41:08 +0000 Subject: [PATCH 13/59] [WSO2 Release] [GitHub Action #2920] [Release] [skip ci] prepare for next development iteration --- .../org.wso2.identity.apps.myaccount.server.feature/pom.xml | 4 ++-- apps/myaccount/java/pom.xml | 4 ++-- apps/myaccount/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml index a522e2d8450..73108d29fd2 100644 --- a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml +++ b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.52 + 2.13.53-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-myaccount-2.13.52 + HEAD diff --git a/apps/myaccount/java/pom.xml b/apps/myaccount/java/pom.xml index d1da6606a96..5ccf6737bf6 100644 --- a/apps/myaccount/java/pom.xml +++ b/apps/myaccount/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-myaccount pom - 2.13.52 + 2.13.53-SNAPSHOT WSO2 Identity Server MyAccount - Parent WSO2 Identity Server MyAccount Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-myaccount-2.13.52 + HEAD diff --git a/apps/myaccount/java/webapp/pom.xml b/apps/myaccount/java/webapp/pom.xml index b545e44dd11..2fe2ce4f4c9 100644 --- a/apps/myaccount/java/webapp/pom.xml +++ b/apps/myaccount/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.52 + 2.13.53-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-myaccount-2.13.52 + HEAD From e4c4cb6c59e8485ba265bed6043818f8d86c57b7 Mon Sep 17 00:00:00 2001 From: Kumuditha Dodanwela <86454991+KD23243@users.noreply.github.com> Date: Wed, 8 Jan 2025 11:34:31 +0530 Subject: [PATCH 14/59] Revert "Change validation from backToUrl to callback in self-registration-username-request.jsp" --- .../self-registration-username-request.jsp | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/identity-apps-core/apps/recovery-portal/src/main/webapp/self-registration-username-request.jsp b/identity-apps-core/apps/recovery-portal/src/main/webapp/self-registration-username-request.jsp index e1771e7a411..cce599c6c23 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/webapp/self-registration-username-request.jsp +++ b/identity-apps-core/apps/recovery-portal/src/main/webapp/self-registration-username-request.jsp @@ -307,22 +307,6 @@ consentPurposeGroupName = "JIT"; } - try { - if (StringUtils.isNotBlank(callback) && !Utils.validateCallbackURL(callback, tenantDomain, - IdentityRecoveryConstants.ConnectorConfig.SELF_REGISTRATION_CALLBACK_REGEX)) { - request.setAttribute("error", true); - request.setAttribute("errorMsg", IdentityManagementEndpointUtil.i18n(recoveryResourceBundle, - "Callback.url.format.invalid")); - request.getRequestDispatcher("error.jsp").forward(request, response); - return; - } - } catch (IdentityRuntimeException e) { - request.setAttribute("error", true); - request.setAttribute("errorMsg", e.getMessage()); - request.getRequestDispatcher("error.jsp").forward(request, response); - return; - } - if (StringUtils.isBlank(callback) || StringUtils.equalsIgnoreCase(callback, "null")) { callback = Encode.forHtmlAttribute(IdentityManagementEndpointUtil.getUserPortalUrl( application.getInitParameter(IdentityManagementEndpointConstants.ConfigConstants.USER_PORTAL_URL), tenantDomain)); @@ -756,6 +740,21 @@ <% + try { + if (StringUtils.isNotBlank(backToUrl) && !Utils.validateCallbackURL(backToUrl, tenantDomain, + IdentityRecoveryConstants.ConnectorConfig.SELF_REGISTRATION_CALLBACK_REGEX)) { + request.setAttribute("error", true); + request.setAttribute("errorMsg", IdentityManagementEndpointUtil.i18n(recoveryResourceBundle, + "Callback.url.format.invalid")); + request.getRequestDispatcher("error.jsp").forward(request, response); + return; + } + } catch (IdentityRuntimeException e) { + request.setAttribute("error", true); + request.setAttribute("errorMsg", e.getMessage()); + request.getRequestDispatcher("error.jsp").forward(request, response); + return; + } if (!StringUtils.equalsIgnoreCase(backToUrl,"null") && !StringUtils.isBlank(backToUrl)) { %>
From 573d6bbf11b1c2b455c1b132566903177c362dac Mon Sep 17 00:00:00 2001 From: savindi7 Date: Wed, 8 Jan 2025 12:56:39 +0530 Subject: [PATCH 15/59] Fix spacing and add localization example --- .../src/main/resources/LanguageOptions.properties | 1 + .../src/main/webapp/includes/header.jsp | 5 ++++- .../src/main/resources/LanguageOptions.properties | 1 + .../apps/recovery-portal/src/main/webapp/includes/header.jsp | 5 ++++- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties b/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties index e4e7fd5235a..274cf7cc18c 100644 --- a/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties +++ b/identity-apps-core/apps/authentication-portal/src/main/resources/LanguageOptions.properties @@ -21,6 +21,7 @@ # This file contains the language switcher configurations # The format of the file is =,,text direction(rtl/ltr) # The default text direction is set to "ltr". +# Example: lang.switch.ar_AR=ar,Arabic - العربية,rtl lang.switch.en_US=us,English - United States lang.switch.fr_FR=fr,Français - France lang.switch.es_ES=es,Español - España diff --git a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp index 69598b8ad78..501e5502c17 100644 --- a/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/authentication-portal/src/main/webapp/includes/header.jsp @@ -41,6 +41,7 @@ for (Cookie cookie : userCookies) { if ("ui_lang".equals(cookie.getName())) { language = cookie.getValue(); + break; } } @@ -88,9 +89,10 @@ String[] fileNames = themeDir.list(); String themeFileName = ""; - for(String file: fileNames) { + for (String file: fileNames) { if (file.endsWith(themeSuffix + ".min.css")) { themeFileName = file; + break; } } @@ -163,6 +165,7 @@ diff --git a/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties b/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties index 274cf7cc18c..838b3e4ddd5 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties +++ b/identity-apps-core/apps/recovery-portal/src/main/resources/LanguageOptions.properties @@ -19,9 +19,7 @@ # -------------------------------------------------------------------------------------- # This file contains the language switcher configurations -# The format of the file is =,,text direction(rtl/ltr) -# The default text direction is set to "ltr". -# Example: lang.switch.ar_AR=ar,Arabic - العربية,rtl +# The format of the file is =, lang.switch.en_US=us,English - United States lang.switch.fr_FR=fr,Français - France lang.switch.es_ES=es,Español - España diff --git a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp index 90ff14caade..3d060ca40e9 100644 --- a/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp +++ b/identity-apps-core/apps/recovery-portal/src/main/webapp/includes/header.jsp @@ -20,8 +20,6 @@ <%@ page import="org.wso2.carbon.identity.mgt.endpoint.util.IdentityManagementEndpointUtil" %> <%@ page import="org.owasp.encoder.Encode" %> <%@ page import="java.io.File" %> -<%@ page import="java.io.BufferedReader" %> -<%@ page import="java.io.FileReader" %> <%-- Localization --%> @@ -35,66 +33,14 @@ <% String themeName = "wso2is"; - String language = "en"; - Cookie[] userCookies = request.getCookies(); - - if (userCookies != null) { - for (Cookie cookie : userCookies) { - if ("ui_lang".equals(cookie.getName())) { - language = cookie.getValue(); - - break; - } - } - } - - String filePath = application.getRealPath("/") + "/WEB-INF/classes/LanguageOptions.properties"; - - Map languageDirectionMap = new HashMap<>(); - - try (BufferedReader bufferedReader = new BufferedReader(new FileReader(filePath))) { - String line; - - while ((line = bufferedReader.readLine()) != null) { - if (!line.trim().startsWith("#") && !line.trim().isEmpty()) { - String[] keyValue = line.split("="); - - if (keyValue.length == 2) { - String[] keyParts = keyValue[0].split("\\."); - String languageCode = keyParts[keyParts.length - 1]; - String[] valueParts = keyValue[1].split(","); - - if (valueParts.length >= 3) { - String direction = valueParts[2].trim(); - languageDirectionMap.put(languageCode, direction); - } else { - languageDirectionMap.put(languageCode, "ltr"); - } - } - } - } - } catch (Exception e) { - throw e; - } - - // Get the selected language's direction - String direction = languageDirectionMap.getOrDefault(language, "ltr"); - String themeSuffix = ""; - - if ("rtl".equals(languageDirectionMap.get(language))) { - themeSuffix = ".rtl"; - } - File themeDir = new File(request.getSession().getServletContext().getRealPath("/") + "/" + "libs/themes/" + themeName + "/"); String[] fileNames = themeDir.list(); String themeFileName = ""; - for (String file: fileNames) { - if (file.endsWith(themeSuffix + ".min.css")) { + for(String file: fileNames) { + if(file.endsWith("min.css")) { themeFileName = file; - - break; } } %> @@ -150,11 +96,3 @@ <% } %> - - diff --git a/modules/theme/package.json b/modules/theme/package.json index 2cfdedf10e6..4982ce26b4c 100644 --- a/modules/theme/package.json +++ b/modules/theme/package.json @@ -51,7 +51,6 @@ "rc-tree": "^4.0.0-beta.2", "replace": "^1.1.5", "rimraf": "^3.0.2", - "rtlcss": "^4.3.0", "semantic-ui-css": "^2.4.1", "semantic-ui-less": "^2.4.1", "ts-jest": "^29.1.2", diff --git a/modules/theme/scripts/build.js b/modules/theme/scripts/build.js index 3c475d73da3..4d3e86a8834 100644 --- a/modules/theme/scripts/build.js +++ b/modules/theme/scripts/build.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -25,7 +25,6 @@ const fs = require("fs-extra"); const lessToJson = require("less-to-json"); const mergeFiles = require("merge-files"); const replace = require("replace"); -const rtlcss = require("rtlcss"); const { Theme } = require("../src/theme"); /** @@ -148,16 +147,6 @@ const writeFile = (theme, file, content) => { log.info(theme + "/" + "theme" + file + " generated."); }; -/** - * Generates RTL CSS files using rtlcss. - * - * @param {string} ltrCss - LTR CSS content. - * @returns {string} RTL-compatible CSS content. - */ -const generateRTLCSS = (ltrCss) => { - return rtlcss.process(ltrCss); -}; - /* * Copy semantic.js files to each theme to make them self contained * @@ -264,15 +253,10 @@ const generateThemes = () => { return Theme.compile(themeIndexFile, {}).then((output) => { const minifiedOutput = new CleanCSS().minify(output.css); - const rtlCSS = generateRTLCSS(output.css); - const rtlMinCSS = new CleanCSS().minify(rtlCSS); - const files = { ".css": output.css, ".css.map": output.map, - ".min.css": minifiedOutput.styles, - ".rtl.css": rtlCSS, - ".rtl.min.css": rtlMinCSS.styles + ".min.css": minifiedOutput.styles }; Object.keys(files).map((key) => { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b6105305ea7..31eeded7e46 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -20657,9 +20657,6 @@ importers: rimraf: specifier: ^3.0.2 version: 3.0.2 - rtlcss: - specifier: ^4.3.0 - version: 4.3.0 semantic-ui-css: specifier: ^2.4.1 version: 2.5.0 @@ -46101,17 +46098,6 @@ packages: resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} engines: {node: 6.* || >= 7.*} - /rtlcss@4.3.0: - resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==} - engines: {node: '>=12.0.0'} - hasBin: true - dependencies: - escalade: 3.2.0 - picocolors: 1.1.1 - postcss: 8.4.49 - strip-json-comments: 3.1.1 - dev: true - /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} From f1173193bb885f71c7d25fae5bfd011dfb70d79a Mon Sep 17 00:00:00 2001 From: savindi7 Date: Thu, 9 Jan 2025 17:03:21 +0530 Subject: [PATCH 46/59] Bump apps --- .changeset/wise-peaches-smash.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .changeset/wise-peaches-smash.md diff --git a/.changeset/wise-peaches-smash.md b/.changeset/wise-peaches-smash.md new file mode 100644 index 00000000000..54d5bbf06b1 --- /dev/null +++ b/.changeset/wise-peaches-smash.md @@ -0,0 +1,8 @@ +--- +"@wso2is/identity-apps-core": patch +"@wso2is/theme": patch +"@wso2is/console": patch +"@wso2is/myaccount": patch +--- + +Bump apps From db1b8d247d3b24ec9c24136fecba9f1046d60325 Mon Sep 17 00:00:00 2001 From: savindi7 Date: Thu, 9 Jan 2025 17:21:31 +0530 Subject: [PATCH 47/59] Fix header --- modules/theme/scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/theme/scripts/build.js b/modules/theme/scripts/build.js index 4d3e86a8834..9d584978aa3 100644 --- a/modules/theme/scripts/build.js +++ b/modules/theme/scripts/build.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except From b9c9686bd870f84d624e23f47c0d4b6ebb29de78 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 11:58:09 +0000 Subject: [PATCH 48/59] [WSO2 Release] [GitHub Action] [Release] [skip ci] update package versions --- .changeset/stupid-bikes-glow.md | 27 - .changeset/wise-peaches-smash.md | 8 - apps/console/CHANGELOG.md | 64 + apps/console/package.json | 110 +- apps/myaccount/CHANGELOG.md | 13 + apps/myaccount/package.json | 12 +- features/CHANGELOG.md | 11 + features/admin.actions.v1/CHANGELOG.md | 12 + features/admin.actions.v1/package.json | 14 +- features/admin.administrators.v1/CHANGELOG.md | 21 + features/admin.administrators.v1/package.json | 28 +- .../CHANGELOG.md | 14 + .../package.json | 18 +- features/admin.api-resources.v1/CHANGELOG.md | 12 + features/admin.api-resources.v1/package.json | 10 +- features/admin.api-resources.v2/CHANGELOG.md | 12 + features/admin.api-resources.v2/package.json | 10 +- .../admin.application-roles.v1/CHANGELOG.md | 14 + .../admin.application-roles.v1/package.json | 18 +- .../CHANGELOG.md | 9 + .../package.json | 8 +- features/admin.applications.v1/CHANGELOG.md | 34 + features/admin.applications.v1/package.json | 54 +- .../CHANGELOG.md | 16 + .../package.json | 22 +- features/admin.authentication.v1/CHANGELOG.md | 13 + features/admin.authentication.v1/package.json | 16 +- features/admin.authorization.v1/CHANGELOG.md | 11 + features/admin.authorization.v1/package.json | 12 +- features/admin.branding.ai.v1/CHANGELOG.md | 19 + features/admin.branding.ai.v1/package.json | 24 +- features/admin.branding.v1/CHANGELOG.md | 18 + features/admin.branding.v1/package.json | 26 +- features/admin.certificates.v1/CHANGELOG.md | 12 + features/admin.certificates.v1/package.json | 14 +- features/admin.claims.v1/CHANGELOG.md | 20 + features/admin.claims.v1/package.json | 26 +- features/admin.connections.v1/CHANGELOG.md | 25 + features/admin.connections.v1/package.json | 40 +- .../admin.console-settings.v1/CHANGELOG.md | 24 + .../admin.console-settings.v1/package.json | 38 +- features/admin.core.v1/CHANGELOG.md | 55 + features/admin.core.v1/package.json | 96 +- features/admin.email-and-sms.v1/CHANGELOG.md | 13 + features/admin.email-and-sms.v1/package.json | 16 +- .../admin.email-management.v1/CHANGELOG.md | 16 + .../admin.email-management.v1/package.json | 18 +- .../admin.email-providers.v1/CHANGELOG.md | 14 + .../admin.email-providers.v1/package.json | 14 +- .../admin.email-templates.v1/CHANGELOG.md | 13 + .../admin.email-templates.v1/package.json | 16 +- features/admin.extensions.v1/CHANGELOG.md | 33 + features/admin.extensions.v1/package.json | 52 +- features/admin.feature-gate.v1/CHANGELOG.md | 8 + features/admin.feature-gate.v1/package.json | 6 +- features/admin.groups.v1/CHANGELOG.md | 21 + features/admin.groups.v1/package.json | 28 +- features/admin.home.v1/CHANGELOG.md | 15 + features/admin.home.v1/package.json | 16 +- .../admin.identity-providers.v1/CHANGELOG.md | 21 + .../admin.identity-providers.v1/package.json | 32 +- .../CHANGELOG.md | 16 + .../package.json | 22 +- features/admin.impersonation.v1/CHANGELOG.md | 13 + features/admin.impersonation.v1/package.json | 16 +- features/admin.login-flow.ai.v1/CHANGELOG.md | 20 + features/admin.login-flow.ai.v1/package.json | 26 +- features/admin.logs.v1/CHANGELOG.md | 12 + features/admin.logs.v1/package.json | 10 +- features/admin.oidc-scopes.v1/CHANGELOG.md | 14 + features/admin.oidc-scopes.v1/package.json | 18 +- features/admin.org-insights.v1/CHANGELOG.md | 14 + features/admin.org-insights.v1/package.json | 14 +- .../CHANGELOG.md | 13 + .../package.json | 16 +- features/admin.organizations.v1/CHANGELOG.md | 25 + features/admin.organizations.v1/package.json | 36 +- .../admin.private-key-jwt.v1/CHANGELOG.md | 13 + .../admin.private-key-jwt.v1/package.json | 16 +- features/admin.provisioning.v1/CHANGELOG.md | 15 + features/admin.provisioning.v1/package.json | 20 +- .../CHANGELOG.md | 12 + .../package.json | 14 +- .../admin.remote-userstores.v1/CHANGELOG.md | 17 + .../admin.remote-userstores.v1/package.json | 20 +- features/admin.roles.v1/CHANGELOG.md | 17 + features/admin.roles.v1/package.json | 24 +- features/admin.roles.v2/CHANGELOG.md | 26 + features/admin.roles.v2/package.json | 38 +- .../admin.saml2-configuration.v1/CHANGELOG.md | 12 + .../admin.saml2-configuration.v1/package.json | 14 +- features/admin.secrets.v1/CHANGELOG.md | 12 + features/admin.secrets.v1/package.json | 14 +- .../CHANGELOG.md | 21 + .../package.json | 28 +- .../admin.session-management.v1/CHANGELOG.md | 12 + .../admin.session-management.v1/package.json | 14 +- features/admin.sms-providers.v1/CHANGELOG.md | 16 + features/admin.sms-providers.v1/package.json | 18 +- features/admin.sms-templates.v1/CHANGELOG.md | 14 + features/admin.sms-templates.v1/package.json | 18 +- features/admin.subscription.v1/CHANGELOG.md | 8 + features/admin.subscription.v1/package.json | 6 +- features/admin.template-core.v1/CHANGELOG.md | 7 + features/admin.template-core.v1/package.json | 4 +- features/admin.tenants.v1/CHANGELOG.md | 17 + features/admin.tenants.v1/package.json | 24 +- .../admin.username-validation.v1/CHANGELOG.md | 11 + .../admin.username-validation.v1/package.json | 12 +- features/admin.users.v1/CHANGELOG.md | 28 + features/admin.users.v1/package.json | 42 +- features/admin.userstores.v1/CHANGELOG.md | 14 + features/admin.userstores.v1/package.json | 18 +- features/admin.validation.v1/CHANGELOG.md | 18 + features/admin.validation.v1/package.json | 26 +- .../admin.workflow-approvals.v1/CHANGELOG.md | 12 + .../admin.workflow-approvals.v1/package.json | 14 +- .../admin.wsfed-configuration.v1/CHANGELOG.md | 12 + .../admin.wsfed-configuration.v1/package.json | 14 +- features/common.ai.v1/CHANGELOG.md | 12 + features/common.ai.v1/package.json | 14 +- features/common.branding.v1/CHANGELOG.md | 8 + features/common.branding.v1/package.json | 6 +- features/package.json | 12 +- identity-apps-core/CHANGELOG.md | 9 + identity-apps-core/package.json | 4 +- modules/dynamic-forms/CHANGELOG.md | 7 + modules/dynamic-forms/package.json | 4 +- modules/form/CHANGELOG.md | 7 + modules/form/package.json | 4 +- modules/i18n/CHANGELOG.md | 6 + modules/i18n/package.json | 2 +- modules/react-components/CHANGELOG.md | 7 + modules/react-components/package.json | 4 +- modules/theme/CHANGELOG.md | 6 + modules/theme/package.json | 2 +- pnpm-lock.yaml | 1268 ++++++++--------- 137 files changed, 2421 insertions(+), 1370 deletions(-) delete mode 100644 .changeset/stupid-bikes-glow.md delete mode 100644 .changeset/wise-peaches-smash.md diff --git a/.changeset/stupid-bikes-glow.md b/.changeset/stupid-bikes-glow.md deleted file mode 100644 index 5850c2df549..00000000000 --- a/.changeset/stupid-bikes-glow.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -"@wso2is/admin.server-configurations.v1": patch -"@wso2is/admin.remote-userstores.v1": patch -"@wso2is/admin.email-management.v1": patch -"@wso2is/admin.email-providers.v1": patch -"@wso2is/admin.administrators.v1": patch -"@wso2is/admin.api-resources.v1": patch -"@wso2is/admin.api-resources.v2": patch -"@wso2is/admin.login-flow.ai.v1": patch -"@wso2is/admin.organizations.v1": patch -"@wso2is/admin.sms-providers.v1": patch -"@wso2is/admin.applications.v1": patch -"@wso2is/admin.org-insights.v1": patch -"@wso2is/admin.branding.ai.v1": patch -"@wso2is/admin.extensions.v1": patch -"@wso2is/admin.claims.v1": patch -"@wso2is/admin.groups.v1": patch -"@wso2is/admin.roles.v2": patch -"@wso2is/admin.users.v1": patch -"@wso2is/admin.core.v1": patch -"@wso2is/admin.home.v1": patch -"@wso2is/admin.logs.v1": patch -"@wso2is/console": patch -"@wso2is/i18n": patch ---- - -Move common i18n extensions in console app to i18n module diff --git a/.changeset/wise-peaches-smash.md b/.changeset/wise-peaches-smash.md deleted file mode 100644 index 54d5bbf06b1..00000000000 --- a/.changeset/wise-peaches-smash.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@wso2is/identity-apps-core": patch -"@wso2is/theme": patch -"@wso2is/console": patch -"@wso2is/myaccount": patch ---- - -Bump apps diff --git a/apps/console/CHANGELOG.md b/apps/console/CHANGELOG.md index b709c71ef39..c17e56e7442 100644 --- a/apps/console/CHANGELOG.md +++ b/apps/console/CHANGELOG.md @@ -1,5 +1,69 @@ # @wso2is/console +## 2.36.15 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +* [#7286](https://github.com/wso2/identity-apps/pull/7286) [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a) Thanks [@savindi7](https://github.com/savindi7)! - Bump apps + +* Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.remote-userstores.v1@1.7.32 + - @wso2is/admin.email-management.v1@2.25.76 + - @wso2is/admin.email-providers.v1@2.25.76 + - @wso2is/admin.administrators.v1@2.29.76 + - @wso2is/admin.api-resources.v1@2.25.76 + - @wso2is/admin.api-resources.v2@2.25.76 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.sms-providers.v1@2.25.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.org-insights.v1@2.25.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.home.v1@1.6.76 + - @wso2is/admin.logs.v1@1.5.77 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.alternative-login-identifier.v1@1.5.76 + - @wso2is/admin.branding.v1@2.27.49 + - @wso2is/admin.console-settings.v1@2.25.76 + - @wso2is/admin.impersonation.v1@1.6.76 + - @wso2is/admin.private-key-jwt.v1@2.25.76 + - @wso2is/admin.roles.v1@2.25.76 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authentication.v1@2.25.76 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.email-and-sms.v1@2.25.76 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.organization-discovery.v1@2.25.76 + - @wso2is/admin.subscription.v1@1.5.76 + - @wso2is/admin.tenants.v1@2.28.50 + - @wso2is/admin.application-templates.v1@1.4.76 + - @wso2is/admin.oidc-scopes.v1@2.25.76 + - @wso2is/admin.username-validation.v1@1.5.76 + - @wso2is/admin.actions.v1@1.7.33 + - @wso2is/admin.identity-verification-providers.v1@2.27.76 + - @wso2is/admin.certificates.v1@2.25.76 + - @wso2is/admin.remote-repository-configuration.v1@2.25.76 + - @wso2is/admin.saml2-configuration.v1@2.25.76 + - @wso2is/admin.secrets.v1@2.25.76 + - @wso2is/admin.session-management.v1@2.25.76 + - @wso2is/admin.sms-templates.v1@1.0.75 + - @wso2is/admin.template-core.v1@1.5.30 + - @wso2is/admin.workflow-approvals.v1@2.25.76 + - @wso2is/admin.wsfed-configuration.v1@2.25.76 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.36.14 ### Patch Changes diff --git a/apps/console/package.json b/apps/console/package.json index ebdcbdcb3bc..abe80714285 100644 --- a/apps/console/package.json +++ b/apps/console/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/console", - "version": "2.36.14", + "version": "2.36.15", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -47,60 +47,60 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.actions.v1": "^1.7.32", - "@wso2is/admin.administrators.v1": "^2.29.75", - "@wso2is/admin.alternative-login-identifier.v1": "^1.5.75", - "@wso2is/admin.api-resources.v1": "^2.25.75", - "@wso2is/admin.api-resources.v2": "^2.25.75", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authentication.v1": "^2.25.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.branding.v1": "^2.27.48", - "@wso2is/admin.certificates.v1": "^2.25.75", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.console-settings.v1": "^2.25.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.email-and-sms.v1": "^2.25.75", - "@wso2is/admin.email-management.v1": "^2.25.75", - "@wso2is/admin.email-providers.v1": "^2.25.75", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.home.v1": "^1.6.75", - "@wso2is/admin.identity-verification-providers.v1": "^2.27.75", - "@wso2is/admin.logs.v1": "^1.5.76", - "@wso2is/admin.oidc-scopes.v1": "^2.25.75", - "@wso2is/admin.org-insights.v1": "^2.25.75", - "@wso2is/admin.organization-discovery.v1": "^2.25.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.private-key-jwt.v1": "^2.25.75", - "@wso2is/admin.remote-repository-configuration.v1": "^2.25.75", - "@wso2is/admin.impersonation.v1": "^1.6.75", - "@wso2is/admin.remote-userstores.v1": "^1.7.31", - "@wso2is/admin.roles.v1": "^2.25.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.saml2-configuration.v1": "^2.25.75", - "@wso2is/admin.secrets.v1": "^2.25.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.session-management.v1": "^2.25.75", - "@wso2is/admin.sms-providers.v1": "^2.25.75", - "@wso2is/admin.sms-templates.v1": "^1.0.74", - "@wso2is/admin.subscription.v1": "^1.5.75", - "@wso2is/admin.tenants.v1": "^2.28.49", - "@wso2is/admin.username-validation.v1": "^1.5.75", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.validation.v1": "^2.27.13", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.workflow-approvals.v1": "^2.25.75", - "@wso2is/admin.wsfed-configuration.v1": "^2.25.75", + "@wso2is/admin.actions.v1": "^1.7.33", + "@wso2is/admin.administrators.v1": "^2.29.76", + "@wso2is/admin.alternative-login-identifier.v1": "^1.5.76", + "@wso2is/admin.api-resources.v1": "^2.25.76", + "@wso2is/admin.api-resources.v2": "^2.25.76", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.branding.v1": "^2.27.49", + "@wso2is/admin.certificates.v1": "^2.25.76", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.console-settings.v1": "^2.25.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.email-and-sms.v1": "^2.25.76", + "@wso2is/admin.email-management.v1": "^2.25.76", + "@wso2is/admin.email-providers.v1": "^2.25.76", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.home.v1": "^1.6.76", + "@wso2is/admin.identity-verification-providers.v1": "^2.27.76", + "@wso2is/admin.logs.v1": "^1.5.77", + "@wso2is/admin.oidc-scopes.v1": "^2.25.76", + "@wso2is/admin.org-insights.v1": "^2.25.76", + "@wso2is/admin.organization-discovery.v1": "^2.25.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.private-key-jwt.v1": "^2.25.76", + "@wso2is/admin.remote-repository-configuration.v1": "^2.25.76", + "@wso2is/admin.impersonation.v1": "^1.6.76", + "@wso2is/admin.remote-userstores.v1": "^1.7.32", + "@wso2is/admin.roles.v1": "^2.25.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.saml2-configuration.v1": "^2.25.76", + "@wso2is/admin.secrets.v1": "^2.25.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.session-management.v1": "^2.25.76", + "@wso2is/admin.sms-providers.v1": "^2.25.76", + "@wso2is/admin.sms-templates.v1": "^1.0.75", + "@wso2is/admin.subscription.v1": "^1.5.76", + "@wso2is/admin.tenants.v1": "^2.28.50", + "@wso2is/admin.username-validation.v1": "^1.5.76", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.workflow-approvals.v1": "^2.25.76", + "@wso2is/admin.wsfed-configuration.v1": "^2.25.76", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", @@ -140,8 +140,8 @@ "styled-components": "^4.4.1", "swr": "^2.0.0", "uuid": "^8.3.0", - "@wso2is/admin.application-templates.v1": "^1.4.75", - "@wso2is/admin.template-core.v1": "^1.5.29" + "@wso2is/admin.application-templates.v1": "^1.4.76", + "@wso2is/admin.template-core.v1": "^1.5.30" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", diff --git a/apps/myaccount/CHANGELOG.md b/apps/myaccount/CHANGELOG.md index aa65b0d7f3f..767d03fcbdf 100644 --- a/apps/myaccount/CHANGELOG.md +++ b/apps/myaccount/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/myaccount +## 2.13.55 + +### Patch Changes + +- [#7286](https://github.com/wso2/identity-apps/pull/7286) [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a) Thanks [@savindi7](https://github.com/savindi7)! - Bump apps + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/common.branding.v1@2.25.49 + - @wso2is/react-components@2.8.17 + ## 2.13.54 ### Patch Changes diff --git a/apps/myaccount/package.json b/apps/myaccount/package.json index 5c19dadb9d6..f3471bc3a4d 100644 --- a/apps/myaccount/package.json +++ b/apps/myaccount/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/myaccount", - "version": "2.13.54", + "version": "2.13.55", "description": "WSO2 Identity Server My Account", "author": "WSO2", "license": "Apache-2.0", @@ -42,13 +42,13 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/common.branding.v1": "^2.25.48", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/common.branding.v1": "^2.25.49", "@wso2is/core": "^2.5.5", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "history": "^4.9.0", diff --git a/features/CHANGELOG.md b/features/CHANGELOG.md index 500f16181ce..d62f823487d 100644 --- a/features/CHANGELOG.md +++ b/features/CHANGELOG.md @@ -1,5 +1,16 @@ # @wso2is/features +## 2.26.30 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.29 ### Patch Changes diff --git a/features/admin.actions.v1/CHANGELOG.md b/features/admin.actions.v1/CHANGELOG.md index eff4678d5fb..210baf09e60 100644 --- a/features/admin.actions.v1/CHANGELOG.md +++ b/features/admin.actions.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.actions.v1 +## 1.7.33 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 1.7.32 ### Patch Changes diff --git a/features/admin.actions.v1/package.json b/features/admin.actions.v1/package.json index 6f00895a2fa..cfa730438e7 100644 --- a/features/admin.actions.v1/package.json +++ b/features/admin.actions.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.actions.v1", - "version": "1.7.32", + "version": "1.7.33", "description": "UI components and utility methods for WSO2 Identity Server Actions", "author": "WSO2", "license": "Apache-2.0", @@ -11,13 +11,13 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", + "@wso2is/form": "^2.6.10", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", "axios": "^0.19.2", "react-i18next": "^11.18.5", "react-redux": "^7.2.9", diff --git a/features/admin.administrators.v1/CHANGELOG.md b/features/admin.administrators.v1/CHANGELOG.md index c5c39668bf7..e278d37d0ca 100644 --- a/features/admin.administrators.v1/CHANGELOG.md +++ b/features/admin.administrators.v1/CHANGELOG.md @@ -1,5 +1,26 @@ # @wso2is/admin.administrators.v1 +## 2.29.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.remote-userstores.v1@1.7.32 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authentication.v1@2.25.76 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.tenants.v1@2.28.50 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 2.29.75 ### Patch Changes diff --git a/features/admin.administrators.v1/package.json b/features/admin.administrators.v1/package.json index 9b2fc4443b9..47043be4c1a 100644 --- a/features/admin.administrators.v1/package.json +++ b/features/admin.administrators.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.administrators.v1", - "version": "2.29.75", + "version": "2.29.76", "description": "Manage users who have access an organization's administrative operations", "author": "WSO2", "license": "Apache-2.0", @@ -32,21 +32,21 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authentication.v1": "workspace:^2.25.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.remote-userstores.v1": "^1.7.31", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.tenants.v1": "^2.28.49", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authentication.v1": "workspace:^2.25.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.remote-userstores.v1": "^1.7.32", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.tenants.v1": "^2.28.50", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/react-components": "^2.8.16", + "@wso2is/react-components": "^2.8.17", "axios": "^0.19.2", "i18next": "^21.9.1", "react-helmet": "^5.2.1", diff --git a/features/admin.alternative-login-identifier.v1/CHANGELOG.md b/features/admin.alternative-login-identifier.v1/CHANGELOG.md index 32f3a7ac33d..189249288e1 100644 --- a/features/admin.alternative-login-identifier.v1/CHANGELOG.md +++ b/features/admin.alternative-login-identifier.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.alternative-login-identifier.v1 +## 1.5.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 1.5.75 ### Patch Changes diff --git a/features/admin.alternative-login-identifier.v1/package.json b/features/admin.alternative-login-identifier.v1/package.json index 668d8e6f63f..d6060ccd8fe 100644 --- a/features/admin.alternative-login-identifier.v1/package.json +++ b/features/admin.alternative-login-identifier.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.alternative-login-identifier.v1", - "version": "1.5.75", + "version": "1.5.76", "description": "Configure alternative login identifiers and allow users to use username or configured login identifier in login and recovery flows", "author": "WSO2", "license": "Apache-2.0", @@ -31,15 +31,15 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", - "@wso2is/react-components": "^2.8.16", + "@wso2is/form": "^2.6.10", + "@wso2is/react-components": "^2.8.17", "axios": "^0.19.2", "i18next": "^21.9.1", "react-helmet": "^5.2.1", diff --git a/features/admin.api-resources.v1/CHANGELOG.md b/features/admin.api-resources.v1/CHANGELOG.md index 0e30d6d4984..6f8ed2ad42d 100644 --- a/features/admin.api-resources.v1/CHANGELOG.md +++ b/features/admin.api-resources.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.api-resources.v1 +## 2.25.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.api-resources.v1/package.json b/features/admin.api-resources.v1/package.json index e6400709fc4..7c35a17c896 100644 --- a/features/admin.api-resources.v1/package.json +++ b/features/admin.api-resources.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.api-resources.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -17,11 +17,11 @@ "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/react-components": "^2.8.16", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", + "@wso2is/react-components": "^2.8.17", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", "axios": "^0.19.2", "i18next": "^21.9.1", "react-helmet": "^5.2.1", diff --git a/features/admin.api-resources.v2/CHANGELOG.md b/features/admin.api-resources.v2/CHANGELOG.md index 98d6a02a55f..cfc64cc9d0b 100644 --- a/features/admin.api-resources.v2/CHANGELOG.md +++ b/features/admin.api-resources.v2/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.api-resources.v2 +## 2.25.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.api-resources.v2/package.json b/features/admin.api-resources.v2/package.json index 5c553f9eee8..42ffd54df72 100644 --- a/features/admin.api-resources.v2/package.json +++ b/features/admin.api-resources.v2/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.api-resources.v2", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -18,11 +18,11 @@ "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/react-components": "^2.8.16", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/react-components": "^2.8.17", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.organizations.v1": "^2.26.76", "axios": "^0.19.2", "i18next": "^21.9.1", "node-forge": "^0.10.0", diff --git a/features/admin.application-roles.v1/CHANGELOG.md b/features/admin.application-roles.v1/CHANGELOG.md index 4ef7e3e9ca4..ceb6e878745 100644 --- a/features/admin.application-roles.v1/CHANGELOG.md +++ b/features/admin.application-roles.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.application-roles.v1 +## 2.26.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/react-components@2.8.17 + ## 2.26.75 ### Patch Changes diff --git a/features/admin.application-roles.v1/package.json b/features/admin.application-roles.v1/package.json index 9a5e968fdea..a1ee3bcc748 100644 --- a/features/admin.application-roles.v1/package.json +++ b/features/admin.application-roles.v1/package.json @@ -1,21 +1,21 @@ { "private": true, "name": "@wso2is/admin.application-roles.v1", - "version": "2.26.75", + "version": "2.26.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", "dependencies": { "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.identity-providers.v1": "^2.26.75", + "@wso2is/react-components": "^2.8.17", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.identity-providers.v1": "^2.26.76", "axios": "^0.19.2", "i18next": "^21.9.1", "lodash-es": "^4.17.21", diff --git a/features/admin.application-templates.v1/CHANGELOG.md b/features/admin.application-templates.v1/CHANGELOG.md index 30b9afdc3fa..4e645f19721 100644 --- a/features/admin.application-templates.v1/CHANGELOG.md +++ b/features/admin.application-templates.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.application-templates.v1 +## 1.4.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.template-core.v1@1.5.30 + ## 1.4.75 ### Patch Changes diff --git a/features/admin.application-templates.v1/package.json b/features/admin.application-templates.v1/package.json index 844dfed3618..a7cb1e677c5 100644 --- a/features/admin.application-templates.v1/package.json +++ b/features/admin.application-templates.v1/package.json @@ -1,14 +1,14 @@ { "private": true, "name": "@wso2is/admin.application-templates.v1", - "version": "1.4.75", + "version": "1.4.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", "dependencies": { - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.template-core.v1": "^1.5.29" + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.template-core.v1": "^1.5.30" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", diff --git a/features/admin.applications.v1/CHANGELOG.md b/features/admin.applications.v1/CHANGELOG.md index 1d17b8e9986..1ca2693dbeb 100644 --- a/features/admin.applications.v1/CHANGELOG.md +++ b/features/admin.applications.v1/CHANGELOG.md @@ -1,5 +1,39 @@ # @wso2is/admin.applications.v1 +## 2.30.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.api-resources.v2@2.25.76 + - @wso2is/admin.login-flow.ai.v1@2.26.76 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/admin.authentication-flow-builder.v1@2.24.76 + - @wso2is/admin.branding.v1@2.27.49 + - @wso2is/admin.console-settings.v1@2.25.76 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.impersonation.v1@1.6.76 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.application-templates.v1@1.4.76 + - @wso2is/admin.oidc-scopes.v1@2.25.76 + - @wso2is/admin.secrets.v1@2.25.76 + - @wso2is/admin.template-core.v1@1.5.30 + - @wso2is/admin.wsfed-configuration.v1@2.25.76 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 2.30.75 ### Patch Changes diff --git a/features/admin.applications.v1/package.json b/features/admin.applications.v1/package.json index c8051343a37..b3a7a0095a0 100644 --- a/features/admin.applications.v1/package.json +++ b/features/admin.applications.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.applications.v1", - "version": "2.30.75", + "version": "2.30.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -17,32 +17,32 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.api-resources.v2": "^2.25.75", - "@wso2is/admin.authentication-flow-builder.v1": "^2.24.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.branding.v1": "^2.27.48", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.console-settings.v1": "^2.25.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.login-flow.ai.v1": "^2.26.75", - "@wso2is/admin.oidc-scopes.v1": "^2.25.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.secrets.v1": "^2.25.75", - "@wso2is/admin.impersonation.v1": "^1.6.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.wsfed-configuration.v1": "^2.25.75", + "@wso2is/admin.api-resources.v2": "^2.25.76", + "@wso2is/admin.authentication-flow-builder.v1": "^2.24.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.branding.v1": "^2.27.49", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.console-settings.v1": "^2.25.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.login-flow.ai.v1": "^2.26.76", + "@wso2is/admin.oidc-scopes.v1": "^2.25.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.secrets.v1": "^2.25.76", + "@wso2is/admin.impersonation.v1": "^1.6.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.wsfed-configuration.v1": "^2.25.76", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "classnames": "^2.2.6", @@ -60,8 +60,8 @@ "redux": "^4.0.4", "semantic-ui-react": "^2.1.3", "slashes": "^2.0.2", - "@wso2is/admin.application-templates.v1": "^1.4.75", - "@wso2is/admin.template-core.v1": "^1.5.29" + "@wso2is/admin.application-templates.v1": "^1.4.76", + "@wso2is/admin.template-core.v1": "^1.5.30" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", diff --git a/features/admin.authentication-flow-builder.v1/CHANGELOG.md b/features/admin.authentication-flow-builder.v1/CHANGELOG.md index 7ff23633602..b16261aa7a4 100644 --- a/features/admin.authentication-flow-builder.v1/CHANGELOG.md +++ b/features/admin.authentication-flow-builder.v1/CHANGELOG.md @@ -1,5 +1,21 @@ # @wso2is/admin.authentication-flow-builder.v1 +## 2.24.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.login-flow.ai.v1@2.26.76 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.secrets.v1@2.25.76 + - @wso2is/react-components@2.8.17 + ## 2.24.75 ### Patch Changes diff --git a/features/admin.authentication-flow-builder.v1/package.json b/features/admin.authentication-flow-builder.v1/package.json index fc3d742f732..381ab1f66b6 100644 --- a/features/admin.authentication-flow-builder.v1/package.json +++ b/features/admin.authentication-flow-builder.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.authentication-flow-builder.v1", - "version": "2.24.75", + "version": "2.24.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -17,16 +17,16 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/core": "^2.5.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.login-flow.ai.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.secrets.v1": "^2.25.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", + "@wso2is/react-components": "^2.8.17", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.login-flow.ai.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.secrets.v1": "^2.25.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", "classnames": "^2.2.6", "axios": "^0.19.2", "i18next": "^21.9.1", diff --git a/features/admin.authentication.v1/CHANGELOG.md b/features/admin.authentication.v1/CHANGELOG.md index 8cb5338c67b..10d4c64468f 100644 --- a/features/admin.authentication.v1/CHANGELOG.md +++ b/features/admin.authentication.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.authentication.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authorization.v1@2.25.30 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.authentication.v1/package.json b/features/admin.authentication.v1/package.json index b22c7bd548d..5fae6152ef6 100644 --- a/features/admin.authentication.v1/package.json +++ b/features/admin.authentication.v1/package.json @@ -1,19 +1,19 @@ { "private": true, "name": "@wso2is/admin.authentication.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", "dependencies": { "@wso2is/core": "^2.5.5", - "@wso2is/i18n": "^2.14.5", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/i18n": "^2.14.6", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", "axios": "^0.19.2", "lodash-es": "^4.17.21", "react-redux": "^7.2.9", diff --git a/features/admin.authorization.v1/CHANGELOG.md b/features/admin.authorization.v1/CHANGELOG.md index d2d3fbef3eb..8fcbf04bff0 100644 --- a/features/admin.authorization.v1/CHANGELOG.md +++ b/features/admin.authorization.v1/CHANGELOG.md @@ -1,5 +1,16 @@ # @wso2is/admin.authorization.v1 +## 2.25.30 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.29 ### Patch Changes diff --git a/features/admin.authorization.v1/package.json b/features/admin.authorization.v1/package.json index ceb28f75402..61329c06977 100644 --- a/features/admin.authorization.v1/package.json +++ b/features/admin.authorization.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.authorization.v1", - "version": "2.25.29", + "version": "2.25.30", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -22,12 +22,12 @@ "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.branding.ai.v1/CHANGELOG.md b/features/admin.branding.ai.v1/CHANGELOG.md index 445dca5d5db..e0680586c07 100644 --- a/features/admin.branding.ai.v1/CHANGELOG.md +++ b/features/admin.branding.ai.v1/CHANGELOG.md @@ -1,5 +1,24 @@ # @wso2is/admin.branding.ai.v1 +## 2.26.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.branding.v1@2.27.49 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/common.branding.v1@2.25.49 + - @wso2is/common.ai.v1@2.25.76 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.75 ### Patch Changes diff --git a/features/admin.branding.ai.v1/package.json b/features/admin.branding.ai.v1/package.json index adb65ca4645..71160cfc804 100644 --- a/features/admin.branding.ai.v1/package.json +++ b/features/admin.branding.ai.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.branding.ai.v1", - "version": "2.26.75", + "version": "2.26.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,19 +21,19 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.v1": "^2.27.48", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/common.ai.v1": "^2.25.75", - "@wso2is/common.branding.v1": "^2.25.48", + "@wso2is/admin.branding.v1": "^2.27.49", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/common.ai.v1": "^2.25.76", + "@wso2is/common.branding.v1": "^2.25.49", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.branding.v1/CHANGELOG.md b/features/admin.branding.v1/CHANGELOG.md index c9b53646d73..85e1ef4935f 100644 --- a/features/admin.branding.v1/CHANGELOG.md +++ b/features/admin.branding.v1/CHANGELOG.md @@ -1,5 +1,23 @@ # @wso2is/admin.branding.v1 +## 2.27.49 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.branding.ai.v1@2.26.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/common.branding.v1@2.25.49 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.27.48 ### Patch Changes diff --git a/features/admin.branding.v1/package.json b/features/admin.branding.v1/package.json index 7e4a665569c..990a52ea61d 100644 --- a/features/admin.branding.v1/package.json +++ b/features/admin.branding.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.branding.v1", - "version": "2.27.48", + "version": "2.27.49", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,20 +21,20 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.ai.v1": "^2.26.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/common.branding.v1": "^2.25.48", + "@wso2is/admin.branding.ai.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/common.branding.v1": "^2.25.49", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "classnames": "^2.2.6", diff --git a/features/admin.certificates.v1/CHANGELOG.md b/features/admin.certificates.v1/CHANGELOG.md index 51a3123a993..7773091a33d 100644 --- a/features/admin.certificates.v1/CHANGELOG.md +++ b/features/admin.certificates.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.certificates.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.certificates.v1/package.json b/features/admin.certificates.v1/package.json index 3076f3baf25..abb5f7f05bc 100644 --- a/features/admin.certificates.v1/package.json +++ b/features/admin.certificates.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.certificates.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.claims.v1/CHANGELOG.md b/features/admin.claims.v1/CHANGELOG.md index ea934d819f5..dce35ae3f95 100644 --- a/features/admin.claims.v1/CHANGELOG.md +++ b/features/admin.claims.v1/CHANGELOG.md @@ -1,5 +1,25 @@ # @wso2is/admin.claims.v1 +## 2.26.35 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.34 ### Patch Changes diff --git a/features/admin.claims.v1/package.json b/features/admin.claims.v1/package.json index 9d29fa30521..09c7eaadc7a 100644 --- a/features/admin.claims.v1/package.json +++ b/features/admin.claims.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.claims.v1", - "version": "2.26.34", + "version": "2.26.35", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,20 +21,20 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.connections.v1/CHANGELOG.md b/features/admin.connections.v1/CHANGELOG.md index 6b3fce220d2..bfee18f6ceb 100644 --- a/features/admin.connections.v1/CHANGELOG.md +++ b/features/admin.connections.v1/CHANGELOG.md @@ -1,5 +1,30 @@ # @wso2is/admin.connections.v1 +## 2.30.12 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.console-settings.v1@2.25.76 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.application-templates.v1@1.4.76 + - @wso2is/admin.identity-verification-providers.v1@2.27.76 + - @wso2is/admin.template-core.v1@1.5.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.30.11 ### Patch Changes diff --git a/features/admin.connections.v1/package.json b/features/admin.connections.v1/package.json index f110ce0a5ba..833607b630a 100644 --- a/features/admin.connections.v1/package.json +++ b/features/admin.connections.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.connections.v1", - "version": "2.30.11", + "version": "2.30.12", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,27 +21,27 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.console-settings.v1": "^2.25.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.identity-verification-providers.v1": "^2.27.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.template-core.v1": "^1.5.29", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.application-templates.v1": "^1.4.75", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.console-settings.v1": "^2.25.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.identity-verification-providers.v1": "^2.27.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.template-core.v1": "^1.5.30", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.application-templates.v1": "^1.4.76", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.console-settings.v1/CHANGELOG.md b/features/admin.console-settings.v1/CHANGELOG.md index d398d599758..1a180a42363 100644 --- a/features/admin.console-settings.v1/CHANGELOG.md +++ b/features/admin.console-settings.v1/CHANGELOG.md @@ -1,5 +1,29 @@ # @wso2is/admin.console-settings.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.administrators.v1@2.29.76 + - @wso2is/admin.login-flow.ai.v1@2.26.76 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authentication.v1@2.25.76 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.console-settings.v1/package.json b/features/admin.console-settings.v1/package.json index ca608795d04..6c409aa8fbe 100644 --- a/features/admin.console-settings.v1/package.json +++ b/features/admin.console-settings.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.console-settings.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,26 +21,26 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.administrators.v1": "^2.29.75", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authentication.v1": "^2.25.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.login-flow.ai.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/admin.administrators.v1": "^2.29.76", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.login-flow.ai.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.core.v1/CHANGELOG.md b/features/admin.core.v1/CHANGELOG.md index cd3e4e48f49..7e899465a11 100644 --- a/features/admin.core.v1/CHANGELOG.md +++ b/features/admin.core.v1/CHANGELOG.md @@ -1,5 +1,60 @@ # @wso2is/admin.core.v1 +## 2.35.14 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.email-management.v1@2.25.76 + - @wso2is/admin.email-providers.v1@2.25.76 + - @wso2is/admin.administrators.v1@2.29.76 + - @wso2is/admin.api-resources.v1@2.25.76 + - @wso2is/admin.api-resources.v2@2.25.76 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.sms-providers.v1@2.25.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.org-insights.v1@2.25.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/i18n@2.14.6 + - @wso2is/admin.branding.v1@2.27.49 + - @wso2is/admin.console-settings.v1@2.25.76 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.impersonation.v1@1.6.76 + - @wso2is/admin.private-key-jwt.v1@2.25.76 + - @wso2is/admin.roles.v1@2.25.76 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authentication.v1@2.25.76 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.email-and-sms.v1@2.25.76 + - @wso2is/admin.email-templates.v1@2.25.76 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.organization-discovery.v1@2.25.76 + - @wso2is/admin.subscription.v1@1.5.76 + - @wso2is/admin.tenants.v1@2.28.50 + - @wso2is/admin.application-templates.v1@1.4.76 + - @wso2is/admin.oidc-scopes.v1@2.25.76 + - @wso2is/admin.actions.v1@1.7.33 + - @wso2is/admin.identity-verification-providers.v1@2.27.76 + - @wso2is/admin.certificates.v1@2.25.76 + - @wso2is/admin.remote-repository-configuration.v1@2.25.76 + - @wso2is/admin.saml2-configuration.v1@2.25.76 + - @wso2is/admin.secrets.v1@2.25.76 + - @wso2is/admin.session-management.v1@2.25.76 + - @wso2is/admin.sms-templates.v1@1.0.75 + - @wso2is/admin.template-core.v1@1.5.30 + - @wso2is/admin.workflow-approvals.v1@2.25.76 + - @wso2is/admin.wsfed-configuration.v1@2.25.76 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + ## 2.35.13 ### Patch Changes diff --git a/features/admin.core.v1/package.json b/features/admin.core.v1/package.json index c66474245a2..ff3eb57db1b 100644 --- a/features/admin.core.v1/package.json +++ b/features/admin.core.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.core.v1", - "version": "2.35.13", + "version": "2.35.14", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -16,53 +16,53 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.actions.v1": "^1.7.32", - "@wso2is/admin.administrators.v1": "^2.29.75", - "@wso2is/admin.api-resources.v1": "^2.25.75", - "@wso2is/admin.api-resources.v2": "^2.25.75", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authentication.v1": "^2.25.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.branding.v1": "^2.27.48", - "@wso2is/admin.certificates.v1": "^2.25.75", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.console-settings.v1": "^2.25.75", - "@wso2is/admin.email-and-sms.v1": "^2.25.75", - "@wso2is/admin.email-management.v1": "^2.25.75", - "@wso2is/admin.email-providers.v1": "^2.25.75", - "@wso2is/admin.email-templates.v1": "^2.25.75", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.identity-verification-providers.v1": "^2.27.75", - "@wso2is/admin.oidc-scopes.v1": "^2.25.75", - "@wso2is/admin.org-insights.v1": "^2.25.75", - "@wso2is/admin.organization-discovery.v1": "^2.25.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.private-key-jwt.v1": "^2.25.75", - "@wso2is/admin.impersonation.v1": "^1.6.75", - "@wso2is/admin.remote-repository-configuration.v1": "^2.25.75", - "@wso2is/admin.roles.v1": "^2.25.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.saml2-configuration.v1": "^2.25.75", - "@wso2is/admin.secrets.v1": "^2.25.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.session-management.v1": "^2.25.75", - "@wso2is/admin.sms-providers.v1": "^2.25.75", - "@wso2is/admin.sms-templates.v1": "^1.0.74", - "@wso2is/admin.subscription.v1": "^1.5.75", - "@wso2is/admin.tenants.v1": "^2.28.49", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.validation.v1": "^2.27.13", - "@wso2is/admin.workflow-approvals.v1": "^2.25.75", - "@wso2is/admin.wsfed-configuration.v1": "^2.25.75", + "@wso2is/admin.actions.v1": "^1.7.33", + "@wso2is/admin.administrators.v1": "^2.29.76", + "@wso2is/admin.api-resources.v1": "^2.25.76", + "@wso2is/admin.api-resources.v2": "^2.25.76", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.branding.v1": "^2.27.49", + "@wso2is/admin.certificates.v1": "^2.25.76", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.console-settings.v1": "^2.25.76", + "@wso2is/admin.email-and-sms.v1": "^2.25.76", + "@wso2is/admin.email-management.v1": "^2.25.76", + "@wso2is/admin.email-providers.v1": "^2.25.76", + "@wso2is/admin.email-templates.v1": "^2.25.76", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.identity-verification-providers.v1": "^2.27.76", + "@wso2is/admin.oidc-scopes.v1": "^2.25.76", + "@wso2is/admin.org-insights.v1": "^2.25.76", + "@wso2is/admin.organization-discovery.v1": "^2.25.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.private-key-jwt.v1": "^2.25.76", + "@wso2is/admin.impersonation.v1": "^1.6.76", + "@wso2is/admin.remote-repository-configuration.v1": "^2.25.76", + "@wso2is/admin.roles.v1": "^2.25.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.saml2-configuration.v1": "^2.25.76", + "@wso2is/admin.secrets.v1": "^2.25.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.session-management.v1": "^2.25.76", + "@wso2is/admin.sms-providers.v1": "^2.25.76", + "@wso2is/admin.sms-templates.v1": "^1.0.75", + "@wso2is/admin.subscription.v1": "^1.5.76", + "@wso2is/admin.tenants.v1": "^2.28.50", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.workflow-approvals.v1": "^2.25.76", + "@wso2is/admin.wsfed-configuration.v1": "^2.25.76", "@wso2is/core": "^2.5.5", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", "axios": "^0.19.2", "classnames": "^2.2.6", "history": "^4.9.0", @@ -90,8 +90,8 @@ "slashes": "^2.0.2", "styled-components": "^4.4.1", "swr": "^2.0.0", - "@wso2is/admin.application-templates.v1": "^1.4.75", - "@wso2is/admin.template-core.v1": "^1.5.29" + "@wso2is/admin.application-templates.v1": "^1.4.76", + "@wso2is/admin.template-core.v1": "^1.5.30" }, "peerDependencies": { "@asgardeo/auth-react": "^5.1.2", diff --git a/features/admin.email-and-sms.v1/CHANGELOG.md b/features/admin.email-and-sms.v1/CHANGELOG.md index 02f791eeef0..0fe625df1f3 100644 --- a/features/admin.email-and-sms.v1/CHANGELOG.md +++ b/features/admin.email-and-sms.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.email-and-sms.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.email-and-sms.v1/package.json b/features/admin.email-and-sms.v1/package.json index 9368d5f0044..704d1d65faf 100644 --- a/features/admin.email-and-sms.v1/package.json +++ b/features/admin.email-and-sms.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-and-sms.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,15 +21,15 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.organizations.v1": "^2.26.76", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.email-management.v1/CHANGELOG.md b/features/admin.email-management.v1/CHANGELOG.md index 7290c876074..bc5b6b649e6 100644 --- a/features/admin.email-management.v1/CHANGELOG.md +++ b/features/admin.email-management.v1/CHANGELOG.md @@ -1,5 +1,21 @@ # @wso2is/admin.email-management.v1 +## 2.25.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.branding.v1@2.27.49 + - @wso2is/common.branding.v1@2.25.49 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.email-management.v1/package.json b/features/admin.email-management.v1/package.json index b48172b684a..2120ae79ffe 100644 --- a/features/admin.email-management.v1/package.json +++ b/features/admin.email-management.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-management.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,16 +21,16 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.v1": "^2.27.48", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/common.branding.v1": "^2.25.48", + "@wso2is/admin.branding.v1": "^2.27.49", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/common.branding.v1": "^2.25.49", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.email-providers.v1/CHANGELOG.md b/features/admin.email-providers.v1/CHANGELOG.md index 267f9e236c0..e43f64f1dd2 100644 --- a/features/admin.email-providers.v1/CHANGELOG.md +++ b/features/admin.email-providers.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.email-providers.v1 +## 2.25.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.email-providers.v1/package.json b/features/admin.email-providers.v1/package.json index 11e99d9b5f1..06bbebd1d96 100644 --- a/features/admin.email-providers.v1/package.json +++ b/features/admin.email-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-providers.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.email-templates.v1/CHANGELOG.md b/features/admin.email-templates.v1/CHANGELOG.md index 5d0112ca3a1..a61da7436c8 100644 --- a/features/admin.email-templates.v1/CHANGELOG.md +++ b/features/admin.email-templates.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.email-templates.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.email-templates.v1/package.json b/features/admin.email-templates.v1/package.json index f5c65d751b6..efaf87990a7 100644 --- a/features/admin.email-templates.v1/package.json +++ b/features/admin.email-templates.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-templates.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,15 +21,15 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.organizations.v1": "^2.26.76", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.extensions.v1/CHANGELOG.md b/features/admin.extensions.v1/CHANGELOG.md index 1612b8b5d2b..ca27329262d 100644 --- a/features/admin.extensions.v1/CHANGELOG.md +++ b/features/admin.extensions.v1/CHANGELOG.md @@ -1,5 +1,38 @@ # @wso2is/admin.extensions.v1 +## 2.36.1 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.remote-userstores.v1@1.7.32 + - @wso2is/admin.api-resources.v1@2.25.76 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.sms-providers.v1@2.25.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authentication.v1@2.25.76 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.tenants.v1@2.28.50 + - @wso2is/admin.provisioning.v1@2.25.76 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.36.0 ### Minor Changes diff --git a/features/admin.extensions.v1/package.json b/features/admin.extensions.v1/package.json index 52ec55d6f5b..dfa2c8c3179 100644 --- a/features/admin.extensions.v1/package.json +++ b/features/admin.extensions.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.extensions.v1", - "version": "2.36.0", + "version": "2.36.1", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,33 +21,33 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.api-resources.v1": "^2.25.75", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authentication.v1": "^2.25.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.provisioning.v1": "^2.25.75", - "@wso2is/admin.remote-userstores.v1": "^1.7.31", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.sms-providers.v1": "^2.25.75", - "@wso2is/admin.tenants.v1": "^2.28.49", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.api-resources.v1": "^2.25.76", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.provisioning.v1": "^2.25.76", + "@wso2is/admin.remote-userstores.v1": "^1.7.32", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.sms-providers.v1": "^2.25.76", + "@wso2is/admin.tenants.v1": "^2.28.50", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.feature-gate.v1/CHANGELOG.md b/features/admin.feature-gate.v1/CHANGELOG.md index e561e8c39a2..01f11e2d460 100644 --- a/features/admin.feature-gate.v1/CHANGELOG.md +++ b/features/admin.feature-gate.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.feature-gate.v1 +## 1.4.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + ## 1.4.75 ### Patch Changes diff --git a/features/admin.feature-gate.v1/package.json b/features/admin.feature-gate.v1/package.json index de551bbb18e..e0d05343b32 100644 --- a/features/admin.feature-gate.v1/package.json +++ b/features/admin.feature-gate.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.feature-gate.v1", - "version": "1.4.75", + "version": "1.4.76", "description": "Access control management for admin level features.", "author": "WSO2", "license": "Apache-2.0", @@ -31,8 +31,8 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.organizations.v1": "^2.26.76", "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", "axios": "^0.19.2", diff --git a/features/admin.groups.v1/CHANGELOG.md b/features/admin.groups.v1/CHANGELOG.md index 09b9e360d2e..6c21a8066ec 100644 --- a/features/admin.groups.v1/CHANGELOG.md +++ b/features/admin.groups.v1/CHANGELOG.md @@ -1,5 +1,26 @@ # @wso2is/admin.groups.v1 +## 2.26.35 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.34 ### Patch Changes diff --git a/features/admin.groups.v1/package.json b/features/admin.groups.v1/package.json index 9b71e2e4097..99304495c6e 100644 --- a/features/admin.groups.v1/package.json +++ b/features/admin.groups.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.groups.v1", - "version": "2.26.34", + "version": "2.26.35", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,21 +21,21 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.home.v1/CHANGELOG.md b/features/admin.home.v1/CHANGELOG.md index 247859b72c2..364189b69ae 100644 --- a/features/admin.home.v1/CHANGELOG.md +++ b/features/admin.home.v1/CHANGELOG.md @@ -1,5 +1,20 @@ # @wso2is/admin.home.v1 +## 1.6.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/react-components@2.8.17 + ## 1.6.75 ### Patch Changes diff --git a/features/admin.home.v1/package.json b/features/admin.home.v1/package.json index cfd0f44180d..a5ecdd1809c 100644 --- a/features/admin.home.v1/package.json +++ b/features/admin.home.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.home.v1", - "version": "1.6.75", + "version": "1.6.76", "description": "Feature and utilities for the WSO2 Identity Server Admin Home", "author": "WSO2", "license": "Apache-2.0", @@ -32,14 +32,14 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.organizations.v1": "^2.26.76", "@wso2is/core": "^2.5.5", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", "classnames": "^2.2.6", "axios": "^0.19.2", "i18next": "^21.9.1", diff --git a/features/admin.identity-providers.v1/CHANGELOG.md b/features/admin.identity-providers.v1/CHANGELOG.md index 9acf055bedf..134c8498682 100644 --- a/features/admin.identity-providers.v1/CHANGELOG.md +++ b/features/admin.identity-providers.v1/CHANGELOG.md @@ -1,5 +1,26 @@ # @wso2is/admin.identity-providers.v1 +## 2.26.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.75 ### Patch Changes diff --git a/features/admin.identity-providers.v1/package.json b/features/admin.identity-providers.v1/package.json index ca954083a0d..1eb1413b28b 100644 --- a/features/admin.identity-providers.v1/package.json +++ b/features/admin.identity-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.identity-providers.v1", - "version": "2.26.75", + "version": "2.26.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,23 +21,23 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.userstores.v1": "^2.26.35", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.identity-verification-providers.v1/CHANGELOG.md b/features/admin.identity-verification-providers.v1/CHANGELOG.md index af983c0c850..826321dd517 100644 --- a/features/admin.identity-verification-providers.v1/CHANGELOG.md +++ b/features/admin.identity-verification-providers.v1/CHANGELOG.md @@ -1,5 +1,21 @@ # @wso2is/admin.identity-verification-providers.v1 +## 2.27.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.template-core.v1@1.5.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.27.75 ### Patch Changes diff --git a/features/admin.identity-verification-providers.v1/package.json b/features/admin.identity-verification-providers.v1/package.json index 8c9e3f94620..02dac4d789d 100644 --- a/features/admin.identity-verification-providers.v1/package.json +++ b/features/admin.identity-verification-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.identity-verification-providers.v1", - "version": "2.27.75", + "version": "2.27.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,18 +21,18 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.template-core.v1": "^1.5.29", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.template-core.v1": "^1.5.30", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.impersonation.v1/CHANGELOG.md b/features/admin.impersonation.v1/CHANGELOG.md index 889cf0e276e..f32f87b21b4 100644 --- a/features/admin.impersonation.v1/CHANGELOG.md +++ b/features/admin.impersonation.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.impersonation.v1 +## 1.6.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 1.6.75 ### Patch Changes diff --git a/features/admin.impersonation.v1/package.json b/features/admin.impersonation.v1/package.json index 46f4a89b7c2..4ff88386adb 100644 --- a/features/admin.impersonation.v1/package.json +++ b/features/admin.impersonation.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.impersonation.v1", - "version": "1.6.75", + "version": "1.6.76", "description": "Impersonation Configuration Package", "author": "WSO2", "license": "Apache-2.0", @@ -21,15 +21,15 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.server-configurations.v1": "^2.32.0", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.server-configurations.v1": "^2.32.1", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "deep-equal": "^2.2.2", diff --git a/features/admin.login-flow.ai.v1/CHANGELOG.md b/features/admin.login-flow.ai.v1/CHANGELOG.md index 59088c768ef..31c4558a37c 100644 --- a/features/admin.login-flow.ai.v1/CHANGELOG.md +++ b/features/admin.login-flow.ai.v1/CHANGELOG.md @@ -1,5 +1,25 @@ # @wso2is/admin.login-flow.ai.v1 +## 2.26.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/common.ai.v1@2.25.76 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.75 ### Patch Changes diff --git a/features/admin.login-flow.ai.v1/package.json b/features/admin.login-flow.ai.v1/package.json index 531a53c47ec..ac30a5f6782 100644 --- a/features/admin.login-flow.ai.v1/package.json +++ b/features/admin.login-flow.ai.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.login-flow.ai.v1", - "version": "2.26.75", + "version": "2.26.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,20 +21,20 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/common.ai.v1": "^2.25.75", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/common.ai.v1": "^2.25.76", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.logs.v1/CHANGELOG.md b/features/admin.logs.v1/CHANGELOG.md index 5f24495d2b3..c8517ee88d5 100644 --- a/features/admin.logs.v1/CHANGELOG.md +++ b/features/admin.logs.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.logs.v1 +## 1.5.77 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 1.5.76 ### Patch Changes diff --git a/features/admin.logs.v1/package.json b/features/admin.logs.v1/package.json index aea3cd81b67..9cc072aec3a 100644 --- a/features/admin.logs.v1/package.json +++ b/features/admin.logs.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.logs.v1", - "version": "1.5.76", + "version": "1.5.77", "description": "Query your logs to troubleshoot issues and monitor resource activities.", "author": "WSO2", "license": "Apache-2.0", @@ -31,12 +31,12 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", "axios": "^0.19.2", "i18next": "^21.9.1", "moment": "^2.24.0", diff --git a/features/admin.oidc-scopes.v1/CHANGELOG.md b/features/admin.oidc-scopes.v1/CHANGELOG.md index 6777f7be215..aeaca0cb56d 100644 --- a/features/admin.oidc-scopes.v1/CHANGELOG.md +++ b/features/admin.oidc-scopes.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.oidc-scopes.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.oidc-scopes.v1/package.json b/features/admin.oidc-scopes.v1/package.json index d11d51698cb..f7ce6d537de 100644 --- a/features/admin.oidc-scopes.v1/package.json +++ b/features/admin.oidc-scopes.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.oidc-scopes.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,16 +21,16 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.org-insights.v1/CHANGELOG.md b/features/admin.org-insights.v1/CHANGELOG.md index 0601702c853..e22631d3927 100644 --- a/features/admin.org-insights.v1/CHANGELOG.md +++ b/features/admin.org-insights.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.org-insights.v1 +## 2.25.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.org-insights.v1/package.json b/features/admin.org-insights.v1/package.json index 5af859c3f55..d62cbd4eadc 100644 --- a/features/admin.org-insights.v1/package.json +++ b/features/admin.org-insights.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.org-insights.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.organization-discovery.v1/CHANGELOG.md b/features/admin.organization-discovery.v1/CHANGELOG.md index 6cb9d734508..925c8e1deeb 100644 --- a/features/admin.organization-discovery.v1/CHANGELOG.md +++ b/features/admin.organization-discovery.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.organization-discovery.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.organization-discovery.v1/package.json b/features/admin.organization-discovery.v1/package.json index 1427128b5d1..aeba3e19873 100644 --- a/features/admin.organization-discovery.v1/package.json +++ b/features/admin.organization-discovery.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.organization-discovery.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,15 +21,15 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.organizations.v1": "^2.26.76", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.organizations.v1/CHANGELOG.md b/features/admin.organizations.v1/CHANGELOG.md index 456883d996d..d78a2fbdccb 100644 --- a/features/admin.organizations.v1/CHANGELOG.md +++ b/features/admin.organizations.v1/CHANGELOG.md @@ -1,5 +1,30 @@ # @wso2is/admin.organizations.v1 +## 2.26.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authentication.v1@2.25.76 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.tenants.v1@2.28.50 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.75 ### Patch Changes diff --git a/features/admin.organizations.v1/package.json b/features/admin.organizations.v1/package.json index 4d9dd4292b0..b66120ed8ae 100644 --- a/features/admin.organizations.v1/package.json +++ b/features/admin.organizations.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.organizations.v1", - "version": "2.26.75", + "version": "2.26.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,25 +21,25 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authentication.v1": "^2.25.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.tenants.v1": "^2.28.49", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.tenants.v1": "^2.28.50", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.private-key-jwt.v1/CHANGELOG.md b/features/admin.private-key-jwt.v1/CHANGELOG.md index e26b83ad3dd..110b4bad253 100644 --- a/features/admin.private-key-jwt.v1/CHANGELOG.md +++ b/features/admin.private-key-jwt.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.private-key-jwt.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.private-key-jwt.v1/package.json b/features/admin.private-key-jwt.v1/package.json index 96cb5c6bde1..c4e7d8f77db 100644 --- a/features/admin.private-key-jwt.v1/package.json +++ b/features/admin.private-key-jwt.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.private-key-jwt.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,15 +21,15 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.server-configurations.v1": "^2.32.0", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.server-configurations.v1": "^2.32.1", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.provisioning.v1/CHANGELOG.md b/features/admin.provisioning.v1/CHANGELOG.md index 5125377c8a9..5a7bc4f00cf 100644 --- a/features/admin.provisioning.v1/CHANGELOG.md +++ b/features/admin.provisioning.v1/CHANGELOG.md @@ -1,5 +1,20 @@ # @wso2is/admin.provisioning.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.provisioning.v1/package.json b/features/admin.provisioning.v1/package.json index c8ac9f47e62..5c7fb254ab7 100644 --- a/features/admin.provisioning.v1/package.json +++ b/features/admin.provisioning.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.provisioning.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,17 +21,17 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.identity-providers.v1": "^2.26.75", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.identity-providers.v1": "^2.26.76", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.remote-repository-configuration.v1/CHANGELOG.md b/features/admin.remote-repository-configuration.v1/CHANGELOG.md index afaa070af0f..7519463a9fc 100644 --- a/features/admin.remote-repository-configuration.v1/CHANGELOG.md +++ b/features/admin.remote-repository-configuration.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.remote-repository-configuration.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.remote-repository-configuration.v1/package.json b/features/admin.remote-repository-configuration.v1/package.json index 2079a675b35..564c2e6ca85 100644 --- a/features/admin.remote-repository-configuration.v1/package.json +++ b/features/admin.remote-repository-configuration.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.remote-repository-configuration.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.remote-userstores.v1/CHANGELOG.md b/features/admin.remote-userstores.v1/CHANGELOG.md index d17d578350d..c51c5be50b7 100644 --- a/features/admin.remote-userstores.v1/CHANGELOG.md +++ b/features/admin.remote-userstores.v1/CHANGELOG.md @@ -1,5 +1,22 @@ # @wso2is/admin.remote-userstores.v1 +## 1.7.32 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 1.7.31 ### Patch Changes diff --git a/features/admin.remote-userstores.v1/package.json b/features/admin.remote-userstores.v1/package.json index 878848fa65c..22aefe6a3ac 100644 --- a/features/admin.remote-userstores.v1/package.json +++ b/features/admin.remote-userstores.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.remote-userstores.v1", - "version": "1.7.31", + "version": "1.7.32", "description": "Connect and manage Read-only or Read-write remote Userstores.", "author": "WSO2", "license": "Apache-2.0", @@ -31,17 +31,17 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/react-components": "^2.8.16", + "@wso2is/react-components": "^2.8.17", "axios": "^0.19.2", "i18next": "^21.9.1", "react-helmet": "^5.2.1", diff --git a/features/admin.roles.v1/CHANGELOG.md b/features/admin.roles.v1/CHANGELOG.md index 2752d86d046..6e27b210127 100644 --- a/features/admin.roles.v1/CHANGELOG.md +++ b/features/admin.roles.v1/CHANGELOG.md @@ -1,5 +1,22 @@ # @wso2is/admin.roles.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.roles.v1/package.json b/features/admin.roles.v1/package.json index c60e0633205..81708de0626 100644 --- a/features/admin.roles.v1/package.json +++ b/features/admin.roles.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.roles.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,19 +21,19 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.roles.v2/CHANGELOG.md b/features/admin.roles.v2/CHANGELOG.md index 5e4ed516efb..9021b0f8abd 100644 --- a/features/admin.roles.v2/CHANGELOG.md +++ b/features/admin.roles.v2/CHANGELOG.md @@ -1,5 +1,31 @@ # @wso2is/admin.roles.v2 +## 2.27.20 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.remote-userstores.v1@1.7.32 + - @wso2is/admin.api-resources.v2@2.25.76 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.27.19 ### Patch Changes diff --git a/features/admin.roles.v2/package.json b/features/admin.roles.v2/package.json index dbe2b0374ea..54f9945eff9 100644 --- a/features/admin.roles.v2/package.json +++ b/features/admin.roles.v2/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.roles.v2", - "version": "2.27.19", + "version": "2.27.20", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,26 +21,26 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.api-resources.v2": "^2.25.75", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.remote-userstores.v1": "^1.7.31", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", + "@wso2is/admin.api-resources.v2": "^2.25.76", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.remote-userstores.v1": "^1.7.32", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.saml2-configuration.v1/CHANGELOG.md b/features/admin.saml2-configuration.v1/CHANGELOG.md index 0db3244304a..f5aa9f5bb27 100644 --- a/features/admin.saml2-configuration.v1/CHANGELOG.md +++ b/features/admin.saml2-configuration.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.saml2-configuration.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.saml2-configuration.v1/package.json b/features/admin.saml2-configuration.v1/package.json index 8d2cc3e98f8..9041acde684 100644 --- a/features/admin.saml2-configuration.v1/package.json +++ b/features/admin.saml2-configuration.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.saml2-configuration.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.secrets.v1/CHANGELOG.md b/features/admin.secrets.v1/CHANGELOG.md index bb2e080bd1d..f4bc1732418 100644 --- a/features/admin.secrets.v1/CHANGELOG.md +++ b/features/admin.secrets.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.secrets.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.secrets.v1/package.json b/features/admin.secrets.v1/package.json index 25d667b08db..1d5b9f8d43f 100644 --- a/features/admin.secrets.v1/package.json +++ b/features/admin.secrets.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.secrets.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.server-configurations.v1/CHANGELOG.md b/features/admin.server-configurations.v1/CHANGELOG.md index c758aa5afbb..a67640528b8 100644 --- a/features/admin.server-configurations.v1/CHANGELOG.md +++ b/features/admin.server-configurations.v1/CHANGELOG.md @@ -1,5 +1,26 @@ # @wso2is/admin.server-configurations.v1 +## 2.32.1 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.32.0 ### Minor Changes diff --git a/features/admin.server-configurations.v1/package.json b/features/admin.server-configurations.v1/package.json index 2ef1cc563c6..e96977c59d8 100644 --- a/features/admin.server-configurations.v1/package.json +++ b/features/admin.server-configurations.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.server-configurations.v1", - "version": "2.32.0", + "version": "2.32.1", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,21 +21,21 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.session-management.v1/CHANGELOG.md b/features/admin.session-management.v1/CHANGELOG.md index b1c7f2cec41..141d4ee58b2 100644 --- a/features/admin.session-management.v1/CHANGELOG.md +++ b/features/admin.session-management.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.session-management.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.session-management.v1/package.json b/features/admin.session-management.v1/package.json index 22ddc91d412..2b0cf9bb19e 100644 --- a/features/admin.session-management.v1/package.json +++ b/features/admin.session-management.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.session-management.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.sms-providers.v1/CHANGELOG.md b/features/admin.sms-providers.v1/CHANGELOG.md index a515c75cb3b..da72f34c851 100644 --- a/features/admin.sms-providers.v1/CHANGELOG.md +++ b/features/admin.sms-providers.v1/CHANGELOG.md @@ -1,5 +1,21 @@ # @wso2is/admin.sms-providers.v1 +## 2.25.76 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.connections.v1@2.30.12 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.sms-providers.v1/package.json b/features/admin.sms-providers.v1/package.json index d8b971b7814..f557a124dd2 100644 --- a/features/admin.sms-providers.v1/package.json +++ b/features/admin.sms-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.sms-providers.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,16 +21,16 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.connections.v1": "^2.30.11", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", + "@wso2is/admin.connections.v1": "^2.30.12", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.sms-templates.v1/CHANGELOG.md b/features/admin.sms-templates.v1/CHANGELOG.md index 5b8972d546a..919e2c3f44c 100644 --- a/features/admin.sms-templates.v1/CHANGELOG.md +++ b/features/admin.sms-templates.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.sms-templates.v1 +## 1.0.75 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.branding.v1@2.27.49 + - @wso2is/common.branding.v1@2.25.49 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 1.0.74 ### Patch Changes diff --git a/features/admin.sms-templates.v1/package.json b/features/admin.sms-templates.v1/package.json index d47f4d29a6f..f11cc4565e5 100644 --- a/features/admin.sms-templates.v1/package.json +++ b/features/admin.sms-templates.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.sms-templates.v1", - "version": "1.0.74", + "version": "1.0.75", "description": "SMS templates for Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,16 +21,16 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.v1": "^2.27.48", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/common.branding.v1": "^2.25.48", + "@wso2is/admin.branding.v1": "^2.27.49", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/common.branding.v1": "^2.25.49", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.0.9", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.subscription.v1/CHANGELOG.md b/features/admin.subscription.v1/CHANGELOG.md index 57e743ed6e6..d55e82206c5 100644 --- a/features/admin.subscription.v1/CHANGELOG.md +++ b/features/admin.subscription.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.subscription.v1 +## 1.5.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + ## 1.5.75 ### Patch Changes diff --git a/features/admin.subscription.v1/package.json b/features/admin.subscription.v1/package.json index cbe74692190..8afeb62f8f6 100644 --- a/features/admin.subscription.v1/package.json +++ b/features/admin.subscription.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.subscription.v1", - "version": "1.5.75", + "version": "1.5.76", "description": "Manage the tier & subscription information of the tenant", "author": "WSO2", "license": "Apache-2.0", @@ -32,8 +32,8 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.organizations.v1": "^2.26.76", "@wso2is/core": "^2.5.5", "classnames": "^2.2.6", "axios": "^0.19.2", diff --git a/features/admin.template-core.v1/CHANGELOG.md b/features/admin.template-core.v1/CHANGELOG.md index 5be2b865e8e..a11b0fefc00 100644 --- a/features/admin.template-core.v1/CHANGELOG.md +++ b/features/admin.template-core.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.template-core.v1 +## 1.5.30 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.core.v1@2.35.14 + ## 1.5.29 ### Patch Changes diff --git a/features/admin.template-core.v1/package.json b/features/admin.template-core.v1/package.json index 3507cacef18..ddec1b72fcc 100644 --- a/features/admin.template-core.v1/package.json +++ b/features/admin.template-core.v1/package.json @@ -1,13 +1,13 @@ { "private": true, "name": "@wso2is/admin.template-core.v1", - "version": "1.5.29", + "version": "1.5.30", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", "dependencies": { "@wso2is/core": "^2.5.5", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "i18next": "^21.9.1", "react-redux": "^7.2.9", "redux": "^4.0.4" diff --git a/features/admin.tenants.v1/CHANGELOG.md b/features/admin.tenants.v1/CHANGELOG.md index e3acb94a971..56afc726cec 100644 --- a/features/admin.tenants.v1/CHANGELOG.md +++ b/features/admin.tenants.v1/CHANGELOG.md @@ -1,5 +1,22 @@ # @wso2is/admin.tenants.v1 +## 2.28.50 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.28.49 ### Patch Changes diff --git a/features/admin.tenants.v1/package.json b/features/admin.tenants.v1/package.json index 14425b85a8d..05b56510895 100644 --- a/features/admin.tenants.v1/package.json +++ b/features/admin.tenants.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.tenants.v1", - "version": "2.28.49", + "version": "2.28.50", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -20,19 +20,19 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.username-validation.v1/CHANGELOG.md b/features/admin.username-validation.v1/CHANGELOG.md index e42151db211..4af93645870 100644 --- a/features/admin.username-validation.v1/CHANGELOG.md +++ b/features/admin.username-validation.v1/CHANGELOG.md @@ -1,5 +1,16 @@ # @wso2is/admin.username-validation.v1 +## 1.5.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.applications.v1@2.30.76 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/react-components@2.8.17 + - @wso2is/form@2.6.10 + ## 1.5.75 ### Patch Changes diff --git a/features/admin.username-validation.v1/package.json b/features/admin.username-validation.v1/package.json index 7ff057834f8..12e0a963c41 100644 --- a/features/admin.username-validation.v1/package.json +++ b/features/admin.username-validation.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.username-validation.v1", - "version": "1.5.75", + "version": "1.5.76", "description": "Manage the username type and customize username validation rules for your users", "author": "WSO2", "license": "Apache-2.0", @@ -31,12 +31,12 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.applications.v1": "^2.30.75", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/form": "^2.6.9", - "@wso2is/react-components": "^2.8.16", + "@wso2is/form": "^2.6.10", + "@wso2is/react-components": "^2.8.17", "axios": "^0.19.2", "i18next": "^21.9.1", "react-helmet": "^5.2.1", diff --git a/features/admin.users.v1/CHANGELOG.md b/features/admin.users.v1/CHANGELOG.md index 62ff3c2de54..7f0e689eecd 100644 --- a/features/admin.users.v1/CHANGELOG.md +++ b/features/admin.users.v1/CHANGELOG.md @@ -1,5 +1,33 @@ # @wso2is/admin.users.v1 +## 2.29.35 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.claims.v1@2.26.35 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/admin.identity-providers.v1@2.26.76 + - @wso2is/admin.validation.v1@2.27.14 + - @wso2is/admin.userstores.v1@2.26.35 + - @wso2is/admin.authentication.v1@2.25.76 + - @wso2is/admin.feature-gate.v1@1.4.76 + - @wso2is/admin.tenants.v1@2.28.50 + - @wso2is/admin.authorization.v1@2.25.30 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.29.34 ### Patch Changes diff --git a/features/admin.users.v1/package.json b/features/admin.users.v1/package.json index 5fd03fc2c2d..76a9f86021c 100644 --- a/features/admin.users.v1/package.json +++ b/features/admin.users.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.users.v1", - "version": "2.29.34", + "version": "2.29.35", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,28 +21,28 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.authentication.v1": "^2.25.75", - "@wso2is/admin.authorization.v1": "^2.25.29", - "@wso2is/admin.claims.v1": "^2.26.34", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.feature-gate.v1": "^1.4.75", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.identity-providers.v1": "^2.26.75", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.roles.v2": "^2.27.19", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.tenants.v1": "^2.28.49", - "@wso2is/admin.users.v1": "^2.29.34", - "@wso2is/admin.userstores.v1": "^2.26.34", - "@wso2is/admin.validation.v1": "^2.27.13", + "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.authorization.v1": "^2.25.30", + "@wso2is/admin.claims.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.tenants.v1": "^2.28.50", + "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.validation.v1": "^2.27.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.userstores.v1/CHANGELOG.md b/features/admin.userstores.v1/CHANGELOG.md index 0c9378e1ae9..3a191a1c20b 100644 --- a/features/admin.userstores.v1/CHANGELOG.md +++ b/features/admin.userstores.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.userstores.v1 +## 2.26.35 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.remote-userstores.v1@1.7.32 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.26.34 ### Patch Changes diff --git a/features/admin.userstores.v1/package.json b/features/admin.userstores.v1/package.json index 4c0d461eabb..bc930b2cd41 100644 --- a/features/admin.userstores.v1/package.json +++ b/features/admin.userstores.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.userstores.v1", - "version": "2.26.34", + "version": "2.26.35", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,16 +21,16 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.remote-userstores.v1": "^1.7.31", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.remote-userstores.v1": "^1.7.32", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.validation.v1/CHANGELOG.md b/features/admin.validation.v1/CHANGELOG.md index c2192b440e1..da8d9e70af4 100644 --- a/features/admin.validation.v1/CHANGELOG.md +++ b/features/admin.validation.v1/CHANGELOG.md @@ -1,5 +1,23 @@ # @wso2is/admin.validation.v1 +## 2.27.14 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.server-configurations.v1@2.32.1 + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.extensions.v1@2.36.1 + - @wso2is/admin.groups.v1@2.26.35 + - @wso2is/admin.roles.v2@2.27.20 + - @wso2is/admin.users.v1@2.29.35 + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.27.13 ### Patch Changes diff --git a/features/admin.validation.v1/package.json b/features/admin.validation.v1/package.json index 4b4c212ce6c..e6807c2067a 100644 --- a/features/admin.validation.v1/package.json +++ b/features/admin.validation.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.validation.v1", - "version": "2.27.13", + "version": "2.27.14", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,21 +21,21 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.extensions.v1": "^2.36.0", - "@wso2is/admin.organizations.v1": "^2.26.75", - "@wso2is/admin.server-configurations.v1": "^2.32.0", - "@wso2is/admin.users.v1": "^2.29.34", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.users.v1": "^2.29.35", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", - "@wso2is/admin.groups.v1": "^2.26.34", - "@wso2is/admin.roles.v2": "^2.27.19", + "@wso2is/admin.groups.v1": "^2.26.35", + "@wso2is/admin.roles.v2": "^2.27.20", "axios": "^0.19.2", "codemirror": "^5.52.0", "country-language": "^0.1.7", diff --git a/features/admin.workflow-approvals.v1/CHANGELOG.md b/features/admin.workflow-approvals.v1/CHANGELOG.md index cdf0917673f..39a3fe6aac0 100644 --- a/features/admin.workflow-approvals.v1/CHANGELOG.md +++ b/features/admin.workflow-approvals.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.workflow-approvals.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.workflow-approvals.v1/package.json b/features/admin.workflow-approvals.v1/package.json index abfa1c59975..41dfa9cb421 100644 --- a/features/admin.workflow-approvals.v1/package.json +++ b/features/admin.workflow-approvals.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.workflow-approvals.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/admin.wsfed-configuration.v1/CHANGELOG.md b/features/admin.wsfed-configuration.v1/CHANGELOG.md index b2760dd42ba..60471672ae3 100644 --- a/features/admin.wsfed-configuration.v1/CHANGELOG.md +++ b/features/admin.wsfed-configuration.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.wsfed-configuration.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/admin.wsfed-configuration.v1/package.json b/features/admin.wsfed-configuration.v1/package.json index f30fa32774b..670b6197a83 100644 --- a/features/admin.wsfed-configuration.v1/package.json +++ b/features/admin.wsfed-configuration.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.wsfed-configuration.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/common.ai.v1/CHANGELOG.md b/features/common.ai.v1/CHANGELOG.md index 4d70e633303..1ecfd071222 100644 --- a/features/common.ai.v1/CHANGELOG.md +++ b/features/common.ai.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/common.ai.v1 +## 2.25.76 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308), [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/admin.core.v1@2.35.14 + - @wso2is/i18n@2.14.6 + - @wso2is/theme@2.5.1 + - @wso2is/react-components@2.8.17 + - @wso2is/dynamic-forms@2.4.17 + - @wso2is/form@2.6.10 + ## 2.25.75 ### Patch Changes diff --git a/features/common.ai.v1/package.json b/features/common.ai.v1/package.json index 0985d5a973e..58fe680df2a 100644 --- a/features/common.ai.v1/package.json +++ b/features/common.ai.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/common.ai.v1", - "version": "2.25.75", + "version": "2.25.76", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.13", + "@wso2is/admin.core.v1": "^2.35.14", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/features/common.branding.v1/CHANGELOG.md b/features/common.branding.v1/CHANGELOG.md index d51643160f9..45f76bd105b 100644 --- a/features/common.branding.v1/CHANGELOG.md +++ b/features/common.branding.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/common.branding.v1 +## 2.25.49 + +### Patch Changes + +- Updated dependencies [[`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308)]: + - @wso2is/admin.organizations.v1@2.26.76 + - @wso2is/admin.core.v1@2.35.14 + ## 2.25.48 ### Patch Changes diff --git a/features/common.branding.v1/package.json b/features/common.branding.v1/package.json index 78e4789d6b1..65a08dd0f06 100644 --- a/features/common.branding.v1/package.json +++ b/features/common.branding.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/common.branding.v1", - "version": "2.25.48", + "version": "2.25.49", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -15,8 +15,8 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/core": "^2.5.5", - "@wso2is/admin.core.v1": "^2.35.13", - "@wso2is/admin.organizations.v1": "^2.26.75", + "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.organizations.v1": "^2.26.76", "lodash-es": "^4.17.21", "react-helmet": "^5.2.1" }, diff --git a/features/package.json b/features/package.json index 8dfcf42e81f..a3778180010 100644 --- a/features/package.json +++ b/features/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/features", - "version": "2.26.29", + "version": "2.26.30", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -29,12 +29,12 @@ "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", - "@wso2is/dynamic-forms": "^2.4.16", - "@wso2is/form": "^2.6.9", + "@wso2is/dynamic-forms": "^2.4.17", + "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", - "@wso2is/i18n": "^2.14.5", - "@wso2is/react-components": "^2.8.16", - "@wso2is/theme": "^2.5.0", + "@wso2is/i18n": "^2.14.6", + "@wso2is/react-components": "^2.8.17", + "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", "axios": "^0.19.2", "codemirror": "^5.52.0", diff --git a/identity-apps-core/CHANGELOG.md b/identity-apps-core/CHANGELOG.md index 903e4b1fbf8..10b60e37676 100644 --- a/identity-apps-core/CHANGELOG.md +++ b/identity-apps-core/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/identity-apps-core +## 2.9.1 + +### Patch Changes + +- [#7286](https://github.com/wso2/identity-apps/pull/7286) [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a) Thanks [@savindi7](https://github.com/savindi7)! - Bump apps + +- Updated dependencies [[`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/theme@2.5.1 + ## 2.9.0 ### Minor Changes diff --git a/identity-apps-core/package.json b/identity-apps-core/package.json index 0c15ab4e613..b30cf87327c 100644 --- a/identity-apps-core/package.json +++ b/identity-apps-core/package.json @@ -1,6 +1,6 @@ { "name": "@wso2is/identity-apps-core", - "version": "2.9.0", + "version": "2.9.1", "private": true, "description": "WSO2 Identity Server Authentication Portal", "author": "WSO2", @@ -13,7 +13,7 @@ "clean:node-modules": "pnpm rimraf node_modules" }, "dependencies": { - "@wso2is/theme": "^2.5.0", + "@wso2is/theme": "^2.5.1", "rimraf": "^3.0.2" } } diff --git a/modules/dynamic-forms/CHANGELOG.md b/modules/dynamic-forms/CHANGELOG.md index 37c2a5015c7..6973db939f0 100644 --- a/modules/dynamic-forms/CHANGELOG.md +++ b/modules/dynamic-forms/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/dynamic-forms +## 2.4.17 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/react-components@2.8.17 + ## 2.4.16 ### Patch Changes diff --git a/modules/dynamic-forms/package.json b/modules/dynamic-forms/package.json index e37fa274519..a82482d1873 100644 --- a/modules/dynamic-forms/package.json +++ b/modules/dynamic-forms/package.json @@ -1,6 +1,6 @@ { "name": "@wso2is/dynamic-forms", - "version": "2.4.16", + "version": "2.4.17", "private": true, "description": "Dynamic form library for WSO2 Identity Server front end applications.", "keywords": [ @@ -35,7 +35,7 @@ "@mui/material": "^5.13.0", "@wso2is/core": "^2.5.5", "@wso2is/validation": "^2.4.0", - "@wso2is/react-components": "^2.8.16", + "@wso2is/react-components": "^2.8.17", "final-form": "^4.20.9", "joi": "^17.4.0", "lodash-es": "^4.17.21", diff --git a/modules/form/CHANGELOG.md b/modules/form/CHANGELOG.md index f34134e51ca..9043924875f 100644 --- a/modules/form/CHANGELOG.md +++ b/modules/form/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/form +## 2.6.10 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/react-components@2.8.17 + ## 2.6.9 ### Patch Changes diff --git a/modules/form/package.json b/modules/form/package.json index 471f257fb6b..e5bf831a8aa 100644 --- a/modules/form/package.json +++ b/modules/form/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/form", - "version": "2.6.9", + "version": "2.6.10", "description": "Form library for WSO2 Identity Server front end applications.", "keywords": [ "WSO2", @@ -32,7 +32,7 @@ }, "dependencies": { "@wso2is/core": "^2.5.5", - "@wso2is/react-components": "^2.8.16", + "@wso2is/react-components": "^2.8.17", "@wso2is/validation": "^2.4.0", "final-form": "^4.20.2", "joi": "^17.4.0", diff --git a/modules/i18n/CHANGELOG.md b/modules/i18n/CHANGELOG.md index c9d6c0f75e3..efae34581a0 100644 --- a/modules/i18n/CHANGELOG.md +++ b/modules/i18n/CHANGELOG.md @@ -1,5 +1,11 @@ # @wso2is/i18n +## 2.14.6 + +### Patch Changes + +- [#7235](https://github.com/wso2/identity-apps/pull/7235) [`c2568dbe95e01427899dbb6c71c6e04d8941e308`](https://github.com/wso2/identity-apps/commit/c2568dbe95e01427899dbb6c71c6e04d8941e308) Thanks [@pavinduLakshan](https://github.com/pavinduLakshan)! - Move common i18n extensions in console app to i18n module + ## 2.14.5 ### Patch Changes diff --git a/modules/i18n/package.json b/modules/i18n/package.json index a08760dc5d8..ebb1d78e18f 100644 --- a/modules/i18n/package.json +++ b/modules/i18n/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/i18n", - "version": "2.14.5", + "version": "2.14.6", "description": "This module contains the configs, helpers and translations required to make an identity app available in multiple languages.", "keywords": [ "WSO2", diff --git a/modules/react-components/CHANGELOG.md b/modules/react-components/CHANGELOG.md index 591827daa6b..9ae92b931fd 100644 --- a/modules/react-components/CHANGELOG.md +++ b/modules/react-components/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/react-components +## 2.8.17 + +### Patch Changes + +- Updated dependencies [[`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a)]: + - @wso2is/theme@2.5.1 + ## 2.8.16 ### Patch Changes diff --git a/modules/react-components/package.json b/modules/react-components/package.json index 0412b1b2358..f2db852c433 100644 --- a/modules/react-components/package.json +++ b/modules/react-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/react-components", - "version": "2.8.16", + "version": "2.8.17", "description": "A React component library for WSO2 Identity Server frontend apps implementing Semantic UI Framework", "keywords": [ "WSO2", @@ -47,7 +47,7 @@ "@storybook/react": "^6.5.9", "@storybook/theming": "^6.5.9", "@wso2is/core": "^2.5.5", - "@wso2is/theme": "^2.5.0", + "@wso2is/theme": "^2.5.1", "classnames": "^2.2.6", "codemirror": "^5.52.0", "file-saver": "^2.0.5", diff --git a/modules/theme/CHANGELOG.md b/modules/theme/CHANGELOG.md index 72b5832d490..4118d2da29f 100644 --- a/modules/theme/CHANGELOG.md +++ b/modules/theme/CHANGELOG.md @@ -1,5 +1,11 @@ # @wso2is/theme +## 2.5.1 + +### Patch Changes + +- [#7286](https://github.com/wso2/identity-apps/pull/7286) [`f1173193bb885f71c7d25fae5bfd011dfb70d79a`](https://github.com/wso2/identity-apps/commit/f1173193bb885f71c7d25fae5bfd011dfb70d79a) Thanks [@savindi7](https://github.com/savindi7)! - Bump apps + ## 2.5.0 ### Minor Changes diff --git a/modules/theme/package.json b/modules/theme/package.json index 4982ce26b4c..f3ccd080f41 100644 --- a/modules/theme/package.json +++ b/modules/theme/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/theme", - "version": "2.5.0", + "version": "2.5.1", "description": "Theme for web components of WSO2 Identity Server Webapps.", "keywords": [ "WSO2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 31eeded7e46..cfc4b20acdc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -495,172 +495,172 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.actions.v1': - specifier: ^1.7.32 + specifier: ^1.7.33 version: link:../../features/admin.actions.v1 '@wso2is/admin.administrators.v1': - specifier: ^2.29.75 + specifier: ^2.29.76 version: link:../../features/admin.administrators.v1 '@wso2is/admin.alternative-login-identifier.v1': - specifier: ^1.5.75 + specifier: ^1.5.76 version: link:../../features/admin.alternative-login-identifier.v1 '@wso2is/admin.api-resources.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.api-resources.v1 '@wso2is/admin.api-resources.v2': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.api-resources.v2 '@wso2is/admin.application-templates.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../../features/admin.application-templates.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../../features/admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.authentication.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../../features/admin.authorization.v1 '@wso2is/admin.branding.v1': - specifier: ^2.27.48 + specifier: ^2.27.49 version: link:../../features/admin.branding.v1 '@wso2is/admin.certificates.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.certificates.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../../features/admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../../features/admin.connections.v1 '@wso2is/admin.console-settings.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.console-settings.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../../features/admin.core.v1 '@wso2is/admin.email-and-sms.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.email-and-sms.v1 '@wso2is/admin.email-management.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.email-management.v1 '@wso2is/admin.email-providers.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.email-providers.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../../features/admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../../features/admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../../features/admin.groups.v1 '@wso2is/admin.home.v1': - specifier: ^1.6.75 + specifier: ^1.6.76 version: link:../../features/admin.home.v1 '@wso2is/admin.identity-verification-providers.v1': - specifier: ^2.27.75 + specifier: ^2.27.76 version: link:../../features/admin.identity-verification-providers.v1 '@wso2is/admin.impersonation.v1': - specifier: ^1.6.75 + specifier: ^1.6.76 version: link:../../features/admin.impersonation.v1 '@wso2is/admin.logs.v1': - specifier: ^1.5.76 + specifier: ^1.5.77 version: link:../../features/admin.logs.v1 '@wso2is/admin.oidc-scopes.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.oidc-scopes.v1 '@wso2is/admin.org-insights.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.org-insights.v1 '@wso2is/admin.organization-discovery.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.organization-discovery.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../../features/admin.organizations.v1 '@wso2is/admin.private-key-jwt.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.private-key-jwt.v1 '@wso2is/admin.remote-repository-configuration.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.remote-repository-configuration.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.31 + specifier: ^1.7.32 version: link:../../features/admin.remote-userstores.v1 '@wso2is/admin.roles.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.roles.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../../features/admin.roles.v2 '@wso2is/admin.saml2-configuration.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.saml2-configuration.v1 '@wso2is/admin.secrets.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../../features/admin.server-configurations.v1 '@wso2is/admin.session-management.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.session-management.v1 '@wso2is/admin.sms-providers.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.sms-providers.v1 '@wso2is/admin.sms-templates.v1': - specifier: ^1.0.74 + specifier: ^1.0.75 version: link:../../features/admin.sms-templates.v1 '@wso2is/admin.subscription.v1': - specifier: ^1.5.75 + specifier: ^1.5.76 version: link:../../features/admin.subscription.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.29 + specifier: ^1.5.30 version: link:../../features/admin.template-core.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.49 + specifier: ^2.28.50 version: link:../../features/admin.tenants.v1 '@wso2is/admin.username-validation.v1': - specifier: ^1.5.75 + specifier: ^1.5.76 version: link:../../features/admin.username-validation.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../../features/admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../../features/admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../../features/admin.validation.v1 '@wso2is/admin.workflow-approvals.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.workflow-approvals.v1 '@wso2is/admin.wsfed-configuration.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../../features/admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -955,10 +955,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../../features/admin.organizations.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.48 + specifier: ^2.25.49 version: link:../../features/common.branding.v1 '@wso2is/core': specifier: ^2.5.5 @@ -967,13 +967,13 @@ importers: specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -1214,22 +1214,22 @@ importers: specifier: ^2.5.5 version: link:../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -1563,25 +1563,25 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -1828,49 +1828,49 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: workspace:^2.25.75 + specifier: workspace:^2.25.76 version: link:../admin.authentication.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.31 + specifier: ^1.7.32 version: link:../admin.remote-userstores.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.49 + specifier: ^2.28.50 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -1985,31 +1985,31 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -2127,22 +2127,22 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -2263,22 +2263,22 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -2372,31 +2372,31 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -2493,13 +2493,13 @@ importers: features/admin.application-templates.v1: dependencies: '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.29 + specifier: ^1.5.30 version: link:../admin.template-core.v1 react: specifier: ^18.2.0 @@ -2593,88 +2593,88 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.api-resources.v2': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.api-resources.v2 '@wso2is/admin.application-templates.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.application-templates.v1 '@wso2is/admin.authentication-flow-builder.v1': - specifier: ^2.24.75 + specifier: ^2.24.76 version: link:../admin.authentication-flow-builder.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.branding.v1': - specifier: ^2.27.48 + specifier: ^2.27.49 version: link:../admin.branding.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.console-settings.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.console-settings.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.impersonation.v1': - specifier: ^1.6.75 + specifier: ^1.6.76 version: link:../admin.impersonation.v1 '@wso2is/admin.login-flow.ai.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.login-flow.ai.v1 '@wso2is/admin.oidc-scopes.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.oidc-scopes.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.secrets.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.29 + specifier: ^1.5.30 version: link:../admin.template-core.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/admin.wsfed-configuration.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/validation': specifier: ^2.4.0 @@ -2834,37 +2834,37 @@ importers: specifier: ^2.0.0 version: 2.0.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.login-flow.ai.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.login-flow.ai.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.secrets.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -2973,28 +2973,28 @@ importers: specifier: ^5.1.2 version: 5.2.3(@babel/runtime-corejs3@7.26.0)(react-dom@18.3.1)(react@18.3.1) '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n axios: specifier: ^0.19.2 @@ -3124,22 +3124,22 @@ importers: specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -3555,43 +3555,43 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.v1': - specifier: ^2.27.48 + specifier: ^2.27.49 version: link:../admin.branding.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/common.ai.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../common.ai.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.48 + specifier: ^2.25.49 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -3949,46 +3949,46 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.ai.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.branding.ai.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.48 + specifier: ^2.25.49 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -4349,28 +4349,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -4731,46 +4731,46 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: 'link:' '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -5128,67 +5128,67 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.application-templates.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: 'link:' '@wso2is/admin.console-settings.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.console-settings.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.identity-verification-providers.v1': - specifier: ^2.27.75 + specifier: ^2.27.76 version: link:../admin.identity-verification-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.template-core.v1': - specifier: ^1.5.29 + specifier: ^1.5.30 version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -5546,64 +5546,64 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.administrators.v1': - specifier: ^2.29.75 + specifier: ^2.29.76 version: link:../admin.administrators.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.authentication.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.login-flow.ai.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.login-flow.ai.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -5949,139 +5949,139 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.actions.v1': - specifier: ^1.7.32 + specifier: ^1.7.33 version: link:../admin.actions.v1 '@wso2is/admin.administrators.v1': - specifier: ^2.29.75 + specifier: ^2.29.76 version: link:../admin.administrators.v1 '@wso2is/admin.api-resources.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.api-resources.v1 '@wso2is/admin.api-resources.v2': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.api-resources.v2 '@wso2is/admin.application-templates.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.branding.v1': - specifier: ^2.27.48 + specifier: ^2.27.49 version: link:../admin.branding.v1 '@wso2is/admin.certificates.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.certificates.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.console-settings.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.console-settings.v1 '@wso2is/admin.email-and-sms.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.email-and-sms.v1 '@wso2is/admin.email-management.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.email-management.v1 '@wso2is/admin.email-providers.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.email-providers.v1 '@wso2is/admin.email-templates.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.email-templates.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.identity-verification-providers.v1': - specifier: ^2.27.75 + specifier: ^2.27.76 version: link:../admin.identity-verification-providers.v1 '@wso2is/admin.impersonation.v1': - specifier: ^1.6.75 + specifier: ^1.6.76 version: link:../admin.impersonation.v1 '@wso2is/admin.oidc-scopes.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.oidc-scopes.v1 '@wso2is/admin.org-insights.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.org-insights.v1 '@wso2is/admin.organization-discovery.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.organization-discovery.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.private-key-jwt.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.private-key-jwt.v1 '@wso2is/admin.remote-repository-configuration.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.remote-repository-configuration.v1 '@wso2is/admin.roles.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.roles.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.saml2-configuration.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.saml2-configuration.v1 '@wso2is/admin.secrets.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.session-management.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.session-management.v1 '@wso2is/admin.sms-providers.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.sms-providers.v1 '@wso2is/admin.sms-templates.v1': - specifier: ^1.0.74 + specifier: ^1.0.75 version: link:../admin.sms-templates.v1 '@wso2is/admin.subscription.v1': - specifier: ^1.5.75 + specifier: ^1.5.76 version: link:../admin.subscription.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.29 + specifier: ^1.5.30 version: link:../admin.template-core.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.49 + specifier: ^2.28.50 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/admin.workflow-approvals.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.workflow-approvals.v1 '@wso2is/admin.wsfed-configuration.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.5.5 @@ -6090,10 +6090,10 @@ importers: specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -6421,31 +6421,31 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -6803,34 +6803,34 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.v1': - specifier: ^2.27.48 + specifier: ^2.27.49 version: link:../admin.branding.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.48 + specifier: ^2.25.49 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -7188,28 +7188,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -7567,31 +7567,31 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -7949,85 +7949,85 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.api-resources.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.api-resources.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.provisioning.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.provisioning.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.31 + specifier: ^1.7.32 version: link:../admin.remote-userstores.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.sms-providers.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.sms-providers.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.49 + specifier: ^2.28.50 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -8370,10 +8370,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -8509,49 +8509,49 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -8894,28 +8894,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -9084,55 +9084,55 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: 'link:' '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -9490,40 +9490,40 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.29 + specifier: ^1.5.30 version: link:../admin.template-core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -9881,31 +9881,31 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -10251,46 +10251,46 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/common.ai.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../common.ai.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -10630,22 +10630,22 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -10781,34 +10781,34 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -11166,28 +11166,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -11545,31 +11545,31 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -11927,61 +11927,61 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.tenants.v1': - specifier: ^2.28.49 + specifier: ^2.28.50 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -12339,31 +12339,31 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -12721,37 +12721,37 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -13109,28 +13109,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -13470,37 +13470,37 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -13639,43 +13639,43 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -14033,64 +14033,64 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.api-resources.v2': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.api-resources.v2 '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.31 + specifier: ^1.7.32 version: link:../admin.remote-userstores.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -14448,28 +14448,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -14827,28 +14827,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -15206,49 +15206,49 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: 'link:' '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -15606,28 +15606,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -15985,34 +15985,34 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.connections.v1': - specifier: ^2.30.11 + specifier: ^2.30.12 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -16370,34 +16370,34 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.v1': - specifier: ^2.27.48 + specifier: ^2.27.49 version: link:../admin.branding.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.48 + specifier: ^2.25.49 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.0.9 @@ -16740,10 +16740,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -16870,7 +16870,7 @@ importers: features/admin.template-core.v1: dependencies: '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -16988,43 +16988,43 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -17364,22 +17364,22 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.75 + specifier: ^2.30.76 version: link:../admin.applications.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components axios: specifier: ^0.19.2 @@ -17512,70 +17512,70 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.authentication.v1': - specifier: ^2.25.75 + specifier: ^2.25.76 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': - specifier: ^2.25.29 + specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.75 + specifier: ^1.4.76 version: link:../admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.49 + specifier: ^2.28.50 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: 'link:' '@wso2is/admin.userstores.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.13 + specifier: ^2.27.14 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -17933,34 +17933,34 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.31 + specifier: ^1.7.32 version: link:../admin.remote-userstores.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -18318,46 +18318,46 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.0 + specifier: ^2.36.1 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.34 + specifier: ^2.26.35 version: link:../admin.groups.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.19 + specifier: ^2.27.20 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.0 + specifier: ^2.32.1 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.34 + specifier: ^2.29.35 version: link:../admin.users.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -18715,28 +18715,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -19094,28 +19094,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -19473,28 +19473,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 version: link:../../modules/core '@wso2is/dynamic-forms': - specifier: ^2.4.16 + specifier: ^2.4.17 version: link:../../modules/dynamic-forms '@wso2is/form': - specifier: ^2.6.9 + specifier: ^2.6.10 version: link:../../modules/form '@wso2is/forms': specifier: ^2.3.9 version: link:../../modules/forms '@wso2is/i18n': - specifier: ^2.14.5 + specifier: ^2.14.6 version: link:../../modules/i18n '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.4.0 @@ -19831,10 +19831,10 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': - specifier: ^2.35.13 + specifier: ^2.35.14 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.75 + specifier: ^2.26.76 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -19910,7 +19910,7 @@ importers: identity-apps-core: dependencies: '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../modules/theme rimraf: specifier: ^3.0.2 @@ -20074,7 +20074,7 @@ importers: specifier: ^2.5.5 version: link:../core '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../react-components '@wso2is/validation': specifier: ^2.4.0 @@ -20159,7 +20159,7 @@ importers: specifier: ^2.5.5 version: link:../core '@wso2is/react-components': - specifier: ^2.8.16 + specifier: ^2.8.17 version: link:../react-components '@wso2is/validation': specifier: ^2.4.0 @@ -20396,7 +20396,7 @@ importers: specifier: ^2.5.5 version: link:../core '@wso2is/theme': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../theme classnames: specifier: ^2.2.6 From a4631d141f5e7a482df91034423720b8d050b7d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 12:23:07 +0000 Subject: [PATCH 49/59] [WSO2 Release] [GitHub Action #2932] [Release] [skip ci] prepare release identity-apps-console-2.36.15 --- .../org.wso2.identity.apps.console.server.feature/pom.xml | 4 ++-- apps/console/java/pom.xml | 4 ++-- apps/console/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml index 3134d38446c..51fc761aadd 100644 --- a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml +++ b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.15-SNAPSHOT + 2.36.15 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-console-2.36.15 diff --git a/apps/console/java/pom.xml b/apps/console/java/pom.xml index a0540f8a932..505e8f3d418 100644 --- a/apps/console/java/pom.xml +++ b/apps/console/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-console pom - 2.36.15-SNAPSHOT + 2.36.15 WSO2 Identity Server Console - Parent WSO2 Identity Server Console Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-console-2.36.15 diff --git a/apps/console/java/webapp/pom.xml b/apps/console/java/webapp/pom.xml index 87692eee8ce..0aa5bc29126 100644 --- a/apps/console/java/webapp/pom.xml +++ b/apps/console/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.15-SNAPSHOT + 2.36.15 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-console-2.36.15 From 3cd407bc80288b41cc5625f393004166325e2218 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 12:23:12 +0000 Subject: [PATCH 50/59] [WSO2 Release] [GitHub Action #2932] [Release] [skip ci] prepare for next development iteration --- .../org.wso2.identity.apps.console.server.feature/pom.xml | 4 ++-- apps/console/java/pom.xml | 4 ++-- apps/console/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml index 51fc761aadd..e6f4f6a6502 100644 --- a/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml +++ b/apps/console/java/org.wso2.identity.apps.console.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.15 + 2.36.16-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-console-2.36.15 + HEAD diff --git a/apps/console/java/pom.xml b/apps/console/java/pom.xml index 505e8f3d418..0a6af20a1e3 100644 --- a/apps/console/java/pom.xml +++ b/apps/console/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-console pom - 2.36.15 + 2.36.16-SNAPSHOT WSO2 Identity Server Console - Parent WSO2 Identity Server Console Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-console-2.36.15 + HEAD diff --git a/apps/console/java/webapp/pom.xml b/apps/console/java/webapp/pom.xml index 0aa5bc29126..3de5c75a54c 100644 --- a/apps/console/java/webapp/pom.xml +++ b/apps/console/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-console - 2.36.15 + 2.36.16-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-console-2.36.15 + HEAD From d7bdabfba55f2ff96b015a5c6ef6d82ab78d6f79 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 12:32:37 +0000 Subject: [PATCH 51/59] [WSO2 Release] [GitHub Action #2932] [Release] [skip ci] prepare release identity-apps-myaccount-2.13.55 --- .../org.wso2.identity.apps.myaccount.server.feature/pom.xml | 4 ++-- apps/myaccount/java/pom.xml | 4 ++-- apps/myaccount/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml index 31c801a5373..47b4b910b19 100644 --- a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml +++ b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.55-SNAPSHOT + 2.13.55 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-myaccount-2.13.55 diff --git a/apps/myaccount/java/pom.xml b/apps/myaccount/java/pom.xml index 9330a4cb5e1..ddd3387dda2 100644 --- a/apps/myaccount/java/pom.xml +++ b/apps/myaccount/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-myaccount pom - 2.13.55-SNAPSHOT + 2.13.55 WSO2 Identity Server MyAccount - Parent WSO2 Identity Server MyAccount Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-myaccount-2.13.55 diff --git a/apps/myaccount/java/webapp/pom.xml b/apps/myaccount/java/webapp/pom.xml index 26381b60d19..a87ca02c022 100644 --- a/apps/myaccount/java/webapp/pom.xml +++ b/apps/myaccount/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.55-SNAPSHOT + 2.13.55 ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-myaccount-2.13.55 From 7cbf072e27950f6b70f609b6615ca71b44bc7cc6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 12:32:41 +0000 Subject: [PATCH 52/59] [WSO2 Release] [GitHub Action #2932] [Release] [skip ci] prepare for next development iteration --- .../org.wso2.identity.apps.myaccount.server.feature/pom.xml | 4 ++-- apps/myaccount/java/pom.xml | 4 ++-- apps/myaccount/java/webapp/pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml index 47b4b910b19..a8e9f1206f6 100644 --- a/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml +++ b/apps/myaccount/java/org.wso2.identity.apps.myaccount.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.55 + 2.13.56-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-myaccount-2.13.55 + HEAD diff --git a/apps/myaccount/java/pom.xml b/apps/myaccount/java/pom.xml index ddd3387dda2..0307e976719 100644 --- a/apps/myaccount/java/pom.xml +++ b/apps/myaccount/java/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-myaccount pom - 2.13.55 + 2.13.56-SNAPSHOT WSO2 Identity Server MyAccount - Parent WSO2 Identity Server MyAccount Parent @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-myaccount-2.13.55 + HEAD diff --git a/apps/myaccount/java/webapp/pom.xml b/apps/myaccount/java/webapp/pom.xml index a87ca02c022..b6c46e95557 100644 --- a/apps/myaccount/java/webapp/pom.xml +++ b/apps/myaccount/java/webapp/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-myaccount - 2.13.55 + 2.13.56-SNAPSHOT ../pom.xml @@ -39,7 +39,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-myaccount-2.13.55 + HEAD From 5a0330799364828ef2cd1374bab7ac50b005e5ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 12:38:23 +0000 Subject: [PATCH 53/59] [WSO2 Release] [GitHub Action #2932] [Release] [skip ci] prepare release identity-apps-core-2.9.1 --- identity-apps-core/apps/authentication-portal/pom.xml | 2 +- identity-apps-core/apps/recovery-portal/pom.xml | 2 +- .../apps/x509-certificate-authentication-portal/pom.xml | 2 +- identity-apps-core/components/login-portal-layouts/pom.xml | 2 +- .../components/org.wso2.identity.apps.common/pom.xml | 2 +- .../org.wso2.identity.apps.taglibs.layout.controller/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.identity.apps.common.server.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- identity-apps-core/pom.xml | 4 ++-- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/identity-apps-core/apps/authentication-portal/pom.xml b/identity-apps-core/apps/authentication-portal/pom.xml index f37efca134e..0101c90a035 100644 --- a/identity-apps-core/apps/authentication-portal/pom.xml +++ b/identity-apps-core/apps/authentication-portal/pom.xml @@ -19,7 +19,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/apps/recovery-portal/pom.xml b/identity-apps-core/apps/recovery-portal/pom.xml index 165235783cc..3a5bac221be 100644 --- a/identity-apps-core/apps/recovery-portal/pom.xml +++ b/identity-apps-core/apps/recovery-portal/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml b/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml index d3fa65cfd32..cdbd6663376 100644 --- a/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml +++ b/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/components/login-portal-layouts/pom.xml b/identity-apps-core/components/login-portal-layouts/pom.xml index e277529b373..c42832c0506 100644 --- a/identity-apps-core/components/login-portal-layouts/pom.xml +++ b/identity-apps-core/components/login-portal-layouts/pom.xml @@ -22,7 +22,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml b/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml index 4e1b927c18d..ba56e42cd87 100644 --- a/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml +++ b/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml b/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml index d19512734e3..02f3e460628 100644 --- a/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml +++ b/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml index 829dfe29586..949c31aca36 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml index 0d0ecd23efd..fc4c5bd42b8 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml index 561ca567b97..d4a9739cccb 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml index 690cb65e334..b46f40af7f8 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1-SNAPSHOT + 2.9.1 ../../pom.xml diff --git a/identity-apps-core/pom.xml b/identity-apps-core/pom.xml index 0e147976b88..47fbc5f3000 100644 --- a/identity-apps-core/pom.xml +++ b/identity-apps-core/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-core pom - 2.9.1-SNAPSHOT + 2.9.1 WSO2 Identity Server Apps - Parent WSO2 Identity Server Web Apps @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - HEAD + identity-apps-core-2.9.1 From 4efe94439c15a1cb1a299c87c260ac5054a9834c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Jan 2025 12:38:28 +0000 Subject: [PATCH 54/59] [WSO2 Release] [GitHub Action #2932] [Release] [skip ci] prepare for next development iteration --- identity-apps-core/apps/authentication-portal/pom.xml | 2 +- identity-apps-core/apps/recovery-portal/pom.xml | 2 +- .../apps/x509-certificate-authentication-portal/pom.xml | 2 +- identity-apps-core/components/login-portal-layouts/pom.xml | 2 +- .../components/org.wso2.identity.apps.common/pom.xml | 2 +- .../org.wso2.identity.apps.taglibs.layout.controller/pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.identity.apps.common.server.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- identity-apps-core/pom.xml | 4 ++-- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/identity-apps-core/apps/authentication-portal/pom.xml b/identity-apps-core/apps/authentication-portal/pom.xml index 0101c90a035..c0350955633 100644 --- a/identity-apps-core/apps/authentication-portal/pom.xml +++ b/identity-apps-core/apps/authentication-portal/pom.xml @@ -19,7 +19,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/apps/recovery-portal/pom.xml b/identity-apps-core/apps/recovery-portal/pom.xml index 3a5bac221be..0fbd9ea9bbd 100644 --- a/identity-apps-core/apps/recovery-portal/pom.xml +++ b/identity-apps-core/apps/recovery-portal/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml b/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml index cdbd6663376..d3891cb8169 100644 --- a/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml +++ b/identity-apps-core/apps/x509-certificate-authentication-portal/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/components/login-portal-layouts/pom.xml b/identity-apps-core/components/login-portal-layouts/pom.xml index c42832c0506..aa4cfb81913 100644 --- a/identity-apps-core/components/login-portal-layouts/pom.xml +++ b/identity-apps-core/components/login-portal-layouts/pom.xml @@ -22,7 +22,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml b/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml index ba56e42cd87..dbcab59de34 100644 --- a/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml +++ b/identity-apps-core/components/org.wso2.identity.apps.common/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml b/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml index 02f3e460628..835708ae6dd 100644 --- a/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml +++ b/identity-apps-core/components/org.wso2.identity.apps.taglibs.layout.controller/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml index 949c31aca36..e9c99eba7ad 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.authentication.portal.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml index fc4c5bd42b8..52ac624ecdb 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.common.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml index d4a9739cccb..9e5dc0eef65 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.recovery.portal.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml b/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml index b46f40af7f8..8c9105ce9c8 100644 --- a/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml +++ b/identity-apps-core/features/org.wso2.identity.apps.x509certificate.portal.server.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.identity.apps identity-apps-core - 2.9.1 + 2.9.2-SNAPSHOT ../../pom.xml diff --git a/identity-apps-core/pom.xml b/identity-apps-core/pom.xml index 47fbc5f3000..4f752b80e7f 100644 --- a/identity-apps-core/pom.xml +++ b/identity-apps-core/pom.xml @@ -24,7 +24,7 @@ org.wso2.identity.apps identity-apps-core pom - 2.9.1 + 2.9.2-SNAPSHOT WSO2 Identity Server Apps - Parent WSO2 Identity Server Web Apps @@ -40,7 +40,7 @@ https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git scm:git:https://github.com/wso2/identity-apps.git - identity-apps-core-2.9.1 + HEAD From d069736dace57223d480df9638c933930b81eab8 Mon Sep 17 00:00:00 2001 From: Pavindu Lakshan Date: Sat, 28 Dec 2024 00:52:46 +0530 Subject: [PATCH 55/59] Fix some circular dependencies --- .../models/application.ts | 2 +- features/admin.core.v1/configs/app.ts | 2 +- features/admin.core.v1/models/config.ts | 2 +- features/admin.groups.v1/api/groups.ts | 2 +- .../edit-group/add-group-user-modal.tsx | 2 +- .../edit-group/edit-group-basic.tsx | 2 +- .../edit-group/edit-group-roles.tsx | 2 +- .../edit-group/edit-group-users.tsx | 2 +- .../components/edit-group/edit-group.tsx | 2 +- .../admin.groups.v1/components/group-list.tsx | 2 +- .../components/wizard/create-group-wizard.tsx | 4 ++-- .../components/wizard/group-assign-users.tsx | 2 +- .../components/wizard/group-basics.tsx | 3 ++- features/admin.groups.v1/configs/endpoints.ts | 8 +++---- features/admin.groups.v1/index.ts | 22 ------------------- features/admin.groups.v1/models/groups.ts | 2 +- features/admin.groups.v1/models/index.ts | 20 ----------------- features/admin.groups.v1/pages/group-edit.tsx | 2 +- features/admin.groups.v1/pages/groups.tsx | 2 +- features/admin.roles.v2/api/roles.ts | 4 ++-- .../components/edit-role/edit-role-groups.tsx | 2 +- .../edit-role/edit-role-permission.tsx | 2 +- .../admin.roles.v2/components/role-utils.ts | 12 +++++----- .../components/wizard-updated/role-basics.tsx | 2 +- .../components/wizard/role-permission.tsx | 2 +- features/admin.roles.v2/configs/endpoints.ts | 2 +- features/admin.roles.v2/models/index.ts | 21 ------------------ features/admin.roles.v2/models/roles.ts | 2 +- .../pages/create-role-wizard.tsx | 4 ++-- .../utils/role-management-utils.ts | 3 ++- features/admin.users.v1/api/users.ts | 4 ++-- .../components/guests/models/invite.ts | 2 +- .../guests/pages/invite-parent-org-user.tsx | 3 ++- .../components/user-groups-edit.tsx | 2 +- .../wizard/add-consumer-user-wizard.tsx | 8 ++++--- .../components/wizard/add-user-wizard.tsx | 2 +- .../wizard/bulk-import-user-wizard.tsx | 4 ++-- features/admin.users.v1/models/endpoints.ts | 2 +- features/admin.users.v1/models/user.ts | 2 +- .../components/password-expiry-rule-list.tsx | 2 +- modules/forms/src/components/index.ts | 1 + 41 files changed, 58 insertions(+), 115 deletions(-) delete mode 100644 features/admin.groups.v1/index.ts delete mode 100644 features/admin.groups.v1/models/index.ts delete mode 100644 features/admin.roles.v2/models/index.ts diff --git a/features/admin.applications.v1/models/application.ts b/features/admin.applications.v1/models/application.ts index c97efb32c65..23e56340111 100644 --- a/features/admin.applications.v1/models/application.ts +++ b/features/admin.applications.v1/models/application.ts @@ -18,7 +18,7 @@ import { FeatureStatusLabel } from "@wso2is/admin.feature-gate.v1/models/feature-status"; import { GenericAuthenticatorInterface } from "@wso2is/admin.identity-providers.v1/models/identity-provider"; -import { AssociatedRolesInterface } from "@wso2is/admin.roles.v2/models"; +import { AssociatedRolesInterface } from "@wso2is/admin.roles.v2/models/roles"; import { LinkInterface } from "@wso2is/core/models"; import { OIDCDataInterface, diff --git a/features/admin.core.v1/configs/app.ts b/features/admin.core.v1/configs/app.ts index 7b0c9472599..13b0d61e43e 100644 --- a/features/admin.core.v1/configs/app.ts +++ b/features/admin.core.v1/configs/app.ts @@ -28,7 +28,7 @@ import { getConnectionResourceEndpoints } from "@wso2is/admin.connections.v1"; import { getEmailTemplatesResourceEndpoints } from "@wso2is/admin.email-templates.v1"; import { getExtendedFeatureResourceEndpoints } from "@wso2is/admin.extensions.v1/configs/endpoints"; import { getFeatureGateResourceEndpoints } from "@wso2is/admin.feature-gate.v1/configs/endpoints"; -import { getGroupsResourceEndpoints } from "@wso2is/admin.groups.v1"; +import { getGroupsResourceEndpoints } from "@wso2is/admin.groups.v1/configs/endpoints"; import { getIDVPResourceEndpoints } from "@wso2is/admin.identity-verification-providers.v1/configs/endpoints"; import { getScopesResourceEndpoints } from "@wso2is/admin.oidc-scopes.v1"; import { getInsightsResourceEndpoints } from "@wso2is/admin.org-insights.v1/config/org-insights"; diff --git a/features/admin.core.v1/models/config.ts b/features/admin.core.v1/models/config.ts index 8e9fb97e390..960a81c38cd 100644 --- a/features/admin.core.v1/models/config.ts +++ b/features/admin.core.v1/models/config.ts @@ -27,7 +27,7 @@ import { BrandingPreferenceResourceEndpointsInterface } from "@wso2is/admin.bran import { CertificatesResourceEndpointsInterface } from "@wso2is/admin.certificates.v1"; import { ClaimResourceEndpointsInterface } from "@wso2is/admin.claims.v1/models/endpoints"; import { ConnectionResourceEndpointsInterface } from "@wso2is/admin.connections.v1"; -import { GroupsResourceEndpointsInterface } from "@wso2is/admin.groups.v1"; +import { GroupsResourceEndpointsInterface } from "@wso2is/admin.groups.v1/models/endpoints"; import { ScopesResourceEndpointsInterface } from "@wso2is/admin.oidc-scopes.v1"; import { OrganizationResourceEndpointsInterface } from "@wso2is/admin.organizations.v1/models"; import { RolesResourceEndpointsInterface } from "@wso2is/admin.roles.v2/models/endpoints"; diff --git a/features/admin.groups.v1/api/groups.ts b/features/admin.groups.v1/api/groups.ts index d14c82da62c..d52ff7262fe 100644 --- a/features/admin.groups.v1/api/groups.ts +++ b/features/admin.groups.v1/api/groups.ts @@ -31,7 +31,7 @@ import { GroupsInterface, PatchGroupDataInterface, SearchGroupInterface -} from "../models"; +} from "../models/groups"; /** * Initialize an axios Http client. diff --git a/features/admin.groups.v1/components/edit-group/add-group-user-modal.tsx b/features/admin.groups.v1/components/edit-group/add-group-user-modal.tsx index 2440551fcf0..5e23edf58ee 100644 --- a/features/admin.groups.v1/components/edit-group/add-group-user-modal.tsx +++ b/features/admin.groups.v1/components/edit-group/add-group-user-modal.tsx @@ -39,7 +39,7 @@ import { useTranslation } from "react-i18next"; import { useDispatch } from "react-redux"; import { Dispatch } from "redux"; import { Grid, Modal } from "semantic-ui-react"; -import { GroupsInterface } from "../../models"; +import { GroupsInterface } from "../../models/groups"; /** * Proptypes for the group users list component. diff --git a/features/admin.groups.v1/components/edit-group/edit-group-basic.tsx b/features/admin.groups.v1/components/edit-group/edit-group-basic.tsx index ef0bfea69b1..54b538b85c0 100644 --- a/features/admin.groups.v1/components/edit-group/edit-group-basic.tsx +++ b/features/admin.groups.v1/components/edit-group/edit-group-basic.tsx @@ -39,7 +39,7 @@ import { useDispatch } from "react-redux"; import { Dispatch } from "redux"; import { Button, Divider, Form, Grid } from "semantic-ui-react"; import { deleteGroupById, searchGroupList, updateGroupDetails } from "../../api"; -import { GroupsInterface, PatchGroupDataInterface, SearchGroupInterface } from "../../models"; +import { GroupsInterface, PatchGroupDataInterface, SearchGroupInterface } from "../../models/groups"; /** * Interface to contain props needed for component diff --git a/features/admin.groups.v1/components/edit-group/edit-group-roles.tsx b/features/admin.groups.v1/components/edit-group/edit-group-roles.tsx index c8979502fd6..f30607e1e68 100644 --- a/features/admin.groups.v1/components/edit-group/edit-group-roles.tsx +++ b/features/admin.groups.v1/components/edit-group/edit-group-roles.tsx @@ -28,7 +28,7 @@ import React, { } from "react"; import { useTranslation } from "react-i18next"; import { Divider } from "semantic-ui-react"; -import { GroupsInterface } from "../../models"; +import { GroupsInterface } from "../../models/groups"; import "./edit-group-roles.scss"; interface EditGroupRolesPropsInterface extends IdentifiableComponentInterface { diff --git a/features/admin.groups.v1/components/edit-group/edit-group-users.tsx b/features/admin.groups.v1/components/edit-group/edit-group-users.tsx index a332813278c..411e740a9d3 100644 --- a/features/admin.groups.v1/components/edit-group/edit-group-users.tsx +++ b/features/admin.groups.v1/components/edit-group/edit-group-users.tsx @@ -52,7 +52,7 @@ import { Dispatch } from "redux"; import { Divider, DropdownProps, Header, Icon, PaginationProps, SemanticICONS } from "semantic-ui-react"; import { AddGroupUserModal } from "./add-group-user-modal"; import { updateGroupDetails } from "../../api"; -import { CreateGroupMemberInterface, GroupsInterface, PatchGroupDataInterface } from "../../models"; +import { CreateGroupMemberInterface, GroupsInterface, PatchGroupDataInterface } from "../../models/groups"; import "./edit-group-users.scss"; /** diff --git a/features/admin.groups.v1/components/edit-group/edit-group.tsx b/features/admin.groups.v1/components/edit-group/edit-group.tsx index 37a98c18bb4..0f43aa04468 100644 --- a/features/admin.groups.v1/components/edit-group/edit-group.tsx +++ b/features/admin.groups.v1/components/edit-group/edit-group.tsx @@ -30,7 +30,7 @@ import { EditGroupRoles } from "./edit-group-roles"; import { GroupUsersList } from "./edit-group-users"; import { GroupConstants } from "../../constants"; import useGroupManagement from "../../hooks/use-group-management"; -import { GroupsInterface } from "../../models"; +import { GroupsInterface } from "../../models/groups"; /** * Captures props needed for edit group component diff --git a/features/admin.groups.v1/components/group-list.tsx b/features/admin.groups.v1/components/group-list.tsx index 63adefb74cb..66b1418b4be 100644 --- a/features/admin.groups.v1/components/group-list.tsx +++ b/features/admin.groups.v1/components/group-list.tsx @@ -47,7 +47,7 @@ import { useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; import { Header, Icon, Label, SemanticICONS } from "semantic-ui-react"; import { GroupConstants } from "../constants"; -import { GroupsInterface } from "../models"; +import { GroupsInterface } from "../models/groups"; interface GroupListProps extends SBACInterface, LoadableComponentInterface, TestableComponentInterface { diff --git a/features/admin.groups.v1/components/wizard/create-group-wizard.tsx b/features/admin.groups.v1/components/wizard/create-group-wizard.tsx index b8fad350c58..83ceb906bfc 100644 --- a/features/admin.groups.v1/components/wizard/create-group-wizard.tsx +++ b/features/admin.groups.v1/components/wizard/create-group-wizard.tsx @@ -28,7 +28,7 @@ import { BasicRoleInterface, PatchRoleDataInterface, RolesV2Interface -} from "@wso2is/admin.roles.v2/models"; +} from "@wso2is/admin.roles.v2/models/roles"; import { UserBasicInterface } from "@wso2is/admin.users.v1/models"; import { CONSUMER_USERSTORE, PRIMARY_USERSTORE } from "@wso2is/admin.userstores.v1/constants"; import { isFeatureEnabled } from "@wso2is/core/helpers"; @@ -59,7 +59,7 @@ import { WizardStateInterface, WizardStepInterface, WizardStepsFormTypes -} from "../../models"; +} from "../../models/groups"; /** * Interface which captures create group props. diff --git a/features/admin.groups.v1/components/wizard/group-assign-users.tsx b/features/admin.groups.v1/components/wizard/group-assign-users.tsx index 8717e8d0e2a..2488ec84b08 100644 --- a/features/admin.groups.v1/components/wizard/group-assign-users.tsx +++ b/features/admin.groups.v1/components/wizard/group-assign-users.tsx @@ -47,7 +47,7 @@ import { useDispatch } from "react-redux"; import { Dispatch as ReduxDispatch } from "redux"; import { Header, Segment } from "semantic-ui-react"; import { GroupBasics } from "./group-basics"; -import { GroupsMemberInterface } from "../../models"; +import { GroupsMemberInterface } from "../../models/groups"; /** * Proptypes for the application consents list component. diff --git a/features/admin.groups.v1/components/wizard/group-basics.tsx b/features/admin.groups.v1/components/wizard/group-basics.tsx index 832dc225077..618e83536d2 100644 --- a/features/admin.groups.v1/components/wizard/group-basics.tsx +++ b/features/admin.groups.v1/components/wizard/group-basics.tsx @@ -34,7 +34,8 @@ import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { DropdownItemProps, Grid, GridColumn, GridRow } from "semantic-ui-react"; -import { CreateGroupFormData, SearchGroupInterface, searchGroupList } from "../.."; +import { searchGroupList } from "../../api"; +import { CreateGroupFormData, SearchGroupInterface } from "../../models/groups"; /** * Interface to capture group basics props. diff --git a/features/admin.groups.v1/configs/endpoints.ts b/features/admin.groups.v1/configs/endpoints.ts index 01da9d7f0b7..1a674eb8466 100644 --- a/features/admin.groups.v1/configs/endpoints.ts +++ b/features/admin.groups.v1/configs/endpoints.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -16,13 +16,13 @@ * under the License. */ -import { GroupsResourceEndpointsInterface } from "../models"; +import { GroupsResourceEndpointsInterface } from "../models/endpoints"; /** * Get the resource endpoints for the Group Management feature. * - * @param {string} serverHost - Server Host. - * @return {GroupsResourceEndpointsInterface} + * @param serverHost - Server Host. + * @returns the resource endpoints */ export const getGroupsResourceEndpoints = (serverHost: string): GroupsResourceEndpointsInterface => { return { diff --git a/features/admin.groups.v1/index.ts b/features/admin.groups.v1/index.ts deleted file mode 100644 index 7186192cfa8..00000000000 --- a/features/admin.groups.v1/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -export * from "./pages"; -export * from "./models"; -export * from "./api"; -export * from "./configs"; diff --git a/features/admin.groups.v1/models/groups.ts b/features/admin.groups.v1/models/groups.ts index 35aebe32530..89dbd8a2037 100644 --- a/features/admin.groups.v1/models/groups.ts +++ b/features/admin.groups.v1/models/groups.ts @@ -16,7 +16,7 @@ * under the License. */ -import { BasicRoleInterface } from "@wso2is/admin.roles.v2/models"; +import { BasicRoleInterface } from "@wso2is/admin.roles.v2/models/roles"; import { UserBasicInterface } from "@wso2is/admin.users.v1/models"; import { RolesMemberInterface } from "@wso2is/core/models"; import { GenericIconProps } from "@wso2is/react-components"; diff --git a/features/admin.groups.v1/models/index.ts b/features/admin.groups.v1/models/index.ts deleted file mode 100644 index 336f3bdc954..00000000000 --- a/features/admin.groups.v1/models/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -export * from "./groups"; -export * from "./endpoints"; diff --git a/features/admin.groups.v1/pages/group-edit.tsx b/features/admin.groups.v1/pages/group-edit.tsx index 3cd49375b9d..0e17eb9189c 100644 --- a/features/admin.groups.v1/pages/group-edit.tsx +++ b/features/admin.groups.v1/pages/group-edit.tsx @@ -24,7 +24,7 @@ import React, { FunctionComponent, ReactElement, useEffect, useState } from "rea import { useTranslation } from "react-i18next"; import { getGroupById } from "../api"; import { EditGroup } from "../components"; -import { GroupsInterface } from "../models"; +import { GroupsInterface } from "../models/groups"; import GroupManagementProvider from "../providers/group-management-provider"; const GroupEditPage: FunctionComponent = (): ReactElement => { diff --git a/features/admin.groups.v1/pages/groups.tsx b/features/admin.groups.v1/pages/groups.tsx index 19c3aeb7698..89529462b50 100644 --- a/features/admin.groups.v1/pages/groups.tsx +++ b/features/admin.groups.v1/pages/groups.tsx @@ -56,7 +56,7 @@ import { Dropdown, DropdownItemProps, DropdownProps, Icon, PaginationProps } fro import { deleteGroupById, useGroupList } from "../api"; import { GroupList } from "../components"; import { CreateGroupWizard } from "../components/wizard/create-group-wizard"; -import { GroupsInterface, WizardStepsFormTypes } from "../models"; +import { GroupsInterface, WizardStepsFormTypes } from "../models/groups"; const GROUPS_SORTING_OPTIONS: DropdownItemProps[] = [ { diff --git a/features/admin.roles.v2/api/roles.ts b/features/admin.roles.v2/api/roles.ts index 9f151e56271..a87fa8af60a 100644 --- a/features/admin.roles.v2/api/roles.ts +++ b/features/admin.roles.v2/api/roles.ts @@ -28,13 +28,13 @@ import { IdentityAppsApiException } from "@wso2is/core/exceptions"; import { HttpMethods, RoleListInterface, RolesInterface } from "@wso2is/core/models"; import { AxiosError, AxiosResponse } from "axios"; import { RoleAudienceTypes } from "../constants/role-constants"; +import { APIResourceInterface, APIResourceListInterface, AuthorizedAPIListItemInterface } from "../models/apiResources"; import { CreateRoleInterface, PatchRoleDataInterface, RolesV2ResponseInterface, SearchRoleInterface -} from "../models"; -import { APIResourceInterface, APIResourceListInterface, AuthorizedAPIListItemInterface } from "../models/apiResources"; +} from "../models/roles"; /** * Initialize an axios Http client. diff --git a/features/admin.roles.v2/components/edit-role/edit-role-groups.tsx b/features/admin.roles.v2/components/edit-role/edit-role-groups.tsx index d782332d402..f3aa367f3f5 100644 --- a/features/admin.roles.v2/components/edit-role/edit-role-groups.tsx +++ b/features/admin.roles.v2/components/edit-role/edit-role-groups.tsx @@ -24,7 +24,7 @@ import { import { PatchGroupAddOpInterface, PatchGroupRemoveOpInterface -} from "@wso2is/admin.groups.v1"; +} from "@wso2is/admin.groups.v1/models/groups"; import { useIdentityProviderList } from "@wso2is/admin.identity-providers.v1/api/identity-provider"; import { IdentityProviderInterface, StrictIdentityProviderInterface } from "@wso2is/admin.identity-providers.v1/models"; import { AlertLevels, IdentifiableComponentInterface, RoleGroupsInterface } from "@wso2is/core/models"; diff --git a/features/admin.roles.v2/components/edit-role/edit-role-permission.tsx b/features/admin.roles.v2/components/edit-role/edit-role-permission.tsx index 56b187e313e..245dd921c00 100644 --- a/features/admin.roles.v2/components/edit-role/edit-role-permission.tsx +++ b/features/admin.roles.v2/components/edit-role/edit-role-permission.tsx @@ -54,8 +54,8 @@ import { RenderChip } from "./edit-role-common/render-chip"; import { RoleAPIResourcesListItem } from "./edit-role-common/role-api-resources-list-item"; import { getAPIResourceDetailsBulk, updateRoleDetails, useAPIResourceDetails } from "../../api"; import { RoleAudienceTypes } from "../../constants/role-constants"; -import { PatchRoleDataInterface, PermissionUpdateInterface, SelectedPermissionsInterface } from "../../models"; import { APIResourceInterface, AuthorizedAPIListItemInterface, ScopeInterface } from "../../models/apiResources"; +import { PatchRoleDataInterface, PermissionUpdateInterface, SelectedPermissionsInterface } from "../../models/roles"; /** * Interface to capture permission edit props. diff --git a/features/admin.roles.v2/components/role-utils.ts b/features/admin.roles.v2/components/role-utils.ts index aab098e9a90..c19152033ef 100644 --- a/features/admin.roles.v2/components/role-utils.ts +++ b/features/admin.roles.v2/components/role-utils.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -16,15 +16,15 @@ * under the License. */ -import { PermissionObject, TreeNode } from "../models"; +import { PermissionObject, TreeNode } from "../models/permission"; /** * A Util method to create an array of permission object with heirarchy. - * + * * @param permissioObject - Permission Object * @param pathComponents - Permission Path Array * @param permissionTreeArray - Permission Tree array for reference - * + * * @returns {TreeNode[]} - Permission array with tree structure */ export const generatePermissionTree = (permissioObject: PermissionObject, pathComponents: string[], @@ -44,8 +44,8 @@ export const generatePermissionTree = (permissioObject: PermissionObject, pathCo permissionTreeArray.push(permissionComponent); } - if (pathComponents.length) { - generatePermissionTree(permissioObject, pathComponents, + if (pathComponents.length) { + generatePermissionTree(permissioObject, pathComponents, permissionComponent.children || (permissionComponent.children = [])); } diff --git a/features/admin.roles.v2/components/wizard-updated/role-basics.tsx b/features/admin.roles.v2/components/wizard-updated/role-basics.tsx index 21c7c666131..446ea7949d6 100644 --- a/features/admin.roles.v2/components/wizard-updated/role-basics.tsx +++ b/features/admin.roles.v2/components/wizard-updated/role-basics.tsx @@ -45,7 +45,7 @@ import { Trans, useTranslation } from "react-i18next"; import { DropdownProps } from "semantic-ui-react"; import useGetRolesList from "../../api/use-get-roles-list"; import { RoleAudienceTypes, RoleConstants } from "../../constants"; -import { CreateRoleFormData } from "../../models"; +import { CreateRoleFormData } from "../../models/roles"; const FORM_ID: string = "add-role-basics-form"; diff --git a/features/admin.roles.v2/components/wizard/role-permission.tsx b/features/admin.roles.v2/components/wizard/role-permission.tsx index 89d292be6d2..9a30bfe73ca 100644 --- a/features/admin.roles.v2/components/wizard/role-permission.tsx +++ b/features/admin.roles.v2/components/wizard/role-permission.tsx @@ -26,7 +26,7 @@ import React, { FunctionComponent, ReactElement, useEffect, useState } from "rea import { useTranslation } from "react-i18next"; import { Button, Divider, Grid } from "semantic-ui-react"; import { RoleConstants } from "../../constants"; -import { TreeNode } from "../../models"; +import { TreeNode } from "../../models/permission"; import { RoleManagementUtils } from "../../utils"; /** diff --git a/features/admin.roles.v2/configs/endpoints.ts b/features/admin.roles.v2/configs/endpoints.ts index db2e03782d0..7f6c1e0b314 100644 --- a/features/admin.roles.v2/configs/endpoints.ts +++ b/features/admin.roles.v2/configs/endpoints.ts @@ -16,7 +16,7 @@ * under the License. */ -import { RolesResourceEndpointsInterface } from "../models"; +import { RolesResourceEndpointsInterface } from "../models/endpoints"; /** * Get the resource endpoints for the Role Management feature. diff --git a/features/admin.roles.v2/models/index.ts b/features/admin.roles.v2/models/index.ts deleted file mode 100644 index 820d1eca5a5..00000000000 --- a/features/admin.roles.v2/models/index.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -export * from "./endpoints"; -export * from "./permission"; -export * from "./roles"; diff --git a/features/admin.roles.v2/models/roles.ts b/features/admin.roles.v2/models/roles.ts index caa25f5aaa8..d6f59b34418 100644 --- a/features/admin.roles.v2/models/roles.ts +++ b/features/admin.roles.v2/models/roles.ts @@ -16,7 +16,7 @@ * under the License. */ -import { CreateGroupMemberInterface } from "@wso2is/admin.groups.v1/models"; +import { CreateGroupMemberInterface } from "@wso2is/admin.groups.v1/models/groups"; import { SchemaAttributeValueInterface } from "@wso2is/admin.users.v1/models"; import { RolesInterface } from "@wso2is/core/models"; import { ScopeInterface } from "./apiResources"; diff --git a/features/admin.roles.v2/pages/create-role-wizard.tsx b/features/admin.roles.v2/pages/create-role-wizard.tsx index d8ebb9dd75e..f27d320a5df 100644 --- a/features/admin.roles.v2/pages/create-role-wizard.tsx +++ b/features/admin.roles.v2/pages/create-role-wizard.tsx @@ -34,6 +34,7 @@ import { createRole } from "../api/roles"; import { RoleBasics } from "../components/wizard-updated/role-basics"; import { RolePermissionsList } from "../components/wizard-updated/role-permissions/role-permissions"; import { RoleAudienceTypes } from "../constants"; +import { ScopeInterface } from "../models/apiResources"; import { CreateRoleFormData, CreateRoleInterface, @@ -41,8 +42,7 @@ import { CreateRoleStateInterface, CreateRoleStepsFormTypes, SelectedPermissionsInterface -} from "../models"; -import { ScopeInterface } from "../models/apiResources"; +} from "../models/roles"; /** * Interface which captures create role props. diff --git a/features/admin.roles.v2/utils/role-management-utils.ts b/features/admin.roles.v2/utils/role-management-utils.ts index 729d612c840..05146ccf03d 100644 --- a/features/admin.roles.v2/utils/role-management-utils.ts +++ b/features/admin.roles.v2/utils/role-management-utils.ts @@ -27,7 +27,8 @@ import { AxiosResponse } from "axios"; import isEmpty from "lodash-es/isEmpty"; import { getPermissionList, searchRoleList } from "../api"; import { generatePermissionTree } from "../components/role-utils"; -import { PermissionObject, SearchRoleInterface, TreeNode } from "../models"; +import { PermissionObject,TreeNode } from "../models/permission"; +import { SearchRoleInterface } from "../models/roles"; /** * Utility class for roles operations. diff --git a/features/admin.users.v1/api/users.ts b/features/admin.users.v1/api/users.ts index d39afb88b86..59db54eeb74 100644 --- a/features/admin.users.v1/api/users.ts +++ b/features/admin.users.v1/api/users.ts @@ -23,8 +23,8 @@ import useRequest, { RequestResultInterface } from "@wso2is/admin.core.v1/hooks/use-request"; import { store } from "@wso2is/admin.core.v1/store"; -import { PatchGroupDataInterface } from "@wso2is/admin.groups.v1"; -import { PatchRoleDataInterface } from "@wso2is/admin.roles.v2/models"; +import { PatchGroupDataInterface } from "@wso2is/admin.groups.v1/models/groups"; +import { PatchRoleDataInterface } from "@wso2is/admin.roles.v2/models/roles"; import { IdentityAppsApiException } from "@wso2is/core/exceptions"; import { HttpMethods, ProfileInfoInterface } from "@wso2is/core/models"; import { AxiosError, AxiosResponse } from "axios"; diff --git a/features/admin.users.v1/components/guests/models/invite.ts b/features/admin.users.v1/components/guests/models/invite.ts index 8599101f93b..4b442292388 100644 --- a/features/admin.users.v1/components/guests/models/invite.ts +++ b/features/admin.users.v1/components/guests/models/invite.ts @@ -16,7 +16,7 @@ * under the License. */ -import { GroupsInterface } from "@wso2is/admin.groups.v1"; +import { GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { ReactNode } from "react"; import { InviteUserStatus } from "../../../models/user"; diff --git a/features/admin.users.v1/components/guests/pages/invite-parent-org-user.tsx b/features/admin.users.v1/components/guests/pages/invite-parent-org-user.tsx index f43d5dfdbb9..acf672082e6 100644 --- a/features/admin.users.v1/components/guests/pages/invite-parent-org-user.tsx +++ b/features/admin.users.v1/components/guests/pages/invite-parent-org-user.tsx @@ -20,7 +20,8 @@ import { AutocompleteRenderGetTagProps } from "@oxygen-ui/react/Autocomplete"; import Chip from "@oxygen-ui/react/Chip"; import Typography from "@oxygen-ui/react/Typography"; import { userstoresConfig } from "@wso2is/admin.extensions.v1/configs/userstores"; -import { GroupsInterface, useGroupList } from "@wso2is/admin.groups.v1"; +import { useGroupList } from "@wso2is/admin.groups.v1/api"; +import { GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { AutocompleteFieldAdapter, FinalForm, FinalFormField } from "@wso2is/form"; import { Hint, Message } from "@wso2is/react-components"; diff --git a/features/admin.users.v1/components/user-groups-edit.tsx b/features/admin.users.v1/components/user-groups-edit.tsx index b8da29997ea..e871a22723b 100644 --- a/features/admin.users.v1/components/user-groups-edit.tsx +++ b/features/admin.users.v1/components/user-groups-edit.tsx @@ -19,7 +19,7 @@ import { AppState, getEmptyPlaceholderIllustrations, updateResources } from "@wso2is/admin.core.v1"; import { userstoresConfig } from "@wso2is/admin.extensions.v1/configs/userstores"; import { useGroupList } from "@wso2is/admin.groups.v1/api"; -import { GroupsInterface, GroupsMemberInterface } from "@wso2is/admin.groups.v1/models"; +import { GroupsInterface, GroupsMemberInterface } from "@wso2is/admin.groups.v1/models/groups"; import { APPLICATION_DOMAIN, INTERNAL_DOMAIN } from "@wso2is/admin.roles.v2/constants"; import { PRIMARY_USERSTORE } from "@wso2is/admin.userstores.v1/constants"; import { diff --git a/features/admin.users.v1/components/wizard/add-consumer-user-wizard.tsx b/features/admin.users.v1/components/wizard/add-consumer-user-wizard.tsx index 0fedfc200b9..e5a63b3a091 100644 --- a/features/admin.users.v1/components/wizard/add-consumer-user-wizard.tsx +++ b/features/admin.users.v1/components/wizard/add-consumer-user-wizard.tsx @@ -20,11 +20,13 @@ import { UserBasicInterface } from "@wso2is/admin.core.v1"; import { SCIMConfigs } from "@wso2is/admin.extensions.v1/configs/scim"; import { userstoresConfig } from "@wso2is/admin.extensions.v1/configs/userstores"; import { - GroupsInterface, - PatchGroupDataInterface, getGroupList, updateGroupDetails -} from "@wso2is/admin.groups.v1"; +} from "@wso2is/admin.groups.v1/api/groups"; +import { + GroupsInterface, + PatchGroupDataInterface +} from "@wso2is/admin.groups.v1/models/groups"; import { addUser } from "@wso2is/admin.users.v1/api/users"; import { getUserWizardStepIcons } from "@wso2is/admin.users.v1/configs/ui"; import { diff --git a/features/admin.users.v1/components/wizard/add-user-wizard.tsx b/features/admin.users.v1/components/wizard/add-user-wizard.tsx index d1fb5db4133..2c7122946ec 100644 --- a/features/admin.users.v1/components/wizard/add-user-wizard.tsx +++ b/features/admin.users.v1/components/wizard/add-user-wizard.tsx @@ -22,7 +22,7 @@ import { administratorConfig } from "@wso2is/admin.extensions.v1/configs/adminis import { SCIMConfigs } from "@wso2is/admin.extensions.v1/configs/scim"; import { userstoresConfig } from "@wso2is/admin.extensions.v1/configs/userstores"; import { updateGroupDetails, useGroupList } from "@wso2is/admin.groups.v1/api"; -import { GroupsInterface } from "@wso2is/admin.groups.v1/models"; +import { GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; import { getAUserStore, useUserStores } from "@wso2is/admin.userstores.v1/api"; import { UserStoreManagementConstants } from "@wso2is/admin.userstores.v1/constants"; diff --git a/features/admin.users.v1/components/wizard/bulk-import-user-wizard.tsx b/features/admin.users.v1/components/wizard/bulk-import-user-wizard.tsx index c5bb57e0ce3..c8f59b771d9 100644 --- a/features/admin.users.v1/components/wizard/bulk-import-user-wizard.tsx +++ b/features/admin.users.v1/components/wizard/bulk-import-user-wizard.tsx @@ -42,9 +42,9 @@ import { } from "@wso2is/admin.core.v1"; import { userConfig, userstoresConfig } from "@wso2is/admin.extensions.v1/configs"; import { getGroupList, useGroupList } from "@wso2is/admin.groups.v1/api"; -import { GroupsInterface } from "@wso2is/admin.groups.v1/models"; +import { GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; -import { PatchRoleDataInterface } from "@wso2is/admin.roles.v2/models"; +import { PatchRoleDataInterface } from "@wso2is/admin.roles.v2/models/roles"; import { getAUserStore, getUserStores } from "@wso2is/admin.userstores.v1/api"; import { PRIMARY_USERSTORE, UserStoreManagementConstants } from "@wso2is/admin.userstores.v1/constants"; import { useValidationConfigData } from "@wso2is/admin.validation.v1/api"; diff --git a/features/admin.users.v1/models/endpoints.ts b/features/admin.users.v1/models/endpoints.ts index af93bc3dd82..5afd1ed4ddb 100644 --- a/features/admin.users.v1/models/endpoints.ts +++ b/features/admin.users.v1/models/endpoints.ts @@ -16,7 +16,7 @@ * under the License. */ -import { PatchRoleDataInterface } from "@wso2is/admin.roles.v2/models"; +import { PatchRoleDataInterface } from "@wso2is/admin.roles.v2/models/roles"; import { UserDetailsInterface } from "./user"; /** diff --git a/features/admin.users.v1/models/user.ts b/features/admin.users.v1/models/user.ts index 334880dac89..c44f841a014 100644 --- a/features/admin.users.v1/models/user.ts +++ b/features/admin.users.v1/models/user.ts @@ -19,7 +19,7 @@ // Keep statement as this to avoid cyclic dependency. Do not import from config index. import { UserRoleInterface } from "@wso2is/admin.core.v1"; import { SCIMConfigs } from "@wso2is/admin.extensions.v1/configs/scim"; -import { GroupsInterface, GroupsMemberInterface } from "@wso2is/admin.groups.v1"; +import { GroupsInterface, GroupsMemberInterface } from "@wso2is/admin.groups.v1/models/groups"; import { LinkInterface, MultiValueAttributeInterface, NameInterface, RolesInterface } from "@wso2is/core/models"; import React, { ReactElement } from "react"; import { BulkImportResponseOperationTypes, BulkUserImportStatus } from "../constants"; diff --git a/features/admin.validation.v1/components/password-expiry-rule-list.tsx b/features/admin.validation.v1/components/password-expiry-rule-list.tsx index 3fa51525e2c..57b10911a0d 100644 --- a/features/admin.validation.v1/components/password-expiry-rule-list.tsx +++ b/features/admin.validation.v1/components/password-expiry-rule-list.tsx @@ -31,7 +31,7 @@ import Select from "@oxygen-ui/react/Select"; import TextField from "@oxygen-ui/react/TextField"; import { ChevronDownIcon, ChevronUpIcon, PlusIcon, TrashIcon } from "@oxygen-ui/react-icons"; import { userstoresConfig } from "@wso2is/admin.extensions.v1"; -import { GroupsInterface } from "@wso2is/admin.groups.v1"; +import { GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { RoleAudienceTypes } from "@wso2is/admin.roles.v2/constants"; import { GovernanceConnectorConstants diff --git a/modules/forms/src/components/index.ts b/modules/forms/src/components/index.ts index 51607c6e4e1..3cb5788219b 100644 --- a/modules/forms/src/components/index.ts +++ b/modules/forms/src/components/index.ts @@ -20,5 +20,6 @@ export * from "./field"; export * from "./group-fields"; export * from "./syntactic-sugars"; export * from "./meta-file-picker"; + export { DynamicField, KeyValue } from "./dynamic-field"; From 9f1a60d9ad536c62baabd5caa16faf2f74468a7c Mon Sep 17 00:00:00 2001 From: Pavindu Lakshan Date: Sat, 28 Dec 2024 01:02:04 +0530 Subject: [PATCH 56/59] Address eslint warnings --- features/admin.roles.v2/components/role-utils.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/admin.roles.v2/components/role-utils.ts b/features/admin.roles.v2/components/role-utils.ts index c19152033ef..bc73526bea9 100644 --- a/features/admin.roles.v2/components/role-utils.ts +++ b/features/admin.roles.v2/components/role-utils.ts @@ -25,13 +25,13 @@ import { PermissionObject, TreeNode } from "../models/permission"; * @param pathComponents - Permission Path Array * @param permissionTreeArray - Permission Tree array for reference * - * @returns {TreeNode[]} - Permission array with tree structure + * @returns Permission array with tree structure */ export const generatePermissionTree = (permissioObject: PermissionObject, pathComponents: string[], permissionTreeArray: TreeNode[]): TreeNode[] => { - const component = pathComponents.shift(); - let permissionComponent = permissionTreeArray.find((permission: TreeNode) => { + const component: string = pathComponents.shift(); + let permissionComponent: TreeNode = permissionTreeArray.find((permission: TreeNode) => { return permission.name === component; }); From e7d200f21f5a9d6113dba7959b07a0b96bc8d118 Mon Sep 17 00:00:00 2001 From: Pavindu Lakshan Date: Sat, 28 Dec 2024 01:03:32 +0530 Subject: [PATCH 57/59] =?UTF-8?q?=F0=9F=A6=8B=20Add=20changeset?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/bright-rings-look.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/bright-rings-look.md diff --git a/.changeset/bright-rings-look.md b/.changeset/bright-rings-look.md new file mode 100644 index 00000000000..012cb332346 --- /dev/null +++ b/.changeset/bright-rings-look.md @@ -0,0 +1,11 @@ +--- +"@wso2is/admin.applications.v1": patch +"@wso2is/admin.validation.v1": patch +"@wso2is/admin.groups.v1": patch +"@wso2is/admin.roles.v2": patch +"@wso2is/admin.users.v1": patch +"@wso2is/admin.core.v1": patch +"@wso2is/forms": patch +--- + +Fix some circular dependencies From 9776cf28c309132338a701608caab10199e36247 Mon Sep 17 00:00:00 2001 From: Pavindu Lakshan Date: Thu, 9 Jan 2025 18:44:12 +0530 Subject: [PATCH 58/59] Fix import --- features/admin.core.v1/components/groups/assign-groups.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/admin.core.v1/components/groups/assign-groups.tsx b/features/admin.core.v1/components/groups/assign-groups.tsx index 404d22d443d..262a7317120 100644 --- a/features/admin.core.v1/components/groups/assign-groups.tsx +++ b/features/admin.core.v1/components/groups/assign-groups.tsx @@ -16,7 +16,7 @@ * under the License. */ -import { GroupsInterface } from "@wso2is/admin.groups.v1"; +import { GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { PRIMARY_USERSTORE } from "@wso2is/admin.userstores.v1/constants"; import { RolesInterface } from "@wso2is/core/models"; import { StringUtils } from "@wso2is/core/utils"; From e0c0b9ad97071ba9d32675e6bc8b809a637b406e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 10 Jan 2025 02:10:03 +0000 Subject: [PATCH 59/59] [WSO2 Release] [GitHub Action] [Release] [skip ci] update package versions --- .changeset/early-chairs-impress.md | 5 - .changeset/polite-queens-sleep.md | 5 - apps/console/CHANGELOG.md | 54 ++ apps/console/package.json | 98 +-- apps/myaccount/CHANGELOG.md | 8 + apps/myaccount/package.json | 6 +- features/admin.actions.v1/CHANGELOG.md | 9 + features/admin.actions.v1/package.json | 8 +- features/admin.administrators.v1/CHANGELOG.md | 17 + features/admin.administrators.v1/package.json | 24 +- .../CHANGELOG.md | 12 + .../package.json | 14 +- features/admin.api-resources.v1/CHANGELOG.md | 8 + features/admin.api-resources.v1/package.json | 6 +- features/admin.api-resources.v2/CHANGELOG.md | 8 + features/admin.api-resources.v2/package.json | 6 +- .../admin.application-roles.v1/CHANGELOG.md | 13 + .../admin.application-roles.v1/package.json | 16 +- .../CHANGELOG.md | 9 + .../package.json | 8 +- features/admin.applications.v1/CHANGELOG.md | 28 + features/admin.applications.v1/package.json | 46 +- .../CHANGELOG.md | 15 + .../package.json | 20 +- features/admin.authentication.v1/CHANGELOG.md | 11 + features/admin.authentication.v1/package.json | 12 +- features/admin.branding.ai.v1/CHANGELOG.md | 12 + features/admin.branding.ai.v1/package.json | 14 +- features/admin.branding.v1/CHANGELOG.md | 13 + features/admin.branding.v1/package.json | 16 +- features/admin.certificates.v1/CHANGELOG.md | 7 + features/admin.certificates.v1/package.json | 4 +- features/admin.claims.v1/CHANGELOG.md | 13 + features/admin.claims.v1/package.json | 16 +- features/admin.connections.v1/CHANGELOG.md | 20 + features/admin.connections.v1/package.json | 30 +- .../admin.console-settings.v1/CHANGELOG.md | 19 + .../admin.console-settings.v1/package.json | 28 +- features/admin.core.v1/CHANGELOG.md | 50 ++ features/admin.core.v1/package.json | 90 +- features/admin.email-and-sms.v1/CHANGELOG.md | 8 + features/admin.email-and-sms.v1/package.json | 6 +- .../admin.email-management.v1/CHANGELOG.md | 9 + .../admin.email-management.v1/package.json | 8 +- .../admin.email-providers.v1/CHANGELOG.md | 7 + .../admin.email-providers.v1/package.json | 4 +- .../admin.email-templates.v1/CHANGELOG.md | 8 + .../admin.email-templates.v1/package.json | 6 +- features/admin.extensions.v1/CHANGELOG.md | 25 + features/admin.extensions.v1/package.json | 40 +- features/admin.feature-gate.v1/CHANGELOG.md | 8 + features/admin.feature-gate.v1/package.json | 6 +- features/admin.groups.v1/CHANGELOG.md | 13 + features/admin.groups.v1/package.json | 16 +- features/admin.home.v1/CHANGELOG.md | 11 + features/admin.home.v1/package.json | 12 +- .../admin.identity-providers.v1/CHANGELOG.md | 16 + .../admin.identity-providers.v1/package.json | 22 +- .../CHANGELOG.md | 11 + .../package.json | 12 +- features/admin.impersonation.v1/CHANGELOG.md | 8 + features/admin.impersonation.v1/package.json | 6 +- features/admin.login-flow.ai.v1/CHANGELOG.md | 13 + features/admin.login-flow.ai.v1/package.json | 16 +- features/admin.logs.v1/CHANGELOG.md | 7 + features/admin.logs.v1/package.json | 4 +- features/admin.oidc-scopes.v1/CHANGELOG.md | 9 + features/admin.oidc-scopes.v1/package.json | 8 +- features/admin.org-insights.v1/CHANGELOG.md | 7 + features/admin.org-insights.v1/package.json | 4 +- .../CHANGELOG.md | 8 + .../package.json | 6 +- features/admin.organizations.v1/CHANGELOG.md | 17 + features/admin.organizations.v1/package.json | 24 +- .../admin.private-key-jwt.v1/CHANGELOG.md | 8 + .../admin.private-key-jwt.v1/package.json | 6 +- features/admin.provisioning.v1/CHANGELOG.md | 10 + features/admin.provisioning.v1/package.json | 10 +- .../CHANGELOG.md | 7 + .../package.json | 4 +- .../admin.remote-userstores.v1/CHANGELOG.md | 13 + .../admin.remote-userstores.v1/package.json | 16 +- features/admin.roles.v1/CHANGELOG.md | 12 + features/admin.roles.v1/package.json | 14 +- features/admin.roles.v2/CHANGELOG.md | 20 + features/admin.roles.v2/package.json | 26 +- .../admin.saml2-configuration.v1/CHANGELOG.md | 7 + .../admin.saml2-configuration.v1/package.json | 4 +- features/admin.secrets.v1/CHANGELOG.md | 7 + features/admin.secrets.v1/package.json | 4 +- .../CHANGELOG.md | 14 + .../package.json | 18 +- .../admin.session-management.v1/CHANGELOG.md | 7 + .../admin.session-management.v1/package.json | 4 +- features/admin.sms-providers.v1/CHANGELOG.md | 9 + features/admin.sms-providers.v1/package.json | 8 +- features/admin.sms-templates.v1/CHANGELOG.md | 9 + features/admin.sms-templates.v1/package.json | 8 +- features/admin.subscription.v1/CHANGELOG.md | 8 + features/admin.subscription.v1/package.json | 6 +- features/admin.template-core.v1/CHANGELOG.md | 7 + features/admin.template-core.v1/package.json | 4 +- features/admin.tenants.v1/CHANGELOG.md | 12 + features/admin.tenants.v1/package.json | 14 +- .../admin.username-validation.v1/CHANGELOG.md | 9 + .../admin.username-validation.v1/package.json | 8 +- features/admin.users.v1/CHANGELOG.md | 20 + features/admin.users.v1/package.json | 30 +- features/admin.userstores.v1/CHANGELOG.md | 9 + features/admin.userstores.v1/package.json | 8 +- features/admin.validation.v1/CHANGELOG.md | 13 + features/admin.validation.v1/package.json | 16 +- .../admin.workflow-approvals.v1/CHANGELOG.md | 7 + .../admin.workflow-approvals.v1/package.json | 4 +- .../admin.wsfed-configuration.v1/CHANGELOG.md | 7 + .../admin.wsfed-configuration.v1/package.json | 4 +- features/common.ai.v1/CHANGELOG.md | 7 + features/common.ai.v1/package.json | 4 +- features/common.branding.v1/CHANGELOG.md | 8 + features/common.branding.v1/package.json | 6 +- identity-apps-core/CHANGELOG.md | 6 + identity-apps-core/package.json | 2 +- pnpm-lock.yaml | 770 +++++++++--------- 123 files changed, 1577 insertions(+), 840 deletions(-) delete mode 100644 .changeset/early-chairs-impress.md delete mode 100644 .changeset/polite-queens-sleep.md diff --git a/.changeset/early-chairs-impress.md b/.changeset/early-chairs-impress.md deleted file mode 100644 index 38182ccbcb6..00000000000 --- a/.changeset/early-chairs-impress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wso2is/identity-apps-core": patch ---- - -Remove unnecessary org qualified callback url regex for portal apps diff --git a/.changeset/polite-queens-sleep.md b/.changeset/polite-queens-sleep.md deleted file mode 100644 index fafaa27908b..00000000000 --- a/.changeset/polite-queens-sleep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wso2is/admin.roles.v2": patch ---- - -Fix issues in Application Role audience switching diff --git a/apps/console/CHANGELOG.md b/apps/console/CHANGELOG.md index c17e56e7442..0c2dedcc5c5 100644 --- a/apps/console/CHANGELOG.md +++ b/apps/console/CHANGELOG.md @@ -1,5 +1,59 @@ # @wso2is/console +## 2.36.16 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.administrators.v1@2.29.77 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.console-settings.v1@2.25.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.alternative-login-identifier.v1@1.5.77 + - @wso2is/admin.application-templates.v1@1.4.77 + - @wso2is/admin.home.v1@1.6.77 + - @wso2is/admin.oidc-scopes.v1@2.25.77 + - @wso2is/admin.remote-userstores.v1@1.7.33 + - @wso2is/admin.username-validation.v1@1.5.77 + - @wso2is/admin.identity-verification-providers.v1@2.27.77 + - @wso2is/admin.sms-providers.v1@2.25.77 + - @wso2is/admin.actions.v1@1.7.34 + - @wso2is/admin.api-resources.v1@2.25.77 + - @wso2is/admin.api-resources.v2@2.25.77 + - @wso2is/admin.authentication.v1@2.25.77 + - @wso2is/admin.branding.v1@2.27.50 + - @wso2is/admin.certificates.v1@2.25.77 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.email-and-sms.v1@2.25.77 + - @wso2is/admin.email-management.v1@2.25.77 + - @wso2is/admin.email-providers.v1@2.25.77 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.impersonation.v1@1.6.77 + - @wso2is/admin.logs.v1@1.5.78 + - @wso2is/admin.org-insights.v1@2.25.77 + - @wso2is/admin.organization-discovery.v1@2.25.77 + - @wso2is/admin.private-key-jwt.v1@2.25.77 + - @wso2is/admin.remote-repository-configuration.v1@2.25.77 + - @wso2is/admin.roles.v1@2.25.77 + - @wso2is/admin.saml2-configuration.v1@2.25.77 + - @wso2is/admin.secrets.v1@2.25.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.session-management.v1@2.25.77 + - @wso2is/admin.sms-templates.v1@1.0.76 + - @wso2is/admin.subscription.v1@1.5.77 + - @wso2is/admin.template-core.v1@1.5.31 + - @wso2is/admin.tenants.v1@2.28.51 + - @wso2is/admin.userstores.v1@2.26.36 + - @wso2is/admin.workflow-approvals.v1@2.25.77 + - @wso2is/admin.wsfed-configuration.v1@2.25.77 + ## 2.36.15 ### Patch Changes diff --git a/apps/console/package.json b/apps/console/package.json index abe80714285..0ef14595ea2 100644 --- a/apps/console/package.json +++ b/apps/console/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/console", - "version": "2.36.15", + "version": "2.36.16", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -47,53 +47,53 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.actions.v1": "^1.7.33", - "@wso2is/admin.administrators.v1": "^2.29.76", - "@wso2is/admin.alternative-login-identifier.v1": "^1.5.76", - "@wso2is/admin.api-resources.v1": "^2.25.76", - "@wso2is/admin.api-resources.v2": "^2.25.76", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.actions.v1": "^1.7.34", + "@wso2is/admin.administrators.v1": "^2.29.77", + "@wso2is/admin.alternative-login-identifier.v1": "^1.5.77", + "@wso2is/admin.api-resources.v1": "^2.25.77", + "@wso2is/admin.api-resources.v2": "^2.25.77", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.authentication.v1": "^2.25.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.branding.v1": "^2.27.49", - "@wso2is/admin.certificates.v1": "^2.25.76", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.console-settings.v1": "^2.25.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.email-and-sms.v1": "^2.25.76", - "@wso2is/admin.email-management.v1": "^2.25.76", - "@wso2is/admin.email-providers.v1": "^2.25.76", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.home.v1": "^1.6.76", - "@wso2is/admin.identity-verification-providers.v1": "^2.27.76", - "@wso2is/admin.logs.v1": "^1.5.77", - "@wso2is/admin.oidc-scopes.v1": "^2.25.76", - "@wso2is/admin.org-insights.v1": "^2.25.76", - "@wso2is/admin.organization-discovery.v1": "^2.25.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.private-key-jwt.v1": "^2.25.76", - "@wso2is/admin.remote-repository-configuration.v1": "^2.25.76", - "@wso2is/admin.impersonation.v1": "^1.6.76", - "@wso2is/admin.remote-userstores.v1": "^1.7.32", - "@wso2is/admin.roles.v1": "^2.25.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.saml2-configuration.v1": "^2.25.76", - "@wso2is/admin.secrets.v1": "^2.25.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.session-management.v1": "^2.25.76", - "@wso2is/admin.sms-providers.v1": "^2.25.76", - "@wso2is/admin.sms-templates.v1": "^1.0.75", - "@wso2is/admin.subscription.v1": "^1.5.76", - "@wso2is/admin.tenants.v1": "^2.28.50", - "@wso2is/admin.username-validation.v1": "^1.5.76", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.validation.v1": "^2.27.14", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.workflow-approvals.v1": "^2.25.76", - "@wso2is/admin.wsfed-configuration.v1": "^2.25.76", + "@wso2is/admin.branding.v1": "^2.27.50", + "@wso2is/admin.certificates.v1": "^2.25.77", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.console-settings.v1": "^2.25.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.email-and-sms.v1": "^2.25.77", + "@wso2is/admin.email-management.v1": "^2.25.77", + "@wso2is/admin.email-providers.v1": "^2.25.77", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.home.v1": "^1.6.77", + "@wso2is/admin.identity-verification-providers.v1": "^2.27.77", + "@wso2is/admin.logs.v1": "^1.5.78", + "@wso2is/admin.oidc-scopes.v1": "^2.25.77", + "@wso2is/admin.org-insights.v1": "^2.25.77", + "@wso2is/admin.organization-discovery.v1": "^2.25.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.private-key-jwt.v1": "^2.25.77", + "@wso2is/admin.remote-repository-configuration.v1": "^2.25.77", + "@wso2is/admin.impersonation.v1": "^1.6.77", + "@wso2is/admin.remote-userstores.v1": "^1.7.33", + "@wso2is/admin.roles.v1": "^2.25.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.saml2-configuration.v1": "^2.25.77", + "@wso2is/admin.secrets.v1": "^2.25.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.session-management.v1": "^2.25.77", + "@wso2is/admin.sms-providers.v1": "^2.25.77", + "@wso2is/admin.sms-templates.v1": "^1.0.76", + "@wso2is/admin.subscription.v1": "^1.5.77", + "@wso2is/admin.tenants.v1": "^2.28.51", + "@wso2is/admin.username-validation.v1": "^1.5.77", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.validation.v1": "^2.27.15", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.workflow-approvals.v1": "^2.25.77", + "@wso2is/admin.wsfed-configuration.v1": "^2.25.77", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", @@ -140,8 +140,8 @@ "styled-components": "^4.4.1", "swr": "^2.0.0", "uuid": "^8.3.0", - "@wso2is/admin.application-templates.v1": "^1.4.76", - "@wso2is/admin.template-core.v1": "^1.5.30" + "@wso2is/admin.application-templates.v1": "^1.4.77", + "@wso2is/admin.template-core.v1": "^1.5.31" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", diff --git a/apps/myaccount/CHANGELOG.md b/apps/myaccount/CHANGELOG.md index 767d03fcbdf..b61c9d7e746 100644 --- a/apps/myaccount/CHANGELOG.md +++ b/apps/myaccount/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/myaccount +## 2.13.56 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/common.branding.v1@2.25.50 + ## 2.13.55 ### Patch Changes diff --git a/apps/myaccount/package.json b/apps/myaccount/package.json index f3471bc3a4d..9dca64fbb54 100644 --- a/apps/myaccount/package.json +++ b/apps/myaccount/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/myaccount", - "version": "2.13.55", + "version": "2.13.56", "description": "WSO2 Identity Server My Account", "author": "WSO2", "license": "Apache-2.0", @@ -42,8 +42,8 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/common.branding.v1": "^2.25.49", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/common.branding.v1": "^2.25.50", "@wso2is/core": "^2.5.5", "@wso2is/forms": "^2.3.9", "@wso2is/i18n": "^2.14.6", diff --git a/features/admin.actions.v1/CHANGELOG.md b/features/admin.actions.v1/CHANGELOG.md index 210baf09e60..03c04d7622b 100644 --- a/features/admin.actions.v1/CHANGELOG.md +++ b/features/admin.actions.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.actions.v1 +## 1.7.34 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.feature-gate.v1@1.4.77 + ## 1.7.33 ### Patch Changes diff --git a/features/admin.actions.v1/package.json b/features/admin.actions.v1/package.json index cfa730438e7..ed22ee7da29 100644 --- a/features/admin.actions.v1/package.json +++ b/features/admin.actions.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.actions.v1", - "version": "1.7.33", + "version": "1.7.34", "description": "UI components and utility methods for WSO2 Identity Server Actions", "author": "WSO2", "license": "Apache-2.0", @@ -11,9 +11,9 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", "@wso2is/core": "^2.5.5", "@wso2is/form": "^2.6.10", "@wso2is/i18n": "^2.14.6", diff --git a/features/admin.administrators.v1/CHANGELOG.md b/features/admin.administrators.v1/CHANGELOG.md index e278d37d0ca..c958e0a1534 100644 --- a/features/admin.administrators.v1/CHANGELOG.md +++ b/features/admin.administrators.v1/CHANGELOG.md @@ -1,5 +1,22 @@ # @wso2is/admin.administrators.v1 +## 2.29.77 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.remote-userstores.v1@1.7.33 + - @wso2is/admin.authentication.v1@2.25.77 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.tenants.v1@2.28.51 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.29.76 ### Patch Changes diff --git a/features/admin.administrators.v1/package.json b/features/admin.administrators.v1/package.json index 47043be4c1a..3b21119eb5d 100644 --- a/features/admin.administrators.v1/package.json +++ b/features/admin.administrators.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.administrators.v1", - "version": "2.29.76", + "version": "2.29.77", "description": "Manage users who have access an organization's administrative operations", "author": "WSO2", "license": "Apache-2.0", @@ -32,17 +32,17 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.authentication.v1": "workspace:^2.25.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.remote-userstores.v1": "^1.7.32", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.tenants.v1": "^2.28.50", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.authentication.v1": "workspace:^2.25.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.remote-userstores.v1": "^1.7.33", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.tenants.v1": "^2.28.51", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", "@wso2is/core": "^2.5.5", "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", diff --git a/features/admin.alternative-login-identifier.v1/CHANGELOG.md b/features/admin.alternative-login-identifier.v1/CHANGELOG.md index 189249288e1..7f013457004 100644 --- a/features/admin.alternative-login-identifier.v1/CHANGELOG.md +++ b/features/admin.alternative-login-identifier.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.alternative-login-identifier.v1 +## 1.5.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.server-configurations.v1@2.32.2 + ## 1.5.76 ### Patch Changes diff --git a/features/admin.alternative-login-identifier.v1/package.json b/features/admin.alternative-login-identifier.v1/package.json index d6060ccd8fe..d31f315dd81 100644 --- a/features/admin.alternative-login-identifier.v1/package.json +++ b/features/admin.alternative-login-identifier.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.alternative-login-identifier.v1", - "version": "1.5.76", + "version": "1.5.77", "description": "Configure alternative login identifiers and allow users to use username or configured login identifier in login and recovery flows", "author": "WSO2", "license": "Apache-2.0", @@ -31,12 +31,12 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/form": "^2.6.10", "@wso2is/react-components": "^2.8.17", diff --git a/features/admin.api-resources.v1/CHANGELOG.md b/features/admin.api-resources.v1/CHANGELOG.md index 6f8ed2ad42d..75887932959 100644 --- a/features/admin.api-resources.v1/CHANGELOG.md +++ b/features/admin.api-resources.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.api-resources.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.api-resources.v1/package.json b/features/admin.api-resources.v1/package.json index 7c35a17c896..4b3d109915d 100644 --- a/features/admin.api-resources.v1/package.json +++ b/features/admin.api-resources.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.api-resources.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -20,8 +20,8 @@ "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", "@wso2is/react-components": "^2.8.17", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", "axios": "^0.19.2", "i18next": "^21.9.1", "react-helmet": "^5.2.1", diff --git a/features/admin.api-resources.v2/CHANGELOG.md b/features/admin.api-resources.v2/CHANGELOG.md index cfc64cc9d0b..5f39e323870 100644 --- a/features/admin.api-resources.v2/CHANGELOG.md +++ b/features/admin.api-resources.v2/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.api-resources.v2 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.api-resources.v2/package.json b/features/admin.api-resources.v2/package.json index 42ffd54df72..7cc42fafdec 100644 --- a/features/admin.api-resources.v2/package.json +++ b/features/admin.api-resources.v2/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.api-resources.v2", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,8 +21,8 @@ "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", "@wso2is/react-components": "^2.8.17", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.organizations.v1": "^2.26.77", "axios": "^0.19.2", "i18next": "^21.9.1", "node-forge": "^0.10.0", diff --git a/features/admin.application-roles.v1/CHANGELOG.md b/features/admin.application-roles.v1/CHANGELOG.md index ceb6e878745..2144cf6ef75 100644 --- a/features/admin.application-roles.v1/CHANGELOG.md +++ b/features/admin.application-roles.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.application-roles.v1 +## 2.26.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.26.76 ### Patch Changes diff --git a/features/admin.application-roles.v1/package.json b/features/admin.application-roles.v1/package.json index a1ee3bcc748..34b1d06ec2a 100644 --- a/features/admin.application-roles.v1/package.json +++ b/features/admin.application-roles.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.application-roles.v1", - "version": "2.26.76", + "version": "2.26.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -9,13 +9,13 @@ "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", "@wso2is/react-components": "^2.8.17", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.identity-providers.v1": "^2.26.77", "axios": "^0.19.2", "i18next": "^21.9.1", "lodash-es": "^4.17.21", diff --git a/features/admin.application-templates.v1/CHANGELOG.md b/features/admin.application-templates.v1/CHANGELOG.md index 4e645f19721..d27f061db39 100644 --- a/features/admin.application-templates.v1/CHANGELOG.md +++ b/features/admin.application-templates.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.application-templates.v1 +## 1.4.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.template-core.v1@1.5.31 + ## 1.4.76 ### Patch Changes diff --git a/features/admin.application-templates.v1/package.json b/features/admin.application-templates.v1/package.json index a7cb1e677c5..d41296f0fb1 100644 --- a/features/admin.application-templates.v1/package.json +++ b/features/admin.application-templates.v1/package.json @@ -1,14 +1,14 @@ { "private": true, "name": "@wso2is/admin.application-templates.v1", - "version": "1.4.76", + "version": "1.4.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", "dependencies": { - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.template-core.v1": "^1.5.30" + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.template-core.v1": "^1.5.31" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", diff --git a/features/admin.applications.v1/CHANGELOG.md b/features/admin.applications.v1/CHANGELOG.md index 1ca2693dbeb..26088170245 100644 --- a/features/admin.applications.v1/CHANGELOG.md +++ b/features/admin.applications.v1/CHANGELOG.md @@ -1,5 +1,33 @@ # @wso2is/admin.applications.v1 +## 2.30.77 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.console-settings.v1@2.25.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.application-templates.v1@1.4.77 + - @wso2is/admin.authentication-flow-builder.v1@2.24.77 + - @wso2is/admin.login-flow.ai.v1@2.26.77 + - @wso2is/admin.oidc-scopes.v1@2.25.77 + - @wso2is/admin.api-resources.v2@2.25.77 + - @wso2is/admin.branding.v1@2.27.50 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.impersonation.v1@1.6.77 + - @wso2is/admin.secrets.v1@2.25.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.template-core.v1@1.5.31 + - @wso2is/admin.userstores.v1@2.26.36 + - @wso2is/admin.wsfed-configuration.v1@2.25.77 + ## 2.30.76 ### Patch Changes diff --git a/features/admin.applications.v1/package.json b/features/admin.applications.v1/package.json index b3a7a0095a0..6c79c671a8d 100644 --- a/features/admin.applications.v1/package.json +++ b/features/admin.applications.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.applications.v1", - "version": "2.30.76", + "version": "2.30.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -17,27 +17,27 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.api-resources.v2": "^2.25.76", - "@wso2is/admin.authentication-flow-builder.v1": "^2.24.76", + "@wso2is/admin.api-resources.v2": "^2.25.77", + "@wso2is/admin.authentication-flow-builder.v1": "^2.24.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.branding.v1": "^2.27.49", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.console-settings.v1": "^2.25.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.login-flow.ai.v1": "^2.26.76", - "@wso2is/admin.oidc-scopes.v1": "^2.25.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.secrets.v1": "^2.25.76", - "@wso2is/admin.impersonation.v1": "^1.6.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.wsfed-configuration.v1": "^2.25.76", + "@wso2is/admin.branding.v1": "^2.27.50", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.console-settings.v1": "^2.25.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.login-flow.ai.v1": "^2.26.77", + "@wso2is/admin.oidc-scopes.v1": "^2.25.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.secrets.v1": "^2.25.77", + "@wso2is/admin.impersonation.v1": "^1.6.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.wsfed-configuration.v1": "^2.25.77", "@wso2is/core": "^2.5.5", "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", @@ -60,8 +60,8 @@ "redux": "^4.0.4", "semantic-ui-react": "^2.1.3", "slashes": "^2.0.2", - "@wso2is/admin.application-templates.v1": "^1.4.76", - "@wso2is/admin.template-core.v1": "^1.5.30" + "@wso2is/admin.application-templates.v1": "^1.4.77", + "@wso2is/admin.template-core.v1": "^1.5.31" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", diff --git a/features/admin.authentication-flow-builder.v1/CHANGELOG.md b/features/admin.authentication-flow-builder.v1/CHANGELOG.md index b16261aa7a4..2cf6f2ef118 100644 --- a/features/admin.authentication-flow-builder.v1/CHANGELOG.md +++ b/features/admin.authentication-flow-builder.v1/CHANGELOG.md @@ -1,5 +1,20 @@ # @wso2is/admin.authentication-flow-builder.v1 +## 2.24.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.login-flow.ai.v1@2.26.77 + - @wso2is/admin.secrets.v1@2.25.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + ## 2.24.76 ### Patch Changes diff --git a/features/admin.authentication-flow-builder.v1/package.json b/features/admin.authentication-flow-builder.v1/package.json index 381ab1f66b6..b4325fcadff 100644 --- a/features/admin.authentication-flow-builder.v1/package.json +++ b/features/admin.authentication-flow-builder.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.authentication-flow-builder.v1", - "version": "2.24.76", + "version": "2.24.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -18,15 +18,15 @@ "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/core": "^2.5.5", "@wso2is/react-components": "^2.8.17", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.login-flow.ai.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.secrets.v1": "^2.25.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.login-flow.ai.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.secrets.v1": "^2.25.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", "classnames": "^2.2.6", "axios": "^0.19.2", "i18next": "^21.9.1", diff --git a/features/admin.authentication.v1/CHANGELOG.md b/features/admin.authentication.v1/CHANGELOG.md index 10d4c64468f..0de2151b70a 100644 --- a/features/admin.authentication.v1/CHANGELOG.md +++ b/features/admin.authentication.v1/CHANGELOG.md @@ -1,5 +1,16 @@ # @wso2is/admin.authentication.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.authentication.v1/package.json b/features/admin.authentication.v1/package.json index 5fae6152ef6..9e8eac1937c 100644 --- a/features/admin.authentication.v1/package.json +++ b/features/admin.authentication.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.authentication.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -9,11 +9,11 @@ "@wso2is/core": "^2.5.5", "@wso2is/i18n": "^2.14.6", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", "axios": "^0.19.2", "lodash-es": "^4.17.21", "react-redux": "^7.2.9", diff --git a/features/admin.branding.ai.v1/CHANGELOG.md b/features/admin.branding.ai.v1/CHANGELOG.md index e0680586c07..15062f59f81 100644 --- a/features/admin.branding.ai.v1/CHANGELOG.md +++ b/features/admin.branding.ai.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.branding.ai.v1 +## 2.26.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.branding.v1@2.27.50 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/common.ai.v1@2.25.77 + - @wso2is/common.branding.v1@2.25.50 + ## 2.26.76 ### Patch Changes diff --git a/features/admin.branding.ai.v1/package.json b/features/admin.branding.ai.v1/package.json index 71160cfc804..54bd8d4d6e8 100644 --- a/features/admin.branding.ai.v1/package.json +++ b/features/admin.branding.ai.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.branding.ai.v1", - "version": "2.26.76", + "version": "2.26.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,12 +21,12 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.v1": "^2.27.49", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/common.ai.v1": "^2.25.76", - "@wso2is/common.branding.v1": "^2.25.49", + "@wso2is/admin.branding.v1": "^2.27.50", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/common.ai.v1": "^2.25.77", + "@wso2is/common.branding.v1": "^2.25.50", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.branding.v1/CHANGELOG.md b/features/admin.branding.v1/CHANGELOG.md index 85e1ef4935f..d2f41ab3edd 100644 --- a/features/admin.branding.v1/CHANGELOG.md +++ b/features/admin.branding.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.branding.v1 +## 2.27.50 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.branding.ai.v1@2.26.77 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/common.branding.v1@2.25.50 + ## 2.27.49 ### Patch Changes diff --git a/features/admin.branding.v1/package.json b/features/admin.branding.v1/package.json index 990a52ea61d..88cebc9dea4 100644 --- a/features/admin.branding.v1/package.json +++ b/features/admin.branding.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.branding.v1", - "version": "2.27.49", + "version": "2.27.50", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,13 +21,13 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.ai.v1": "^2.26.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/common.branding.v1": "^2.25.49", + "@wso2is/admin.branding.ai.v1": "^2.26.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/common.branding.v1": "^2.25.50", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.certificates.v1/CHANGELOG.md b/features/admin.certificates.v1/CHANGELOG.md index 7773091a33d..f4069952137 100644 --- a/features/admin.certificates.v1/CHANGELOG.md +++ b/features/admin.certificates.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.certificates.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.certificates.v1/package.json b/features/admin.certificates.v1/package.json index abb5f7f05bc..17404dcc503 100644 --- a/features/admin.certificates.v1/package.json +++ b/features/admin.certificates.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.certificates.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.claims.v1/CHANGELOG.md b/features/admin.claims.v1/CHANGELOG.md index dce35ae3f95..268feecf3dc 100644 --- a/features/admin.claims.v1/CHANGELOG.md +++ b/features/admin.claims.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.claims.v1 +## 2.26.36 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.26.35 ### Patch Changes diff --git a/features/admin.claims.v1/package.json b/features/admin.claims.v1/package.json index 09c7eaadc7a..1dc27619124 100644 --- a/features/admin.claims.v1/package.json +++ b/features/admin.claims.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.claims.v1", - "version": "2.26.35", + "version": "2.26.36", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,13 +21,13 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.connections.v1/CHANGELOG.md b/features/admin.connections.v1/CHANGELOG.md index bfee18f6ceb..242fcfbf921 100644 --- a/features/admin.connections.v1/CHANGELOG.md +++ b/features/admin.connections.v1/CHANGELOG.md @@ -1,5 +1,25 @@ # @wso2is/admin.connections.v1 +## 2.30.13 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.console-settings.v1@2.25.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.application-templates.v1@1.4.77 + - @wso2is/admin.identity-verification-providers.v1@2.27.77 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.template-core.v1@1.5.31 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.30.12 ### Patch Changes diff --git a/features/admin.connections.v1/package.json b/features/admin.connections.v1/package.json index 833607b630a..6d46e07d9fc 100644 --- a/features/admin.connections.v1/package.json +++ b/features/admin.connections.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.connections.v1", - "version": "2.30.12", + "version": "2.30.13", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,20 +21,20 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.console-settings.v1": "^2.25.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.identity-verification-providers.v1": "^2.27.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.template-core.v1": "^1.5.30", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.application-templates.v1": "^1.4.76", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.console-settings.v1": "^2.25.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.identity-verification-providers.v1": "^2.27.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.template-core.v1": "^1.5.31", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.application-templates.v1": "^1.4.77", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.console-settings.v1/CHANGELOG.md b/features/admin.console-settings.v1/CHANGELOG.md index 1a180a42363..7c2fc0885f2 100644 --- a/features/admin.console-settings.v1/CHANGELOG.md +++ b/features/admin.console-settings.v1/CHANGELOG.md @@ -1,5 +1,24 @@ # @wso2is/admin.console-settings.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.administrators.v1@2.29.77 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.login-flow.ai.v1@2.26.77 + - @wso2is/admin.authentication.v1@2.25.77 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.console-settings.v1/package.json b/features/admin.console-settings.v1/package.json index 6c409aa8fbe..8a81cb770b6 100644 --- a/features/admin.console-settings.v1/package.json +++ b/features/admin.console-settings.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.console-settings.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,19 +21,19 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.administrators.v1": "^2.29.76", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.authentication.v1": "^2.25.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.login-flow.ai.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.administrators.v1": "^2.29.77", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.authentication.v1": "^2.25.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.login-flow.ai.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.core.v1/CHANGELOG.md b/features/admin.core.v1/CHANGELOG.md index 7e899465a11..f60522c94cf 100644 --- a/features/admin.core.v1/CHANGELOG.md +++ b/features/admin.core.v1/CHANGELOG.md @@ -1,5 +1,55 @@ # @wso2is/admin.core.v1 +## 2.35.15 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.administrators.v1@2.29.77 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.console-settings.v1@2.25.77 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.application-templates.v1@1.4.77 + - @wso2is/admin.oidc-scopes.v1@2.25.77 + - @wso2is/admin.identity-verification-providers.v1@2.27.77 + - @wso2is/admin.sms-providers.v1@2.25.77 + - @wso2is/admin.actions.v1@1.7.34 + - @wso2is/admin.api-resources.v1@2.25.77 + - @wso2is/admin.api-resources.v2@2.25.77 + - @wso2is/admin.authentication.v1@2.25.77 + - @wso2is/admin.branding.v1@2.27.50 + - @wso2is/admin.certificates.v1@2.25.77 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.email-and-sms.v1@2.25.77 + - @wso2is/admin.email-management.v1@2.25.77 + - @wso2is/admin.email-providers.v1@2.25.77 + - @wso2is/admin.email-templates.v1@2.25.77 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.impersonation.v1@1.6.77 + - @wso2is/admin.org-insights.v1@2.25.77 + - @wso2is/admin.organization-discovery.v1@2.25.77 + - @wso2is/admin.private-key-jwt.v1@2.25.77 + - @wso2is/admin.remote-repository-configuration.v1@2.25.77 + - @wso2is/admin.roles.v1@2.25.77 + - @wso2is/admin.saml2-configuration.v1@2.25.77 + - @wso2is/admin.secrets.v1@2.25.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.session-management.v1@2.25.77 + - @wso2is/admin.sms-templates.v1@1.0.76 + - @wso2is/admin.subscription.v1@1.5.77 + - @wso2is/admin.template-core.v1@1.5.31 + - @wso2is/admin.tenants.v1@2.28.51 + - @wso2is/admin.userstores.v1@2.26.36 + - @wso2is/admin.workflow-approvals.v1@2.25.77 + - @wso2is/admin.wsfed-configuration.v1@2.25.77 + ## 2.35.14 ### Patch Changes diff --git a/features/admin.core.v1/package.json b/features/admin.core.v1/package.json index ff3eb57db1b..66119713069 100644 --- a/features/admin.core.v1/package.json +++ b/features/admin.core.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.core.v1", - "version": "2.35.14", + "version": "2.35.15", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -16,49 +16,49 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.actions.v1": "^1.7.33", - "@wso2is/admin.administrators.v1": "^2.29.76", - "@wso2is/admin.api-resources.v1": "^2.25.76", - "@wso2is/admin.api-resources.v2": "^2.25.76", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.actions.v1": "^1.7.34", + "@wso2is/admin.administrators.v1": "^2.29.77", + "@wso2is/admin.api-resources.v1": "^2.25.77", + "@wso2is/admin.api-resources.v2": "^2.25.77", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.authentication.v1": "^2.25.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.branding.v1": "^2.27.49", - "@wso2is/admin.certificates.v1": "^2.25.76", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.console-settings.v1": "^2.25.76", - "@wso2is/admin.email-and-sms.v1": "^2.25.76", - "@wso2is/admin.email-management.v1": "^2.25.76", - "@wso2is/admin.email-providers.v1": "^2.25.76", - "@wso2is/admin.email-templates.v1": "^2.25.76", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.identity-verification-providers.v1": "^2.27.76", - "@wso2is/admin.oidc-scopes.v1": "^2.25.76", - "@wso2is/admin.org-insights.v1": "^2.25.76", - "@wso2is/admin.organization-discovery.v1": "^2.25.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.private-key-jwt.v1": "^2.25.76", - "@wso2is/admin.impersonation.v1": "^1.6.76", - "@wso2is/admin.remote-repository-configuration.v1": "^2.25.76", - "@wso2is/admin.roles.v1": "^2.25.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.saml2-configuration.v1": "^2.25.76", - "@wso2is/admin.secrets.v1": "^2.25.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.session-management.v1": "^2.25.76", - "@wso2is/admin.sms-providers.v1": "^2.25.76", - "@wso2is/admin.sms-templates.v1": "^1.0.75", - "@wso2is/admin.subscription.v1": "^1.5.76", - "@wso2is/admin.tenants.v1": "^2.28.50", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.validation.v1": "^2.27.14", - "@wso2is/admin.workflow-approvals.v1": "^2.25.76", - "@wso2is/admin.wsfed-configuration.v1": "^2.25.76", + "@wso2is/admin.branding.v1": "^2.27.50", + "@wso2is/admin.certificates.v1": "^2.25.77", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.console-settings.v1": "^2.25.77", + "@wso2is/admin.email-and-sms.v1": "^2.25.77", + "@wso2is/admin.email-management.v1": "^2.25.77", + "@wso2is/admin.email-providers.v1": "^2.25.77", + "@wso2is/admin.email-templates.v1": "^2.25.77", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.identity-verification-providers.v1": "^2.27.77", + "@wso2is/admin.oidc-scopes.v1": "^2.25.77", + "@wso2is/admin.org-insights.v1": "^2.25.77", + "@wso2is/admin.organization-discovery.v1": "^2.25.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.private-key-jwt.v1": "^2.25.77", + "@wso2is/admin.impersonation.v1": "^1.6.77", + "@wso2is/admin.remote-repository-configuration.v1": "^2.25.77", + "@wso2is/admin.roles.v1": "^2.25.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.saml2-configuration.v1": "^2.25.77", + "@wso2is/admin.secrets.v1": "^2.25.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.session-management.v1": "^2.25.77", + "@wso2is/admin.sms-providers.v1": "^2.25.77", + "@wso2is/admin.sms-templates.v1": "^1.0.76", + "@wso2is/admin.subscription.v1": "^1.5.77", + "@wso2is/admin.tenants.v1": "^2.28.51", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.validation.v1": "^2.27.15", + "@wso2is/admin.workflow-approvals.v1": "^2.25.77", + "@wso2is/admin.wsfed-configuration.v1": "^2.25.77", "@wso2is/core": "^2.5.5", "@wso2is/forms": "^2.3.9", "@wso2is/i18n": "^2.14.6", @@ -90,8 +90,8 @@ "slashes": "^2.0.2", "styled-components": "^4.4.1", "swr": "^2.0.0", - "@wso2is/admin.application-templates.v1": "^1.4.76", - "@wso2is/admin.template-core.v1": "^1.5.30" + "@wso2is/admin.application-templates.v1": "^1.4.77", + "@wso2is/admin.template-core.v1": "^1.5.31" }, "peerDependencies": { "@asgardeo/auth-react": "^5.1.2", diff --git a/features/admin.email-and-sms.v1/CHANGELOG.md b/features/admin.email-and-sms.v1/CHANGELOG.md index 0fe625df1f3..ecc45a95e41 100644 --- a/features/admin.email-and-sms.v1/CHANGELOG.md +++ b/features/admin.email-and-sms.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.email-and-sms.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.email-and-sms.v1/package.json b/features/admin.email-and-sms.v1/package.json index 704d1d65faf..b2fe9147645 100644 --- a/features/admin.email-and-sms.v1/package.json +++ b/features/admin.email-and-sms.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-and-sms.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,8 +21,8 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.organizations.v1": "^2.26.77", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.email-management.v1/CHANGELOG.md b/features/admin.email-management.v1/CHANGELOG.md index bc5b6b649e6..5ad1354e69a 100644 --- a/features/admin.email-management.v1/CHANGELOG.md +++ b/features/admin.email-management.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.email-management.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.branding.v1@2.27.50 + - @wso2is/common.branding.v1@2.25.50 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.email-management.v1/package.json b/features/admin.email-management.v1/package.json index 2120ae79ffe..a8f19d79803 100644 --- a/features/admin.email-management.v1/package.json +++ b/features/admin.email-management.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-management.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,9 +21,9 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.v1": "^2.27.49", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/common.branding.v1": "^2.25.49", + "@wso2is/admin.branding.v1": "^2.27.50", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/common.branding.v1": "^2.25.50", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.email-providers.v1/CHANGELOG.md b/features/admin.email-providers.v1/CHANGELOG.md index e43f64f1dd2..970a708c67e 100644 --- a/features/admin.email-providers.v1/CHANGELOG.md +++ b/features/admin.email-providers.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.email-providers.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.email-providers.v1/package.json b/features/admin.email-providers.v1/package.json index 06bbebd1d96..691e7a0e6cc 100644 --- a/features/admin.email-providers.v1/package.json +++ b/features/admin.email-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-providers.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.email-templates.v1/CHANGELOG.md b/features/admin.email-templates.v1/CHANGELOG.md index a61da7436c8..6dfd040662b 100644 --- a/features/admin.email-templates.v1/CHANGELOG.md +++ b/features/admin.email-templates.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.email-templates.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.email-templates.v1/package.json b/features/admin.email-templates.v1/package.json index efaf87990a7..12a302a3d4a 100644 --- a/features/admin.email-templates.v1/package.json +++ b/features/admin.email-templates.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.email-templates.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,8 +21,8 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.organizations.v1": "^2.26.77", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.extensions.v1/CHANGELOG.md b/features/admin.extensions.v1/CHANGELOG.md index ca27329262d..781ae645c16 100644 --- a/features/admin.extensions.v1/CHANGELOG.md +++ b/features/admin.extensions.v1/CHANGELOG.md @@ -1,5 +1,30 @@ # @wso2is/admin.extensions.v1 +## 2.36.2 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.provisioning.v1@2.25.77 + - @wso2is/admin.remote-userstores.v1@1.7.33 + - @wso2is/admin.sms-providers.v1@2.25.77 + - @wso2is/admin.api-resources.v1@2.25.77 + - @wso2is/admin.authentication.v1@2.25.77 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.tenants.v1@2.28.51 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.36.1 ### Patch Changes diff --git a/features/admin.extensions.v1/package.json b/features/admin.extensions.v1/package.json index dfa2c8c3179..700825604e7 100644 --- a/features/admin.extensions.v1/package.json +++ b/features/admin.extensions.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.extensions.v1", - "version": "2.36.1", + "version": "2.36.2", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,26 +21,26 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.api-resources.v1": "^2.25.76", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.api-resources.v1": "^2.25.77", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.authentication.v1": "^2.25.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.provisioning.v1": "^2.25.76", - "@wso2is/admin.remote-userstores.v1": "^1.7.32", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.sms-providers.v1": "^2.25.76", - "@wso2is/admin.tenants.v1": "^2.28.50", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.provisioning.v1": "^2.25.77", + "@wso2is/admin.remote-userstores.v1": "^1.7.33", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.sms-providers.v1": "^2.25.77", + "@wso2is/admin.tenants.v1": "^2.28.51", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.feature-gate.v1/CHANGELOG.md b/features/admin.feature-gate.v1/CHANGELOG.md index 01f11e2d460..7826a74f609 100644 --- a/features/admin.feature-gate.v1/CHANGELOG.md +++ b/features/admin.feature-gate.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.feature-gate.v1 +## 1.4.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + ## 1.4.76 ### Patch Changes diff --git a/features/admin.feature-gate.v1/package.json b/features/admin.feature-gate.v1/package.json index e0d05343b32..2c7fb96e74d 100644 --- a/features/admin.feature-gate.v1/package.json +++ b/features/admin.feature-gate.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.feature-gate.v1", - "version": "1.4.76", + "version": "1.4.77", "description": "Access control management for admin level features.", "author": "WSO2", "license": "Apache-2.0", @@ -31,8 +31,8 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.organizations.v1": "^2.26.77", "@wso2is/access-control": "^3.3.9", "@wso2is/core": "^2.5.5", "axios": "^0.19.2", diff --git a/features/admin.groups.v1/CHANGELOG.md b/features/admin.groups.v1/CHANGELOG.md index 6c21a8066ec..afb844d77e1 100644 --- a/features/admin.groups.v1/CHANGELOG.md +++ b/features/admin.groups.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.groups.v1 +## 2.26.36 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.26.35 ### Patch Changes diff --git a/features/admin.groups.v1/package.json b/features/admin.groups.v1/package.json index 99304495c6e..c88ad7c8845 100644 --- a/features/admin.groups.v1/package.json +++ b/features/admin.groups.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.groups.v1", - "version": "2.26.35", + "version": "2.26.36", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.applications.v1": "^2.30.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.home.v1/CHANGELOG.md b/features/admin.home.v1/CHANGELOG.md index 364189b69ae..ee356919230 100644 --- a/features/admin.home.v1/CHANGELOG.md +++ b/features/admin.home.v1/CHANGELOG.md @@ -1,5 +1,16 @@ # @wso2is/admin.home.v1 +## 1.6.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.feature-gate.v1@1.4.77 + ## 1.6.76 ### Patch Changes diff --git a/features/admin.home.v1/package.json b/features/admin.home.v1/package.json index a5ecdd1809c..cac8363af92 100644 --- a/features/admin.home.v1/package.json +++ b/features/admin.home.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.home.v1", - "version": "1.6.76", + "version": "1.6.77", "description": "Feature and utilities for the WSO2 Identity Server Admin Home", "author": "WSO2", "license": "Apache-2.0", @@ -32,11 +32,11 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.organizations.v1": "^2.26.77", "@wso2is/core": "^2.5.5", "@wso2is/i18n": "^2.14.6", "@wso2is/react-components": "^2.8.17", diff --git a/features/admin.identity-providers.v1/CHANGELOG.md b/features/admin.identity-providers.v1/CHANGELOG.md index 134c8498682..7b48d8d2aa6 100644 --- a/features/admin.identity-providers.v1/CHANGELOG.md +++ b/features/admin.identity-providers.v1/CHANGELOG.md @@ -1,5 +1,21 @@ # @wso2is/admin.identity-providers.v1 +## 2.26.77 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.26.76 ### Patch Changes diff --git a/features/admin.identity-providers.v1/package.json b/features/admin.identity-providers.v1/package.json index 1eb1413b28b..fdfab97b536 100644 --- a/features/admin.identity-providers.v1/package.json +++ b/features/admin.identity-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.identity-providers.v1", - "version": "2.26.76", + "version": "2.26.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,16 +21,16 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.userstores.v1": "^2.26.36", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.identity-verification-providers.v1/CHANGELOG.md b/features/admin.identity-verification-providers.v1/CHANGELOG.md index 826321dd517..830f733be0d 100644 --- a/features/admin.identity-verification-providers.v1/CHANGELOG.md +++ b/features/admin.identity-verification-providers.v1/CHANGELOG.md @@ -1,5 +1,16 @@ # @wso2is/admin.identity-verification-providers.v1 +## 2.27.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.template-core.v1@1.5.31 + ## 2.27.76 ### Patch Changes diff --git a/features/admin.identity-verification-providers.v1/package.json b/features/admin.identity-verification-providers.v1/package.json index 02dac4d789d..69ace5a528f 100644 --- a/features/admin.identity-verification-providers.v1/package.json +++ b/features/admin.identity-verification-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.identity-verification-providers.v1", - "version": "2.27.76", + "version": "2.27.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,11 +21,11 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.template-core.v1": "^1.5.30", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.template-core.v1": "^1.5.31", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.impersonation.v1/CHANGELOG.md b/features/admin.impersonation.v1/CHANGELOG.md index f32f87b21b4..59e9b27c493 100644 --- a/features/admin.impersonation.v1/CHANGELOG.md +++ b/features/admin.impersonation.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.impersonation.v1 +## 1.6.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.server-configurations.v1@2.32.2 + ## 1.6.76 ### Patch Changes diff --git a/features/admin.impersonation.v1/package.json b/features/admin.impersonation.v1/package.json index 4ff88386adb..3622186f4ef 100644 --- a/features/admin.impersonation.v1/package.json +++ b/features/admin.impersonation.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.impersonation.v1", - "version": "1.6.76", + "version": "1.6.77", "description": "Impersonation Configuration Package", "author": "WSO2", "license": "Apache-2.0", @@ -21,8 +21,8 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.server-configurations.v1": "^2.32.2", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.login-flow.ai.v1/CHANGELOG.md b/features/admin.login-flow.ai.v1/CHANGELOG.md index 31c4558a37c..be3a475ef1d 100644 --- a/features/admin.login-flow.ai.v1/CHANGELOG.md +++ b/features/admin.login-flow.ai.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.login-flow.ai.v1 +## 2.26.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/common.ai.v1@2.25.77 + ## 2.26.76 ### Patch Changes diff --git a/features/admin.login-flow.ai.v1/package.json b/features/admin.login-flow.ai.v1/package.json index ac30a5f6782..65be1a81d81 100644 --- a/features/admin.login-flow.ai.v1/package.json +++ b/features/admin.login-flow.ai.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.login-flow.ai.v1", - "version": "2.26.76", + "version": "2.26.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,13 +21,13 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/common.ai.v1": "^2.25.76", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/common.ai.v1": "^2.25.77", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.logs.v1/CHANGELOG.md b/features/admin.logs.v1/CHANGELOG.md index c8517ee88d5..23808940abf 100644 --- a/features/admin.logs.v1/CHANGELOG.md +++ b/features/admin.logs.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.logs.v1 +## 1.5.78 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 1.5.77 ### Patch Changes diff --git a/features/admin.logs.v1/package.json b/features/admin.logs.v1/package.json index 9cc072aec3a..7019e9384f0 100644 --- a/features/admin.logs.v1/package.json +++ b/features/admin.logs.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.logs.v1", - "version": "1.5.77", + "version": "1.5.78", "description": "Query your logs to troubleshoot issues and monitor resource activities.", "author": "WSO2", "license": "Apache-2.0", @@ -31,7 +31,7 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", diff --git a/features/admin.oidc-scopes.v1/CHANGELOG.md b/features/admin.oidc-scopes.v1/CHANGELOG.md index aeaca0cb56d..98f1ca9a7c3 100644 --- a/features/admin.oidc-scopes.v1/CHANGELOG.md +++ b/features/admin.oidc-scopes.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.oidc-scopes.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.claims.v1@2.26.36 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.oidc-scopes.v1/package.json b/features/admin.oidc-scopes.v1/package.json index f7ce6d537de..c24d113b32e 100644 --- a/features/admin.oidc-scopes.v1/package.json +++ b/features/admin.oidc-scopes.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.oidc-scopes.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,9 +21,9 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.org-insights.v1/CHANGELOG.md b/features/admin.org-insights.v1/CHANGELOG.md index e22631d3927..bc148bbc8ef 100644 --- a/features/admin.org-insights.v1/CHANGELOG.md +++ b/features/admin.org-insights.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.org-insights.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.org-insights.v1/package.json b/features/admin.org-insights.v1/package.json index d62cbd4eadc..c5c1176e5a9 100644 --- a/features/admin.org-insights.v1/package.json +++ b/features/admin.org-insights.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.org-insights.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.organization-discovery.v1/CHANGELOG.md b/features/admin.organization-discovery.v1/CHANGELOG.md index 925c8e1deeb..4715c9ea61d 100644 --- a/features/admin.organization-discovery.v1/CHANGELOG.md +++ b/features/admin.organization-discovery.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.organization-discovery.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.organization-discovery.v1/package.json b/features/admin.organization-discovery.v1/package.json index aeba3e19873..a57d84a9763 100644 --- a/features/admin.organization-discovery.v1/package.json +++ b/features/admin.organization-discovery.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.organization-discovery.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,8 +21,8 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.organizations.v1": "^2.26.77", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.organizations.v1/CHANGELOG.md b/features/admin.organizations.v1/CHANGELOG.md index d78a2fbdccb..1d18e3ac86a 100644 --- a/features/admin.organizations.v1/CHANGELOG.md +++ b/features/admin.organizations.v1/CHANGELOG.md @@ -1,5 +1,22 @@ # @wso2is/admin.organizations.v1 +## 2.26.77 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.authentication.v1@2.25.77 + - @wso2is/admin.tenants.v1@2.28.51 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.26.76 ### Patch Changes diff --git a/features/admin.organizations.v1/package.json b/features/admin.organizations.v1/package.json index b66120ed8ae..df6361a6ffa 100644 --- a/features/admin.organizations.v1/package.json +++ b/features/admin.organizations.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.organizations.v1", - "version": "2.26.76", + "version": "2.26.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,18 +21,18 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.authentication.v1": "^2.25.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.tenants.v1": "^2.28.50", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.tenants.v1": "^2.28.51", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.private-key-jwt.v1/CHANGELOG.md b/features/admin.private-key-jwt.v1/CHANGELOG.md index 110b4bad253..5e7fee1c357 100644 --- a/features/admin.private-key-jwt.v1/CHANGELOG.md +++ b/features/admin.private-key-jwt.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.private-key-jwt.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.server-configurations.v1@2.32.2 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.private-key-jwt.v1/package.json b/features/admin.private-key-jwt.v1/package.json index c4e7d8f77db..4d8da8a10f2 100644 --- a/features/admin.private-key-jwt.v1/package.json +++ b/features/admin.private-key-jwt.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.private-key-jwt.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,8 +21,8 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.server-configurations.v1": "^2.32.1", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.server-configurations.v1": "^2.32.2", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.provisioning.v1/CHANGELOG.md b/features/admin.provisioning.v1/CHANGELOG.md index 5a7bc4f00cf..61bf664b72d 100644 --- a/features/admin.provisioning.v1/CHANGELOG.md +++ b/features/admin.provisioning.v1/CHANGELOG.md @@ -1,5 +1,15 @@ # @wso2is/admin.provisioning.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.identity-providers.v1@2.26.77 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.provisioning.v1/package.json b/features/admin.provisioning.v1/package.json index 5c7fb254ab7..9ed21097daa 100644 --- a/features/admin.provisioning.v1/package.json +++ b/features/admin.provisioning.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.provisioning.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,10 +21,10 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.identity-providers.v1": "^2.26.76", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.identity-providers.v1": "^2.26.77", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.remote-repository-configuration.v1/CHANGELOG.md b/features/admin.remote-repository-configuration.v1/CHANGELOG.md index 7519463a9fc..33e4bd3970f 100644 --- a/features/admin.remote-repository-configuration.v1/CHANGELOG.md +++ b/features/admin.remote-repository-configuration.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.remote-repository-configuration.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.remote-repository-configuration.v1/package.json b/features/admin.remote-repository-configuration.v1/package.json index 564c2e6ca85..caaa6ef7a4a 100644 --- a/features/admin.remote-repository-configuration.v1/package.json +++ b/features/admin.remote-repository-configuration.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.remote-repository-configuration.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.remote-userstores.v1/CHANGELOG.md b/features/admin.remote-userstores.v1/CHANGELOG.md index c51c5be50b7..5dad4c89faf 100644 --- a/features/admin.remote-userstores.v1/CHANGELOG.md +++ b/features/admin.remote-userstores.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.remote-userstores.v1 +## 1.7.33 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.userstores.v1@2.26.36 + ## 1.7.32 ### Patch Changes diff --git a/features/admin.remote-userstores.v1/package.json b/features/admin.remote-userstores.v1/package.json index 22aefe6a3ac..0f3f135bc54 100644 --- a/features/admin.remote-userstores.v1/package.json +++ b/features/admin.remote-userstores.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.remote-userstores.v1", - "version": "1.7.32", + "version": "1.7.33", "description": "Connect and manage Read-only or Read-write remote Userstores.", "author": "WSO2", "license": "Apache-2.0", @@ -31,13 +31,13 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/form": "^2.6.10", "@wso2is/forms": "^2.3.9", diff --git a/features/admin.roles.v1/CHANGELOG.md b/features/admin.roles.v1/CHANGELOG.md index 6e27b210127..e4cd7a35d34 100644 --- a/features/admin.roles.v1/CHANGELOG.md +++ b/features/admin.roles.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.roles.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.roles.v1/package.json b/features/admin.roles.v1/package.json index 81708de0626..9d5230dbd6a 100644 --- a/features/admin.roles.v1/package.json +++ b/features/admin.roles.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.roles.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,12 +21,12 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.roles.v2/CHANGELOG.md b/features/admin.roles.v2/CHANGELOG.md index 9021b0f8abd..e4123989023 100644 --- a/features/admin.roles.v2/CHANGELOG.md +++ b/features/admin.roles.v2/CHANGELOG.md @@ -1,5 +1,25 @@ # @wso2is/admin.roles.v2 +## 2.27.21 + +### Patch Changes + +- [#7282](https://github.com/wso2/identity-apps/pull/7282) [`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69) Thanks [@JayaShakthi97](https://github.com/JayaShakthi97)! - Fix issues in Application Role audience switching + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.remote-userstores.v1@1.7.33 + - @wso2is/admin.api-resources.v2@2.25.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.27.20 ### Patch Changes diff --git a/features/admin.roles.v2/package.json b/features/admin.roles.v2/package.json index 54f9945eff9..0c6ff41721d 100644 --- a/features/admin.roles.v2/package.json +++ b/features/admin.roles.v2/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.roles.v2", - "version": "2.27.20", + "version": "2.27.21", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,19 +21,19 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.api-resources.v2": "^2.25.76", - "@wso2is/admin.applications.v1": "^2.30.76", + "@wso2is/admin.api-resources.v2": "^2.25.77", + "@wso2is/admin.applications.v1": "^2.30.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.remote-userstores.v1": "^1.7.32", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.remote-userstores.v1": "^1.7.33", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.saml2-configuration.v1/CHANGELOG.md b/features/admin.saml2-configuration.v1/CHANGELOG.md index f5aa9f5bb27..287a81027b3 100644 --- a/features/admin.saml2-configuration.v1/CHANGELOG.md +++ b/features/admin.saml2-configuration.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.saml2-configuration.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.saml2-configuration.v1/package.json b/features/admin.saml2-configuration.v1/package.json index 9041acde684..8e063e366c4 100644 --- a/features/admin.saml2-configuration.v1/package.json +++ b/features/admin.saml2-configuration.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.saml2-configuration.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.secrets.v1/CHANGELOG.md b/features/admin.secrets.v1/CHANGELOG.md index f4bc1732418..670daa36bb3 100644 --- a/features/admin.secrets.v1/CHANGELOG.md +++ b/features/admin.secrets.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.secrets.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.secrets.v1/package.json b/features/admin.secrets.v1/package.json index 1d5b9f8d43f..8e2163ebe47 100644 --- a/features/admin.secrets.v1/package.json +++ b/features/admin.secrets.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.secrets.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.server-configurations.v1/CHANGELOG.md b/features/admin.server-configurations.v1/CHANGELOG.md index a67640528b8..ae7a2a376e4 100644 --- a/features/admin.server-configurations.v1/CHANGELOG.md +++ b/features/admin.server-configurations.v1/CHANGELOG.md @@ -1,5 +1,19 @@ # @wso2is/admin.server-configurations.v1 +## 2.32.2 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + ## 2.32.1 ### Patch Changes diff --git a/features/admin.server-configurations.v1/package.json b/features/admin.server-configurations.v1/package.json index e96977c59d8..b8eb416368a 100644 --- a/features/admin.server-configurations.v1/package.json +++ b/features/admin.server-configurations.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.server-configurations.v1", - "version": "2.32.1", + "version": "2.32.2", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,14 +21,14 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.session-management.v1/CHANGELOG.md b/features/admin.session-management.v1/CHANGELOG.md index 141d4ee58b2..40ce39faa00 100644 --- a/features/admin.session-management.v1/CHANGELOG.md +++ b/features/admin.session-management.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.session-management.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.session-management.v1/package.json b/features/admin.session-management.v1/package.json index 2b0cf9bb19e..d43f5eebdc4 100644 --- a/features/admin.session-management.v1/package.json +++ b/features/admin.session-management.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.session-management.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.sms-providers.v1/CHANGELOG.md b/features/admin.sms-providers.v1/CHANGELOG.md index da72f34c851..0c48e0c8ea8 100644 --- a/features/admin.sms-providers.v1/CHANGELOG.md +++ b/features/admin.sms-providers.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.sms-providers.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.connections.v1@2.30.13 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.sms-providers.v1/package.json b/features/admin.sms-providers.v1/package.json index f557a124dd2..09edcaaa3ae 100644 --- a/features/admin.sms-providers.v1/package.json +++ b/features/admin.sms-providers.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.sms-providers.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,9 +21,9 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.connections.v1": "^2.30.12", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", + "@wso2is/admin.connections.v1": "^2.30.13", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.sms-templates.v1/CHANGELOG.md b/features/admin.sms-templates.v1/CHANGELOG.md index 919e2c3f44c..c686a53bccc 100644 --- a/features/admin.sms-templates.v1/CHANGELOG.md +++ b/features/admin.sms-templates.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.sms-templates.v1 +## 1.0.76 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.branding.v1@2.27.50 + - @wso2is/common.branding.v1@2.25.50 + ## 1.0.75 ### Patch Changes diff --git a/features/admin.sms-templates.v1/package.json b/features/admin.sms-templates.v1/package.json index f11cc4565e5..e6143942943 100644 --- a/features/admin.sms-templates.v1/package.json +++ b/features/admin.sms-templates.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.sms-templates.v1", - "version": "1.0.75", + "version": "1.0.76", "description": "SMS templates for Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,9 +21,9 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.branding.v1": "^2.27.49", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/common.branding.v1": "^2.25.49", + "@wso2is/admin.branding.v1": "^2.27.50", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/common.branding.v1": "^2.25.50", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.subscription.v1/CHANGELOG.md b/features/admin.subscription.v1/CHANGELOG.md index d55e82206c5..a86447ef5f9 100644 --- a/features/admin.subscription.v1/CHANGELOG.md +++ b/features/admin.subscription.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/admin.subscription.v1 +## 1.5.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + ## 1.5.76 ### Patch Changes diff --git a/features/admin.subscription.v1/package.json b/features/admin.subscription.v1/package.json index 8afeb62f8f6..e64a14921e4 100644 --- a/features/admin.subscription.v1/package.json +++ b/features/admin.subscription.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.subscription.v1", - "version": "1.5.76", + "version": "1.5.77", "description": "Manage the tier & subscription information of the tenant", "author": "WSO2", "license": "Apache-2.0", @@ -32,8 +32,8 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.organizations.v1": "^2.26.77", "@wso2is/core": "^2.5.5", "classnames": "^2.2.6", "axios": "^0.19.2", diff --git a/features/admin.template-core.v1/CHANGELOG.md b/features/admin.template-core.v1/CHANGELOG.md index a11b0fefc00..b0e13279557 100644 --- a/features/admin.template-core.v1/CHANGELOG.md +++ b/features/admin.template-core.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.template-core.v1 +## 1.5.31 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 1.5.30 ### Patch Changes diff --git a/features/admin.template-core.v1/package.json b/features/admin.template-core.v1/package.json index ddec1b72fcc..423cdd6a447 100644 --- a/features/admin.template-core.v1/package.json +++ b/features/admin.template-core.v1/package.json @@ -1,13 +1,13 @@ { "private": true, "name": "@wso2is/admin.template-core.v1", - "version": "1.5.30", + "version": "1.5.31", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", "dependencies": { "@wso2is/core": "^2.5.5", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "i18next": "^21.9.1", "react-redux": "^7.2.9", "redux": "^4.0.4" diff --git a/features/admin.tenants.v1/CHANGELOG.md b/features/admin.tenants.v1/CHANGELOG.md index 56afc726cec..b46570ba37b 100644 --- a/features/admin.tenants.v1/CHANGELOG.md +++ b/features/admin.tenants.v1/CHANGELOG.md @@ -1,5 +1,17 @@ # @wso2is/admin.tenants.v1 +## 2.28.51 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.feature-gate.v1@1.4.77 + ## 2.28.50 ### Patch Changes diff --git a/features/admin.tenants.v1/package.json b/features/admin.tenants.v1/package.json index 05b56510895..b0358ca76aa 100644 --- a/features/admin.tenants.v1/package.json +++ b/features/admin.tenants.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.tenants.v1", - "version": "2.28.50", + "version": "2.28.51", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -20,12 +20,12 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.username-validation.v1/CHANGELOG.md b/features/admin.username-validation.v1/CHANGELOG.md index 4af93645870..283d98a815c 100644 --- a/features/admin.username-validation.v1/CHANGELOG.md +++ b/features/admin.username-validation.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.username-validation.v1 +## 1.5.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.applications.v1@2.30.77 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.validation.v1@2.27.15 + ## 1.5.76 ### Patch Changes diff --git a/features/admin.username-validation.v1/package.json b/features/admin.username-validation.v1/package.json index 12e0a963c41..2c01f4fe687 100644 --- a/features/admin.username-validation.v1/package.json +++ b/features/admin.username-validation.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.username-validation.v1", - "version": "1.5.76", + "version": "1.5.77", "description": "Manage the username type and customize username validation rules for your users", "author": "WSO2", "license": "Apache-2.0", @@ -31,9 +31,9 @@ "@mui/system": "^5.12.3", "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", - "@wso2is/admin.applications.v1": "^2.30.76", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.applications.v1": "^2.30.77", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/form": "^2.6.10", "@wso2is/react-components": "^2.8.17", diff --git a/features/admin.users.v1/CHANGELOG.md b/features/admin.users.v1/CHANGELOG.md index 7f0e689eecd..d9a240e089e 100644 --- a/features/admin.users.v1/CHANGELOG.md +++ b/features/admin.users.v1/CHANGELOG.md @@ -1,5 +1,25 @@ # @wso2is/admin.users.v1 +## 2.29.36 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.identity-providers.v1@2.26.77 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.validation.v1@2.27.15 + - @wso2is/admin.authentication.v1@2.25.77 + - @wso2is/admin.claims.v1@2.26.36 + - @wso2is/admin.feature-gate.v1@1.4.77 + - @wso2is/admin.server-configurations.v1@2.32.2 + - @wso2is/admin.tenants.v1@2.28.51 + - @wso2is/admin.userstores.v1@2.26.36 + ## 2.29.35 ### Patch Changes diff --git a/features/admin.users.v1/package.json b/features/admin.users.v1/package.json index 76a9f86021c..16a01aea10d 100644 --- a/features/admin.users.v1/package.json +++ b/features/admin.users.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.users.v1", - "version": "2.29.35", + "version": "2.29.36", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,21 +21,21 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.authentication.v1": "^2.25.76", + "@wso2is/admin.authentication.v1": "^2.25.77", "@wso2is/admin.authorization.v1": "^2.25.30", - "@wso2is/admin.claims.v1": "^2.26.35", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.feature-gate.v1": "^1.4.76", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.identity-providers.v1": "^2.26.76", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.roles.v2": "^2.27.20", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.tenants.v1": "^2.28.50", - "@wso2is/admin.users.v1": "^2.29.35", - "@wso2is/admin.userstores.v1": "^2.26.35", - "@wso2is/admin.validation.v1": "^2.27.14", + "@wso2is/admin.claims.v1": "^2.26.36", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.feature-gate.v1": "^1.4.77", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.identity-providers.v1": "^2.26.77", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.roles.v2": "^2.27.21", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.tenants.v1": "^2.28.51", + "@wso2is/admin.users.v1": "^2.29.36", + "@wso2is/admin.userstores.v1": "^2.26.36", + "@wso2is/admin.validation.v1": "^2.27.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.userstores.v1/CHANGELOG.md b/features/admin.userstores.v1/CHANGELOG.md index 3a191a1c20b..734253e8c0f 100644 --- a/features/admin.userstores.v1/CHANGELOG.md +++ b/features/admin.userstores.v1/CHANGELOG.md @@ -1,5 +1,14 @@ # @wso2is/admin.userstores.v1 +## 2.26.36 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.remote-userstores.v1@1.7.33 + ## 2.26.35 ### Patch Changes diff --git a/features/admin.userstores.v1/package.json b/features/admin.userstores.v1/package.json index bc930b2cd41..4e363686d84 100644 --- a/features/admin.userstores.v1/package.json +++ b/features/admin.userstores.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.userstores.v1", - "version": "2.26.35", + "version": "2.26.36", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,9 +21,9 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.remote-userstores.v1": "^1.7.32", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.remote-userstores.v1": "^1.7.33", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.validation.v1/CHANGELOG.md b/features/admin.validation.v1/CHANGELOG.md index da8d9e70af4..7a119753907 100644 --- a/features/admin.validation.v1/CHANGELOG.md +++ b/features/admin.validation.v1/CHANGELOG.md @@ -1,5 +1,18 @@ # @wso2is/admin.validation.v1 +## 2.27.15 + +### Patch Changes + +- Updated dependencies [[`cbe2f57e1804353fda6f7c3d49a09cfddb3bea69`](https://github.com/wso2/identity-apps/commit/cbe2f57e1804353fda6f7c3d49a09cfddb3bea69)]: + - @wso2is/admin.roles.v2@2.27.21 + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.extensions.v1@2.36.2 + - @wso2is/admin.groups.v1@2.26.36 + - @wso2is/admin.organizations.v1@2.26.77 + - @wso2is/admin.users.v1@2.29.36 + - @wso2is/admin.server-configurations.v1@2.32.2 + ## 2.27.14 ### Patch Changes diff --git a/features/admin.validation.v1/package.json b/features/admin.validation.v1/package.json index e6807c2067a..37ba06041da 100644 --- a/features/admin.validation.v1/package.json +++ b/features/admin.validation.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.validation.v1", - "version": "2.27.14", + "version": "2.27.15", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,11 +21,11 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.extensions.v1": "^2.36.1", - "@wso2is/admin.organizations.v1": "^2.26.76", - "@wso2is/admin.server-configurations.v1": "^2.32.1", - "@wso2is/admin.users.v1": "^2.29.35", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.extensions.v1": "^2.36.2", + "@wso2is/admin.organizations.v1": "^2.26.77", + "@wso2is/admin.server-configurations.v1": "^2.32.2", + "@wso2is/admin.users.v1": "^2.29.36", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", @@ -34,8 +34,8 @@ "@wso2is/react-components": "^2.8.17", "@wso2is/theme": "^2.5.1", "@wso2is/validation": "^2.4.0", - "@wso2is/admin.groups.v1": "^2.26.35", - "@wso2is/admin.roles.v2": "^2.27.20", + "@wso2is/admin.groups.v1": "^2.26.36", + "@wso2is/admin.roles.v2": "^2.27.21", "axios": "^0.19.2", "codemirror": "^5.52.0", "country-language": "^0.1.7", diff --git a/features/admin.workflow-approvals.v1/CHANGELOG.md b/features/admin.workflow-approvals.v1/CHANGELOG.md index 39a3fe6aac0..a2713ea02be 100644 --- a/features/admin.workflow-approvals.v1/CHANGELOG.md +++ b/features/admin.workflow-approvals.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.workflow-approvals.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.workflow-approvals.v1/package.json b/features/admin.workflow-approvals.v1/package.json index 41dfa9cb421..f383229a94a 100644 --- a/features/admin.workflow-approvals.v1/package.json +++ b/features/admin.workflow-approvals.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.workflow-approvals.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/admin.wsfed-configuration.v1/CHANGELOG.md b/features/admin.wsfed-configuration.v1/CHANGELOG.md index 60471672ae3..0ef57b5b10f 100644 --- a/features/admin.wsfed-configuration.v1/CHANGELOG.md +++ b/features/admin.wsfed-configuration.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/admin.wsfed-configuration.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/admin.wsfed-configuration.v1/package.json b/features/admin.wsfed-configuration.v1/package.json index 670b6197a83..c5a9bdcd9c9 100644 --- a/features/admin.wsfed-configuration.v1/package.json +++ b/features/admin.wsfed-configuration.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/admin.wsfed-configuration.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/common.ai.v1/CHANGELOG.md b/features/common.ai.v1/CHANGELOG.md index 1ecfd071222..45125b7ade7 100644 --- a/features/common.ai.v1/CHANGELOG.md +++ b/features/common.ai.v1/CHANGELOG.md @@ -1,5 +1,12 @@ # @wso2is/common.ai.v1 +## 2.25.77 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + ## 2.25.76 ### Patch Changes diff --git a/features/common.ai.v1/package.json b/features/common.ai.v1/package.json index 58fe680df2a..091310cc813 100644 --- a/features/common.ai.v1/package.json +++ b/features/common.ai.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/common.ai.v1", - "version": "2.25.76", + "version": "2.25.77", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -21,7 +21,7 @@ "@oxygen-ui/react": "^2.0.0", "@oxygen-ui/react-icons": "^2.0.0", "@wso2is/access-control": "^3.3.9", - "@wso2is/admin.core.v1": "^2.35.14", + "@wso2is/admin.core.v1": "^2.35.15", "@wso2is/core": "^2.5.5", "@wso2is/dynamic-forms": "^2.4.17", "@wso2is/form": "^2.6.10", diff --git a/features/common.branding.v1/CHANGELOG.md b/features/common.branding.v1/CHANGELOG.md index 45f76bd105b..84b4b81f0e9 100644 --- a/features/common.branding.v1/CHANGELOG.md +++ b/features/common.branding.v1/CHANGELOG.md @@ -1,5 +1,13 @@ # @wso2is/common.branding.v1 +## 2.25.50 + +### Patch Changes + +- Updated dependencies []: + - @wso2is/admin.core.v1@2.35.15 + - @wso2is/admin.organizations.v1@2.26.77 + ## 2.25.49 ### Patch Changes diff --git a/features/common.branding.v1/package.json b/features/common.branding.v1/package.json index 65a08dd0f06..91f0864b470 100644 --- a/features/common.branding.v1/package.json +++ b/features/common.branding.v1/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@wso2is/common.branding.v1", - "version": "2.25.49", + "version": "2.25.50", "description": "WSO2 Identity Server Console", "author": "WSO2", "license": "Apache-2.0", @@ -15,8 +15,8 @@ "@mui/utils": "^5.12.3", "@oxygen-ui/react": "^2.0.0", "@wso2is/core": "^2.5.5", - "@wso2is/admin.core.v1": "^2.35.14", - "@wso2is/admin.organizations.v1": "^2.26.76", + "@wso2is/admin.core.v1": "^2.35.15", + "@wso2is/admin.organizations.v1": "^2.26.77", "lodash-es": "^4.17.21", "react-helmet": "^5.2.1" }, diff --git a/identity-apps-core/CHANGELOG.md b/identity-apps-core/CHANGELOG.md index 10b60e37676..63648c349e2 100644 --- a/identity-apps-core/CHANGELOG.md +++ b/identity-apps-core/CHANGELOG.md @@ -1,5 +1,11 @@ # @wso2is/identity-apps-core +## 2.9.2 + +### Patch Changes + +- [#7030](https://github.com/wso2/identity-apps/pull/7030) [`d8ac25af8c462eac2d2bb5c949f32996ad83a000`](https://github.com/wso2/identity-apps/commit/d8ac25af8c462eac2d2bb5c949f32996ad83a000) Thanks [@sadilchamishka](https://github.com/sadilchamishka)! - Remove unnecessary org qualified callback url regex for portal apps + ## 2.9.1 ### Patch Changes diff --git a/identity-apps-core/package.json b/identity-apps-core/package.json index b30cf87327c..ff513365a10 100644 --- a/identity-apps-core/package.json +++ b/identity-apps-core/package.json @@ -1,6 +1,6 @@ { "name": "@wso2is/identity-apps-core", - "version": "2.9.1", + "version": "2.9.2", "private": true, "description": "WSO2 Identity Server Authentication Portal", "author": "WSO2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cfc4b20acdc..644f36b56b0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -495,151 +495,151 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.actions.v1': - specifier: ^1.7.33 + specifier: ^1.7.34 version: link:../../features/admin.actions.v1 '@wso2is/admin.administrators.v1': - specifier: ^2.29.76 + specifier: ^2.29.77 version: link:../../features/admin.administrators.v1 '@wso2is/admin.alternative-login-identifier.v1': - specifier: ^1.5.76 + specifier: ^1.5.77 version: link:../../features/admin.alternative-login-identifier.v1 '@wso2is/admin.api-resources.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.api-resources.v1 '@wso2is/admin.api-resources.v2': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.api-resources.v2 '@wso2is/admin.application-templates.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../../features/admin.application-templates.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../../features/admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.authentication.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../../features/admin.authorization.v1 '@wso2is/admin.branding.v1': - specifier: ^2.27.49 + specifier: ^2.27.50 version: link:../../features/admin.branding.v1 '@wso2is/admin.certificates.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.certificates.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../../features/admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../../features/admin.connections.v1 '@wso2is/admin.console-settings.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.console-settings.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../../features/admin.core.v1 '@wso2is/admin.email-and-sms.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.email-and-sms.v1 '@wso2is/admin.email-management.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.email-management.v1 '@wso2is/admin.email-providers.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.email-providers.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../../features/admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../../features/admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../../features/admin.groups.v1 '@wso2is/admin.home.v1': - specifier: ^1.6.76 + specifier: ^1.6.77 version: link:../../features/admin.home.v1 '@wso2is/admin.identity-verification-providers.v1': - specifier: ^2.27.76 + specifier: ^2.27.77 version: link:../../features/admin.identity-verification-providers.v1 '@wso2is/admin.impersonation.v1': - specifier: ^1.6.76 + specifier: ^1.6.77 version: link:../../features/admin.impersonation.v1 '@wso2is/admin.logs.v1': - specifier: ^1.5.77 + specifier: ^1.5.78 version: link:../../features/admin.logs.v1 '@wso2is/admin.oidc-scopes.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.oidc-scopes.v1 '@wso2is/admin.org-insights.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.org-insights.v1 '@wso2is/admin.organization-discovery.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.organization-discovery.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../../features/admin.organizations.v1 '@wso2is/admin.private-key-jwt.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.private-key-jwt.v1 '@wso2is/admin.remote-repository-configuration.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.remote-repository-configuration.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.32 + specifier: ^1.7.33 version: link:../../features/admin.remote-userstores.v1 '@wso2is/admin.roles.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.roles.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../../features/admin.roles.v2 '@wso2is/admin.saml2-configuration.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.saml2-configuration.v1 '@wso2is/admin.secrets.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../../features/admin.server-configurations.v1 '@wso2is/admin.session-management.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.session-management.v1 '@wso2is/admin.sms-providers.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.sms-providers.v1 '@wso2is/admin.sms-templates.v1': - specifier: ^1.0.75 + specifier: ^1.0.76 version: link:../../features/admin.sms-templates.v1 '@wso2is/admin.subscription.v1': - specifier: ^1.5.76 + specifier: ^1.5.77 version: link:../../features/admin.subscription.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.30 + specifier: ^1.5.31 version: link:../../features/admin.template-core.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.50 + specifier: ^2.28.51 version: link:../../features/admin.tenants.v1 '@wso2is/admin.username-validation.v1': - specifier: ^1.5.76 + specifier: ^1.5.77 version: link:../../features/admin.username-validation.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../../features/admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../../features/admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../../features/admin.validation.v1 '@wso2is/admin.workflow-approvals.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.workflow-approvals.v1 '@wso2is/admin.wsfed-configuration.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../../features/admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.5.5 @@ -955,10 +955,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../../features/admin.organizations.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.49 + specifier: ^2.25.50 version: link:../../features/common.branding.v1 '@wso2is/core': specifier: ^2.5.5 @@ -1563,13 +1563,13 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/core': specifier: ^2.5.5 @@ -1828,37 +1828,37 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: workspace:^2.25.76 + specifier: workspace:^2.25.77 version: link:../admin.authentication.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.32 + specifier: ^1.7.33 version: link:../admin.remote-userstores.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.50 + specifier: ^2.28.51 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -1985,22 +1985,22 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -2127,10 +2127,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/core': specifier: ^2.5.5 @@ -2263,10 +2263,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -2372,25 +2372,25 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -2493,13 +2493,13 @@ importers: features/admin.application-templates.v1: dependencies: '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.30 + specifier: ^1.5.31 version: link:../admin.template-core.v1 react: specifier: ^18.2.0 @@ -2593,73 +2593,73 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.api-resources.v2': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.api-resources.v2 '@wso2is/admin.application-templates.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.application-templates.v1 '@wso2is/admin.authentication-flow-builder.v1': - specifier: ^2.24.76 + specifier: ^2.24.77 version: link:../admin.authentication-flow-builder.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.branding.v1': - specifier: ^2.27.49 + specifier: ^2.27.50 version: link:../admin.branding.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.console-settings.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.console-settings.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.impersonation.v1': - specifier: ^1.6.76 + specifier: ^1.6.77 version: link:../admin.impersonation.v1 '@wso2is/admin.login-flow.ai.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.login-flow.ai.v1 '@wso2is/admin.oidc-scopes.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.oidc-scopes.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.secrets.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.30 + specifier: ^1.5.31 version: link:../admin.template-core.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/admin.wsfed-configuration.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.5.5 @@ -2834,31 +2834,31 @@ importers: specifier: ^2.0.0 version: 2.0.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.login-flow.ai.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.login-flow.ai.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.secrets.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -2976,19 +2976,19 @@ importers: specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -3555,22 +3555,22 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.v1': - specifier: ^2.27.49 + specifier: ^2.27.50 version: link:../admin.branding.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/common.ai.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../common.ai.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.49 + specifier: ^2.25.50 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 @@ -3949,25 +3949,25 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.ai.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.branding.ai.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.49 + specifier: ^2.25.50 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 @@ -4349,7 +4349,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -4731,25 +4731,25 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: 'link:' '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -5128,46 +5128,46 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.application-templates.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: 'link:' '@wso2is/admin.console-settings.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.console-settings.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.identity-verification-providers.v1': - specifier: ^2.27.76 + specifier: ^2.27.77 version: link:../admin.identity-verification-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.template-core.v1': - specifier: ^1.5.30 + specifier: ^1.5.31 version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -5546,43 +5546,43 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.administrators.v1': - specifier: ^2.29.76 + specifier: ^2.29.77 version: link:../admin.administrators.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.authentication.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.login-flow.ai.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.login-flow.ai.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -5949,139 +5949,139 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.actions.v1': - specifier: ^1.7.33 + specifier: ^1.7.34 version: link:../admin.actions.v1 '@wso2is/admin.administrators.v1': - specifier: ^2.29.76 + specifier: ^2.29.77 version: link:../admin.administrators.v1 '@wso2is/admin.api-resources.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.api-resources.v1 '@wso2is/admin.api-resources.v2': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.api-resources.v2 '@wso2is/admin.application-templates.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.branding.v1': - specifier: ^2.27.49 + specifier: ^2.27.50 version: link:../admin.branding.v1 '@wso2is/admin.certificates.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.certificates.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.console-settings.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.console-settings.v1 '@wso2is/admin.email-and-sms.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.email-and-sms.v1 '@wso2is/admin.email-management.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.email-management.v1 '@wso2is/admin.email-providers.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.email-providers.v1 '@wso2is/admin.email-templates.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.email-templates.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.identity-verification-providers.v1': - specifier: ^2.27.76 + specifier: ^2.27.77 version: link:../admin.identity-verification-providers.v1 '@wso2is/admin.impersonation.v1': - specifier: ^1.6.76 + specifier: ^1.6.77 version: link:../admin.impersonation.v1 '@wso2is/admin.oidc-scopes.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.oidc-scopes.v1 '@wso2is/admin.org-insights.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.org-insights.v1 '@wso2is/admin.organization-discovery.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.organization-discovery.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.private-key-jwt.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.private-key-jwt.v1 '@wso2is/admin.remote-repository-configuration.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.remote-repository-configuration.v1 '@wso2is/admin.roles.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.roles.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.saml2-configuration.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.saml2-configuration.v1 '@wso2is/admin.secrets.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.secrets.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.session-management.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.session-management.v1 '@wso2is/admin.sms-providers.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.sms-providers.v1 '@wso2is/admin.sms-templates.v1': - specifier: ^1.0.75 + specifier: ^1.0.76 version: link:../admin.sms-templates.v1 '@wso2is/admin.subscription.v1': - specifier: ^1.5.76 + specifier: ^1.5.77 version: link:../admin.subscription.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.30 + specifier: ^1.5.31 version: link:../admin.template-core.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.50 + specifier: ^2.28.51 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/admin.workflow-approvals.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.workflow-approvals.v1 '@wso2is/admin.wsfed-configuration.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.5.5 @@ -6421,10 +6421,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -6803,13 +6803,13 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.v1': - specifier: ^2.27.49 + specifier: ^2.27.50 version: link:../admin.branding.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.49 + specifier: ^2.25.50 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 @@ -7188,7 +7188,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -7567,10 +7567,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -7949,64 +7949,64 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.api-resources.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.api-resources.v1 '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.provisioning.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.provisioning.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.32 + specifier: ^1.7.33 version: link:../admin.remote-userstores.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.sms-providers.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.sms-providers.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.50 + specifier: ^2.28.51 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -8370,10 +8370,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -8509,28 +8509,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -8894,19 +8894,19 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -9084,34 +9084,34 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: 'link:' '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -9490,19 +9490,19 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.template-core.v1': - specifier: ^1.5.30 + specifier: ^1.5.31 version: link:../admin.template-core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -9881,10 +9881,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -10251,25 +10251,25 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/common.ai.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../common.ai.v1 '@wso2is/core': specifier: ^2.5.5 @@ -10630,7 +10630,7 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -10781,13 +10781,13 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -11166,7 +11166,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -11545,10 +11545,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -11927,40 +11927,40 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.tenants.v1': - specifier: ^2.28.50 + specifier: ^2.28.51 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -12339,10 +12339,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -12721,16 +12721,16 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/core': specifier: ^2.5.5 @@ -13109,7 +13109,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -13470,25 +13470,25 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -13639,22 +13639,22 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -14033,43 +14033,43 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.api-resources.v2': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.api-resources.v2 '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.32 + specifier: ^1.7.33 version: link:../admin.remote-userstores.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -14448,7 +14448,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -14827,7 +14827,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -15206,28 +15206,28 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: 'link:' '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -15606,7 +15606,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -15985,13 +15985,13 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.connections.v1': - specifier: ^2.30.12 + specifier: ^2.30.13 version: link:../admin.connections.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/core': specifier: ^2.5.5 @@ -16370,13 +16370,13 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.branding.v1': - specifier: ^2.27.49 + specifier: ^2.27.50 version: link:../admin.branding.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/common.branding.v1': - specifier: ^2.25.49 + specifier: ^2.25.50 version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.5.5 @@ -16740,10 +16740,10 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5 @@ -16870,7 +16870,7 @@ importers: features/admin.template-core.v1: dependencies: '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -16988,22 +16988,22 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -17364,13 +17364,13 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': - specifier: ^2.30.76 + specifier: ^2.30.77 version: link:../admin.applications.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -17512,49 +17512,49 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.authentication.v1': - specifier: ^2.25.76 + specifier: ^2.25.77 version: link:../admin.authentication.v1 '@wso2is/admin.authorization.v1': specifier: ^2.25.30 version: link:../admin.authorization.v1 '@wso2is/admin.claims.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.claims.v1 '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.feature-gate.v1': - specifier: ^1.4.76 + specifier: ^1.4.77 version: link:../admin.feature-gate.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.tenants.v1': - specifier: ^2.28.50 + specifier: ^2.28.51 version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: 'link:' '@wso2is/admin.userstores.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.userstores.v1 '@wso2is/admin.validation.v1': - specifier: ^2.27.14 + specifier: ^2.27.15 version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.5.5 @@ -17933,13 +17933,13 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.remote-userstores.v1': - specifier: ^1.7.32 + specifier: ^1.7.33 version: link:../admin.remote-userstores.v1 '@wso2is/core': specifier: ^2.5.5 @@ -18318,25 +18318,25 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': - specifier: ^2.36.1 + specifier: ^2.36.2 version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': - specifier: ^2.26.35 + specifier: ^2.26.36 version: link:../admin.groups.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': - specifier: ^2.27.20 + specifier: ^2.27.21 version: link:../admin.roles.v2 '@wso2is/admin.server-configurations.v1': - specifier: ^2.32.1 + specifier: ^2.32.2 version: link:../admin.server-configurations.v1 '@wso2is/admin.users.v1': - specifier: ^2.29.35 + specifier: ^2.29.36 version: link:../admin.users.v1 '@wso2is/core': specifier: ^2.5.5 @@ -18715,7 +18715,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -19094,7 +19094,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -19473,7 +19473,7 @@ importers: specifier: ^3.3.9 version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/core': specifier: ^2.5.5 @@ -19831,10 +19831,10 @@ importers: specifier: ^2.0.0 version: 2.0.0(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@mui/icons-material@5.16.13)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.16.13)(@mui/utils@5.16.13)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': - specifier: ^2.35.14 + specifier: ^2.35.15 version: link:../admin.core.v1 '@wso2is/admin.organizations.v1': - specifier: ^2.26.76 + specifier: ^2.26.77 version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.5.5