-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into forward-multiple-headers
- Loading branch information
Showing
46 changed files
with
7,478 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,14 @@ Binaries are attached to the github release otherwise all images can be found [h | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.121.2](https://github.com/wundergraph/cosmo/compare/[email protected]@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) | ||
|
||
## [0.121.1](https://github.com/wundergraph/cosmo/compare/[email protected]@0.121.1) (2025-01-24) | ||
|
||
**Note:** Version bump only for package controlplane | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_UNION_MEMBER_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_UNION_MEMBER_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_ENUM_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_ENUM_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_ENUM_VALUE_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_ENUM_VALUE_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_INPUT_OBJECT_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_INPUT_OBJECT_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_FIELD_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_FIELD_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_SCALAR_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_SCALAR_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_OBJECT_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_OBJECT_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_INTERFACE_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_INTERFACE_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_ARGUMENT_DEFINITION_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_ARGUMENT_DEFINITION_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_SCHEMA_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_SCHEMA_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_FIELD_DEFINITION_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_FIELD_DEFINITION_REMOVED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_INPUT_FIELD_DEFINITION_ADDED';--> statement-breakpoint | ||
ALTER TYPE "public"."schema_change_type" ADD VALUE 'DIRECTIVE_USAGE_INPUT_FIELD_DEFINITION_REMOVED'; |
Oops, something went wrong.