Skip to content

Commit 08b9440

Browse files
authored
Merge pull request #495 from neo4j/changeset-release/main
Release new version - changesets
2 parents 00a9924 + c46caad commit 08b9440

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

.changeset/forty-kiwis-grow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sixty-hornets-remain.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @neo4j/cypher-builder
22

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- [#494](https://github.com/neo4j/cypher-builder/pull/494) [`a775b64`](https://github.com/neo4j/cypher-builder/commit/a775b64d8c078f96490a71ba6488b280ed80b817) Thanks [@angrykoala](https://github.com/angrykoala)! - Add cypherVersion parameter in build:
8+
9+
```js
10+
const { cypher } = matchQuery.build({
11+
cypherVersion: "5",
12+
});
13+
```
14+
15+
This prepends the Cypher version to the query:
16+
17+
```cypher
18+
CYPHER 5
19+
MATCH (this0:Movie)
20+
RETURN this0
21+
```
22+
23+
### Patch Changes
24+
25+
- [#493](https://github.com/neo4j/cypher-builder/pull/493) [`69ecd03`](https://github.com/neo4j/cypher-builder/commit/69ecd0395414dd27553aec32f0c6878beff2a03c) Thanks [@angrykoala](https://github.com/angrykoala)! - Export the following types: `When`, `IsType`, `ListType`, `BooleanOp` `MathOp`. These types were returned by some functions or methods, but the types themselves were not exported.
26+
327
## 2.2.1
428

529
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@neo4j/cypher-builder",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "A programmatic API for building Cypher queries for Neo4j",
55
"exports": "./dist/index.js",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)