Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 675 Bytes

CHANGELOG.md

File metadata and controls

39 lines (29 loc) · 675 Bytes

Changelog

4.2.0

  • If you pass a null as an attribute value, it will not create a foreign key row that value.
await make(db.Movie, { directorId: null })

// previously would create an extra db.Director entry
// not it does not

2.2.0

  • Bugfix: Limit precision of ContentTags.confidence. This will fix the following issue:
  Difference:

    {
      data: {
        node: {
          autogenerated: true,
  -       confidence: 0.059,
  +       confidence: 0.059000000000000004,
          content: Object { … },
          id: 'Tag:1',
          name: 'Principal',
        },
      },
    }

2.1.0

  • Added ContentTags and Tags tables