Skip to content

Releases: wandeber/agnese

v0.6.3

13 Mar 00:42
Compare
Choose a tag to compare

Update version and Quara.

v0.5.5

02 Sep 02:06
Compare
Choose a tag to compare

Allow (again) defining map info before preprocessor manager.

v0.5.4

02 Sep 01:33
Compare
Choose a tag to compare
  • Value is now always passed as the second parameter to preprocessors. Even when it is undefined.
  • Preprocessor's schema fixed.

v0.5.2

13 Jul 17:30
Compare
Choose a tag to compare

Now you can use JSON schemas with VSCode to enable autocompletion and validation! 💪

JSON:

{
  "$schema": "node_modules/agnese/schema/index.json",
  "value": {
    "type": "Integer",
    "fromPath": "characteristics.age"
  }
}

YAML:

You need to install the YAML extension.

# yaml-language-server: $schema=node_modules/agnese/schema/index.json
type: Object
fields:
  - name: parent
    value:
      default: Son Goku

v0.4.0

12 Jul 15:57
Compare
Choose a tag to compare

Now preprocessors allows to define an array of arguments with all the same features as FieldValue: default, fromPath, quara... ^^ Things like:

type: Integer
preprocessor:
  name: sum
  args:
    - fromPath: characteristics.height
    - default: 14

v0.3.1

02 Jul 11:31
Compare
Choose a tag to compare

Update vulnerable dependencies.

v0.3.0

01 Jun 13:04
Compare
Choose a tag to compare

Add value to switch and switch to value. SwitchValue.branches depreceted.

v0.2.1

27 May 13:40
Compare
Choose a tag to compare

Fix to make static certain Agnese members.

v0.2.0

27 May 12:54
Compare
Choose a tag to compare
  • Required Node version reduced to 10.
  • Allow traditional node require without ".default".

v0.1.0

26 May 23:56
Compare
Choose a tag to compare

Extend iterator to generate objects with custom property names.