Skip to content

Commit

Permalink
Merge pull request #4805 from neo4j/changeset-release/dev
Browse files Browse the repository at this point in the history
changesets for branch `dev`
  • Loading branch information
angrykoala authored Mar 6, 2024
2 parents fde6be7 + 729299d commit b4b82f9
Show file tree
Hide file tree
Showing 11 changed files with 71 additions and 60 deletions.
40 changes: 0 additions & 40 deletions .changeset/honest-pumpkins-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-penguins-relate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-nails-think.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.0.1",
"@neo4j/graphql": "^5.1.0",
"graphql": "16.8.1",
"graphql-tag": "^2.12.6",
"neo4j-driver": "^5.8.0"
Expand Down
7 changes: 7 additions & 0 deletions packages/graphql-toolbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @neo4j/graphql-toolbox

## 2.1.11

### Patch Changes

- Updated dependencies [[`c198de3`](https://github.com/neo4j/graphql/commit/c198de3cfa0d17e574bb261ccca65de45d350013), [`19c2a7a`](https://github.com/neo4j/graphql/commit/19c2a7ae9a768751222a99e754130a98a0695512), [`9a660fa`](https://github.com/neo4j/graphql/commit/9a660fa67b68b325d62efc945b1e91bb353a0637)]:
- @neo4j/graphql@5.1.0

## 2.1.10

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql-toolbox/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@neo4j/graphql-toolbox",
"private": true,
"version": "2.1.10",
"version": "2.1.11",
"description": "Developer UI For Neo4j GraphQL",
"exports": "./dist/main.js",
"main": "./dist/main.js",
Expand Down Expand Up @@ -52,7 +52,7 @@
"@graphiql/react": "0.20.3",
"@neo4j-ndl/base": "2.7.1",
"@neo4j-ndl/react": "2.8.1",
"@neo4j/graphql": "5.0.1",
"@neo4j/graphql": "5.1.0",
"@neo4j/introspector": "3.0.0",
"classnames": "2.5.1",
"cm6-graphql": "0.0.14",
Expand Down
47 changes: 47 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@
# @neo4j/graphql

## 5.1.0

### Minor Changes

- [#4821](https://github.com/neo4j/graphql/pull/4821) [`c198de3`](https://github.com/neo4j/graphql/commit/c198de3cfa0d17e574bb261ccca65de45d350013) Thanks [@angrykoala](https://github.com/angrykoala)! - Support for top-level connection query on interfaces. For example:

_Typedefs_

```graphql
interface Show {
title: String!
}

type Movie implements Show {
title: String!
cost: Float
}

type Series implements Show {
title: String!
episodes: Int
}
```

_Query_

```graphql
query {
showsConnection(where: { title_CONTAINS: "The Matrix" }) {
edges {
node {
title
... on Movie {
cost
}
}
}
}
}
```

### Patch Changes

- [#4797](https://github.com/neo4j/graphql/pull/4797) [`19c2a7a`](https://github.com/neo4j/graphql/commit/19c2a7ae9a768751222a99e754130a98a0695512) Thanks [@a-alle](https://github.com/a-alle)! - Fix user defined deprecated directives not propagated on all generated types

- [#4798](https://github.com/neo4j/graphql/pull/4798) [`9a660fa`](https://github.com/neo4j/graphql/commit/9a660fa67b68b325d62efc945b1e91bb353a0637) Thanks [@MacondoExpress](https://github.com/MacondoExpress)! - Fixed bug that caused authorization to not be applied on `@cypher` fields in some situations.

## 5.0.1

### 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.0.1",
"version": "5.1.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.1.0

### Patch Changes

- Updated dependencies [[`c198de3`](https://github.com/neo4j/graphql/commit/c198de3cfa0d17e574bb261ccca65de45d350013), [`19c2a7a`](https://github.com/neo4j/graphql/commit/19c2a7ae9a768751222a99e754130a98a0695512), [`9a660fa`](https://github.com/neo4j/graphql/commit/9a660fa67b68b325d62efc945b1e91bb353a0637)]:
- @neo4j/graphql@5.1.0

## 5.0.1

### 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.0.1",
"version": "5.1.0",
"description": "GraphQL powered OGM for Neo4j and Javascript applications",
"keywords": [
"neo4j",
Expand Down Expand Up @@ -38,7 +38,7 @@
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-tools/merge": "^9.0.0",
"@neo4j/graphql": "^5.0.1",
"@neo4j/graphql": "^5.1.0",
"prettier": "^2.7.1"
},
"peerDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3669,7 +3669,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.0.1"
"@neo4j/graphql": "npm:^5.1.0"
"@types/jest": "npm:29.5.12"
"@types/node": "npm:20.11.24"
camelcase: "npm:6.3.0"
Expand Down Expand Up @@ -3702,7 +3702,7 @@ __metadata:
"@graphiql/react": "npm:0.20.3"
"@neo4j-ndl/base": "npm:2.7.1"
"@neo4j-ndl/react": "npm:2.8.1"
"@neo4j/graphql": "npm:5.0.1"
"@neo4j/graphql": "npm:5.1.0"
"@neo4j/introspector": "npm:3.0.0"
"@playwright/test": "npm:1.42.1"
"@tsconfig/create-react-app": "npm:2.0.2"
Expand Down Expand Up @@ -3763,7 +3763,7 @@ __metadata:
languageName: node
linkType: soft

"@neo4j/graphql@npm:5.0.1, @neo4j/graphql@npm:^5.0.0, @neo4j/graphql@npm:^5.0.1, @neo4j/graphql@workspace:packages/graphql":
"@neo4j/graphql@npm:5.1.0, @neo4j/graphql@npm:^5.0.0, @neo4j/graphql@npm:^5.1.0, @neo4j/graphql@workspace:packages/graphql":
version: 0.0.0-use.local
resolution: "@neo4j/graphql@workspace:packages/graphql"
dependencies:
Expand Down Expand Up @@ -8984,7 +8984,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.0.1"
"@neo4j/graphql": "npm:^5.1.0"
fork-ts-checker-webpack-plugin: "npm:9.0.2"
graphql: "npm:16.8.1"
graphql-tag: "npm:^2.12.6"
Expand Down

0 comments on commit b4b82f9

Please sign in to comment.