Skip to content

Commit d72a324

Browse files
Version Packages
1 parent a3d6307 commit d72a324

File tree

5 files changed

+10
-21
lines changed

5 files changed

+10
-21
lines changed

.changeset/social-banks-greet.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/apollo-federation-subgraph-compatibility/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@apollo/server": "^4.7.0",
1212
"@graphql-tools/wrap": "^10.0.0",
13-
"@neo4j/graphql": "^7.2.1",
13+
"@neo4j/graphql": "^7.2.2",
1414
"graphql": "16.11.0",
1515
"graphql-tag": "^2.12.6",
1616
"neo4j-driver": "^5.8.0"

packages/graphql/CHANGELOG.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @neo4j/graphql
22

3+
## 7.2.2
4+
5+
### Patch Changes
6+
7+
- [#6446](https://github.com/neo4j/graphql/pull/6446) [`5ed0ac9`](https://github.com/neo4j/graphql/commit/5ed0ac90eb1b5aed73a3bae49600c775c7006c2b) Thanks [@MacondoExpress](https://github.com/MacondoExpress)! - Fixed mutation input type generation for enum and custom scalar list operations. The `push`, `pop`, and `set` operations in list mutation inputs for enums and custom scalars are now correctly marked as optional instead of required.
8+
39
## 7.2.1
410

511
### Patch Changes
@@ -45,7 +51,6 @@
4551
### Patch Changes
4652

4753
- [#6354](https://github.com/neo4j/graphql/pull/6354) [`76c6445`](https://github.com/neo4j/graphql/commit/76c6445be4ce1afa5ae3d3606247d28f4f02e256) Thanks [@angrykoala](https://github.com/angrykoala)! - Handle the following errors in CDC queries for subscription by resetting the cursor:
48-
4954
- 52N27
5055
- 52N28
5156
- 52N30
@@ -257,7 +262,6 @@
257262
Previously, conditions inside single and some were evaluated separately for each concrete type in the union, requiring all to match. This was incorrect.
258263

259264
New behavior:
260-
261265
- `single`: Now correctly returns actors with exactly one related node across the whole union, rather than per type.
262266
- `some`: Now correctly returns actors with at least one matching related node of any type in the union.
263267

@@ -667,7 +671,6 @@
667671
- [#6180](https://github.com/neo4j/graphql/pull/6180) [`eae9bb4`](https://github.com/neo4j/graphql/commit/eae9bb427bb41f8436951400b36aa4f30a8e2b9c) Thanks [@angrykoala](https://github.com/angrykoala)! - Revert dual package bundling. Publishing only cjs package
668672

669673
- [#5871](https://github.com/neo4j/graphql/pull/5871) [`722c650`](https://github.com/neo4j/graphql/commit/722c6507977072122041e985b94a84a707179f39) Thanks [@angrykoala](https://github.com/angrykoala)! - Deprecate individual mutations in favor of generic mutations
670-
671674
- `_SET`
672675
- `_POP`
673676
- `_PUSH`
@@ -877,7 +880,6 @@
877880
Previously, conditions inside single and some were evaluated separately for each concrete type in the union, requiring all to match. This was incorrect.
878881

879882
New behavior:
880-
881883
- `single`: Now correctly returns actors with exactly one related node across the whole union, rather than per type.
882884
- `some`: Now correctly returns actors with at least one matching related node of any type in the union.
883885

@@ -1631,7 +1633,6 @@
16311633
### Patch Changes
16321634

16331635
- [#6046](https://github.com/neo4j/graphql/pull/6046) [`dcf4c76`](https://github.com/neo4j/graphql/commit/dcf4c761b21e8dbce8436e4000eae53f9780923c) Thanks [@angrykoala](https://github.com/angrykoala)! - Add `unsafeEscapeOptions` to `Neo4jGraphQL` features with the following flags:
1634-
16351636
- `disableRelationshipTypeEscaping` (default to `false`)
16361637
- `disableNodeLabelEscaping` (defaults to `false`)
16371638

@@ -1689,7 +1690,6 @@
16891690
### Patch Changes
16901691

16911692
- [#5871](https://github.com/neo4j/graphql/pull/5871) [`722c650`](https://github.com/neo4j/graphql/commit/722c6507977072122041e985b94a84a707179f39) Thanks [@angrykoala](https://github.com/angrykoala)! - Deprecate individual mutations in favor of generic mutations
1692-
16931693
- `_SET`
16941694
- `_POP`
16951695
- `_PUSH`
@@ -1932,7 +1932,6 @@
19321932
- [#5637](https://github.com/neo4j/graphql/pull/5637) [`8832dd6`](https://github.com/neo4j/graphql/commit/8832dd67cfc30faa920dc17831cb241bca757911) Thanks [@darrellwarde](https://github.com/darrellwarde)! - Remove deprecated relationship filters without suffix. Queries which previously used these should migrate over to `_SOME` filters.
19331933

19341934
- [#5662](https://github.com/neo4j/graphql/pull/5662) [`98e04db`](https://github.com/neo4j/graphql/commit/98e04db04fec55bbd244bc15c52a04a3f6e43057) Thanks [@angrykoala](https://github.com/angrykoala)! - Remove support for relationship subscriptions:
1935-
19361935
- `*RelationshipCreated`
19371936
- `*RelationshipDeleted`
19381937

@@ -1997,7 +1996,6 @@
19971996
- [#5649](https://github.com/neo4j/graphql/pull/5649) [`8206edd`](https://github.com/neo4j/graphql/commit/8206eddb54597d60012c8e30cc0c033b2714348f) Thanks [@darrellwarde](https://github.com/darrellwarde)! - The deprecated `options` argument of `assertIndexesAndConstraints` has been removed. Database migrations are outside of the scope of the Neo4j GraphQL Library, and all indexes and constraints will have to be managed manually.
19981997

19991998
- [#5630](https://github.com/neo4j/graphql/pull/5630) [`af866e0`](https://github.com/neo4j/graphql/commit/af866e058d7ba05f50fe0986cbbf63f252439e09) Thanks [@angrykoala](https://github.com/angrykoala)! - Remove deprecated top level arguments for nested operations in mutations:
2000-
20011999
- create
20022000
- delete
20032001
- connect
@@ -2045,7 +2043,6 @@
20452043
```
20462044

20472045
- [#5668](https://github.com/neo4j/graphql/pull/5668) [`ffb2ae3`](https://github.com/neo4j/graphql/commit/ffb2ae31cde5e07ff6c09ec1f592512909f69f81) Thanks [@angrykoala](https://github.com/angrykoala)! - Remove exported types for custom subscriptions engine:
2048-
20492046
- `Neo4jGraphQLSubscriptionsEngine`
20502047
- `SubscriptionsEvent`
20512048

@@ -2171,7 +2168,6 @@
21712168
### Patch Changes
21722169

21732170
- [#5583](https://github.com/neo4j/graphql/pull/5583) [`d35b00d`](https://github.com/neo4j/graphql/commit/d35b00d0fa19b5c5a5632a3a2485a3ede6d73e3b) Thanks [@angrykoala](https://github.com/angrykoala)! - Deprecates top level arguments for nested operations on updates in favor of traversing the update argument. The deprecated arguments are:
2174-
21752171
- create
21762172
- delete
21772173
- connect
@@ -2755,7 +2751,6 @@
27552751
### Minor Changes
27562752

27572753
- [#4036](https://github.com/neo4j/graphql/pull/4036) [`120e22f8e`](https://github.com/neo4j/graphql/commit/120e22f8ef63af0aa72d2f66841451bc457bfee9) Thanks [@mjfwebb](https://github.com/mjfwebb)! - Schema generation logic improved
2758-
27592754
- allow operations on Interface relationships to Interfaces
27602755
- add descriptions to generated graphql types
27612756
- improve schema generation logic
@@ -3432,7 +3427,6 @@
34323427
### Minor Changes
34333428

34343429
- [#2359](https://github.com/neo4j/graphql/pull/2359) [`3fd44b3ef`](https://github.com/neo4j/graphql/commit/3fd44b3ef08d6eebec3cb1dd51111af8bf4e9fb2) Thanks [@farhadnowzari](https://github.com/farhadnowzari)! - - The `JwksEndpoint` in `Neo4jGraphQLAuthJWKSPlugin` now will accept a function as well which returns a computed endpoint.
3435-
34363430
- The `Secret` in `Neo4jGraphQLAuthJWTPlugin` now will accept a function as well which returns a computed secret.
34373431

34383432
- [#2588](https://github.com/neo4j/graphql/pull/2588) [`ef1822849`](https://github.com/neo4j/graphql/commit/ef182284930c8444c7205e2bc398ef17481e6279) Thanks [@a-alle](https://github.com/a-alle)! - Add `overwrite` argument on connect operation for relationships to standard types and arrays of

packages/graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neo4j/graphql",
3-
"version": "7.2.1",
3+
"version": "7.2.2",
44
"description": "A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations",
55
"keywords": [
66
"neo4j",

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2602,7 +2602,7 @@ __metadata:
26022602
languageName: node
26032603
linkType: soft
26042604

2605-
"@neo4j/graphql@npm:^7.0.0, @neo4j/graphql@npm:^7.2.1, @neo4j/graphql@workspace:packages/graphql":
2605+
"@neo4j/graphql@npm:^7.0.0, @neo4j/graphql@npm:^7.2.2, @neo4j/graphql@workspace:packages/graphql":
26062606
version: 0.0.0-use.local
26072607
resolution: "@neo4j/graphql@workspace:packages/graphql"
26082608
dependencies:
@@ -4463,7 +4463,7 @@ __metadata:
44634463
"@apollo/federation-subgraph-compatibility": "npm:2.2.1"
44644464
"@apollo/server": "npm:^4.7.0"
44654465
"@graphql-tools/wrap": "npm:^10.0.0"
4466-
"@neo4j/graphql": "npm:^7.2.1"
4466+
"@neo4j/graphql": "npm:^7.2.2"
44674467
fork-ts-checker-webpack-plugin: "npm:9.1.0"
44684468
graphql: "npm:16.11.0"
44694469
graphql-tag: "npm:^2.12.6"

0 commit comments

Comments
 (0)