Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
neo4j-team-graphql committed Sep 27, 2024
1 parent 42c6e07 commit dc4c7ab
Show file tree
Hide file tree
Showing 10 changed files with 73 additions and 72 deletions.
50 changes: 0 additions & 50 deletions .changeset/chilly-ladybugs-behave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/early-needles-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/flat-countries-play.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-beans-grin.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": "^5.6.2",
"@neo4j/graphql": "^5.7.0",
"graphql": "16.9.0",
"graphql-tag": "^2.12.6",
"neo4j-driver": "^5.8.0"
Expand Down
59 changes: 59 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,64 @@
# @neo4j/graphql

## 5.7.0

### Minor Changes

- [#5553](https:/neo4j/graphql/pull/5553) [`3a0a69f`](https:/neo4j/graphql/commit/3a0a69fa47dc5ce4e8c60e35f5213ffde582ead8) Thanks [@mjfwebb](https:/mjfwebb)! - Add filtering on scalar custom cypher fields

### Patch Changes

- [#5583](https:/neo4j/graphql/pull/5583) [`d35b00d`](https:/neo4j/graphql/commit/d35b00d0fa19b5c5a5632a3a2485a3ede6d73e3b) Thanks [@angrykoala](https:/angrykoala)! - Deprecates top level arguments for nested operations on updates in favor of traversing the update argument. The deprecated arguments are:

- create
- delete
- connect
- disconnect
- connectOrCreate

For example, for create:

_deprecated_

```graphql
mutation UpdatePeople {
updatePeople(create: { movies: { node: { title: "The Good" } } }) {
people {
name
}
}
}
```

_recommended_

```graphql
mutation UpdatePeople {
updatePeople(update: { movies: { create: { node: { title: "The Good" } } } }) {
people {
name
}
}
}
```

These deprecated arguments can be removed from the schema with the flag `nestedUpdateOperationsFields` in `excludeDeprecatedFields`:

```js
const neoSchema = new Neo4jGraphQL({
typeDefs,
features: {
excludeDeprecatedFields: {
nestedUpdateOperationsFields: true,
},
},
});
```

- [#5585](https:/neo4j/graphql/pull/5585) [`21c18ee`](https:/neo4j/graphql/commit/21c18eeef5cff1758daea6f412d6d9b69087d90b) Thanks [@mjfwebb](https:/mjfwebb)! - Fix: standard JWT claim fields can now correctly be used even when a custom JWT payload is not defined.

- [#5590](https:/neo4j/graphql/pull/5590) [`e95db9c`](https:/neo4j/graphql/commit/e95db9ca5ff9c80d151e0c48df07ea5187e22395) Thanks [@angrykoala](https:/angrykoala)! - Fix subscriptions with autogenerated uids #5586

## 5.6.2

### Patch 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": "5.6.2",
"version": "5.7.0",
"description": "A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations",
"keywords": [
"neo4j",
Expand Down
7 changes: 7 additions & 0 deletions packages/ogm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @neo4j/graphql-ogm

## 5.7.0

### Patch Changes

- Updated dependencies [[`d35b00d`](https:/neo4j/graphql/commit/d35b00d0fa19b5c5a5632a3a2485a3ede6d73e3b), [`21c18ee`](https:/neo4j/graphql/commit/21c18eeef5cff1758daea6f412d6d9b69087d90b), [`e95db9c`](https:/neo4j/graphql/commit/e95db9ca5ff9c80d151e0c48df07ea5187e22395), [`3a0a69f`](https:/neo4j/graphql/commit/3a0a69fa47dc5ce4e8c60e35f5213ffde582ead8)]:
- @neo4j/graphql@5.7.0

## 5.6.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ogm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@neo4j/graphql-ogm",
"version": "5.6.2",
"version": "5.7.0",
"description": "GraphQL powered OGM for Neo4j and Javascript applications",
"keywords": [
"neo4j",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-tools/merge": "^9.0.0",
"@neo4j/graphql": "^5.6.2",
"@neo4j/graphql": "^5.7.0",
"prettier": "^2.7.1"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2826,7 +2826,7 @@ __metadata:
"@graphql-codegen/plugin-helpers": "npm:^5.0.0"
"@graphql-codegen/typescript": "npm:^4.0.0"
"@graphql-tools/merge": "npm:^9.0.0"
"@neo4j/graphql": "npm:^5.6.2"
"@neo4j/graphql": "npm:^5.7.0"
"@types/jest": "npm:29.5.13"
"@types/node": "npm:20.16.6"
camelcase: "npm:6.3.0"
Expand All @@ -2850,7 +2850,7 @@ __metadata:
languageName: node
linkType: soft

"@neo4j/graphql@npm:^5.0.0, @neo4j/graphql@npm:^5.3.4, @neo4j/graphql@npm:^5.4.0, @neo4j/graphql@npm:^5.6.2, @neo4j/graphql@workspace:packages/graphql":
"@neo4j/graphql@npm:^5.0.0, @neo4j/graphql@npm:^5.3.4, @neo4j/graphql@npm:^5.4.0, @neo4j/graphql@npm:^5.7.0, @neo4j/graphql@workspace:packages/graphql":
version: 0.0.0-use.local
resolution: "@neo4j/graphql@workspace:packages/graphql"
dependencies:
Expand Down Expand Up @@ -5714,7 +5714,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:^5.6.2"
"@neo4j/graphql": "npm:^5.7.0"
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 dc4c7ab

Please sign in to comment.