Skip to content

Commit b2101df

Browse files
authored
Merge pull request #557 from neo4j/changeset-release/main
Release new version - changesets
2 parents 1598a77 + 43dcb8e commit b2101df

File tree

4 files changed

+24
-27
lines changed

4 files changed

+24
-27
lines changed

.changeset/crazy-signs-kick.md

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

.changeset/lazy-buckets-peel.md

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

CHANGELOG.md

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

3+
## 2.7.2
4+
5+
### Patch Changes
6+
7+
- [#554](https://github.com/neo4j/cypher-builder/pull/554) [`e3278f8`](https://github.com/neo4j/cypher-builder/commit/e3278f824bb28714c64edb94d1e1baf537394eb7) Thanks [@angrykoala](https://github.com/angrykoala)! - Deprecates `Call.importWith` in favor of scope variables in `Call` constructor
8+
9+
- [#554](https://github.com/neo4j/cypher-builder/pull/554) [`a9af397`](https://github.com/neo4j/cypher-builder/commit/a9af3979cf19f56bcc30b18224507ca7a498e906) Thanks [@angrykoala](https://github.com/angrykoala)! - Deprecate apoc functions and procedures. These will no longer be supported in version 3 of Cypher Builder:
10+
- `apoc.date.convertFormat`
11+
- `apoc.util.validate`
12+
- `apoc.util.validatePredicate`
13+
- `apoc.cypher.runFirstColumnMany`
14+
- `apoc.cypher.runFirstColumnSingle`
15+
16+
These can still be used by using the `Function` class directly:
17+
18+
```js
19+
const convertFormat = new Cypher.Function("apoc.date.convertFormat", [
20+
new Cypher.Variable(),
21+
new Cypher.Literal("iso_zoned_date_time"),
22+
new Cypher.Literal("iso_offset_date_time"),
23+
]);
24+
```
25+
326
## 2.7.1
427

528
### 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.7.1",
3+
"version": "2.7.2",
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)