Skip to content

Commit

Permalink
Merge pull request #5845 from neo4j/changeset-release/dev
Browse files Browse the repository at this point in the history
changesets for branch `dev`
  • Loading branch information
darrellwarde authored Nov 26, 2024
2 parents d2786d4 + 716ac22 commit bbc7aa6
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 29 deletions.
20 changes: 0 additions & 20 deletions .changeset/curvy-rabbits-notice.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tasty-onions-laugh.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dependencies": {
"@apollo/server": "^4.7.0",
"@graphql-tools/wrap": "^10.0.0",
"@neo4j/graphql": "^6.1.0",
"@neo4j/graphql": "^6.1.1",
"graphql": "16.9.0",
"graphql-tag": "^2.12.6",
"neo4j-driver": "^5.8.0"
Expand Down
23 changes: 23 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @neo4j/graphql

## 6.1.1

### Patch Changes

- [#5835](https://github.com/neo4j/graphql/pull/5835) [`cc1a8dd`](https://github.com/neo4j/graphql/commit/cc1a8ddde06059f1d2aa481e68a433535649f152) Thanks [@angrykoala](https://github.com/angrykoala)! - Add support for filtering GraphQL only events in CDC subscriptions with the option `onlyGraphQLEvents` passed to `Neo4jGraphQLSubscriptionsCDCEngine`

```ts
const engine = new Neo4jGraphQLSubscriptionsCDCEngine({
driver,
onlyGraphQLEvents: true,
});

const neoSchema = new Neo4jGraphQL({
typeDefs,
driver,
features: {
subscriptions: engine,
},
});
```

- [#5834](https://github.com/neo4j/graphql/pull/5834) [`67f915e`](https://github.com/neo4j/graphql/commit/67f915e05c029ce9a595c05cf2f42de232ff2d37) Thanks [@angrykoala](https://github.com/angrykoala)! - CDC subscription optimization. Only node events with labels present in the GraphQL schema will be queried. This will reduce the number of subscription events queried by skipping events to nodes that cannot be subscribed through GraphQL

## 6.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@neo4j/graphql",
"version": "6.1.0",
"version": "6.1.1",
"description": "A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations",
"keywords": [
"neo4j",
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2072,7 +2072,7 @@ __metadata:
languageName: node
linkType: soft

"@neo4j/graphql@npm:^6.0.0, @neo4j/graphql@npm:^6.1.0, @neo4j/graphql@workspace:packages/graphql":
"@neo4j/graphql@npm:^6.0.0, @neo4j/graphql@npm:^6.1.1, @neo4j/graphql@workspace:packages/graphql":
version: 0.0.0-use.local
resolution: "@neo4j/graphql@workspace:packages/graphql"
dependencies:
Expand Down Expand Up @@ -3842,7 +3842,7 @@ __metadata:
"@apollo/federation-subgraph-compatibility": "npm:2.2.0"
"@apollo/server": "npm:^4.7.0"
"@graphql-tools/wrap": "npm:^10.0.0"
"@neo4j/graphql": "npm:^6.1.0"
"@neo4j/graphql": "npm:^6.1.1"
fork-ts-checker-webpack-plugin: "npm:9.0.2"
graphql: "npm:16.9.0"
graphql-tag: "npm:^2.12.6"
Expand Down

0 comments on commit bbc7aa6

Please sign in to comment.