Skip to content

Commit

Permalink
Merge pull request #5646 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 Oct 9, 2024
2 parents a78088f + f803084 commit a166629
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 53 deletions.
5 changes: 0 additions & 5 deletions .changeset/late-eggs-fold.md

This file was deleted.

41 changes: 0 additions & 41 deletions .changeset/modern-pugs-film.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.8.0",
"@neo4j/graphql": "^5.9.0",
"graphql": "16.9.0",
"graphql-tag": "^2.12.6",
"neo4j-driver": "^5.8.0"
Expand Down
46 changes: 46 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,51 @@
# @neo4j/graphql

## 5.9.0

### Minor Changes

- [#5633](https://github.com/neo4j/graphql/pull/5633) [`cfa296b`](https://github.com/neo4j/graphql/commit/cfa296babdee3e8bcdb3f6a4eb2250bedc6debc4) Thanks [@angrykoala](https://github.com/angrykoala)! - Remove connection wrapper on vector queries.

_Previous:_

```graphql
query MovieVectorQuery($vector: [Float!]!) {
myVectorQuery(vector: $vector) {
moviesConnection {
edges {
cursor
score
node {
title
}
}
}
}
}
```

_Now:_

```graphql
query MovieVectorQuery($vector: [Float!]!) {
myVectorQuery(vector: $vector) {
edges {
cursor
score
node {
title
}
}
}
}
```

Vector index is now a stable feature.

### Patch Changes

- [#5647](https://github.com/neo4j/graphql/pull/5647) [`9feeda9`](https://github.com/neo4j/graphql/commit/9feeda99961292537096fb30e76871a3d27e1d6d) Thanks [@MacondoExpress](https://github.com/MacondoExpress)! - Fix a bug that causes an invalid Cypher generated for authorization filters in the connectOrCreate operation.

## 5.8.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": "5.8.0",
"version": "5.9.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.9.0

### Patch Changes

- Updated dependencies [[`9feeda9`](https://github.com/neo4j/graphql/commit/9feeda99961292537096fb30e76871a3d27e1d6d), [`cfa296b`](https://github.com/neo4j/graphql/commit/cfa296babdee3e8bcdb3f6a4eb2250bedc6debc4)]:
- @neo4j/graphql@5.9.0

## 5.8.0

### 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.8.0",
"version": "5.9.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.8.0",
"@neo4j/graphql": "^5.9.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 @@ -2824,7 +2824,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.8.0"
"@neo4j/graphql": "npm:^5.9.0"
"@types/jest": "npm:29.5.13"
"@types/node": "npm:20.16.11"
camelcase: "npm:6.3.0"
Expand All @@ -2848,7 +2848,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.8.0, @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.9.0, @neo4j/graphql@workspace:packages/graphql":
version: 0.0.0-use.local
resolution: "@neo4j/graphql@workspace:packages/graphql"
dependencies:
Expand Down Expand Up @@ -5712,7 +5712,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.8.0"
"@neo4j/graphql": "npm:^5.9.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 a166629

Please # to comment.