Compare commits

..

No commits in common. "1db7736e5c3190ad53f48f841fdb203e3841c7b2" and "fc2e9d83588571960fbf9d5322c8bbba34843c52" have entirely different histories.

7 changed files with 6350 additions and 5907 deletions

View File

@ -1,12 +1,12 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins { plugins {
id("org.springframework.boot") version "3.0.2" apply false id("org.springframework.boot") version "3.0.0" apply false
id("io.spring.dependency-management") version "1.1.0" apply false id("io.spring.dependency-management") version "1.1.0" apply false
kotlin("jvm") version "1.8.0" apply false kotlin("jvm") version "1.7.22" apply false
kotlin("plugin.spring") version "1.8.0" apply false kotlin("plugin.spring") version "1.7.22" apply false
kotlin("plugin.jpa") version "1.8.0" apply false kotlin("plugin.jpa") version "1.7.22" apply false
id("com.netflix.dgs.codegen") version "5.6.6" apply false id("com.netflix.dgs.codegen") version "5.6.3" apply false
} }
allprojects { allprojects {

View File

@ -4,12 +4,12 @@
"private": true, "private": true,
"dependencies": { "dependencies": {
"@apollo/client": "^3.4.5", "@apollo/client": "^3.4.5",
"antd": "^5.0.0", "antd": "^4.16.10",
"graphql": "^16.0.0", "graphql": "^15.5.1",
"react": "^18.0.0", "react": "^17.0.2",
"react-dom": "^18.0.0", "react-dom": "^17.0.2",
"subscriptions-transport-ws": "^0.11.0", "subscriptions-transport-ws": "^0.9.19",
"web-vitals": "^3.0.0" "web-vitals": "^1.0.1"
}, },
"scripts": { "scripts": {
"start": "craco start", "start": "craco start",
@ -36,16 +36,16 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"@craco/craco": "^7.0.0", "@craco/craco": "^6.2.0",
"craco-less": "^2.0.0", "craco-less": "^1.18.0",
"@testing-library/jest-dom": "^5.11.4", "@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^13.0.0", "@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10", "@testing-library/user-event": "^12.1.10",
"@types/jest": "^29.0.0", "@types/jest": "^26.0.15",
"@types/node": "^18.0.0", "@types/node": "^12.0.0",
"@types/react": "^18.0.0", "@types/react": "^17.0.0",
"@types/react-dom": "^18.0.0", "@types/react-dom": "^17.0.0",
"react-scripts": "5.0.1", "react-scripts": "4.0.3",
"typescript": "^4.1.2" "typescript": "^4.1.2"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ plugins {
dependencies { dependencies {
api(project(":cubetiq-security-web")) api(project(":cubetiq-security-web"))
implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:6.0.0")) implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:5.4.5"))
implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter") implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter")
runtimeOnly("com.netflix.graphql.dgs:graphql-dgs-subscriptions-websockets-autoconfigure") runtimeOnly("com.netflix.graphql.dgs:graphql-dgs-subscriptions-websockets-autoconfigure")

View File

@ -33,4 +33,3 @@ dgs:
graphql: graphql:
graphiql: graphiql:
enabled: true enabled: true
path: /graphiql

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View File

@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}