Skip to content

Commit 99d469f

Browse files
committed
Add index types
Fixes DE-956. Fixes DE-957. Fixes DE-958.
1 parent f558557 commit 99d469f

File tree

4 files changed

+257
-100
lines changed

4 files changed

+257
-100
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@ This driver uses semantic versioning:
1414
- A change in the major version (e.g. 1.Y.Z -> 2.0.0) indicates _breaking_
1515
changes that require changes in your code to upgrade.
1616

17+
## [Unreleased]
18+
19+
### Added
20+
21+
- Added support for `mdi-prefixed` indexes (DE-956)
22+
23+
- Restored `fulltext` index type support (DE-957)
24+
25+
The `fulltext` index type is still no longer supported for creating new
26+
indexes but can be used to cast existing indexes from `IndexDescription`.
27+
28+
- Added support for `edge` indexes (DE-958)
29+
30+
The `SystemIndexDescription` type now includes the `EdgeIndexDescription`
31+
type as well as the `PrimaryIndexDescription` type.
32+
1733
## [10.0.0-rc.0] - 2024-12-10
1834

1935
This is a major release and breaks backwards compatibility.

src/administration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export type ServerStatusInformation = {
142142
/**
143143
* Server operation mode.
144144
*
145-
* @deprecated use `operationMode` instead
145+
* @deprecated Use `operationMode` instead
146146
*/
147147
mode: "server" | "console";
148148
/**

0 commit comments

Comments
 (0)