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 Nov 14, 2024
1 parent 919d258 commit da2e743
Show file tree
Hide file tree
Showing 11 changed files with 46 additions and 60 deletions.
5 changes: 0 additions & 5 deletions .changeset/brave-chicken-hunt.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/fresh-pumpkins-doubt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mean-horses-worry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-dryers-love.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-frogs-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/seven-bobcats-carry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-planes-train.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.0.0",
"@neo4j/graphql": "^6.1.0",
"graphql": "16.9.0",
"graphql-tag": "^2.12.6",
"neo4j-driver": "^5.8.0"
Expand Down
42 changes: 42 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# @neo4j/graphql

## 6.1.0

### Minor Changes

- [#5746](https://github.com/neo4j/graphql/pull/5746) [`c581f9e`](https://github.com/neo4j/graphql/commit/c581f9e02b232bf09277ee76aac930eace0877f6) Thanks [@mjfwebb](https://github.com/mjfwebb)! - Add filtering on 1 to 1 relationship custom cypher fields

### Patch Changes

- [#5738](https://github.com/neo4j/graphql/pull/5738) [`c6ea37d`](https://github.com/neo4j/graphql/commit/c6ea37dd0ec8485812906bbb7a3b09ae27a54c2f) Thanks [@angrykoala](https://github.com/angrykoala)! - Add deprecation warning when using `@unique`

- [#5771](https://github.com/neo4j/graphql/pull/5771) [`c56f9b0`](https://github.com/neo4j/graphql/commit/c56f9b03b10c833099cf9a876b9a62278c152465) Thanks [@MacondoExpress](https://github.com/MacondoExpress)! - Deprecate implicit `SET`:

```graphql
mutation {
updateMovies(update: { id: "2" }) {
movies {
id
}
}
}
```

in favour of the explicit `_SET` version:

```graphql
mutation {
updateMovies(update: { id_SET: "2" }) {
movies {
id
}
}
}
```

- [#5771](https://github.com/neo4j/graphql/pull/5771) [`f624668`](https://github.com/neo4j/graphql/commit/f624668345939c34dc2f4af56315922ec376d585) Thanks [@MacondoExpress](https://github.com/MacondoExpress)! - Added `implicitSet` to the `excludeDeprecatedFields` setting, to disable generation of the deprecated mutation field without the suffix `_SET`.

- [#5758](https://github.com/neo4j/graphql/pull/5758) [`7521476`](https://github.com/neo4j/graphql/commit/752147634df57dcfc167e9b1e13943728b80e6e8) Thanks [@angrykoala](https://github.com/angrykoala)! - Argument `overwrite` in `connect` operations has been deprecated

- [#5748](https://github.com/neo4j/graphql/pull/5748) [`f23bb91`](https://github.com/neo4j/graphql/commit/f23bb91a8afc0ff5d7ca5f0c4d8f867d30127e0b) Thanks [@darrellwarde](https://github.com/darrellwarde)! - The `connectOrCreate` operation has been deprecated and will be removed in the next major version of the Neo4j GraphQL Library. Its implementation has always been more limited than the other operations, so the decision has been taken to remove it for the time being with a view of potentially refocussing on it again in the future.

- [#5764](https://github.com/neo4j/graphql/pull/5764) [`1ec1bd3`](https://github.com/neo4j/graphql/commit/1ec1bd35a375d3f42e394fffe2d74f62bb4c8359) Thanks [@darrellwarde](https://github.com/darrellwarde)! - Fix issues #5759 and #5760 to do with sorting vector search results

## 6.0.0

### Major 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.0.0",
"version": "6.1.0",
"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@workspace:packages/graphql":
"@neo4j/graphql@npm:^6.0.0, @neo4j/graphql@npm:^6.1.0, @neo4j/graphql@workspace:packages/graphql":
version: 0.0.0-use.local
resolution: "@neo4j/graphql@workspace:packages/graphql"
dependencies:
Expand Down Expand Up @@ -3787,7 +3787,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.0.0"
"@neo4j/graphql": "npm:^6.1.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 da2e743

Please sign in to comment.