Skip to content

Releases: thiagodp/concordialang

v0.86.1

16 Jun 14:12
Compare
Choose a tag to compare

Fixes #20

v0.86.0

16 Jun 00:38
Compare
Choose a tag to compare
  • UI literals now accept escaped CSS locators (#19). For example:
Then I see <ul \> li \> div \> a>

locate ul > li > div > a.

v0.85.2

15 Jun 22:53
Compare
Choose a tag to compare

Closes #18

v0.85.1

15 Jun 22:08
Compare
Choose a tag to compare
  • Fixes #17
  • Add variations for CLI options (e.g., --no-testcase is an alternative to --no-test-case)
  • Improves Portuguese documentation

v0.85.0

10 Jun 22:53
Compare
Choose a tag to compare
  • Add support to command execution in Concordia and CodeceptJS plugins
  • CodeceptJS plugins now also update codecept.json in case of not having DbHelper or CmdHelper configured.

v0.84.2

10 Jun 22:58
Compare
Choose a tag to compare

Fixes #14

v0.84.1

10 Jun 15:09
Compare
Choose a tag to compare

Fix #13

v0.84.0

10 Jun 13:55
Compare
Choose a tag to compare

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

08 Jun 15:08
Compare
Choose a tag to compare
  • Improve Portuguese vocabulary for beforeAll and afterAll
  • Improve language documentation

v0.83.1

08 Jun 14:13
Compare
Choose a tag to compare

Improve SQL support for JSON and CSV databases:

  • INSERT now supports INTO
    • For example: 'INSERT INTO [MyDB] VALUES { "name": "Mary", "age": 21 }'
  • DELETE now supports FROM
    • For example: 'DELETE FROM [MyDB] WHERE name = "Mary"'

Note: The original syntax supported by database-js did not allowed these keywords.