Skip to content

Commit

Permalink
🐛 Make AQL trail placeholders default to explicit null values
Browse files Browse the repository at this point in the history
  • Loading branch information
skerit committed Feb 26, 2024
1 parent a11703c commit aaef462
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.4.0-alpha.4 (WIP)

* Make `AQL` trail placeholders default to explicit `null` values

## 1.4.0-alpha.3 (2024-02-25)

* Also define the shared constants as globals in Hawkejs templates
Expand Down
2 changes: 1 addition & 1 deletion lib/app/helper_datasource/00-nosql_datasource.js
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ NoSQL.setStatic(function convertAQLToConditions(query) {

switch (value.type) {
case 'name':
value = Trail.fromDot(value.value);
value = Trail.fromDot(value.value).ifNull(null);
break;

case 'number':
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alchemymvc",
"description": "MVC framework for Node.js",
"version": "1.4.0-alpha.3",
"version": "1.4.0-alpha.4",
"author": "Jelle De Loecker <jelle@elevenways.be>",
"keywords": [
"alchemy",
Expand Down

0 comments on commit aaef462

Please sign in to comment.