From 91fc7661bc88d636cd36489e37726c2b9234b85c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Mon, 2 Mar 2026 16:00:19 +0100 Subject: [PATCH 01/25] fix: add missing git templates --- .gitignore | 2 +- .husky/commit-msg | 2 ++ .husky/pre-commit | 2 ++ package.json | 1 + 4 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 .husky/commit-msg create mode 100755 .husky/pre-commit diff --git a/.gitignore b/.gitignore index cd48c722f5..1c3f70a8d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ node_modules -.husky +.husky/_ .idea .vscode .zed diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100755 index 0000000000..b147a8bfb8 --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +pnpm exec commitlint --edit "$1" diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000000..26fc3643d4 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +pnpm exec lint-staged diff --git a/package.json b/package.json index b45c0ee007..4925aa36ef 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "build": "pnpm -r run build", "test": "pnpm run -r --parallel test", "generate": "pnpm buf generate --path proto/wg/cosmo/platform --path proto/wg/cosmo/notifications --path proto/wg/cosmo/common --path proto/wg/cosmo/node --template buf.ts.gen.yaml && pnpm -r run --filter './connect' build", + "prepare": "husky install", "husky": "husky install", "lint:fix": "pnpm run -r --parallel lint:fix", "clean": "rm -rf node_modules **/node_modules dist **/dist gen **/gen .next **/.next tsconfig.tsbuildinfo **/tsconfig.tsbuildinfo .eslintcache **/.eslintcache", From 0c923ea77c798321854b93f35ae2287225315f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:02:22 +0100 Subject: [PATCH 02/25] feat: format script for JS/TS-based packages --- CONTRIBUTING.md | 23 +++++++++++++++-------- admission-server/package.json | 5 +++-- cdn-server/package.json | 4 ++-- cli/package.json | 5 +++-- client-tests/apollo-js/package.json | 1 + composition/package.json | 5 +++-- controlplane/package.json | 7 ++++--- package.json | 2 +- playground/package.json | 3 ++- protographic/package.json | 4 ++-- shared/package.json | 3 ++- studio/package.json | 3 ++- 12 files changed, 40 insertions(+), 25 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 822a175af5..78e4bd0e2c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -65,8 +65,8 @@ use ( We use [conventionalcommits](https://www.conventionalcommits.org/en/v1.0.0-beta.2/#why-use-conventional-commits) for changelog generation and more structured commit messages. -In order to enforce this standard we use a linter on pre-commit hook. This functionality is provided by [husky](https://typicode.github.io/husky/#/). -In some setup, you have to tell husky where to find your package manager or binaries. Here is the file `.huskyrc` you have to put in your user home directory. +If you want to enforce this standard, you can set up a pre-commit hook. This functionality is provided by [husky](https://typicode.github.io/husky/#/). Run `pnpm husky` to install pre-commit hooks which format code and check commit message format. +In some setup, you have to tell husky where to find your package manager or binaries. Here is the file `husky.sh` which you should put in your home's configuration directory (`~/.config/husky/husky.sh`). ```bash export NVM_DIR=/home/starptech/.nvm @@ -170,18 +170,22 @@ We manage multiple compose files: We use Codecov for code coverage. Code coverage is used for both PRs and also our default branch main. #### Workaround for uploading to main + Codecov relies on commit hashes to map code to Codecov reports, however unfortunately we use "Squash Merge", which means that the HEAD of any merged PR is never present on main post-merge, leading to no code coverage uploaded for main (which is used as a base for comparisons). In order to circumvent this we do the following steps: -* Upload Codecov reports from PR runs to GitHub as artifacts for the PR's HEAD commit -* Upon merge we find the PR and it's HEAD commit using the GitHub rest API -* We find the github artifact from this commit hash -* We then upload it again, but this time it acts as if it was uploaded from main + +- Upload Codecov reports from PR runs to GitHub as artifacts for the PR's HEAD commit +- Upon merge we find the PR and it's HEAD commit using the GitHub rest API +- We find the github artifact from this commit hash +- We then upload it again, but this time it acts as if it was uploaded from main #### Adding new projects + When you add a new project (i.e. a subfolder in the cosmo repository root), if you wish to add code coverage for it you can follow these steps: -* Add a flag in the codecov.yaml for your project with the folder name, this is important so coverage does not get overwritten (for example if a router pr gets merged, cli coverage won't be set to empty for that commit) +- Add a flag in the codecov.yaml for your project with the folder name, this is important so coverage does not get overwritten (for example if a router pr gets merged, cli coverage won't be set to empty for that commit) + ```yaml flags: router: @@ -189,10 +193,13 @@ flags: - router carryforward: true ``` -* You should be running tests in ci for your project via a GH Workflow, You need to add the GH Workflow name to `codecov-post-merge.yaml`, the line you are looking for will look something like this + +- You should be running tests in ci for your project via a GH Workflow, You need to add the GH Workflow name to `codecov-post-merge.yaml`, the line you are looking for will look something like this + ```yaml workflow-paths: .github/workflows/cli-ci.yaml,.github/workflows/router-ci.yaml, ``` + Ensure you add the full relative path from the cosmo repository root and it is comma-separated, e.g.: for graphqlmetrics `,.github/workflows/graphqlmetrics-ci.yaml` **Clean up a compose stack before starting another one!** diff --git a/admission-server/package.json b/admission-server/package.json index 42abeee42e..da8bcc972f 100644 --- a/admission-server/package.json +++ b/admission-server/package.json @@ -6,7 +6,8 @@ ], "scripts": { "dev": "tsx watch src/index.ts", - "build": "rm -rf dist && tsc" + "build": "rm -rf dist && tsc", + "format": "prettier -w -c ." }, "dependencies": { "@hono/node-server": "1.13.7", @@ -19,4 +20,4 @@ "tsx": "^4.16.0", "typescript": "^5.3.2" } -} \ No newline at end of file +} diff --git a/cdn-server/package.json b/cdn-server/package.json index 407c201b25..060bbdc500 100644 --- a/cdn-server/package.json +++ b/cdn-server/package.json @@ -19,7 +19,7 @@ "build": "rm -rf dist && tsc", "start": "tsx src/index.ts", "lint": "eslint --cache && prettier -c src", - "format:fix": "prettier --write -c src", + "format": "prettier -w -c .", "postversion": "name=$(jq -r .name package.json); version=$(jq -r .version package.json); gh workflow run image-release.yml -F name=$name -F workingDirectory=cdn-server -F tag=$version -F dockerContext=." }, "dependencies": { @@ -36,4 +36,4 @@ "tsx": "^4.16.0", "typescript": "5.5.2" } -} \ No newline at end of file +} diff --git a/cli/package.json b/cli/package.json index 51e9c48f38..e00ae8be98 100644 --- a/cli/package.json +++ b/cli/package.json @@ -28,7 +28,8 @@ "test": "pnpm lint && vitest run test/", "coverage": "vitest run test/ --coverage", "lint": "eslint --cache --ext .ts,.mjs,.cjs . && prettier -c src", - "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && prettier --write -c src", + "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && pnpm format", + "format": "prettier -w -c .", "e2e": "bun test e2e/" }, "keywords": [ @@ -109,4 +110,4 @@ "vitest": "3.2.4" }, "gitHead": "c37aed755e1b19ed91d30f9b5f7041e15c56901a" -} \ No newline at end of file +} diff --git a/client-tests/apollo-js/package.json b/client-tests/apollo-js/package.json index 5fd7b91c70..7f65bfe202 100644 --- a/client-tests/apollo-js/package.json +++ b/client-tests/apollo-js/package.json @@ -4,6 +4,7 @@ "description": "Apollo Client tests for GraphQL", "main": "index.js", "scripts": { + "format": "prettier -w -c .", "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage" diff --git a/composition/package.json b/composition/package.json index 16cb5e6dfd..7b8ef53cb3 100644 --- a/composition/package.json +++ b/composition/package.json @@ -19,8 +19,9 @@ "test": "vitest run", "test:core": "vitest run --exclude ./tests/unstaged-tests", "test:coverage": "vitest run --coverage", - "lint": "prettier --check src tests", - "lint:fix": "prettier --write src tests", + "lint": "prettier --check .", + "lint:fix": "pnpm format", + "format": "prettier -w -c .", "postversion": "node ./scripts/get-composition-version.mjs" }, "main": "./dist/index.js", diff --git a/controlplane/package.json b/controlplane/package.json index 58e70b50e9..2ff0c005a2 100644 --- a/controlplane/package.json +++ b/controlplane/package.json @@ -23,10 +23,11 @@ "db:check": "drizzle-kit check --config=drizzle.config.ts", "db:drop": "drizzle-kit drop --config=drizzle.config.ts", "start": "NODE_ENV=production node dist/index.js", - "test": "pnpm lint && tsc -p tsconfig.test.json && vitest run --reporter=default --reporter=hanging-process", - "test:coverage": "pnpm lint && tsc -p tsconfig.test.json && vitest run --reporter=default --reporter=hanging-process --coverage", + "test": "tsc -p tsconfig.test.json && vitest run --reporter=default --reporter=hanging-process", + "test:coverage": "tsc -p tsconfig.test.json && vitest run --reporter=default --reporter=hanging-process --coverage", "lint": "eslint --cache --ext .ts,.mjs,.cjs . && prettier -c src", - "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && prettier --write -c src", + "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && pnpm format", + "format": "prettier -w -c .", "migrate": "pnpm db:migrate && pnpm ch:migrate", "drizzle:up": "drizzle-kit up", "ch:down": "dbmate -d \"./clickhouse/migrations\" down", diff --git a/package.json b/package.json index 4925aa36ef..c434bbbfc6 100644 --- a/package.json +++ b/package.json @@ -21,9 +21,9 @@ "build": "pnpm -r run build", "test": "pnpm run -r --parallel test", "generate": "pnpm buf generate --path proto/wg/cosmo/platform --path proto/wg/cosmo/notifications --path proto/wg/cosmo/common --path proto/wg/cosmo/node --template buf.ts.gen.yaml && pnpm -r run --filter './connect' build", - "prepare": "husky install", "husky": "husky install", "lint:fix": "pnpm run -r --parallel lint:fix", + "format": "pnpm run -r --parlallel format", "clean": "rm -rf node_modules **/node_modules dist **/dist gen **/gen .next **/.next tsconfig.tsbuildinfo **/tsconfig.tsbuildinfo .eslintcache **/.eslintcache", "release-preview": "lerna publish --ignore-scripts --dry-run", "release": "lerna publish -y", diff --git a/playground/package.json b/playground/package.json index 0cd2a1752e..a97b17cfb4 100644 --- a/playground/package.json +++ b/playground/package.json @@ -33,7 +33,8 @@ "build": "tsc && vite build", "preview": "vite preview", "copy-html": "cp dist/index.html ../router/internal/graphiql/graphiql.html", - "build:router": "VITE_SINGLE_FILE_OUTPUT=true pnpm build && pnpm copy-html" + "build:router": "VITE_SINGLE_FILE_OUTPUT=true pnpm build && pnpm copy-html", + "format": "prettier -w -c ." }, "dependencies": { "@heroicons/react": "^2.0.18", diff --git a/protographic/package.json b/protographic/package.json index cec9b6949b..1d40cc99f6 100644 --- a/protographic/package.json +++ b/protographic/package.json @@ -25,9 +25,9 @@ "test:update": "vitest run -u", "build": "tsc", "bench": "vitest bench --run", - "format": "prettier --write src tests", "lint": "eslint --cache --ext .ts,.mjs,.cjs . && prettier -c src", - "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && prettier --write -c src" + "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && pnpm format", + "format": "prettier -w -c ." }, "devDependencies": { "@types/lodash-es": "4.17.12", diff --git a/shared/package.json b/shared/package.json index c1b676f22c..4280891bb7 100644 --- a/shared/package.json +++ b/shared/package.json @@ -19,7 +19,8 @@ "test": "pnpm lint && vitest run", "test:update": "vitest run -u", "lint": "eslint --cache --ext .ts,.mjs,.cjs . && prettier -c src", - "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && prettier --write -c src", + "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && pnpm format", + "format": "prettier -w -c .", "generate-subgraph-configs": "tsx test/testdata/subgraphConfigGenerator.ts" }, "keywords": [ diff --git a/studio/package.json b/studio/package.json index 40e7fdf2a7..d82ba0e3f6 100644 --- a/studio/package.json +++ b/studio/package.json @@ -17,7 +17,8 @@ "lint": "next lint", "test": "vitest run --reporter=default --reporter=hanging-process", "test:coverage": "vitest run --reporter=default --reporter=hanging-process --coverage", - "lint:fix": "next lint --fix", + "lint:fix": "next lint --fix && pnpm format", + "format": "prettier -w -c .", "preinstall": "npx only-allow pnpm", "postinstall": "pnpm run copy-monaco", "postversion": "name=$(jq -r .name package.json); version=$(jq -r .version package.json); gh workflow run image-release.yml -F name=$name -F workingDirectory=studio -F tag=$version -F dockerContext=." From a94f5be493dab8f80b963b8b6aefde182e6fbd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:03:53 +0100 Subject: [PATCH 03/25] feat: make task for formatting everything --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 03815cdc5f..eb9fa07f39 100644 --- a/Makefile +++ b/Makefile @@ -52,6 +52,9 @@ infra-debug-down-v: infra-debug-up: docker compose -f docker-compose.yml --profile debug up --remove-orphans --detach +format-all: + pnpm -r --parallel format + seed: pnpm -r run --filter './controlplane' seed From 4f4bd3e5cb447ab731b6761f212e71fd912b43fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:05:25 +0100 Subject: [PATCH 04/25] fix: do not format migrations --- controlplane/.prettierignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 controlplane/.prettierignore diff --git a/controlplane/.prettierignore b/controlplane/.prettierignore new file mode 100644 index 0000000000..62616c7145 --- /dev/null +++ b/controlplane/.prettierignore @@ -0,0 +1 @@ +migrations/ From dfc9d442fe1037c7330841b8ffbfbdda12d42235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:12:50 +0100 Subject: [PATCH 05/25] feat: add code formatting scripts for Go-based packages --- Makefile | 15 +++++++++++++++ aws-lambda-router/package.json | 3 +++ graphqlmetrics/package.json | 1 + package.json | 3 +++ pnpm-workspace.yaml | 4 ++++ router-plugin/package.json | 3 +++ router/package.json | 1 + 7 files changed, 30 insertions(+) diff --git a/Makefile b/Makefile index eb9fa07f39..49942744fb 100644 --- a/Makefile +++ b/Makefile @@ -55,6 +55,21 @@ infra-debug-up: format-all: pnpm -r --parallel format +format: + @package="$(word 2,$(MAKECMDGOALS))"; \ + if [ -z "$$package" ]; then \ + echo "Usage: make format "; \ + exit 1; \ + fi; \ + pnpm --filter "./$$package" --fail-if-no-match run format + +ifneq ($(filter format,$(MAKECMDGOALS)),) +FORMAT_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS)) +.PHONY: $(FORMAT_ARGS) +$(FORMAT_ARGS): + @: +endif + seed: pnpm -r run --filter './controlplane' seed diff --git a/aws-lambda-router/package.json b/aws-lambda-router/package.json index d4232c84b7..6f71e5b894 100644 --- a/aws-lambda-router/package.json +++ b/aws-lambda-router/package.json @@ -11,6 +11,9 @@ "aws-lambda", "serverless" ], + "scripts": { + "format": "find . -type f -name '*.go' -not -path './gen/*' -not -path './vendor/*' -exec gofmt -w {} +" + }, "author": { "name": "WunderGraph Maintainers", "email": "info@wundergraph.com" diff --git a/graphqlmetrics/package.json b/graphqlmetrics/package.json index 10c8b49e66..5eee6dfe0e 100644 --- a/graphqlmetrics/package.json +++ b/graphqlmetrics/package.json @@ -9,6 +9,7 @@ "cosmo" ], "scripts": { + "format": "find . -type f -name '*.go' -not -path './gen/*' -not -path './vendor/*' -exec gofmt -w {} +", "postversion": "name=$(jq -r .name package.json); version=$(jq -r .version package.json); gh workflow run image-release.yml -F name=$name -F workingDirectory=graphqlmetrics -F tag=$version -F dockerContext=graphqlmetrics" }, "author": { diff --git a/package.json b/package.json index c434bbbfc6..cb6c8d21b7 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,9 @@ "pnpm": "9" }, "lint-staged": { + "**/*.go": [ + "sh -c 'for file in \"$@\"; do case \"$file\" in */gen/*|*/vendor/*) ;; *) gofmt -w \"$file\" ;; esac; done' --" + ], "*.{js,jsx,ts,tsx,md,mdx,yml,yaml,css,json,graphql,gql}": [ "prettier --write" ] diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 6ce39c1983..99d4c1c3c8 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,10 +1,14 @@ packages: + - aws-lambda-router - cli - composition + - graphqlmetrics - composition-go/shim - controlplane - controlplane/emails - proto + - router + - router-plugin - shared - studio - connect diff --git a/router-plugin/package.json b/router-plugin/package.json index a2a0a73d5c..9bc3542551 100644 --- a/router-plugin/package.json +++ b/router-plugin/package.json @@ -9,6 +9,9 @@ "cosmo", "plugin" ], + "scripts": { + "format": "find . -type f -name '*.go' -not -path './gen/*' -not -path './vendor/*' -exec gofmt -w {} +" + }, "author": { "name": "WunderGraph Maintainers", "email": "info@wundergraph.com" diff --git a/router/package.json b/router/package.json index e92a3bdf1c..051e468833 100644 --- a/router/package.json +++ b/router/package.json @@ -9,6 +9,7 @@ "cosmo" ], "scripts": { + "format": "find . -type f -name '*.go' -not -path './gen/*' -not -path './vendor/*' -exec gofmt -w {} +", "postversion": "name=$(jq -r .name package.json); version=$(jq -r .version package.json); gh workflow run image-release.yml -F name=$name -F workingDirectory=router -F tag=$version -F dockerContext=router" }, "author": { From be3048273319b24eb7e519b7972e498edec8dab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:24:39 +0100 Subject: [PATCH 06/25] fix: add missing workspace entries --- pnpm-lock.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dc3292e303..f2b32e6895 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -123,6 +123,8 @@ importers: specifier: ^5.3.2 version: 5.3.2 + aws-lambda-router: {} + cdn-server: dependencies: '@aws-sdk/client-s3': @@ -718,6 +720,8 @@ importers: specifier: 4.0.3 version: 4.0.3(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + graphqlmetrics: {} + playground: dependencies: '@heroicons/react': @@ -927,6 +931,10 @@ importers: specifier: ^3.2.4 version: 3.2.4(@types/debug@4.1.12)(@types/node@20.12.12)(jsdom@27.2.0)(terser@5.44.1) + router: {} + + router-plugin: {} + shared: dependencies: '@bufbuild/protobuf': From 12ef8b85f9c20c7a80c7ad590aca1bcbb8a6ab5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:29:44 +0100 Subject: [PATCH 07/25] fix: review fixes --- client-tests/apollo-js/package.json | 2 +- package.json | 2 +- studio/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client-tests/apollo-js/package.json b/client-tests/apollo-js/package.json index 7f65bfe202..b2ddde9c60 100644 --- a/client-tests/apollo-js/package.json +++ b/client-tests/apollo-js/package.json @@ -4,7 +4,7 @@ "description": "Apollo Client tests for GraphQL", "main": "index.js", "scripts": { - "format": "prettier -w -c .", + "format": "prettier -w .", "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage" diff --git a/package.json b/package.json index cb6c8d21b7..0d25f62c57 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "generate": "pnpm buf generate --path proto/wg/cosmo/platform --path proto/wg/cosmo/notifications --path proto/wg/cosmo/common --path proto/wg/cosmo/node --template buf.ts.gen.yaml && pnpm -r run --filter './connect' build", "husky": "husky install", "lint:fix": "pnpm run -r --parallel lint:fix", - "format": "pnpm run -r --parlallel format", + "format": "pnpm run -r --parallel format", "clean": "rm -rf node_modules **/node_modules dist **/dist gen **/gen .next **/.next tsconfig.tsbuildinfo **/tsconfig.tsbuildinfo .eslintcache **/.eslintcache", "release-preview": "lerna publish --ignore-scripts --dry-run", "release": "lerna publish -y", diff --git a/studio/package.json b/studio/package.json index d82ba0e3f6..a54fb4b7ad 100644 --- a/studio/package.json +++ b/studio/package.json @@ -18,7 +18,7 @@ "test": "vitest run --reporter=default --reporter=hanging-process", "test:coverage": "vitest run --reporter=default --reporter=hanging-process --coverage", "lint:fix": "next lint --fix && pnpm format", - "format": "prettier -w -c .", + "format": "prettier -w .", "preinstall": "npx only-allow pnpm", "postinstall": "pnpm run copy-monaco", "postversion": "name=$(jq -r .name package.json); version=$(jq -r .version package.json); gh workflow run image-release.yml -F name=$name -F workingDirectory=studio -F tag=$version -F dockerContext=." From 4db4574a6240a4537a1d96c7ba83bba907f1e812 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:35:40 +0100 Subject: [PATCH 08/25] fix: ignore composition coverage reports --- .prettierignore | 5 ----- composition/.prettierignore | 2 ++ 2 files changed, 2 insertions(+), 5 deletions(-) create mode 100644 composition/.prettierignore diff --git a/.prettierignore b/.prettierignore index 23a834c442..93f9206d68 100644 --- a/.prettierignore +++ b/.prettierignore @@ -22,8 +22,3 @@ logs CHANGELOG.md .husky - - -controlplane/migrations - -composition/tests/unstaged-tests \ No newline at end of file diff --git a/composition/.prettierignore b/composition/.prettierignore new file mode 100644 index 0000000000..01d63b12cb --- /dev/null +++ b/composition/.prettierignore @@ -0,0 +1,2 @@ +tests/unstaged-tests +coverage/ From 53a4d1604194c34de0be507acaf8324da7073c5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:36:04 +0100 Subject: [PATCH 09/25] fix: format composition files --- composition/CHANGELOG.md | 195 +++++++++++++++++++------------------ composition/README.md | 31 +++--- composition/tsconfig.json | 2 +- composition/vite.config.ts | 2 +- 4 files changed, 118 insertions(+), 112 deletions(-) diff --git a/composition/CHANGELOG.md b/composition/CHANGELOG.md index f48e9f8332..229f99171b 100644 --- a/composition/CHANGELOG.md +++ b/composition/CHANGELOG.md @@ -1,4 +1,5 @@ # Change Log + Binaries are attached to the github release otherwise all images can be found [here](https://github.com/orgs/wundergraph/packages?repo_name=cosmo) All notable changes to this project will be documented in this file. @@ -8,31 +9,31 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* handle fully external, unresolvable entity keys ([#2568](https://github.com/wundergraph/cosmo/issues/2568)) ([3168ab0](https://github.com/wundergraph/cosmo/commit/3168ab04eba3ca2c8ba353a8e7e6419fd62ae1c7)) (@Aenimus) +- handle fully external, unresolvable entity keys ([#2568](https://github.com/wundergraph/cosmo/issues/2568)) ([3168ab0](https://github.com/wundergraph/cosmo/commit/3168ab04eba3ca2c8ba353a8e7e6419fd62ae1c7)) (@Aenimus) ## [0.51.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.51.0...@wundergraph/composition@0.51.1) (2026-02-12) ### Bug Fixes -* do not re-evaluate internal graph nodes if all its descendants a… ([#2499](https://github.com/wundergraph/cosmo/issues/2499)) ([2fa2dfd](https://github.com/wundergraph/cosmo/commit/2fa2dfd35b78b0e84fa18dcb99590cdee5abec08)) (@Aenimus) +- do not re-evaluate internal graph nodes if all its descendants a… ([#2499](https://github.com/wundergraph/cosmo/issues/2499)) ([2fa2dfd](https://github.com/wundergraph/cosmo/commit/2fa2dfd35b78b0e84fa18dcb99590cdee5abec08)) (@Aenimus) # [0.51.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.50.0...@wundergraph/composition@0.51.0) (2026-02-09) ### Features -* update @graphql-tools/utils version to 11.0.0 ([#2495](https://github.com/wundergraph/cosmo/issues/2495)) ([526b1a4](https://github.com/wundergraph/cosmo/commit/526b1a498ae709b67ec37626bfc665babafd8aa8)) (@thisisnithin) +- update @graphql-tools/utils version to 11.0.0 ([#2495](https://github.com/wundergraph/cosmo/issues/2495)) ([526b1a4](https://github.com/wundergraph/cosmo/commit/526b1a498ae709b67ec37626bfc665babafd8aa8)) (@thisisnithin) # [0.50.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.49.2...@wundergraph/composition@0.50.0) (2026-01-20) ### Features -* add an explanation on how to deal when adding a value to a shared enum ([#2456](https://github.com/wundergraph/cosmo/issues/2456)) ([57dc1b9](https://github.com/wundergraph/cosmo/commit/57dc1b90e07d09a25f8887c46eb73622362ff752)) (@alepane21) +- add an explanation on how to deal when adding a value to a shared enum ([#2456](https://github.com/wundergraph/cosmo/issues/2456)) ([57dc1b9](https://github.com/wundergraph/cosmo/commit/57dc1b90e07d09a25f8887c46eb73622362ff752)) (@alepane21) ## [0.49.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.49.1...@wundergraph/composition@0.49.2) (2026-01-16) ### Bug Fixes -* operation validation false positives ([#2460](https://github.com/wundergraph/cosmo/issues/2460)) ([057e762](https://github.com/wundergraph/cosmo/commit/057e7621c777b961854bd0472e73a5da0e9e5186)) (@Aenimus) +- operation validation false positives ([#2460](https://github.com/wundergraph/cosmo/issues/2460)) ([057e762](https://github.com/wundergraph/cosmo/commit/057e7621c777b961854bd0472e73a5da0e9e5186)) (@Aenimus) ## [0.49.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.49.0...@wundergraph/composition@0.49.1) (2026-01-09) @@ -42,13 +43,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add coverage for other services with tests ([#2405](https://github.com/wundergraph/cosmo/issues/2405)) ([a53bb35](https://github.com/wundergraph/cosmo/commit/a53bb351336dc400b8b28b235a28725704a83919)) (@SkArchon) +- add coverage for other services with tests ([#2405](https://github.com/wundergraph/cosmo/issues/2405)) ([a53bb35](https://github.com/wundergraph/cosmo/commit/a53bb351336dc400b8b28b235a28725704a83919)) (@SkArchon) ## [0.48.5](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.48.4...@wundergraph/composition@0.48.5) (2025-11-20) ### Bug Fixes -* support __typename in field sets ([#2348](https://github.com/wundergraph/cosmo/issues/2348)) ([c25f3f3](https://github.com/wundergraph/cosmo/commit/c25f3f3f0ab282976dcae1852695326f92b48ca7)) (@Aenimus) +- support \_\_typename in field sets ([#2348](https://github.com/wundergraph/cosmo/issues/2348)) ([c25f3f3](https://github.com/wundergraph/cosmo/commit/c25f3f3f0ab282976dcae1852695326f92b48ca7)) (@Aenimus) ## [0.48.4](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.48.3...@wundergraph/composition@0.48.4) (2025-11-17) @@ -62,7 +63,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* revert propagating schema extension node to router ([#2328](https://github.com/wundergraph/cosmo/issues/2328)) ([dcb6b3b](https://github.com/wundergraph/cosmo/commit/dcb6b3b680dfc616f6e86968f62c6494f83ee8ed)) (@Aenimus) +- revert propagating schema extension node to router ([#2328](https://github.com/wundergraph/cosmo/issues/2328)) ([dcb6b3b](https://github.com/wundergraph/cosmo/commit/dcb6b3b680dfc616f6e86968f62c6494f83ee8ed)) (@Aenimus) ## [0.48.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.48.0...@wundergraph/composition@0.48.1) (2025-11-12) @@ -72,7 +73,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* initial support for field resolvers in connect ([#2290](https://github.com/wundergraph/cosmo/issues/2290)) ([6f28c5d](https://github.com/wundergraph/cosmo/commit/6f28c5d203ef4fd95db83dfe22143e565df6d463)) (@Noroth) +- initial support for field resolvers in connect ([#2290](https://github.com/wundergraph/cosmo/issues/2290)) ([6f28c5d](https://github.com/wundergraph/cosmo/commit/6f28c5d203ef4fd95db83dfe22143e565df6d463)) (@Noroth) ## [0.47.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.47.1...@wundergraph/composition@0.47.2) (2025-10-29) @@ -82,13 +83,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* handle internal graph edge case with shared root field and nested entities ([#2298](https://github.com/wundergraph/cosmo/issues/2298)) ([3a50788](https://github.com/wundergraph/cosmo/commit/3a50788408b268e914d17b1f4a16e252022d2306)) (@wilsonrivera) +- handle internal graph edge case with shared root field and nested entities ([#2298](https://github.com/wundergraph/cosmo/issues/2298)) ([3a50788](https://github.com/wundergraph/cosmo/commit/3a50788408b268e914d17b1f4a16e252022d2306)) (@wilsonrivera) # [0.47.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.46.4...@wundergraph/composition@0.47.0) (2025-10-17) ### Features -* expose subgraph defined directives ([#2287](https://github.com/wundergraph/cosmo/issues/2287)) ([d77a760](https://github.com/wundergraph/cosmo/commit/d77a760fc42d9d537ce2a9af9144a2fd05bb5bf6)) (@wilsonrivera) +- expose subgraph defined directives ([#2287](https://github.com/wundergraph/cosmo/issues/2287)) ([d77a760](https://github.com/wundergraph/cosmo/commit/d77a760fc42d9d537ce2a9af9144a2fd05bb5bf6)) (@wilsonrivera) ## [0.46.4](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.46.3...@wundergraph/composition@0.46.4) (2025-10-16) @@ -98,7 +99,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* propagate [@openfed](https://github.com/openfed)__requireFetchReasons on Interfaces ([#2256](https://github.com/wundergraph/cosmo/issues/2256)) ([2a31f95](https://github.com/wundergraph/cosmo/commit/2a31f95f2c184bab5f9b02fef27ba2961c9f9e8c)) (@Aenimus) +- propagate [@openfed](https://github.com/openfed)\_\_requireFetchReasons on Interfaces ([#2256](https://github.com/wundergraph/cosmo/issues/2256)) ([2a31f95](https://github.com/wundergraph/cosmo/commit/2a31f95f2c184bab5f9b02fef27ba2961c9f9e8c)) (@Aenimus) ## [0.46.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.46.1...@wundergraph/composition@0.46.2) (2025-10-03) @@ -108,35 +109,35 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* internal graph bugs ([#2240](https://github.com/wundergraph/cosmo/issues/2240)) ([7f2e3f4](https://github.com/wundergraph/cosmo/commit/7f2e3f46a777640e3146f5950cac6b6d46688b17)) (@Aenimus) +- internal graph bugs ([#2240](https://github.com/wundergraph/cosmo/issues/2240)) ([7f2e3f4](https://github.com/wundergraph/cosmo/commit/7f2e3f46a777640e3146f5950cac6b6d46688b17)) (@Aenimus) # [0.46.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.45.0...@wundergraph/composition@0.46.0) (2025-09-22) ### Bug Fixes -* print client schema with select directives ([#2232](https://github.com/wundergraph/cosmo/issues/2232)) ([fe41836](https://github.com/wundergraph/cosmo/commit/fe4183640a008b328807f6d0f8a6557ec7b03245)) (@Aenimus) +- print client schema with select directives ([#2232](https://github.com/wundergraph/cosmo/issues/2232)) ([fe41836](https://github.com/wundergraph/cosmo/commit/fe4183640a008b328807f6d0f8a6557ec7b03245)) (@Aenimus) ### Features -* add [@one](https://github.com/one)Of composition support ([#2225](https://github.com/wundergraph/cosmo/issues/2225)) ([9a55be8](https://github.com/wundergraph/cosmo/commit/9a55be87e97c2f130cb783873f069eb5bda9ceb1)) (@Aenimus) +- add [@one](https://github.com/one)Of composition support ([#2225](https://github.com/wundergraph/cosmo/issues/2225)) ([9a55be8](https://github.com/wundergraph/cosmo/commit/9a55be87e97c2f130cb783873f069eb5bda9ceb1)) (@Aenimus) # [0.45.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.44.0...@wundergraph/composition@0.45.0) (2025-09-16) ### Features -* add [@semantic](https://github.com/semantic)NonNull support ([#2221](https://github.com/wundergraph/cosmo/issues/2221)) ([933d9f7](https://github.com/wundergraph/cosmo/commit/933d9f784c09ab7c396c48e469bdf73089a9e4ce)) (@Aenimus) +- add [@semantic](https://github.com/semantic)NonNull support ([#2221](https://github.com/wundergraph/cosmo/issues/2221)) ([933d9f7](https://github.com/wundergraph/cosmo/commit/933d9f784c09ab7c396c48e469bdf73089a9e4ce)) (@Aenimus) # [0.44.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.43.3...@wundergraph/composition@0.44.0) (2025-09-10) ### Features -* implement openfed__requireFetchReasons ([#2170](https://github.com/wundergraph/cosmo/issues/2170)) ([cfb097f](https://github.com/wundergraph/cosmo/commit/cfb097fb6ccc29a81cfca55fec6b71fdf6e1b61c)) (@Aenimus) +- implement openfed\_\_requireFetchReasons ([#2170](https://github.com/wundergraph/cosmo/issues/2170)) ([cfb097f](https://github.com/wundergraph/cosmo/commit/cfb097fb6ccc29a81cfca55fec6b71fdf6e1b61c)) (@Aenimus) ## [0.43.3](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.43.2...@wundergraph/composition@0.43.3) (2025-08-18) ### Bug Fixes -* propagate [@external](https://github.com/external) interface object fields ([#2145](https://github.com/wundergraph/cosmo/issues/2145)) ([783f875](https://github.com/wundergraph/cosmo/commit/783f875850e83f13bccb8b89faf2a87e69304537)) (@Aenimus) +- propagate [@external](https://github.com/external) interface object fields ([#2145](https://github.com/wundergraph/cosmo/issues/2145)) ([783f875](https://github.com/wundergraph/cosmo/commit/783f875850e83f13bccb8b89faf2a87e69304537)) (@Aenimus) ## [0.43.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.43.1...@wundergraph/composition@0.43.2) (2025-08-07) @@ -146,13 +147,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* interface object implementing entity interface ([#2117](https://github.com/wundergraph/cosmo/issues/2117)) ([e999a8c](https://github.com/wundergraph/cosmo/commit/e999a8c8e34dd39f5e6718503e2f5f6bd1903f3e)) (@Aenimus) +- interface object implementing entity interface ([#2117](https://github.com/wundergraph/cosmo/issues/2117)) ([e999a8c](https://github.com/wundergraph/cosmo/commit/e999a8c8e34dd39f5e6718503e2f5f6bd1903f3e)) (@Aenimus) # [0.43.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.42.2...@wundergraph/composition@0.43.0) (2025-07-21) ### Features -* add disable resolvability validation flag ([#2065](https://github.com/wundergraph/cosmo/issues/2065)) ([0c920cc](https://github.com/wundergraph/cosmo/commit/0c920cc95065099667fc378b50e9278e8a99c286)) (@Aenimus) +- add disable resolvability validation flag ([#2065](https://github.com/wundergraph/cosmo/issues/2065)) ([0c920cc](https://github.com/wundergraph/cosmo/commit/0c920cc95065099667fc378b50e9278e8a99c286)) (@Aenimus) ## [0.42.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.42.1...@wundergraph/composition@0.42.2) (2025-07-03) @@ -166,61 +167,61 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add isVersionTwo to SubgraphConfig ([#1997](https://github.com/wundergraph/cosmo/issues/1997)) ([09baaa8](https://github.com/wundergraph/cosmo/commit/09baaa8a3d4c963f1278fe672b3d55bce1346294)) (@wilsonrivera) +- add isVersionTwo to SubgraphConfig ([#1997](https://github.com/wundergraph/cosmo/issues/1997)) ([09baaa8](https://github.com/wundergraph/cosmo/commit/09baaa8a3d4c963f1278fe672b3d55bce1346294)) (@wilsonrivera) ## [0.41.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.41.0...@wundergraph/composition@0.41.1) (2025-06-26) ### Bug Fixes -* force release ([#1991](https://github.com/wundergraph/cosmo/issues/1991)) ([ea07353](https://github.com/wundergraph/cosmo/commit/ea07353b82fcbecedfe07b97bef109f28b2e286c)) (@alepane21) +- force release ([#1991](https://github.com/wundergraph/cosmo/issues/1991)) ([ea07353](https://github.com/wundergraph/cosmo/commit/ea07353b82fcbecedfe07b97bef109f28b2e286c)) (@alepane21) # [0.41.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.40.0...@wundergraph/composition@0.41.0) (2025-06-26) ### Features -* add redis pubsub support to EDFS ([#1810](https://github.com/wundergraph/cosmo/issues/1810)) ([8f294b6](https://github.com/wundergraph/cosmo/commit/8f294b62c14e9cae7e1ad85e65b0ca3ada0bcfbb)) (@alepane21) +- add redis pubsub support to EDFS ([#1810](https://github.com/wundergraph/cosmo/issues/1810)) ([8f294b6](https://github.com/wundergraph/cosmo/commit/8f294b62c14e9cae7e1ad85e65b0ca3ada0bcfbb)) (@alepane21) # [0.40.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.39.2...@wundergraph/composition@0.40.0) (2025-06-02) ### Features -* add named type kind to data ([#1921](https://github.com/wundergraph/cosmo/issues/1921)) ([cfda0ae](https://github.com/wundergraph/cosmo/commit/cfda0aed8214a073ebd040a07290304095b9d26d)) (@Aenimus) +- add named type kind to data ([#1921](https://github.com/wundergraph/cosmo/issues/1921)) ([cfda0ae](https://github.com/wundergraph/cosmo/commit/cfda0aed8214a073ebd040a07290304095b9d26d)) (@Aenimus) ## [0.39.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.39.1...@wundergraph/composition@0.39.2) (2025-05-24) ### Bug Fixes -* multiple interface object implementations ([#1892](https://github.com/wundergraph/cosmo/issues/1892)) ([1d0229c](https://github.com/wundergraph/cosmo/commit/1d0229c1b625c7ed275fac73a7a9e7fc32e7ee59)) (@Aenimus) +- multiple interface object implementations ([#1892](https://github.com/wundergraph/cosmo/issues/1892)) ([1d0229c](https://github.com/wundergraph/cosmo/commit/1d0229c1b625c7ed275fac73a7a9e7fc32e7ee59)) (@Aenimus) ## [0.39.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.39.0...@wundergraph/composition@0.39.1) (2025-05-02) ### Bug Fixes -* vite vulnerability ([#1823](https://github.com/wundergraph/cosmo/issues/1823)) ([05d5300](https://github.com/wundergraph/cosmo/commit/05d53004612958fe1dab2c292ec89ac4ac686b61)) (@JivusAyrus) +- vite vulnerability ([#1823](https://github.com/wundergraph/cosmo/issues/1823)) ([05d5300](https://github.com/wundergraph/cosmo/commit/05d53004612958fe1dab2c292ec89ac4ac686b61)) (@JivusAyrus) # [0.39.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.38.1...@wundergraph/composition@0.39.0) (2025-04-15) ### Features -* track subgraph names for unions and scalars ([#1788](https://github.com/wundergraph/cosmo/issues/1788)) ([de8ae0c](https://github.com/wundergraph/cosmo/commit/de8ae0cfcbdfc296cbfc54448a540c4613fcb632)) (@thisisnithin) +- track subgraph names for unions and scalars ([#1788](https://github.com/wundergraph/cosmo/issues/1788)) ([de8ae0c](https://github.com/wundergraph/cosmo/commit/de8ae0cfcbdfc296cbfc54448a540c4613fcb632)) (@thisisnithin) ## [0.38.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.38.0...@wundergraph/composition@0.38.1) (2025-03-28) ### Bug Fixes -* authorization directive cascading ([#1733](https://github.com/wundergraph/cosmo/issues/1733)) ([0199fb5](https://github.com/wundergraph/cosmo/commit/0199fb5f88104a585b74a79638f54f1a3b812436)) (@Aenimus) +- authorization directive cascading ([#1733](https://github.com/wundergraph/cosmo/issues/1733)) ([0199fb5](https://github.com/wundergraph/cosmo/commit/0199fb5f88104a585b74a79638f54f1a3b812436)) (@Aenimus) # [0.38.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.37.3...@wundergraph/composition@0.38.0) (2025-03-25) ### Features -* add map of key field sets to which some key field coords contri… ([#1717](https://github.com/wundergraph/cosmo/issues/1717)) ([02f05e2](https://github.com/wundergraph/cosmo/commit/02f05e28e76078a098ddc4a8562d392faa74e1f9)) (@Aenimus) +- add map of key field sets to which some key field coords contri… ([#1717](https://github.com/wundergraph/cosmo/issues/1717)) ([02f05e2](https://github.com/wundergraph/cosmo/commit/02f05e28e76078a098ddc4a8562d392faa74e1f9)) (@Aenimus) ## [0.37.3](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.37.2...@wundergraph/composition@0.37.3) (2025-03-19) ### Bug Fixes -* meta data upsertion ([#1707](https://github.com/wundergraph/cosmo/issues/1707)) ([42649f2](https://github.com/wundergraph/cosmo/commit/42649f2c81d787fcb364329f70d15d27fe8e1cbf)) (@Aenimus) +- meta data upsertion ([#1707](https://github.com/wundergraph/cosmo/issues/1707)) ([42649f2](https://github.com/wundergraph/cosmo/commit/42649f2c81d787fcb364329f70d15d27fe8e1cbf)) (@Aenimus) ## [0.37.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.37.1...@wundergraph/composition@0.37.2) (2025-03-11) @@ -230,73 +231,73 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* ignore [@external](https://github.com/external) on entity extension key fields ([#1611](https://github.com/wundergraph/cosmo/issues/1611)) ([b10cf69](https://github.com/wundergraph/cosmo/commit/b10cf69a7df2c5305e66fe744514a605c9a06505)) (@Aenimus) +- ignore [@external](https://github.com/external) on entity extension key fields ([#1611](https://github.com/wundergraph/cosmo/issues/1611)) ([b10cf69](https://github.com/wundergraph/cosmo/commit/b10cf69a7df2c5305e66fe744514a605c9a06505)) (@Aenimus) # [0.37.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.36.1...@wundergraph/composition@0.37.0) (2025-02-17) ### Features -* add composition versioning ([#1575](https://github.com/wundergraph/cosmo/issues/1575)) ([ee32cbb](https://github.com/wundergraph/cosmo/commit/ee32cbb3dbe7c46fa984920bbd95e4a00d01c9c3)) (@Aenimus) +- add composition versioning ([#1575](https://github.com/wundergraph/cosmo/issues/1575)) ([ee32cbb](https://github.com/wundergraph/cosmo/commit/ee32cbb3dbe7c46fa984920bbd95e4a00d01c9c3)) (@Aenimus) ## [0.36.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.36.0...@wundergraph/composition@0.36.1) (2025-02-06) ### Bug Fixes -* allow integer to Float input coercion ([#1572](https://github.com/wundergraph/cosmo/issues/1572)) ([51c3d8e](https://github.com/wundergraph/cosmo/commit/51c3d8e11b6360f583f1809e2360c652a91659c6)) (@Aenimus) +- allow integer to Float input coercion ([#1572](https://github.com/wundergraph/cosmo/issues/1572)) ([51c3d8e](https://github.com/wundergraph/cosmo/commit/51c3d8e11b6360f583f1809e2360c652a91659c6)) (@Aenimus) # [0.36.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.35.0...@wundergraph/composition@0.36.0) (2025-02-05) ### Features -* implement [@openfed](https://github.com/openfed)__configureDescription ([#1568](https://github.com/wundergraph/cosmo/issues/1568)) ([28398c1](https://github.com/wundergraph/cosmo/commit/28398c19afb33dfad816c3779024d6edb5047c84)) (@Aenimus) +- implement [@openfed](https://github.com/openfed)\_\_configureDescription ([#1568](https://github.com/wundergraph/cosmo/issues/1568)) ([28398c1](https://github.com/wundergraph/cosmo/commit/28398c19afb33dfad816c3779024d6edb5047c84)) (@Aenimus) # [0.35.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.34.0...@wundergraph/composition@0.35.0) (2025-01-24) ### Features -* add compatibility handshake between router and execution config ([#1534](https://github.com/wundergraph/cosmo/issues/1534)) ([4b8d60a](https://github.com/wundergraph/cosmo/commit/4b8d60ac48e1777069d68407ce72ea1d813155ca)) (@Aenimus) +- add compatibility handshake between router and execution config ([#1534](https://github.com/wundergraph/cosmo/issues/1534)) ([4b8d60a](https://github.com/wundergraph/cosmo/commit/4b8d60ac48e1777069d68407ce72ea1d813155ca)) (@Aenimus) # [0.34.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.33.1...@wundergraph/composition@0.34.0) (2025-01-08) ### Features -* expose type data and record subgraphs for enums ([#1495](https://github.com/wundergraph/cosmo/issues/1495)) ([9e13f28](https://github.com/wundergraph/cosmo/commit/9e13f28c0a90b0d2f335c9b31f35e728c4a1799c)) (@thisisnithin) +- expose type data and record subgraphs for enums ([#1495](https://github.com/wundergraph/cosmo/issues/1495)) ([9e13f28](https://github.com/wundergraph/cosmo/commit/9e13f28c0a90b0d2f335c9b31f35e728c4a1799c)) (@thisisnithin) ## [0.33.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.33.0...@wundergraph/composition@0.33.1) (2024-12-18) ### Bug Fixes -* edfs__NatsStreamConfiguration validation ([#1456](https://github.com/wundergraph/cosmo/issues/1456)) ([d453eab](https://github.com/wundergraph/cosmo/commit/d453eab5c72dedcb4d9d1c3f5adb11865f7017af)) (@alepane21) +- edfs\_\_NatsStreamConfiguration validation ([#1456](https://github.com/wundergraph/cosmo/issues/1456)) ([d453eab](https://github.com/wundergraph/cosmo/commit/d453eab5c72dedcb4d9d1c3f5adb11865f7017af)) (@alepane21) # [0.33.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.32.1...@wundergraph/composition@0.33.0) (2024-12-17) ### Features -* edfs nats create bespoke consumer ([#1443](https://github.com/wundergraph/cosmo/issues/1443)) ([af97af7](https://github.com/wundergraph/cosmo/commit/af97af71af0eb2de20dd5a0e0bc8cc454f1b0e38)) (@alepane21) +- edfs nats create bespoke consumer ([#1443](https://github.com/wundergraph/cosmo/issues/1443)) ([af97af7](https://github.com/wundergraph/cosmo/commit/af97af71af0eb2de20dd5a0e0bc8cc454f1b0e38)) (@alepane21) ## [0.32.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.32.0...@wundergraph/composition@0.32.1) (2024-12-06) ### Bug Fixes -* update packages to address vulnerabilities ([#1411](https://github.com/wundergraph/cosmo/issues/1411)) ([7e84900](https://github.com/wundergraph/cosmo/commit/7e84900ed705164d69c99afcf5a698b3298fb6ad)) (@JivusAyrus) +- update packages to address vulnerabilities ([#1411](https://github.com/wundergraph/cosmo/issues/1411)) ([7e84900](https://github.com/wundergraph/cosmo/commit/7e84900ed705164d69c99afcf5a698b3298fb6ad)) (@JivusAyrus) # [0.32.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.31.1...@wundergraph/composition@0.32.0) (2024-11-21) ### Features -* add validation for V2 [@external](https://github.com/external) directive ([#1392](https://github.com/wundergraph/cosmo/issues/1392)) ([d2a8f73](https://github.com/wundergraph/cosmo/commit/d2a8f73e1c47b62a435ddacc3ceffd7d7abd7b9f)) (@Aenimus) +- add validation for V2 [@external](https://github.com/external) directive ([#1392](https://github.com/wundergraph/cosmo/issues/1392)) ([d2a8f73](https://github.com/wundergraph/cosmo/commit/d2a8f73e1c47b62a435ddacc3ceffd7d7abd7b9f)) (@Aenimus) ## [0.31.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.31.0...@wundergraph/composition@0.31.1) (2024-11-14) ### Bug Fixes -* add validation for edfs arguments ([#1368](https://github.com/wundergraph/cosmo/issues/1368)) ([3a90563](https://github.com/wundergraph/cosmo/commit/3a90563346a74e574c70848474aec3d5ce811b61)) (@alepane21) +- add validation for edfs arguments ([#1368](https://github.com/wundergraph/cosmo/issues/1368)) ([3a90563](https://github.com/wundergraph/cosmo/commit/3a90563346a74e574c70848474aec3d5ce811b61)) (@alepane21) # [0.31.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.30.1...@wundergraph/composition@0.31.0) (2024-11-13) ### Features -* add subgraph property to Warnings ([#1355](https://github.com/wundergraph/cosmo/issues/1355)) ([cacc0f3](https://github.com/wundergraph/cosmo/commit/cacc0f3c01673b7bf1ea8d20305d04939ca3351e)) (@Aenimus) +- add subgraph property to Warnings ([#1355](https://github.com/wundergraph/cosmo/issues/1355)) ([cacc0f3](https://github.com/wundergraph/cosmo/commit/cacc0f3c01673b7bf1ea8d20305d04939ca3351e)) (@Aenimus) ## [0.30.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.30.0...@wundergraph/composition@0.30.1) (2024-11-07) @@ -306,7 +307,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add missing indexes, upgrade drizzle ([#1309](https://github.com/wundergraph/cosmo/issues/1309)) ([5b022e5](https://github.com/wundergraph/cosmo/commit/5b022e51ca6c9378377a7fb35fc4b2ddaad1ad06)) (@StarpTech) +- add missing indexes, upgrade drizzle ([#1309](https://github.com/wundergraph/cosmo/issues/1309)) ([5b022e5](https://github.com/wundergraph/cosmo/commit/5b022e51ca6c9378377a7fb35fc4b2ddaad1ad06)) (@StarpTech) ## [0.29.4](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.29.3...@wundergraph/composition@0.29.4) (2024-10-24) @@ -316,13 +317,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* another case for ancestor tag propagation ([#1273](https://github.com/wundergraph/cosmo/issues/1273)) ([2ad85b0](https://github.com/wundergraph/cosmo/commit/2ad85b0d042acbbbfd3b92983ce68053a5e3945d)) (@Aenimus) +- another case for ancestor tag propagation ([#1273](https://github.com/wundergraph/cosmo/issues/1273)) ([2ad85b0](https://github.com/wundergraph/cosmo/commit/2ad85b0d042acbbbfd3b92983ce68053a5e3945d)) (@Aenimus) ## [0.29.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.29.1...@wundergraph/composition@0.29.2) (2024-10-15) ### Bug Fixes -* propagate ancestor exclude tags ([#1272](https://github.com/wundergraph/cosmo/issues/1272)) ([b008d45](https://github.com/wundergraph/cosmo/commit/b008d4510ca004839c2d746d05f4e3173b01d748)) (@Aenimus) +- propagate ancestor exclude tags ([#1272](https://github.com/wundergraph/cosmo/issues/1272)) ([b008d45](https://github.com/wundergraph/cosmo/commit/b008d4510ca004839c2d746d05f4e3173b01d748)) (@Aenimus) ## [0.29.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.29.0...@wundergraph/composition@0.29.1) (2024-10-14) @@ -332,7 +333,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add graph pruning ([#1133](https://github.com/wundergraph/cosmo/issues/1133)) ([b5718cd](https://github.com/wundergraph/cosmo/commit/b5718cd66bc7f0d14cb16b3d0a6d395e846968e4)) (@JivusAyrus) +- add graph pruning ([#1133](https://github.com/wundergraph/cosmo/issues/1133)) ([b5718cd](https://github.com/wundergraph/cosmo/commit/b5718cd66bc7f0d14cb16b3d0a6d395e846968e4)) (@JivusAyrus) ## [0.28.5](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.28.4...@wundergraph/composition@0.28.5) (2024-09-12) @@ -342,7 +343,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* allow entity extensions in EDGs ([#1111](https://github.com/wundergraph/cosmo/issues/1111)) ([080e98a](https://github.com/wundergraph/cosmo/commit/080e98a34a86b5b0998aa0b6ee55d3a23ddbdcfa)) (@Aenimus) +- allow entity extensions in EDGs ([#1111](https://github.com/wundergraph/cosmo/issues/1111)) ([080e98a](https://github.com/wundergraph/cosmo/commit/080e98a34a86b5b0998aa0b6ee55d3a23ddbdcfa)) (@Aenimus) ## [0.28.3](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.28.2...@wundergraph/composition@0.28.3) (2024-08-14) @@ -356,13 +357,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* provides with non-entity ([#989](https://github.com/wundergraph/cosmo/issues/989)) ([99f2101](https://github.com/wundergraph/cosmo/commit/99f210100af7ae3c8e68510457ded3f24403f2cd)) (@Aenimus) +- provides with non-entity ([#989](https://github.com/wundergraph/cosmo/issues/989)) ([99f2101](https://github.com/wundergraph/cosmo/commit/99f210100af7ae3c8e68510457ded3f24403f2cd)) (@Aenimus) # [0.28.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.27.2...@wundergraph/composition@0.28.0) (2024-07-31) ### Features -* rewrite resolvability checker ([#964](https://github.com/wundergraph/cosmo/issues/964)) ([c323f01](https://github.com/wundergraph/cosmo/commit/c323f01d52a853b04a3b130627a969313eceaf65)) (@Aenimus) +- rewrite resolvability checker ([#964](https://github.com/wundergraph/cosmo/issues/964)) ([c323f01](https://github.com/wundergraph/cosmo/commit/c323f01d52a853b04a3b130627a969313eceaf65)) (@Aenimus) ## [0.27.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.27.1...@wundergraph/composition@0.27.2) (2024-07-18) @@ -376,25 +377,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* feature flags ([#853](https://github.com/wundergraph/cosmo/issues/853)) ([5461bb5](https://github.com/wundergraph/cosmo/commit/5461bb5a529decd51a1b22be0a5301936b8ad392)) (@JivusAyrus) +- feature flags ([#853](https://github.com/wundergraph/cosmo/issues/853)) ([5461bb5](https://github.com/wundergraph/cosmo/commit/5461bb5a529decd51a1b22be0a5301936b8ad392)) (@JivusAyrus) ## [0.26.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.26.1...@wundergraph/composition@0.26.2) (2024-06-20) ### Bug Fixes -* inaccessible enum values should not cause enum inconsistency errors ([#878](https://github.com/wundergraph/cosmo/issues/878)) ([910e214](https://github.com/wundergraph/cosmo/commit/910e214878636cba5516e296e304d45862aba095)) (@Aenimus) +- inaccessible enum values should not cause enum inconsistency errors ([#878](https://github.com/wundergraph/cosmo/issues/878)) ([910e214](https://github.com/wundergraph/cosmo/commit/910e214878636cba5516e296e304d45862aba095)) (@Aenimus) ## [0.26.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.26.0...@wundergraph/composition@0.26.1) (2024-06-07) ### Bug Fixes -* entity field edge cases ([#860](https://github.com/wundergraph/cosmo/issues/860)) ([e4f553f](https://github.com/wundergraph/cosmo/commit/e4f553f1b586aad3bff2ac2e1897e22479dce068)) (@Aenimus) +- entity field edge cases ([#860](https://github.com/wundergraph/cosmo/issues/860)) ([e4f553f](https://github.com/wundergraph/cosmo/commit/e4f553f1b586aad3bff2ac2e1897e22479dce068)) (@Aenimus) # [0.26.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.25.1...@wundergraph/composition@0.26.0) (2024-06-06) ### Features -* handle creating, publishing, and updating Event-Driven Graphs ([#855](https://github.com/wundergraph/cosmo/issues/855)) ([fc2a8f2](https://github.com/wundergraph/cosmo/commit/fc2a8f20b97a17d0927c589f81df66ff7abf78c5)) (@Aenimus) +- handle creating, publishing, and updating Event-Driven Graphs ([#855](https://github.com/wundergraph/cosmo/issues/855)) ([fc2a8f2](https://github.com/wundergraph/cosmo/commit/fc2a8f20b97a17d0927c589f81df66ff7abf78c5)) (@Aenimus) ## [0.25.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.25.0...@wundergraph/composition@0.25.1) (2024-05-24) @@ -404,13 +405,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* implement subscription filter ([#780](https://github.com/wundergraph/cosmo/issues/780)) ([444a766](https://github.com/wundergraph/cosmo/commit/444a766b07de1998df52174a5a2e65086605e14c)) (@Aenimus) +- implement subscription filter ([#780](https://github.com/wundergraph/cosmo/issues/780)) ([444a766](https://github.com/wundergraph/cosmo/commit/444a766b07de1998df52174a5a2e65086605e14c)) (@Aenimus) # [0.24.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.23.2...@wundergraph/composition@0.24.0) (2024-05-14) ### Features -* refactor edfs and add kafka support ([#770](https://github.com/wundergraph/cosmo/issues/770)) ([d659067](https://github.com/wundergraph/cosmo/commit/d659067fd1d094621788f42bac6d121b0831ebb7)) (@StarpTech) +- refactor edfs and add kafka support ([#770](https://github.com/wundergraph/cosmo/issues/770)) ([d659067](https://github.com/wundergraph/cosmo/commit/d659067fd1d094621788f42bac6d121b0831ebb7)) (@StarpTech) ## [0.23.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.23.1...@wundergraph/composition@0.23.2) (2024-05-10) @@ -420,31 +421,31 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* ignore unknown router execution config fields ([#767](https://github.com/wundergraph/cosmo/issues/767)) ([649a0e1](https://github.com/wundergraph/cosmo/commit/649a0e1349820642491469890f9eaa7b1134e430)) (@Aenimus) +- ignore unknown router execution config fields ([#767](https://github.com/wundergraph/cosmo/issues/767)) ([649a0e1](https://github.com/wundergraph/cosmo/commit/649a0e1349820642491469890f9eaa7b1134e430)) (@Aenimus) # [0.23.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.22.1...@wundergraph/composition@0.23.0) (2024-05-03) ### Features -* support inaccessible and add foundation for contracts ([#764](https://github.com/wundergraph/cosmo/issues/764)) ([08a7db2](https://github.com/wundergraph/cosmo/commit/08a7db222ce1763ffe8062d3792c41e0c54b4224)) (@Aenimus) +- support inaccessible and add foundation for contracts ([#764](https://github.com/wundergraph/cosmo/issues/764)) ([08a7db2](https://github.com/wundergraph/cosmo/commit/08a7db222ce1763ffe8062d3792c41e0c54b4224)) (@Aenimus) ## [0.22.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.22.0...@wundergraph/composition@0.22.1) (2024-04-23) ### Reverts -* Revert "chore(release): Publish [skip ci]" ([feaf2ef](https://github.com/wundergraph/cosmo/commit/feaf2ef49321388daff7c4d9f4558cdda78b5744)) (@StarpTech) +- Revert "chore(release): Publish [skip ci]" ([feaf2ef](https://github.com/wundergraph/cosmo/commit/feaf2ef49321388daff7c4d9f4558cdda78b5744)) (@StarpTech) # [0.22.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.21.0...@wundergraph/composition@0.22.0) (2024-04-11) ### Features -* support entity targets (implicit keys) ([#724](https://github.com/wundergraph/cosmo/issues/724)) ([4aa2c86](https://github.com/wundergraph/cosmo/commit/4aa2c86961384d913e964437b7ea369accb891c7)) (@Aenimus) +- support entity targets (implicit keys) ([#724](https://github.com/wundergraph/cosmo/issues/724)) ([4aa2c86](https://github.com/wundergraph/cosmo/commit/4aa2c86961384d913e964437b7ea369accb891c7)) (@Aenimus) # [0.21.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.20.3...@wundergraph/composition@0.21.0) (2024-04-09) ### Features -* support edfs subscription stream/consumer; multiple subjects ([#685](https://github.com/wundergraph/cosmo/issues/685)) ([c70b2ae](https://github.com/wundergraph/cosmo/commit/c70b2aefd39c45b5f98eae8a3c43f639d56064b2)) (@Aenimus) +- support edfs subscription stream/consumer; multiple subjects ([#685](https://github.com/wundergraph/cosmo/issues/685)) ([c70b2ae](https://github.com/wundergraph/cosmo/commit/c70b2aefd39c45b5f98eae8a3c43f639d56064b2)) (@Aenimus) ## [0.20.3](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.20.2...@wundergraph/composition@0.20.3) (2024-04-03) @@ -454,7 +455,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* if root type is renamed, also rename all references ([#661](https://github.com/wundergraph/cosmo/issues/661)) ([d4252fa](https://github.com/wundergraph/cosmo/commit/d4252faae8fb30a03e77b9c73999cae8f976cbdc)) (@Aenimus) +- if root type is renamed, also rename all references ([#661](https://github.com/wundergraph/cosmo/issues/661)) ([d4252fa](https://github.com/wundergraph/cosmo/commit/d4252faae8fb30a03e77b9c73999cae8f976cbdc)) (@Aenimus) ## [0.20.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.20.0...@wundergraph/composition@0.20.1) (2024-03-16) @@ -464,13 +465,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add edfs validation; add event source name keys to config ([#624](https://github.com/wundergraph/cosmo/issues/624)) ([bf03bb8](https://github.com/wundergraph/cosmo/commit/bf03bb8fca1838fefebcb150f8924ec52fb8bdb5)) (@Aenimus) +- add edfs validation; add event source name keys to config ([#624](https://github.com/wundergraph/cosmo/issues/624)) ([bf03bb8](https://github.com/wundergraph/cosmo/commit/bf03bb8fca1838fefebcb150f8924ec52fb8bdb5)) (@Aenimus) # [0.19.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.18.5...@wundergraph/composition@0.19.0) (2024-03-11) ### Features -* add configurable schema linting ([#596](https://github.com/wundergraph/cosmo/issues/596)) ([c662485](https://github.com/wundergraph/cosmo/commit/c66248529c5bc13e795725c82ba50dbad79451ae)) (@JivusAyrus) +- add configurable schema linting ([#596](https://github.com/wundergraph/cosmo/issues/596)) ([c662485](https://github.com/wundergraph/cosmo/commit/c66248529c5bc13e795725c82ba50dbad79451ae)) (@JivusAyrus) ## [0.18.5](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.18.4...@wundergraph/composition@0.18.5) (2024-03-06) @@ -484,13 +485,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* validate schema definition/extension directives only... ([#571](https://github.com/wundergraph/cosmo/issues/571)) ([af76e4a](https://github.com/wundergraph/cosmo/commit/af76e4aaba98f8acab9d071edaaefdac105abe30)) (@Aenimus) +- validate schema definition/extension directives only... ([#571](https://github.com/wundergraph/cosmo/issues/571)) ([af76e4a](https://github.com/wundergraph/cosmo/commit/af76e4aaba98f8acab9d071edaaefdac105abe30)) (@Aenimus) ## [0.18.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.18.1...@wundergraph/composition@0.18.2) (2024-02-20) ### Bug Fixes -* regression composition of external directive applied to key fields ([#560](https://github.com/wundergraph/cosmo/issues/560)) ([d0a092a](https://github.com/wundergraph/cosmo/commit/d0a092a61b75489dc0c482905feb46dc8e0af364)) (@devsergiy) +- regression composition of external directive applied to key fields ([#560](https://github.com/wundergraph/cosmo/issues/560)) ([d0a092a](https://github.com/wundergraph/cosmo/commit/d0a092a61b75489dc0c482905feb46dc8e0af364)) (@devsergiy) ## [0.18.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.18.0...@wundergraph/composition@0.18.1) (2024-02-19) @@ -500,62 +501,62 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add authorization directive support for interfaces and interfac… ([#492](https://github.com/wundergraph/cosmo/issues/492)) ([0fc0cac](https://github.com/wundergraph/cosmo/commit/0fc0cac055b708209128c081a4643f85b9936766)) (@Aenimus) +- add authorization directive support for interfaces and interfac… ([#492](https://github.com/wundergraph/cosmo/issues/492)) ([0fc0cac](https://github.com/wundergraph/cosmo/commit/0fc0cac055b708209128c081a4643f85b9936766)) (@Aenimus) ## [0.17.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.17.0...@wundergraph/composition@0.17.1) (2024-02-02) ### Bug Fixes -* edge case where [@external](https://github.com/external) impacted field shareability checks ([#483](https://github.com/wundergraph/cosmo/issues/483)) ([b48bcb0](https://github.com/wundergraph/cosmo/commit/b48bcb0b091c4bb539e04e3861b07b210320d2af)) (@Aenimus) +- edge case where [@external](https://github.com/external) impacted field shareability checks ([#483](https://github.com/wundergraph/cosmo/issues/483)) ([b48bcb0](https://github.com/wundergraph/cosmo/commit/b48bcb0b091c4bb539e04e3861b07b210320d2af)) (@Aenimus) # [0.17.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.16.0...@wundergraph/composition@0.17.0) (2024-01-30) ### Features -* implement authorization directives ([#448](https://github.com/wundergraph/cosmo/issues/448)) ([181d89d](https://github.com/wundergraph/cosmo/commit/181d89d8e7dbf8eb23cddfa0b6c91c840a2986b0)) (@Aenimus) +- implement authorization directives ([#448](https://github.com/wundergraph/cosmo/issues/448)) ([181d89d](https://github.com/wundergraph/cosmo/commit/181d89d8e7dbf8eb23cddfa0b6c91c840a2986b0)) (@Aenimus) # [0.16.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.15.0...@wundergraph/composition@0.16.0) (2024-01-21) ### Features -* implement key resolvable false and implicit entities ([#445](https://github.com/wundergraph/cosmo/issues/445)) ([5685a43](https://github.com/wundergraph/cosmo/commit/5685a439c7a467e8f195948a5021a5511d91c870)) (@Aenimus) +- implement key resolvable false and implicit entities ([#445](https://github.com/wundergraph/cosmo/issues/445)) ([5685a43](https://github.com/wundergraph/cosmo/commit/5685a439c7a467e8f195948a5021a5511d91c870)) (@Aenimus) # [0.15.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.14.0...@wundergraph/composition@0.15.0) (2024-01-09) ### Features -* add support of interface objects ([#407](https://github.com/wundergraph/cosmo/issues/407)) ([3d7b0e1](https://github.com/wundergraph/cosmo/commit/3d7b0e1f55fd8087945923a8e4f5e7d66f6b559a)) (@Aenimus) +- add support of interface objects ([#407](https://github.com/wundergraph/cosmo/issues/407)) ([3d7b0e1](https://github.com/wundergraph/cosmo/commit/3d7b0e1f55fd8087945923a8e4f5e7d66f6b559a)) (@Aenimus) # [0.14.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.13.0...@wundergraph/composition@0.14.0) (2023-12-19) ### Features -* add NATS to the router ([#333](https://github.com/wundergraph/cosmo/issues/333)) ([9c8303b](https://github.com/wundergraph/cosmo/commit/9c8303ba6d49a3dea682ff598210b2891a8dd29c)) (@fiam) +- add NATS to the router ([#333](https://github.com/wundergraph/cosmo/issues/333)) ([9c8303b](https://github.com/wundergraph/cosmo/commit/9c8303ba6d49a3dea682ff598210b2891a8dd29c)) (@fiam) # [0.13.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.12.2...@wundergraph/composition@0.13.0) (2023-12-15) ### Features -* implement warnings foundation ([#373](https://github.com/wundergraph/cosmo/issues/373)) ([e8cdc0a](https://github.com/wundergraph/cosmo/commit/e8cdc0a1c3917ffc00804b6ad6c5b27cdcd8da5a)) (@Aenimus) +- implement warnings foundation ([#373](https://github.com/wundergraph/cosmo/issues/373)) ([e8cdc0a](https://github.com/wundergraph/cosmo/commit/e8cdc0a1c3917ffc00804b6ad6c5b27cdcd8da5a)) (@Aenimus) ## [0.12.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.12.1...@wundergraph/composition@0.12.2) (2023-12-14) ### Bug Fixes -* accept specifiedBy directive ([#367](https://github.com/wundergraph/cosmo/issues/367)) ([49926da](https://github.com/wundergraph/cosmo/commit/49926daa7f9d17434f2b42893ec6a8b613e5731e)) (@Aenimus) +- accept specifiedBy directive ([#367](https://github.com/wundergraph/cosmo/issues/367)) ([49926da](https://github.com/wundergraph/cosmo/commit/49926daa7f9d17434f2b42893ec6a8b613e5731e)) (@Aenimus) ## [0.12.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.12.0...@wundergraph/composition@0.12.1) (2023-12-13) ### Bug Fixes -* if a type has already been overridden, add the new field names t… ([#363](https://github.com/wundergraph/cosmo/issues/363)) ([fd0110d](https://github.com/wundergraph/cosmo/commit/fd0110d0069ff27a51a442ad8dc4133351f894af)) (@Aenimus) -* return error if override source and target are equivalent ([#362](https://github.com/wundergraph/cosmo/issues/362)) ([e12e4fa](https://github.com/wundergraph/cosmo/commit/e12e4fad0e9d7415e62d7ddbfb0fbafb9025251c)) (@Aenimus) +- if a type has already been overridden, add the new field names t… ([#363](https://github.com/wundergraph/cosmo/issues/363)) ([fd0110d](https://github.com/wundergraph/cosmo/commit/fd0110d0069ff27a51a442ad8dc4133351f894af)) (@Aenimus) +- return error if override source and target are equivalent ([#362](https://github.com/wundergraph/cosmo/issues/362)) ([e12e4fa](https://github.com/wundergraph/cosmo/commit/e12e4fad0e9d7415e62d7ddbfb0fbafb9025251c)) (@Aenimus) # [0.12.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.11.3...@wundergraph/composition@0.12.0) (2023-12-12) ### Features -* implement foundations for entity interfaces ([#359](https://github.com/wundergraph/cosmo/issues/359)) ([e2fcec7](https://github.com/wundergraph/cosmo/commit/e2fcec7aa3f286159a1ad21d606ead41cf1c883e)) (@Aenimus) +- implement foundations for entity interfaces ([#359](https://github.com/wundergraph/cosmo/issues/359)) ([e2fcec7](https://github.com/wundergraph/cosmo/commit/e2fcec7aa3f286159a1ad21d606ead41cf1c883e)) (@Aenimus) ## [0.11.3](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.11.2...@wundergraph/composition@0.11.3) (2023-11-29) @@ -565,20 +566,20 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* fixed bug in path finding logic ([#312](https://github.com/wundergraph/cosmo/issues/312)) ([14ae242](https://github.com/wundergraph/cosmo/commit/14ae24268cca5418f0b049aba946cf71c4a391bc)) (@Aenimus) -* handle missing query root type without fields ([#311](https://github.com/wundergraph/cosmo/issues/311)) ([6334fac](https://github.com/wundergraph/cosmo/commit/6334facd66a925fa07e8444570031b644979e9a3)) (@Aenimus) +- fixed bug in path finding logic ([#312](https://github.com/wundergraph/cosmo/issues/312)) ([14ae242](https://github.com/wundergraph/cosmo/commit/14ae24268cca5418f0b049aba946cf71c4a391bc)) (@Aenimus) +- handle missing query root type without fields ([#311](https://github.com/wundergraph/cosmo/issues/311)) ([6334fac](https://github.com/wundergraph/cosmo/commit/6334facd66a925fa07e8444570031b644979e9a3)) (@Aenimus) ## [0.11.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.11.0...@wundergraph/composition@0.11.1) (2023-11-28) ### Bug Fixes -* remove federation fields from renamed root types ([#304](https://github.com/wundergraph/cosmo/issues/304)) ([659cbaf](https://github.com/wundergraph/cosmo/commit/659cbaf9647075a16f3d00fb7c0ae2239a0174b7)) (@Aenimus) +- remove federation fields from renamed root types ([#304](https://github.com/wundergraph/cosmo/issues/304)) ([659cbaf](https://github.com/wundergraph/cosmo/commit/659cbaf9647075a16f3d00fb7c0ae2239a0174b7)) (@Aenimus) # [0.11.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.10.1...@wundergraph/composition@0.11.0) (2023-11-10) ### Features -* implement [@override](https://github.com/override) ([#246](https://github.com/wundergraph/cosmo/issues/246)) ([b6d0448](https://github.com/wundergraph/cosmo/commit/b6d044861e918f7c82931e1d5374fc7f6fc01daa)) (@Aenimus) +- implement [@override](https://github.com/override) ([#246](https://github.com/wundergraph/cosmo/issues/246)) ([b6d0448](https://github.com/wundergraph/cosmo/commit/b6d044861e918f7c82931e1d5374fc7f6fc01daa)) (@Aenimus) ## [0.10.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.10.0...@wundergraph/composition@0.10.1) (2023-10-26) @@ -588,37 +589,37 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* use metric data for dashboard stats ([#169](https://github.com/wundergraph/cosmo/issues/169)) ([e25fe32](https://github.com/wundergraph/cosmo/commit/e25fe32cdc053d658b0b0cdcd819b039be3341e6)) (@StarpTech) +- use metric data for dashboard stats ([#169](https://github.com/wundergraph/cosmo/issues/169)) ([e25fe32](https://github.com/wundergraph/cosmo/commit/e25fe32cdc053d658b0b0cdcd819b039be3341e6)) (@StarpTech) # [0.9.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.8.1...@wundergraph/composition@0.9.0) (2023-09-26) ### Features -* allow arguments in [@requires](https://github.com/requires) and [@provides](https://github.com/provides) ([#122](https://github.com/wundergraph/cosmo/issues/122)) ([2925f23](https://github.com/wundergraph/cosmo/commit/2925f23ba70dda5485f33c6950e979d956f46775)) (@Aenimus) +- allow arguments in [@requires](https://github.com/requires) and [@provides](https://github.com/provides) ([#122](https://github.com/wundergraph/cosmo/issues/122)) ([2925f23](https://github.com/wundergraph/cosmo/commit/2925f23ba70dda5485f33c6950e979d956f46775)) (@Aenimus) ## [0.8.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.8.0...@wundergraph/composition@0.8.1) (2023-09-20) ### Bug Fixes -* composition false flag ([#97](https://github.com/wundergraph/cosmo/issues/97)) ([a25cc7f](https://github.com/wundergraph/cosmo/commit/a25cc7f13adbf6f8e29113f49d364fc1f8bb9e81)) (@Aenimus) +- composition false flag ([#97](https://github.com/wundergraph/cosmo/issues/97)) ([a25cc7f](https://github.com/wundergraph/cosmo/commit/a25cc7f13adbf6f8e29113f49d364fc1f8bb9e81)) (@Aenimus) # [0.8.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.7.1...@wundergraph/composition@0.8.0) (2023-09-19) ### Features -* account for extension field arguments ([#94](https://github.com/wundergraph/cosmo/issues/94)) ([3ae8cbe](https://github.com/wundergraph/cosmo/commit/3ae8cbef79e9b5de9140f201cb867d05b9da7d31)) (@Aenimus) +- account for extension field arguments ([#94](https://github.com/wundergraph/cosmo/issues/94)) ([3ae8cbe](https://github.com/wundergraph/cosmo/commit/3ae8cbef79e9b5de9140f201cb867d05b9da7d31)) (@Aenimus) ## [0.7.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.7.0...@wundergraph/composition@0.7.1) (2023-09-18) ### Bug Fixes -* consider nested entity keys to be shareable ([#86](https://github.com/wundergraph/cosmo/issues/86)) ([98b68a1](https://github.com/wundergraph/cosmo/commit/98b68a1bcbd40fc2c5ec0b9866218b6854cf95ee)) (@Aenimus) +- consider nested entity keys to be shareable ([#86](https://github.com/wundergraph/cosmo/issues/86)) ([98b68a1](https://github.com/wundergraph/cosmo/commit/98b68a1bcbd40fc2c5ec0b9866218b6854cf95ee)) (@Aenimus) # [0.7.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.6.2...@wundergraph/composition@0.7.0) (2023-09-15) ### Features -* refactor FieldSet ([#71](https://github.com/wundergraph/cosmo/issues/71)) ([45224d6](https://github.com/wundergraph/cosmo/commit/45224d6b6a2d5a2689fd034947a1acd69572e9c6)) (@Aenimus) +- refactor FieldSet ([#71](https://github.com/wundergraph/cosmo/issues/71)) ([45224d6](https://github.com/wundergraph/cosmo/commit/45224d6b6a2d5a2689fd034947a1acd69572e9c6)) (@Aenimus) ## [0.6.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.6.1...@wundergraph/composition@0.6.2) (2023-09-11) @@ -628,26 +629,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* fix migration issues ([#47](https://github.com/wundergraph/cosmo/issues/47)) ([048398a](https://github.com/wundergraph/cosmo/commit/048398a3b5c4effaa1d7f6387c4ca02fbd28700c)) (@Aenimus) +- fix migration issues ([#47](https://github.com/wundergraph/cosmo/issues/47)) ([048398a](https://github.com/wundergraph/cosmo/commit/048398a3b5c4effaa1d7f6387c4ca02fbd28700c)) (@Aenimus) # [0.6.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.5.3...@wundergraph/composition@0.6.0) (2023-09-06) ### Features -* add argument configuration ([#10](https://github.com/wundergraph/cosmo/issues/10)) ([48d909f](https://github.com/wundergraph/cosmo/commit/48d909f4de954c2401b557ed6a9f58915388f679)) (@Aenimus) -* move to new connectrpc packages ([#32](https://github.com/wundergraph/cosmo/issues/32)) ([4c8423b](https://github.com/wundergraph/cosmo/commit/4c8423bf377b63af6a42a42d7d5fc1ce2db1f09e)) (@StarpTech) +- add argument configuration ([#10](https://github.com/wundergraph/cosmo/issues/10)) ([48d909f](https://github.com/wundergraph/cosmo/commit/48d909f4de954c2401b557ed6a9f58915388f679)) (@Aenimus) +- move to new connectrpc packages ([#32](https://github.com/wundergraph/cosmo/issues/32)) ([4c8423b](https://github.com/wundergraph/cosmo/commit/4c8423bf377b63af6a42a42d7d5fc1ce2db1f09e)) (@StarpTech) ## [0.5.3](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.5.2...@wundergraph/composition@0.5.3) (2023-08-31) ### Bug Fixes -* add caching for multigraph node paths ([#29](https://github.com/wundergraph/cosmo/issues/29)) ([106810b](https://github.com/wundergraph/cosmo/commit/106810b4f24118a707d1798c20d1c7e8975c9a8e)) (@Aenimus) +- add caching for multigraph node paths ([#29](https://github.com/wundergraph/cosmo/issues/29)) ([106810b](https://github.com/wundergraph/cosmo/commit/106810b4f24118a707d1798c20d1c7e8975c9a8e)) (@Aenimus) ## [0.5.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.5.1...@wundergraph/composition@0.5.2) (2023-08-29) ### Bug Fixes -* do not include _Service and _entities in the federated graph ([#19](https://github.com/wundergraph/cosmo/issues/19)) ([97201ed](https://github.com/wundergraph/cosmo/commit/97201ed337205d96e55d1524e471a9116d93a389)) (@JivusAyrus) +- do not include \_Service and \_entities in the federated graph ([#19](https://github.com/wundergraph/cosmo/issues/19)) ([97201ed](https://github.com/wundergraph/cosmo/commit/97201ed337205d96e55d1524e471a9116d93a389)) (@JivusAyrus) ## [0.5.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.5.0...@wundergraph/composition@0.5.1) (2023-08-28) @@ -657,7 +658,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) ## [0.4.2](https://github.com/wundergraph/cosmo/compare/@wundergraph/composition@0.3.0...@wundergraph/composition@0.4.2) (2023-08-24) @@ -671,28 +672,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.3.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.2.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.1.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.1.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) diff --git a/composition/README.md b/composition/README.md index 9cee076a18..98d21a4bcf 100644 --- a/composition/README.md +++ b/composition/README.md @@ -2,7 +2,7 @@ [![npm version](https://badge.fury.io/js/%40wundergraph%2Fcomposition.svg)](https://badge.fury.io/js/%40wundergraph%2Fcomposition) -The WunderGraph composition library facilitates the federation of multiple subgraph schemas into a +The WunderGraph composition library facilitates the federation of multiple subgraph schemas into a single federated GraphQL schema. ### Prerequisites @@ -53,29 +53,31 @@ const subgraphB: Subgraph = { ### FederationResult -The `federateSubgraphs` function returns `FederationResult`, which is a union of `FederationResultSuccess` and +The `federateSubgraphs` function returns `FederationResult`, which is a union of `FederationResultSuccess` and `FederationResultFailure`. Both types in the union always define the following mutual properties: | property | Description | type | -|----------|----------------------------------------|----------------| +| -------- | -------------------------------------- | -------------- | | success | assertion of composition success | boolean | | warnings | array of composition warnings (if any) | Array | #### FederationResultSuccess + If federation was successful, the return type is `FederationResultSuccess`. -| property | Description | type | -|----------------------|-------------------------------------------------------------|-----------------------| -| federatedGraphAST | an AST object representation of the federated graph sdl | graphql.DocumentNode | -| federatedGraphSchema | a schema object representation of the federated graph sdl | graphql.GraphQLSchema | -| success | assertion that composition was successful | true | -| warnings | array of composition warnings (if any) | Array | +| property | Description | type | +| -------------------- | --------------------------------------------------------- | --------------------- | +| federatedGraphAST | an AST object representation of the federated graph sdl | graphql.DocumentNode | +| federatedGraphSchema | a schema object representation of the federated graph sdl | graphql.GraphQLSchema | +| success | assertion that composition was successful | true | +| warnings | array of composition warnings (if any) | Array | #### FederationResultFailure + If federation was unsuccessful, the return type is `FederationResultFailure`. | property | Description | type | -|----------|---------------------------------------------|----------------| +| -------- | ------------------------------------------- | -------------- | | errors | array of composition errors | Array | | success | assertion that composition was unsuccessful | false | | warnings | array of composition warnings (if any) | Array | @@ -112,9 +114,10 @@ for (const warning of result.warnings) { ### Errors Errors can happen in three main stages: + 1. While validating the subgraph metadata, e.g., validating that each `Subgraph` object has a unique name. 2. During the normalization process, which prepares the subgraph for federation. -(if this stage fails, federation will not be attempted) + (if this stage fails, federation will not be attempted) 3. During the federation process itself. All errors will be appended to the `FederationResultFailure.errors` array. @@ -127,7 +130,7 @@ This is easily achieved by passing string representation of the subgraph SDL to An example is shown below: ```typescript -import { Subgraph } from '@wundergraph/composition' +import { Subgraph } from '@wundergraph/composition'; import { parse } from 'graphql'; const subgraphA: Subgraph = { @@ -148,13 +151,15 @@ const subgraphA: Subgraph = { ### Subgraph Properties | property | Description | type | -|-------------|-------------------------------------------|----------------------| +| ----------- | ----------------------------------------- | -------------------- | | name | unique name of the subgraph | string | | url | unique endpoint for the subgraph | string | | definitions | an AST representation of the subgraph SDL | graphql.DocumentNode | ### Contributing + When adding or changing error, please ensure GraphQL types begin with a capital letter for clarity: + - Enum - Input Object - Interface diff --git a/composition/tsconfig.json b/composition/tsconfig.json index a291aedd7c..24a34bb350 100644 --- a/composition/tsconfig.json +++ b/composition/tsconfig.json @@ -4,7 +4,7 @@ "declaration": true, "outDir": "./dist", "module": "NodeNext", - "moduleResolution": "NodeNext", + "moduleResolution": "NodeNext" }, "include": ["src/**/*"], "exclude": ["node_modules"] diff --git a/composition/vite.config.ts b/composition/vite.config.ts index b2c35efdc2..a562146505 100644 --- a/composition/vite.config.ts +++ b/composition/vite.config.ts @@ -5,4 +5,4 @@ export default defineConfig({ // Ensure always the CJS version is used otherwise we might conflict with multiple versions of graphql alias: [{ find: /^graphql$/, replacement: 'graphql/index.js' }], }, -}); \ No newline at end of file +}); From f92f4fd0db8b9957dbebb25198b34c641e7beaf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Syn=C3=A1=C4=8Dek?= Date: Tue, 3 Mar 2026 13:39:58 +0100 Subject: [PATCH 10/25] fix: formatting for controlplane --- controlplane/CHANGELOG.md | 967 +++++++++--------- controlplane/README.md | 2 +- controlplane/emails/package.json | 4 +- .../emails/src/components/cosmo-logo.tsx | 9 +- .../emails/src/components/main-container.tsx | 2 +- .../emails/src/components/tailwind-config.tsx | 10 +- .../emails/src/organizationDeletionQueued.tsx | 27 +- .../emails/src/organizationInvite.tsx | 20 +- .../emails/organizationDeletionQueued.html | 4 +- controlplane/test/api-keys.test.ts | 94 +- controlplane/test/apollo-federation.test.ts | 2 +- .../configure-cache-warmer.test.ts | 97 +- .../delete-cache-operation.test.ts | 108 +- .../cache-warmer/push-cache-operation.test.ts | 89 +- .../test/check-federated-graph.test.ts | 196 ++-- .../test/check-subgraph-schema.test.ts | 95 +- .../test/composition-warnings.test.ts | 3 +- controlplane/test/delete-audit-logs.test.ts | 3 +- controlplane/test/delete-user.test.ts | 7 +- .../feature-flag/create-feature-flag.test.ts | 124 ++- .../feature-flag/delete-feature-flag.test.ts | 81 +- .../feature-flag/update-feature-flag.test.ts | 261 +++-- .../delete-feature-subgraph.test.ts | 122 ++- .../get-feature-subgraph.test.ts | 146 ++- .../get-feature-subgraphs.test.ts | 169 +-- .../move-feature-subgraph.test.ts | 3 +- .../publish-feature-subgraph.test.ts | 74 +- .../update-feature-subgraph.test.ts | 108 +- controlplane/test/federated-graph.test.ts | 170 +-- .../test/federated-graph/version.test.ts | 325 +++--- controlplane/test/graph-pruning.test.ts | 2 +- .../test/graphql/federationV1/pandas.graphql | 4 +- .../graphql/federationV1/products.graphql | 2 +- .../test/graphql/federationV1/users.graphql | 2 +- .../graphql/federationV2/products.graphql | 8 +- .../test/initialize-cosmo-user.test.ts | 48 +- controlplane/test/invite-user.test.ts | 34 +- controlplane/test/monograph/version.test.ts | 256 +++-- .../test/namespace/get-namespaces.test.ts | 340 +++--- controlplane/test/oidc-provider.test.ts | 18 +- controlplane/test/organization-groups.test.ts | 82 +- .../organization/create-organization.test.ts | 53 +- .../getOrganizationBySlug.test.ts | 4 +- .../organization/leave-organization.test.ts | 15 +- .../organization/list-organizations.test.ts | 2 +- .../remove-organization-member.test.ts | 16 +- .../test/proposal/proposal-webhooks.test.ts | 16 +- .../test/proposal/update-proposal.test.ts | 2 +- controlplane/test/rbac-evaluator.test.ts | 10 +- .../test/restore-organization.test.ts | 2 +- .../router/compatibility-version/list.test.ts | 4 +- .../test/subgraph-check-extensions.test.ts | 10 +- .../test/subgraph/create-subgraph.test.ts | 2 +- .../test/subgraph/get-subgraphs.test.ts | 172 ++-- .../test/subgraph/move-subgraph.test.ts | 8 +- .../test/subgraph/publish-subgraph.test.ts | 4 +- .../test/subgraph/update-subgraph.test.ts | 73 +- .../contracts/products-include.graphql | 2 +- .../contracts/products-v2-includes.graphql | 2 +- .../test-data/contracts/products-v2.graphql | 2 +- .../test/test-data/contracts/products.graphql | 2 +- .../test-data/contracts/users-include.graphql | 2 +- .../test/test-data/contracts/users.graphql | 2 +- .../feature-flags/products-failing.graphql | 4 +- .../products-feature-update.graphql | 4 +- .../feature-flags/products-feature.graphql | 4 +- .../test-data/feature-flags/products.graphql | 4 +- .../feature-flags/users-feature.graphql | 2 +- .../feature-flags/users-update.graphql | 2 +- .../test-data/feature-flags/users.graphql | 2 +- .../test-data/plugin/service.proto.lock.json | 2 +- controlplane/test/utils.test.ts | 6 +- controlplane/tsconfig.test.json | 2 +- 73 files changed, 2373 insertions(+), 2182 deletions(-) diff --git a/controlplane/CHANGELOG.md b/controlplane/CHANGELOG.md index 17035512a1..be99b41608 100644 --- a/controlplane/CHANGELOG.md +++ b/controlplane/CHANGELOG.md @@ -1,4 +1,5 @@ # Change Log + Binaries are attached to the github release otherwise all images can be found [here](https://github.com/orgs/wundergraph/packages?repo_name=cosmo) All notable changes to this project will be documented in this file. @@ -8,37 +9,37 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* use specific @wundergraph/composition version to avoid breaking changes in control plane ([#2578](https://github.com/wundergraph/cosmo/issues/2578)) ([671c889](https://github.com/wundergraph/cosmo/commit/671c8893b5d330a20cacaa38bdd067435f5e676b)) (@alepane21) +- use specific @wundergraph/composition version to avoid breaking changes in control plane ([#2578](https://github.com/wundergraph/cosmo/issues/2578)) ([671c889](https://github.com/wundergraph/cosmo/commit/671c8893b5d330a20cacaa38bdd067435f5e676b)) (@alepane21) # [0.193.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.192.2...controlplane@0.193.0) (2026-03-02) ### Features -* **studio:** delete persisted operations ([#2553](https://github.com/wundergraph/cosmo/issues/2553)) ([1adf02c](https://github.com/wundergraph/cosmo/commit/1adf02c0a84bb3ae63b1d900d1075ae2c8f8c069)) (@comatory) +- **studio:** delete persisted operations ([#2553](https://github.com/wundergraph/cosmo/issues/2553)) ([1adf02c](https://github.com/wundergraph/cosmo/commit/1adf02c0a84bb3ae63b1d900d1075ae2c8f8c069)) (@comatory) ## [0.192.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.192.1...controlplane@0.192.2) (2026-02-28) ### Bug Fixes -* histogram clickhouse calculation ([#2567](https://github.com/wundergraph/cosmo/issues/2567)) ([9b69e59](https://github.com/wundergraph/cosmo/commit/9b69e590ebca7b3489873d8f2c919dbf293f24ba)) (@StarpTech) +- histogram clickhouse calculation ([#2567](https://github.com/wundergraph/cosmo/issues/2567)) ([9b69e59](https://github.com/wundergraph/cosmo/commit/9b69e590ebca7b3489873d8f2c919dbf293f24ba)) (@StarpTech) ## [0.192.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.192.0...controlplane@0.192.1) (2026-02-26) ### Bug Fixes -* return client error for payload size limit violations ([#2560](https://github.com/wundergraph/cosmo/issues/2560)) ([1393f43](https://github.com/wundergraph/cosmo/commit/1393f43480127a0e581215f6cf5ba0749be016f8)) (@alepane21) +- return client error for payload size limit violations ([#2560](https://github.com/wundergraph/cosmo/issues/2560)) ([1393f43](https://github.com/wundergraph/cosmo/commit/1393f43480127a0e581215f6cf5ba0749be016f8)) (@alepane21) # [0.192.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.191.3...controlplane@0.192.0) (2026-02-26) ### Features -* improve ControlPlane seeding ([#2562](https://github.com/wundergraph/cosmo/issues/2562)) ([59c3b86](https://github.com/wundergraph/cosmo/commit/59c3b868da1cac536840abe440c0a4fe27fc9c1b)) (@wilsonrivera) +- improve ControlPlane seeding ([#2562](https://github.com/wundergraph/cosmo/issues/2562)) ([59c3b86](https://github.com/wundergraph/cosmo/commit/59c3b868da1cac536840abe440c0a4fe27fc9c1b)) (@wilsonrivera) ## [0.191.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.191.2...controlplane@0.191.3) (2026-02-25) ### Bug Fixes -* resolve cve-2026-25896 ([#2552](https://github.com/wundergraph/cosmo/issues/2552)) ([f271ff2](https://github.com/wundergraph/cosmo/commit/f271ff267c01bc1e8af5f6aeed6ceae187db0fbc)) (@pepol) +- resolve cve-2026-25896 ([#2552](https://github.com/wundergraph/cosmo/issues/2552)) ([f271ff2](https://github.com/wundergraph/cosmo/commit/f271ff267c01bc1e8af5f6aeed6ceae187db0fbc)) (@pepol) ## [0.191.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.191.1...controlplane@0.191.2) (2026-02-20) @@ -48,20 +49,20 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* solves the `dist` restructuring issue ([#2519](https://github.com/wundergraph/cosmo/issues/2519)) ([5b3a1b1](https://github.com/wundergraph/cosmo/commit/5b3a1b17d1137c378344045e6d0ceae74b2ee0c8)) (@wilsonrivera) +- solves the `dist` restructuring issue ([#2519](https://github.com/wundergraph/cosmo/issues/2519)) ([5b3a1b1](https://github.com/wundergraph/cosmo/commit/5b3a1b17d1137c378344045e6d0ceae74b2ee0c8)) (@wilsonrivera) # [0.191.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.190.0...controlplane@0.191.0) (2026-02-16) ### Features -* add support to mark API keys as external ([#2507](https://github.com/wundergraph/cosmo/issues/2507)) ([483d5c8](https://github.com/wundergraph/cosmo/commit/483d5c8e7ffbc2f71fcafdb745d20fc68670bb0c)) (@wilsonrivera) +- add support to mark API keys as external ([#2507](https://github.com/wundergraph/cosmo/issues/2507)) ([483d5c8](https://github.com/wundergraph/cosmo/commit/483d5c8e7ffbc2f71fcafdb745d20fc68670bb0c)) (@wilsonrivera) # [0.190.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.189.1...controlplane@0.190.0) (2026-02-12) ### Features -* endpoint to list user organizations ([#2502](https://github.com/wundergraph/cosmo/issues/2502)) ([a9a0955](https://github.com/wundergraph/cosmo/commit/a9a0955a87276104f963e9d19fc23822a9aa8d33)) (@wilsonrivera) -* implement endpoint to ensure user is initialized in Cosmo ([#2497](https://github.com/wundergraph/cosmo/issues/2497)) ([31b005f](https://github.com/wundergraph/cosmo/commit/31b005f4ac0845e9e54ff0c89b971ddde5589eaa)) (@wilsonrivera) +- endpoint to list user organizations ([#2502](https://github.com/wundergraph/cosmo/issues/2502)) ([a9a0955](https://github.com/wundergraph/cosmo/commit/a9a0955a87276104f963e9d19fc23822a9aa8d33)) (@wilsonrivera) +- implement endpoint to ensure user is initialized in Cosmo ([#2497](https://github.com/wundergraph/cosmo/issues/2497)) ([31b005f](https://github.com/wundergraph/cosmo/commit/31b005f4ac0845e9e54ff0c89b971ddde5589eaa)) (@wilsonrivera) ## [0.189.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.189.0...controlplane@0.189.1) (2026-02-12) @@ -71,38 +72,38 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* vulnerabilities ([#2494](https://github.com/wundergraph/cosmo/issues/2494)) ([89cb868](https://github.com/wundergraph/cosmo/commit/89cb868664d1a35d85a7010aa19139b30f02a49a)) (@JivusAyrus) +- vulnerabilities ([#2494](https://github.com/wundergraph/cosmo/issues/2494)) ([89cb868](https://github.com/wundergraph/cosmo/commit/89cb868664d1a35d85a7010aa19139b30f02a49a)) (@JivusAyrus) ### Features -* max number of persistent operations per request ([#2477](https://github.com/wundergraph/cosmo/issues/2477)) ([7b219ac](https://github.com/wundergraph/cosmo/commit/7b219acefa9439b51739da313acc8ad0d7b8239f)) (@alepane21) -* update @graphql-tools/utils version to 11.0.0 ([#2495](https://github.com/wundergraph/cosmo/issues/2495)) ([526b1a4](https://github.com/wundergraph/cosmo/commit/526b1a498ae709b67ec37626bfc665babafd8aa8)) (@thisisnithin) +- max number of persistent operations per request ([#2477](https://github.com/wundergraph/cosmo/issues/2477)) ([7b219ac](https://github.com/wundergraph/cosmo/commit/7b219acefa9439b51739da313acc8ad0d7b8239f)) (@alepane21) +- update @graphql-tools/utils version to 11.0.0 ([#2495](https://github.com/wundergraph/cosmo/issues/2495)) ([526b1a4](https://github.com/wundergraph/cosmo/commit/526b1a498ae709b67ec37626bfc665babafd8aa8)) (@thisisnithin) # [0.188.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.187.0...controlplane@0.188.0) (2026-02-05) ### Features -* add UTM parameter tracking for new user signups ([#2488](https://github.com/wundergraph/cosmo/issues/2488)) ([4dfdd7b](https://github.com/wundergraph/cosmo/commit/4dfdd7b8d83b34d193311c77b4c71fe0bca51a97)) (@wunderhawk) +- add UTM parameter tracking for new user signups ([#2488](https://github.com/wundergraph/cosmo/issues/2488)) ([4dfdd7b](https://github.com/wundergraph/cosmo/commit/4dfdd7b8d83b34d193311c77b4c71fe0bca51a97)) (@wunderhawk) # [0.187.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.186.0...controlplane@0.187.0) (2026-02-02) ### Features -* add gRPC naming scheme validation for subgraph routing URLs ([#2473](https://github.com/wundergraph/cosmo/issues/2473)) ([4d29351](https://github.com/wundergraph/cosmo/commit/4d29351ce0288f69417accb906863882cc97de4d)) (@alepane21) +- add gRPC naming scheme validation for subgraph routing URLs ([#2473](https://github.com/wundergraph/cosmo/issues/2473)) ([4d29351](https://github.com/wundergraph/cosmo/commit/4d29351ce0288f69417accb906863882cc97de4d)) (@alepane21) # [0.186.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.185.0...controlplane@0.186.0) (2026-01-29) ### Features -* enhance redirect logic in auth controller to include onboarding parameter ([#2476](https://github.com/wundergraph/cosmo/issues/2476)) ([fd9302f](https://github.com/wundergraph/cosmo/commit/fd9302f5756d38ea6a764a3e60853b1f8c92c709)) (@JivusAyrus) -* include schema version in graph update webhook ([#2467](https://github.com/wundergraph/cosmo/issues/2467)) ([6a51aaa](https://github.com/wundergraph/cosmo/commit/6a51aaa6d1ecec4cefc884bb05a5152e0b297b78)) (@thisisnithin) +- enhance redirect logic in auth controller to include onboarding parameter ([#2476](https://github.com/wundergraph/cosmo/issues/2476)) ([fd9302f](https://github.com/wundergraph/cosmo/commit/fd9302f5756d38ea6a764a3e60853b1f8c92c709)) (@JivusAyrus) +- include schema version in graph update webhook ([#2467](https://github.com/wundergraph/cosmo/issues/2467)) ([6a51aaa](https://github.com/wundergraph/cosmo/commit/6a51aaa6d1ecec4cefc884bb05a5152e0b297b78)) (@thisisnithin) # [0.185.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.184.2...controlplane@0.185.0) (2026-01-27) ### Features -* add pagination and limit handling for API keys ([#2430](https://github.com/wundergraph/cosmo/issues/2430)) ([eca6aac](https://github.com/wundergraph/cosmo/commit/eca6aac00ffb13527b241a45ab552ef0b87788e4)) (@JivusAyrus) -* improve `authenticateClient` by avoiding unnecessary token creation ([#2443](https://github.com/wundergraph/cosmo/issues/2443)) ([e6f5aa8](https://github.com/wundergraph/cosmo/commit/e6f5aa83eb318e9d8fefa553a811dddebfb24540)) (@wilsonrivera) +- add pagination and limit handling for API keys ([#2430](https://github.com/wundergraph/cosmo/issues/2430)) ([eca6aac](https://github.com/wundergraph/cosmo/commit/eca6aac00ffb13527b241a45ab552ef0b87788e4)) (@JivusAyrus) +- improve `authenticateClient` by avoiding unnecessary token creation ([#2443](https://github.com/wundergraph/cosmo/issues/2443)) ([e6f5aa8](https://github.com/wundergraph/cosmo/commit/e6f5aa83eb318e9d8fefa553a811dddebfb24540)) (@wilsonrivera) ## [0.184.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.184.1...controlplane@0.184.2) (2026-01-20) @@ -116,13 +117,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add namespace in the slack notification ([#2452](https://github.com/wundergraph/cosmo/issues/2452)) ([8721174](https://github.com/wundergraph/cosmo/commit/87211748d0ece37984bb44dc9ef71b0a4c58d10d)) (@alepane21) +- add namespace in the slack notification ([#2452](https://github.com/wundergraph/cosmo/issues/2452)) ([8721174](https://github.com/wundergraph/cosmo/commit/87211748d0ece37984bb44dc9ef71b0a4c58d10d)) (@alepane21) ## [0.183.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.183.3...controlplane@0.183.4) (2026-01-12) ### Bug Fixes -* **infra:** ensure base images use target platform ([#2401](https://github.com/wundergraph/cosmo/issues/2401)) ([45d65c4](https://github.com/wundergraph/cosmo/commit/45d65c4c260e7888ecfc46fb46db0d73d33fc75e)) (@endigma) +- **infra:** ensure base images use target platform ([#2401](https://github.com/wundergraph/cosmo/issues/2401)) ([45d65c4](https://github.com/wundergraph/cosmo/commit/45d65c4c260e7888ecfc46fb46db0d73d33fc75e)) (@endigma) ## [0.183.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.183.2...controlplane@0.183.3) (2026-01-09) @@ -132,137 +133,137 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* limit the number of entries shown in the table for schema checks on the cli ([#2417](https://github.com/wundergraph/cosmo/issues/2417)) ([2a2cd52](https://github.com/wundergraph/cosmo/commit/2a2cd5207d1575518cf459bd05c702406d7f6ef6)) (@SkArchon) +- limit the number of entries shown in the table for schema checks on the cli ([#2417](https://github.com/wundergraph/cosmo/issues/2417)) ([2a2cd52](https://github.com/wundergraph/cosmo/commit/2a2cd5207d1575518cf459bd05c702406d7f6ef6)) (@SkArchon) ## [0.183.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.183.0...controlplane@0.183.1) (2026-01-07) ### Bug Fixes -* field usage when arguments have the same name as root fields ([#2440](https://github.com/wundergraph/cosmo/issues/2440)) ([2b77baf](https://github.com/wundergraph/cosmo/commit/2b77baf4fc17170133a64d789c5623e2de44dcf6)) (@JivusAyrus) +- field usage when arguments have the same name as root fields ([#2440](https://github.com/wundergraph/cosmo/issues/2440)) ([2b77baf](https://github.com/wundergraph/cosmo/commit/2b77baf4fc17170133a64d789c5623e2de44dcf6)) (@JivusAyrus) # [0.183.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.182.0...controlplane@0.183.0) (2026-01-07) ### Bug Fixes -* improve composition and changelog queries ([#2429](https://github.com/wundergraph/cosmo/issues/2429)) ([8237c8d](https://github.com/wundergraph/cosmo/commit/8237c8d4df17e1c0562df85d1bf3526d657e1e35)) (@JivusAyrus) -* usage of input fields on the ui ([#2437](https://github.com/wundergraph/cosmo/issues/2437)) ([b61556c](https://github.com/wundergraph/cosmo/commit/b61556ce3864d045c596771ecdb98326075238da)) (@JivusAyrus) +- improve composition and changelog queries ([#2429](https://github.com/wundergraph/cosmo/issues/2429)) ([8237c8d](https://github.com/wundergraph/cosmo/commit/8237c8d4df17e1c0562df85d1bf3526d657e1e35)) (@JivusAyrus) +- usage of input fields on the ui ([#2437](https://github.com/wundergraph/cosmo/issues/2437)) ([b61556c](https://github.com/wundergraph/cosmo/commit/b61556ce3864d045c596771ecdb98326075238da)) (@JivusAyrus) ### Features -* add Keycloak cleanup script ([#2426](https://github.com/wundergraph/cosmo/issues/2426)) ([98bb8e9](https://github.com/wundergraph/cosmo/commit/98bb8e93e7e80abc3c8d2850fe32b4a65f13960d)) (@wilsonrivera) -* prevent privilege escalation ([#2428](https://github.com/wundergraph/cosmo/issues/2428)) ([bd68eec](https://github.com/wundergraph/cosmo/commit/bd68eecadf83159a1606b5b307c41cac34fb8b10)) (@wilsonrivera) -* update `billing.json` ([#2442](https://github.com/wundergraph/cosmo/issues/2442)) ([aa4c66a](https://github.com/wundergraph/cosmo/commit/aa4c66a45715dcd8be6147ff7f6a762b582d0596)) (@wilsonrivera) +- add Keycloak cleanup script ([#2426](https://github.com/wundergraph/cosmo/issues/2426)) ([98bb8e9](https://github.com/wundergraph/cosmo/commit/98bb8e93e7e80abc3c8d2850fe32b4a65f13960d)) (@wilsonrivera) +- prevent privilege escalation ([#2428](https://github.com/wundergraph/cosmo/issues/2428)) ([bd68eec](https://github.com/wundergraph/cosmo/commit/bd68eecadf83159a1606b5b307c41cac34fb8b10)) (@wilsonrivera) +- update `billing.json` ([#2442](https://github.com/wundergraph/cosmo/issues/2442)) ([aa4c66a](https://github.com/wundergraph/cosmo/commit/aa4c66a45715dcd8be6147ff7f6a762b582d0596)) (@wilsonrivera) # [0.182.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.181.0...controlplane@0.182.0) (2025-12-16) ### Features -* validate session cookie ([#2406](https://github.com/wundergraph/cosmo/issues/2406)) ([13ec2dd](https://github.com/wundergraph/cosmo/commit/13ec2dd5240e52c7774d251db5fd79e23905f6c2)) (@wilsonrivera) +- validate session cookie ([#2406](https://github.com/wundergraph/cosmo/issues/2406)) ([13ec2dd](https://github.com/wundergraph/cosmo/commit/13ec2dd5240e52c7774d251db5fd79e23905f6c2)) (@wilsonrivera) # [0.181.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.180.0...controlplane@0.181.0) (2025-12-15) ### Bug Fixes -* getGraphMetrics by using Float64 for multipliers in clickhouse queries ([#2411](https://github.com/wundergraph/cosmo/issues/2411)) ([e5d9750](https://github.com/wundergraph/cosmo/commit/e5d9750356564e0914116f2f732f7885ae386c2d)) (@JivusAyrus) +- getGraphMetrics by using Float64 for multipliers in clickhouse queries ([#2411](https://github.com/wundergraph/cosmo/issues/2411)) ([e5d9750](https://github.com/wundergraph/cosmo/commit/e5d9750356564e0914116f2f732f7885ae386c2d)) (@JivusAyrus) ### Features -* add coverage for other services with tests ([#2405](https://github.com/wundergraph/cosmo/issues/2405)) ([a53bb35](https://github.com/wundergraph/cosmo/commit/a53bb351336dc400b8b28b235a28725704a83919)) (@SkArchon) +- add coverage for other services with tests ([#2405](https://github.com/wundergraph/cosmo/issues/2405)) ([a53bb35](https://github.com/wundergraph/cosmo/commit/a53bb351336dc400b8b28b235a28725704a83919)) (@SkArchon) # [0.180.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.179.2...controlplane@0.180.0) (2025-12-10) ### Features -* enforce feature check for `OIDC` ([#2392](https://github.com/wundergraph/cosmo/issues/2392)) ([2a1ffc5](https://github.com/wundergraph/cosmo/commit/2a1ffc583a4fe121ccf869d6b324c1be8cca1d2d)) (@wilsonrivera) -* improve organization creation and update validation ([#2394](https://github.com/wundergraph/cosmo/issues/2394)) ([f8b2e59](https://github.com/wundergraph/cosmo/commit/f8b2e59392160f40b098cd215ce4a371b1dd5fb3)) (@wilsonrivera) +- enforce feature check for `OIDC` ([#2392](https://github.com/wundergraph/cosmo/issues/2392)) ([2a1ffc5](https://github.com/wundergraph/cosmo/commit/2a1ffc583a4fe121ccf869d6b324c1be8cca1d2d)) (@wilsonrivera) +- improve organization creation and update validation ([#2394](https://github.com/wundergraph/cosmo/issues/2394)) ([f8b2e59](https://github.com/wundergraph/cosmo/commit/f8b2e59392160f40b098cd215ce4a371b1dd5fb3)) (@wilsonrivera) ## [0.179.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.179.1...controlplane@0.179.2) (2025-12-04) ### Bug Fixes -* operation checks for input and argument usages ([#2380](https://github.com/wundergraph/cosmo/issues/2380)) ([c43ed88](https://github.com/wundergraph/cosmo/commit/c43ed8813ef6b29563a77926fc7908566ccf7eb9)) (@JivusAyrus) +- operation checks for input and argument usages ([#2380](https://github.com/wundergraph/cosmo/issues/2380)) ([c43ed88](https://github.com/wundergraph/cosmo/commit/c43ed8813ef6b29563a77926fc7908566ccf7eb9)) (@JivusAyrus) ## [0.179.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.179.0...controlplane@0.179.1) (2025-12-04) ### Bug Fixes -* validate organization ownership for fetched proposals and proposal details ([#2389](https://github.com/wundergraph/cosmo/issues/2389)) ([395a5f5](https://github.com/wundergraph/cosmo/commit/395a5f5236a828c6e2038690e4df597f35f106fc)) (@JivusAyrus) +- validate organization ownership for fetched proposals and proposal details ([#2389](https://github.com/wundergraph/cosmo/issues/2389)) ([395a5f5](https://github.com/wundergraph/cosmo/commit/395a5f5236a828c6e2038690e4df597f35f106fc)) (@JivusAyrus) # [0.179.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.178.0...controlplane@0.179.0) (2025-12-03) ### Features -* sanitize readme content to prevent XSS ([#2390](https://github.com/wundergraph/cosmo/issues/2390)) ([20cd6cb](https://github.com/wundergraph/cosmo/commit/20cd6cba05f7eae6db75f6160c6844e42f349712)) (@wilsonrivera) +- sanitize readme content to prevent XSS ([#2390](https://github.com/wundergraph/cosmo/issues/2390)) ([20cd6cb](https://github.com/wundergraph/cosmo/commit/20cd6cba05f7eae6db75f6160c6844e42f349712)) (@wilsonrivera) # [0.178.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.177.0...controlplane@0.178.0) (2025-12-03) ### Features -* add deprecation reason to deprecated fields table in op view ([#2386](https://github.com/wundergraph/cosmo/issues/2386)) ([00cad53](https://github.com/wundergraph/cosmo/commit/00cad53cb3d2a600fe15d3cc632e262f5b791ab9)) (@JivusAyrus) +- add deprecation reason to deprecated fields table in op view ([#2386](https://github.com/wundergraph/cosmo/issues/2386)) ([00cad53](https://github.com/wundergraph/cosmo/commit/00cad53cb3d2a600fe15d3cc632e262f5b791ab9)) (@JivusAyrus) # [0.177.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.176.1...controlplane@0.177.0) (2025-12-03) ### Features -* update `zod` ([#2384](https://github.com/wundergraph/cosmo/issues/2384)) ([53a2c0c](https://github.com/wundergraph/cosmo/commit/53a2c0ca0f3f933fc9d11fbad4ac066e93d01ff9)) (@wilsonrivera) +- update `zod` ([#2384](https://github.com/wundergraph/cosmo/issues/2384)) ([53a2c0c](https://github.com/wundergraph/cosmo/commit/53a2c0ca0f3f933fc9d11fbad4ac066e93d01ff9)) (@wilsonrivera) ## [0.176.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.176.0...controlplane@0.176.1) (2025-11-29) ### Bug Fixes -* import from wrong package ([#2382](https://github.com/wundergraph/cosmo/issues/2382)) ([2501fba](https://github.com/wundergraph/cosmo/commit/2501fba7951ac5b60f0e7bbe6a69e391f45532a3)) (@wilsonrivera) +- import from wrong package ([#2382](https://github.com/wundergraph/cosmo/issues/2382)) ([2501fba](https://github.com/wundergraph/cosmo/commit/2501fba7951ac5b60f0e7bbe6a69e391f45532a3)) (@wilsonrivera) # [0.176.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.175.1...controlplane@0.176.0) (2025-11-29) ### Features -* subgraph check extensions ([#2281](https://github.com/wundergraph/cosmo/issues/2281)) ([c190b5a](https://github.com/wundergraph/cosmo/commit/c190b5ad19f9fd8f7a67317a29fe845d475dbf10)) (@wilsonrivera) +- subgraph check extensions ([#2281](https://github.com/wundergraph/cosmo/issues/2281)) ([c190b5a](https://github.com/wundergraph/cosmo/commit/c190b5ad19f9fd8f7a67317a29fe845d475dbf10)) (@wilsonrivera) ## [0.175.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.175.0...controlplane@0.175.1) (2025-11-27) ### Bug Fixes -* improve user test suite ([#2376](https://github.com/wundergraph/cosmo/issues/2376)) ([464442b](https://github.com/wundergraph/cosmo/commit/464442bad9f184d7de3b2665bacc75d092ca9967)) (@StarpTech) +- improve user test suite ([#2376](https://github.com/wundergraph/cosmo/issues/2376)) ([464442b](https://github.com/wundergraph/cosmo/commit/464442bad9f184d7de3b2665bacc75d092ca9967)) (@StarpTech) # [0.175.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.174.0...controlplane@0.175.0) (2025-11-27) ### Features -* operation page improvements ([#2373](https://github.com/wundergraph/cosmo/issues/2373)) ([0db1319](https://github.com/wundergraph/cosmo/commit/0db1319ce7e820b9f67abef0ed121dd10bcef357)) (@JivusAyrus) +- operation page improvements ([#2373](https://github.com/wundergraph/cosmo/issues/2373)) ([0db1319](https://github.com/wundergraph/cosmo/commit/0db1319ce7e820b9f67abef0ed121dd10bcef357)) (@JivusAyrus) # [0.174.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.173.0...controlplane@0.174.0) (2025-11-26) ### Bug Fixes -* vulnerabilities by updating packages ([#2339](https://github.com/wundergraph/cosmo/issues/2339)) ([ef16299](https://github.com/wundergraph/cosmo/commit/ef16299f147ac4d01c0ca5db3c2dcc8f4f399b7b)) (@JivusAyrus) +- vulnerabilities by updating packages ([#2339](https://github.com/wundergraph/cosmo/issues/2339)) ([ef16299](https://github.com/wundergraph/cosmo/commit/ef16299f147ac4d01c0ca5db3c2dcc8f4f399b7b)) (@JivusAyrus) ### Features -* prevent error when passed invalid uuid ([#2369](https://github.com/wundergraph/cosmo/issues/2369)) ([2af0737](https://github.com/wundergraph/cosmo/commit/2af073766acb8010050c3116207c888ab402f780)) (@wilsonrivera) +- prevent error when passed invalid uuid ([#2369](https://github.com/wundergraph/cosmo/issues/2369)) ([2af0737](https://github.com/wundergraph/cosmo/commit/2af073766acb8010050c3116207c888ab402f780)) (@wilsonrivera) # [0.173.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.172.1...controlplane@0.173.0) (2025-11-26) ### Features -* operations overview ([#2331](https://github.com/wundergraph/cosmo/issues/2331)) ([c38d4ae](https://github.com/wundergraph/cosmo/commit/c38d4ae20c6e2d84e3a645d47f12776448f1ffd3)) (@JivusAyrus) +- operations overview ([#2331](https://github.com/wundergraph/cosmo/issues/2331)) ([c38d4ae](https://github.com/wundergraph/cosmo/commit/c38d4ae20c6e2d84e3a645d47f12776448f1ffd3)) (@JivusAyrus) ## [0.172.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.172.0...controlplane@0.172.1) (2025-11-25) ### Bug Fixes -* **controlplane:** handle authentication errors correctly ([#2354](https://github.com/wundergraph/cosmo/issues/2354)) ([e3bc79a](https://github.com/wundergraph/cosmo/commit/e3bc79a97b97c1f15d9b8f835411244b79e9e239)) (@pepol) +- **controlplane:** handle authentication errors correctly ([#2354](https://github.com/wundergraph/cosmo/issues/2354)) ([e3bc79a](https://github.com/wundergraph/cosmo/commit/e3bc79a97b97c1f15d9b8f835411244b79e9e239)) (@pepol) # [0.172.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.171.0...controlplane@0.172.0) (2025-11-24) ### Features -* only admins can invite users to an organization ([#2358](https://github.com/wundergraph/cosmo/issues/2358)) ([1f7078c](https://github.com/wundergraph/cosmo/commit/1f7078cec8a201bdac8994b8eb35b1df4853b9ae)) (@wilsonrivera) +- only admins can invite users to an organization ([#2358](https://github.com/wundergraph/cosmo/issues/2358)) ([1f7078c](https://github.com/wundergraph/cosmo/commit/1f7078cec8a201bdac8994b8eb35b1df4853b9ae)) (@wilsonrivera) # [0.171.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.170.2...controlplane@0.171.0) (2025-11-22) ### Features -* improve SCIM implementation ([#2351](https://github.com/wundergraph/cosmo/issues/2351)) ([cafd1fc](https://github.com/wundergraph/cosmo/commit/cafd1fc7e1a6857a7abb4d1632b5f42e54f09cf2)) (@wilsonrivera) +- improve SCIM implementation ([#2351](https://github.com/wundergraph/cosmo/issues/2351)) ([cafd1fc](https://github.com/wundergraph/cosmo/commit/cafd1fc7e1a6857a7abb4d1632b5f42e54f09cf2)) (@wilsonrivera) ## [0.170.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.170.1...controlplane@0.170.2) (2025-11-21) @@ -276,7 +277,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* **controlplane:** set bullmq worker redis retries to 'null' ([#2347](https://github.com/wundergraph/cosmo/issues/2347)) ([4a11711](https://github.com/wundergraph/cosmo/commit/4a11711464b10e9e0a2500e5f2c626bfb57adf70)) (@pepol) +- **controlplane:** set bullmq worker redis retries to 'null' ([#2347](https://github.com/wundergraph/cosmo/issues/2347)) ([4a11711](https://github.com/wundergraph/cosmo/commit/4a11711464b10e9e0a2500e5f2c626bfb57adf70)) (@pepol) ## [0.169.7](https://github.com/wundergraph/cosmo/compare/controlplane@0.169.6...controlplane@0.169.7) (2025-11-20) @@ -310,7 +311,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add an api to validate the token's permissions ([#2271](https://github.com/wundergraph/cosmo/issues/2271)) ([7852d42](https://github.com/wundergraph/cosmo/commit/7852d42a0ff8ed97024d79771e3181aac000b97e)) (@JivusAyrus) +- add an api to validate the token's permissions ([#2271](https://github.com/wundergraph/cosmo/issues/2271)) ([7852d42](https://github.com/wundergraph/cosmo/commit/7852d42a0ff8ed97024d79771e3181aac000b97e)) (@JivusAyrus) ## [0.168.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.168.4...controlplane@0.168.5) (2025-10-23) @@ -328,44 +329,44 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* zod errors when sentry is imported before dotenv ([#2275](https://github.com/wundergraph/cosmo/issues/2275)) ([e7c05cb](https://github.com/wundergraph/cosmo/commit/e7c05cba08f9e4236f719dfe5ec11546e83289b6)) (@JivusAyrus) +- zod errors when sentry is imported before dotenv ([#2275](https://github.com/wundergraph/cosmo/issues/2275)) ([e7c05cb](https://github.com/wundergraph/cosmo/commit/e7c05cba08f9e4236f719dfe5ec11546e83289b6)) (@JivusAyrus) ## [0.168.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.168.0...controlplane@0.168.1) (2025-10-14) ### Bug Fixes -* sentry controlplane auto-instrumentation ([#2270](https://github.com/wundergraph/cosmo/issues/2270)) ([ac2de0d](https://github.com/wundergraph/cosmo/commit/ac2de0d3f4441c10136e764d8d0a531de84889ca)) (@miklosbarabas) +- sentry controlplane auto-instrumentation ([#2270](https://github.com/wundergraph/cosmo/issues/2270)) ([ac2de0d](https://github.com/wundergraph/cosmo/commit/ac2de0d3f4441c10136e764d8d0a531de84889ca)) (@miklosbarabas) # [0.168.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.167.0...controlplane@0.168.0) (2025-10-10) ### Features -* disallow reviewing proposals not created by Cosmo ([#2218](https://github.com/wundergraph/cosmo/issues/2218)) ([d4aee49](https://github.com/wundergraph/cosmo/commit/d4aee4905c1a3f1d409c3892621a0d2a1ce8d147)) (@wilsonrivera) +- disallow reviewing proposals not created by Cosmo ([#2218](https://github.com/wundergraph/cosmo/issues/2218)) ([d4aee49](https://github.com/wundergraph/cosmo/commit/d4aee4905c1a3f1d409c3892621a0d2a1ce8d147)) (@wilsonrivera) # [0.167.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.166.1...controlplane@0.167.0) (2025-10-06) ### Features -* return additional linked check info when proposals are created/updated ([#2258](https://github.com/wundergraph/cosmo/issues/2258)) ([81ac616](https://github.com/wundergraph/cosmo/commit/81ac61679fe140961fcd610f2f6a419955dff23e)) (@JivusAyrus) +- return additional linked check info when proposals are created/updated ([#2258](https://github.com/wundergraph/cosmo/issues/2258)) ([81ac616](https://github.com/wundergraph/cosmo/commit/81ac61679fe140961fcd610f2f6a419955dff23e)) (@JivusAyrus) ## [0.166.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.166.0...controlplane@0.166.1) (2025-10-04) ### Bug Fixes -* add fastify integration to sentry of controlplane ([#2260](https://github.com/wundergraph/cosmo/issues/2260)) ([363b1c3](https://github.com/wundergraph/cosmo/commit/363b1c30ed29ab0ee1cfd1d67219b3bcf9ed7bd3)) (@miklosbarabas) +- add fastify integration to sentry of controlplane ([#2260](https://github.com/wundergraph/cosmo/issues/2260)) ([363b1c3](https://github.com/wundergraph/cosmo/commit/363b1c30ed29ab0ee1cfd1d67219b3bcf9ed7bd3)) (@miklosbarabas) # [0.166.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.165.2...controlplane@0.166.0) (2025-10-03) ### Features -* retrieve operation body from gqlmetrics instead of traces ([#2235](https://github.com/wundergraph/cosmo/issues/2235)) ([52cecf4](https://github.com/wundergraph/cosmo/commit/52cecf4cea2ef1ea33ecd79a1859f4bc2fd55991)) (@endigma) +- retrieve operation body from gqlmetrics instead of traces ([#2235](https://github.com/wundergraph/cosmo/issues/2235)) ([52cecf4](https://github.com/wundergraph/cosmo/commit/52cecf4cea2ef1ea33ecd79a1859f4bc2fd55991)) (@endigma) ## [0.165.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.165.1...controlplane@0.165.2) (2025-10-02) ### Bug Fixes -* possible race condition where multiple organizations could be created ([#2162](https://github.com/wundergraph/cosmo/issues/2162)) ([32483b8](https://github.com/wundergraph/cosmo/commit/32483b8fb0ca1527796bf05503f8eba35d806366)) (@wilsonrivera) -* sentry profile lifecycle switch for controlplane ([#2251](https://github.com/wundergraph/cosmo/issues/2251)) ([ba7b94f](https://github.com/wundergraph/cosmo/commit/ba7b94f00a7d4dc0de1e10f42b59639f67805c97)) (@miklosbarabas) +- possible race condition where multiple organizations could be created ([#2162](https://github.com/wundergraph/cosmo/issues/2162)) ([32483b8](https://github.com/wundergraph/cosmo/commit/32483b8fb0ca1527796bf05503f8eba35d806366)) (@wilsonrivera) +- sentry profile lifecycle switch for controlplane ([#2251](https://github.com/wundergraph/cosmo/issues/2251)) ([ba7b94f](https://github.com/wundergraph/cosmo/commit/ba7b94f00a7d4dc0de1e10f42b59639f67805c97)) (@miklosbarabas) ## [0.165.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.165.0...controlplane@0.165.1) (2025-10-01) @@ -375,13 +376,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* improve Keycloak device auth page to include SSO options ([#2100](https://github.com/wundergraph/cosmo/issues/2100)) ([c0b4031](https://github.com/wundergraph/cosmo/commit/c0b40318d0a65abeb547a8abf564c6b961649695)) (@wilsonrivera) +- improve Keycloak device auth page to include SSO options ([#2100](https://github.com/wundergraph/cosmo/issues/2100)) ([c0b4031](https://github.com/wundergraph/cosmo/commit/c0b40318d0a65abeb547a8abf564c6b961649695)) (@wilsonrivera) ## [0.164.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.164.1...controlplane@0.164.2) (2025-09-22) ### Bug Fixes -* print client schema with select directives ([#2232](https://github.com/wundergraph/cosmo/issues/2232)) ([fe41836](https://github.com/wundergraph/cosmo/commit/fe4183640a008b328807f6d0f8a6557ec7b03245)) (@Aenimus) +- print client schema with select directives ([#2232](https://github.com/wundergraph/cosmo/issues/2232)) ([fe41836](https://github.com/wundergraph/cosmo/commit/fe4183640a008b328807f6d0f8a6557ec7b03245)) (@Aenimus) ## [0.164.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.164.0...controlplane@0.164.1) (2025-09-16) @@ -391,31 +392,31 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* improve namespace selector UI/UX ([#2161](https://github.com/wundergraph/cosmo/issues/2161)) ([33f870e](https://github.com/wundergraph/cosmo/commit/33f870e8b33751ce547b33eb9ca6cb12578f4034)) (@wilsonrivera) +- improve namespace selector UI/UX ([#2161](https://github.com/wundergraph/cosmo/issues/2161)) ([33f870e](https://github.com/wundergraph/cosmo/commit/33f870e8b33751ce547b33eb9ca6cb12578f4034)) (@wilsonrivera) # [0.163.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.162.0...controlplane@0.163.0) (2025-09-15) ### Features -* introduce the `subgraph-checker` role ([#2198](https://github.com/wundergraph/cosmo/issues/2198)) ([726b814](https://github.com/wundergraph/cosmo/commit/726b814b4a460acbbf98aed37b802fe6bfda8c2c)) (@wilsonrivera) +- introduce the `subgraph-checker` role ([#2198](https://github.com/wundergraph/cosmo/issues/2198)) ([726b814](https://github.com/wundergraph/cosmo/commit/726b814b4a460acbbf98aed37b802fe6bfda8c2c)) (@wilsonrivera) # [0.162.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.161.0...controlplane@0.162.0) (2025-09-12) ### Features -* setup sentry for the controlplane ([#2199](https://github.com/wundergraph/cosmo/issues/2199)) ([aed082e](https://github.com/wundergraph/cosmo/commit/aed082ea3ec20d00ae7349509f153cf64fb54ce5)) (@miklosbarabas) +- setup sentry for the controlplane ([#2199](https://github.com/wundergraph/cosmo/issues/2199)) ([aed082e](https://github.com/wundergraph/cosmo/commit/aed082ea3ec20d00ae7349509f153cf64fb54ce5)) (@miklosbarabas) # [0.161.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.160.0...controlplane@0.161.0) (2025-09-12) ### Features -* add cli commands to create,publish and delete grpc subgraphs ([#2179](https://github.com/wundergraph/cosmo/issues/2179)) ([2254925](https://github.com/wundergraph/cosmo/commit/2254925681aa644119e11b8958911bf490a2e885)) (@JivusAyrus) +- add cli commands to create,publish and delete grpc subgraphs ([#2179](https://github.com/wundergraph/cosmo/issues/2179)) ([2254925](https://github.com/wundergraph/cosmo/commit/2254925681aa644119e11b8958911bf490a2e885)) (@JivusAyrus) # [0.160.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.159.2...controlplane@0.160.0) (2025-09-10) ### Features -* add a feature to link subgraphs across namespaces ([#2156](https://github.com/wundergraph/cosmo/issues/2156)) ([e1abdea](https://github.com/wundergraph/cosmo/commit/e1abdeab80ee2fe8ccdff1ce963787280a86dee9)) (@JivusAyrus) +- add a feature to link subgraphs across namespaces ([#2156](https://github.com/wundergraph/cosmo/issues/2156)) ([e1abdea](https://github.com/wundergraph/cosmo/commit/e1abdeab80ee2fe8ccdff1ce963787280a86dee9)) (@JivusAyrus) ## [0.159.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.159.1...controlplane@0.159.2) (2025-09-10) @@ -425,25 +426,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* update query to use RequestCount from gql_metrics_router_requests ([#2176](https://github.com/wundergraph/cosmo/issues/2176)) ([85e2b60](https://github.com/wundergraph/cosmo/commit/85e2b603ddd9ff90e712f29128cdd6c5b350bbfb)) (@JivusAyrus) +- update query to use RequestCount from gql_metrics_router_requests ([#2176](https://github.com/wundergraph/cosmo/issues/2176)) ([85e2b60](https://github.com/wundergraph/cosmo/commit/85e2b603ddd9ff90e712f29128cdd6c5b350bbfb)) (@JivusAyrus) # [0.159.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.158.0...controlplane@0.159.0) (2025-08-28) ### Features -* add span for each grpc invocation ([#2158](https://github.com/wundergraph/cosmo/issues/2158)) ([4f0383f](https://github.com/wundergraph/cosmo/commit/4f0383f780371b0f3549f94a2e85312178f0dfaa)) (@SkArchon) +- add span for each grpc invocation ([#2158](https://github.com/wundergraph/cosmo/issues/2158)) ([4f0383f](https://github.com/wundergraph/cosmo/commit/4f0383f780371b0f3549f94a2e85312178f0dfaa)) (@SkArchon) # [0.158.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.157.0...controlplane@0.158.0) (2025-08-24) ### Features -* expire session relative to creation ([#2144](https://github.com/wundergraph/cosmo/issues/2144)) ([fb585be](https://github.com/wundergraph/cosmo/commit/fb585bed2ac27a7cdb7b7e730918f7ce208723b8)) (@wilsonrivera) +- expire session relative to creation ([#2144](https://github.com/wundergraph/cosmo/issues/2144)) ([fb585be](https://github.com/wundergraph/cosmo/commit/fb585bed2ac27a7cdb7b7e730918f7ce208723b8)) (@wilsonrivera) # [0.157.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.156.5...controlplane@0.157.0) (2025-08-20) ### Features -* update the limits of plugins ([#2153](https://github.com/wundergraph/cosmo/issues/2153)) ([dfe6ad7](https://github.com/wundergraph/cosmo/commit/dfe6ad7165e6848cd53c7ee0d51a920f7a9164a1)) (@JivusAyrus) +- update the limits of plugins ([#2153](https://github.com/wundergraph/cosmo/issues/2153)) ([dfe6ad7](https://github.com/wundergraph/cosmo/commit/dfe6ad7165e6848cd53c7ee0d51a920f7a9164a1)) (@JivusAyrus) ## [0.156.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.156.4...controlplane@0.156.5) (2025-08-19) @@ -461,27 +462,27 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* **s3:** allow to delete objects individually ([#2131](https://github.com/wundergraph/cosmo/issues/2131)) ([d8bac2a](https://github.com/wundergraph/cosmo/commit/d8bac2a5f25c70dd614bd23fc09e893adc830b7d)) (@StarpTech) +- **s3:** allow to delete objects individually ([#2131](https://github.com/wundergraph/cosmo/issues/2131)) ([d8bac2a](https://github.com/wundergraph/cosmo/commit/d8bac2a5f25c70dd614bd23fc09e893adc830b7d)) (@StarpTech) ## [0.156.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.156.0...controlplane@0.156.1) (2025-08-13) ### Bug Fixes -* make the session cookie last as long as Keycloak's ([#2135](https://github.com/wundergraph/cosmo/issues/2135)) ([589bbc9](https://github.com/wundergraph/cosmo/commit/589bbc9c778c21879ddf088a38f419fb0b909219)) (@wilsonrivera) +- make the session cookie last as long as Keycloak's ([#2135](https://github.com/wundergraph/cosmo/issues/2135)) ([589bbc9](https://github.com/wundergraph/cosmo/commit/589bbc9c778c21879ddf088a38f419fb0b909219)) (@wilsonrivera) # [0.156.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.155.3...controlplane@0.156.0) (2025-08-12) ### Features -* add support for plugins ([#2079](https://github.com/wundergraph/cosmo/issues/2079)) ([05c923a](https://github.com/wundergraph/cosmo/commit/05c923aaa09a898a1662fc40d0e5751dfa5b8fe1)) (@JivusAyrus) +- add support for plugins ([#2079](https://github.com/wundergraph/cosmo/issues/2079)) ([05c923a](https://github.com/wundergraph/cosmo/commit/05c923aaa09a898a1662fc40d0e5751dfa5b8fe1)) (@JivusAyrus) ## [0.155.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.155.2...controlplane@0.155.3) (2025-08-08) ### Bug Fixes -* encode and validate client name ([#2124](https://github.com/wundergraph/cosmo/issues/2124)) ([d137aee](https://github.com/wundergraph/cosmo/commit/d137aeed780528d7244453c39408de6faeed37a2)) (@StarpTech) -* prevent feature subgraphs from using other feature subgraphs as base subgraphs ([#2122](https://github.com/wundergraph/cosmo/issues/2122)) ([b41a1d8](https://github.com/wundergraph/cosmo/commit/b41a1d8e7c2915b23df6289fdda3d73db548e100)) (@JivusAyrus) -* use federated graph id and org id to fetch operation content ([#2107](https://github.com/wundergraph/cosmo/issues/2107)) ([cfe1036](https://github.com/wundergraph/cosmo/commit/cfe10361e0d756f803ef4210b5efa46c3f16d8bb)) (@JivusAyrus) +- encode and validate client name ([#2124](https://github.com/wundergraph/cosmo/issues/2124)) ([d137aee](https://github.com/wundergraph/cosmo/commit/d137aeed780528d7244453c39408de6faeed37a2)) (@StarpTech) +- prevent feature subgraphs from using other feature subgraphs as base subgraphs ([#2122](https://github.com/wundergraph/cosmo/issues/2122)) ([b41a1d8](https://github.com/wundergraph/cosmo/commit/b41a1d8e7c2915b23df6289fdda3d73db548e100)) (@JivusAyrus) +- use federated graph id and org id to fetch operation content ([#2107](https://github.com/wundergraph/cosmo/issues/2107)) ([cfe1036](https://github.com/wundergraph/cosmo/commit/cfe10361e0d756f803ef4210b5efa46c3f16d8bb)) (@JivusAyrus) ## [0.155.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.155.1...controlplane@0.155.2) (2025-08-07) @@ -495,31 +496,31 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* improve session renewal ([#2096](https://github.com/wundergraph/cosmo/issues/2096)) ([bef5e09](https://github.com/wundergraph/cosmo/commit/bef5e09eb5f93e10a6feb0d7ffd04b2f4410af00)) (@wilsonrivera) +- improve session renewal ([#2096](https://github.com/wundergraph/cosmo/issues/2096)) ([bef5e09](https://github.com/wundergraph/cosmo/commit/bef5e09eb5f93e10a6feb0d7ffd04b2f4410af00)) (@wilsonrivera) ## [0.154.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.154.0...controlplane@0.154.1) (2025-07-31) ### Bug Fixes -* take limit as input so the no of operations returned is always limited ([#2095](https://github.com/wundergraph/cosmo/issues/2095)) ([80691fe](https://github.com/wundergraph/cosmo/commit/80691fe5b30011f8212380ffea769b141fa121d5)) (@JivusAyrus) +- take limit as input so the no of operations returned is always limited ([#2095](https://github.com/wundergraph/cosmo/issues/2095)) ([80691fe](https://github.com/wundergraph/cosmo/commit/80691fe5b30011f8212380ffea769b141fa121d5)) (@JivusAyrus) # [0.154.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.153.0...controlplane@0.154.0) (2025-07-21) ### Features -* add disable resolvability validation flag ([#2065](https://github.com/wundergraph/cosmo/issues/2065)) ([0c920cc](https://github.com/wundergraph/cosmo/commit/0c920cc95065099667fc378b50e9278e8a99c286)) (@Aenimus) +- add disable resolvability validation flag ([#2065](https://github.com/wundergraph/cosmo/issues/2065)) ([0c920cc](https://github.com/wundergraph/cosmo/commit/0c920cc95065099667fc378b50e9278e8a99c286)) (@Aenimus) # [0.153.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.152.0...controlplane@0.153.0) (2025-07-10) ### Features -* add the `subgraph-viewer` role ([#2022](https://github.com/wundergraph/cosmo/issues/2022)) ([902b3bc](https://github.com/wundergraph/cosmo/commit/902b3bcd8ae9efaab71f5e1a97012938af51a57f)) (@wilsonrivera) +- add the `subgraph-viewer` role ([#2022](https://github.com/wundergraph/cosmo/issues/2022)) ([902b3bc](https://github.com/wundergraph/cosmo/commit/902b3bcd8ae9efaab71f5e1a97012938af51a57f)) (@wilsonrivera) # [0.152.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.151.2...controlplane@0.152.0) (2025-07-09) ### Features -* return the proposal name on the creation of proposal ([#2003](https://github.com/wundergraph/cosmo/issues/2003)) ([ff1b237](https://github.com/wundergraph/cosmo/commit/ff1b2376921db2db7ac2a9d1619824eb1ae1e76d)) (@JivusAyrus) +- return the proposal name on the creation of proposal ([#2003](https://github.com/wundergraph/cosmo/issues/2003)) ([ff1b237](https://github.com/wundergraph/cosmo/commit/ff1b2376921db2db7ac2a9d1619824eb1ae1e76d)) (@JivusAyrus) ## [0.151.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.151.1...controlplane@0.151.2) (2025-07-03) @@ -533,11 +534,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* toggle ui logic and search to consider all operations ([#1982](https://github.com/wundergraph/cosmo/issues/1982)) ([e6264bd](https://github.com/wundergraph/cosmo/commit/e6264bd5fc98962b2b36f21a3a20c802333192f1)) (@JivusAyrus) +- toggle ui logic and search to consider all operations ([#1982](https://github.com/wundergraph/cosmo/issues/1982)) ([e6264bd](https://github.com/wundergraph/cosmo/commit/e6264bd5fc98962b2b36f21a3a20c802333192f1)) (@JivusAyrus) ### Features -* allow organization members to be assigned multiple groups ([#1919](https://github.com/wundergraph/cosmo/issues/1919)) ([1e67757](https://github.com/wundergraph/cosmo/commit/1e677576a32efb89673cdfc3900a4c863eec8b7e)) (@wilsonrivera) +- allow organization members to be assigned multiple groups ([#1919](https://github.com/wundergraph/cosmo/issues/1919)) ([1e67757](https://github.com/wundergraph/cosmo/commit/1e677576a32efb89673cdfc3900a4c863eec8b7e)) (@wilsonrivera) ## [0.150.8](https://github.com/wundergraph/cosmo/compare/controlplane@0.150.7...controlplane@0.150.8) (2025-06-30) @@ -559,7 +560,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* fixes an issue caused by using `isFeatureEnabled` instead of `ge… ([#1972](https://github.com/wundergraph/cosmo/issues/1972)) ([c0762e4](https://github.com/wundergraph/cosmo/commit/c0762e49fa9891bc6399ba0cc46851e9c358501f)) (@wilsonrivera) +- fixes an issue caused by using `isFeatureEnabled` instead of `ge… ([#1972](https://github.com/wundergraph/cosmo/issues/1972)) ([c0762e4](https://github.com/wundergraph/cosmo/commit/c0762e49fa9891bc6399ba0cc46851e9c358501f)) (@wilsonrivera) ## [0.150.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.150.2...controlplane@0.150.3) (2025-06-16) @@ -569,158 +570,158 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* issue that made it impossible to delete empty groups ([#1934](https://github.com/wundergraph/cosmo/issues/1934)) ([72d70d9](https://github.com/wundergraph/cosmo/commit/72d70d9d1b2184abeeb3c648ea7a86d02fc3facb)) (@wilsonrivera) +- issue that made it impossible to delete empty groups ([#1934](https://github.com/wundergraph/cosmo/issues/1934)) ([72d70d9](https://github.com/wundergraph/cosmo/commit/72d70d9d1b2184abeeb3c648ea7a86d02fc3facb)) (@wilsonrivera) ## [0.150.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.150.0...controlplane@0.150.1) (2025-06-06) ### Bug Fixes -* resolve vite prism vulnerabilities ([#1940](https://github.com/wundergraph/cosmo/issues/1940)) ([9bd41c4](https://github.com/wundergraph/cosmo/commit/9bd41c404d5ab8b2a50c5db5b455ca1eb336bddb)) (@SkArchon) +- resolve vite prism vulnerabilities ([#1940](https://github.com/wundergraph/cosmo/issues/1940)) ([9bd41c4](https://github.com/wundergraph/cosmo/commit/9bd41c404d5ab8b2a50c5db5b455ca1eb336bddb)) (@SkArchon) # [0.150.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.149.0...controlplane@0.150.0) (2025-06-06) ### Features -* link organization to the root keycloak group ([#1920](https://github.com/wundergraph/cosmo/issues/1920)) ([2952533](https://github.com/wundergraph/cosmo/commit/2952533b7dbdf29dd71f97b21c92c834ba1f1c97)) (@wilsonrivera) +- link organization to the root keycloak group ([#1920](https://github.com/wundergraph/cosmo/issues/1920)) ([2952533](https://github.com/wundergraph/cosmo/commit/2952533b7dbdf29dd71f97b21c92c834ba1f1c97)) (@wilsonrivera) # [0.149.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.148.0...controlplane@0.149.0) (2025-06-02) ### Features -* add named type kind to data ([#1921](https://github.com/wundergraph/cosmo/issues/1921)) ([cfda0ae](https://github.com/wundergraph/cosmo/commit/cfda0aed8214a073ebd040a07290304095b9d26d)) (@Aenimus) +- add named type kind to data ([#1921](https://github.com/wundergraph/cosmo/issues/1921)) ([cfda0ae](https://github.com/wundergraph/cosmo/commit/cfda0aed8214a073ebd040a07290304095b9d26d)) (@Aenimus) # [0.148.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.147.0...controlplane@0.148.0) (2025-06-02) ### Features -* add GetClientsFromAnalytics RPC to fetch the clients using clickhouse metrics ([#1918](https://github.com/wundergraph/cosmo/issues/1918)) ([756edf3](https://github.com/wundergraph/cosmo/commit/756edf377314296adc50615f12c618b98e78810d)) (@JivusAyrus) +- add GetClientsFromAnalytics RPC to fetch the clients using clickhouse metrics ([#1918](https://github.com/wundergraph/cosmo/issues/1918)) ([756edf3](https://github.com/wundergraph/cosmo/commit/756edf377314296adc50615f12c618b98e78810d)) (@JivusAyrus) # [0.147.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.146.0...controlplane@0.147.0) (2025-05-29) ### Features -* fix subgraphs being displayed multiple times when they have bee… ([#1917](https://github.com/wundergraph/cosmo/issues/1917)) ([0c244b3](https://github.com/wundergraph/cosmo/commit/0c244b36b1bc063131955c4d8e4045d1e7235274)) (@wilsonrivera) +- fix subgraphs being displayed multiple times when they have bee… ([#1917](https://github.com/wundergraph/cosmo/issues/1917)) ([0c244b3](https://github.com/wundergraph/cosmo/commit/0c244b36b1bc063131955c4d8e4045d1e7235274)) (@wilsonrivera) # [0.146.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.145.1...controlplane@0.146.0) (2025-05-28) ### Features -* additional tests and improvements for the rbac system ([#1913](https://github.com/wundergraph/cosmo/issues/1913)) ([4345fde](https://github.com/wundergraph/cosmo/commit/4345fde0d69c1e9c3569d83670ae24eac939a220)) (@wilsonrivera) -* return proposalUrl on creation of proposal ([#1909](https://github.com/wundergraph/cosmo/issues/1909)) ([b21db02](https://github.com/wundergraph/cosmo/commit/b21db02185c37b47bd0c1db0fba872d1868017bd)) (@JivusAyrus) +- additional tests and improvements for the rbac system ([#1913](https://github.com/wundergraph/cosmo/issues/1913)) ([4345fde](https://github.com/wundergraph/cosmo/commit/4345fde0d69c1e9c3569d83670ae24eac939a220)) (@wilsonrivera) +- return proposalUrl on creation of proposal ([#1909](https://github.com/wundergraph/cosmo/issues/1909)) ([b21db02](https://github.com/wundergraph/cosmo/commit/b21db02185c37b47bd0c1db0fba872d1868017bd)) (@JivusAyrus) ## [0.145.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.145.0...controlplane@0.145.1) (2025-05-27) ### Bug Fixes -* missed legacy checks ([#1910](https://github.com/wundergraph/cosmo/issues/1910)) ([34e9ba6](https://github.com/wundergraph/cosmo/commit/34e9ba6d03c91bc8ff1a7b6c383996d4f453a641)) (@wilsonrivera) +- missed legacy checks ([#1910](https://github.com/wundergraph/cosmo/issues/1910)) ([34e9ba6](https://github.com/wundergraph/cosmo/commit/34e9ba6d03c91bc8ff1a7b6c383996d4f453a641)) (@wilsonrivera) # [0.145.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.144.0...controlplane@0.145.0) (2025-05-27) ### Features -* restore legacy support for check endpoints ([#1908](https://github.com/wundergraph/cosmo/issues/1908)) ([87c3b9d](https://github.com/wundergraph/cosmo/commit/87c3b9daa3caac6f4c51b871b9a0a2abc9e2fa8e)) (@wilsonrivera) +- restore legacy support for check endpoints ([#1908](https://github.com/wundergraph/cosmo/issues/1908)) ([87c3b9d](https://github.com/wundergraph/cosmo/commit/87c3b9daa3caac6f4c51b871b9a0a2abc9e2fa8e)) (@wilsonrivera) # [0.144.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.143.0...controlplane@0.144.0) (2025-05-26) ### Features -* fetch operations based on clients ([#1894](https://github.com/wundergraph/cosmo/issues/1894)) ([a7597f5](https://github.com/wundergraph/cosmo/commit/a7597f51d4506f11f117937955da3be2626a55c5)) (@JivusAyrus) +- fetch operations based on clients ([#1894](https://github.com/wundergraph/cosmo/issues/1894)) ([a7597f5](https://github.com/wundergraph/cosmo/commit/a7597f51d4506f11f117937955da3be2626a55c5)) (@JivusAyrus) # [0.143.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.142.0...controlplane@0.143.0) (2025-05-26) ### Features -* fallback to legacy read access check for api keys ([#1899](https://github.com/wundergraph/cosmo/issues/1899)) ([371edb2](https://github.com/wundergraph/cosmo/commit/371edb2226f3c9a7b4b2ef277406b36cb29be5db)) (@wilsonrivera) +- fallback to legacy read access check for api keys ([#1899](https://github.com/wundergraph/cosmo/issues/1899)) ([371edb2](https://github.com/wundergraph/cosmo/commit/371edb2226f3c9a7b4b2ef277406b36cb29be5db)) (@wilsonrivera) # [0.142.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.141.0...controlplane@0.142.0) (2025-05-25) ### Features -* improve available namespaces ([#1895](https://github.com/wundergraph/cosmo/issues/1895)) ([135de0a](https://github.com/wundergraph/cosmo/commit/135de0a4c57ce815e1177be34e96c2a5900f031e)) (@wilsonrivera) +- improve available namespaces ([#1895](https://github.com/wundergraph/cosmo/issues/1895)) ([135de0a](https://github.com/wundergraph/cosmo/commit/135de0a4c57ce815e1177be34e96c2a5900f031e)) (@wilsonrivera) # [0.141.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.140.0...controlplane@0.141.0) (2025-05-24) ### Features -* introduce RBAC groups for fine-grained control over resource access ([#1830](https://github.com/wundergraph/cosmo/issues/1830)) ([9f984cd](https://github.com/wundergraph/cosmo/commit/9f984cdfedbb80e0e120178b9755d6f57e85479e)) (@wilsonrivera) +- introduce RBAC groups for fine-grained control over resource access ([#1830](https://github.com/wundergraph/cosmo/issues/1830)) ([9f984cd](https://github.com/wundergraph/cosmo/commit/9f984cdfedbb80e0e120178b9755d6f57e85479e)) (@wilsonrivera) # [0.140.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.139.1...controlplane@0.140.0) (2025-05-19) ### Features -* **router:** grpc go plugin system ([#1866](https://github.com/wundergraph/cosmo/issues/1866)) ([280a61d](https://github.com/wundergraph/cosmo/commit/280a61de4bd1328549a023d1a3a0b702d78453b8)) (@Noroth) +- **router:** grpc go plugin system ([#1866](https://github.com/wundergraph/cosmo/issues/1866)) ([280a61d](https://github.com/wundergraph/cosmo/commit/280a61de4bd1328549a023d1a3a0b702d78453b8)) (@Noroth) ## [0.139.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.139.0...controlplane@0.139.1) (2025-05-19) ### Bug Fixes -* checkFederatedGraph by filtering out subgraphs without schemas for composition ([#1867](https://github.com/wundergraph/cosmo/issues/1867)) ([6a8c7f5](https://github.com/wundergraph/cosmo/commit/6a8c7f5b5bf9f6121a8a70eb38f7705997811746)) (@JivusAyrus) +- checkFederatedGraph by filtering out subgraphs without schemas for composition ([#1867](https://github.com/wundergraph/cosmo/issues/1867)) ([6a8c7f5](https://github.com/wundergraph/cosmo/commit/6a8c7f5b5bf9f6121a8a70eb38f7705997811746)) (@JivusAyrus) # [0.139.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.138.1...controlplane@0.139.0) (2025-05-16) ### Features -* get all the operations of a federated graph ([#1856](https://github.com/wundergraph/cosmo/issues/1856)) ([246b514](https://github.com/wundergraph/cosmo/commit/246b5149921827d2e2c4954086e3e5f4dd5815b2)) (@JivusAyrus) +- get all the operations of a federated graph ([#1856](https://github.com/wundergraph/cosmo/issues/1856)) ([246b514](https://github.com/wundergraph/cosmo/commit/246b5149921827d2e2c4954086e3e5f4dd5815b2)) (@JivusAyrus) ## [0.138.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.138.0...controlplane@0.138.1) (2025-05-14) ### Bug Fixes -* upgrade octokit, runc, esbuild to mitigate security issues ([#1859](https://github.com/wundergraph/cosmo/issues/1859)) ([8b6285d](https://github.com/wundergraph/cosmo/commit/8b6285df41ab8537ab751fbf59390723829793c4)) (@endigma) +- upgrade octokit, runc, esbuild to mitigate security issues ([#1859](https://github.com/wundergraph/cosmo/issues/1859)) ([8b6285d](https://github.com/wundergraph/cosmo/commit/8b6285df41ab8537ab751fbf59390723829793c4)) (@endigma) # [0.138.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.137.3...controlplane@0.138.0) (2025-05-13) ### Features -* allow to check new subgraphs ([#1761](https://github.com/wundergraph/cosmo/issues/1761)) ([5b0bfbf](https://github.com/wundergraph/cosmo/commit/5b0bfbf38e77893453dc6bdfb4d524df1f59881b)) (@JivusAyrus) +- allow to check new subgraphs ([#1761](https://github.com/wundergraph/cosmo/issues/1761)) ([5b0bfbf](https://github.com/wundergraph/cosmo/commit/5b0bfbf38e77893453dc6bdfb4d524df1f59881b)) (@JivusAyrus) ## [0.137.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.137.2...controlplane@0.137.3) (2025-05-07) ### Bug Fixes -* make proposals a invite only feature ([#1836](https://github.com/wundergraph/cosmo/issues/1836)) ([28a0ea0](https://github.com/wundergraph/cosmo/commit/28a0ea0decd75b62fd797af6df693437a2fc7240)) (@JivusAyrus) +- make proposals a invite only feature ([#1836](https://github.com/wundergraph/cosmo/issues/1836)) ([28a0ea0](https://github.com/wundergraph/cosmo/commit/28a0ea0decd75b62fd797af6df693437a2fc7240)) (@JivusAyrus) ## [0.137.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.137.1...controlplane@0.137.2) (2025-05-02) ### Bug Fixes -* vite vulnerability ([#1823](https://github.com/wundergraph/cosmo/issues/1823)) ([05d5300](https://github.com/wundergraph/cosmo/commit/05d53004612958fe1dab2c292ec89ac4ac686b61)) (@JivusAyrus) +- vite vulnerability ([#1823](https://github.com/wundergraph/cosmo/issues/1823)) ([05d5300](https://github.com/wundergraph/cosmo/commit/05d53004612958fe1dab2c292ec89ac4ac686b61)) (@JivusAyrus) ## [0.137.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.137.0...controlplane@0.137.1) (2025-04-29) ### Bug Fixes -* improve the queries of the check page ([#1811](https://github.com/wundergraph/cosmo/issues/1811)) ([ce4f377](https://github.com/wundergraph/cosmo/commit/ce4f377c53584299a86c0af1bc5b4bb87c825bfe)) (@JivusAyrus) +- improve the queries of the check page ([#1811](https://github.com/wundergraph/cosmo/issues/1811)) ([ce4f377](https://github.com/wundergraph/cosmo/commit/ce4f377c53584299a86c0af1bc5b4bb87c825bfe)) (@JivusAyrus) # [0.137.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.136.0...controlplane@0.137.0) (2025-04-18) ### Features -* organization audit logs should retain for 90d after org ([#1762](https://github.com/wundergraph/cosmo/issues/1762)) ([4c66340](https://github.com/wundergraph/cosmo/commit/4c663405d5b5367096d5a43e1f5ea92689703a68)) (@wilsonrivera) +- organization audit logs should retain for 90d after org ([#1762](https://github.com/wundergraph/cosmo/issues/1762)) ([4c66340](https://github.com/wundergraph/cosmo/commit/4c663405d5b5367096d5a43e1f5ea92689703a68)) (@wilsonrivera) # [0.136.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.135.0...controlplane@0.136.0) (2025-04-16) ### Features -* add webhook proposal state update functionality ([#1794](https://github.com/wundergraph/cosmo/issues/1794)) ([c5e1059](https://github.com/wundergraph/cosmo/commit/c5e10594087d93f63c8adeeedbc9fc3a9bb35198)) (@JivusAyrus) +- add webhook proposal state update functionality ([#1794](https://github.com/wundergraph/cosmo/issues/1794)) ([c5e1059](https://github.com/wundergraph/cosmo/commit/c5e10594087d93f63c8adeeedbc9fc3a9bb35198)) (@JivusAyrus) # [0.135.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.134.0...controlplane@0.135.0) (2025-04-15) ### Features -* implement proposals in cosmo ([#1727](https://github.com/wundergraph/cosmo/issues/1727)) ([1d36747](https://github.com/wundergraph/cosmo/commit/1d36747dda3f2f3c491092f0f02cefa22fc9c131)) (@JivusAyrus) +- implement proposals in cosmo ([#1727](https://github.com/wundergraph/cosmo/issues/1727)) ([1d36747](https://github.com/wundergraph/cosmo/commit/1d36747dda3f2f3c491092f0f02cefa22fc9c131)) (@JivusAyrus) # [0.134.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.133.6...controlplane@0.134.0) (2025-04-15) ### Features -* query batching ([#1749](https://github.com/wundergraph/cosmo/issues/1749)) ([b2a1d52](https://github.com/wundergraph/cosmo/commit/b2a1d523b6de9e7a6854e93464c47d6bbe1de06f)) (@SkArchon) +- query batching ([#1749](https://github.com/wundergraph/cosmo/issues/1749)) ([b2a1d52](https://github.com/wundergraph/cosmo/commit/b2a1d523b6de9e7a6854e93464c47d6bbe1de06f)) (@SkArchon) ## [0.133.6](https://github.com/wundergraph/cosmo/compare/controlplane@0.133.5...controlplane@0.133.6) (2025-04-15) ### Bug Fixes -* filter of checks ([#1792](https://github.com/wundergraph/cosmo/issues/1792)) ([ff172a1](https://github.com/wundergraph/cosmo/commit/ff172a11b0e538b3cc1996cdc14a09469f52cd45)) (@JivusAyrus) +- filter of checks ([#1792](https://github.com/wundergraph/cosmo/issues/1792)) ([ff172a1](https://github.com/wundergraph/cosmo/commit/ff172a11b0e538b3cc1996cdc14a09469f52cd45)) (@JivusAyrus) ## [0.133.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.133.4...controlplane@0.133.5) (2025-04-15) @@ -734,32 +735,32 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* subgraph check compose ([#1779](https://github.com/wundergraph/cosmo/issues/1779)) ([d437840](https://github.com/wundergraph/cosmo/commit/d437840c1be862ca48b667ec1f46ef8f04ba9ada)) (@thisisnithin) +- subgraph check compose ([#1779](https://github.com/wundergraph/cosmo/issues/1779)) ([d437840](https://github.com/wundergraph/cosmo/commit/d437840c1be862ca48b667ec1f46ef8f04ba9ada)) (@thisisnithin) ## [0.133.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.133.1...controlplane@0.133.2) (2025-04-11) ### Bug Fixes -* only redirect to cosmo urls ([#1778](https://github.com/wundergraph/cosmo/issues/1778)) ([888529a](https://github.com/wundergraph/cosmo/commit/888529ad1f544f0a2d2cd9a79d18debc698d9ce2)) (@JivusAyrus) +- only redirect to cosmo urls ([#1778](https://github.com/wundergraph/cosmo/issues/1778)) ([888529a](https://github.com/wundergraph/cosmo/commit/888529ad1f544f0a2d2cd9a79d18debc698d9ce2)) (@JivusAyrus) ## [0.133.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.133.0...controlplane@0.133.1) (2025-04-11) ### Bug Fixes -* solve issue caused when receiving a date range where the start is greater than the end ([#1766](https://github.com/wundergraph/cosmo/issues/1766)) ([d646863](https://github.com/wundergraph/cosmo/commit/d64686372251a3f38f53046272b2c4311ff3efac)) (@wilsonrivera) -* solves issue with Traces pagination ([#1767](https://github.com/wundergraph/cosmo/issues/1767)) ([4769680](https://github.com/wundergraph/cosmo/commit/4769680b55e88f6e1d3d056f5f1564fbb14a3212)) (@wilsonrivera) +- solve issue caused when receiving a date range where the start is greater than the end ([#1766](https://github.com/wundergraph/cosmo/issues/1766)) ([d646863](https://github.com/wundergraph/cosmo/commit/d64686372251a3f38f53046272b2c4311ff3efac)) (@wilsonrivera) +- solves issue with Traces pagination ([#1767](https://github.com/wundergraph/cosmo/issues/1767)) ([4769680](https://github.com/wundergraph/cosmo/commit/4769680b55e88f6e1d3d056f5f1564fbb14a3212)) (@wilsonrivera) # [0.133.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.132.0...controlplane@0.133.0) (2025-04-07) ### Features -* check with multiple subgraph schemas ([#1712](https://github.com/wundergraph/cosmo/issues/1712)) ([77370a4](https://github.com/wundergraph/cosmo/commit/77370a4729034b9c037831f14dcfc30ab44d71ef)) (@JivusAyrus) +- check with multiple subgraph schemas ([#1712](https://github.com/wundergraph/cosmo/issues/1712)) ([77370a4](https://github.com/wundergraph/cosmo/commit/77370a4729034b9c037831f14dcfc30ab44d71ef)) (@JivusAyrus) # [0.132.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.131.1...controlplane@0.132.0) (2025-04-04) ### Features -* improve delete organization workflow ([#1741](https://github.com/wundergraph/cosmo/issues/1741)) ([643c179](https://github.com/wundergraph/cosmo/commit/643c179f71daf5a77a56c685b3924d10894c2d9c)) (@wilsonrivera) +- improve delete organization workflow ([#1741](https://github.com/wundergraph/cosmo/issues/1741)) ([643c179](https://github.com/wundergraph/cosmo/commit/643c179f71daf5a77a56c685b3924d10894c2d9c)) (@wilsonrivera) ## [0.131.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.131.0...controlplane@0.131.1) (2025-04-02) @@ -769,42 +770,42 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add one feature flag to developer plan ([#1743](https://github.com/wundergraph/cosmo/issues/1743)) ([6307ef1](https://github.com/wundergraph/cosmo/commit/6307ef1a4d7a36e53572bb3e7293379699d5b07c)) (@JivusAyrus) +- add one feature flag to developer plan ([#1743](https://github.com/wundergraph/cosmo/issues/1743)) ([6307ef1](https://github.com/wundergraph/cosmo/commit/6307ef1a4d7a36e53572bb3e7293379699d5b07c)) (@JivusAyrus) # [0.130.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.129.2...controlplane@0.130.0) (2025-04-01) ### Bug Fixes -* upgrade octokit for CVE-2025-25288 ([#1740](https://github.com/wundergraph/cosmo/issues/1740)) ([9e722c9](https://github.com/wundergraph/cosmo/commit/9e722c9f77147c146cc724a9ec4001da65ded50a)) (@StarpTech) +- upgrade octokit for CVE-2025-25288 ([#1740](https://github.com/wundergraph/cosmo/issues/1740)) ([9e722c9](https://github.com/wundergraph/cosmo/commit/9e722c9f77147c146cc724a9ec4001da65ded50a)) (@StarpTech) ### Features -* remove discussions ([#1735](https://github.com/wundergraph/cosmo/issues/1735)) ([cbb6117](https://github.com/wundergraph/cosmo/commit/cbb61171505fd3fa67f501583d92002b0c807241)) (@thisisnithin) +- remove discussions ([#1735](https://github.com/wundergraph/cosmo/issues/1735)) ([cbb6117](https://github.com/wundergraph/cosmo/commit/cbb61171505fd3fa67f501583d92002b0c807241)) (@thisisnithin) ## [0.129.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.129.1...controlplane@0.129.2) (2025-03-28) ### Bug Fixes -* authorization directive cascading ([#1733](https://github.com/wundergraph/cosmo/issues/1733)) ([0199fb5](https://github.com/wundergraph/cosmo/commit/0199fb5f88104a585b74a79638f54f1a3b812436)) (@Aenimus) +- authorization directive cascading ([#1733](https://github.com/wundergraph/cosmo/issues/1733)) ([0199fb5](https://github.com/wundergraph/cosmo/commit/0199fb5f88104a585b74a79638f54f1a3b812436)) (@Aenimus) ## [0.129.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.129.0...controlplane@0.129.1) (2025-03-25) ### Bug Fixes -* fix incorrect calculation of the `p90` and `p99` subgraph metrics ([#1720](https://github.com/wundergraph/cosmo/issues/1720)) ([816e186](https://github.com/wundergraph/cosmo/commit/816e18618b6ddc00f4011995920911049a25c073)) (@wilsonrivera) +- fix incorrect calculation of the `p90` and `p99` subgraph metrics ([#1720](https://github.com/wundergraph/cosmo/issues/1720)) ([816e186](https://github.com/wundergraph/cosmo/commit/816e18618b6ddc00f4011995920911049a25c073)) (@wilsonrivera) # [0.129.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.128.0...controlplane@0.129.0) (2025-03-25) ### Features -* allow to filter checks by subgraph name ([#1716](https://github.com/wundergraph/cosmo/issues/1716)) ([ae69dcd](https://github.com/wundergraph/cosmo/commit/ae69dcde94611196f7f8b47702e25cdcdfa41a19)) (@wilsonrivera) -* introduce `p50`, `p90` and `p99` latency metrics for graphs and subgraphs ([#1710](https://github.com/wundergraph/cosmo/issues/1710)) ([1c55ed5](https://github.com/wundergraph/cosmo/commit/1c55ed51fe17be7371633a176c356e581ed44c62)) (@wilsonrivera) +- allow to filter checks by subgraph name ([#1716](https://github.com/wundergraph/cosmo/issues/1716)) ([ae69dcd](https://github.com/wundergraph/cosmo/commit/ae69dcde94611196f7f8b47702e25cdcdfa41a19)) (@wilsonrivera) +- introduce `p50`, `p90` and `p99` latency metrics for graphs and subgraphs ([#1710](https://github.com/wundergraph/cosmo/issues/1710)) ([1c55ed5](https://github.com/wundergraph/cosmo/commit/1c55ed51fe17be7371633a176c356e581ed44c62)) (@wilsonrivera) # [0.128.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.127.1...controlplane@0.128.0) (2025-03-20) ### Features -* implement checks configuration ([#1688](https://github.com/wundergraph/cosmo/issues/1688)) ([2cab283](https://github.com/wundergraph/cosmo/commit/2cab283b2cdeda7f943250d460150472eb464d22)) (@wilsonrivera) +- implement checks configuration ([#1688](https://github.com/wundergraph/cosmo/issues/1688)) ([2cab283](https://github.com/wundergraph/cosmo/commit/2cab283b2cdeda7f943250d460150472eb464d22)) (@wilsonrivera) ## [0.127.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.127.0...controlplane@0.127.1) (2025-03-19) @@ -814,17 +815,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* improve performance when updating member role ([#1680](https://github.com/wundergraph/cosmo/issues/1680)) ([493184d](https://github.com/wundergraph/cosmo/commit/493184daf5c7b593b509faacafcc204b89d70481)) (@wilsonrivera) +- improve performance when updating member role ([#1680](https://github.com/wundergraph/cosmo/issues/1680)) ([493184d](https://github.com/wundergraph/cosmo/commit/493184daf5c7b593b509faacafcc204b89d70481)) (@wilsonrivera) ### Features -* display used api key name on the audit log table ([#1674](https://github.com/wundergraph/cosmo/issues/1674)) ([55ffbdd](https://github.com/wundergraph/cosmo/commit/55ffbdd7ac0ae10106de4bf3c073d650c0537a52)) (@wilsonrivera) +- display used api key name on the audit log table ([#1674](https://github.com/wundergraph/cosmo/issues/1674)) ([55ffbdd](https://github.com/wundergraph/cosmo/commit/55ffbdd7ac0ae10106de4bf3c073d650c0537a52)) (@wilsonrivera) # [0.126.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.125.1...controlplane@0.126.0) (2025-03-12) ### Features -* **controlplane:** include base subgraph data in feature subgraph response ([#1668](https://github.com/wundergraph/cosmo/issues/1668)) ([ad63030](https://github.com/wundergraph/cosmo/commit/ad6303059edec65fff3b07e61ff11a4bbba82db5)) (@Noroth) +- **controlplane:** include base subgraph data in feature subgraph response ([#1668](https://github.com/wundergraph/cosmo/issues/1668)) ([ad63030](https://github.com/wundergraph/cosmo/commit/ad6303059edec65fff3b07e61ff11a4bbba82db5)) (@Noroth) ## [0.125.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.125.0...controlplane@0.125.1) (2025-03-11) @@ -834,24 +835,24 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* ignore [@external](https://github.com/external) on entity extension key fields ([#1611](https://github.com/wundergraph/cosmo/issues/1611)) ([b10cf69](https://github.com/wundergraph/cosmo/commit/b10cf69a7df2c5305e66fe744514a605c9a06505)) (@Aenimus) +- ignore [@external](https://github.com/external) on entity extension key fields ([#1611](https://github.com/wundergraph/cosmo/issues/1611)) ([b10cf69](https://github.com/wundergraph/cosmo/commit/b10cf69a7df2c5305e66fe744514a605c9a06505)) (@Aenimus) ### Features -* add option to set the number of operations for cache warming and implement FILO policy ([#1607](https://github.com/wundergraph/cosmo/issues/1607)) ([6867225](https://github.com/wundergraph/cosmo/commit/6867225dfcacf5e11b01394224dd9df5e9168dc8)) (@JivusAyrus) -* improve the cache warmer operations manifest for persisted operations ([#1599](https://github.com/wundergraph/cosmo/issues/1599)) ([2579a1c](https://github.com/wundergraph/cosmo/commit/2579a1c7d9c4618efba37e340d27dff9edd6136d)) (@JivusAyrus) +- add option to set the number of operations for cache warming and implement FILO policy ([#1607](https://github.com/wundergraph/cosmo/issues/1607)) ([6867225](https://github.com/wundergraph/cosmo/commit/6867225dfcacf5e11b01394224dd9df5e9168dc8)) (@JivusAyrus) +- improve the cache warmer operations manifest for persisted operations ([#1599](https://github.com/wundergraph/cosmo/issues/1599)) ([2579a1c](https://github.com/wundergraph/cosmo/commit/2579a1c7d9c4618efba37e340d27dff9edd6136d)) (@JivusAyrus) ## [0.124.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.124.2...controlplane@0.124.3) (2025-02-26) ### Bug Fixes -* improve wgc auth login and router compatibility-version ([#1636](https://github.com/wundergraph/cosmo/issues/1636)) ([6946363](https://github.com/wundergraph/cosmo/commit/6946363024e49b6170a9553728ac3ecc973ce394)) (@Aenimus) +- improve wgc auth login and router compatibility-version ([#1636](https://github.com/wundergraph/cosmo/issues/1636)) ([6946363](https://github.com/wundergraph/cosmo/commit/6946363024e49b6170a9553728ac3ecc973ce394)) (@Aenimus) ## [0.124.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.124.1...controlplane@0.124.2) (2025-02-19) ### Bug Fixes -* include changedTypes in the list of changes displayed in the slack notification ([#1603](https://github.com/wundergraph/cosmo/issues/1603)) ([a9db035](https://github.com/wundergraph/cosmo/commit/a9db03593f9308b9579f54a46db78a627a012857)) (@JivusAyrus) +- include changedTypes in the list of changes displayed in the slack notification ([#1603](https://github.com/wundergraph/cosmo/issues/1603)) ([a9db035](https://github.com/wundergraph/cosmo/commit/a9db03593f9308b9579f54a46db78a627a012857)) (@JivusAyrus) ## [0.124.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.124.0...controlplane@0.124.1) (2025-02-18) @@ -861,25 +862,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add composition versioning ([#1575](https://github.com/wundergraph/cosmo/issues/1575)) ([ee32cbb](https://github.com/wundergraph/cosmo/commit/ee32cbb3dbe7c46fa984920bbd95e4a00d01c9c3)) (@Aenimus) +- add composition versioning ([#1575](https://github.com/wundergraph/cosmo/issues/1575)) ([ee32cbb](https://github.com/wundergraph/cosmo/commit/ee32cbb3dbe7c46fa984920bbd95e4a00d01c9c3)) (@Aenimus) # [0.123.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.122.0...controlplane@0.123.0) (2025-02-14) ### Features -* send user's firstName and lastName on user's successful registration ([#1590](https://github.com/wundergraph/cosmo/issues/1590)) ([7bdcc9d](https://github.com/wundergraph/cosmo/commit/7bdcc9dbbc8af76370ff02b80697cec664c6ce3b)) (@JivusAyrus) +- send user's firstName and lastName on user's successful registration ([#1590](https://github.com/wundergraph/cosmo/issues/1590)) ([7bdcc9d](https://github.com/wundergraph/cosmo/commit/7bdcc9dbbc8af76370ff02b80697cec664c6ce3b)) (@JivusAyrus) # [0.122.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.121.7...controlplane@0.122.0) (2025-02-12) ### Bug Fixes -* check if label matchers have changed before composing ([#1589](https://github.com/wundergraph/cosmo/issues/1589)) ([ead469c](https://github.com/wundergraph/cosmo/commit/ead469c7dd242282bb27c7eca4580f4480440d0f)) (@thisisnithin) -* duplicate compositions on subgraph label update ([#1588](https://github.com/wundergraph/cosmo/issues/1588)) ([e40c215](https://github.com/wundergraph/cosmo/commit/e40c2157dcc5daccb146cb3aca05779e5c377159)) (@thisisnithin) -* use subgraphId while performing operations check ([#1581](https://github.com/wundergraph/cosmo/issues/1581)) ([473d4da](https://github.com/wundergraph/cosmo/commit/473d4da3a187566f2b125434a90367e09e14359e)) (@JivusAyrus) +- check if label matchers have changed before composing ([#1589](https://github.com/wundergraph/cosmo/issues/1589)) ([ead469c](https://github.com/wundergraph/cosmo/commit/ead469c7dd242282bb27c7eca4580f4480440d0f)) (@thisisnithin) +- duplicate compositions on subgraph label update ([#1588](https://github.com/wundergraph/cosmo/issues/1588)) ([e40c215](https://github.com/wundergraph/cosmo/commit/e40c2157dcc5daccb146cb3aca05779e5c377159)) (@thisisnithin) +- use subgraphId while performing operations check ([#1581](https://github.com/wundergraph/cosmo/issues/1581)) ([473d4da](https://github.com/wundergraph/cosmo/commit/473d4da3a187566f2b125434a90367e09e14359e)) (@JivusAyrus) ### Features -* add option to delete cache operation ([#1586](https://github.com/wundergraph/cosmo/issues/1586)) ([2946139](https://github.com/wundergraph/cosmo/commit/29461397e784eec0880546807df51dbfd8f2918c)) (@JivusAyrus) +- add option to delete cache operation ([#1586](https://github.com/wundergraph/cosmo/issues/1586)) ([2946139](https://github.com/wundergraph/cosmo/commit/29461397e784eec0880546807df51dbfd8f2918c)) (@JivusAyrus) ## [0.121.7](https://github.com/wundergraph/cosmo/compare/controlplane@0.121.6...controlplane@0.121.7) (2025-02-06) @@ -897,22 +898,22 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* update vulnerable packages ([#1560](https://github.com/wundergraph/cosmo/issues/1560)) ([f97e30f](https://github.com/wundergraph/cosmo/commit/f97e30f48a8cdab7b26d6cede9235e61fd1dec23)) (@JivusAyrus) +- update vulnerable packages ([#1560](https://github.com/wundergraph/cosmo/issues/1560)) ([f97e30f](https://github.com/wundergraph/cosmo/commit/f97e30f48a8cdab7b26d6cede9235e61fd1dec23)) (@JivusAyrus) ## [0.121.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.121.2...controlplane@0.121.3) (2025-01-31) ### Bug Fixes -* change the defaults of breaking-change-retention ([#1551](https://github.com/wundergraph/cosmo/issues/1551)) ([38df3ee](https://github.com/wundergraph/cosmo/commit/38df3ee3bc2370ea4c729978545dcc6d79f5be28)) (@JivusAyrus) -* reduce the breaking change retention duration ([#1550](https://github.com/wundergraph/cosmo/issues/1550)) ([16ab8c6](https://github.com/wundergraph/cosmo/commit/16ab8c6dc8e2930dfa0f262f42ca960613a456bd)) (@JivusAyrus) +- change the defaults of breaking-change-retention ([#1551](https://github.com/wundergraph/cosmo/issues/1551)) ([38df3ee](https://github.com/wundergraph/cosmo/commit/38df3ee3bc2370ea4c729978545dcc6d79f5be28)) (@JivusAyrus) +- reduce the breaking change retention duration ([#1550](https://github.com/wundergraph/cosmo/issues/1550)) ([16ab8c6](https://github.com/wundergraph/cosmo/commit/16ab8c6dc8e2930dfa0f262f42ca960613a456bd)) (@JivusAyrus) ## [0.121.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.121.1...controlplane@0.121.2) (2025-01-29) ### Bug Fixes -* adding/removing directive is not picked up by wgc subgraph check ([#1494](https://github.com/wundergraph/cosmo/issues/1494)) ([3cfa2d5](https://github.com/wundergraph/cosmo/commit/3cfa2d5ceba9d1b5beb613c255566324bec85c3d)) (@JivusAyrus) -* trim the inputs of group mappers ([#1541](https://github.com/wundergraph/cosmo/issues/1541)) ([18a6025](https://github.com/wundergraph/cosmo/commit/18a6025a1e352ae6adb77ec2d231f209e20c4833)) (@JivusAyrus) -* webhooks shot when schema is unchanged ([#1542](https://github.com/wundergraph/cosmo/issues/1542)) ([3024dcf](https://github.com/wundergraph/cosmo/commit/3024dcfe9f6a7df3e7d3707fca671615ac26f304)) (@thisisnithin) +- adding/removing directive is not picked up by wgc subgraph check ([#1494](https://github.com/wundergraph/cosmo/issues/1494)) ([3cfa2d5](https://github.com/wundergraph/cosmo/commit/3cfa2d5ceba9d1b5beb613c255566324bec85c3d)) (@JivusAyrus) +- trim the inputs of group mappers ([#1541](https://github.com/wundergraph/cosmo/issues/1541)) ([18a6025](https://github.com/wundergraph/cosmo/commit/18a6025a1e352ae6adb77ec2d231f209e20c4833)) (@JivusAyrus) +- webhooks shot when schema is unchanged ([#1542](https://github.com/wundergraph/cosmo/issues/1542)) ([3024dcf](https://github.com/wundergraph/cosmo/commit/3024dcfe9f6a7df3e7d3707fca671615ac26f304)) (@thisisnithin) ## [0.121.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.121.0...controlplane@0.121.1) (2025-01-24) @@ -922,55 +923,55 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* improve cache warmer ([#1530](https://github.com/wundergraph/cosmo/issues/1530)) ([2e3f0d2](https://github.com/wundergraph/cosmo/commit/2e3f0d2f05f0ecd8c2a39fd1588c5610af22eaed)) (@StarpTech) +- improve cache warmer ([#1530](https://github.com/wundergraph/cosmo/issues/1530)) ([2e3f0d2](https://github.com/wundergraph/cosmo/commit/2e3f0d2f05f0ecd8c2a39fd1588c5610af22eaed)) (@StarpTech) ## [0.120.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.120.1...controlplane@0.120.2) (2025-01-19) ### Bug Fixes -* **cache operation:** swallow cache errors and other improvements ([#1515](https://github.com/wundergraph/cosmo/issues/1515)) ([d959e2c](https://github.com/wundergraph/cosmo/commit/d959e2c9fb492cc7c73d89f61c31f3bad2ac5706)) (@StarpTech) +- **cache operation:** swallow cache errors and other improvements ([#1515](https://github.com/wundergraph/cosmo/issues/1515)) ([d959e2c](https://github.com/wundergraph/cosmo/commit/d959e2c9fb492cc7c73d89f61c31f3bad2ac5706)) (@StarpTech) ## [0.120.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.120.0...controlplane@0.120.1) (2025-01-18) ### Bug Fixes -* **cache warmup:** consider only po of the last 7 days ([#1513](https://github.com/wundergraph/cosmo/issues/1513)) ([1d2f041](https://github.com/wundergraph/cosmo/commit/1d2f0410c240eaeda97b2d7a8afafd4173b672f1)) (@StarpTech) +- **cache warmup:** consider only po of the last 7 days ([#1513](https://github.com/wundergraph/cosmo/issues/1513)) ([1d2f041](https://github.com/wundergraph/cosmo/commit/1d2f0410c240eaeda97b2d7a8afafd4173b672f1)) (@StarpTech) # [0.120.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.119.1...controlplane@0.120.0) (2025-01-17) ### Features -* cache warmer ([#1501](https://github.com/wundergraph/cosmo/issues/1501)) ([948edd2](https://github.com/wundergraph/cosmo/commit/948edd23e6d0ee968c91edd1a9e9943c3405ac2d)) (@JivusAyrus) +- cache warmer ([#1501](https://github.com/wundergraph/cosmo/issues/1501)) ([948edd2](https://github.com/wundergraph/cosmo/commit/948edd23e6d0ee968c91edd1a9e9943c3405ac2d)) (@JivusAyrus) ## [0.119.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.119.0...controlplane@0.119.1) (2025-01-08) ### Bug Fixes -* update the timeouts for clickhouse and platform service ([#1500](https://github.com/wundergraph/cosmo/issues/1500)) ([d425aa1](https://github.com/wundergraph/cosmo/commit/d425aa13568ba94f599a6264619502890030ce02)) (@JivusAyrus) +- update the timeouts for clickhouse and platform service ([#1500](https://github.com/wundergraph/cosmo/issues/1500)) ([d425aa1](https://github.com/wundergraph/cosmo/commit/d425aa13568ba94f599a6264619502890030ce02)) (@JivusAyrus) # [0.119.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.118.7...controlplane@0.119.0) (2025-01-08) ### Features -* expose type data and record subgraphs for enums ([#1495](https://github.com/wundergraph/cosmo/issues/1495)) ([9e13f28](https://github.com/wundergraph/cosmo/commit/9e13f28c0a90b0d2f335c9b31f35e728c4a1799c)) (@thisisnithin) +- expose type data and record subgraphs for enums ([#1495](https://github.com/wundergraph/cosmo/issues/1495)) ([9e13f28](https://github.com/wundergraph/cosmo/commit/9e13f28c0a90b0d2f335c9b31f35e728c4a1799c)) (@thisisnithin) ## [0.118.7](https://github.com/wundergraph/cosmo/compare/controlplane@0.118.6...controlplane@0.118.7) (2025-01-06) ### Bug Fixes -* add regex validation to graph names and routing urls ([#1450](https://github.com/wundergraph/cosmo/issues/1450)) ([e5b1c8f](https://github.com/wundergraph/cosmo/commit/e5b1c8fb33a41fc808067bb6495a43f74b60b314)) (@JivusAyrus) +- add regex validation to graph names and routing urls ([#1450](https://github.com/wundergraph/cosmo/issues/1450)) ([e5b1c8f](https://github.com/wundergraph/cosmo/commit/e5b1c8fb33a41fc808067bb6495a43f74b60b314)) (@JivusAyrus) ## [0.118.6](https://github.com/wundergraph/cosmo/compare/controlplane@0.118.5...controlplane@0.118.6) (2025-01-06) ### Bug Fixes -* use gauge metric type for router uptime metric ([#1485](https://github.com/wundergraph/cosmo/issues/1485)) ([94b0125](https://github.com/wundergraph/cosmo/commit/94b01252d6be2848b98449fb29a0bd63dcd980d3)) (@StarpTech) +- use gauge metric type for router uptime metric ([#1485](https://github.com/wundergraph/cosmo/issues/1485)) ([94b0125](https://github.com/wundergraph/cosmo/commit/94b01252d6be2848b98449fb29a0bd63dcd980d3)) (@StarpTech) ## [0.118.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.118.4...controlplane@0.118.5) (2025-01-02) ### Bug Fixes -* use secure variant of id generator ([#1483](https://github.com/wundergraph/cosmo/issues/1483)) ([cdd5bee](https://github.com/wundergraph/cosmo/commit/cdd5bee55915bc20e92b497965b7a87ab32e0359)) (@StarpTech) +- use secure variant of id generator ([#1483](https://github.com/wundergraph/cosmo/issues/1483)) ([cdd5bee](https://github.com/wundergraph/cosmo/commit/cdd5bee55915bc20e92b497965b7a87ab32e0359)) (@StarpTech) ## [0.118.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.118.3...controlplane@0.118.4) (2024-12-21) @@ -988,44 +989,44 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* update packages to address vulnerabilities ([#1411](https://github.com/wundergraph/cosmo/issues/1411)) ([7e84900](https://github.com/wundergraph/cosmo/commit/7e84900ed705164d69c99afcf5a698b3298fb6ad)) (@JivusAyrus) +- update packages to address vulnerabilities ([#1411](https://github.com/wundergraph/cosmo/issues/1411)) ([7e84900](https://github.com/wundergraph/cosmo/commit/7e84900ed705164d69c99afcf5a698b3298fb6ad)) (@JivusAyrus) # [0.118.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.117.2...controlplane@0.118.0) (2024-12-03) ### Features -* add an option to update the readme, routing url and admission webhook url of a contract ([#1403](https://github.com/wundergraph/cosmo/issues/1403)) ([226bc9c](https://github.com/wundergraph/cosmo/commit/226bc9cd863e27537afd42ef23418c3acd06733a)) (@JivusAyrus) -* add apis to fetch fedGraph, subgraph and namespace by id ([#1386](https://github.com/wundergraph/cosmo/issues/1386)) ([66b3650](https://github.com/wundergraph/cosmo/commit/66b365061677d41b7218d289aad99f0661e5d51e)) (@JivusAyrus) +- add an option to update the readme, routing url and admission webhook url of a contract ([#1403](https://github.com/wundergraph/cosmo/issues/1403)) ([226bc9c](https://github.com/wundergraph/cosmo/commit/226bc9cd863e27537afd42ef23418c3acd06733a)) (@JivusAyrus) +- add apis to fetch fedGraph, subgraph and namespace by id ([#1386](https://github.com/wundergraph/cosmo/issues/1386)) ([66b3650](https://github.com/wundergraph/cosmo/commit/66b365061677d41b7218d289aad99f0661e5d51e)) (@JivusAyrus) ## [0.117.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.117.1...controlplane@0.117.2) (2024-11-27) ### Bug Fixes -* error ordering for traces ([#1398](https://github.com/wundergraph/cosmo/issues/1398)) ([444fb8d](https://github.com/wundergraph/cosmo/commit/444fb8dbc79a076c1a12c2a2ba813b91a19fc79d)) (@thisisnithin) +- error ordering for traces ([#1398](https://github.com/wundergraph/cosmo/issues/1398)) ([444fb8d](https://github.com/wundergraph/cosmo/commit/444fb8dbc79a076c1a12c2a2ba813b91a19fc79d)) (@thisisnithin) ## [0.117.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.117.0...controlplane@0.117.1) (2024-11-22) ### Bug Fixes -* delete org and user workflows ([#1326](https://github.com/wundergraph/cosmo/issues/1326)) ([484898d](https://github.com/wundergraph/cosmo/commit/484898d885fc99dda8f81a2855173bd3628a5639)) (@thisisnithin) +- delete org and user workflows ([#1326](https://github.com/wundergraph/cosmo/issues/1326)) ([484898d](https://github.com/wundergraph/cosmo/commit/484898d885fc99dda8f81a2855173bd3628a5639)) (@thisisnithin) # [0.117.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.116.0...controlplane@0.117.0) (2024-11-21) ### Features -* add validation for V2 [@external](https://github.com/external) directive ([#1392](https://github.com/wundergraph/cosmo/issues/1392)) ([d2a8f73](https://github.com/wundergraph/cosmo/commit/d2a8f73e1c47b62a435ddacc3ceffd7d7abd7b9f)) (@Aenimus) +- add validation for V2 [@external](https://github.com/external) directive ([#1392](https://github.com/wundergraph/cosmo/issues/1392)) ([d2a8f73](https://github.com/wundergraph/cosmo/commit/d2a8f73e1c47b62a435ddacc3ceffd7d7abd7b9f)) (@Aenimus) # [0.116.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.115.2...controlplane@0.116.0) (2024-11-18) ### Features -* add pagination to operations page in check summary ([#1377](https://github.com/wundergraph/cosmo/issues/1377)) ([e61d4f1](https://github.com/wundergraph/cosmo/commit/e61d4f12873fe434d89c9069b8a1b1e3da225ebf)) (@JivusAyrus) +- add pagination to operations page in check summary ([#1377](https://github.com/wundergraph/cosmo/issues/1377)) ([e61d4f1](https://github.com/wundergraph/cosmo/commit/e61d4f12873fe434d89c9069b8a1b1e3da225ebf)) (@JivusAyrus) ## [0.115.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.115.1...controlplane@0.115.2) (2024-11-16) ### Bug Fixes -* increase the batch size of operation usage insertion ([#1378](https://github.com/wundergraph/cosmo/issues/1378)) ([44ac8a8](https://github.com/wundergraph/cosmo/commit/44ac8a83782556f3d30c868d7942781ae47edf1b)) (@JivusAyrus) +- increase the batch size of operation usage insertion ([#1378](https://github.com/wundergraph/cosmo/issues/1378)) ([44ac8a8](https://github.com/wundergraph/cosmo/commit/44ac8a83782556f3d30c868d7942781ae47edf1b)) (@JivusAyrus) ## [0.115.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.115.0...controlplane@0.115.1) (2024-11-14) @@ -1035,13 +1036,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add subgraph property to Warnings ([#1355](https://github.com/wundergraph/cosmo/issues/1355)) ([cacc0f3](https://github.com/wundergraph/cosmo/commit/cacc0f3c01673b7bf1ea8d20305d04939ca3351e)) (@Aenimus) +- add subgraph property to Warnings ([#1355](https://github.com/wundergraph/cosmo/issues/1355)) ([cacc0f3](https://github.com/wundergraph/cosmo/commit/cacc0f3c01673b7bf1ea8d20305d04939ca3351e)) (@Aenimus) ## [0.114.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.114.2...controlplane@0.114.3) (2024-11-07) ### Bug Fixes -* max call stack reached while inserting operation usage of checks ([#1338](https://github.com/wundergraph/cosmo/issues/1338)) ([a3fd3d9](https://github.com/wundergraph/cosmo/commit/a3fd3d9f44779b6f1b2918e7808653520769ff53)) (@JivusAyrus) +- max call stack reached while inserting operation usage of checks ([#1338](https://github.com/wundergraph/cosmo/issues/1338)) ([a3fd3d9](https://github.com/wundergraph/cosmo/commit/a3fd3d9f44779b6f1b2918e7808653520769ff53)) (@JivusAyrus) ## [0.114.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.114.1...controlplane@0.114.2) (2024-11-05) @@ -1051,50 +1052,50 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* get user accessible resources of a developer ([#1327](https://github.com/wundergraph/cosmo/issues/1327)) ([23dc3fe](https://github.com/wundergraph/cosmo/commit/23dc3fe5e9dc091c9ffe7e3a6532a8a8af67b3ed)) (@JivusAyrus) +- get user accessible resources of a developer ([#1327](https://github.com/wundergraph/cosmo/issues/1327)) ([23dc3fe](https://github.com/wundergraph/cosmo/commit/23dc3fe5e9dc091c9ffe7e3a6532a8a8af67b3ed)) (@JivusAyrus) # [0.114.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.113.0...controlplane@0.114.0) (2024-10-31) ### Features -* custom scripts ([#1302](https://github.com/wundergraph/cosmo/issues/1302)) ([9f4457c](https://github.com/wundergraph/cosmo/commit/9f4457c7f7acdf2f56cc3ad7f0474653063f290c)) (@thisisnithin) +- custom scripts ([#1302](https://github.com/wundergraph/cosmo/issues/1302)) ([9f4457c](https://github.com/wundergraph/cosmo/commit/9f4457c7f7acdf2f56cc3ad7f0474653063f290c)) (@thisisnithin) # [0.113.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.112.0...controlplane@0.113.0) (2024-10-29) ### Features -* **perf:** improve graph composition queries ([#1319](https://github.com/wundergraph/cosmo/issues/1319)) ([646650d](https://github.com/wundergraph/cosmo/commit/646650d431c560071475452ff12eced14703f0d6)) (@StarpTech) +- **perf:** improve graph composition queries ([#1319](https://github.com/wundergraph/cosmo/issues/1319)) ([646650d](https://github.com/wundergraph/cosmo/commit/646650d431c560071475452ff12eced14703f0d6)) (@StarpTech) # [0.112.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.111.8...controlplane@0.112.0) (2024-10-28) ### Features -* add missing indexes, upgrade drizzle ([#1309](https://github.com/wundergraph/cosmo/issues/1309)) ([5b022e5](https://github.com/wundergraph/cosmo/commit/5b022e51ca6c9378377a7fb35fc4b2ddaad1ad06)) (@StarpTech) -* propagate warnings from composition ([#1298](https://github.com/wundergraph/cosmo/issues/1298)) ([174c11b](https://github.com/wundergraph/cosmo/commit/174c11bca599e773faa2f53ff31efd8aba238ff3)) (@JivusAyrus) +- add missing indexes, upgrade drizzle ([#1309](https://github.com/wundergraph/cosmo/issues/1309)) ([5b022e5](https://github.com/wundergraph/cosmo/commit/5b022e51ca6c9378377a7fb35fc4b2ddaad1ad06)) (@StarpTech) +- propagate warnings from composition ([#1298](https://github.com/wundergraph/cosmo/issues/1298)) ([174c11b](https://github.com/wundergraph/cosmo/commit/174c11bca599e773faa2f53ff31efd8aba238ff3)) (@JivusAyrus) ## [0.111.8](https://github.com/wundergraph/cosmo/compare/controlplane@0.111.7...controlplane@0.111.8) (2024-10-24) ### Bug Fixes -* include tags migration ([#1304](https://github.com/wundergraph/cosmo/issues/1304)) ([4a459fe](https://github.com/wundergraph/cosmo/commit/4a459fe8afa12a09b6b0a5a08859680b0a774c48)) (@thisisnithin) +- include tags migration ([#1304](https://github.com/wundergraph/cosmo/issues/1304)) ([4a459fe](https://github.com/wundergraph/cosmo/commit/4a459fe8afa12a09b6b0a5a08859680b0a774c48)) (@thisisnithin) ## [0.111.7](https://github.com/wundergraph/cosmo/compare/controlplane@0.111.6...controlplane@0.111.7) (2024-10-24) ### Bug Fixes -* subgraph and schema version foreign key constraint ([#1303](https://github.com/wundergraph/cosmo/issues/1303)) ([b16c2d0](https://github.com/wundergraph/cosmo/commit/b16c2d0d84d061e725507e35808928e7af5c1acf)) (@thisisnithin) +- subgraph and schema version foreign key constraint ([#1303](https://github.com/wundergraph/cosmo/issues/1303)) ([b16c2d0](https://github.com/wundergraph/cosmo/commit/b16c2d0d84d061e725507e35808928e7af5c1acf)) (@thisisnithin) ## [0.111.6](https://github.com/wundergraph/cosmo/compare/controlplane@0.111.5...controlplane@0.111.6) (2024-10-22) ### Bug Fixes -* escape characters in clickhouse query params ([#1294](https://github.com/wundergraph/cosmo/issues/1294)) ([836660c](https://github.com/wundergraph/cosmo/commit/836660c7a61b58dd8b6a31264fa60ea7040ff014)) (@thisisnithin) +- escape characters in clickhouse query params ([#1294](https://github.com/wundergraph/cosmo/issues/1294)) ([836660c](https://github.com/wundergraph/cosmo/commit/836660c7a61b58dd8b6a31264fa60ea7040ff014)) (@thisisnithin) ## [0.111.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.111.4...controlplane@0.111.5) (2024-10-18) ### Bug Fixes -* allow leading underscores in lint rules ([#1281](https://github.com/wundergraph/cosmo/issues/1281)) ([bda997a](https://github.com/wundergraph/cosmo/commit/bda997a38da98fa84eb8751abbab385983a73ea3)) (@JivusAyrus) +- allow leading underscores in lint rules ([#1281](https://github.com/wundergraph/cosmo/issues/1281)) ([bda997a](https://github.com/wundergraph/cosmo/commit/bda997a38da98fa84eb8751abbab385983a73ea3)) (@JivusAyrus) ## [0.111.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.111.3...controlplane@0.111.4) (2024-10-17) @@ -1116,83 +1117,83 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* sso redirect urls ([#1253](https://github.com/wundergraph/cosmo/issues/1253)) ([64a0fd2](https://github.com/wundergraph/cosmo/commit/64a0fd2103c30995651bdae1fb3f4e32e03b7d8e)) (@JivusAyrus) +- sso redirect urls ([#1253](https://github.com/wundergraph/cosmo/issues/1253)) ([64a0fd2](https://github.com/wundergraph/cosmo/commit/64a0fd2103c30995651bdae1fb3f4e32e03b7d8e)) (@JivusAyrus) ### Features -* add custom context to subgraph checks ([#1252](https://github.com/wundergraph/cosmo/issues/1252)) ([c510628](https://github.com/wundergraph/cosmo/commit/c510628bc8ca80a88b681d87051940361605ff5b)) (@JivusAyrus) -* add indirect interface fields to schema usage reporting ([#1235](https://github.com/wundergraph/cosmo/issues/1235)) ([1c62c14](https://github.com/wundergraph/cosmo/commit/1c62c14f9a9f11a6fbbebf5a3fbc4d85f304285e)) (@jensneuse) +- add custom context to subgraph checks ([#1252](https://github.com/wundergraph/cosmo/issues/1252)) ([c510628](https://github.com/wundergraph/cosmo/commit/c510628bc8ca80a88b681d87051940361605ff5b)) (@JivusAyrus) +- add indirect interface fields to schema usage reporting ([#1235](https://github.com/wundergraph/cosmo/issues/1235)) ([1c62c14](https://github.com/wundergraph/cosmo/commit/1c62c14f9a9f11a6fbbebf5a3fbc4d85f304285e)) (@jensneuse) # [0.110.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.109.1...controlplane@0.110.0) (2024-09-27) ### Features -* add option to update the mappers of an IDP ([#1222](https://github.com/wundergraph/cosmo/issues/1222)) ([00c7b2e](https://github.com/wundergraph/cosmo/commit/00c7b2e159790c99ec62d3c7d6f99c0ef7c8bb70)) (@JivusAyrus) +- add option to update the mappers of an IDP ([#1222](https://github.com/wundergraph/cosmo/issues/1222)) ([00c7b2e](https://github.com/wundergraph/cosmo/commit/00c7b2e159790c99ec62d3c7d6f99c0ef7c8bb70)) (@JivusAyrus) ## [0.109.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.109.0...controlplane@0.109.1) (2024-09-25) ### Bug Fixes -* record if linters were skipped for a check run ([#1217](https://github.com/wundergraph/cosmo/issues/1217)) ([9cdee41](https://github.com/wundergraph/cosmo/commit/9cdee416b288a08120ea5d8a09e054cf5f3fb5bd)) (@thisisnithin) -* return error if the namespace doesnt exist while listing graphs ([#1216](https://github.com/wundergraph/cosmo/issues/1216)) ([3bc8035](https://github.com/wundergraph/cosmo/commit/3bc80350c3fd0c26f0cbb9b54dfdedf8edc59a70)) (@JivusAyrus) +- record if linters were skipped for a check run ([#1217](https://github.com/wundergraph/cosmo/issues/1217)) ([9cdee41](https://github.com/wundergraph/cosmo/commit/9cdee416b288a08120ea5d8a09e054cf5f3fb5bd)) (@thisisnithin) +- return error if the namespace doesnt exist while listing graphs ([#1216](https://github.com/wundergraph/cosmo/issues/1216)) ([3bc8035](https://github.com/wundergraph/cosmo/commit/3bc80350c3fd0c26f0cbb9b54dfdedf8edc59a70)) (@JivusAyrus) # [0.109.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.108.4...controlplane@0.109.0) (2024-09-23) ### Features -* option to skip traffic check in schema check ([#1211](https://github.com/wundergraph/cosmo/issues/1211)) ([d9fd83a](https://github.com/wundergraph/cosmo/commit/d9fd83ab99d2f2fc8e5f99a4cdb3abb8a1a7837c)) (@thisisnithin) +- option to skip traffic check in schema check ([#1211](https://github.com/wundergraph/cosmo/issues/1211)) ([d9fd83a](https://github.com/wundergraph/cosmo/commit/d9fd83ab99d2f2fc8e5f99a4cdb3abb8a1a7837c)) (@thisisnithin) ## [0.108.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.108.3...controlplane@0.108.4) (2024-09-20) ### Bug Fixes -* apply filters to recursive part ([#1202](https://github.com/wundergraph/cosmo/issues/1202)) ([3b96e20](https://github.com/wundergraph/cosmo/commit/3b96e2094fcd23e313f7811e2aae33f200f9f52d)) (@thisisnithin) +- apply filters to recursive part ([#1202](https://github.com/wundergraph/cosmo/issues/1202)) ([3b96e20](https://github.com/wundergraph/cosmo/commit/3b96e2094fcd23e313f7811e2aae33f200f9f52d)) (@thisisnithin) ## [0.108.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.108.2...controlplane@0.108.3) (2024-09-20) ### Bug Fixes -* set allow_experimental_analyzer = 1 for recursive query ([#1201](https://github.com/wundergraph/cosmo/issues/1201)) ([eb7c74d](https://github.com/wundergraph/cosmo/commit/eb7c74d3c385e4dc2d9587999ef37af5f40cf5ac)) (@thisisnithin) +- set allow_experimental_analyzer = 1 for recursive query ([#1201](https://github.com/wundergraph/cosmo/issues/1201)) ([eb7c74d](https://github.com/wundergraph/cosmo/commit/eb7c74d3c385e4dc2d9587999ef37af5f40cf5ac)) (@thisisnithin) ## [0.108.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.108.1...controlplane@0.108.2) (2024-09-20) ### Bug Fixes -* recursive query syntax ([#1199](https://github.com/wundergraph/cosmo/issues/1199)) ([5f42eeb](https://github.com/wundergraph/cosmo/commit/5f42eeb159bbd4b61b6d4535775dc200fee1ac76)) (@thisisnithin) +- recursive query syntax ([#1199](https://github.com/wundergraph/cosmo/issues/1199)) ([5f42eeb](https://github.com/wundergraph/cosmo/commit/5f42eeb159bbd4b61b6d4535775dc200fee1ac76)) (@thisisnithin) ## [0.108.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.108.0...controlplane@0.108.1) (2024-09-20) ### Bug Fixes -* handle duplicate traces with same traceId ([#1190](https://github.com/wundergraph/cosmo/issues/1190)) ([b562816](https://github.com/wundergraph/cosmo/commit/b562816cc5b0dd9477590966fb9dcf7f10de3444)) (@thisisnithin) +- handle duplicate traces with same traceId ([#1190](https://github.com/wundergraph/cosmo/issues/1190)) ([b562816](https://github.com/wundergraph/cosmo/commit/b562816cc5b0dd9477590966fb9dcf7f10de3444)) (@thisisnithin) # [0.108.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.107.5...controlplane@0.108.0) (2024-09-19) ### Bug Fixes -* construct urls using URL class ([#1173](https://github.com/wundergraph/cosmo/issues/1173)) ([211dbbd](https://github.com/wundergraph/cosmo/commit/211dbbd6bcfe7b414c665240c7f56944cf1e861e)) (@JivusAyrus) +- construct urls using URL class ([#1173](https://github.com/wundergraph/cosmo/issues/1173)) ([211dbbd](https://github.com/wundergraph/cosmo/commit/211dbbd6bcfe7b414c665240c7f56944cf1e861e)) (@JivusAyrus) ### Features -* add graph pruning ([#1133](https://github.com/wundergraph/cosmo/issues/1133)) ([b5718cd](https://github.com/wundergraph/cosmo/commit/b5718cd66bc7f0d14cb16b3d0a6d395e846968e4)) (@JivusAyrus) +- add graph pruning ([#1133](https://github.com/wundergraph/cosmo/issues/1133)) ([b5718cd](https://github.com/wundergraph/cosmo/commit/b5718cd66bc7f0d14cb16b3d0a6d395e846968e4)) (@JivusAyrus) ## [0.107.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.107.4...controlplane@0.107.5) (2024-09-18) ### Bug Fixes -* delete federated graph audit in deleteNamespace ([#1187](https://github.com/wundergraph/cosmo/issues/1187)) ([db59706](https://github.com/wundergraph/cosmo/commit/db5970658e276c30277efe116984fa3ae7939ca8)) (@JivusAyrus) +- delete federated graph audit in deleteNamespace ([#1187](https://github.com/wundergraph/cosmo/issues/1187)) ([db59706](https://github.com/wundergraph/cosmo/commit/db5970658e276c30277efe116984fa3ae7939ca8)) (@JivusAyrus) ## [0.107.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.107.3...controlplane@0.107.4) (2024-09-17) ### Bug Fixes -* remove lastUsedAt for graph tokens ([#1180](https://github.com/wundergraph/cosmo/issues/1180)) ([9ac1590](https://github.com/wundergraph/cosmo/commit/9ac159070f122b45aaa37661143575cfa8fa5b27)) (@thisisnithin) +- remove lastUsedAt for graph tokens ([#1180](https://github.com/wundergraph/cosmo/issues/1180)) ([9ac1590](https://github.com/wundergraph/cosmo/commit/9ac159070f122b45aaa37661143575cfa8fa5b27)) (@thisisnithin) ## [0.107.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.107.2...controlplane@0.107.3) (2024-09-13) ### Bug Fixes -* dont scope schema usage to single schema version ([#1171](https://github.com/wundergraph/cosmo/issues/1171)) ([859afa8](https://github.com/wundergraph/cosmo/commit/859afa85c603ceb618f8352dee0f8e658ec3836a)) (@StarpTech) +- dont scope schema usage to single schema version ([#1171](https://github.com/wundergraph/cosmo/issues/1171)) ([859afa8](https://github.com/wundergraph/cosmo/commit/859afa85c603ceb618f8352dee0f8e658ec3836a)) (@StarpTech) ## [0.107.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.107.1...controlplane@0.107.2) (2024-09-13) @@ -1202,52 +1203,52 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* missing env vars in the docker-compose ([#1162](https://github.com/wundergraph/cosmo/issues/1162)) ([c595a94](https://github.com/wundergraph/cosmo/commit/c595a940e49a2569f50e2d107b8081387fe81d90)) (@AndreasZeissner) +- missing env vars in the docker-compose ([#1162](https://github.com/wundergraph/cosmo/issues/1162)) ([c595a94](https://github.com/wundergraph/cosmo/commit/c595a940e49a2569f50e2d107b8081387fe81d90)) (@AndreasZeissner) # [0.107.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.106.0...controlplane@0.107.0) (2024-09-09) ### Features -* add audits for enabling and disabling of feature flags ([#1151](https://github.com/wundergraph/cosmo/issues/1151)) ([8059c49](https://github.com/wundergraph/cosmo/commit/8059c4903f9ee819c45c956a54819868336029d8)) (@JivusAyrus) +- add audits for enabling and disabling of feature flags ([#1151](https://github.com/wundergraph/cosmo/issues/1151)) ([8059c49](https://github.com/wundergraph/cosmo/commit/8059c4903f9ee819c45c956a54819868336029d8)) (@JivusAyrus) # [0.106.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.105.1...controlplane@0.106.0) (2024-09-05) ### Features -* add viewer role to ui ([#1137](https://github.com/wundergraph/cosmo/issues/1137)) ([23df809](https://github.com/wundergraph/cosmo/commit/23df809a58c57ea353aa79f5a503f580b1fc82d1)) (@JivusAyrus) -* record changed subgraphs in composition ([#1134](https://github.com/wundergraph/cosmo/issues/1134)) ([f39ca8c](https://github.com/wundergraph/cosmo/commit/f39ca8c4dcd54bb3d9594bc8394ef287a7eb04cd)) (@thisisnithin) +- add viewer role to ui ([#1137](https://github.com/wundergraph/cosmo/issues/1137)) ([23df809](https://github.com/wundergraph/cosmo/commit/23df809a58c57ea353aa79f5a503f580b1fc82d1)) (@JivusAyrus) +- record changed subgraphs in composition ([#1134](https://github.com/wundergraph/cosmo/issues/1134)) ([f39ca8c](https://github.com/wundergraph/cosmo/commit/f39ca8c4dcd54bb3d9594bc8394ef287a7eb04cd)) (@thisisnithin) ## [0.105.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.105.0...controlplane@0.105.1) (2024-09-05) ### Bug Fixes -* cdn and controlplane not respecting nested subdomains ([#1145](https://github.com/wundergraph/cosmo/issues/1145)) ([1598d6e](https://github.com/wundergraph/cosmo/commit/1598d6e421cf3b51997050d006faf9655fd96fdd)) (@AndreasZeissner) -* log config upload failures as errors ([#1142](https://github.com/wundergraph/cosmo/issues/1142)) ([5965b77](https://github.com/wundergraph/cosmo/commit/5965b7757171fac8b369feec2336c1c0b79cd5e9)) (@thisisnithin) +- cdn and controlplane not respecting nested subdomains ([#1145](https://github.com/wundergraph/cosmo/issues/1145)) ([1598d6e](https://github.com/wundergraph/cosmo/commit/1598d6e421cf3b51997050d006faf9655fd96fdd)) (@AndreasZeissner) +- log config upload failures as errors ([#1142](https://github.com/wundergraph/cosmo/issues/1142)) ([5965b77](https://github.com/wundergraph/cosmo/commit/5965b7757171fac8b369feec2336c1c0b79cd5e9)) (@thisisnithin) # [0.105.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.104.0...controlplane@0.105.0) (2024-09-03) ### Features -* make cosmo usable with aws s3 ([#1135](https://github.com/wundergraph/cosmo/issues/1135)) ([aa9b72f](https://github.com/wundergraph/cosmo/commit/aa9b72fe59a02557f11c2eed494f7691fea236aa)) (@AndreasZeissner) +- make cosmo usable with aws s3 ([#1135](https://github.com/wundergraph/cosmo/issues/1135)) ([aa9b72f](https://github.com/wundergraph/cosmo/commit/aa9b72fe59a02557f11c2eed494f7691fea236aa)) (@AndreasZeissner) # [0.104.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.103.1...controlplane@0.104.0) (2024-08-28) ### Features -* display and filter for subgraph id ([#1127](https://github.com/wundergraph/cosmo/issues/1127)) ([cfe708a](https://github.com/wundergraph/cosmo/commit/cfe708aba6094573fe2dfa6526850d802c44ed87)) (@thisisnithin) +- display and filter for subgraph id ([#1127](https://github.com/wundergraph/cosmo/issues/1127)) ([cfe708a](https://github.com/wundergraph/cosmo/commit/cfe708aba6094573fe2dfa6526850d802c44ed87)) (@thisisnithin) ## [0.103.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.103.0...controlplane@0.103.1) (2024-08-20) ### Bug Fixes -* retry webhook POST requests ([#1098](https://github.com/wundergraph/cosmo/issues/1098)) ([065c59e](https://github.com/wundergraph/cosmo/commit/065c59e1873a680bf91b626069cece7afeaf1a4b)) (@StarpTech) -* use uuid for config version in compose command ([#1097](https://github.com/wundergraph/cosmo/issues/1097)) ([0e1750e](https://github.com/wundergraph/cosmo/commit/0e1750e55a2e71d777f0cfc59d4d819e3b23eb40)) (@thisisnithin) +- retry webhook POST requests ([#1098](https://github.com/wundergraph/cosmo/issues/1098)) ([065c59e](https://github.com/wundergraph/cosmo/commit/065c59e1873a680bf91b626069cece7afeaf1a4b)) (@StarpTech) +- use uuid for config version in compose command ([#1097](https://github.com/wundergraph/cosmo/issues/1097)) ([0e1750e](https://github.com/wundergraph/cosmo/commit/0e1750e55a2e71d777f0cfc59d4d819e3b23eb40)) (@thisisnithin) # [0.103.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.102.4...controlplane@0.103.0) (2024-08-19) ### Features -* export cli cmds output in json ([#1088](https://github.com/wundergraph/cosmo/issues/1088)) ([32c597c](https://github.com/wundergraph/cosmo/commit/32c597c1bcab88a1d820ea83f978fa811d8e3768)) (@JivusAyrus) +- export cli cmds output in json ([#1088](https://github.com/wundergraph/cosmo/issues/1088)) ([32c597c](https://github.com/wundergraph/cosmo/commit/32c597c1bcab88a1d820ea83f978fa811d8e3768)) (@JivusAyrus) ## [0.102.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.102.3...controlplane@0.102.4) (2024-08-14) @@ -1257,13 +1258,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* always upload correct contract schemas ([#1079](https://github.com/wundergraph/cosmo/issues/1079)) ([e421760](https://github.com/wundergraph/cosmo/commit/e421760615791d1c8c71d150ecc6d6ebbeaa6054)) (@Aenimus) +- always upload correct contract schemas ([#1079](https://github.com/wundergraph/cosmo/issues/1079)) ([e421760](https://github.com/wundergraph/cosmo/commit/e421760615791d1c8c71d150ecc6d6ebbeaa6054)) (@Aenimus) ## [0.102.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.102.1...controlplane@0.102.2) (2024-08-14) ### Bug Fixes -* **cli-compose:** feature subgraph introspection ([#1078](https://github.com/wundergraph/cosmo/issues/1078)) ([13a7d63](https://github.com/wundergraph/cosmo/commit/13a7d638ac879e759e56d29fbd660aac5e3c3fc0)) (@StarpTech) +- **cli-compose:** feature subgraph introspection ([#1078](https://github.com/wundergraph/cosmo/issues/1078)) ([13a7d63](https://github.com/wundergraph/cosmo/commit/13a7d638ac879e759e56d29fbd660aac5e3c3fc0)) (@StarpTech) ## [0.102.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.102.0...controlplane@0.102.1) (2024-08-10) @@ -1273,52 +1274,52 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add fetch tree resolver ([#1019](https://github.com/wundergraph/cosmo/issues/1019)) ([4f4dee7](https://github.com/wundergraph/cosmo/commit/4f4dee765ba73cabba7ff4fe95faa4e4935505ba)) (@jensneuse) +- add fetch tree resolver ([#1019](https://github.com/wundergraph/cosmo/issues/1019)) ([4f4dee7](https://github.com/wundergraph/cosmo/commit/4f4dee765ba73cabba7ff4fe95faa4e4935505ba)) (@jensneuse) # [0.101.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.100.0...controlplane@0.101.0) (2024-08-09) ### Features -* global override for all operations in check ([#1044](https://github.com/wundergraph/cosmo/issues/1044)) ([6eb0e4d](https://github.com/wundergraph/cosmo/commit/6eb0e4dce9373260b12b4f7fd07f7637349bf2eb)) (@thisisnithin) -* webhook history view ([#1036](https://github.com/wundergraph/cosmo/issues/1036)) ([4457a57](https://github.com/wundergraph/cosmo/commit/4457a5735e86bd655bed685aca66287ed743e08c)) (@thisisnithin) +- global override for all operations in check ([#1044](https://github.com/wundergraph/cosmo/issues/1044)) ([6eb0e4d](https://github.com/wundergraph/cosmo/commit/6eb0e4dce9373260b12b4f7fd07f7637349bf2eb)) (@thisisnithin) +- webhook history view ([#1036](https://github.com/wundergraph/cosmo/issues/1036)) ([4457a57](https://github.com/wundergraph/cosmo/commit/4457a5735e86bd655bed685aca66287ed743e08c)) (@thisisnithin) # [0.100.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.99.0...controlplane@0.100.0) (2024-08-09) ### Bug Fixes -* incorrect deletions count in slack notification ([#1037](https://github.com/wundergraph/cosmo/issues/1037)) ([93580de](https://github.com/wundergraph/cosmo/commit/93580deb0f711234b7000afc41742cc473dca66a)) (@thisisnithin) +- incorrect deletions count in slack notification ([#1037](https://github.com/wundergraph/cosmo/issues/1037)) ([93580de](https://github.com/wundergraph/cosmo/commit/93580deb0f711234b7000afc41742cc473dca66a)) (@thisisnithin) ### Features -* add command to create and publish feature subgraph in one command ([#960](https://github.com/wundergraph/cosmo/issues/960)) ([9a478e8](https://github.com/wundergraph/cosmo/commit/9a478e8164bfc7c933fedbe6188d7876e5c46c94)) (@JivusAyrus) +- add command to create and publish feature subgraph in one command ([#960](https://github.com/wundergraph/cosmo/issues/960)) ([9a478e8](https://github.com/wundergraph/cosmo/commit/9a478e8164bfc7c933fedbe6188d7876e5c46c94)) (@JivusAyrus) # [0.99.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.98.2...controlplane@0.99.0) (2024-08-06) ### Features -* **controlplane:** add overriding the mailing options ([#1008](https://github.com/wundergraph/cosmo/issues/1008)) ([f19ec90](https://github.com/wundergraph/cosmo/commit/f19ec90ca2cb2259384c2119291c43d4b5bcd11e)) (@AndreasZeissner) +- **controlplane:** add overriding the mailing options ([#1008](https://github.com/wundergraph/cosmo/issues/1008)) ([f19ec90](https://github.com/wundergraph/cosmo/commit/f19ec90ca2cb2259384c2119291c43d4b5bcd11e)) (@AndreasZeissner) ## [0.98.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.98.1...controlplane@0.98.2) (2024-08-05) ### Bug Fixes -* avoid infinite recursion in openapi call ([#1011](https://github.com/wundergraph/cosmo/issues/1011)) ([9522f56](https://github.com/wundergraph/cosmo/commit/9522f564930b2170305196f9855ae7dc3cf2889d)) (@StarpTech) +- avoid infinite recursion in openapi call ([#1011](https://github.com/wundergraph/cosmo/issues/1011)) ([9522f56](https://github.com/wundergraph/cosmo/commit/9522f564930b2170305196f9855ae7dc3cf2889d)) (@StarpTech) ## [0.98.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.98.0...controlplane@0.98.1) (2024-08-04) ### Bug Fixes -* **controlplane:** don't enable prom by default ([#1007](https://github.com/wundergraph/cosmo/issues/1007)) ([f26192d](https://github.com/wundergraph/cosmo/commit/f26192de9d516c5ed86be2b6876693ed381fceed)) (@StarpTech) +- **controlplane:** don't enable prom by default ([#1007](https://github.com/wundergraph/cosmo/issues/1007)) ([f26192d](https://github.com/wundergraph/cosmo/commit/f26192de9d516c5ed86be2b6876693ed381fceed)) (@StarpTech) # [0.98.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.97.2...controlplane@0.98.0) (2024-08-01) ### Bug Fixes -* don't aggregate router sum metrics table, optimize router metrics queries ([#970](https://github.com/wundergraph/cosmo/issues/970)) ([7908a0f](https://github.com/wundergraph/cosmo/commit/7908a0f3e5a942d74f820dc64ad2079e1a420e18)) (@StarpTech) +- don't aggregate router sum metrics table, optimize router metrics queries ([#970](https://github.com/wundergraph/cosmo/issues/970)) ([7908a0f](https://github.com/wundergraph/cosmo/commit/7908a0f3e5a942d74f820dc64ad2079e1a420e18)) (@StarpTech) ### Features -* implement s3 provider for config and persistent operations ([#971](https://github.com/wundergraph/cosmo/issues/971)) ([e3206ff](https://github.com/wundergraph/cosmo/commit/e3206fff9c1796a64173be350445514f26db9296)) (@StarpTech) +- implement s3 provider for config and persistent operations ([#971](https://github.com/wundergraph/cosmo/issues/971)) ([e3206ff](https://github.com/wundergraph/cosmo/commit/e3206fff9c1796a64173be350445514f26db9296)) (@StarpTech) ## [0.97.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.97.1...controlplane@0.97.2) (2024-07-31) @@ -1328,53 +1329,53 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* org activation jobs and delete user script ([#966](https://github.com/wundergraph/cosmo/issues/966)) ([a81b4a5](https://github.com/wundergraph/cosmo/commit/a81b4a57ab5702703fd6218d90c200c5a8a543f5)) (@thisisnithin) +- org activation jobs and delete user script ([#966](https://github.com/wundergraph/cosmo/issues/966)) ([a81b4a5](https://github.com/wundergraph/cosmo/commit/a81b4a57ab5702703fd6218d90c200c5a8a543f5)) (@thisisnithin) # [0.97.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.96.1...controlplane@0.97.0) (2024-07-25) ### Features -* k8 jobs for user deletion and org activation ([#958](https://github.com/wundergraph/cosmo/issues/958)) ([c216414](https://github.com/wundergraph/cosmo/commit/c216414fac9e582548073e87cfeb1c795315122a)) (@thisisnithin) +- k8 jobs for user deletion and org activation ([#958](https://github.com/wundergraph/cosmo/issues/958)) ([c216414](https://github.com/wundergraph/cosmo/commit/c216414fac9e582548073e87cfeb1c795315122a)) (@thisisnithin) ## [0.96.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.96.0...controlplane@0.96.1) (2024-07-24) ### Bug Fixes -* variable list coercion with normalization cache ([#956](https://github.com/wundergraph/cosmo/issues/956)) ([104ebe8](https://github.com/wundergraph/cosmo/commit/104ebe8f49b6975d10e897d767fb8d627e54145e)) (@jensneuse) +- variable list coercion with normalization cache ([#956](https://github.com/wundergraph/cosmo/issues/956)) ([104ebe8](https://github.com/wundergraph/cosmo/commit/104ebe8f49b6975d10e897d767fb8d627e54145e)) (@jensneuse) # [0.96.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.95.0...controlplane@0.96.0) (2024-07-23) ### Features -* instrument controlplane with metrics ([#943](https://github.com/wundergraph/cosmo/issues/943)) ([0e74d6c](https://github.com/wundergraph/cosmo/commit/0e74d6c9c7699a335bb56d74bfc0cf3b2fdbc70e)) (@AndreasZeissner) +- instrument controlplane with metrics ([#943](https://github.com/wundergraph/cosmo/issues/943)) ([0e74d6c](https://github.com/wundergraph/cosmo/commit/0e74d6c9c7699a335bb56d74bfc0cf3b2fdbc70e)) (@AndreasZeissner) # [0.95.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.94.0...controlplane@0.95.0) (2024-07-23) ### Bug Fixes -* log commit check failure as warning instead of error ([#954](https://github.com/wundergraph/cosmo/issues/954)) ([47a1e84](https://github.com/wundergraph/cosmo/commit/47a1e840d0d4cb50d3667e3a35dd29f70e8ab813)) (@thisisnithin) +- log commit check failure as warning instead of error ([#954](https://github.com/wundergraph/cosmo/issues/954)) ([47a1e84](https://github.com/wundergraph/cosmo/commit/47a1e840d0d4cb50d3667e3a35dd29f70e8ab813)) (@thisisnithin) ### Features -* organization deactivation ([#945](https://github.com/wundergraph/cosmo/issues/945)) ([af5cd41](https://github.com/wundergraph/cosmo/commit/af5cd41848c282027c6a07545bdb218edc946da5)) (@thisisnithin) +- organization deactivation ([#945](https://github.com/wundergraph/cosmo/issues/945)) ([af5cd41](https://github.com/wundergraph/cosmo/commit/af5cd41848c282027c6a07545bdb218edc946da5)) (@thisisnithin) # [0.94.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.93.6...controlplane@0.94.0) (2024-07-22) ### Features -* expose normalization cache hit and acquire resolver wait time via otel ([#951](https://github.com/wundergraph/cosmo/issues/951)) ([e39437b](https://github.com/wundergraph/cosmo/commit/e39437b0164b99233bd182cda636cbc0392c556d)) (@StarpTech) +- expose normalization cache hit and acquire resolver wait time via otel ([#951](https://github.com/wundergraph/cosmo/issues/951)) ([e39437b](https://github.com/wundergraph/cosmo/commit/e39437b0164b99233bd182cda636cbc0392c556d)) (@StarpTech) ## [0.93.6](https://github.com/wundergraph/cosmo/compare/controlplane@0.93.5...controlplane@0.93.6) (2024-07-19) ### Bug Fixes -* incorrect typecast on timestamp from db ([#948](https://github.com/wundergraph/cosmo/issues/948)) ([471fa45](https://github.com/wundergraph/cosmo/commit/471fa456ab9f3f2a567162f3ea60fe8f5cc31bbb)) (@thisisnithin) +- incorrect typecast on timestamp from db ([#948](https://github.com/wundergraph/cosmo/issues/948)) ([471fa45](https://github.com/wundergraph/cosmo/commit/471fa456ab9f3f2a567162f3ea60fe8f5cc31bbb)) (@thisisnithin) ## [0.93.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.93.4...controlplane@0.93.5) (2024-07-18) ### Bug Fixes -* **controlplane:** graceful hutdown ([#946](https://github.com/wundergraph/cosmo/issues/946)) ([4da7df1](https://github.com/wundergraph/cosmo/commit/4da7df12e19a6c1efde479f1b211e19b659afbfd)) (@StarpTech) +- **controlplane:** graceful hutdown ([#946](https://github.com/wundergraph/cosmo/issues/946)) ([4da7df1](https://github.com/wundergraph/cosmo/commit/4da7df12e19a6c1efde479f1b211e19b659afbfd)) (@StarpTech) ## [0.93.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.93.3...controlplane@0.93.4) (2024-07-16) @@ -1384,50 +1385,50 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* scim server when adding existing user ([#935](https://github.com/wundergraph/cosmo/issues/935)) ([0265f2a](https://github.com/wundergraph/cosmo/commit/0265f2a99dd45d457b7056048d27abce49fbc08b)) (@JivusAyrus) +- scim server when adding existing user ([#935](https://github.com/wundergraph/cosmo/issues/935)) ([0265f2a](https://github.com/wundergraph/cosmo/commit/0265f2a99dd45d457b7056048d27abce49fbc08b)) (@JivusAyrus) ## [0.93.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.93.1...controlplane@0.93.2) (2024-07-12) ### Bug Fixes -* getConfig script imports ([#936](https://github.com/wundergraph/cosmo/issues/936)) ([2781c12](https://github.com/wundergraph/cosmo/commit/2781c1226a2d5ea989415c0ff241dc2f6584d49e)) (@thisisnithin) +- getConfig script imports ([#936](https://github.com/wundergraph/cosmo/issues/936)) ([2781c12](https://github.com/wundergraph/cosmo/commit/2781c1226a2d5ea989415c0ff241dc2f6584d49e)) (@thisisnithin) ## [0.93.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.93.0...controlplane@0.93.1) (2024-07-11) ### Bug Fixes -* remove REQUIRE_DEPRECATION_DATE lint rule ([#890](https://github.com/wundergraph/cosmo/issues/890)) ([1203d7f](https://github.com/wundergraph/cosmo/commit/1203d7f711c35f1bdd8a7ce6bec38dcd1093fff4)) (@JivusAyrus) +- remove REQUIRE_DEPRECATION_DATE lint rule ([#890](https://github.com/wundergraph/cosmo/issues/890)) ([1203d7f](https://github.com/wundergraph/cosmo/commit/1203d7f711c35f1bdd8a7ce6bec38dcd1093fff4)) (@JivusAyrus) # [0.93.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.92.2...controlplane@0.93.0) (2024-07-10) ### Features -* delete user ([#906](https://github.com/wundergraph/cosmo/issues/906)) ([5d438a1](https://github.com/wundergraph/cosmo/commit/5d438a1a2e1be610ff0e139efd692ed798daf677)) (@thisisnithin) +- delete user ([#906](https://github.com/wundergraph/cosmo/issues/906)) ([5d438a1](https://github.com/wundergraph/cosmo/commit/5d438a1a2e1be610ff0e139efd692ed798daf677)) (@thisisnithin) ## [0.92.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.92.1...controlplane@0.92.2) (2024-07-09) ### Bug Fixes -* admission webhook controller not receiving secret ([#928](https://github.com/wundergraph/cosmo/issues/928)) ([9adb17e](https://github.com/wundergraph/cosmo/commit/9adb17ea24419c34dc0fe898d9f03bc2329fddf0)) (@thisisnithin) -* upgrade deps due to found CVEs ([#926](https://github.com/wundergraph/cosmo/issues/926)) ([fc6e615](https://github.com/wundergraph/cosmo/commit/fc6e6158e2e761489033acb667cd0b36920c2612)) (@StarpTech) +- admission webhook controller not receiving secret ([#928](https://github.com/wundergraph/cosmo/issues/928)) ([9adb17e](https://github.com/wundergraph/cosmo/commit/9adb17ea24419c34dc0fe898d9f03bc2329fddf0)) (@thisisnithin) +- upgrade deps due to found CVEs ([#926](https://github.com/wundergraph/cosmo/issues/926)) ([fc6e615](https://github.com/wundergraph/cosmo/commit/fc6e6158e2e761489033acb667cd0b36920c2612)) (@StarpTech) ## [0.92.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.92.0...controlplane@0.92.1) (2024-07-03) ### Bug Fixes -* limit check and remove router_config_path ([#911](https://github.com/wundergraph/cosmo/issues/911)) ([93180ed](https://github.com/wundergraph/cosmo/commit/93180edbe3f2f84e1c95f3d3a9acd57ec337a6dc)) (@JivusAyrus) +- limit check and remove router_config_path ([#911](https://github.com/wundergraph/cosmo/issues/911)) ([93180ed](https://github.com/wundergraph/cosmo/commit/93180edbe3f2f84e1c95f3d3a9acd57ec337a6dc)) (@JivusAyrus) # [0.92.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.91.5...controlplane@0.92.0) (2024-07-03) ### Features -* feature flags ([#853](https://github.com/wundergraph/cosmo/issues/853)) ([5461bb5](https://github.com/wundergraph/cosmo/commit/5461bb5a529decd51a1b22be0a5301936b8ad392)) (@JivusAyrus) +- feature flags ([#853](https://github.com/wundergraph/cosmo/issues/853)) ([5461bb5](https://github.com/wundergraph/cosmo/commit/5461bb5a529decd51a1b22be0a5301936b8ad392)) (@JivusAyrus) ## [0.91.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.91.4...controlplane@0.91.5) (2024-07-02) ### Bug Fixes -* race while fetching configuration for graph notifications ([#903](https://github.com/wundergraph/cosmo/issues/903)) ([c79bb2c](https://github.com/wundergraph/cosmo/commit/c79bb2c894a8c2345e40b1a40779b28fcfa16103)) (@thisisnithin) +- race while fetching configuration for graph notifications ([#903](https://github.com/wundergraph/cosmo/issues/903)) ([c79bb2c](https://github.com/wundergraph/cosmo/commit/c79bb2c894a8c2345e40b1a40779b28fcfa16103)) (@thisisnithin) ## [0.91.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.91.3...controlplane@0.91.4) (2024-07-01) @@ -1437,16 +1438,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* cleanup inspectable check ([#884](https://github.com/wundergraph/cosmo/issues/884)) ([5bcf149](https://github.com/wundergraph/cosmo/commit/5bcf14915115d400ea6dc394b5d219e4f6e2eaca)) (@thisisnithin) +- cleanup inspectable check ([#884](https://github.com/wundergraph/cosmo/issues/884)) ([5bcf149](https://github.com/wundergraph/cosmo/commit/5bcf14915115d400ea6dc394b5d219e4f6e2eaca)) (@thisisnithin) ## [0.91.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.91.1...controlplane@0.91.2) (2024-06-24) ### Bug Fixes -* empty admission webhook secret ([#882](https://github.com/wundergraph/cosmo/issues/882)) ([cca7430](https://github.com/wundergraph/cosmo/commit/cca7430aca2f7464e308ae94cb211ce74d75a705)) (@thisisnithin) -* ignore directive changes instead of throwing ([#859](https://github.com/wundergraph/cosmo/issues/859)) ([0f6d7dc](https://github.com/wundergraph/cosmo/commit/0f6d7dc0e8bbdd486d9c766a5b14d6611cf9deeb)) (@thisisnithin) -* link composition from changelog ([#857](https://github.com/wundergraph/cosmo/issues/857)) ([45ebcfc](https://github.com/wundergraph/cosmo/commit/45ebcfcb30d7f0aa083ba0dc7798bf6678847091)) (@thisisnithin) -* remove console log ([#883](https://github.com/wundergraph/cosmo/issues/883)) ([d9b23e3](https://github.com/wundergraph/cosmo/commit/d9b23e384a37d0fb399de6404980df3e2074907e)) (@thisisnithin) +- empty admission webhook secret ([#882](https://github.com/wundergraph/cosmo/issues/882)) ([cca7430](https://github.com/wundergraph/cosmo/commit/cca7430aca2f7464e308ae94cb211ce74d75a705)) (@thisisnithin) +- ignore directive changes instead of throwing ([#859](https://github.com/wundergraph/cosmo/issues/859)) ([0f6d7dc](https://github.com/wundergraph/cosmo/commit/0f6d7dc0e8bbdd486d9c766a5b14d6611cf9deeb)) (@thisisnithin) +- link composition from changelog ([#857](https://github.com/wundergraph/cosmo/issues/857)) ([45ebcfc](https://github.com/wundergraph/cosmo/commit/45ebcfcb30d7f0aa083ba0dc7798bf6678847091)) (@thisisnithin) +- remove console log ([#883](https://github.com/wundergraph/cosmo/issues/883)) ([d9b23e3](https://github.com/wundergraph/cosmo/commit/d9b23e384a37d0fb399de6404980df3e2074907e)) (@thisisnithin) ## [0.91.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.91.0...controlplane@0.91.1) (2024-06-20) @@ -1456,7 +1457,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add subscripion protocol and ws subprotocol to ui ([#829](https://github.com/wundergraph/cosmo/issues/829)) ([26708e4](https://github.com/wundergraph/cosmo/commit/26708e4d02fa3a6fa44b39a8c9138bd14a78c96f)) (@JivusAyrus) +- add subscripion protocol and ws subprotocol to ui ([#829](https://github.com/wundergraph/cosmo/issues/829)) ([26708e4](https://github.com/wundergraph/cosmo/commit/26708e4d02fa3a6fa44b39a8c9138bd14a78c96f)) (@JivusAyrus) ## [0.90.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.90.0...controlplane@0.90.1) (2024-06-07) @@ -1466,25 +1467,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* handle creating, publishing, and updating Event-Driven Graphs ([#855](https://github.com/wundergraph/cosmo/issues/855)) ([fc2a8f2](https://github.com/wundergraph/cosmo/commit/fc2a8f20b97a17d0927c589f81df66ff7abf78c5)) (@Aenimus) +- handle creating, publishing, and updating Event-Driven Graphs ([#855](https://github.com/wundergraph/cosmo/issues/855)) ([fc2a8f2](https://github.com/wundergraph/cosmo/commit/fc2a8f20b97a17d0927c589f81df66ff7abf78c5)) (@Aenimus) # [0.89.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.10...controlplane@0.89.0) (2024-06-05) ### Features -* admission webhook signature ([#852](https://github.com/wundergraph/cosmo/issues/852)) ([9212bb3](https://github.com/wundergraph/cosmo/commit/9212bb3aa3f3ca41f38c7944c3e6022c5fdc3ca8)) (@thisisnithin) +- admission webhook signature ([#852](https://github.com/wundergraph/cosmo/issues/852)) ([9212bb3](https://github.com/wundergraph/cosmo/commit/9212bb3aa3f3ca41f38c7944c3e6022c5fdc3ca8)) (@thisisnithin) ## [0.88.10](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.9...controlplane@0.88.10) (2024-06-04) ### Bug Fixes -* missing namespace in github check details link ([#847](https://github.com/wundergraph/cosmo/issues/847)) ([7f413c6](https://github.com/wundergraph/cosmo/commit/7f413c62633cfd082b15e724bb5c9b8118951e99)) (@thisisnithin) +- missing namespace in github check details link ([#847](https://github.com/wundergraph/cosmo/issues/847)) ([7f413c6](https://github.com/wundergraph/cosmo/commit/7f413c62633cfd082b15e724bb5c9b8118951e99)) (@thisisnithin) ## [0.88.9](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.8...controlplane@0.88.9) (2024-05-31) ### Bug Fixes -* clickhouse cardinality mismatch ([#669](https://github.com/wundergraph/cosmo/issues/669)) ([1908089](https://github.com/wundergraph/cosmo/commit/1908089a6cd62d8e60625555f1173102ce5d8f57)) (@thisisnithin) +- clickhouse cardinality mismatch ([#669](https://github.com/wundergraph/cosmo/issues/669)) ([1908089](https://github.com/wundergraph/cosmo/commit/1908089a6cd62d8e60625555f1173102ce5d8f57)) (@thisisnithin) ## [0.88.8](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.7...controlplane@0.88.8) (2024-05-30) @@ -1494,38 +1495,38 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* query source table instead of MV to avoid type mismatch ([#837](https://github.com/wundergraph/cosmo/issues/837)) ([a552226](https://github.com/wundergraph/cosmo/commit/a5522269fdebdb8e1e384193075666cb3a8bcc49)) (@StarpTech) +- query source table instead of MV to avoid type mismatch ([#837](https://github.com/wundergraph/cosmo/issues/837)) ([a552226](https://github.com/wundergraph/cosmo/commit/a5522269fdebdb8e1e384193075666cb3a8bcc49)) (@StarpTech) ## [0.88.6](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.5...controlplane@0.88.6) (2024-05-29) ### Bug Fixes -* prevent subgraph update except schema in publish ([#831](https://github.com/wundergraph/cosmo/issues/831)) ([37a9701](https://github.com/wundergraph/cosmo/commit/37a9701a2b9c61a9ecd489584cd6e2a9fe7ab70b)) (@thisisnithin) +- prevent subgraph update except schema in publish ([#831](https://github.com/wundergraph/cosmo/issues/831)) ([37a9701](https://github.com/wundergraph/cosmo/commit/37a9701a2b9c61a9ecd489584cd6e2a9fe7ab70b)) (@thisisnithin) ## [0.88.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.4...controlplane@0.88.5) (2024-05-28) ### Bug Fixes -* members invite count and ui spacing ([#833](https://github.com/wundergraph/cosmo/issues/833)) ([487b4e1](https://github.com/wundergraph/cosmo/commit/487b4e18333a0315dca99f1a20884c8bedeff88d)) (@thisisnithin) +- members invite count and ui spacing ([#833](https://github.com/wundergraph/cosmo/issues/833)) ([487b4e1](https://github.com/wundergraph/cosmo/commit/487b4e18333a0315dca99f1a20884c8bedeff88d)) (@thisisnithin) ## [0.88.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.3...controlplane@0.88.4) (2024-05-24) ### Bug Fixes -* remove unused attributes ([#819](https://github.com/wundergraph/cosmo/issues/819)) ([1066d9f](https://github.com/wundergraph/cosmo/commit/1066d9fc97f460357434b633ce6be8baa78ae929)) (@JivusAyrus) -* unset admission webhook using empty string ([#820](https://github.com/wundergraph/cosmo/issues/820)) ([eaf470e](https://github.com/wundergraph/cosmo/commit/eaf470e6b31f828b8b316751337b739c4c158e5d)) (@thisisnithin) +- remove unused attributes ([#819](https://github.com/wundergraph/cosmo/issues/819)) ([1066d9f](https://github.com/wundergraph/cosmo/commit/1066d9fc97f460357434b633ce6be8baa78ae929)) (@JivusAyrus) +- unset admission webhook using empty string ([#820](https://github.com/wundergraph/cosmo/issues/820)) ([eaf470e](https://github.com/wundergraph/cosmo/commit/eaf470e6b31f828b8b316751337b739c4c158e5d)) (@thisisnithin) ## [0.88.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.2...controlplane@0.88.3) (2024-05-22) ### Bug Fixes -* playground config, subgraphs and members table, graph visualization ([#809](https://github.com/wundergraph/cosmo/issues/809)) ([bbdb8cd](https://github.com/wundergraph/cosmo/commit/bbdb8cd858a008051cd1ebb76d5d5f21a33f541a)) (@thisisnithin) +- playground config, subgraphs and members table, graph visualization ([#809](https://github.com/wundergraph/cosmo/issues/809)) ([bbdb8cd](https://github.com/wundergraph/cosmo/commit/bbdb8cd858a008051cd1ebb76d5d5f21a33f541a)) (@thisisnithin) ## [0.88.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.1...controlplane@0.88.2) (2024-05-21) ### Bug Fixes -* set expiry for the jwt ([#811](https://github.com/wundergraph/cosmo/issues/811)) ([05623c5](https://github.com/wundergraph/cosmo/commit/05623c59607a7bcab377e184f96c45374c3b7e27)) (@JivusAyrus) +- set expiry for the jwt ([#811](https://github.com/wundergraph/cosmo/issues/811)) ([05623c5](https://github.com/wundergraph/cosmo/commit/05623c59607a7bcab377e184f96c45374c3b7e27)) (@JivusAyrus) ## [0.88.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.88.0...controlplane@0.88.1) (2024-05-21) @@ -1535,91 +1536,91 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add support for websocket subprotocol ([#776](https://github.com/wundergraph/cosmo/issues/776)) ([e35aa26](https://github.com/wundergraph/cosmo/commit/e35aa262227b29f09ddfdd1ce361c010b769b2da)) (@JivusAyrus) +- add support for websocket subprotocol ([#776](https://github.com/wundergraph/cosmo/issues/776)) ([e35aa26](https://github.com/wundergraph/cosmo/commit/e35aa262227b29f09ddfdd1ce361c010b769b2da)) (@JivusAyrus) # [0.87.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.86.0...controlplane@0.87.0) (2024-05-17) ### Bug Fixes -* parser errors during linting ([#797](https://github.com/wundergraph/cosmo/issues/797)) ([9a88265](https://github.com/wundergraph/cosmo/commit/9a8826509264ad2f4e8255c7449ca3355d3ffb50)) (@JivusAyrus) +- parser errors during linting ([#797](https://github.com/wundergraph/cosmo/issues/797)) ([9a88265](https://github.com/wundergraph/cosmo/commit/9a8826509264ad2f4e8255c7449ca3355d3ffb50)) (@JivusAyrus) ### Features -* schema contracts ([#751](https://github.com/wundergraph/cosmo/issues/751)) ([1bc1a78](https://github.com/wundergraph/cosmo/commit/1bc1a787f046d25f0a4affb3fe42efe39a1c6539)) (@thisisnithin) +- schema contracts ([#751](https://github.com/wundergraph/cosmo/issues/751)) ([1bc1a78](https://github.com/wundergraph/cosmo/commit/1bc1a787f046d25f0a4affb3fe42efe39a1c6539)) (@thisisnithin) # [0.86.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.85.2...controlplane@0.86.0) (2024-05-14) ### Features -* refactor edfs and add kafka support ([#770](https://github.com/wundergraph/cosmo/issues/770)) ([d659067](https://github.com/wundergraph/cosmo/commit/d659067fd1d094621788f42bac6d121b0831ebb7)) (@StarpTech) +- refactor edfs and add kafka support ([#770](https://github.com/wundergraph/cosmo/issues/770)) ([d659067](https://github.com/wundergraph/cosmo/commit/d659067fd1d094621788f42bac6d121b0831ebb7)) (@StarpTech) ## [0.85.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.85.1...controlplane@0.85.2) (2024-05-10) ### Bug Fixes -* write access for operation overrides ([#777](https://github.com/wundergraph/cosmo/issues/777)) ([4f973c1](https://github.com/wundergraph/cosmo/commit/4f973c1d564798bc63a98281a898cff85c0a92eb)) (@thisisnithin) +- write access for operation overrides ([#777](https://github.com/wundergraph/cosmo/issues/777)) ([4f973c1](https://github.com/wundergraph/cosmo/commit/4f973c1d564798bc63a98281a898cff85c0a92eb)) (@thisisnithin) ## [0.85.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.85.0...controlplane@0.85.1) (2024-05-06) ### Bug Fixes -* ignore unknown router execution config fields ([#767](https://github.com/wundergraph/cosmo/issues/767)) ([649a0e1](https://github.com/wundergraph/cosmo/commit/649a0e1349820642491469890f9eaa7b1134e430)) (@Aenimus) +- ignore unknown router execution config fields ([#767](https://github.com/wundergraph/cosmo/issues/767)) ([649a0e1](https://github.com/wundergraph/cosmo/commit/649a0e1349820642491469890f9eaa7b1134e430)) (@Aenimus) # [0.85.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.84.2...controlplane@0.85.0) (2024-05-03) ### Features -* support inaccessible and add foundation for contracts ([#764](https://github.com/wundergraph/cosmo/issues/764)) ([08a7db2](https://github.com/wundergraph/cosmo/commit/08a7db222ce1763ffe8062d3792c41e0c54b4224)) (@Aenimus) +- support inaccessible and add foundation for contracts ([#764](https://github.com/wundergraph/cosmo/issues/764)) ([08a7db2](https://github.com/wundergraph/cosmo/commit/08a7db222ce1763ffe8062d3792c41e0c54b4224)) (@Aenimus) ## [0.84.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.84.1...controlplane@0.84.2) (2024-05-01) ### Bug Fixes -* verify the user from keycloak and sanitize emails ([#762](https://github.com/wundergraph/cosmo/issues/762)) ([4f5d4a0](https://github.com/wundergraph/cosmo/commit/4f5d4a057c53177e9b6c6cff69762fc6c0859ab8)) (@JivusAyrus) +- verify the user from keycloak and sanitize emails ([#762](https://github.com/wundergraph/cosmo/issues/762)) ([4f5d4a0](https://github.com/wundergraph/cosmo/commit/4f5d4a057c53177e9b6c6cff69762fc6c0859ab8)) (@JivusAyrus) ## [0.84.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.84.0...controlplane@0.84.1) (2024-04-30) ### Bug Fixes -* scim server issues ([#754](https://github.com/wundergraph/cosmo/issues/754)) ([3fdf328](https://github.com/wundergraph/cosmo/commit/3fdf32816fde4ffdb3c16e6eb8b2fc9d63ee7e92)) (@JivusAyrus) +- scim server issues ([#754](https://github.com/wundergraph/cosmo/issues/754)) ([3fdf328](https://github.com/wundergraph/cosmo/commit/3fdf32816fde4ffdb3c16e6eb8b2fc9d63ee7e92)) (@JivusAyrus) # [0.84.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.83.0...controlplane@0.84.0) (2024-04-26) ### Features -* add apollo compatibility mode in wgc federated-graph fetch command ([#742](https://github.com/wundergraph/cosmo/issues/742)) ([ecd73ab](https://github.com/wundergraph/cosmo/commit/ecd73ab91e1c8289008cae1062220826884d26e8)) (@JivusAyrus) +- add apollo compatibility mode in wgc federated-graph fetch command ([#742](https://github.com/wundergraph/cosmo/issues/742)) ([ecd73ab](https://github.com/wundergraph/cosmo/commit/ecd73ab91e1c8289008cae1062220826884d26e8)) (@JivusAyrus) # [0.83.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.8...controlplane@0.83.0) (2024-04-26) ### Features -* log subgraph errors ([#753](https://github.com/wundergraph/cosmo/issues/753)) ([cf456d2](https://github.com/wundergraph/cosmo/commit/cf456d257879a541ff4ff1261fdc88a104b581ba)) (@StarpTech) +- log subgraph errors ([#753](https://github.com/wundergraph/cosmo/issues/753)) ([cf456d2](https://github.com/wundergraph/cosmo/commit/cf456d257879a541ff4ff1261fdc88a104b581ba)) (@StarpTech) ## [0.82.8](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.7...controlplane@0.82.8) (2024-04-23) ### Bug Fixes -* upgrade deps to cover CVEs ([#750](https://github.com/wundergraph/cosmo/issues/750)) ([e261beb](https://github.com/wundergraph/cosmo/commit/e261beb8375ca41eb8a2fa4b3223d202c3bb7460)) (@StarpTech) +- upgrade deps to cover CVEs ([#750](https://github.com/wundergraph/cosmo/issues/750)) ([e261beb](https://github.com/wundergraph/cosmo/commit/e261beb8375ca41eb8a2fa4b3223d202c3bb7460)) (@StarpTech) ## [0.82.7](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.6...controlplane@0.82.7) (2024-04-23) ### Reverts -* Revert "chore(release): Publish [skip ci]" ([feaf2ef](https://github.com/wundergraph/cosmo/commit/feaf2ef49321388daff7c4d9f4558cdda78b5744)) (@StarpTech) +- Revert "chore(release): Publish [skip ci]" ([feaf2ef](https://github.com/wundergraph/cosmo/commit/feaf2ef49321388daff7c4d9f4558cdda78b5744)) (@StarpTech) ## [0.82.6](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.5...controlplane@0.82.6) (2024-04-17) ### Bug Fixes -* make sure an api key with no resources can not be created ([#728](https://github.com/wundergraph/cosmo/issues/728)) ([7717ff6](https://github.com/wundergraph/cosmo/commit/7717ff6a147c485683a3d26c9e8f3b98173e67ee)) (@JivusAyrus) +- make sure an api key with no resources can not be created ([#728](https://github.com/wundergraph/cosmo/issues/728)) ([7717ff6](https://github.com/wundergraph/cosmo/commit/7717ff6a147c485683a3d26c9e8f3b98173e67ee)) (@JivusAyrus) ## [0.82.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.4...controlplane@0.82.5) (2024-04-12) ### Bug Fixes -* analytics group filter omission ([#729](https://github.com/wundergraph/cosmo/issues/729)) ([ba316af](https://github.com/wundergraph/cosmo/commit/ba316affc5cd413d93731d04ad3e58e214827f9b)) (@thisisnithin) -* inform users if there is nothing new to publish ([#710](https://github.com/wundergraph/cosmo/issues/710)) ([faf01fc](https://github.com/wundergraph/cosmo/commit/faf01fc9e398ef70873abeec8eee06e797cbabf3)) (@JivusAyrus) -* let everybody create orgs ([#709](https://github.com/wundergraph/cosmo/issues/709)) ([13ac13c](https://github.com/wundergraph/cosmo/commit/13ac13c64859204c46744a1d54638773dff6e30a)) (@JivusAyrus) +- analytics group filter omission ([#729](https://github.com/wundergraph/cosmo/issues/729)) ([ba316af](https://github.com/wundergraph/cosmo/commit/ba316affc5cd413d93731d04ad3e58e214827f9b)) (@thisisnithin) +- inform users if there is nothing new to publish ([#710](https://github.com/wundergraph/cosmo/issues/710)) ([faf01fc](https://github.com/wundergraph/cosmo/commit/faf01fc9e398ef70873abeec8eee06e797cbabf3)) (@JivusAyrus) +- let everybody create orgs ([#709](https://github.com/wundergraph/cosmo/issues/709)) ([13ac13c](https://github.com/wundergraph/cosmo/commit/13ac13c64859204c46744a1d54638773dff6e30a)) (@JivusAyrus) ## [0.82.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.3...controlplane@0.82.4) (2024-04-11) @@ -1629,13 +1630,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* validate whether webhook exists ([#718](https://github.com/wundergraph/cosmo/issues/718)) ([81065d2](https://github.com/wundergraph/cosmo/commit/81065d20e4c47b66bf47edc3b590c9d6e217e046)) (@StarpTech) +- validate whether webhook exists ([#718](https://github.com/wundergraph/cosmo/issues/718)) ([81065d2](https://github.com/wundergraph/cosmo/commit/81065d20e4c47b66bf47edc3b590c9d6e217e046)) (@StarpTech) ## [0.82.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.1...controlplane@0.82.2) (2024-04-09) ### Bug Fixes -* authenticate organization id before updating webhooks ([#713](https://github.com/wundergraph/cosmo/issues/713)) ([64e78e2](https://github.com/wundergraph/cosmo/commit/64e78e29ec750c993faa661b241cb1f0edb4bbb3)) (@StarpTech) +- authenticate organization id before updating webhooks ([#713](https://github.com/wundergraph/cosmo/issues/713)) ([64e78e2](https://github.com/wundergraph/cosmo/commit/64e78e29ec750c993faa661b241cb1f0edb4bbb3)) (@StarpTech) ## [0.82.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.82.0...controlplane@0.82.1) (2024-04-09) @@ -1645,13 +1646,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* support TLS in organization seed ([#707](https://github.com/wundergraph/cosmo/issues/707)) ([2596c7a](https://github.com/wundergraph/cosmo/commit/2596c7a2e249465f777f120136afb66c1f0903ab)) (@StarpTech) +- support TLS in organization seed ([#707](https://github.com/wundergraph/cosmo/issues/707)) ([2596c7a](https://github.com/wundergraph/cosmo/commit/2596c7a2e249465f777f120136afb66c1f0903ab)) (@StarpTech) ## [0.81.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.81.1...controlplane@0.81.2) (2024-04-04) ### Bug Fixes -* create database clickhouse, arm incompatibilities ([c88dd50](https://github.com/wundergraph/cosmo/commit/c88dd507318334d40e9352a69a5df32d047d94f4)) (@StarpTech) +- create database clickhouse, arm incompatibilities ([c88dd50](https://github.com/wundergraph/cosmo/commit/c88dd507318334d40e9352a69a5df32d047d94f4)) (@StarpTech) ## [0.81.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.81.0...controlplane@0.81.1) (2024-04-03) @@ -1661,38 +1662,38 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* implement scim server ([#664](https://github.com/wundergraph/cosmo/issues/664)) ([12591da](https://github.com/wundergraph/cosmo/commit/12591da32ef62e9498855ceda37beba72835a801)) (@JivusAyrus) +- implement scim server ([#664](https://github.com/wundergraph/cosmo/issues/664)) ([12591da](https://github.com/wundergraph/cosmo/commit/12591da32ef62e9498855ceda37beba72835a801)) (@JivusAyrus) ## [0.80.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.80.2...controlplane@0.80.3) (2024-04-03) ### Bug Fixes -* use printSchemaWithDirectives instead of printSchema ([#676](https://github.com/wundergraph/cosmo/issues/676)) ([2884103](https://github.com/wundergraph/cosmo/commit/288410317150bdd6b14db1f46a8d10448a7c9c07)) (@JivusAyrus) +- use printSchemaWithDirectives instead of printSchema ([#676](https://github.com/wundergraph/cosmo/issues/676)) ([2884103](https://github.com/wundergraph/cosmo/commit/288410317150bdd6b14db1f46a8d10448a7c9c07)) (@JivusAyrus) ## [0.80.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.80.1...controlplane@0.80.2) (2024-03-28) ### Bug Fixes -* improve error handling in the migrator ([#673](https://github.com/wundergraph/cosmo/issues/673)) ([8270368](https://github.com/wundergraph/cosmo/commit/82703687066d5ca9af5b4f0eca33007d513cfdb4)) (@JivusAyrus) +- improve error handling in the migrator ([#673](https://github.com/wundergraph/cosmo/issues/673)) ([8270368](https://github.com/wundergraph/cosmo/commit/82703687066d5ca9af5b4f0eca33007d513cfdb4)) (@JivusAyrus) ## [0.80.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.80.0...controlplane@0.80.1) (2024-03-26) ### Bug Fixes -* conflicting subgraph name on monograph creation ([#668](https://github.com/wundergraph/cosmo/issues/668)) ([1b57233](https://github.com/wundergraph/cosmo/commit/1b57233f6f91b4219e60d975a8f7727129bd9ea6)) (@thisisnithin) -* webhook and slack retrieving incorrect graph list ([#671](https://github.com/wundergraph/cosmo/issues/671)) ([0cb4f36](https://github.com/wundergraph/cosmo/commit/0cb4f3644430a73a9d18a2792a025e81260ff8be)) (@thisisnithin) +- conflicting subgraph name on monograph creation ([#668](https://github.com/wundergraph/cosmo/issues/668)) ([1b57233](https://github.com/wundergraph/cosmo/commit/1b57233f6f91b4219e60d975a8f7727129bd9ea6)) (@thisisnithin) +- webhook and slack retrieving incorrect graph list ([#671](https://github.com/wundergraph/cosmo/issues/671)) ([0cb4f36](https://github.com/wundergraph/cosmo/commit/0cb4f3644430a73a9d18a2792a025e81260ff8be)) (@thisisnithin) # [0.80.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.79.4...controlplane@0.80.0) (2024-03-24) ### Features -* multi platform docker builds ([#665](https://github.com/wundergraph/cosmo/issues/665)) ([4c24d70](https://github.com/wundergraph/cosmo/commit/4c24d7075bd48cd946a1037bffc0c4fcaef74289)) (@StarpTech) +- multi platform docker builds ([#665](https://github.com/wundergraph/cosmo/issues/665)) ([4c24d70](https://github.com/wundergraph/cosmo/commit/4c24d7075bd48cd946a1037bffc0c4fcaef74289)) (@StarpTech) ## [0.79.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.79.3...controlplane@0.79.4) (2024-03-21) ### Bug Fixes -* show all subgraphs in organization subgraph list ([#659](https://github.com/wundergraph/cosmo/issues/659)) ([1ebc767](https://github.com/wundergraph/cosmo/commit/1ebc767c9f7f6a632fc107c686be63d470993ee1)) (@StarpTech) +- show all subgraphs in organization subgraph list ([#659](https://github.com/wundergraph/cosmo/issues/659)) ([1ebc767](https://github.com/wundergraph/cosmo/commit/1ebc767c9f7f6a632fc107c686be63d470993ee1)) (@StarpTech) ## [0.79.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.79.2...controlplane@0.79.3) (2024-03-21) @@ -1702,7 +1703,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* github check api crashes schema check ([#658](https://github.com/wundergraph/cosmo/issues/658)) ([db2e1e4](https://github.com/wundergraph/cosmo/commit/db2e1e4366028f71fceec4e47284411d404a9427)) (@thisisnithin) +- github check api crashes schema check ([#658](https://github.com/wundergraph/cosmo/issues/658)) ([db2e1e4](https://github.com/wundergraph/cosmo/commit/db2e1e4366028f71fceec4e47284411d404a9427)) (@thisisnithin) ## [0.79.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.79.0...controlplane@0.79.1) (2024-03-20) @@ -1712,35 +1713,35 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* monograph support ([#623](https://github.com/wundergraph/cosmo/issues/623)) ([a255f74](https://github.com/wundergraph/cosmo/commit/a255f747d63454e1219760b729d99e4778d56dda)) (@thisisnithin) +- monograph support ([#623](https://github.com/wundergraph/cosmo/issues/623)) ([a255f74](https://github.com/wundergraph/cosmo/commit/a255f747d63454e1219760b729d99e4778d56dda)) (@thisisnithin) # [0.78.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.77.1...controlplane@0.78.0) (2024-03-18) ### Features -* allow to update admission url ([#638](https://github.com/wundergraph/cosmo/issues/638)) ([c7f7ee6](https://github.com/wundergraph/cosmo/commit/c7f7ee65f7716d463fb0bf96cf386e54ba5f8b73)) (@StarpTech) +- allow to update admission url ([#638](https://github.com/wundergraph/cosmo/issues/638)) ([c7f7ee6](https://github.com/wundergraph/cosmo/commit/c7f7ee65f7716d463fb0bf96cf386e54ba5f8b73)) (@StarpTech) ## [0.77.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.77.0...controlplane@0.77.1) (2024-03-16) ### Bug Fixes -* improve ui and logs ([#631](https://github.com/wundergraph/cosmo/issues/631)) ([83695b9](https://github.com/wundergraph/cosmo/commit/83695b97d3aca66d70677bc207f874c8aa17bf65)) (@JivusAyrus) +- improve ui and logs ([#631](https://github.com/wundergraph/cosmo/issues/631)) ([83695b9](https://github.com/wundergraph/cosmo/commit/83695b97d3aca66d70677bc207f874c8aa17bf65)) (@JivusAyrus) # [0.77.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.76.0...controlplane@0.77.0) (2024-03-14) ### Features -* improve admission controller ([#632](https://github.com/wundergraph/cosmo/issues/632)) ([229bc9f](https://github.com/wundergraph/cosmo/commit/229bc9f5e58d0a936c2c5427b9f30146def87157)) (@StarpTech) +- improve admission controller ([#632](https://github.com/wundergraph/cosmo/issues/632)) ([229bc9f](https://github.com/wundergraph/cosmo/commit/229bc9f5e58d0a936c2c5427b9f30146def87157)) (@StarpTech) # [0.76.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.75.2...controlplane@0.76.0) (2024-03-14) ### Bug Fixes -* change claim key to support microsoft entra ([#630](https://github.com/wundergraph/cosmo/issues/630)) ([f1bc391](https://github.com/wundergraph/cosmo/commit/f1bc3916f9859525fd36e4879a839e6f3c59fa0d)) (@JivusAyrus) +- change claim key to support microsoft entra ([#630](https://github.com/wundergraph/cosmo/issues/630)) ([f1bc391](https://github.com/wundergraph/cosmo/commit/f1bc3916f9859525fd36e4879a839e6f3c59fa0d)) (@JivusAyrus) ### Features -* router config signature validation through custom admission webhooks ([#628](https://github.com/wundergraph/cosmo/issues/628)) ([384fd7e](https://github.com/wundergraph/cosmo/commit/384fd7e3372479e96fccc4fc771dc4e9f9c84754)) (@StarpTech) +- router config signature validation through custom admission webhooks ([#628](https://github.com/wundergraph/cosmo/issues/628)) ([384fd7e](https://github.com/wundergraph/cosmo/commit/384fd7e3372479e96fccc4fc771dc4e9f9c84754)) (@StarpTech) ## [0.75.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.75.1...controlplane@0.75.2) (2024-03-13) @@ -1750,29 +1751,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* dependencies ([#622](https://github.com/wundergraph/cosmo/issues/622)) ([7763060](https://github.com/wundergraph/cosmo/commit/776306054ebb77a883779ae11ffd178b62afbd59)) (@JivusAyrus) +- dependencies ([#622](https://github.com/wundergraph/cosmo/issues/622)) ([7763060](https://github.com/wundergraph/cosmo/commit/776306054ebb77a883779ae11ffd178b62afbd59)) (@JivusAyrus) # [0.75.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.74.1...controlplane@0.75.0) (2024-03-11) ### Bug Fixes -* subgraphs not found in composition details page ([#619](https://github.com/wundergraph/cosmo/issues/619)) ([f3ea37e](https://github.com/wundergraph/cosmo/commit/f3ea37eb24a60b4f993437b728cf3b3db2166862)) (@JivusAyrus) +- subgraphs not found in composition details page ([#619](https://github.com/wundergraph/cosmo/issues/619)) ([f3ea37e](https://github.com/wundergraph/cosmo/commit/f3ea37eb24a60b4f993437b728cf3b3db2166862)) (@JivusAyrus) ### Features -* add configurable schema linting ([#596](https://github.com/wundergraph/cosmo/issues/596)) ([c662485](https://github.com/wundergraph/cosmo/commit/c66248529c5bc13e795725c82ba50dbad79451ae)) (@JivusAyrus) +- add configurable schema linting ([#596](https://github.com/wundergraph/cosmo/issues/596)) ([c662485](https://github.com/wundergraph/cosmo/commit/c66248529c5bc13e795725c82ba50dbad79451ae)) (@JivusAyrus) ## [0.74.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.74.0...controlplane@0.74.1) (2024-03-08) ### Bug Fixes -* handle empty files in the cli itself ([#593](https://github.com/wundergraph/cosmo/issues/593)) ([de08e24](https://github.com/wundergraph/cosmo/commit/de08e24e63bc0083d3b86c417cb1bd282891c60b)) (@JivusAyrus) +- handle empty files in the cli itself ([#593](https://github.com/wundergraph/cosmo/issues/593)) ([de08e24](https://github.com/wundergraph/cosmo/commit/de08e24e63bc0083d3b86c417cb1bd282891c60b)) (@JivusAyrus) # [0.74.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.73.2...controlplane@0.74.0) (2024-03-08) ### Features -* ensure TLS and test if mail client is ready ([#611](https://github.com/wundergraph/cosmo/issues/611)) ([0e62bec](https://github.com/wundergraph/cosmo/commit/0e62becf1583137025f712ca053ade946f62295e)) (@StarpTech) +- ensure TLS and test if mail client is ready ([#611](https://github.com/wundergraph/cosmo/issues/611)) ([0e62bec](https://github.com/wundergraph/cosmo/commit/0e62becf1583137025f712ca053ade946f62295e)) (@StarpTech) ## [0.73.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.73.1...controlplane@0.73.2) (2024-03-06) @@ -1786,18 +1787,18 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* enrich logger for platform calls ([#579](https://github.com/wundergraph/cosmo/issues/579)) ([47836bf](https://github.com/wundergraph/cosmo/commit/47836bfd8a5d55195651928b4ea9c1f5e7bbf580)) (@thisisnithin) +- enrich logger for platform calls ([#579](https://github.com/wundergraph/cosmo/issues/579)) ([47836bf](https://github.com/wundergraph/cosmo/commit/47836bfd8a5d55195651928b4ea9c1f5e7bbf580)) (@thisisnithin) # [0.72.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.71.1...controlplane@0.72.0) (2024-02-27) ### Bug Fixes -* omit invalid group filters ([#580](https://github.com/wundergraph/cosmo/issues/580)) ([c271e94](https://github.com/wundergraph/cosmo/commit/c271e9437e7a779dc7384f700a08e12e2a113c25)) (@thisisnithin) +- omit invalid group filters ([#580](https://github.com/wundergraph/cosmo/issues/580)) ([c271e94](https://github.com/wundergraph/cosmo/commit/c271e9437e7a779dc7384f700a08e12e2a113c25)) (@thisisnithin) ### Features -* **cli:** new command to fetch latest published subgraph SDL ([#575](https://github.com/wundergraph/cosmo/issues/575)) ([09a0ab5](https://github.com/wundergraph/cosmo/commit/09a0ab54cccae6f46c1e585cf12fa9321f44e9ed)) (@StarpTech) -* show link to studio page on subgraph check ([#578](https://github.com/wundergraph/cosmo/issues/578)) ([701d81c](https://github.com/wundergraph/cosmo/commit/701d81c764b12bb1a2ec308634e69aaffb9e7e3e)) (@thisisnithin) +- **cli:** new command to fetch latest published subgraph SDL ([#575](https://github.com/wundergraph/cosmo/issues/575)) ([09a0ab5](https://github.com/wundergraph/cosmo/commit/09a0ab54cccae6f46c1e585cf12fa9321f44e9ed)) (@StarpTech) +- show link to studio page on subgraph check ([#578](https://github.com/wundergraph/cosmo/issues/578)) ([701d81c](https://github.com/wundergraph/cosmo/commit/701d81c764b12bb1a2ec308634e69aaffb9e7e3e)) (@thisisnithin) ## [0.71.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.71.1...controlplane@0.71.2) (2024-02-23) @@ -1811,71 +1812,71 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* implement slider for analytics duration ([#539](https://github.com/wundergraph/cosmo/issues/539)) ([3f4a0ee](https://github.com/wundergraph/cosmo/commit/3f4a0eeb58daa36ddf0be4bfc20959b53b6d0928)) (@JivusAyrus) +- implement slider for analytics duration ([#539](https://github.com/wundergraph/cosmo/issues/539)) ([3f4a0ee](https://github.com/wundergraph/cosmo/commit/3f4a0eeb58daa36ddf0be4bfc20959b53b6d0928)) (@JivusAyrus) # [0.70.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.69.0...controlplane@0.70.0) (2024-02-20) ### Bug Fixes -* link to changelog in slack update ([#557](https://github.com/wundergraph/cosmo/issues/557)) ([300b4fc](https://github.com/wundergraph/cosmo/commit/300b4fcd6cce8142b19fade20ebd8fcc94317bd7)) (@thisisnithin) +- link to changelog in slack update ([#557](https://github.com/wundergraph/cosmo/issues/557)) ([300b4fc](https://github.com/wundergraph/cosmo/commit/300b4fcd6cce8142b19fade20ebd8fcc94317bd7)) (@thisisnithin) ### Features -* support empty labels and label matchers ([#555](https://github.com/wundergraph/cosmo/issues/555)) ([8bb857c](https://github.com/wundergraph/cosmo/commit/8bb857c94f8165676b2ca5101c199f3bc0648d10)) (@thisisnithin) +- support empty labels and label matchers ([#555](https://github.com/wundergraph/cosmo/issues/555)) ([8bb857c](https://github.com/wundergraph/cosmo/commit/8bb857c94f8165676b2ca5101c199f3bc0648d10)) (@thisisnithin) # [0.69.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.68.2...controlplane@0.69.0) (2024-02-19) ### Bug Fixes -* don't expose token on wgc list command ([#550](https://github.com/wundergraph/cosmo/issues/550)) ([357ffae](https://github.com/wundergraph/cosmo/commit/357ffae4362c3c37dc955d40363da40cd985bf3f)) (@StarpTech) -* send only summary for large slack notifications ([#556](https://github.com/wundergraph/cosmo/issues/556)) ([732dbc5](https://github.com/wundergraph/cosmo/commit/732dbc5cdf99c5ab742cf7dcf8339b516956bfdd)) (@thisisnithin) +- don't expose token on wgc list command ([#550](https://github.com/wundergraph/cosmo/issues/550)) ([357ffae](https://github.com/wundergraph/cosmo/commit/357ffae4362c3c37dc955d40363da40cd985bf3f)) (@StarpTech) +- send only summary for large slack notifications ([#556](https://github.com/wundergraph/cosmo/issues/556)) ([732dbc5](https://github.com/wundergraph/cosmo/commit/732dbc5cdf99c5ab742cf7dcf8339b516956bfdd)) (@thisisnithin) ### Features -* upgrade to latest gpt3.5 model ([#549](https://github.com/wundergraph/cosmo/issues/549)) ([3a44d02](https://github.com/wundergraph/cosmo/commit/3a44d022cd781fcd3435ac9f1d062597e51a2274)) (@StarpTech) +- upgrade to latest gpt3.5 model ([#549](https://github.com/wundergraph/cosmo/issues/549)) ([3a44d02](https://github.com/wundergraph/cosmo/commit/3a44d022cd781fcd3435ac9f1d062597e51a2274)) (@StarpTech) ## [0.68.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.68.1...controlplane@0.68.2) (2024-02-18) ### Bug Fixes -* remove duplicated columns ([#547](https://github.com/wundergraph/cosmo/issues/547)) ([36e683a](https://github.com/wundergraph/cosmo/commit/36e683aa21dd8b5ae77ea8fda9d0d07b8e820733)) (@StarpTech) +- remove duplicated columns ([#547](https://github.com/wundergraph/cosmo/issues/547)) ([36e683a](https://github.com/wundergraph/cosmo/commit/36e683aa21dd8b5ae77ea8fda9d0d07b8e820733)) (@StarpTech) ## [0.68.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.68.0...controlplane@0.68.1) (2024-02-16) ### Bug Fixes -* import ([#544](https://github.com/wundergraph/cosmo/issues/544)) ([f2a3431](https://github.com/wundergraph/cosmo/commit/f2a34312b3b7c344d1255418f3c6a91f78fbf929)) (@thisisnithin) +- import ([#544](https://github.com/wundergraph/cosmo/issues/544)) ([f2a3431](https://github.com/wundergraph/cosmo/commit/f2a34312b3b7c344d1255418f3c6a91f78fbf929)) (@thisisnithin) # [0.68.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.67.3...controlplane@0.68.0) (2024-02-16) ### Features -* operation check overrides ([#516](https://github.com/wundergraph/cosmo/issues/516)) ([651ff8e](https://github.com/wundergraph/cosmo/commit/651ff8ed88cd542d56cf11d11086f659fc3f5d4e)) (@thisisnithin) +- operation check overrides ([#516](https://github.com/wundergraph/cosmo/issues/516)) ([651ff8e](https://github.com/wundergraph/cosmo/commit/651ff8ed88cd542d56cf11d11086f659fc3f5d4e)) (@thisisnithin) ## [0.67.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.67.2...controlplane@0.67.3) (2024-02-15) ### Bug Fixes -* label matcher validation ([#529](https://github.com/wundergraph/cosmo/issues/529)) ([1472cbd](https://github.com/wundergraph/cosmo/commit/1472cbd0a4244fc835ab45d4a91fda64d984785d)) (@StarpTech) -* show subgraphs in the graph view after the creation itself ([#514](https://github.com/wundergraph/cosmo/issues/514)) ([d10b5b9](https://github.com/wundergraph/cosmo/commit/d10b5b973a1788f757249b441d08acbbda6b3f66)) (@JivusAyrus) +- label matcher validation ([#529](https://github.com/wundergraph/cosmo/issues/529)) ([1472cbd](https://github.com/wundergraph/cosmo/commit/1472cbd0a4244fc835ab45d4a91fda64d984785d)) (@StarpTech) +- show subgraphs in the graph view after the creation itself ([#514](https://github.com/wundergraph/cosmo/issues/514)) ([d10b5b9](https://github.com/wundergraph/cosmo/commit/d10b5b973a1788f757249b441d08acbbda6b3f66)) (@JivusAyrus) ## [0.67.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.67.1...controlplane@0.67.2) (2024-02-14) ### Bug Fixes -* check for config version id when fetching router composition ([#525](https://github.com/wundergraph/cosmo/issues/525)) ([e86a794](https://github.com/wundergraph/cosmo/commit/e86a7945928826d16dbb461c16e301c51f8d345b)) (@StarpTech) +- check for config version id when fetching router composition ([#525](https://github.com/wundergraph/cosmo/issues/525)) ([e86a794](https://github.com/wundergraph/cosmo/commit/e86a7945928826d16dbb461c16e301c51f8d345b)) (@StarpTech) ## [0.67.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.67.0...controlplane@0.67.1) (2024-02-13) ### Bug Fixes -* distinguish between server and process uptime, fix uptime ch query ([#520](https://github.com/wundergraph/cosmo/issues/520)) ([6fc2b72](https://github.com/wundergraph/cosmo/commit/6fc2b7237cd029127f6913199c40dd61bb16a22b)) (@StarpTech) +- distinguish between server and process uptime, fix uptime ch query ([#520](https://github.com/wundergraph/cosmo/issues/520)) ([6fc2b72](https://github.com/wundergraph/cosmo/commit/6fc2b7237cd029127f6913199c40dd61bb16a22b)) (@StarpTech) # [0.67.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.66.3...controlplane@0.67.0) (2024-02-13) ### Features -* router fleet management ([#515](https://github.com/wundergraph/cosmo/issues/515)) ([7f0deae](https://github.com/wundergraph/cosmo/commit/7f0deae98a2f58bd46927bdb2be8d615613b908f)) (@StarpTech) +- router fleet management ([#515](https://github.com/wundergraph/cosmo/issues/515)) ([7f0deae](https://github.com/wundergraph/cosmo/commit/7f0deae98a2f58bd46927bdb2be8d615613b908f)) (@StarpTech) ## [0.66.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.66.2...controlplane@0.66.3) (2024-02-13) @@ -1885,60 +1886,60 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* prepend ch queries correctly with database name ([#508](https://github.com/wundergraph/cosmo/issues/508)) ([f774638](https://github.com/wundergraph/cosmo/commit/f774638deee6e7d3c6c768fd7ad82ec48e398487)) (@StarpTech) -* rpm calculation in the graph overview page ([#507](https://github.com/wundergraph/cosmo/issues/507)) ([307e203](https://github.com/wundergraph/cosmo/commit/307e203b053ebe9b90a10d0ac10734adbdf398fc)) (@JivusAyrus) +- prepend ch queries correctly with database name ([#508](https://github.com/wundergraph/cosmo/issues/508)) ([f774638](https://github.com/wundergraph/cosmo/commit/f774638deee6e7d3c6c768fd7ad82ec48e398487)) (@StarpTech) +- rpm calculation in the graph overview page ([#507](https://github.com/wundergraph/cosmo/issues/507)) ([307e203](https://github.com/wundergraph/cosmo/commit/307e203b053ebe9b90a10d0ac10734adbdf398fc)) (@JivusAyrus) ## [0.66.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.66.0...controlplane@0.66.1) (2024-02-08) ### Bug Fixes -* slack update ([#510](https://github.com/wundergraph/cosmo/issues/510)) ([ee724e1](https://github.com/wundergraph/cosmo/commit/ee724e19dc47640c4213ea5d0af0c733bacd9c0b)) (@thisisnithin) +- slack update ([#510](https://github.com/wundergraph/cosmo/issues/510)) ([ee724e1](https://github.com/wundergraph/cosmo/commit/ee724e19dc47640c4213ea5d0af0c733bacd9c0b)) (@thisisnithin) # [0.66.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.65.0...controlplane@0.66.0) (2024-02-08) ### Bug Fixes -* audit log for subgraph member addition and removal ([#498](https://github.com/wundergraph/cosmo/issues/498)) ([bd2a211](https://github.com/wundergraph/cosmo/commit/bd2a211b87594fcc43a1b893740d25fbff1b1729)) (@thisisnithin) -* wait until db is closed in close server hook ([#502](https://github.com/wundergraph/cosmo/issues/502)) ([8bb8686](https://github.com/wundergraph/cosmo/commit/8bb868651d39ceee1ecb4c62dd3b4ef3a143469f)) (@StarpTech) +- audit log for subgraph member addition and removal ([#498](https://github.com/wundergraph/cosmo/issues/498)) ([bd2a211](https://github.com/wundergraph/cosmo/commit/bd2a211b87594fcc43a1b893740d25fbff1b1729)) (@thisisnithin) +- wait until db is closed in close server hook ([#502](https://github.com/wundergraph/cosmo/issues/502)) ([8bb8686](https://github.com/wundergraph/cosmo/commit/8bb868651d39ceee1ecb4c62dd3b4ef3a143469f)) (@StarpTech) ### Features -* improve federated graph lists overview ([#497](https://github.com/wundergraph/cosmo/issues/497)) ([d7f383a](https://github.com/wundergraph/cosmo/commit/d7f383ad074a9dde06e96fd90459478a29b2cf79)) (@JivusAyrus) -* upgrade to active lts node images ([#501](https://github.com/wundergraph/cosmo/issues/501)) ([684f89f](https://github.com/wundergraph/cosmo/commit/684f89f8b6c46a3b24117c221cab41a5b60dd534)) (@StarpTech) +- improve federated graph lists overview ([#497](https://github.com/wundergraph/cosmo/issues/497)) ([d7f383a](https://github.com/wundergraph/cosmo/commit/d7f383ad074a9dde06e96fd90459478a29b2cf79)) (@JivusAyrus) +- upgrade to active lts node images ([#501](https://github.com/wundergraph/cosmo/issues/501)) ([684f89f](https://github.com/wundergraph/cosmo/commit/684f89f8b6c46a3b24117c221cab41a5b60dd534)) (@StarpTech) # [0.65.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.64.0...controlplane@0.65.0) (2024-02-06) ### Bug Fixes -* **traces:** avoid filter on service name when determining root ([ebec309](https://github.com/wundergraph/cosmo/commit/ebec30948e5bdaad2daa813834b34c7bf9c43192)) (@StarpTech) +- **traces:** avoid filter on service name when determining root ([ebec309](https://github.com/wundergraph/cosmo/commit/ebec30948e5bdaad2daa813834b34c7bf9c43192)) (@StarpTech) ### Features -* enable creating orgs without billing ([#491](https://github.com/wundergraph/cosmo/issues/491)) ([dd2a5b9](https://github.com/wundergraph/cosmo/commit/dd2a5b91fb715f20a4adc613b820de9f02220821)) (@JivusAyrus) +- enable creating orgs without billing ([#491](https://github.com/wundergraph/cosmo/issues/491)) ([dd2a5b9](https://github.com/wundergraph/cosmo/commit/dd2a5b91fb715f20a4adc613b820de9f02220821)) (@JivusAyrus) # [0.64.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.63.0...controlplane@0.64.0) (2024-02-06) ### Features -* add pagination component and validate limit ([#493](https://github.com/wundergraph/cosmo/issues/493)) ([880f1b9](https://github.com/wundergraph/cosmo/commit/880f1b9f64167b70b7f61620ebb5a895d438727a)) (@JivusAyrus) -* consider only router root spans in the trace list ([#495](https://github.com/wundergraph/cosmo/issues/495)) ([b7639ab](https://github.com/wundergraph/cosmo/commit/b7639abcc4c2f367a651a65ffbc17238a049f635)) (@StarpTech) +- add pagination component and validate limit ([#493](https://github.com/wundergraph/cosmo/issues/493)) ([880f1b9](https://github.com/wundergraph/cosmo/commit/880f1b9f64167b70b7f61620ebb5a895d438727a)) (@JivusAyrus) +- consider only router root spans in the trace list ([#495](https://github.com/wundergraph/cosmo/issues/495)) ([b7639ab](https://github.com/wundergraph/cosmo/commit/b7639abcc4c2f367a651a65ffbc17238a049f635)) (@StarpTech) # [0.63.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.62.0...controlplane@0.63.0) (2024-02-05) ### Features -* allow to force root span on the router ([#486](https://github.com/wundergraph/cosmo/issues/486)) ([a1a2f64](https://github.com/wundergraph/cosmo/commit/a1a2f64558815267edc144e32da4297703743a86)) (@StarpTech) +- allow to force root span on the router ([#486](https://github.com/wundergraph/cosmo/issues/486)) ([a1a2f64](https://github.com/wundergraph/cosmo/commit/a1a2f64558815267edc144e32da4297703743a86)) (@StarpTech) # [0.62.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.61.2...controlplane@0.62.0) (2024-02-05) ### Bug Fixes -* missing namespace for platform operations ([#490](https://github.com/wundergraph/cosmo/issues/490)) ([647d52a](https://github.com/wundergraph/cosmo/commit/647d52a39877be73f55bc0d69c304576e9f5228a)) (@thisisnithin) -* refactor router trace instrumentation ([#485](https://github.com/wundergraph/cosmo/issues/485)) ([889d06c](https://github.com/wundergraph/cosmo/commit/889d06c95651bd44d136b89f0638faa4f25be8e2)) (@StarpTech) +- missing namespace for platform operations ([#490](https://github.com/wundergraph/cosmo/issues/490)) ([647d52a](https://github.com/wundergraph/cosmo/commit/647d52a39877be73f55bc0d69c304576e9f5228a)) (@thisisnithin) +- refactor router trace instrumentation ([#485](https://github.com/wundergraph/cosmo/issues/485)) ([889d06c](https://github.com/wundergraph/cosmo/commit/889d06c95651bd44d136b89f0638faa4f25be8e2)) (@StarpTech) ### Features -* show span error and allow filter by span status code and trace id ([#484](https://github.com/wundergraph/cosmo/issues/484)) ([efc3243](https://github.com/wundergraph/cosmo/commit/efc32434a7de9b035d73ccc3efb736f0b69f9ac4)) (@StarpTech) +- show span error and allow filter by span status code and trace id ([#484](https://github.com/wundergraph/cosmo/issues/484)) ([efc3243](https://github.com/wundergraph/cosmo/commit/efc32434a7de9b035d73ccc3efb736f0b69f9ac4)) (@StarpTech) ## [0.61.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.61.1...controlplane@0.61.2) (2024-02-02) @@ -1948,121 +1949,121 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* support tls when migrate ([#479](https://github.com/wundergraph/cosmo/issues/479)) ([4e1b23c](https://github.com/wundergraph/cosmo/commit/4e1b23c052e99e94f516df334adcefe3bcd8caad)) (@StarpTech) +- support tls when migrate ([#479](https://github.com/wundergraph/cosmo/issues/479)) ([4e1b23c](https://github.com/wundergraph/cosmo/commit/4e1b23c052e99e94f516df334adcefe3bcd8caad)) (@StarpTech) # [0.61.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.60.0...controlplane@0.61.0) (2024-02-01) ### Bug Fixes -* **deps:** upgrade bullmq ([#471](https://github.com/wundergraph/cosmo/issues/471)) ([90231c9](https://github.com/wundergraph/cosmo/commit/90231c9dd3af469dd0e6f6af05468c8e1112fa83)) (@StarpTech) -* slack notification link ([#478](https://github.com/wundergraph/cosmo/issues/478)) ([e83dfd8](https://github.com/wundergraph/cosmo/commit/e83dfd810cdbfdd927074b727ebab9435e380269)) (@thisisnithin) -* upgrade otel collector ([#475](https://github.com/wundergraph/cosmo/issues/475)) ([2d33978](https://github.com/wundergraph/cosmo/commit/2d339786d4cc1727b3fb6498606d11a059233b61)) (@StarpTech) +- **deps:** upgrade bullmq ([#471](https://github.com/wundergraph/cosmo/issues/471)) ([90231c9](https://github.com/wundergraph/cosmo/commit/90231c9dd3af469dd0e6f6af05468c8e1112fa83)) (@StarpTech) +- slack notification link ([#478](https://github.com/wundergraph/cosmo/issues/478)) ([e83dfd8](https://github.com/wundergraph/cosmo/commit/e83dfd810cdbfdd927074b727ebab9435e380269)) (@thisisnithin) +- upgrade otel collector ([#475](https://github.com/wundergraph/cosmo/issues/475)) ([2d33978](https://github.com/wundergraph/cosmo/commit/2d339786d4cc1727b3fb6498606d11a059233b61)) (@StarpTech) ### Features -* integrate S3 when executing "getLatestValidRouterConfig" from the CLI ([#467](https://github.com/wundergraph/cosmo/issues/467)) ([90b7c8e](https://github.com/wundergraph/cosmo/commit/90b7c8ed01bdd659183c87cc2d94946ab20fe073)) (@JivusAyrus) +- integrate S3 when executing "getLatestValidRouterConfig" from the CLI ([#467](https://github.com/wundergraph/cosmo/issues/467)) ([90b7c8e](https://github.com/wundergraph/cosmo/commit/90b7c8ed01bdd659183c87cc2d94946ab20fe073)) (@JivusAyrus) # [0.60.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.59.0...controlplane@0.60.0) (2024-01-31) ### Bug Fixes -* ch migrations ([#468](https://github.com/wundergraph/cosmo/issues/468)) ([5afda68](https://github.com/wundergraph/cosmo/commit/5afda68c8d0d65fa9adf64face1c6532f7d5174e)) (@JivusAyrus) -* validate routing urls ([#470](https://github.com/wundergraph/cosmo/issues/470)) ([166d9ef](https://github.com/wundergraph/cosmo/commit/166d9efb53f5554b1dcbd49f7dd334f6cc1e4a87)) (@JivusAyrus) +- ch migrations ([#468](https://github.com/wundergraph/cosmo/issues/468)) ([5afda68](https://github.com/wundergraph/cosmo/commit/5afda68c8d0d65fa9adf64face1c6532f7d5174e)) (@JivusAyrus) +- validate routing urls ([#470](https://github.com/wundergraph/cosmo/issues/470)) ([166d9ef](https://github.com/wundergraph/cosmo/commit/166d9efb53f5554b1dcbd49f7dd334f6cc1e4a87)) (@JivusAyrus) ### Features -* cosmo ai, generate docs on publish ([#466](https://github.com/wundergraph/cosmo/issues/466)) ([033ff90](https://github.com/wundergraph/cosmo/commit/033ff9068716935a7d646adebcc0e2b776d0295d)) (@StarpTech) +- cosmo ai, generate docs on publish ([#466](https://github.com/wundergraph/cosmo/issues/466)) ([033ff90](https://github.com/wundergraph/cosmo/commit/033ff9068716935a7d646adebcc0e2b776d0295d)) (@StarpTech) # [0.59.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.58.0...controlplane@0.59.0) (2024-01-30) ### Features -* subgraph analytics page ([#455](https://github.com/wundergraph/cosmo/issues/455)) ([f7a65c7](https://github.com/wundergraph/cosmo/commit/f7a65c79611da2d7efc603ef7e5a5b2e194203c9)) (@JivusAyrus) +- subgraph analytics page ([#455](https://github.com/wundergraph/cosmo/issues/455)) ([f7a65c7](https://github.com/wundergraph/cosmo/commit/f7a65c79611da2d7efc603ef7e5a5b2e194203c9)) (@JivusAyrus) # [0.58.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.57.2...controlplane@0.58.0) (2024-01-30) ### Features -* implement authorization directives ([#448](https://github.com/wundergraph/cosmo/issues/448)) ([181d89d](https://github.com/wundergraph/cosmo/commit/181d89d8e7dbf8eb23cddfa0b6c91c840a2986b0)) (@Aenimus) +- implement authorization directives ([#448](https://github.com/wundergraph/cosmo/issues/448)) ([181d89d](https://github.com/wundergraph/cosmo/commit/181d89d8e7dbf8eb23cddfa0b6c91c840a2986b0)) (@Aenimus) ## [0.57.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.57.1...controlplane@0.57.2) (2024-01-29) ### Bug Fixes -* use graph id from token ([#463](https://github.com/wundergraph/cosmo/issues/463)) ([5582d00](https://github.com/wundergraph/cosmo/commit/5582d004c98eb20f62ecf2332b327c7959e5b64f)) (@thisisnithin) +- use graph id from token ([#463](https://github.com/wundergraph/cosmo/issues/463)) ([5582d00](https://github.com/wundergraph/cosmo/commit/5582d004c98eb20f62ecf2332b327c7959e5b64f)) (@thisisnithin) ## [0.57.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.57.0...controlplane@0.57.1) (2024-01-26) ### Bug Fixes -* allow to create subgraph and federated graphs with same name ([#461](https://github.com/wundergraph/cosmo/issues/461)) ([dcf0b7b](https://github.com/wundergraph/cosmo/commit/dcf0b7bb059f0fe05375955ace6859dcb9dada09)) (@StarpTech) +- allow to create subgraph and federated graphs with same name ([#461](https://github.com/wundergraph/cosmo/issues/461)) ([dcf0b7b](https://github.com/wundergraph/cosmo/commit/dcf0b7bb059f0fe05375955ace6859dcb9dada09)) (@StarpTech) # [0.57.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.56.0...controlplane@0.57.0) (2024-01-26) ### Features -* namespaces ([#447](https://github.com/wundergraph/cosmo/issues/447)) ([bbe5258](https://github.com/wundergraph/cosmo/commit/bbe5258c5e764c52947f831d3a7f1a2f93c267d4)) (@thisisnithin) +- namespaces ([#447](https://github.com/wundergraph/cosmo/issues/447)) ([bbe5258](https://github.com/wundergraph/cosmo/commit/bbe5258c5e764c52947f831d3a7f1a2f93c267d4)) (@thisisnithin) # [0.56.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.55.0...controlplane@0.56.0) (2024-01-26) ### Features -* produce spans for handler and engine work ([#456](https://github.com/wundergraph/cosmo/issues/456)) ([fd5ad67](https://github.com/wundergraph/cosmo/commit/fd5ad678c184c34e1f09ff2e89664c53894ae74c)) (@StarpTech) +- produce spans for handler and engine work ([#456](https://github.com/wundergraph/cosmo/issues/456)) ([fd5ad67](https://github.com/wundergraph/cosmo/commit/fd5ad678c184c34e1f09ff2e89664c53894ae74c)) (@StarpTech) # [0.55.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.54.3...controlplane@0.55.0) (2024-01-23) ### Features -* implement pagination and date filter for audit logs ([#444](https://github.com/wundergraph/cosmo/issues/444)) ([e014c08](https://github.com/wundergraph/cosmo/commit/e014c0896dd017cf4db6a2c5f2c2d83b1fc86017)) (@JivusAyrus) +- implement pagination and date filter for audit logs ([#444](https://github.com/wundergraph/cosmo/issues/444)) ([e014c08](https://github.com/wundergraph/cosmo/commit/e014c0896dd017cf4db6a2c5f2c2d83b1fc86017)) (@JivusAyrus) ## [0.54.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.54.2...controlplane@0.54.3) (2024-01-21) ### Bug Fixes -* refresh button in the overview page ([#441](https://github.com/wundergraph/cosmo/issues/441)) ([d4988d9](https://github.com/wundergraph/cosmo/commit/d4988d9d3aecd377fc56af5cb2d33a69ba8414c5)) (@JivusAyrus) +- refresh button in the overview page ([#441](https://github.com/wundergraph/cosmo/issues/441)) ([d4988d9](https://github.com/wundergraph/cosmo/commit/d4988d9d3aecd377fc56af5cb2d33a69ba8414c5)) (@JivusAyrus) ## [0.54.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.54.1...controlplane@0.54.2) (2024-01-17) ### Bug Fixes -* organization_invitation.deleted event and set auditableType ([#439](https://github.com/wundergraph/cosmo/issues/439)) ([be4e38b](https://github.com/wundergraph/cosmo/commit/be4e38b86ded2848eefe89268caf6edd7a3a891d)) (@StarpTech) +- organization_invitation.deleted event and set auditableType ([#439](https://github.com/wundergraph/cosmo/issues/439)) ([be4e38b](https://github.com/wundergraph/cosmo/commit/be4e38b86ded2848eefe89268caf6edd7a3a891d)) (@StarpTech) ## [0.54.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.54.0...controlplane@0.54.1) (2024-01-17) ### Bug Fixes -* allow the member of the org to leave ([#436](https://github.com/wundergraph/cosmo/issues/436)) ([21bd032](https://github.com/wundergraph/cosmo/commit/21bd032207752205d39a9a9568af704e4a069b89)) (@JivusAyrus) -* date and range filter for traces ([#437](https://github.com/wundergraph/cosmo/issues/437)) ([2950222](https://github.com/wundergraph/cosmo/commit/2950222c3b45134d9167fb43668ae32a4d2ec156)) (@thisisnithin) +- allow the member of the org to leave ([#436](https://github.com/wundergraph/cosmo/issues/436)) ([21bd032](https://github.com/wundergraph/cosmo/commit/21bd032207752205d39a9a9568af704e4a069b89)) (@JivusAyrus) +- date and range filter for traces ([#437](https://github.com/wundergraph/cosmo/issues/437)) ([2950222](https://github.com/wundergraph/cosmo/commit/2950222c3b45134d9167fb43668ae32a4d2ec156)) (@thisisnithin) # [0.54.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.53.2...controlplane@0.54.0) (2024-01-16) ### Features -* audit logs ([#424](https://github.com/wundergraph/cosmo/issues/424)) ([bb3aa46](https://github.com/wundergraph/cosmo/commit/bb3aa4632e28ed45c4fe1f8a0cc3e04acf0c194a)) (@StarpTech) +- audit logs ([#424](https://github.com/wundergraph/cosmo/issues/424)) ([bb3aa46](https://github.com/wundergraph/cosmo/commit/bb3aa4632e28ed45c4fe1f8a0cc3e04acf0c194a)) (@StarpTech) ## [0.53.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.53.1...controlplane@0.53.2) (2024-01-12) ### Bug Fixes -* apollo migration ([#419](https://github.com/wundergraph/cosmo/issues/419)) ([2d43ce6](https://github.com/wundergraph/cosmo/commit/2d43ce68a023e80b06f5aaf6ba52da4fbf779fe1)) (@JivusAyrus) +- apollo migration ([#419](https://github.com/wundergraph/cosmo/issues/419)) ([2d43ce6](https://github.com/wundergraph/cosmo/commit/2d43ce68a023e80b06f5aaf6ba52da4fbf779fe1)) (@JivusAyrus) ## [0.53.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.53.0...controlplane@0.53.1) (2024-01-12) ### Bug Fixes -* delete organization ([#418](https://github.com/wundergraph/cosmo/issues/418)) ([916c35b](https://github.com/wundergraph/cosmo/commit/916c35b8f0b8721c237973242cd0863932759d95)) (@JivusAyrus) +- delete organization ([#418](https://github.com/wundergraph/cosmo/issues/418)) ([916c35b](https://github.com/wundergraph/cosmo/commit/916c35b8f0b8721c237973242cd0863932759d95)) (@JivusAyrus) # [0.53.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.52.4...controlplane@0.53.0) (2024-01-12) ### Features -* provide router config over cdn ([#411](https://github.com/wundergraph/cosmo/issues/411)) ([f04ac84](https://github.com/wundergraph/cosmo/commit/f04ac84d2f6c155409f7db69e7646c04047e32b5)) (@JivusAyrus) +- provide router config over cdn ([#411](https://github.com/wundergraph/cosmo/issues/411)) ([f04ac84](https://github.com/wundergraph/cosmo/commit/f04ac84d2f6c155409f7db69e7646c04047e32b5)) (@JivusAyrus) ## [0.52.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.52.3...controlplane@0.52.4) (2024-01-11) ### Bug Fixes -* update organization details ([#413](https://github.com/wundergraph/cosmo/issues/413)) ([2ce3a32](https://github.com/wundergraph/cosmo/commit/2ce3a323016add67740f8be01694780529a9197c)) (@JivusAyrus) +- update organization details ([#413](https://github.com/wundergraph/cosmo/issues/413)) ([2ce3a32](https://github.com/wundergraph/cosmo/commit/2ce3a323016add67740f8be01694780529a9197c)) (@JivusAyrus) ## [0.52.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.52.2...controlplane@0.52.3) (2024-01-09) @@ -2072,55 +2073,55 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* invite user ([#410](https://github.com/wundergraph/cosmo/issues/410)) ([56322b0](https://github.com/wundergraph/cosmo/commit/56322b0158b7b47367e21d1ae918cf1cac8b96d0)) (@JivusAyrus) +- invite user ([#410](https://github.com/wundergraph/cosmo/issues/410)) ([56322b0](https://github.com/wundergraph/cosmo/commit/56322b0158b7b47367e21d1ae918cf1cac8b96d0)) (@JivusAyrus) ## [0.52.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.52.0...controlplane@0.52.1) (2024-01-09) ### Bug Fixes -* discussion improvements ([#408](https://github.com/wundergraph/cosmo/issues/408)) ([dce1c48](https://github.com/wundergraph/cosmo/commit/dce1c480c6c8dac97ec6e5dd7491375d4c00b73f)) (@thisisnithin) +- discussion improvements ([#408](https://github.com/wundergraph/cosmo/issues/408)) ([dce1c48](https://github.com/wundergraph/cosmo/commit/dce1c480c6c8dac97ec6e5dd7491375d4c00b73f)) (@thisisnithin) # [0.52.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.51.0...controlplane@0.52.0) (2024-01-08) ### Features -* discussions ([#394](https://github.com/wundergraph/cosmo/issues/394)) ([3d81052](https://github.com/wundergraph/cosmo/commit/3d810521e552b3146a4a4b2cb5a13285aceb4476)) (@thisisnithin) +- discussions ([#394](https://github.com/wundergraph/cosmo/issues/394)) ([3d81052](https://github.com/wundergraph/cosmo/commit/3d810521e552b3146a4a4b2cb5a13285aceb4476)) (@thisisnithin) # [0.51.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.50.6...controlplane@0.51.0) (2024-01-06) ### Features -* track subgraphs in metrics ([#405](https://github.com/wundergraph/cosmo/issues/405)) ([7b9f307](https://github.com/wundergraph/cosmo/commit/7b9f3074ea718d49135c5f46943002e37bef48e2)) (@StarpTech) +- track subgraphs in metrics ([#405](https://github.com/wundergraph/cosmo/issues/405)) ([7b9f307](https://github.com/wundergraph/cosmo/commit/7b9f3074ea718d49135c5f46943002e37bef48e2)) (@StarpTech) ## [0.50.6](https://github.com/wundergraph/cosmo/compare/controlplane@0.50.5...controlplane@0.50.6) (2024-01-01) ### Bug Fixes -* conflict on orgID, use org slug as customer name ([877c84c](https://github.com/wundergraph/cosmo/commit/877c84ca69866af7f54139b8ae9cdabc609e5418)) (@StarpTech) +- conflict on orgID, use org slug as customer name ([877c84c](https://github.com/wundergraph/cosmo/commit/877c84ca69866af7f54139b8ae9cdabc609e5418)) (@StarpTech) ## [0.50.5](https://github.com/wundergraph/cosmo/compare/controlplane@0.50.4...controlplane@0.50.5) (2024-01-01) ### Bug Fixes -* reset plan after subscription del, bill for upgrade immediately ([b649383](https://github.com/wundergraph/cosmo/commit/b649383446bf8a6187a61d795d4237604f401c87)) (@StarpTech) +- reset plan after subscription del, bill for upgrade immediately ([b649383](https://github.com/wundergraph/cosmo/commit/b649383446bf8a6187a61d795d4237604f401c87)) (@StarpTech) ## [0.50.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.50.3...controlplane@0.50.4) (2024-01-01) ### Bug Fixes -* **payment:** handle customer deletion, cancel subs when org is deleted ([#401](https://github.com/wundergraph/cosmo/issues/401)) ([b58809d](https://github.com/wundergraph/cosmo/commit/b58809dca894a6aab879d1750bfd06a608da207f)) (@StarpTech) +- **payment:** handle customer deletion, cancel subs when org is deleted ([#401](https://github.com/wundergraph/cosmo/issues/401)) ([b58809d](https://github.com/wundergraph/cosmo/commit/b58809dca894a6aab879d1750bfd06a608da207f)) (@StarpTech) ## [0.50.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.50.2...controlplane@0.50.3) (2023-12-31) ### Bug Fixes -* scope plan update to organization ([684927e](https://github.com/wundergraph/cosmo/commit/684927ef26ec25450f3bfd022618c831350cd080)) (@StarpTech) +- scope plan update to organization ([684927e](https://github.com/wundergraph/cosmo/commit/684927ef26ec25450f3bfd022618c831350cd080)) (@StarpTech) ## [0.50.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.50.1...controlplane@0.50.2) (2023-12-31) ### Bug Fixes -* create keycloak groups when creating organization ([#400](https://github.com/wundergraph/cosmo/issues/400)) ([67be8a6](https://github.com/wundergraph/cosmo/commit/67be8a6a0b5df3a608367669dcb64c52ec1ec335)) (@StarpTech) +- create keycloak groups when creating organization ([#400](https://github.com/wundergraph/cosmo/issues/400)) ([67be8a6](https://github.com/wundergraph/cosmo/commit/67be8a6a0b5df3a608367669dcb64c52ec1ec335)) (@StarpTech) ## [0.50.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.50.0...controlplane@0.50.1) (2023-12-31) @@ -2130,25 +2131,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* avoid -1 in limits, ensure always limits ([#396](https://github.com/wundergraph/cosmo/issues/396)) ([fe7de2d](https://github.com/wundergraph/cosmo/commit/fe7de2d5d7b10d0b3ae8283b3d225b8df6cf1345)) (@StarpTech) -* make description optionally ([#395](https://github.com/wundergraph/cosmo/issues/395)) ([78c4bce](https://github.com/wundergraph/cosmo/commit/78c4bce26bd4439e8c37a91cb0d85d95e310612a)) (@StarpTech) +- avoid -1 in limits, ensure always limits ([#396](https://github.com/wundergraph/cosmo/issues/396)) ([fe7de2d](https://github.com/wundergraph/cosmo/commit/fe7de2d5d7b10d0b3ae8283b3d225b8df6cf1345)) (@StarpTech) +- make description optionally ([#395](https://github.com/wundergraph/cosmo/issues/395)) ([78c4bce](https://github.com/wundergraph/cosmo/commit/78c4bce26bd4439e8c37a91cb0d85d95e310612a)) (@StarpTech) ### Features -* remove deprecated columns ([#397](https://github.com/wundergraph/cosmo/issues/397)) ([35e456a](https://github.com/wundergraph/cosmo/commit/35e456a14ee0bfc57fc50c520787dc7f486e6b72)) (@Pagebakers) +- remove deprecated columns ([#397](https://github.com/wundergraph/cosmo/issues/397)) ([35e456a](https://github.com/wundergraph/cosmo/commit/35e456a14ee0bfc57fc50c520787dc7f486e6b72)) (@Pagebakers) # [0.49.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.48.0...controlplane@0.49.0) (2023-12-28) ### Features -* billing and limit refactoring ([#371](https://github.com/wundergraph/cosmo/issues/371)) ([0adfee1](https://github.com/wundergraph/cosmo/commit/0adfee146017a10c6e787a08723ef4d03ddf0f96)) (@Pagebakers) +- billing and limit refactoring ([#371](https://github.com/wundergraph/cosmo/issues/371)) ([0adfee1](https://github.com/wundergraph/cosmo/commit/0adfee146017a10c6e787a08723ef4d03ddf0f96)) (@Pagebakers) # [0.48.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.47.3...controlplane@0.48.0) (2023-12-22) ### Features -* add readme for subgraphs and federated graphs ([#384](https://github.com/wundergraph/cosmo/issues/384)) ([260ffac](https://github.com/wundergraph/cosmo/commit/260ffac99d5c81b82991d1261b937cf4fa344949)) (@JivusAyrus) -* enable password policy and brute force protection ([#390](https://github.com/wundergraph/cosmo/issues/390)) ([0ab7032](https://github.com/wundergraph/cosmo/commit/0ab7032ca424ddb9e35280ebd45280e52889b0cd)) (@StarpTech) +- add readme for subgraphs and federated graphs ([#384](https://github.com/wundergraph/cosmo/issues/384)) ([260ffac](https://github.com/wundergraph/cosmo/commit/260ffac99d5c81b82991d1261b937cf4fa344949)) (@JivusAyrus) +- enable password policy and brute force protection ([#390](https://github.com/wundergraph/cosmo/issues/390)) ([0ab7032](https://github.com/wundergraph/cosmo/commit/0ab7032ca424ddb9e35280ebd45280e52889b0cd)) (@StarpTech) ## [0.47.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.47.2...controlplane@0.47.3) (2023-12-21) @@ -2162,13 +2163,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* po demo, await po upload ([#377](https://github.com/wundergraph/cosmo/issues/377)) ([ac0edd3](https://github.com/wundergraph/cosmo/commit/ac0edd3a3b1b6ce1192c7a355675b85f6187e72f)) (@StarpTech) +- po demo, await po upload ([#377](https://github.com/wundergraph/cosmo/issues/377)) ([ac0edd3](https://github.com/wundergraph/cosmo/commit/ac0edd3a3b1b6ce1192c7a355675b85f6187e72f)) (@StarpTech) # [0.47.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.46.2...controlplane@0.47.0) (2023-12-15) ### Features -* add git commit sha to checks ([#361](https://github.com/wundergraph/cosmo/issues/361)) ([c9ef0c8](https://github.com/wundergraph/cosmo/commit/c9ef0c8439f89ffb80a4ed2f6c319a75414a07cf)) (@Pagebakers) +- add git commit sha to checks ([#361](https://github.com/wundergraph/cosmo/issues/361)) ([c9ef0c8](https://github.com/wundergraph/cosmo/commit/c9ef0c8439f89ffb80a4ed2f6c319a75414a07cf)) (@Pagebakers) ## [0.46.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.46.1...controlplane@0.46.2) (2023-12-14) @@ -2182,63 +2183,63 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* implement foundations for entity interfaces ([#359](https://github.com/wundergraph/cosmo/issues/359)) ([e2fcec7](https://github.com/wundergraph/cosmo/commit/e2fcec7aa3f286159a1ad21d606ead41cf1c883e)) (@Aenimus) +- implement foundations for entity interfaces ([#359](https://github.com/wundergraph/cosmo/issues/359)) ([e2fcec7](https://github.com/wundergraph/cosmo/commit/e2fcec7aa3f286159a1ad21d606ead41cf1c883e)) (@Aenimus) # [0.45.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.44.0...controlplane@0.45.0) (2023-12-12) ### Bug Fixes -* api key resource deletion on delete of target ([#355](https://github.com/wundergraph/cosmo/issues/355)) ([a8fa0e8](https://github.com/wundergraph/cosmo/commit/a8fa0e8a06b129cf0a1b7dd07b2ef94e168007e3)) (@JivusAyrus) +- api key resource deletion on delete of target ([#355](https://github.com/wundergraph/cosmo/issues/355)) ([a8fa0e8](https://github.com/wundergraph/cosmo/commit/a8fa0e8a06b129cf0a1b7dd07b2ef94e168007e3)) (@JivusAyrus) ### Features -* add rbac for subgraphs and federated graphs ([#351](https://github.com/wundergraph/cosmo/issues/351)) ([72e39bc](https://github.com/wundergraph/cosmo/commit/72e39bc1ff914831499c0625e443ab2ec0af135c)) (@JivusAyrus) +- add rbac for subgraphs and federated graphs ([#351](https://github.com/wundergraph/cosmo/issues/351)) ([72e39bc](https://github.com/wundergraph/cosmo/commit/72e39bc1ff914831499c0625e443ab2ec0af135c)) (@JivusAyrus) # [0.44.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.43.0...controlplane@0.44.0) (2023-12-09) ### Features -* extend graphqlmetrics chart ([#344](https://github.com/wundergraph/cosmo/issues/344)) ([bad337d](https://github.com/wundergraph/cosmo/commit/bad337d0f1fafab5772910b5cce97cab03992c38)) (@StarpTech) +- extend graphqlmetrics chart ([#344](https://github.com/wundergraph/cosmo/issues/344)) ([bad337d](https://github.com/wundergraph/cosmo/commit/bad337d0f1fafab5772910b5cce97cab03992c38)) (@StarpTech) # [0.43.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.42.0...controlplane@0.43.0) (2023-12-04) ### Bug Fixes -* filter out invalid filters ([#336](https://github.com/wundergraph/cosmo/issues/336)) ([777279e](https://github.com/wundergraph/cosmo/commit/777279eb252c8d7c754bedb2ac5e86bb94980b93)) (@Pagebakers) -* invitations ([#326](https://github.com/wundergraph/cosmo/issues/326)) ([8915cd8](https://github.com/wundergraph/cosmo/commit/8915cd80ab20285b768fa8af8b02e1572d452a40)) (@JivusAyrus) +- filter out invalid filters ([#336](https://github.com/wundergraph/cosmo/issues/336)) ([777279e](https://github.com/wundergraph/cosmo/commit/777279eb252c8d7c754bedb2ac5e86bb94980b93)) (@Pagebakers) +- invitations ([#326](https://github.com/wundergraph/cosmo/issues/326)) ([8915cd8](https://github.com/wundergraph/cosmo/commit/8915cd80ab20285b768fa8af8b02e1572d452a40)) (@JivusAyrus) ### Features -* add compositions page ([#325](https://github.com/wundergraph/cosmo/issues/325)) ([fb7a018](https://github.com/wundergraph/cosmo/commit/fb7a0180579872c486bd59b6b3adc9c19f8f302d)) (@JivusAyrus) +- add compositions page ([#325](https://github.com/wundergraph/cosmo/issues/325)) ([fb7a018](https://github.com/wundergraph/cosmo/commit/fb7a0180579872c486bd59b6b3adc9c19f8f302d)) (@JivusAyrus) # [0.42.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.41.2...controlplane@0.42.0) (2023-12-01) ### Bug Fixes -* minor bug fixes in ui ([#328](https://github.com/wundergraph/cosmo/issues/328)) ([6e77713](https://github.com/wundergraph/cosmo/commit/6e77713e93e413eb84af3e146dce1a1ec4511cff)) (@Pagebakers) +- minor bug fixes in ui ([#328](https://github.com/wundergraph/cosmo/issues/328)) ([6e77713](https://github.com/wundergraph/cosmo/commit/6e77713e93e413eb84af3e146dce1a1ec4511cff)) (@Pagebakers) ### Features -* persist ops from playground and view all client ops ([#323](https://github.com/wundergraph/cosmo/issues/323)) ([042d7db](https://github.com/wundergraph/cosmo/commit/042d7db00dbf2945a6be2b30e31d7851befc407b)) (@thisisnithin) -* restructure navigation ([#280](https://github.com/wundergraph/cosmo/issues/280)) ([df23357](https://github.com/wundergraph/cosmo/commit/df23357ceae0d7b37daf489a020f65777778e38b)) (@Pagebakers) +- persist ops from playground and view all client ops ([#323](https://github.com/wundergraph/cosmo/issues/323)) ([042d7db](https://github.com/wundergraph/cosmo/commit/042d7db00dbf2945a6be2b30e31d7851befc407b)) (@thisisnithin) +- restructure navigation ([#280](https://github.com/wundergraph/cosmo/issues/280)) ([df23357](https://github.com/wundergraph/cosmo/commit/df23357ceae0d7b37daf489a020f65777778e38b)) (@Pagebakers) ## [0.41.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.41.1...controlplane@0.41.2) (2023-11-30) ### Bug Fixes -* image releases ([230fcef](https://github.com/wundergraph/cosmo/commit/230fcef52db8c36dd54ee8b5568eb627811d4fb1)) (@StarpTech) +- image releases ([230fcef](https://github.com/wundergraph/cosmo/commit/230fcef52db8c36dd54ee8b5568eb627811d4fb1)) (@StarpTech) ## [0.41.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.41.0...controlplane@0.41.1) (2023-11-30) ### Bug Fixes -* remove jwt payload from request token ([6dcda3c](https://github.com/wundergraph/cosmo/commit/6dcda3ca174a7c002ce2a0ab0ef3a1db18304d69)) (@StarpTech) +- remove jwt payload from request token ([6dcda3c](https://github.com/wundergraph/cosmo/commit/6dcda3ca174a7c002ce2a0ab0ef3a1db18304d69)) (@StarpTech) # [0.41.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.40.1...controlplane@0.41.0) (2023-11-30) ### Features -* register router on the controlplane ([#318](https://github.com/wundergraph/cosmo/issues/318)) ([10f86df](https://github.com/wundergraph/cosmo/commit/10f86dfebd80265d42015eaf3b9c15f941aef66b)) (@StarpTech) +- register router on the controlplane ([#318](https://github.com/wundergraph/cosmo/issues/318)) ([10f86df](https://github.com/wundergraph/cosmo/commit/10f86dfebd80265d42015eaf3b9c15f941aef66b)) (@StarpTech) ## [0.40.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.40.0...controlplane@0.40.1) (2023-11-29) @@ -2248,21 +2249,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* add migrations ([4592682](https://github.com/wundergraph/cosmo/commit/4592682f50160020e2600f4131f45d05b8c36fe9)) (@JivusAyrus) -* change path of invitations ([bf4f289](https://github.com/wundergraph/cosmo/commit/bf4f2899d415a1920cfdc47899475efbfb7f08fa)) (@JivusAyrus) -* ci ([eb1a3b6](https://github.com/wundergraph/cosmo/commit/eb1a3b66bf5b07b2eab6e446a4b0bf8e5ed518d0)) (@JivusAyrus) -* ci ([6486867](https://github.com/wundergraph/cosmo/commit/6486867cbbdd48a5c512204309188c6b836c9ca6)) (@JivusAyrus) -* invite flow rework ([c27f150](https://github.com/wundergraph/cosmo/commit/c27f15049fedff923b4bcb0f9e2effed874be408)) (@JivusAyrus) -* make mailer optional ([a14adb5](https://github.com/wundergraph/cosmo/commit/a14adb5ac8cac9b5e7e9426c32b6ca9dc0ad5c5e)) (@JivusAyrus) -* pr suggestions ([1397969](https://github.com/wundergraph/cosmo/commit/1397969ea6b17b2830f5c8fa45cc70f2bc45f68b)) (@JivusAyrus) -* pr suggestions ([67a76a0](https://github.com/wundergraph/cosmo/commit/67a76a034b67dce5caf25d96bca8ca0942a60c9e)) (@JivusAyrus) -* pr suggestions ([c719b5e](https://github.com/wundergraph/cosmo/commit/c719b5e9394c2899e53244592feabd6b3ca1d227)) (@JivusAyrus) -* remove migrations ([11283c5](https://github.com/wundergraph/cosmo/commit/11283c54e45b063efd95e83cba66f76373b98d91)) (@JivusAyrus) +- add migrations ([4592682](https://github.com/wundergraph/cosmo/commit/4592682f50160020e2600f4131f45d05b8c36fe9)) (@JivusAyrus) +- change path of invitations ([bf4f289](https://github.com/wundergraph/cosmo/commit/bf4f2899d415a1920cfdc47899475efbfb7f08fa)) (@JivusAyrus) +- ci ([eb1a3b6](https://github.com/wundergraph/cosmo/commit/eb1a3b66bf5b07b2eab6e446a4b0bf8e5ed518d0)) (@JivusAyrus) +- ci ([6486867](https://github.com/wundergraph/cosmo/commit/6486867cbbdd48a5c512204309188c6b836c9ca6)) (@JivusAyrus) +- invite flow rework ([c27f150](https://github.com/wundergraph/cosmo/commit/c27f15049fedff923b4bcb0f9e2effed874be408)) (@JivusAyrus) +- make mailer optional ([a14adb5](https://github.com/wundergraph/cosmo/commit/a14adb5ac8cac9b5e7e9426c32b6ca9dc0ad5c5e)) (@JivusAyrus) +- pr suggestions ([1397969](https://github.com/wundergraph/cosmo/commit/1397969ea6b17b2830f5c8fa45cc70f2bc45f68b)) (@JivusAyrus) +- pr suggestions ([67a76a0](https://github.com/wundergraph/cosmo/commit/67a76a034b67dce5caf25d96bca8ca0942a60c9e)) (@JivusAyrus) +- pr suggestions ([c719b5e](https://github.com/wundergraph/cosmo/commit/c719b5e9394c2899e53244592feabd6b3ca1d227)) (@JivusAyrus) +- remove migrations ([11283c5](https://github.com/wundergraph/cosmo/commit/11283c54e45b063efd95e83cba66f76373b98d91)) (@JivusAyrus) ### Features -* accept custom operation IDs for persisted operations ([#302](https://github.com/wundergraph/cosmo/issues/302)) ([a535a62](https://github.com/wundergraph/cosmo/commit/a535a62bb7f70d2e58d1a04066fb74e78d932653)) (@fiam) -* add new invitations table ([5d96c18](https://github.com/wundergraph/cosmo/commit/5d96c1807700d75fdf9c2a91dcf082170c5bc522)) (@JivusAyrus) +- accept custom operation IDs for persisted operations ([#302](https://github.com/wundergraph/cosmo/issues/302)) ([a535a62](https://github.com/wundergraph/cosmo/commit/a535a62bb7f70d2e58d1a04066fb74e78d932653)) (@fiam) +- add new invitations table ([5d96c18](https://github.com/wundergraph/cosmo/commit/5d96c1807700d75fdf9c2a91dcf082170c5bc522)) (@JivusAyrus) ## [0.39.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.39.1...controlplane@0.39.2) (2023-11-28) @@ -2272,115 +2273,115 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* store JSONB as json, avoid custom log in automaxprocs ([#301](https://github.com/wundergraph/cosmo/issues/301)) ([c6a1486](https://github.com/wundergraph/cosmo/commit/c6a1486a69c383f247e0d3eb3723d883633b8780)) (@StarpTech) +- store JSONB as json, avoid custom log in automaxprocs ([#301](https://github.com/wundergraph/cosmo/issues/301)) ([c6a1486](https://github.com/wundergraph/cosmo/commit/c6a1486a69c383f247e0d3eb3723d883633b8780)) (@StarpTech) # [0.39.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.37.2...controlplane@0.39.0) (2023-11-23) ### Features -* add organization limits ([#285](https://github.com/wundergraph/cosmo/issues/285)) ([52a5664](https://github.com/wundergraph/cosmo/commit/52a566400dfa111a78a4bbdcf0a824dd2205da2d)) (@JivusAyrus) -* add support for persisted operations ([#249](https://github.com/wundergraph/cosmo/issues/249)) ([a9ad47f](https://github.com/wundergraph/cosmo/commit/a9ad47ff5cf7db6bccf774e168b1d1ce3ee7bcdd)) (@fiam) +- add organization limits ([#285](https://github.com/wundergraph/cosmo/issues/285)) ([52a5664](https://github.com/wundergraph/cosmo/commit/52a566400dfa111a78a4bbdcf0a824dd2205da2d)) (@JivusAyrus) +- add support for persisted operations ([#249](https://github.com/wundergraph/cosmo/issues/249)) ([a9ad47f](https://github.com/wundergraph/cosmo/commit/a9ad47ff5cf7db6bccf774e168b1d1ce3ee7bcdd)) (@fiam) # [0.38.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.37.2...controlplane@0.38.0) (2023-11-23) ### Features -* add organization limits ([#285](https://github.com/wundergraph/cosmo/issues/285)) ([52a5664](https://github.com/wundergraph/cosmo/commit/52a566400dfa111a78a4bbdcf0a824dd2205da2d)) (@JivusAyrus) -* add support for persisted operations ([#249](https://github.com/wundergraph/cosmo/issues/249)) ([a9ad47f](https://github.com/wundergraph/cosmo/commit/a9ad47ff5cf7db6bccf774e168b1d1ce3ee7bcdd)) (@fiam) +- add organization limits ([#285](https://github.com/wundergraph/cosmo/issues/285)) ([52a5664](https://github.com/wundergraph/cosmo/commit/52a566400dfa111a78a4bbdcf0a824dd2205da2d)) (@JivusAyrus) +- add support for persisted operations ([#249](https://github.com/wundergraph/cosmo/issues/249)) ([a9ad47f](https://github.com/wundergraph/cosmo/commit/a9ad47ff5cf7db6bccf774e168b1d1ce3ee7bcdd)) (@fiam) ## [0.37.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.37.1...controlplane@0.37.2) (2023-11-20) ### Bug Fixes -* move to bitnami charts and exit 1 on migration issues ([#275](https://github.com/wundergraph/cosmo/issues/275)) ([90d9d93](https://github.com/wundergraph/cosmo/commit/90d9d938cefdc78a9f34d69387f306b4d691c7f0)) (@StarpTech) -* remove unnecessary fields and add populate the createdBy for compositions ([#272](https://github.com/wundergraph/cosmo/issues/272)) ([82b716c](https://github.com/wundergraph/cosmo/commit/82b716cb629e4c84e5cf45461951594abab9df6b)) (@JivusAyrus) +- move to bitnami charts and exit 1 on migration issues ([#275](https://github.com/wundergraph/cosmo/issues/275)) ([90d9d93](https://github.com/wundergraph/cosmo/commit/90d9d938cefdc78a9f34d69387f306b4d691c7f0)) (@StarpTech) +- remove unnecessary fields and add populate the createdBy for compositions ([#272](https://github.com/wundergraph/cosmo/issues/272)) ([82b716c](https://github.com/wundergraph/cosmo/commit/82b716cb629e4c84e5cf45461951594abab9df6b)) (@JivusAyrus) ## [0.37.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.37.0...controlplane@0.37.1) (2023-11-17) ### Bug Fixes -* show latest valid subgraph schema ([#259](https://github.com/wundergraph/cosmo/issues/259)) ([d954b91](https://github.com/wundergraph/cosmo/commit/d954b91bd212ae1a33257c662a4ff8a2ac8c2b56)) (@JivusAyrus) +- show latest valid subgraph schema ([#259](https://github.com/wundergraph/cosmo/issues/259)) ([d954b91](https://github.com/wundergraph/cosmo/commit/d954b91bd212ae1a33257c662a4ff8a2ac8c2b56)) (@JivusAyrus) # [0.37.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.36.0...controlplane@0.37.0) (2023-11-15) ### Features -* consider input and argument usage for breaking change detection ([#255](https://github.com/wundergraph/cosmo/issues/255)) ([e10ac40](https://github.com/wundergraph/cosmo/commit/e10ac401f543f5540b5ada8f80533ddfbd0bc728)) (@jensneuse) +- consider input and argument usage for breaking change detection ([#255](https://github.com/wundergraph/cosmo/issues/255)) ([e10ac40](https://github.com/wundergraph/cosmo/commit/e10ac401f543f5540b5ada8f80533ddfbd0bc728)) (@jensneuse) # [0.36.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.35.0...controlplane@0.36.0) (2023-11-15) ### Bug Fixes -* remove 10 day limit for free trial ([#260](https://github.com/wundergraph/cosmo/issues/260)) ([9e59f58](https://github.com/wundergraph/cosmo/commit/9e59f583cd7195a74012795e3e2401ae9cae4bfb)) (@JivusAyrus) +- remove 10 day limit for free trial ([#260](https://github.com/wundergraph/cosmo/issues/260)) ([9e59f58](https://github.com/wundergraph/cosmo/commit/9e59f583cd7195a74012795e3e2401ae9cae4bfb)) (@JivusAyrus) ### Features -* add check for deleted subgraphs ([#258](https://github.com/wundergraph/cosmo/issues/258)) ([ba87fe5](https://github.com/wundergraph/cosmo/commit/ba87fe51631ece9c2efaea6350dc93590f1846c5)) (@Pagebakers) +- add check for deleted subgraphs ([#258](https://github.com/wundergraph/cosmo/issues/258)) ([ba87fe5](https://github.com/wundergraph/cosmo/commit/ba87fe51631ece9c2efaea6350dc93590f1846c5)) (@Pagebakers) # [0.35.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.34.0...controlplane@0.35.0) (2023-11-10) ### Features -* implement [@override](https://github.com/override) ([#246](https://github.com/wundergraph/cosmo/issues/246)) ([b6d0448](https://github.com/wundergraph/cosmo/commit/b6d044861e918f7c82931e1d5374fc7f6fc01daa)) (@Aenimus) +- implement [@override](https://github.com/override) ([#246](https://github.com/wundergraph/cosmo/issues/246)) ([b6d0448](https://github.com/wundergraph/cosmo/commit/b6d044861e918f7c82931e1d5374fc7f6fc01daa)) (@Aenimus) # [0.34.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.33.0...controlplane@0.34.0) (2023-11-09) ### Features -* unify and redesign login screen ([#250](https://github.com/wundergraph/cosmo/issues/250)) ([aa02c4a](https://github.com/wundergraph/cosmo/commit/aa02c4a5eb2b85cea811b896494ed5d1f2762416)) (@Pagebakers) +- unify and redesign login screen ([#250](https://github.com/wundergraph/cosmo/issues/250)) ([aa02c4a](https://github.com/wundergraph/cosmo/commit/aa02c4a5eb2b85cea811b896494ed5d1f2762416)) (@Pagebakers) # [0.33.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.32.0...controlplane@0.33.0) (2023-11-09) ### Bug Fixes -* invalid org slug ([#248](https://github.com/wundergraph/cosmo/issues/248)) ([c6c01a0](https://github.com/wundergraph/cosmo/commit/c6c01a0aa4c81ae54117aef273438fe99e21dcba)) (@thisisnithin) -* minor issues of sso ([#247](https://github.com/wundergraph/cosmo/issues/247)) ([8bf61a9](https://github.com/wundergraph/cosmo/commit/8bf61a90751cf3b4aed3783cf07bab2560acac10)) (@JivusAyrus) +- invalid org slug ([#248](https://github.com/wundergraph/cosmo/issues/248)) ([c6c01a0](https://github.com/wundergraph/cosmo/commit/c6c01a0aa4c81ae54117aef273438fe99e21dcba)) (@thisisnithin) +- minor issues of sso ([#247](https://github.com/wundergraph/cosmo/issues/247)) ([8bf61a9](https://github.com/wundergraph/cosmo/commit/8bf61a90751cf3b4aed3783cf07bab2560acac10)) (@JivusAyrus) ### Features -* link operations through hash ([#244](https://github.com/wundergraph/cosmo/issues/244)) ([24a7738](https://github.com/wundergraph/cosmo/commit/24a773884947c58183ee56bb9be82e2fae1c0bff)) (@thisisnithin) +- link operations through hash ([#244](https://github.com/wundergraph/cosmo/issues/244)) ([24a7738](https://github.com/wundergraph/cosmo/commit/24a773884947c58183ee56bb9be82e2fae1c0bff)) (@thisisnithin) # [0.32.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.31.1...controlplane@0.32.0) (2023-11-08) ### Features -* implement sso & basic RBAC in Cosmo ([#220](https://github.com/wundergraph/cosmo/issues/220)) ([55af35b](https://github.com/wundergraph/cosmo/commit/55af35b14068441d1df219599874a575dedb9dc2)) (@JivusAyrus) +- implement sso & basic RBAC in Cosmo ([#220](https://github.com/wundergraph/cosmo/issues/220)) ([55af35b](https://github.com/wundergraph/cosmo/commit/55af35b14068441d1df219599874a575dedb9dc2)) (@JivusAyrus) ## [0.31.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.31.0...controlplane@0.31.1) (2023-11-07) ### Bug Fixes -* optimize analytics filter queries ([#242](https://github.com/wundergraph/cosmo/issues/242)) ([23bc1f4](https://github.com/wundergraph/cosmo/commit/23bc1f4cdafcb0d0559a06e827992186d9d4f4c0)) (@Pagebakers) +- optimize analytics filter queries ([#242](https://github.com/wundergraph/cosmo/issues/242)) ([23bc1f4](https://github.com/wundergraph/cosmo/commit/23bc1f4cdafcb0d0559a06e827992186d9d4f4c0)) (@Pagebakers) # [0.31.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.30.0...controlplane@0.31.0) (2023-11-06) ### Features -* **controlplane:** avoid downloading config for latest check ([#236](https://github.com/wundergraph/cosmo/issues/236)) ([1929554](https://github.com/wundergraph/cosmo/commit/1929554e158548972cddacd3a59bca81133434a1)) (@StarpTech) -* upgrade to stable connect & react-query 5 ([#231](https://github.com/wundergraph/cosmo/issues/231)) ([0c434eb](https://github.com/wundergraph/cosmo/commit/0c434eb41b357f596d19607cd2c8572f6a9899a1)) (@StarpTech) +- **controlplane:** avoid downloading config for latest check ([#236](https://github.com/wundergraph/cosmo/issues/236)) ([1929554](https://github.com/wundergraph/cosmo/commit/1929554e158548972cddacd3a59bca81133434a1)) (@StarpTech) +- upgrade to stable connect & react-query 5 ([#231](https://github.com/wundergraph/cosmo/issues/231)) ([0c434eb](https://github.com/wundergraph/cosmo/commit/0c434eb41b357f596d19607cd2c8572f6a9899a1)) (@StarpTech) # [0.30.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.29.0...controlplane@0.30.0) (2023-11-03) ### Features -* use ch query cache for point query ([#228](https://github.com/wundergraph/cosmo/issues/228)) ([03a34e4](https://github.com/wundergraph/cosmo/commit/03a34e482cbbd24570be8dbc574e186d1680f62c)) (@StarpTech) +- use ch query cache for point query ([#228](https://github.com/wundergraph/cosmo/issues/228)) ([03a34e4](https://github.com/wundergraph/cosmo/commit/03a34e482cbbd24570be8dbc574e186d1680f62c)) (@StarpTech) # [0.29.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.28.2...controlplane@0.29.0) (2023-11-03) ### Bug Fixes -* date picker improvements ([#226](https://github.com/wundergraph/cosmo/issues/226)) ([9b784cf](https://github.com/wundergraph/cosmo/commit/9b784cf2180fb59f152ab9d8296e7026e1461c9c)) (@Pagebakers) +- date picker improvements ([#226](https://github.com/wundergraph/cosmo/issues/226)) ([9b784cf](https://github.com/wundergraph/cosmo/commit/9b784cf2180fb59f152ab9d8296e7026e1461c9c)) (@Pagebakers) ### Features -* add ranges to date picker ([#210](https://github.com/wundergraph/cosmo/issues/210)) ([3dac117](https://github.com/wundergraph/cosmo/commit/3dac1179b6e78f2bf2ee5f40c735463e96ef980d)) (@Pagebakers) -* operation checks (breaking change detection) ([#214](https://github.com/wundergraph/cosmo/issues/214)) ([0935413](https://github.com/wundergraph/cosmo/commit/093541305866327c5c44637603621e4a8053640d)) (@StarpTech) +- add ranges to date picker ([#210](https://github.com/wundergraph/cosmo/issues/210)) ([3dac117](https://github.com/wundergraph/cosmo/commit/3dac1179b6e78f2bf2ee5f40c735463e96ef980d)) (@Pagebakers) +- operation checks (breaking change detection) ([#214](https://github.com/wundergraph/cosmo/issues/214)) ([0935413](https://github.com/wundergraph/cosmo/commit/093541305866327c5c44637603621e4a8053640d)) (@StarpTech) ## [0.28.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.28.1...controlplane@0.28.2) (2023-11-02) ### Bug Fixes -* don't consider dangerous change as breaking ([#222](https://github.com/wundergraph/cosmo/issues/222)) ([6d4bdc0](https://github.com/wundergraph/cosmo/commit/6d4bdc0261484426408db81f6ad11842563e8054)) (@StarpTech) +- don't consider dangerous change as breaking ([#222](https://github.com/wundergraph/cosmo/issues/222)) ([6d4bdc0](https://github.com/wundergraph/cosmo/commit/6d4bdc0261484426408db81f6ad11842563e8054)) (@StarpTech) ## [0.28.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.28.0...controlplane@0.28.1) (2023-10-26) @@ -2390,172 +2391,172 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* schema field level usage analytics ([#174](https://github.com/wundergraph/cosmo/issues/174)) ([4f257a7](https://github.com/wundergraph/cosmo/commit/4f257a71984e991be2304b09a083c69da65200d2)) (@StarpTech) +- schema field level usage analytics ([#174](https://github.com/wundergraph/cosmo/issues/174)) ([4f257a7](https://github.com/wundergraph/cosmo/commit/4f257a71984e991be2304b09a083c69da65200d2)) (@StarpTech) ## [0.27.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.27.0...controlplane@0.27.1) (2023-10-25) ### Bug Fixes -* follow GraphQL over HTTP in error handling ([#199](https://github.com/wundergraph/cosmo/issues/199)) ([8006267](https://github.com/wundergraph/cosmo/commit/800626773929923299ed88af44c50b187287cd25)) (@StarpTech) +- follow GraphQL over HTTP in error handling ([#199](https://github.com/wundergraph/cosmo/issues/199)) ([8006267](https://github.com/wundergraph/cosmo/commit/800626773929923299ed88af44c50b187287cd25)) (@StarpTech) # [0.27.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.26.0...controlplane@0.27.0) (2023-10-23) ### Features -* allow to upsert a subgraph on publish ([#196](https://github.com/wundergraph/cosmo/issues/196)) ([27a1630](https://github.com/wundergraph/cosmo/commit/27a1630574e817412a6d5fb2b304da645a31d481)) (@StarpTech) +- allow to upsert a subgraph on publish ([#196](https://github.com/wundergraph/cosmo/issues/196)) ([27a1630](https://github.com/wundergraph/cosmo/commit/27a1630574e817412a6d5fb2b304da645a31d481)) (@StarpTech) # [0.26.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.25.0...controlplane@0.26.0) (2023-10-20) ### Bug Fixes -* **controlplane:** check array length ([#193](https://github.com/wundergraph/cosmo/issues/193)) ([51fd191](https://github.com/wundergraph/cosmo/commit/51fd19140c5a037baab7ca32b1d0877485c0848c)) (@StarpTech) -* redirect the user to the correct page after login ([#192](https://github.com/wundergraph/cosmo/issues/192)) ([c5e28ed](https://github.com/wundergraph/cosmo/commit/c5e28edc0495c45497a5dd1373bf9f7784cf84a1)) (@JivusAyrus) +- **controlplane:** check array length ([#193](https://github.com/wundergraph/cosmo/issues/193)) ([51fd191](https://github.com/wundergraph/cosmo/commit/51fd19140c5a037baab7ca32b1d0877485c0848c)) (@StarpTech) +- redirect the user to the correct page after login ([#192](https://github.com/wundergraph/cosmo/issues/192)) ([c5e28ed](https://github.com/wundergraph/cosmo/commit/c5e28edc0495c45497a5dd1373bf9f7784cf84a1)) (@JivusAyrus) ### Features -* add client name client version filter for analytics and ([#181](https://github.com/wundergraph/cosmo/issues/181)) ([6180f4d](https://github.com/wundergraph/cosmo/commit/6180f4d621c383e72883c3cfa10ac1119da91761)) (@Pagebakers) -* add support for subscriptions ([#185](https://github.com/wundergraph/cosmo/issues/185)) ([5a78aa0](https://github.com/wundergraph/cosmo/commit/5a78aa01f60ac4184ac69b0bd72aa1ce467bff93)) (@fiam) -* auto ignore schema errors for check command if github is integrated ([#184](https://github.com/wundergraph/cosmo/issues/184)) ([05d1b4a](https://github.com/wundergraph/cosmo/commit/05d1b4a4fcb836013c8db49796c174eba0c96744)) (@thisisnithin) +- add client name client version filter for analytics and ([#181](https://github.com/wundergraph/cosmo/issues/181)) ([6180f4d](https://github.com/wundergraph/cosmo/commit/6180f4d621c383e72883c3cfa10ac1119da91761)) (@Pagebakers) +- add support for subscriptions ([#185](https://github.com/wundergraph/cosmo/issues/185)) ([5a78aa0](https://github.com/wundergraph/cosmo/commit/5a78aa01f60ac4184ac69b0bd72aa1ce467bff93)) (@fiam) +- auto ignore schema errors for check command if github is integrated ([#184](https://github.com/wundergraph/cosmo/issues/184)) ([05d1b4a](https://github.com/wundergraph/cosmo/commit/05d1b4a4fcb836013c8db49796c174eba0c96744)) (@thisisnithin) # [0.25.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.24.2...controlplane@0.25.0) (2023-10-13) ### Features -* implement slack notifications ([#175](https://github.com/wundergraph/cosmo/issues/175)) ([87c30ec](https://github.com/wundergraph/cosmo/commit/87c30ec86fcd7090b33cbf274bd126534992857f)) (@JivusAyrus) +- implement slack notifications ([#175](https://github.com/wundergraph/cosmo/issues/175)) ([87c30ec](https://github.com/wundergraph/cosmo/commit/87c30ec86fcd7090b33cbf274bd126534992857f)) (@JivusAyrus) ## [0.24.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.24.1...controlplane@0.24.2) (2023-10-11) ### Bug Fixes -* migration and add logs on error ([#171](https://github.com/wundergraph/cosmo/issues/171)) ([ea14203](https://github.com/wundergraph/cosmo/commit/ea14203f392d90d98c1d2f61374de9093842b5cb)) (@JivusAyrus) +- migration and add logs on error ([#171](https://github.com/wundergraph/cosmo/issues/171)) ([ea14203](https://github.com/wundergraph/cosmo/commit/ea14203f392d90d98c1d2f61374de9093842b5cb)) (@JivusAyrus) ## [0.24.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.24.0...controlplane@0.24.1) (2023-10-09) ### Bug Fixes -* update schema and config on subgraph update ([#173](https://github.com/wundergraph/cosmo/issues/173)) ([1e69e52](https://github.com/wundergraph/cosmo/commit/1e69e52e5657c71c7e23118aa570067d372bf5b7)) (@thisisnithin) +- update schema and config on subgraph update ([#173](https://github.com/wundergraph/cosmo/issues/173)) ([1e69e52](https://github.com/wundergraph/cosmo/commit/1e69e52e5657c71c7e23118aa570067d372bf5b7)) (@thisisnithin) # [0.24.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.23.0...controlplane@0.24.0) (2023-10-09) ### Bug Fixes -* ui improvements ([#170](https://github.com/wundergraph/cosmo/issues/170)) ([fffd3e2](https://github.com/wundergraph/cosmo/commit/fffd3e2b7d9a82e7b809214a7ce836cce83f54b9)) (@thisisnithin) +- ui improvements ([#170](https://github.com/wundergraph/cosmo/issues/170)) ([fffd3e2](https://github.com/wundergraph/cosmo/commit/fffd3e2b7d9a82e7b809214a7ce836cce83f54b9)) (@thisisnithin) ### Features -* use metric data for dashboard stats ([#169](https://github.com/wundergraph/cosmo/issues/169)) ([e25fe32](https://github.com/wundergraph/cosmo/commit/e25fe32cdc053d658b0b0cdcd819b039be3341e6)) (@StarpTech) +- use metric data for dashboard stats ([#169](https://github.com/wundergraph/cosmo/issues/169)) ([e25fe32](https://github.com/wundergraph/cosmo/commit/e25fe32cdc053d658b0b0cdcd819b039be3341e6)) (@StarpTech) # [0.23.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.22.0...controlplane@0.23.0) (2023-10-06) ### Bug Fixes -* log platform webhook failure as error ([#159](https://github.com/wundergraph/cosmo/issues/159)) ([d8422a4](https://github.com/wundergraph/cosmo/commit/d8422a42cd1aebe53cf0c446dcd63a35e56d3f88)) (@thisisnithin) +- log platform webhook failure as error ([#159](https://github.com/wundergraph/cosmo/issues/159)) ([d8422a4](https://github.com/wundergraph/cosmo/commit/d8422a42cd1aebe53cf0c446dcd63a35e56d3f88)) (@thisisnithin) ### Features -* display router initiation command ([#158](https://github.com/wundergraph/cosmo/issues/158)) ([284200b](https://github.com/wundergraph/cosmo/commit/284200b5ebae35a348fef1a650d268800f3887ac)) (@JivusAyrus) -* use clickhouse as metric storage ([#137](https://github.com/wundergraph/cosmo/issues/137)) ([c5e9bf4](https://github.com/wundergraph/cosmo/commit/c5e9bf4b74d32f3cae7da27b6170300c1a462e52)) (@StarpTech) -* version metric meter ([#160](https://github.com/wundergraph/cosmo/issues/160)) ([1cdb5d5](https://github.com/wundergraph/cosmo/commit/1cdb5d5f62a9e49d2950b37144e547a153285038)) (@StarpTech) +- display router initiation command ([#158](https://github.com/wundergraph/cosmo/issues/158)) ([284200b](https://github.com/wundergraph/cosmo/commit/284200b5ebae35a348fef1a650d268800f3887ac)) (@JivusAyrus) +- use clickhouse as metric storage ([#137](https://github.com/wundergraph/cosmo/issues/137)) ([c5e9bf4](https://github.com/wundergraph/cosmo/commit/c5e9bf4b74d32f3cae7da27b6170300c1a462e52)) (@StarpTech) +- version metric meter ([#160](https://github.com/wundergraph/cosmo/issues/160)) ([1cdb5d5](https://github.com/wundergraph/cosmo/commit/1cdb5d5f62a9e49d2950b37144e547a153285038)) (@StarpTech) # [0.22.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.21.0...controlplane@0.22.0) (2023-10-05) ### Features -* configurable webhook events ([#149](https://github.com/wundergraph/cosmo/issues/149)) ([54836cc](https://github.com/wundergraph/cosmo/commit/54836cc5cb5a4fb46817ec04e82bfafaa134d59c)) (@thisisnithin) -* implement list and delete router tokens ([#146](https://github.com/wundergraph/cosmo/issues/146)) ([72543f7](https://github.com/wundergraph/cosmo/commit/72543f796c66d155782cd90bc4828803fbb971c7)) (@JivusAyrus) +- configurable webhook events ([#149](https://github.com/wundergraph/cosmo/issues/149)) ([54836cc](https://github.com/wundergraph/cosmo/commit/54836cc5cb5a4fb46817ec04e82bfafaa134d59c)) (@thisisnithin) +- implement list and delete router tokens ([#146](https://github.com/wundergraph/cosmo/issues/146)) ([72543f7](https://github.com/wundergraph/cosmo/commit/72543f796c66d155782cd90bc4828803fbb971c7)) (@JivusAyrus) # [0.21.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.20.0...controlplane@0.21.0) (2023-10-04) ### Bug Fixes -* flickering issue on change of orgs ([#147](https://github.com/wundergraph/cosmo/issues/147)) ([eadbb77](https://github.com/wundergraph/cosmo/commit/eadbb775e63cd10488c21079fed14e59771249c7)) (@JivusAyrus) +- flickering issue on change of orgs ([#147](https://github.com/wundergraph/cosmo/issues/147)) ([eadbb77](https://github.com/wundergraph/cosmo/commit/eadbb775e63cd10488c21079fed14e59771249c7)) (@JivusAyrus) ### Features -* github app integration ([#140](https://github.com/wundergraph/cosmo/issues/140)) ([783a1f9](https://github.com/wundergraph/cosmo/commit/783a1f9c3f42284d1bf6cfa0d8fd46971724500a)) (@thisisnithin) -* handle multiple orgs in the cli ([#145](https://github.com/wundergraph/cosmo/issues/145)) ([77234c9](https://github.com/wundergraph/cosmo/commit/77234c979e117473bf8429c0cd0e4d4c888eb81d)) (@JivusAyrus) +- github app integration ([#140](https://github.com/wundergraph/cosmo/issues/140)) ([783a1f9](https://github.com/wundergraph/cosmo/commit/783a1f9c3f42284d1bf6cfa0d8fd46971724500a)) (@thisisnithin) +- handle multiple orgs in the cli ([#145](https://github.com/wundergraph/cosmo/issues/145)) ([77234c9](https://github.com/wundergraph/cosmo/commit/77234c979e117473bf8429c0cd0e4d4c888eb81d)) (@JivusAyrus) # [0.20.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.19.1...controlplane@0.20.0) (2023-09-29) ### Features -* implement leave and delete organization ([#112](https://github.com/wundergraph/cosmo/issues/112)) ([59bc44f](https://github.com/wundergraph/cosmo/commit/59bc44f53cbc72d492cf0e07e75d7e62e7c68b61)) (@JivusAyrus) -* improve trail version banner and handle trial version expiry ([#138](https://github.com/wundergraph/cosmo/issues/138)) ([0ecb2d1](https://github.com/wundergraph/cosmo/commit/0ecb2d150d9f9906631168aa0f588d2ca64ab590)) (@JivusAyrus) +- implement leave and delete organization ([#112](https://github.com/wundergraph/cosmo/issues/112)) ([59bc44f](https://github.com/wundergraph/cosmo/commit/59bc44f53cbc72d492cf0e07e75d7e62e7c68b61)) (@JivusAyrus) +- improve trail version banner and handle trial version expiry ([#138](https://github.com/wundergraph/cosmo/issues/138)) ([0ecb2d1](https://github.com/wundergraph/cosmo/commit/0ecb2d150d9f9906631168aa0f588d2ca64ab590)) (@JivusAyrus) ## [0.19.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.19.0...controlplane@0.19.1) (2023-09-28) ### Bug Fixes -* use correct range for error rate queries ([#133](https://github.com/wundergraph/cosmo/issues/133)) ([ff0b004](https://github.com/wundergraph/cosmo/commit/ff0b004fd6cf4f08540f76c858ea6dfaebcdd70e)) (@Pagebakers) +- use correct range for error rate queries ([#133](https://github.com/wundergraph/cosmo/issues/133)) ([ff0b004](https://github.com/wundergraph/cosmo/commit/ff0b004fd6cf4f08540f76c858ea6dfaebcdd70e)) (@Pagebakers) # [0.19.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.18.1...controlplane@0.19.0) (2023-09-27) ### Features -* add 1 and 4 hour ranges, refresh button and minor improvements ([#128](https://github.com/wundergraph/cosmo/issues/128)) ([f5cbfc7](https://github.com/wundergraph/cosmo/commit/f5cbfc79f23d0a1bbbbb1a910d82ff5894a0240d)) (@Pagebakers) +- add 1 and 4 hour ranges, refresh button and minor improvements ([#128](https://github.com/wundergraph/cosmo/issues/128)) ([f5cbfc7](https://github.com/wundergraph/cosmo/commit/f5cbfc79f23d0a1bbbbb1a910d82ff5894a0240d)) (@Pagebakers) ## [0.18.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.18.0...controlplane@0.18.1) (2023-09-27) ### Bug Fixes -* remove member ([#129](https://github.com/wundergraph/cosmo/issues/129)) ([6d7a478](https://github.com/wundergraph/cosmo/commit/6d7a4780b3b5da8efe8413f015d9df07f492efef)) (@JivusAyrus) +- remove member ([#129](https://github.com/wundergraph/cosmo/issues/129)) ([6d7a478](https://github.com/wundergraph/cosmo/commit/6d7a4780b3b5da8efe8413f015d9df07f492efef)) (@JivusAyrus) # [0.18.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.17.2...controlplane@0.18.0) (2023-09-27) ### Features -* support being a part of multiple organizations ([#119](https://github.com/wundergraph/cosmo/issues/119)) ([338e336](https://github.com/wundergraph/cosmo/commit/338e336a75435e150c8acfb01b88a8a086f7000a)) (@JivusAyrus) +- support being a part of multiple organizations ([#119](https://github.com/wundergraph/cosmo/issues/119)) ([338e336](https://github.com/wundergraph/cosmo/commit/338e336a75435e150c8acfb01b88a8a086f7000a)) (@JivusAyrus) ## [0.17.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.17.1...controlplane@0.17.2) (2023-09-26) ### Bug Fixes -* sanitize migrated graph label ([#124](https://github.com/wundergraph/cosmo/issues/124)) ([563e090](https://github.com/wundergraph/cosmo/commit/563e090adb1ab69fc96153ac226e391a5c609ff0)) (@Aenimus) +- sanitize migrated graph label ([#124](https://github.com/wundergraph/cosmo/issues/124)) ([563e090](https://github.com/wundergraph/cosmo/commit/563e090adb1ab69fc96153ac226e391a5c609ff0)) (@Aenimus) ## [0.17.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.17.0...controlplane@0.17.1) (2023-09-26) ### Bug Fixes -* range in error query ([#120](https://github.com/wundergraph/cosmo/issues/120)) ([48d73ea](https://github.com/wundergraph/cosmo/commit/48d73ea9198d3ecbae00caaf928ba2d2d97ea0d8)) (@Pagebakers) +- range in error query ([#120](https://github.com/wundergraph/cosmo/issues/120)) ([48d73ea](https://github.com/wundergraph/cosmo/commit/48d73ea9198d3ecbae00caaf928ba2d2d97ea0d8)) (@Pagebakers) # [0.17.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.16.2...controlplane@0.17.0) (2023-09-25) ### Features -* **controlplane:** use datetime formatted logs ([#118](https://github.com/wundergraph/cosmo/issues/118)) ([ea00e97](https://github.com/wundergraph/cosmo/commit/ea00e974b32ba752b10c0a2efeec932c1e22009e)) (@StarpTech) -* implement get changelog cli command ([#117](https://github.com/wundergraph/cosmo/issues/117)) ([ffaad09](https://github.com/wundergraph/cosmo/commit/ffaad093a212a6340263c4223452fb9edfec7570)) (@thisisnithin) +- **controlplane:** use datetime formatted logs ([#118](https://github.com/wundergraph/cosmo/issues/118)) ([ea00e97](https://github.com/wundergraph/cosmo/commit/ea00e974b32ba752b10c0a2efeec932c1e22009e)) (@StarpTech) +- implement get changelog cli command ([#117](https://github.com/wundergraph/cosmo/issues/117)) ([ffaad09](https://github.com/wundergraph/cosmo/commit/ffaad093a212a6340263c4223452fb9edfec7570)) (@thisisnithin) ## [0.16.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.16.1...controlplane@0.16.2) (2023-09-25) ### Bug Fixes -* improved analytics queries and output ([#115](https://github.com/wundergraph/cosmo/issues/115)) ([c0d4b9d](https://github.com/wundergraph/cosmo/commit/c0d4b9d2392aac205d6671e1c8c418de8eb40cf4)) (@Pagebakers) +- improved analytics queries and output ([#115](https://github.com/wundergraph/cosmo/issues/115)) ([c0d4b9d](https://github.com/wundergraph/cosmo/commit/c0d4b9d2392aac205d6671e1c8c418de8eb40cf4)) (@Pagebakers) ## [0.16.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.16.0...controlplane@0.16.1) (2023-09-25) ### Bug Fixes -* metrics repository and ui ([#113](https://github.com/wundergraph/cosmo/issues/113)) ([549ac6c](https://github.com/wundergraph/cosmo/commit/549ac6cd88e148ed9924d427ca306eb832cdd2ec)) (@thisisnithin) +- metrics repository and ui ([#113](https://github.com/wundergraph/cosmo/issues/113)) ([549ac6c](https://github.com/wundergraph/cosmo/commit/549ac6cd88e148ed9924d427ca306eb832cdd2ec)) (@thisisnithin) # [0.16.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.15.0...controlplane@0.16.0) (2023-09-25) ### Features -* advanced analytics ([#99](https://github.com/wundergraph/cosmo/issues/99)) ([a7a3058](https://github.com/wundergraph/cosmo/commit/a7a305851faa868d30dc202eef197afc6065ce92)) (@Pagebakers) +- advanced analytics ([#99](https://github.com/wundergraph/cosmo/issues/99)) ([a7a3058](https://github.com/wundergraph/cosmo/commit/a7a305851faa868d30dc202eef197afc6065ce92)) (@Pagebakers) # [0.15.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.14.0...controlplane@0.15.0) (2023-09-21) ### Features -* add login command ([#95](https://github.com/wundergraph/cosmo/issues/95)) ([e9da8c3](https://github.com/wundergraph/cosmo/commit/e9da8c3c9e018029e0aef06d3b3b823732812a47)) (@JivusAyrus) -* changelog pagination ([#103](https://github.com/wundergraph/cosmo/issues/103)) ([614b57e](https://github.com/wundergraph/cosmo/commit/614b57ed4904dde04682e75ad80670f08f64b7b2)) (@thisisnithin) -* don't poll router config when config hasn't changed ([#105](https://github.com/wundergraph/cosmo/issues/105)) ([ea33961](https://github.com/wundergraph/cosmo/commit/ea339617a7d1724fd9b727953db5d591e50241dd)) (@StarpTech) +- add login command ([#95](https://github.com/wundergraph/cosmo/issues/95)) ([e9da8c3](https://github.com/wundergraph/cosmo/commit/e9da8c3c9e018029e0aef06d3b3b823732812a47)) (@JivusAyrus) +- changelog pagination ([#103](https://github.com/wundergraph/cosmo/issues/103)) ([614b57e](https://github.com/wundergraph/cosmo/commit/614b57ed4904dde04682e75ad80670f08f64b7b2)) (@thisisnithin) +- don't poll router config when config hasn't changed ([#105](https://github.com/wundergraph/cosmo/issues/105)) ([ea33961](https://github.com/wundergraph/cosmo/commit/ea339617a7d1724fd9b727953db5d591e50241dd)) (@StarpTech) # [0.14.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.13.2...controlplane@0.14.0) (2023-09-20) ### Features -* store subgraphs in router config ([#61](https://github.com/wundergraph/cosmo/issues/61)) ([de7b132](https://github.com/wundergraph/cosmo/commit/de7b13244755acd49c38ff1e6c537234ab506960)) (@thisisnithin) +- store subgraphs in router config ([#61](https://github.com/wundergraph/cosmo/issues/61)) ([de7b132](https://github.com/wundergraph/cosmo/commit/de7b13244755acd49c38ff1e6c537234ab506960)) (@thisisnithin) ## [0.13.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.13.1...controlplane@0.13.2) (2023-09-19) @@ -2569,45 +2570,45 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* only log system errors as errors ([#80](https://github.com/wundergraph/cosmo/issues/80)) ([127614c](https://github.com/wundergraph/cosmo/commit/127614c889c6a98c3dc4963a502ef82fae3362d0)) (@StarpTech) +- only log system errors as errors ([#80](https://github.com/wundergraph/cosmo/issues/80)) ([127614c](https://github.com/wundergraph/cosmo/commit/127614c889c6a98c3dc4963a502ef82fae3362d0)) (@StarpTech) ## [0.12.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.12.0...controlplane@0.12.1) (2023-09-17) ### Bug Fixes -* api key last used update ([#77](https://github.com/wundergraph/cosmo/issues/77)) ([d02cb22](https://github.com/wundergraph/cosmo/commit/d02cb22624b5d37862f4b4c1b0c8f413855bbb40)) (@thisisnithin) +- api key last used update ([#77](https://github.com/wundergraph/cosmo/issues/77)) ([d02cb22](https://github.com/wundergraph/cosmo/commit/d02cb22624b5d37862f4b4c1b0c8f413855bbb40)) (@thisisnithin) # [0.12.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.11.3...controlplane@0.12.0) (2023-09-16) ### Features -* only generate node api for router ([#76](https://github.com/wundergraph/cosmo/issues/76)) ([9307648](https://github.com/wundergraph/cosmo/commit/93076481437030fa6e348dccbc74591f91878f57)) (@StarpTech) -* webhooks ([#66](https://github.com/wundergraph/cosmo/issues/66)) ([dbb281f](https://github.com/wundergraph/cosmo/commit/dbb281fda114ddb6be309b3336d0668d705e7bc9)) (@thisisnithin) +- only generate node api for router ([#76](https://github.com/wundergraph/cosmo/issues/76)) ([9307648](https://github.com/wundergraph/cosmo/commit/93076481437030fa6e348dccbc74591f91878f57)) (@StarpTech) +- webhooks ([#66](https://github.com/wundergraph/cosmo/issues/66)) ([dbb281f](https://github.com/wundergraph/cosmo/commit/dbb281fda114ddb6be309b3336d0668d705e7bc9)) (@thisisnithin) ## [0.11.3](https://github.com/wundergraph/cosmo/compare/controlplane@0.11.2...controlplane@0.11.3) (2023-09-15) ### Bug Fixes -* reduce error logs ([#72](https://github.com/wundergraph/cosmo/issues/72)) ([cba6fef](https://github.com/wundergraph/cosmo/commit/cba6fefe854bc3852708fd6a37eb5fa07d7fea24)) (@StarpTech) +- reduce error logs ([#72](https://github.com/wundergraph/cosmo/issues/72)) ([cba6fef](https://github.com/wundergraph/cosmo/commit/cba6fefe854bc3852708fd6a37eb5fa07d7fea24)) (@StarpTech) ## [0.11.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.11.1...controlplane@0.11.2) (2023-09-14) ### Bug Fixes -* avoid excessive error logs in session handler ([#70](https://github.com/wundergraph/cosmo/issues/70)) ([ed5a4c5](https://github.com/wundergraph/cosmo/commit/ed5a4c515b5d3bf6d5776e53a9ffe70bd474a418)) (@StarpTech) +- avoid excessive error logs in session handler ([#70](https://github.com/wundergraph/cosmo/issues/70)) ([ed5a4c5](https://github.com/wundergraph/cosmo/commit/ed5a4c515b5d3bf6d5776e53a9ffe70bd474a418)) (@StarpTech) ## [0.11.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.11.0...controlplane@0.11.1) (2023-09-14) ### Bug Fixes -* labels of the migrated graphs ([#65](https://github.com/wundergraph/cosmo/issues/65)) ([6ca790c](https://github.com/wundergraph/cosmo/commit/6ca790c7c73e66fc0d51bd6f79fc4899a8686064)) (@JivusAyrus) +- labels of the migrated graphs ([#65](https://github.com/wundergraph/cosmo/issues/65)) ([6ca790c](https://github.com/wundergraph/cosmo/commit/6ca790c7c73e66fc0d51bd6f79fc4899a8686064)) (@JivusAyrus) # [0.11.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.10.1...controlplane@0.11.0) (2023-09-13) ### Features -* add user registration ([#57](https://github.com/wundergraph/cosmo/issues/57)) ([c1d1841](https://github.com/wundergraph/cosmo/commit/c1d184192511f015c4b33db91d7342a0bb35710e)) (@JivusAyrus) -* use materialized views for traces ([#51](https://github.com/wundergraph/cosmo/issues/51)) ([f1bfbf5](https://github.com/wundergraph/cosmo/commit/f1bfbf5950ba92adbfeae5a3d4ef0cab14363150)) (@thisisnithin) +- add user registration ([#57](https://github.com/wundergraph/cosmo/issues/57)) ([c1d1841](https://github.com/wundergraph/cosmo/commit/c1d184192511f015c4b33db91d7342a0bb35710e)) (@JivusAyrus) +- use materialized views for traces ([#51](https://github.com/wundergraph/cosmo/issues/51)) ([f1bfbf5](https://github.com/wundergraph/cosmo/commit/f1bfbf5950ba92adbfeae5a3d4ef0cab14363150)) (@thisisnithin) ## [0.10.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.10.0...controlplane@0.10.1) (2023-09-11) @@ -2617,8 +2618,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* add introspect subgraph command ([#44](https://github.com/wundergraph/cosmo/issues/44)) ([bf376cd](https://github.com/wundergraph/cosmo/commit/bf376cd75382b16659efb670ea54494f691328aa)) (@JivusAyrus) -* introspect subgraphs in cli ([#53](https://github.com/wundergraph/cosmo/issues/53)) ([2bd9f95](https://github.com/wundergraph/cosmo/commit/2bd9f95cd3ac13e878a12ab526d575c9b1daf248)) (@JivusAyrus) +- add introspect subgraph command ([#44](https://github.com/wundergraph/cosmo/issues/44)) ([bf376cd](https://github.com/wundergraph/cosmo/commit/bf376cd75382b16659efb670ea54494f691328aa)) (@JivusAyrus) +- introspect subgraphs in cli ([#53](https://github.com/wundergraph/cosmo/issues/53)) ([2bd9f95](https://github.com/wundergraph/cosmo/commit/2bd9f95cd3ac13e878a12ab526d575c9b1daf248)) (@JivusAyrus) ## [0.9.4](https://github.com/wundergraph/cosmo/compare/controlplane@0.9.3...controlplane@0.9.4) (2023-09-08) @@ -2632,45 +2633,45 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* take variant name as input while migrating ([#40](https://github.com/wundergraph/cosmo/issues/40)) ([6ace9fc](https://github.com/wundergraph/cosmo/commit/6ace9fc93c246dce3fce641a2e274e93d99ae813)) (@JivusAyrus) +- take variant name as input while migrating ([#40](https://github.com/wundergraph/cosmo/issues/40)) ([6ace9fc](https://github.com/wundergraph/cosmo/commit/6ace9fc93c246dce3fce641a2e274e93d99ae813)) (@JivusAyrus) ## [0.9.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.9.0...controlplane@0.9.1) (2023-09-06) ### Bug Fixes -* support firefox and other browsers by adding user agent to the allowed headers ([#39](https://github.com/wundergraph/cosmo/issues/39)) ([11be0dc](https://github.com/wundergraph/cosmo/commit/11be0dc0145c08d5aaf5b1919b2529e26f3e397b)) (@JivusAyrus) +- support firefox and other browsers by adding user agent to the allowed headers ([#39](https://github.com/wundergraph/cosmo/issues/39)) ([11be0dc](https://github.com/wundergraph/cosmo/commit/11be0dc0145c08d5aaf5b1919b2529e26f3e397b)) (@JivusAyrus) # [0.9.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.8.0...controlplane@0.9.0) (2023-09-06) ### Features -* add argument configuration ([#10](https://github.com/wundergraph/cosmo/issues/10)) ([48d909f](https://github.com/wundergraph/cosmo/commit/48d909f4de954c2401b557ed6a9f58915388f679)) (@Aenimus) -* add pagination and date range filter for schema checks ([#35](https://github.com/wundergraph/cosmo/issues/35)) ([e7bbc04](https://github.com/wundergraph/cosmo/commit/e7bbc04f76180cfe4210f173697f323b34650e41)) (@JivusAyrus) -* implement whoami cli command ([#33](https://github.com/wundergraph/cosmo/issues/33)) ([c920b25](https://github.com/wundergraph/cosmo/commit/c920b25ff4dc31cf9788b1590e3c89e4a33a3ac0)) (@StarpTech) -* move to new connectrpc packages ([#32](https://github.com/wundergraph/cosmo/issues/32)) ([4c8423b](https://github.com/wundergraph/cosmo/commit/4c8423bf377b63af6a42a42d7d5fc1ce2db1f09e)) (@StarpTech) +- add argument configuration ([#10](https://github.com/wundergraph/cosmo/issues/10)) ([48d909f](https://github.com/wundergraph/cosmo/commit/48d909f4de954c2401b557ed6a9f58915388f679)) (@Aenimus) +- add pagination and date range filter for schema checks ([#35](https://github.com/wundergraph/cosmo/issues/35)) ([e7bbc04](https://github.com/wundergraph/cosmo/commit/e7bbc04f76180cfe4210f173697f323b34650e41)) (@JivusAyrus) +- implement whoami cli command ([#33](https://github.com/wundergraph/cosmo/issues/33)) ([c920b25](https://github.com/wundergraph/cosmo/commit/c920b25ff4dc31cf9788b1590e3c89e4a33a3ac0)) (@StarpTech) +- move to new connectrpc packages ([#32](https://github.com/wundergraph/cosmo/issues/32)) ([4c8423b](https://github.com/wundergraph/cosmo/commit/4c8423bf377b63af6a42a42d7d5fc1ce2db1f09e)) (@StarpTech) # [0.8.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.7.1...controlplane@0.8.0) (2023-09-02) ### Features -* add prometheus ([#31](https://github.com/wundergraph/cosmo/issues/31)) ([d318c73](https://github.com/wundergraph/cosmo/commit/d318c7331d77d21d0246344d76fbe0fc6b617174)) (@StarpTech) +- add prometheus ([#31](https://github.com/wundergraph/cosmo/issues/31)) ([d318c73](https://github.com/wundergraph/cosmo/commit/d318c7331d77d21d0246344d76fbe0fc6b617174)) (@StarpTech) ## [0.7.1](https://github.com/wundergraph/cosmo/compare/controlplane@0.7.0...controlplane@0.7.1) (2023-08-31) ### Bug Fixes -* modify seed script ([#28](https://github.com/wundergraph/cosmo/issues/28)) ([7dba7ee](https://github.com/wundergraph/cosmo/commit/7dba7eed828648254be04d9f70585f2b930cd657)) (@JivusAyrus) +- modify seed script ([#28](https://github.com/wundergraph/cosmo/issues/28)) ([7dba7ee](https://github.com/wundergraph/cosmo/commit/7dba7eed828648254be04d9f70585f2b930cd657)) (@JivusAyrus) # [0.7.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.6.2...controlplane@0.7.0) (2023-08-31) ### Bug Fixes -* analytics view and get trace query ([#23](https://github.com/wundergraph/cosmo/issues/23)) ([916488b](https://github.com/wundergraph/cosmo/commit/916488b697fa8f446e7aaa3d3f4b3e504671a23b)) (@JivusAyrus) -* throw auth error inside try, allow to customize k8s probes, use … ([#24](https://github.com/wundergraph/cosmo/issues/24)) ([2d5695b](https://github.com/wundergraph/cosmo/commit/2d5695b95adad9b2fd8a6cacbc2dd2a1c2cb9bd6)) (@StarpTech) +- analytics view and get trace query ([#23](https://github.com/wundergraph/cosmo/issues/23)) ([916488b](https://github.com/wundergraph/cosmo/commit/916488b697fa8f446e7aaa3d3f4b3e504671a23b)) (@JivusAyrus) +- throw auth error inside try, allow to customize k8s probes, use … ([#24](https://github.com/wundergraph/cosmo/issues/24)) ([2d5695b](https://github.com/wundergraph/cosmo/commit/2d5695b95adad9b2fd8a6cacbc2dd2a1c2cb9bd6)) (@StarpTech) ### Features -* migrate graphs from apollo ([#17](https://github.com/wundergraph/cosmo/issues/17)) ([0d9d025](https://github.com/wundergraph/cosmo/commit/0d9d025adadf11fd0516cbe10f470765757a9853)) (@JivusAyrus) +- migrate graphs from apollo ([#17](https://github.com/wundergraph/cosmo/issues/17)) ([0d9d025](https://github.com/wundergraph/cosmo/commit/0d9d025adadf11fd0516cbe10f470765757a9853)) (@JivusAyrus) ## [0.6.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.6.1...controlplane@0.6.2) (2023-08-29) @@ -2680,26 +2681,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -* improvements ([#18](https://github.com/wundergraph/cosmo/issues/18)) ([fdf2b29](https://github.com/wundergraph/cosmo/commit/fdf2b290ec57e502d8011e29e06a067d32afdf18)) (@JivusAyrus) +- improvements ([#18](https://github.com/wundergraph/cosmo/issues/18)) ([fdf2b29](https://github.com/wundergraph/cosmo/commit/fdf2b290ec57e502d8011e29e06a067d32afdf18)) (@JivusAyrus) # [0.6.0](https://github.com/wundergraph/cosmo/compare/controlplane@0.5.0...controlplane@0.6.0) (2023-08-28) ### Bug Fixes -* by subgraph query ([#9](https://github.com/wundergraph/cosmo/issues/9)) ([fdec00e](https://github.com/wundergraph/cosmo/commit/fdec00edd47c22f77cfc79a89a16764170a38b2d)) (@StarpTech) -* ui ([#4](https://github.com/wundergraph/cosmo/issues/4)) ([2be4987](https://github.com/wundergraph/cosmo/commit/2be4987d8707be3c2b42d72f12e8db0b91b525b2)) (@JivusAyrus) -* use materialized view when fetching traces ([#16](https://github.com/wundergraph/cosmo/issues/16)) ([e4ed267](https://github.com/wundergraph/cosmo/commit/e4ed267c91f4b97f10c92ed19a4498dd6684241c)) (@StarpTech) +- by subgraph query ([#9](https://github.com/wundergraph/cosmo/issues/9)) ([fdec00e](https://github.com/wundergraph/cosmo/commit/fdec00edd47c22f77cfc79a89a16764170a38b2d)) (@StarpTech) +- ui ([#4](https://github.com/wundergraph/cosmo/issues/4)) ([2be4987](https://github.com/wundergraph/cosmo/commit/2be4987d8707be3c2b42d72f12e8db0b91b525b2)) (@JivusAyrus) +- use materialized view when fetching traces ([#16](https://github.com/wundergraph/cosmo/issues/16)) ([e4ed267](https://github.com/wundergraph/cosmo/commit/e4ed267c91f4b97f10c92ed19a4498dd6684241c)) (@StarpTech) ### Features -* add resend invitation and remove member/invitation functionality ([#2](https://github.com/wundergraph/cosmo/issues/2)) ([7528ba3](https://github.com/wundergraph/cosmo/commit/7528ba3f6456be40769ea314b3b36a26a10e852b)) (@JivusAyrus) -* implement metric backend ([#13](https://github.com/wundergraph/cosmo/issues/13)) ([4c0a790](https://github.com/wundergraph/cosmo/commit/4c0a790852542475e6d0533fdeea24f5b226bd7d)) (@StarpTech) +- add resend invitation and remove member/invitation functionality ([#2](https://github.com/wundergraph/cosmo/issues/2)) ([7528ba3](https://github.com/wundergraph/cosmo/commit/7528ba3f6456be40769ea314b3b36a26a10e852b)) (@JivusAyrus) +- implement metric backend ([#13](https://github.com/wundergraph/cosmo/issues/13)) ([4c0a790](https://github.com/wundergraph/cosmo/commit/4c0a790852542475e6d0533fdeea24f5b226bd7d)) (@StarpTech) # 0.5.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) ## [0.4.2](https://github.com/wundergraph/cosmo/compare/controlplane@0.3.0...controlplane@0.4.2) (2023-08-24) @@ -2713,28 +2714,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.3.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.2.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.1.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) # 0.1.0 (2023-08-24) ### Features -* prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) +- prepare release pipeline ([#1](https://github.com/wundergraph/cosmo/issues/1)) ([747aa47](https://github.com/wundergraph/cosmo/commit/747aa47d5e965d1b74862fbb5598bafb2fa05ee2)) (@StarpTech) diff --git a/controlplane/README.md b/controlplane/README.md index 00932a69f5..a0759005c7 100644 --- a/controlplane/README.md +++ b/controlplane/README.md @@ -75,4 +75,4 @@ A user session "cookie" is valid for 1 day. The refresh token has the same lifes That implies that the user can interact with the app for 1 day until the refresh token is expired. The user can renew the session by calling the session endpoint `/v1/auth/session`. The session endpoint will refresh the access and refresh token and update the session cookie. The user can interact with the app for another day. -__Summary: If the frontend ensure that the session endpoint `/v1/auth/session` is called on focus and load. The user might never be logged out again.__ +**Summary: If the frontend ensure that the session endpoint `/v1/auth/session` is called on focus and load. The user might never be logged out again.** diff --git a/controlplane/emails/package.json b/controlplane/emails/package.json index 05ef7fc150..c4b67e1a44 100644 --- a/controlplane/emails/package.json +++ b/controlplane/emails/package.json @@ -6,7 +6,9 @@ "type": "module", "scripts": { "dev": "email dev --dir src --port 3400", - "build": "email export --dir src --outDir ../src/templates/emails --pretty && pnpm run --filter ../ lint:fix" + "build": "email export --dir src --outDir ../src/templates/emails --pretty && pnpm run --filter ../ lint:fix", + "format": "prettier -w -c .", + "lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && pnpm format" }, "author": { "name": "WunderGraph Maintainers", diff --git a/controlplane/emails/src/components/cosmo-logo.tsx b/controlplane/emails/src/components/cosmo-logo.tsx index 44987eb3b8..480c2adf48 100644 --- a/controlplane/emails/src/components/cosmo-logo.tsx +++ b/controlplane/emails/src/components/cosmo-logo.tsx @@ -7,13 +7,8 @@ export function CosmoLogo() { href="https://wundergraph.com/" className="flex items-center space-x-2 font-bold text-slate-800 no-underline w-full" > - WunderGraph + WunderGraph WunderGraph ); -} \ No newline at end of file +} diff --git a/controlplane/emails/src/components/main-container.tsx b/controlplane/emails/src/components/main-container.tsx index 7bbc34ea64..1d761cdf5a 100644 --- a/controlplane/emails/src/components/main-container.tsx +++ b/controlplane/emails/src/components/main-container.tsx @@ -12,4 +12,4 @@ export function MainContainer({ children }: React.PropsWithChildren) { {children} ); -} \ No newline at end of file +} diff --git a/controlplane/emails/src/components/tailwind-config.tsx b/controlplane/emails/src/components/tailwind-config.tsx index 440320ee44..ea038e9746 100644 --- a/controlplane/emails/src/components/tailwind-config.tsx +++ b/controlplane/emails/src/components/tailwind-config.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Tailwind, } from '@react-email/components'; +import { Tailwind } from '@react-email/components'; export function TailwindConfig({ children }: React.PropsWithChildren) { return ( @@ -9,12 +9,12 @@ export function TailwindConfig({ children }: React.PropsWithChildren) { extend: { colors: { brand: '#ea4899', - } - } - } + }, + }, + }, }} > {children} ); -} \ No newline at end of file +} diff --git a/controlplane/emails/src/organizationDeletionQueued.tsx b/controlplane/emails/src/organizationDeletionQueued.tsx index 0bfa0fe817..8b0ede1ccd 100644 --- a/controlplane/emails/src/organizationDeletionQueued.tsx +++ b/controlplane/emails/src/organizationDeletionQueued.tsx @@ -1,18 +1,7 @@ -import { - Body, - Button, - Head, - Heading, - Html, - Link, - Preview, - Section, - Text, - Row, -} from '@react-email/components'; +import { Body, Button, Head, Heading, Html, Link, Preview, Section, Text, Row } from '@react-email/components'; import * as React from 'react'; import { TailwindConfig } from '@/components/tailwind-config.js'; -import { MainContainer } from '@/components/main-container.js' +import { MainContainer } from '@/components/main-container.js'; export const OrganizationQueuedForDeletionEmail = () => { return ( @@ -26,20 +15,18 @@ export const OrganizationQueuedForDeletionEmail = () => { Organization Queued for Deletion - The organization [%= organizationName %] has been scheduled for - {' '}deletion by: + The organization [%= organizationName %] has been scheduled for{' '} + deletion by:
User: [%= userDisplayName %] Date: [%= queuedOnDate %]
- This irreversible deletion will take place on [%= deletionDate %]{' '} - and will permanently remove the organization and all data associated with it. - - - If this was unintentional and you would like to cancel the deletion: + This irreversible deletion will take place on [%= deletionDate %] and + will permanently remove the organization and all data associated with it. + If this was unintentional and you would like to cancel the deletion: