Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

[master < ] MAGE 1.10.0 changelog #1007

Merged
merged 4 commits into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion mage/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,23 @@ title: Changelog
sidebar_label: Changelog
---

## v1.10.0 - Aug 23, 2023

### Features and improvements

- You can use the [`label` module](/query-modules/cpp/label.md) to check whether
a node has the given label. [#304](https://github.com/memgraph/mage/pull/304)
- Time zones don’t have to be difficult to work with. The [`date` module](/query-modules/python/date.md) provides utilities for date and time operations. [#291](https://github.com/memgraph/mage/pull/291)
- The [`text` module](/query-modules/cpp/text.md) simplifies string concatenation
and supports custom delimiters. [#287](https://github.com/memgraph/mage/pull/287)

### Bug Fixes

- LLM prompts returned by the [`llm_util` module](/query-modules/python/llm-util.md) now list node and relationship properties in a consistent order. [#324](https://github.com/memgraph/mage/pull/324)

## v1.9.0 - Aug 03, 2023

## Features and improvements
### Features and improvements

- With the new [`collections` module](/query-modules/cpp/collections.md) you can
filter, sort and modify lists within Cypher queries.
Expand Down
2 changes: 1 addition & 1 deletion mage/query-modules/cpp/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ style={{

The `text` module offers a toolkit for manipulating strings.

[![docs-source](https://img.shields.io/badge/source-map-FB6E00?logo=github&style=for-the-badge)](https://github.com/memgraph/mage/tree/main/cpp/map_module)
[![docs-source](https://img.shields.io/badge/source-text-FB6E00?logo=github&style=for-the-badge)](https://github.com/memgraph/mage/tree/main/cpp/text_module)

| Trait | Value |
| ------------------- | ----------------------------------------------------- |
Expand Down
Loading