Skip to content

Commit

Permalink
Merge pull request #495 from neo4j/changeset-release/main
Browse files Browse the repository at this point in the history
Release new version - changesets
  • Loading branch information
angrykoala authored Jan 23, 2025
2 parents 00a9924 + c46caad commit 08b9440
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
5 changes: 0 additions & 5 deletions .changeset/forty-kiwis-grow.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/sixty-hornets-remain.md

This file was deleted.

24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @neo4j/cypher-builder

## 2.3.0

### Minor Changes

- [#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:

```js
const { cypher } = matchQuery.build({
cypherVersion: "5",
});
```

This prepends the Cypher version to the query:

```cypher
CYPHER 5
MATCH (this0:Movie)
RETURN this0
```

### Patch Changes

- [#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.

## 2.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@neo4j/cypher-builder",
"version": "2.2.1",
"version": "2.3.0",
"description": "A programmatic API for building Cypher queries for Neo4j",
"exports": "./dist/index.js",
"main": "./dist/index.js",
Expand Down

0 comments on commit 08b9440

Please sign in to comment.