Releases: thiagodp/concordialang
Releases · thiagodp/concordialang
v0.86.1
v0.86.0
v0.85.2
v0.85.1
v0.85.0
- Add support to command execution in Concordia and CodeceptJS plugins
- CodeceptJS plugins now also update
codecept.json
in case of not havingDbHelper
orCmdHelper
configured.
v0.84.2
v0.84.1
v0.84.0
Changes CodeceptJS plugin installation and execution
- Installation now does not create a local NodeJS project (as introduced in v0.83.0)
- Execution now:
- Creates a local NodeJS project if needed
- Detects dependencies not installed and install them
- Plugin messages and output were improved
Note: Executing concordia --plugin-install codeceptjs
after updating is NOT NEEDED ANYMORE.
v0.83.2
v0.83.1
Improve SQL support for JSON and CSV databases:
- INSERT now supports INTO
- For example:
'INSERT INTO [MyDB] VALUES { "name": "Mary", "age": 21 }'
- For example:
- DELETE now supports FROM
- For example:
'DELETE FROM [MyDB] WHERE name = "Mary"'
- For example:
Note: The original syntax supported by database-js did not allowed these keywords.