diff --git a/CHANGELOG.md b/CHANGELOG.md index daa7c12525..829c7a3df2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.46.6] - 2025-08-19 +### Fixed +- Support for go-git user agents (e.g. ArgoCD ≥ 2.14) + ## [2.46.5] - 2025-01-17 ### Fixed - Removed the API token error log message that was being printed when the API token was invalid. @@ -1386,3 +1390,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [2.46.3]: https://scm-manager.org/download/2.46.3 [2.46.4]: https://scm-manager.org/download/2.46.4 [2.46.5]: https://scm-manager.org/download/2.46.5 +[2.46.6]: https://scm-manager.org/download/2.46.6 diff --git a/gradle.properties b/gradle.properties index a0fd030556..38c0dab25f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,5 +22,5 @@ # SOFTWARE. # group = sonia.scm -version = 2.46.6-SNAPSHOT +version = 2.46.6 org.gradle.jvmargs=-Xmx1024M diff --git a/scm-plugins/scm-git-plugin/package.json b/scm-plugins/scm-git-plugin/package.json index cb3d13447f..95388ec274 100644 --- a/scm-plugins/scm-git-plugin/package.json +++ b/scm-plugins/scm-git-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-git-plugin", "private": true, - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "license": "MIT", "main": "./src/main/js/index.ts", "scripts": { @@ -11,7 +11,7 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "2.46.6-SNAPSHOT" + "@scm-manager/ui-plugins": "2.46.6" }, "devDependencies": { "@scm-manager/babel-preset": "^2.13.1", diff --git a/scm-plugins/scm-hg-plugin/package.json b/scm-plugins/scm-hg-plugin/package.json index 916435bf4a..9b5ee90360 100644 --- a/scm-plugins/scm-hg-plugin/package.json +++ b/scm-plugins/scm-hg-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-hg-plugin", "private": true, - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "license": "MIT", "main": "./src/main/js/index.ts", "scripts": { @@ -10,7 +10,7 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "2.46.6-SNAPSHOT" + "@scm-manager/ui-plugins": "2.46.6" }, "devDependencies": { "@scm-manager/babel-preset": "^2.13.1", diff --git a/scm-plugins/scm-legacy-plugin/package.json b/scm-plugins/scm-legacy-plugin/package.json index 41e1bdc679..957b0aab2b 100644 --- a/scm-plugins/scm-legacy-plugin/package.json +++ b/scm-plugins/scm-legacy-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-legacy-plugin", "private": true, - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "license": "MIT", "main": "./src/main/js/index.tsx", "scripts": { @@ -10,7 +10,7 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "2.46.6-SNAPSHOT" + "@scm-manager/ui-plugins": "2.46.6" }, "devDependencies": { "@scm-manager/babel-preset": "^2.13.1", diff --git a/scm-plugins/scm-svn-plugin/package.json b/scm-plugins/scm-svn-plugin/package.json index 1386cc35ae..e75cdeb326 100644 --- a/scm-plugins/scm-svn-plugin/package.json +++ b/scm-plugins/scm-svn-plugin/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/scm-svn-plugin", "private": true, - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "license": "MIT", "main": "./src/main/js/index.ts", "scripts": { @@ -10,7 +10,7 @@ "typecheck": "tsc" }, "dependencies": { - "@scm-manager/ui-plugins": "2.46.6-SNAPSHOT" + "@scm-manager/ui-plugins": "2.46.6" }, "devDependencies": { "@scm-manager/babel-preset": "^2.13.1", diff --git a/scm-ui/e2e-tests/package.json b/scm-ui/e2e-tests/package.json index 5c7057bbd0..0638ff9b57 100644 --- a/scm-ui/e2e-tests/package.json +++ b/scm-ui/e2e-tests/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/e2e-tests", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "End to end Tests for SCM-Manager", "main": "index.js", "author": "Eduard Heimbuch ", diff --git a/scm-ui/ui-api/package.json b/scm-ui/ui-api/package.json index 794d84bcd2..5b6c6fde4f 100644 --- a/scm-ui/ui-api/package.json +++ b/scm-ui/ui-api/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-api", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "React hook api for the SCM-Manager backend", "main": "build/index.js", "module": "build/index.mjs", @@ -29,7 +29,7 @@ "tsup": "^5.12.6" }, "dependencies": { - "@scm-manager/ui-types": "2.46.6-SNAPSHOT", + "@scm-manager/ui-types": "2.46.6", "fetch-mock-jest": "^1.5.1", "gitdiff-parser": "^0.2.2", "query-string": "6.14.1", diff --git a/scm-ui/ui-buttons/package.json b/scm-ui/ui-buttons/package.json index 3d2bf01d00..3a6b6e1a87 100644 --- a/scm-ui/ui-buttons/package.json +++ b/scm-ui/ui-buttons/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-buttons", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "private": false, "main": "build/index.js", "module": "build/index.mjs", @@ -24,11 +24,11 @@ "react-dom": "^17.0.1", "react-router-dom": "^5.3.1", "classnames": "^2.2.6", - "@scm-manager/ui-components": "2.46.6-SNAPSHOT" + "@scm-manager/ui-components": "2.46.6" }, "devDependencies": { "@scm-manager/prettier-config": "^2.11.1", - "@scm-manager/ui-api": "2.46.6-SNAPSHOT", + "@scm-manager/ui-api": "2.46.6", "@scm-manager/eslint-config": "^2.17.0", "@babel/core": "^7.17.8", "@scm-manager/tsconfig": "^2.12.0", diff --git a/scm-ui/ui-components/package.json b/scm-ui/ui-components/package.json index e4dff1ab3f..ec8d5fface 100644 --- a/scm-ui/ui-components/package.json +++ b/scm-ui/ui-components/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-components", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "UI Components for SCM-Manager and its plugins", "main": "src/index.ts", "files": [ @@ -24,10 +24,10 @@ "@scm-manager/jest-preset": "^2.13.0", "@scm-manager/prettier-config": "^2.10.1", "@scm-manager/tsconfig": "^2.13.0", - "@scm-manager/ui-shortcuts": "2.46.6-SNAPSHOT", - "@scm-manager/ui-syntaxhighlighting": "2.46.6-SNAPSHOT", - "@scm-manager/ui-tests": "2.46.6-SNAPSHOT", - "@scm-manager/ui-text": "2.46.6-SNAPSHOT", + "@scm-manager/ui-shortcuts": "2.46.6", + "@scm-manager/ui-syntaxhighlighting": "2.46.6", + "@scm-manager/ui-tests": "2.46.6", + "@scm-manager/ui-text": "2.46.6", "@storybook/addon-actions": "^6.4.20", "@storybook/addon-essentials": "^6.4.20", "@storybook/addon-interactions": "^6.4.20", @@ -65,9 +65,9 @@ }, "dependencies": { "@headlessui/react": "^1.4.3", - "@scm-manager/ui-api": "2.46.6-SNAPSHOT", - "@scm-manager/ui-extensions": "2.46.6-SNAPSHOT", - "@scm-manager/ui-types": "2.46.6-SNAPSHOT", + "@scm-manager/ui-api": "2.46.6", + "@scm-manager/ui-extensions": "2.46.6", + "@scm-manager/ui-types": "2.46.6", "classnames": "^2.2.6", "date-fns": "^2.4.1", "deepmerge": "^4.2.2", diff --git a/scm-ui/ui-extensions/package.json b/scm-ui/ui-extensions/package.json index d155ef936a..077d04f014 100644 --- a/scm-ui/ui-extensions/package.json +++ b/scm-ui/ui-extensions/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-extensions", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "license": "MIT", "private": false, "author": "Sebastian Sdorra ", @@ -17,7 +17,7 @@ "test": "jest" }, "dependencies": { - "@scm-manager/ui-types": "2.46.6-SNAPSHOT", + "@scm-manager/ui-types": "2.46.6", "react": "^17.0.1" }, "devDependencies": { diff --git a/scm-ui/ui-forms/package.json b/scm-ui/ui-forms/package.json index e9a167a6ba..1ae3ebd8f1 100644 --- a/scm-ui/ui-forms/package.json +++ b/scm-ui/ui-forms/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/ui-forms", "private": false, - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "main": "build/index.js", "types": "build/index.d.ts", "module": "build/index.mjs", @@ -16,7 +16,7 @@ "@scm-manager/eslint-config": "^2.16.0", "@scm-manager/prettier-config": "^2.10.1", "@scm-manager/tsconfig": "^2.13.0", - "@scm-manager/ui-styles": "2.46.6-SNAPSHOT", + "@scm-manager/ui-styles": "2.46.6", "@storybook/addon-actions": "^6.5.10", "@storybook/addon-essentials": "^6.5.10", "@storybook/addon-interactions": "^6.5.10", @@ -32,7 +32,7 @@ "tsup": "^6.2.3" }, "peerDependencies": { - "@scm-manager/ui-components": "2.46.6-SNAPSHOT", + "@scm-manager/ui-components": "2.46.6", "classnames": "^2.3.1", "react": "17", "react-hook-form": "7", @@ -41,9 +41,9 @@ "styled-components": "5" }, "dependencies": { - "@scm-manager/ui-buttons": "2.46.6-SNAPSHOT", - "@scm-manager/ui-overlays": "2.46.6-SNAPSHOT", - "@scm-manager/ui-api": "2.46.6-SNAPSHOT", + "@scm-manager/ui-buttons": "2.46.6", + "@scm-manager/ui-overlays": "2.46.6", + "@scm-manager/ui-api": "2.46.6", "@headlessui/react": "^1.7.15", "@radix-ui/react-slot": "^1.0.1", "@radix-ui/react-visually-hidden": "^1.0.3" diff --git a/scm-ui/ui-layout/package.json b/scm-ui/ui-layout/package.json index fb1c103906..231dd695d9 100644 --- a/scm-ui/ui-layout/package.json +++ b/scm-ui/ui-layout/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/ui-layout", "private": false, - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "main": "build/index.js", "types": "build/index.d.ts", "module": "build/index.mjs", @@ -16,8 +16,8 @@ "@scm-manager/eslint-config": "^2.16.0", "@scm-manager/prettier-config": "^2.10.1", "@scm-manager/tsconfig": "^2.13.0", - "@scm-manager/ui-styles": "2.46.6-SNAPSHOT", - "@scm-manager/ui-overlays": "2.46.6-SNAPSHOT", + "@scm-manager/ui-styles": "2.46.6", + "@scm-manager/ui-overlays": "2.46.6", "@storybook/addon-actions": "^6.5.10", "@storybook/addon-docs": "^6.5.14", "@storybook/addon-essentials": "^6.5.10", @@ -37,7 +37,7 @@ "react": "17", "react-dom": "17", "styled-components": "5", - "@scm-manager/ui-components": "2.46.6-SNAPSHOT" + "@scm-manager/ui-components": "2.46.6" }, "prettier": "@scm-manager/prettier-config", "eslintConfig": { @@ -48,6 +48,6 @@ }, "dependencies": { "@radix-ui/react-collapsible": "^1.0.3", - "@scm-manager/ui-buttons": "2.46.6-SNAPSHOT" + "@scm-manager/ui-buttons": "2.46.6" } } \ No newline at end of file diff --git a/scm-ui/ui-legacy/package.json b/scm-ui/ui-legacy/package.json index cd2ff624ac..04cc046aa5 100644 --- a/scm-ui/ui-legacy/package.json +++ b/scm-ui/ui-legacy/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-legacy", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "private": true, "main": "build/index.js", "module": "build/index.mjs", @@ -12,9 +12,9 @@ "test": "jest --passWithNoTests" }, "dependencies": { - "@scm-manager/ui-api": "2.46.6-SNAPSHOT", - "@scm-manager/ui-extensions": "2.46.6-SNAPSHOT", - "@scm-manager/ui-types": "2.46.6-SNAPSHOT", + "@scm-manager/ui-api": "2.46.6", + "@scm-manager/ui-extensions": "2.46.6", + "@scm-manager/ui-types": "2.46.6", "react": "^17.0.1", "react-redux": "^5.0.7", "redux": "^4.0.0" diff --git a/scm-ui/ui-modules/package.json b/scm-ui/ui-modules/package.json index b5c010824f..d047aee826 100644 --- a/scm-ui/ui-modules/package.json +++ b/scm-ui/ui-modules/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-modules", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "private": true, "main": "build/index.js", "module": "build/index.mjs", diff --git a/scm-ui/ui-overlays/package.json b/scm-ui/ui-overlays/package.json index 8e2fbf8dc7..172088d692 100644 --- a/scm-ui/ui-overlays/package.json +++ b/scm-ui/ui-overlays/package.json @@ -1,7 +1,7 @@ { "name": "@scm-manager/ui-overlays", "private": false, - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "main": "build/index.js", "types": "build/index.d.ts", "module": "build/index.mjs", @@ -16,7 +16,7 @@ "@scm-manager/eslint-config": "^2.16.0", "@scm-manager/prettier-config": "^2.10.1", "@scm-manager/tsconfig": "^2.13.0", - "@scm-manager/ui-styles": "2.46.6-SNAPSHOT", + "@scm-manager/ui-styles": "2.46.6", "@storybook/addon-actions": "^6.5.10", "@storybook/addon-docs": "^6.5.14", "@storybook/addon-essentials": "^6.5.10", @@ -44,7 +44,7 @@ "@radix-ui/react-dropdown-menu": "2.0.1", "@radix-ui/react-popover": "1.0.6", "@radix-ui/react-tooltip": "1.0.2", - "@scm-manager/ui-buttons": "2.46.6-SNAPSHOT" + "@scm-manager/ui-buttons": "2.46.6" }, "prettier": "@scm-manager/prettier-config", "eslintConfig": { diff --git a/scm-ui/ui-plugins/package.json b/scm-ui/ui-plugins/package.json index e5c43b28ce..b10ce992c3 100644 --- a/scm-ui/ui-plugins/package.json +++ b/scm-ui/ui-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-plugins", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "license": "MIT", "bin": { "ui-plugins": "./bin/ui-plugins.js" @@ -12,13 +12,13 @@ "react-router-dom": "^5.3.1", "react-i18next": "11", "styled-components": "^5.3.5", - "@scm-manager/ui-api": "2.46.6-SNAPSHOT", - "@scm-manager/ui-extensions": "2.46.6-SNAPSHOT", - "@scm-manager/ui-components": "2.46.6-SNAPSHOT", - "@scm-manager/ui-forms": "2.46.6-SNAPSHOT", - "@scm-manager/ui-buttons": "2.46.6-SNAPSHOT", - "@scm-manager/ui-overlays": "2.46.6-SNAPSHOT", - "@scm-manager/ui-layout": "2.46.6-SNAPSHOT", + "@scm-manager/ui-api": "2.46.6", + "@scm-manager/ui-extensions": "2.46.6", + "@scm-manager/ui-components": "2.46.6", + "@scm-manager/ui-forms": "2.46.6", + "@scm-manager/ui-buttons": "2.46.6", + "@scm-manager/ui-overlays": "2.46.6", + "@scm-manager/ui-layout": "2.46.6", "classnames": "^2.2.6", "query-string": "6.14.1", "redux": "^4.0.0", @@ -33,9 +33,9 @@ "@scm-manager/plugin-scripts": "^1.2.2", "@scm-manager/prettier-config": "^2.10.1", "@scm-manager/tsconfig": "^2.13.0", - "@scm-manager/ui-scripts": "2.46.6-SNAPSHOT", - "@scm-manager/ui-tests": "2.46.6-SNAPSHOT", - "@scm-manager/ui-types": "2.46.6-SNAPSHOT", + "@scm-manager/ui-scripts": "2.46.6", + "@scm-manager/ui-tests": "2.46.6", + "@scm-manager/ui-types": "2.46.6", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3", "@types/fetch-mock": "^7.3.1", diff --git a/scm-ui/ui-polyfill/package.json b/scm-ui/ui-polyfill/package.json index 8b8cec2a66..b57cf59251 100644 --- a/scm-ui/ui-polyfill/package.json +++ b/scm-ui/ui-polyfill/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-polyfill", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "Polyfills for SCM-Manager UI", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-scripts/package.json b/scm-ui/ui-scripts/package.json index 5ed902e15b..a59d14b527 100644 --- a/scm-ui/ui-scripts/package.json +++ b/scm-ui/ui-scripts/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-scripts", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "Build scripts for SCM-Manager", "main": "src/index.js", "author": "Sebastian Sdorra ", diff --git a/scm-ui/ui-shortcuts/package.json b/scm-ui/ui-shortcuts/package.json index c4f1d6b8e1..164aae51c9 100644 --- a/scm-ui/ui-shortcuts/package.json +++ b/scm-ui/ui-shortcuts/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-shortcuts", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "license": "MIT", "private": true, "main": "build/index.js", diff --git a/scm-ui/ui-styles/package.json b/scm-ui/ui-styles/package.json index d3973e4cc1..f6aef773fb 100644 --- a/scm-ui/ui-styles/package.json +++ b/scm-ui/ui-styles/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-styles", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "Styles for SCM-Manager", "main": "src/scm.scss", "license": "MIT", diff --git a/scm-ui/ui-syntaxhighlighting/package.json b/scm-ui/ui-syntaxhighlighting/package.json index 9846d8427f..9fcadd19cc 100644 --- a/scm-ui/ui-syntaxhighlighting/package.json +++ b/scm-ui/ui-syntaxhighlighting/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-syntaxhighlighting", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "private": true, "main": "src/index.ts", "scripts": { @@ -13,7 +13,7 @@ "depcheck": "depcheck" }, "dependencies": { - "@scm-manager/ui-text": "2.46.6-SNAPSHOT", + "@scm-manager/ui-text": "2.46.6", "nanoid": "^3.3.2", "react-diff-view": "^2.4.10", "refractor": "^4.5.0" diff --git a/scm-ui/ui-tests/package.json b/scm-ui/ui-tests/package.json index 91a78334fc..0eb79e3d8c 100644 --- a/scm-ui/ui-tests/package.json +++ b/scm-ui/ui-tests/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-tests", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "UI-Tests helpers", "author": "Sebastian Sdorra ", "license": "MIT", diff --git a/scm-ui/ui-text/package.json b/scm-ui/ui-text/package.json index 6ca132e0a6..1f54c38fd2 100644 --- a/scm-ui/ui-text/package.json +++ b/scm-ui/ui-text/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-text", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "private": true, "main": "build/index.js", "module": "build/index.mjs", diff --git a/scm-ui/ui-types/package.json b/scm-ui/ui-types/package.json index f04c053639..62ab6acbfe 100644 --- a/scm-ui/ui-types/package.json +++ b/scm-ui/ui-types/package.json @@ -1,6 +1,6 @@ { "name": "@scm-manager/ui-types", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "description": "Typescript types for SCM-Manager related Objects", "main": "src/index.ts", "files": [ diff --git a/scm-ui/ui-webapp/package.json b/scm-ui/ui-webapp/package.json index b2c9273e80..76946a1332 100644 --- a/scm-ui/ui-webapp/package.json +++ b/scm-ui/ui-webapp/package.json @@ -1,21 +1,21 @@ { "name": "@scm-manager/ui-webapp", - "version": "2.46.6-SNAPSHOT", + "version": "2.46.6", "private": true, "dependencies": { "@headlessui/react": "^1.7.15", - "@scm-manager/ui-components": "2.46.6-SNAPSHOT", - "@scm-manager/ui-api": "2.46.6-SNAPSHOT", - "@scm-manager/ui-extensions": "2.46.6-SNAPSHOT", - "@scm-manager/ui-modules": "2.46.6-SNAPSHOT", - "@scm-manager/ui-syntaxhighlighting": "2.46.6-SNAPSHOT", - "@scm-manager/ui-text": "2.46.6-SNAPSHOT", - "@scm-manager/ui-shortcuts": "2.46.6-SNAPSHOT", - "@scm-manager/ui-legacy": "2.46.6-SNAPSHOT", - "@scm-manager/ui-forms": "2.46.6-SNAPSHOT", - "@scm-manager/ui-buttons": "2.46.6-SNAPSHOT", - "@scm-manager/ui-overlays": "2.46.6-SNAPSHOT", - "@scm-manager/ui-layout": "2.46.6-SNAPSHOT", + "@scm-manager/ui-components": "2.46.6", + "@scm-manager/ui-api": "2.46.6", + "@scm-manager/ui-extensions": "2.46.6", + "@scm-manager/ui-modules": "2.46.6", + "@scm-manager/ui-syntaxhighlighting": "2.46.6", + "@scm-manager/ui-text": "2.46.6", + "@scm-manager/ui-shortcuts": "2.46.6", + "@scm-manager/ui-legacy": "2.46.6", + "@scm-manager/ui-forms": "2.46.6", + "@scm-manager/ui-buttons": "2.46.6", + "@scm-manager/ui-overlays": "2.46.6", + "@scm-manager/ui-layout": "2.46.6", "classnames": "^2.2.5", "history": "^4.10.1", "i18next": "21", @@ -43,7 +43,7 @@ "devDependencies": { "@scm-manager/eslint-config": "^2.17.0", "@scm-manager/jest-preset": "^2.13.0", - "@scm-manager/ui-tests": "2.46.6-SNAPSHOT", + "@scm-manager/ui-tests": "2.46.6", "@testing-library/react": "^12.1.5", "@types/classnames": "^2.2.9", "@types/enzyme": "^3.10.3",