Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

prisma-json-schema-generator

valentinpalkovic50.4kMIT5.1.5

JSON generator for prisma schema

prisma2, prisma, prisma-generator, prisma-schema, code-generation, json

readme

Actions Status Code QL npm GitHub license semantic-release Open Source? Yes!

Prisma JSON Schema Generator

A generator, which takes a Prisma 2 schema.prisma and generates a JSON Schema in version 7 of the specification (https://json-schema.org/).

Getting Started

1. Install

npm:

npm install prisma-json-schema-generator --save-dev

yarn:

yarn add -D prisma-json-schema-generator

2. Add the generator to the schema

generator jsonSchema {
  provider = "prisma-json-schema-generator"
}

With a custom output path (default=./json-schema)

generator jsonSchema {
  provider = "prisma-json-schema-generator"
  output = "custom-output-path"
}

Additional options

generator jsonSchema {
  provider = "prisma-json-schema-generator"
  keepRelationScalarFields = "true"
  schemaId = "some-schema-id"
  includeRequiredFields = "true"
  persistOriginalType = "true"
  forceAnyOf = "true"
}

The generator currently supports a few options

Key Default Value Description
keepRelationScalarFields "false" By default, the JSON Schema that's generated will output only objects for related model records. If set to "true", this will cause the generator to also output foreign key fields for related records
keepRelationFields "true" Determines whether to include fields from related models in the generated schema. Setting it to "false" allows excluding related model fields from the schema.
schemaId undefined Add an id to the generated schema. All references will include the schema id
includeRequiredFields "false" If this flag is "true" all required scalar prisma fields that do not have a default value, will be added to the required properties field for that schema definition.
persistOriginalType "false" If this flag is "true" the original type will be outputed under the property key "originalType"
forceAnyOf "false" If this flag is "true" the union types will be forced to use anyOf. Check contradictory types for details

3. Run generation

prisma:

prisma generate

nexus with prisma plugin:

nexus build

Supported Node Versions

Node Version Support
(Maintenance LTS) 18 :heavy_check_mark:
(LTS) 20 :heavy_check_mark:
(Current) 21 :heavy_check_mark:

Examples

PostgreSQL

This generator converts a prisma schema like this:

datasource db {
    provider = "postgresql"
    url      = env("DATABASE_URL")
}

model User {
    id                  Int      @id @default(autoincrement())
    // Double Slash Comment: It will NOT show up in JSON schema
    createdAt           DateTime @default(now())
    /// Triple Slash Comment: It will show up in JSON schema [EMAIL]
    email               String   @unique
    weight              Float?
    is18                Boolean?
    name                String?
    number              BigInt   @default(34534535435353)
    favouriteDecimal    Decimal
    bytes               Bytes /// Triple Slash Inline Comment: It will show up in JSON schema [BYTES]
    successorId         Int?     @unique
    successor           User?    @relation("BlogOwnerHistory", fields: [successorId], references: [id])
    predecessor         User?    @relation("BlogOwnerHistory")
    role                Role     @default(USER)
    posts               Post[]
    keywords            String[]
    biography           Json
}

model Post {
    id     Int   @id @default(autoincrement())
    user   User? @relation(fields: [userId], references: [id])
    userId Int?
}

enum Role {
    USER
    ADMIN
}

into:

{
    $schema: 'http://json-schema.org/draft-07/schema#',
    definitions: {
        Post: {
            properties: {
                id: { type: 'integer' },
                user: {
                    anyOf: [
                        { $ref: '#/definitions/User' },
                        { type: 'null' },
                    ],
                },
            },
            type: 'object',
        },
        User: {
            properties: {
                biography: {
                    type: [
                        'number',
                        'string',
                        'boolean',
                        'object',
                        'array',
                        'null'
                    ],
                },
                createdAt: { format: 'date-time', type: 'string' },
                email: {
                    description: 'Triple Slash Comment: Will show up in JSON schema [EMAIL]',
                    type: 'string'
                },
                id: { type: 'integer' },
                is18: { type: ['boolean', 'null'] },
                keywords: { items: { type: 'string' }, type: 'array' },
                name: { type: ['string', 'null'] },
                number: { type: 'integer', default: '34534535435353' },
                bytes: {
                    description: 'Triple Slash Inline Comment: Will show up in JSON schema [BYTES]',
                    type: 'string'
                },
                favouriteDecimal: { type: 'number' },
                posts: {
                    items: { $ref: '#/definitions/Post' },
                    type: 'array',
                },
                predecessor: {
                    anyOf: [
                        { $ref: '#/definitions/User' },
                        { type: 'null' },
                    ],
                },
                role: { enum: ['USER', 'ADMIN'], type: 'string', default: 'USER' },
                successor: {
                    anyOf: [
                        { $ref: '#/definitions/User' },
                        { type: 'null' },
                    ],
                },
                weight: { type: ['integer', 'null'] },
            },
            type: 'object',
        },
    },
    properties: {
        post: { $ref: '#/definitions/Post' },
        user: { $ref: '#/definitions/User' },
    },
    type: 'object',
}

So the following input will correctly be validated:

{
    post: {
        id: 0,
        user: {
            id: 100,
        },
    },
    user: {
        id: 10,
        createdAt: '1997-07-16T19:20:30.45+01:00',
        email: 'jan@scharnow.city',
        biography: {
            bornIn: 'Scharnow',
        },
        is18: true,
        keywords: ['prisma2', 'json-schema', 'generator'],
        name: null,
        posts: [
            {
                id: 4,
            },
            {
                id: 20,
            },
        ],
        predecessor: {
            id: 10,
            email: 'horst@wassermann.de',
        },
        successor: null,
        role: 'USER',
        weight: 10.14,
    },
}

MongoDB

The generator also takes care of composite types in MongoDB:

datasource db {
    provider = "mongodb"
    url      = env("DATABASE_URL")
}

model User {
    id      String @id @default(auto()) @map("_id") @db.ObjectId
    photos  Photo[]
}

type Photo {
    height Int      @default(200)
    width  Int      @default(100)
    url    String
}

Output:

{
    $schema: 'http://json-schema.org/draft-07/schema#',
    definitions: {
        User: {
            properties: {
                id: { type: 'string' },
                photos: {
                    items: { $ref: '#/definitions/Photo' },
                    type: 'array',
                },
            },
            type: 'object',
        },
        Photo: {
            properties: {
                height: {
                    type: 'integer',
                    default: 200,
                },
                width: {
                    type: 'integer',
                    default: 100,
                },
                url: {
                    type: 'string',
                },
            },
            type: 'object',
        },
    },
    properties: {
        user: { $ref: '#/definitions/User' },
    },
    type: 'object',
}

No relation fields

For some use cases, it might be useful to not include relation fields in the generated schema. This can be achieved by setting the keepRelationFields option to "false" and the keepRelationScalarFields option to "true". For example if you want to use the generated schema to validate POST request object for instance, you might want to use this option.

datasource db {
    provider = "postgresql"
    url      = env("DATABASE_URL")
}

generator jsonSchema {
  provider                 = "prisma-json-schema-generator"
  keepRelationScalarFields = "true" // default is "false"
  keepRelationFields       = "false" // default is "true"
}

model User {
    id                  Int      @id @default(autoincrement())
    createdAt           DateTime @default(now())
    email               String   @unique
    weight              Float?
    is18                Boolean?
    name                String?
    number              BigInt   @default(34534535435353)
    favouriteDecimal    Decimal
    bytes               Bytes
    successorId         Int?     @unique
    successor           User?    @relation("BlogOwnerHistory", fields: [successorId], references: [id])
    predecessor         User?    @relation("BlogOwnerHistory")
    role                Role     @default(USER)
    posts               Post[]
    keywords            String[]
    biography           Json
}

model Post {
    id     Int   @id @default(autoincrement())
    user   User? @relation(fields: [userId], references: [id])
    userId Int?
}

enum Role {
    USER
    ADMIN
}

Output:

{
    $schema: 'http://json-schema.org/draft-07/schema#',
    definitions: {
        Post: {
            properties: {
                id: { type: 'integer' },
                userId: { type: ['integer', 'null'] },
            },
            type: 'object',
        },
        User: {
            properties: {
                biography: {
                    type: [
                        'number',
                        'string',
                        'boolean',
                        'object',
                        'array',
                        'null'
                    ],
                },
                createdAt: { format: 'date-time', type: 'string' },
                email: {
                    description: 'Triple Slash Comment: Will show up in JSON schema [EMAIL]',
                    type: 'string'
                },
                id: { type: 'integer' },
                is18: { type: ['boolean', 'null'] },
                keywords: { items: { type: 'string' }, type: 'array' },
                name: { type: ['string', 'null'] },
                number: { type: 'integer', default: '34534535435353' },
                bytes: {
                    description: 'Triple Slash Inline Comment: Will show up in JSON schema [BYTES]',
                    type: 'string'
                },
                favouriteDecimal: { type: 'number' },
                role: { enum: ['USER', 'ADMIN'], type: 'string', default: 'USER' },
                successorId: { type: ['integer', 'null'] },
                weight: { type: ['integer', 'null'] },
            },
            type: 'object',
        },
    },
    properties: {
        post: { $ref: '#/definitions/Post' },
        user: { $ref: '#/definitions/User' },
    },
    type: 'object',
}

License: MIT

Copyright (c) 2020 Valentin Palkovič

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

changelog

5.1.5 (2024-06-22)

Bug Fixes

Dependencies and Other Build Updates

  • dev-deps: bump braces from 3.0.2 to 3.0.3 (53d842d)

5.1.4 (2024-05-31)

Bug Fixes

  • dist directory structure error (528d067)

Dependencies and Other Build Updates

  • deps: bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 (cae9cad)

5.1.3 (2024-04-16)

Dependencies and Other Build Updates

  • deps: bump dependabot/fetch-metadata from 1.7.0 to 2.0.0 (bbc036b)

5.1.2 (2024-04-16)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 5.7.0 to 5.7.1 (2127a4c)
  • deps: bump @prisma/generator-helper from 5.7.1 to 5.8.0 (e222241)
  • deps: bump @prisma/generator-helper from 5.8.0 to 5.8.1 (39908a6)
  • deps: bump @prisma/internals from 5.7.0 to 5.7.1 (af59fc5)
  • deps: bump @prisma/internals from 5.7.1 to 5.8.0 (95e0238)
  • deps: bump @prisma/internals from 5.8.0 to 5.8.1 (db80a31)
  • deps: bump actions/setup-node from 4.0.0 to 4.0.1 (effcee2)
  • deps: bump actions/setup-node from 4.0.1 to 4.0.2 (cca5e36)
  • deps: bump dependabot/fetch-metadata from 1.6.0 to 1.7.0 (b274fe8)
  • deps: bump github/codeql-action from 2 to 3 (#1348) (89a2cec)
  • dev-deps: bump @prisma/client from 5.7.0 to 5.7.1 (8c0a1fd)
  • dev-deps: bump @prisma/client from 5.7.1 to 5.8.0 (e792a9b)
  • dev-deps: bump @prisma/client from 5.8.0 to 5.8.1 (8827463)
  • dev-deps: bump @prisma/client from 5.8.1 to 5.9.0 (ec2ffb4)
  • dev-deps: bump @prisma/client from 5.9.0 to 5.9.1 (986733e)
  • dev-deps: bump @swc/cli from 0.1.63 to 0.1.65 (294769e)
  • dev-deps: bump @swc/cli from 0.1.65 to 0.3.0 (9588999)
  • dev-deps: bump @swc/cli from 0.3.0 to 0.3.2 (07341c5)
  • dev-deps: bump @swc/cli from 0.3.2 to 0.3.5 (79ae4e3)
  • dev-deps: bump @swc/cli from 0.3.5 to 0.3.6 (e333ba8)
  • dev-deps: bump @swc/cli from 0.3.6 to 0.3.9 (bc27b24)
  • dev-deps: bump @swc/core from 1.3.100 to 1.3.101 (13835bd)
  • dev-deps: bump @swc/core from 1.3.101 to 1.3.102 (13894a0)
  • dev-deps: bump @swc/core from 1.3.102 to 1.3.103 (3d8ede4)
  • dev-deps: bump @swc/core from 1.3.103 to 1.3.104 (2183d11)
  • dev-deps: bump @swc/core from 1.3.104 to 1.3.105 (71e0584)
  • dev-deps: bump @swc/core from 1.3.105 to 1.3.106 (998f577)
  • dev-deps: bump @swc/core from 1.3.106 to 1.3.107 (389061f)
  • dev-deps: bump @swc/core from 1.3.107 to 1.4.0 (2df6da5)
  • dev-deps: bump @swc/jest from 0.2.29 to 0.2.30 (b461678)
  • dev-deps: bump @swc/jest from 0.2.30 to 0.2.31 (3ada89b)
  • dev-deps: bump @swc/jest from 0.2.31 to 0.2.34 (f3e3b4e)
  • dev-deps: bump @swc/jest from 0.2.34 to 0.2.36 (46f65ed)
  • dev-deps: bump @types/jest from 29.5.11 to 29.5.12 (51528b2)
  • dev-deps: bump @types/node from 20.10.4 to 20.10.5 (ca7f82f)
  • dev-deps: bump @types/node from 20.10.5 to 20.10.6 (7ddcc68)
  • dev-deps: bump @types/node from 20.10.6 to 20.10.7 (943c152)
  • dev-deps: bump @types/node from 20.10.7 to 20.10.8 (b07c67f)
  • dev-deps: bump @types/node from 20.10.8 to 20.11.0 (45789df)
  • dev-deps: bump @types/node from 20.11.0 to 20.11.2 (086faba)
  • dev-deps: bump @types/node from 20.11.10 to 20.11.11 (fab9b17)
  • dev-deps: bump @types/node from 20.11.11 to 20.11.14 (877b909)
  • dev-deps: bump @types/node from 20.11.14 to 20.11.16 (f7135bd)
  • dev-deps: bump @types/node from 20.11.16 to 20.11.17 (4d6ea80)
  • dev-deps: bump @types/node from 20.11.2 to 20.11.4 (952a969)
  • dev-deps: bump @types/node from 20.11.4 to 20.11.5 (9a456f4)
  • dev-deps: bump @types/node from 20.11.5 to 20.11.6 (5250b22)
  • dev-deps: bump @types/node from 20.11.6 to 20.11.7 (9b803d9)
  • dev-deps: bump @types/node from 20.11.7 to 20.11.10 (b7b647e)
  • dev-deps: bump @typescript-eslint/eslint-plugin (3ed98a9)
  • dev-deps: bump @typescript-eslint/eslint-plugin (cd9a97c)
  • dev-deps: bump @typescript-eslint/eslint-plugin (6f6eb9e)
  • dev-deps: bump @typescript-eslint/eslint-plugin (a5e551b)
  • dev-deps: bump @typescript-eslint/eslint-plugin (bfecf43)
  • dev-deps: bump @typescript-eslint/eslint-plugin (de461c6)
  • dev-deps: bump @typescript-eslint/eslint-plugin (db44ec9)
  • dev-deps: bump @typescript-eslint/eslint-plugin (43ffe90)
  • dev-deps: bump @typescript-eslint/eslint-plugin (482b60c)
  • dev-deps: bump @typescript-eslint/parser from 6.14.0 to 6.15.0 (d81811d)
  • dev-deps: bump @typescript-eslint/parser from 6.15.0 to 6.16.0 (f2c55ae)
  • dev-deps: bump @typescript-eslint/parser from 6.16.0 to 6.17.0 (8d08888)
  • dev-deps: bump @typescript-eslint/parser from 6.17.0 to 6.18.0 (b006e64)
  • dev-deps: bump @typescript-eslint/parser from 6.18.0 to 6.18.1 (ce368c5)
  • dev-deps: bump @typescript-eslint/parser from 6.18.1 to 6.19.0 (ef67e41)
  • dev-deps: bump @typescript-eslint/parser from 6.19.0 to 6.19.1 (d3b02a6)
  • dev-deps: bump @typescript-eslint/parser from 6.19.1 to 6.20.0 (64c43da)
  • dev-deps: bump @typescript-eslint/parser from 6.20.0 to 6.21.0 (eebfceb)
  • dev-deps: bump browserslist from 4.22.2 to 4.22.3 (57048a7)
  • dev-deps: bump eslint from 8.55.0 to 8.56.0 (8fb6a88)
  • dev-deps: bump eslint-plugin-jest from 27.6.0 to 27.6.1 (d6e445b)
  • dev-deps: bump eslint-plugin-jest from 27.6.1 to 27.6.2 (d68c6cb)
  • dev-deps: bump eslint-plugin-jest from 27.6.2 to 27.6.3 (074af2f)
  • dev-deps: bump eslint-plugin-prettier from 5.0.1 to 5.1.0 (0b9edda)
  • dev-deps: bump eslint-plugin-prettier from 5.1.0 to 5.1.1 (062ab5f)
  • dev-deps: bump eslint-plugin-prettier from 5.1.1 to 5.1.2 (3450efa)
  • dev-deps: bump eslint-plugin-prettier from 5.1.2 to 5.1.3 (297b120)
  • dev-deps: bump prisma from 5.7.0 to 5.7.1 (15a5be7)
  • dev-deps: bump prisma from 5.7.1 to 5.8.0 (38566c4)
  • dev-deps: bump prisma from 5.8.0 to 5.8.1 (e7f91e3)
  • dev-deps: bump prisma from 5.8.1 to 5.9.0 (01d9c41)
  • dev-deps: bump prisma from 5.9.0 to 5.9.1 (8d08a2d)

5.1.1 (2023-12-12)

Bug Fixes

  • filter all relation fields on keepRelationFields: 'false' (#1337) (1771afe)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 5.6.0 to 5.7.0 (90a8ba3)
  • deps: bump @prisma/internals from 5.6.0 to 5.7.0 (0c0c641)
  • dev-deps: bump @prisma/client from 5.6.0 to 5.7.0 (e162c22)
  • dev-deps: bump @swc/core from 1.3.99 to 1.3.100 (b8acb38)
  • dev-deps: bump @types/jest from 29.5.10 to 29.5.11 (f38873f)
  • dev-deps: bump @types/node from 20.10.1 to 20.10.2 (045b15e)
  • dev-deps: bump @types/node from 20.10.2 to 20.10.3 (747d7ed)
  • dev-deps: bump @types/node from 20.10.3 to 20.10.4 (ec5ba0f)
  • dev-deps: bump @typescript-eslint/eslint-plugin (24b7105)
  • dev-deps: bump @typescript-eslint/eslint-plugin (16bb9eb)
  • dev-deps: bump @typescript-eslint/parser from 6.13.1 to 6.13.2 (152ec87)
  • dev-deps: bump @typescript-eslint/parser from 6.13.2 to 6.14.0 (ee3160f)
  • dev-deps: bump browserslist from 4.22.1 to 4.22.2 (f130b66)
  • dev-deps: bump eslint from 8.54.0 to 8.55.0 (ac022e7)
  • dev-deps: bump eslint-config-prettier from 9.0.0 to 9.1.0 (c314e1b)
  • dev-deps: bump prisma from 5.6.0 to 5.7.0 (154ae46)
  • dev-deps: bump typescript from 5.3.2 to 5.3.3 (f555dd9)

5.1.0 (2023-11-30)

Features

Dependencies and Other Build Updates

  • dev-deps: bump @types/node from 20.10.0 to 20.10.1 (2bfddb5)
  • dev-deps: bump @types/node from 20.9.5 to 20.10.0 (e3bc7a3)
  • dev-deps: bump @typescript-eslint/eslint-plugin (34e566d)
  • dev-deps: bump @typescript-eslint/eslint-plugin (bbc14a1)
  • dev-deps: bump @typescript-eslint/parser from 6.12.0 to 6.13.0 (d5ccc5c)
  • dev-deps: bump @typescript-eslint/parser from 6.13.0 to 6.13.1 (2caae1f)

5.0.0 (2023-11-24)

⚠ BREAKING CHANGES

  • Drop Node.js v16.0.0

Features

4.1.0 (2023-11-24)

Features

Dependencies and Other Build Updates

  • dep-devs: Update prettier related dependencies (749595b)
  • deps: bump @prisma/generator-helper from 4.16.2 to 5.0.0 (8729751)
  • deps: bump @prisma/generator-helper from 5.0.0 to 5.1.0 (96d4e0d)
  • deps: bump @prisma/generator-helper from 5.1.0 to 5.1.1 (cb2f571)
  • deps: bump @prisma/generator-helper from 5.1.1 to 5.2.0 (7246c48)
  • deps: bump @prisma/generator-helper from 5.2.0 to 5.3.0 (3404abf)
  • deps: bump @prisma/generator-helper from 5.3.0 to 5.3.1 (07cc7e3)
  • deps: bump @prisma/generator-helper from 5.3.1 to 5.4.0 (ec72ca2)
  • deps: bump @prisma/generator-helper from 5.4.0 to 5.4.1 (6c0fb02)
  • deps: bump @prisma/generator-helper from 5.4.1 to 5.4.2 (a53af2b)
  • deps: bump @prisma/generator-helper from 5.4.2 to 5.5.0 (9884eda)
  • deps: bump @prisma/generator-helper from 5.5.0 to 5.5.2 (d9921d9)
  • deps: bump @prisma/generator-helper from 5.5.2 to 5.6.0 (e830c35)
  • deps: bump @prisma/internals from 4.16.2 to 5.0.0 (561cc85)
  • deps: bump @prisma/internals from 5.0.0 to 5.1.0 (51e5feb)
  • deps: bump @prisma/internals from 5.1.0 to 5.1.1 (591b026)
  • deps: bump @prisma/internals from 5.1.1 to 5.2.0 (8c1e1f1)
  • deps: bump @prisma/internals from 5.2.0 to 5.3.0 (146ebc3)
  • deps: bump @prisma/internals from 5.3.0 to 5.3.1 (bad9ffb)
  • deps: bump @prisma/internals from 5.3.1 to 5.4.0 (ce45223)
  • deps: bump @prisma/internals from 5.4.0 to 5.4.1 (b9c6c10)
  • deps: bump @prisma/internals from 5.4.1 to 5.4.2 (1a96e36)
  • deps: bump @prisma/internals from 5.4.2 to 5.5.0 (6f81868)
  • deps: bump @prisma/internals from 5.5.0 to 5.5.2 (c18ab73)
  • deps: bump @prisma/internals from 5.5.2 to 5.6.0 (ea54b7f)
  • deps: bump actions/checkout from 3 to 4 (6ae34df)
  • deps: bump actions/setup-node from 3.7.0 to 3.8.0 (3aa5854)
  • deps: bump actions/setup-node from 3.8.0 to 3.8.1 (afac08b)
  • deps: bump actions/setup-node from 3.8.1 to 4.0.0 (0010f57)
  • dev-deps: bump @babel/traverse from 7.22.17 to 7.23.2 (eb34170)
  • dev-deps: bump @prisma/client from 4.16.2 to 5.0.0 (ce1058e)
  • dev-deps: bump @prisma/client from 5.0.0 to 5.1.0 (2e04c98)
  • dev-deps: bump @prisma/client from 5.1.0 to 5.1.1 (c6c24c7)
  • dev-deps: bump @prisma/client from 5.1.1 to 5.2.0 (8205626)
  • dev-deps: bump @prisma/client from 5.2.0 to 5.3.0 (abf0398)
  • dev-deps: bump @prisma/client from 5.3.0 to 5.3.1 (64f83ef)
  • dev-deps: bump @prisma/client from 5.3.1 to 5.4.0 (a4ef797)
  • dev-deps: bump @prisma/client from 5.4.0 to 5.4.1 (294bf01)
  • dev-deps: bump @prisma/client from 5.4.1 to 5.4.2 (dc32fa6)
  • dev-deps: bump @prisma/client from 5.4.2 to 5.5.0 (bbf66a5)
  • dev-deps: bump @prisma/client from 5.5.0 to 5.5.2 (abf837c)
  • dev-deps: bump @prisma/client from 5.5.2 to 5.6.0 (60a0e7b)
  • dev-deps: bump @swc/cli from 0.1.62 to 0.1.63 (bbde158)
  • dev-deps: bump @swc/core from 1.3.68 to 1.3.71 (01ed0c0)
  • dev-deps: bump @swc/core from 1.3.71 to 1.3.74 (746ac75)
  • dev-deps: bump @swc/core from 1.3.74 to 1.3.75 (701a7f2)
  • dev-deps: bump @swc/core from 1.3.75 to 1.3.76 (8b3d47b)
  • dev-deps: bump @swc/core from 1.3.76 to 1.3.77 (5949ab7)
  • dev-deps: bump @swc/core from 1.3.77 to 1.3.78 (a25ab61)
  • dev-deps: bump @swc/core from 1.3.78 to 1.3.80 (e609098)
  • dev-deps: bump @swc/core from 1.3.80 to 1.3.81 (eff1250)
  • dev-deps: bump @swc/core from 1.3.81 to 1.3.82 (1332177)
  • dev-deps: bump @swc/core from 1.3.82 to 1.3.83 (3c7884e)
  • dev-deps: bump @swc/core from 1.3.83 to 1.3.84 (2a301d8)
  • dev-deps: bump @swc/core from 1.3.84 to 1.3.85 (ba74238)
  • dev-deps: bump @swc/core from 1.3.85 to 1.3.86 (5430b38)
  • dev-deps: bump @swc/core from 1.3.86 to 1.3.87 (aee2d13)
  • dev-deps: bump @swc/core from 1.3.87 to 1.3.89 (c2bb5c6)
  • dev-deps: bump @swc/core from 1.3.89 to 1.3.90 (42e0125)
  • dev-deps: bump @swc/core from 1.3.90 to 1.3.91 (6b9c4e5)
  • dev-deps: bump @swc/core from 1.3.91 to 1.3.92 (5a12ab0)
  • dev-deps: bump @swc/core from 1.3.92 to 1.3.93 (6751037)
  • dev-deps: bump @swc/core from 1.3.93 to 1.3.94 (f6b96ef)
  • dev-deps: bump @swc/core from 1.3.94 to 1.3.95 (7a0cd61)
  • dev-deps: bump @swc/core from 1.3.95 to 1.3.96 (8c77428)
  • dev-deps: bump @swc/core from 1.3.96 to 1.3.99 (298d564)
  • dev-deps: bump @swc/jest from 0.2.26 to 0.2.27 (d84cf79)
  • dev-deps: bump @swc/jest from 0.2.27 to 0.2.28 (dfc886b)
  • dev-deps: bump @swc/jest from 0.2.28 to 0.2.29 (0cd1210)
  • dev-deps: bump @types/jest from 29.5.2 to 29.5.3 (b0d7aa9)
  • dev-deps: bump @types/jest from 29.5.3 to 29.5.4 (1e566bd)
  • dev-deps: bump @types/jest from 29.5.4 to 29.5.5 (a1faace)
  • dev-deps: bump @types/jest from 29.5.5 to 29.5.6 (92edb1f)
  • dev-deps: bump @types/jest from 29.5.6 to 29.5.7 (45c0bff)
  • dev-deps: bump @types/jest from 29.5.7 to 29.5.8 (003f5e1)
  • dev-deps: bump @types/jest from 29.5.8 to 29.5.9 (09f2aa9)
  • dev-deps: bump @types/jest from 29.5.9 to 29.5.10 (93f29d0)
  • dev-deps: bump @types/json-schema from 7.0.12 to 7.0.13 (f2bd623)
  • dev-deps: bump @types/json-schema from 7.0.13 to 7.0.14 (f4a76e3)
  • dev-deps: bump @types/json-schema from 7.0.14 to 7.0.15 (233e499)
  • dev-deps: bump @types/node from 18.16.3 to 20.4.4 (b4c9859)
  • dev-deps: bump @types/node from 20.4.10 to 20.5.0 (6052ab9)
  • dev-deps: bump @types/node from 20.4.4 to 20.4.5 (87ecbed)
  • dev-deps: bump @types/node from 20.4.5 to 20.4.6 (56cdae1)
  • dev-deps: bump @types/node from 20.4.6 to 20.4.7 (bbb4189)
  • dev-deps: bump @types/node from 20.4.7 to 20.4.8 (0d23f08)
  • dev-deps: bump @types/node from 20.4.8 to 20.4.9 (9d51b8e)
  • dev-deps: bump @types/node from 20.4.9 to 20.4.10 (abb56c3)
  • dev-deps: bump @types/node from 20.5.0 to 20.5.1 (5f632cf)
  • dev-deps: bump @types/node from 20.5.1 to 20.5.3 (651d648)
  • dev-deps: bump @types/node from 20.5.3 to 20.5.4 (b9266ee)
  • dev-deps: bump @types/node from 20.5.4 to 20.5.5 (be2c699)
  • dev-deps: bump @types/node from 20.5.5 to 20.5.6 (0e6b4c5)
  • dev-deps: bump @types/node from 20.5.6 to 20.5.7 (b19ddc0)
  • dev-deps: bump @types/node from 20.5.7 to 20.5.8 (cacf518)
  • dev-deps: bump @types/node from 20.5.8 to 20.6.0 (8f8fa25)
  • dev-deps: bump @types/node from 20.6.0 to 20.6.1 (46aaf55)
  • dev-deps: bump @types/node from 20.6.1 to 20.6.2 (48568a2)
  • dev-deps: bump @types/node from 20.6.2 to 20.6.3 (b2f129f)
  • dev-deps: bump @types/node from 20.6.3 to 20.7.0 (ca38e1a)
  • dev-deps: bump @types/node from 20.7.0 to 20.7.1 (d062443)
  • dev-deps: bump @types/node from 20.7.1 to 20.7.2 (205d5a2)
  • dev-deps: bump @types/node from 20.7.2 to 20.8.2 (2d36d9a)
  • dev-deps: bump @types/node from 20.8.10 to 20.9.0 (242b0bd)
  • dev-deps: bump @types/node from 20.8.2 to 20.8.4 (ed51048)
  • dev-deps: bump @types/node from 20.8.4 to 20.8.5 (3598f7c)
  • dev-deps: bump @types/node from 20.8.5 to 20.8.6 (93b25a4)
  • dev-deps: bump @types/node from 20.8.6 to 20.8.7 (1fd5603)
  • dev-deps: bump @types/node from 20.8.7 to 20.8.8 (1df6514)
  • dev-deps: bump @types/node from 20.8.8 to 20.8.9 (d4bb90c)
  • dev-deps: bump @types/node from 20.8.9 to 20.8.10 (53df409)
  • dev-deps: bump @types/node from 20.9.0 to 20.9.1 (d8a5262)
  • dev-deps: bump @types/node from 20.9.1 to 20.9.2 (e8342e3)
  • dev-deps: bump @types/node from 20.9.2 to 20.9.3 (01d672a)
  • dev-deps: bump @types/node from 20.9.3 to 20.9.4 (f95041b)
  • dev-deps: bump @types/node from 20.9.4 to 20.9.5 (5c0f181)
  • dev-deps: bump @typescript-eslint/eslint-plugin (bb51675)
  • dev-deps: bump @typescript-eslint/eslint-plugin (d0660c5)
  • dev-deps: bump @typescript-eslint/eslint-plugin (d8c98c6)
  • dev-deps: bump @typescript-eslint/eslint-plugin (c3591cf)
  • dev-deps: bump @typescript-eslint/eslint-plugin (047c20a)
  • dev-deps: bump @typescript-eslint/eslint-plugin (ed4bfc5)
  • dev-deps: bump @typescript-eslint/eslint-plugin (13395b3)
  • dev-deps: bump @typescript-eslint/eslint-plugin (4671239)
  • dev-deps: bump @typescript-eslint/eslint-plugin (0a846aa)
  • dev-deps: bump @typescript-eslint/eslint-plugin (a2db2e1)
  • dev-deps: bump @typescript-eslint/eslint-plugin (3f6dda2)
  • dev-deps: bump @typescript-eslint/eslint-plugin (55c66ca)
  • dev-deps: bump @typescript-eslint/eslint-plugin (d7896b2)
  • dev-deps: bump @typescript-eslint/eslint-plugin (e7e87da)
  • dev-deps: bump @typescript-eslint/eslint-plugin (c061010)
  • dev-deps: bump @typescript-eslint/eslint-plugin (e4f1992)
  • dev-deps: bump @typescript-eslint/eslint-plugin (e0c6e8b)
  • dev-deps: bump @typescript-eslint/parser from 6.10.0 to 6.11.0 (c556b53)
  • dev-deps: bump @typescript-eslint/parser from 6.11.0 to 6.12.0 (d51ca5b)
  • dev-deps: bump @typescript-eslint/parser from 6.2.0 to 6.2.1 (7dca676)
  • dev-deps: bump @typescript-eslint/parser from 6.2.1 to 6.3.0 (0de26c3)
  • dev-deps: bump @typescript-eslint/parser from 6.3.0 to 6.4.0 (ca8df95)
  • dev-deps: bump @typescript-eslint/parser from 6.4.0 to 6.4.1 (55bbcaa)
  • dev-deps: bump @typescript-eslint/parser from 6.4.1 to 6.5.0 (e1c0138)
  • dev-deps: bump @typescript-eslint/parser from 6.5.0 to 6.7.0 (26ebb97)
  • dev-deps: bump @typescript-eslint/parser from 6.7.0 to 6.7.2 (73f6dfa)
  • dev-deps: bump @typescript-eslint/parser from 6.7.2 to 6.7.3 (e3a409c)
  • dev-deps: bump @typescript-eslint/parser from 6.7.3 to 6.7.4 (bba2c9e)
  • dev-deps: bump @typescript-eslint/parser from 6.7.4 to 6.7.5 (362535f)
  • dev-deps: bump @typescript-eslint/parser from 6.7.5 to 6.8.0 (2d00a63)
  • dev-deps: bump @typescript-eslint/parser from 6.8.0 to 6.9.0 (c2fb849)
  • dev-deps: bump @typescript-eslint/parser from 6.9.0 to 6.9.1 (f0e5914)
  • dev-deps: bump @typescript-eslint/parser from 6.9.1 to 6.10.0 (3b242c7)
  • dev-deps: bump browserslist from 4.21.10 to 4.21.11 (76576cc)
  • dev-deps: bump browserslist from 4.21.11 to 4.22.0 (05c98cb)
  • dev-deps: bump browserslist from 4.21.9 to 4.21.10 (e18c407)
  • dev-deps: bump browserslist from 4.22.0 to 4.22.1 (3cffb3e)
  • dev-deps: bump conventional-changelog-conventionalcommits (1e6248e)
  • dev-deps: bump conventional-changelog-conventionalcommits (6a2283a)
  • dev-deps: bump eslint from 8.45.0 to 8.46.0 (af54595)
  • dev-deps: bump eslint from 8.46.0 to 8.47.0 (2b63f62)
  • dev-deps: bump eslint from 8.47.0 to 8.48.0 (2f6ef57)
  • dev-deps: bump eslint from 8.48.0 to 8.49.0 (bcbbb51)
  • dev-deps: bump eslint from 8.49.0 to 8.50.0 (7ce5ca7)
  • dev-deps: bump eslint from 8.50.0 to 8.51.0 (099ea3a)
  • dev-deps: bump eslint from 8.51.0 to 8.52.0 (dfdb283)
  • dev-deps: bump eslint from 8.52.0 to 8.53.0 (8e7172f)
  • dev-deps: bump eslint from 8.53.0 to 8.54.0 (82ac8fe)
  • dev-deps: bump eslint-config-prettier from 8.10.0 to 9.0.0 (64e9b8e)
  • dev-deps: bump eslint-config-prettier from 8.8.0 to 8.9.0 (1629f29)
  • dev-deps: bump eslint-config-prettier from 8.9.0 to 8.10.0 (7d25795)
  • dev-deps: bump eslint-plugin-jest from 27.2.3 to 27.4.0 (239a335)
  • dev-deps: bump eslint-plugin-jest from 27.4.0 to 27.4.2 (ea46de1)
  • dev-deps: bump eslint-plugin-jest from 27.4.2 to 27.4.3 (5b4e49c)
  • dev-deps: bump eslint-plugin-jest from 27.4.3 to 27.6.0 (6161664)
  • dev-deps: bump eslint-plugin-prettier from 5.0.0 to 5.0.1 (619190f)
  • dev-deps: bump jest from 29.6.1 to 29.6.2 (77d6e94)
  • dev-deps: bump jest from 29.6.2 to 29.6.3 (f2cd63a)
  • dev-deps: bump jest from 29.6.3 to 29.6.4 (f927af3)
  • dev-deps: bump jest from 29.6.4 to 29.7.0 (1be60c8)
  • dev-deps: bump prettier from 2.8.8 to 3.0.0 (11a1dc3)
  • dev-deps: bump prettier from 3.0.0 to 3.0.1 (1f24809)
  • dev-deps: bump prettier from 3.0.1 to 3.0.2 (237aa16)
  • dev-deps: bump prettier from 3.0.2 to 3.0.3 (6827e23)
  • dev-deps: bump prisma from 4.16.2 to 5.0.0 (95c88d7)
  • dev-deps: bump prisma from 5.0.0 to 5.1.0 (a2b9cf0)
  • dev-deps: bump prisma from 5.1.0 to 5.1.1 (3762a37)
  • dev-deps: bump prisma from 5.1.1 to 5.2.0 (92c6e52)
  • dev-deps: bump prisma from 5.2.0 to 5.3.0 (eac87c2)
  • dev-deps: bump prisma from 5.3.0 to 5.3.1 (c5b847b)
  • dev-deps: bump prisma from 5.3.1 to 5.4.0 (78940e9)
  • dev-deps: bump prisma from 5.4.0 to 5.4.1 (5cca3a4)
  • dev-deps: bump prisma from 5.4.1 to 5.4.2 (37ced95)
  • dev-deps: bump prisma from 5.4.2 to 5.5.0 (d2e6e7c)
  • dev-deps: bump prisma from 5.5.0 to 5.5.2 (3fe0064)
  • dev-deps: bump prisma from 5.5.2 to 5.6.0 (a831f55)
  • dev-deps: bump typescript from 5.1.6 to 5.2.2 (687c519)
  • dev-deps: bump typescript from 5.2.2 to 5.3.2 (0cf1ef4)
  • dev-deps: Update semantic-release (60bc79f)

4.0.0 (2023-07-25)

⚠ BREAKING CHANGES

  • Drop Node v14 support

chore

3.1.5 (2023-07-25)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 4.12.0 to 4.13.0 (b6aeaa9)
  • deps: bump @prisma/generator-helper from 4.13.0 to 4.14.0 (79da4fa)
  • deps: bump @prisma/generator-helper from 4.14.0 to 4.14.1 (b12e518)
  • deps: bump @prisma/generator-helper from 4.14.1 to 4.15.0 (e0e68a8)
  • deps: bump @prisma/generator-helper from 4.15.0 to 4.16.0 (0d74346)
  • deps: bump @prisma/generator-helper from 4.16.0 to 4.16.1 (25f4bbd)
  • deps: bump @prisma/generator-helper from 4.16.1 to 4.16.2 (78032a6)
  • deps: bump @prisma/internals from 4.12.0 to 4.13.0 (11bc324)
  • deps: bump @prisma/internals from 4.13.0 to 4.14.0 (4e33581)
  • deps: bump @prisma/internals from 4.14.0 to 4.14.1 (f83dbb0)
  • deps: bump @prisma/internals from 4.14.1 to 4.15.0 (20183ac)
  • deps: bump @prisma/internals from 4.15.0 to 4.16.1 (5153e67)
  • deps: bump @prisma/internals from 4.16.1 to 4.16.2 (6f6768d)
  • deps: bump actions/setup-node from 3.6.0 to 3.7.0 (0381e49)
  • deps: bump dependabot/fetch-metadata from 1.3.6 to 1.4.0 (ddf4452)
  • deps: bump dependabot/fetch-metadata from 1.4.0 to 1.5.0 (7b91361)
  • deps: bump dependabot/fetch-metadata from 1.5.0 to 1.5.1 (533cc17)
  • deps: bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 (fe20d65)
  • deps: bump semver from 5.7.1 to 5.7.2 (b278700)
  • dev-deps: bump @prisma/client from 4.12.0 to 4.13.0 (0ebc5ce)
  • dev-deps: bump @prisma/client from 4.13.0 to 4.14.0 (30bb1c5)
  • dev-deps: bump @prisma/client from 4.14.0 to 4.14.1 (7e81766)
  • dev-deps: bump @prisma/client from 4.14.1 to 4.15.0 (0bcf248)
  • dev-deps: bump @prisma/client from 4.15.0 to 4.16.1 (2d3cb4b)
  • dev-deps: bump @prisma/client from 4.16.1 to 4.16.2 (c7be6fa)
  • dev-deps: bump @swc/core from 1.3.46 to 1.3.49 (42da30a)
  • dev-deps: bump @swc/core from 1.3.49 to 1.3.50 (229c53c)
  • dev-deps: bump @swc/core from 1.3.50 to 1.3.51 (3c62624)
  • dev-deps: bump @swc/core from 1.3.51 to 1.3.52 (fafca67)
  • dev-deps: bump @swc/core from 1.3.52 to 1.3.53 (68fd135)
  • dev-deps: bump @swc/core from 1.3.53 to 1.3.55 (0b2e9c1)
  • dev-deps: bump @swc/core from 1.3.55 to 1.3.56 (08c71bb)
  • dev-deps: bump @swc/core from 1.3.56 to 1.3.57 (de4acf7)
  • dev-deps: bump @swc/core from 1.3.57 to 1.3.58 (9de5049)
  • dev-deps: bump @swc/core from 1.3.58 to 1.3.59 (b978fc0)
  • dev-deps: bump @swc/core from 1.3.59 to 1.3.60 (84594bd)
  • dev-deps: bump @swc/core from 1.3.60 to 1.3.61 (358be4a)
  • dev-deps: bump @swc/core from 1.3.61 to 1.3.62 (aedf292)
  • dev-deps: bump @swc/core from 1.3.62 to 1.3.66 (5ef3a33)
  • dev-deps: bump @swc/core from 1.3.66 to 1.3.67 (3e02621)
  • dev-deps: bump @swc/core from 1.3.67 to 1.3.68 (260f3fa)
  • dev-deps: bump @swc/jest from 0.2.24 to 0.2.26 (d587e65)
  • dev-deps: bump @types/jest from 29.5.0 to 29.5.1 (eb0e852)
  • dev-deps: bump @types/jest from 29.5.1 to 29.5.2 (acbcc87)
  • dev-deps: bump @types/json-schema from 7.0.11 to 7.0.12 (7efe134)
  • dev-deps: bump @types/node from 18.15.11 to 18.15.12 (f7ca55e)
  • dev-deps: bump @types/node from 18.15.12 to 18.15.13 (e82a949)
  • dev-deps: bump @types/node from 18.15.13 to 18.16.0 (563bce0)
  • dev-deps: bump @types/node from 18.16.0 to 18.16.1 (c148113)
  • dev-deps: bump @types/node from 18.16.1 to 18.16.2 (8820957)
  • dev-deps: bump @types/node from 18.16.2 to 18.16.3 (81ca46c)
  • dev-deps: bump @typescript-eslint/eslint-plugin (83e1c41)
  • dev-deps: bump @typescript-eslint/eslint-plugin (779c0b5)
  • dev-deps: bump @typescript-eslint/eslint-plugin (26c9e34)
  • dev-deps: bump @typescript-eslint/eslint-plugin (f6e89dc)
  • dev-deps: bump @typescript-eslint/eslint-plugin (fb810ef)
  • dev-deps: bump @typescript-eslint/eslint-plugin (ff45488)
  • dev-deps: bump @typescript-eslint/eslint-plugin (41a3524)
  • dev-deps: bump @typescript-eslint/eslint-plugin (0683e88)
  • dev-deps: bump @typescript-eslint/eslint-plugin (990924d)
  • dev-deps: bump @typescript-eslint/eslint-plugin (bf5c265)
  • dev-deps: bump @typescript-eslint/eslint-plugin (f21a959)
  • dev-deps: bump @typescript-eslint/eslint-plugin (5fbf083)
  • dev-deps: bump @typescript-eslint/parser from 5.57.1 to 5.58.0 (2ab495f)
  • dev-deps: bump @typescript-eslint/parser from 5.58.0 to 5.59.0 (cadf29e)
  • dev-deps: bump @typescript-eslint/parser from 5.59.0 to 5.59.1 (4e39f7b)
  • dev-deps: bump @typescript-eslint/parser from 5.59.1 to 5.59.2 (2cdcd8d)
  • dev-deps: bump @typescript-eslint/parser from 5.59.2 to 5.59.5 (bbc56dd)
  • dev-deps: bump @typescript-eslint/parser from 5.59.5 to 5.59.6 (50335d4)
  • dev-deps: bump @typescript-eslint/parser from 5.59.6 to 5.59.7 (1a93472)
  • dev-deps: bump @typescript-eslint/parser from 5.59.7 to 5.59.8 (4556f8e)
  • dev-deps: bump @typescript-eslint/parser from 5.59.8 to 5.59.9 (b1ac038)
  • dev-deps: bump @typescript-eslint/parser from 5.59.9 to 5.60.1 (d3fee73)
  • dev-deps: bump @typescript-eslint/parser from 5.60.1 to 5.61.0 (fb573a6)
  • dev-deps: bump browserslist from 4.21.5 to 4.21.7 (0888957)
  • dev-deps: bump browserslist from 4.21.7 to 4.21.9 (0960f21)
  • dev-deps: bump eslint from 8.37.0 to 8.38.0 (3cba721)
  • dev-deps: bump eslint from 8.38.0 to 8.39.0 (e114a6e)
  • dev-deps: bump eslint from 8.39.0 to 8.40.0 (99cd30f)
  • dev-deps: bump eslint from 8.40.0 to 8.41.0 (d9c8ab8)
  • dev-deps: bump eslint from 8.41.0 to 8.42.0 (4fadf3d)
  • dev-deps: bump eslint from 8.42.0 to 8.43.0 (a771b98)
  • dev-deps: bump eslint from 8.43.0 to 8.44.0 (b446233)
  • dev-deps: bump eslint-plugin-jest from 27.2.1 to 27.2.2 (45a05b2)
  • dev-deps: bump jest from 29.5.0 to 29.6.0 (ee6a463)
  • dev-deps: bump jest from 29.6.0 to 29.6.1 (a3cc123)
  • dev-deps: bump prettier from 2.8.7 to 2.8.8 (d748a04)
  • dev-deps: bump prisma from 4.12.0 to 4.13.0 (23c79fe)
  • dev-deps: bump prisma from 4.13.0 to 4.14.1 (c7ac6d7)
  • dev-deps: bump prisma from 4.14.1 to 4.15.0 (e6d1bdb)
  • dev-deps: bump prisma from 4.15.0 to 4.16.1 (dec04dd)
  • dev-deps: bump prisma from 4.16.1 to 4.16.2 (16342b7)
  • dev-deps: bump typescript from 5.0.3 to 5.0.4 (3143adc)
  • dev-deps: bump typescript from 5.0.4 to 5.1.3 (bae2c10)
  • dev-deps: bump typescript from 5.1.3 to 5.1.5 (1e9b9ca)
  • dev-deps: bump typescript from 5.1.5 to 5.1.6 (1f5f681)

3.1.4 (2023-04-05)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 4.11.0 to 4.12.0 (e23fb45)
  • deps: bump @prisma/internals from 4.11.0 to 4.12.0 (ea552c7)
  • dev-deps: bump @prisma/client from 4.11.0 to 4.12.0 (6557ed6)
  • dev-deps: bump @swc/core from 1.3.38 to 1.3.39 (3b5a735)
  • dev-deps: bump @swc/core from 1.3.39 to 1.3.40 (f81614a)
  • dev-deps: bump @swc/core from 1.3.40 to 1.3.41 (c8dc3c3)
  • dev-deps: bump @swc/core from 1.3.41 to 1.3.42 (3c05b4e)
  • dev-deps: bump @swc/core from 1.3.42 to 1.3.44 (4a62359)
  • dev-deps: bump @swc/core from 1.3.44 to 1.3.46 (3b9d4d2)
  • dev-deps: bump @types/jest from 29.4.0 to 29.4.1 (40de3a7)
  • dev-deps: bump @types/jest from 29.4.1 to 29.4.4 (aa10293)
  • dev-deps: bump @types/jest from 29.4.4 to 29.5.0 (595de3a)
  • dev-deps: bump @types/node from 18.15.0 to 18.15.2 (a82fb89)
  • dev-deps: bump @types/node from 18.15.10 to 18.15.11 (80d8871)
  • dev-deps: bump @types/node from 18.15.2 to 18.15.3 (d671a26)
  • dev-deps: bump @types/node from 18.15.3 to 18.15.5 (f1be44a)
  • dev-deps: bump @types/node from 18.15.5 to 18.15.6 (c5782c0)
  • dev-deps: bump @types/node from 18.15.6 to 18.15.7 (1911725)
  • dev-deps: bump @types/node from 18.15.7 to 18.15.10 (de58220)
  • dev-deps: bump @typescript-eslint/eslint-plugin (7cb9fc8)
  • dev-deps: bump @typescript-eslint/eslint-plugin (53ed5ba)
  • dev-deps: bump @typescript-eslint/eslint-plugin (2b0efe6)
  • dev-deps: bump @typescript-eslint/eslint-plugin (2b4ba86)
  • dev-deps: bump @typescript-eslint/parser from 5.54.1 to 5.55.0 (69af2aa)
  • dev-deps: bump @typescript-eslint/parser from 5.55.0 to 5.56.0 (f8079cd)
  • dev-deps: bump @typescript-eslint/parser from 5.56.0 to 5.57.0 (2a1d915)
  • dev-deps: bump @typescript-eslint/parser from 5.57.0 to 5.57.1 (73a1823)
  • dev-deps: bump eslint from 8.35.0 to 8.36.0 (011e932)
  • dev-deps: bump eslint from 8.36.0 to 8.37.0 (f9decdc)
  • dev-deps: bump eslint-config-prettier from 8.7.0 to 8.8.0 (0057bfe)
  • dev-deps: bump prettier from 2.8.4 to 2.8.5 (c093497)
  • dev-deps: bump prettier from 2.8.5 to 2.8.6 (95a2369)
  • dev-deps: bump prettier from 2.8.6 to 2.8.7 (70e2ae8)
  • dev-deps: bump prisma from 4.11.0 to 4.12.0 (5688c9b)
  • dev-deps: bump typescript from 4.9.5 to 5.0.3 (ba6d59f)

3.1.3 (2023-03-10)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 4.10.0 to 4.10.1 (e7eba8b)
  • deps: bump @prisma/generator-helper from 4.10.1 to 4.11.0 (68e8c87)
  • deps: bump @prisma/generator-helper from 4.9.0 to 4.10.0 (97f30c0)
  • deps: bump @prisma/internals from 4.10.0 to 4.10.1 (5a668a3)
  • deps: bump @prisma/internals from 4.10.1 to 4.11.0 (3f8d7ef)
  • deps: bump @prisma/internals from 4.9.0 to 4.10.0 (f8a0e1b)
  • deps: bump dependabot/fetch-metadata from 1.3.4 to 1.3.6 (da275f5)
  • dev-deps: bump @prisma/client from 4.10.0 to 4.10.1 (9ded7bd)
  • dev-deps: bump @prisma/client from 4.10.1 to 4.11.0 (cec9484)
  • dev-deps: bump @prisma/client from 4.9.0 to 4.10.0 (e8393d8)
  • dev-deps: bump @swc/cli from 0.1.59 to 0.1.60 (721ca12)
  • dev-deps: bump @swc/cli from 0.1.60 to 0.1.61 (528da88)
  • dev-deps: bump @swc/cli from 0.1.61 to 0.1.62 (b07da51)
  • dev-deps: bump @swc/core from 1.3.27 to 1.3.28 (b367dfe)
  • dev-deps: bump @swc/core from 1.3.28 to 1.3.29 (41d1c17)
  • dev-deps: bump @swc/core from 1.3.29 to 1.3.31 (07c7561)
  • dev-deps: bump @swc/core from 1.3.31 to 1.3.32 (b5dc4e7)
  • dev-deps: bump @swc/core from 1.3.32 to 1.3.34 (08ed1be)
  • dev-deps: bump @swc/core from 1.3.34 to 1.3.35 (cd8aad3)
  • dev-deps: bump @swc/core from 1.3.35 to 1.3.36 (b262632)
  • dev-deps: bump @swc/core from 1.3.36 to 1.3.37 (edb8879)
  • dev-deps: bump @swc/core from 1.3.37 to 1.3.38 (fc5e752)
  • dev-deps: bump @types/jest from 29.2.6 to 29.4.0 (e95e923)
  • dev-deps: bump @types/node from 18.11.18 to 18.11.19 (31813ca)
  • dev-deps: bump @types/node from 18.11.19 to 18.13.0 (1ac87fd)
  • dev-deps: bump @types/node from 18.13.0 to 18.14.0 (9937721)
  • dev-deps: bump @types/node from 18.14.0 to 18.14.1 (bb1cbdf)
  • dev-deps: bump @types/node from 18.14.1 to 18.14.2 (bc1a6e4)
  • dev-deps: bump @types/node from 18.14.2 to 18.14.4 (996f2b8)
  • dev-deps: bump @types/node from 18.14.4 to 18.14.6 (8f48f71)
  • dev-deps: bump @types/node from 18.14.6 to 18.15.0 (7221124)
  • dev-deps: bump @typescript-eslint/eslint-plugin (7f32bdd)
  • dev-deps: bump @typescript-eslint/eslint-plugin (8baeed3)
  • dev-deps: bump @typescript-eslint/eslint-plugin (2f5e7e0)
  • dev-deps: bump @typescript-eslint/eslint-plugin (13b7831)
  • dev-deps: bump @typescript-eslint/eslint-plugin (54fc82e)
  • dev-deps: bump @typescript-eslint/eslint-plugin (4bd8755)
  • dev-deps: bump @typescript-eslint/eslint-plugin (7e965d7)
  • dev-deps: bump @typescript-eslint/parser from 5.48.2 to 5.49.0 (5ae6bcc)
  • dev-deps: bump @typescript-eslint/parser from 5.49.0 to 5.50.0 (b84ddc4)
  • dev-deps: bump @typescript-eslint/parser from 5.50.0 to 5.51.0 (7d4a383)
  • dev-deps: bump @typescript-eslint/parser from 5.51.0 to 5.52.0 (ea9ba2c)
  • dev-deps: bump @typescript-eslint/parser from 5.52.0 to 5.53.0 (15f1290)
  • dev-deps: bump @typescript-eslint/parser from 5.53.0 to 5.54.0 (adfa1e2)
  • dev-deps: bump @typescript-eslint/parser from 5.54.0 to 5.54.1 (da8b45f)
  • dev-deps: bump browserslist from 4.21.4 to 4.21.5 (3e27de9)
  • dev-deps: bump eslint from 8.32.0 to 8.33.0 (f1d295f)
  • dev-deps: bump eslint from 8.33.0 to 8.34.0 (2b26782)
  • dev-deps: bump eslint from 8.34.0 to 8.35.0 (3d4d5a3)
  • dev-deps: bump eslint-config-prettier from 8.6.0 to 8.7.0 (fa039b6)
  • dev-deps: bump jest from 29.3.1 to 29.4.0 (4ec9ccd)
  • dev-deps: bump jest from 29.4.0 to 29.4.1 (26f5b93)
  • dev-deps: bump jest from 29.4.1 to 29.4.2 (fc0f5c7)
  • dev-deps: bump jest from 29.4.2 to 29.4.3 (20575b8)
  • dev-deps: bump jest from 29.4.3 to 29.5.0 (3e459bd)
  • dev-deps: bump prettier from 2.8.3 to 2.8.4 (30a509c)
  • dev-deps: bump prisma from 4.10.0 to 4.10.1 (7af05c7)
  • dev-deps: bump prisma from 4.10.1 to 4.11.0 (c03a212)
  • dev-deps: bump prisma from 4.9.0 to 4.10.0 (5a00924)
  • dev-deps: bump typescript from 4.9.4 to 4.9.5 (533f0f5)

3.1.2 (2023-01-20)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 4.3.1 to 4.4.0 (6e563d1)
  • deps: bump @prisma/generator-helper from 4.4.0 to 4.5.0 (fc7114f)
  • deps: bump @prisma/generator-helper from 4.5.0 to 4.6.0 (75a39e5)
  • deps: bump @prisma/generator-helper from 4.6.0 to 4.6.1 (8a8f1d9)
  • deps: bump @prisma/generator-helper from 4.6.1 to 4.7.0 (caa0e98)
  • deps: bump @prisma/generator-helper from 4.7.0 to 4.7.1 (b98e7bd)
  • deps: bump @prisma/generator-helper from 4.7.1 to 4.8.0 (d26a182)
  • deps: bump @prisma/generator-helper from 4.8.0 to 4.8.1 (83e2021)
  • deps: bump @prisma/generator-helper from 4.8.1 to 4.9.0 (ed16988)
  • deps: bump @prisma/internals from 4.3.1 to 4.4.0 (302fd41)
  • deps: bump @prisma/internals from 4.4.0 to 4.5.0 (2c8e1d5)
  • deps: bump @prisma/internals from 4.5.0 to 4.6.0 (f852548)
  • deps: bump @prisma/internals from 4.6.0 to 4.6.1 (62a421f)
  • deps: bump @prisma/internals from 4.6.1 to 4.7.0 (0588c2b)
  • deps: bump @prisma/internals from 4.7.0 to 4.7.1 (fc46b06)
  • deps: bump @prisma/internals from 4.7.1 to 4.8.0 (cef84b0)
  • deps: bump @prisma/internals from 4.8.0 to 4.8.1 (9d12ff3)
  • deps: bump @prisma/internals from 4.8.1 to 4.9.0 (c7f1acf)
  • deps: bump actions/setup-node from 3.4.1 to 3.5.0 (d532878)
  • deps: bump actions/setup-node from 3.5.0 to 3.5.1 (529bfe5)
  • deps: bump actions/setup-node from 3.5.1 to 3.6.0 (09dc86c)
  • deps: bump dependabot/fetch-metadata from 1.3.3 to 1.3.4 (b685d5b)
  • deps: bump json5 from 2.2.1 to 2.2.3 (12d2142)
  • dev-deps: bump @prisma/client from 4.3.1 to 4.4.0 (b50975f)
  • dev-deps: bump @prisma/client from 4.4.0 to 4.5.0 (da8d3d7)
  • dev-deps: bump @prisma/client from 4.5.0 to 4.6.0 (2bd4613)
  • dev-deps: bump @prisma/client from 4.6.0 to 4.6.1 (0cc1431)
  • dev-deps: bump @prisma/client from 4.6.1 to 4.7.0 (805cb89)
  • dev-deps: bump @prisma/client from 4.7.0 to 4.7.1 (c3bc810)
  • dev-deps: bump @prisma/client from 4.7.1 to 4.8.0 (53c8396)
  • dev-deps: bump @prisma/client from 4.8.0 to 4.8.1 (c5e5f20)
  • dev-deps: bump @prisma/client from 4.8.1 to 4.9.0 (2f1aaab)
  • dev-deps: bump @swc/cli from 0.1.57 to 0.1.59 (99b3f78)
  • dev-deps: bump @swc/core from 1.2.246 to 1.2.247 (2a2a23b)
  • dev-deps: bump @swc/core from 1.2.247 to 1.2.248 (34b52eb)
  • dev-deps: bump @swc/core from 1.2.248 to 1.2.249 (7f79c57)
  • dev-deps: bump @swc/core from 1.2.249 to 1.3.0 (a6f654c)
  • dev-deps: bump @swc/core from 1.3.0 to 1.3.1 (fba9d31)
  • dev-deps: bump @swc/core from 1.3.1 to 1.3.2 (534269c)
  • dev-deps: bump @swc/core from 1.3.10 to 1.3.11 (52976cb)
  • dev-deps: bump @swc/core from 1.3.11 to 1.3.14 (22873a1)
  • dev-deps: bump @swc/core from 1.3.14 to 1.3.16 (6dc0d37)
  • dev-deps: bump @swc/core from 1.3.16 to 1.3.17 (4006683)
  • dev-deps: bump @swc/core from 1.3.17 to 1.3.18 (ed62a5a)
  • dev-deps: bump @swc/core from 1.3.18 to 1.3.19 (35ae8c8)
  • dev-deps: bump @swc/core from 1.3.19 to 1.3.20 (de0f9c2)
  • dev-deps: bump @swc/core from 1.3.2 to 1.3.3 (f844edd)
  • dev-deps: bump @swc/core from 1.3.20 to 1.3.21 (05826be)
  • dev-deps: bump @swc/core from 1.3.21 to 1.3.22 (436d7a4)
  • dev-deps: bump @swc/core from 1.3.22 to 1.3.23 (5dc0712)
  • dev-deps: bump @swc/core from 1.3.23 to 1.3.24 (ad89aa1)
  • dev-deps: bump @swc/core from 1.3.24 to 1.3.25 (bbe0653)
  • dev-deps: bump @swc/core from 1.3.25 to 1.3.26 (e3a34cb)
  • dev-deps: bump @swc/core from 1.3.26 to 1.3.27 (3b27216)
  • dev-deps: bump @swc/core from 1.3.3 to 1.3.4 (a2d3b6c)
  • dev-deps: bump @swc/core from 1.3.4 to 1.3.5 (518c326)
  • dev-deps: bump @swc/core from 1.3.5 to 1.3.6 (87119f7)
  • dev-deps: bump @swc/core from 1.3.6 to 1.3.7 (b01f4bf)
  • dev-deps: bump @swc/core from 1.3.7 to 1.3.8 (106389c)
  • dev-deps: bump @swc/core from 1.3.8 to 1.3.9 (c5547a9)
  • dev-deps: bump @swc/core from 1.3.9 to 1.3.10 (96722e0)
  • dev-deps: bump @swc/jest from 0.2.22 to 0.2.23 (0a52b77)
  • dev-deps: bump @swc/jest from 0.2.23 to 0.2.24 (6b17102)
  • dev-deps: bump @types/jest from 29.0.1 to 29.0.2 (0a36e06)
  • dev-deps: bump @types/jest from 29.0.2 to 29.0.3 (ac7e140)
  • dev-deps: bump @types/jest from 29.0.3 to 29.1.0 (c2eca9d)
  • dev-deps: bump @types/jest from 29.1.1 to 29.1.2 (caa11e9)
  • dev-deps: bump @types/jest from 29.2.0 to 29.2.1 (9750eba)
  • dev-deps: bump @types/jest from 29.2.2 to 29.2.3 (4ed9135)
  • dev-deps: bump @types/jest from 29.2.3 to 29.2.4 (02d6588)
  • dev-deps: bump @types/jest from 29.2.4 to 29.2.5 (879b615)
  • dev-deps: bump @types/jest from 29.2.5 to 29.2.6 (d5f194a)
  • dev-deps: bump @types/node from 18.11.0 to 18.11.1 (17b31cc)
  • dev-deps: bump @types/node from 18.11.1 to 18.11.3 (12395a4)
  • dev-deps: bump @types/node from 18.11.10 to 18.11.11 (f73f5ca)
  • dev-deps: bump @types/node from 18.11.11 to 18.11.12 (d57f831)
  • dev-deps: bump @types/node from 18.11.12 to 18.11.13 (4fef41b)
  • dev-deps: bump @types/node from 18.11.13 to 18.11.14 (bca4be3)
  • dev-deps: bump @types/node from 18.11.14 to 18.11.15 (3c3bf98)
  • dev-deps: bump @types/node from 18.11.15 to 18.11.16 (7381055)
  • dev-deps: bump @types/node from 18.11.16 to 18.11.17 (15fe949)
  • dev-deps: bump @types/node from 18.11.17 to 18.11.18 (79af69c)
  • dev-deps: bump @types/node from 18.11.3 to 18.11.4 (fececd2)
  • dev-deps: bump @types/node from 18.11.4 to 18.11.5 (9c84dc1)
  • dev-deps: bump @types/node from 18.11.5 to 18.11.7 (571417f)
  • dev-deps: bump @types/node from 18.11.7 to 18.11.8 (3855db0)
  • dev-deps: bump @types/node from 18.11.8 to 18.11.9 (329c905)
  • dev-deps: bump @types/node from 18.11.9 to 18.11.10 (f2f29a3)
  • dev-deps: bump @types/node from 18.7.14 to 18.7.15 (889f665)
  • dev-deps: bump @types/node from 18.7.15 to 18.7.16 (e63234c)
  • dev-deps: bump @types/node from 18.7.16 to 18.7.17 (0d11ac3)
  • dev-deps: bump @types/node from 18.7.17 to 18.7.18 (5c4eae3)
  • dev-deps: bump @types/node from 18.7.18 to 18.7.19 (6c026a3)
  • dev-deps: bump @types/node from 18.7.19 to 18.7.23 (a3e0362)
  • dev-deps: bump @types/node from 18.7.23 to 18.8.0 (21557b6)
  • dev-deps: bump @types/node from 18.8.0 to 18.8.2 (382e8c9)
  • dev-deps: bump @types/node from 18.8.2 to 18.8.3 (d1e7f57)
  • dev-deps: bump @types/node from 18.8.3 to 18.8.4 (69c204c)
  • dev-deps: bump @types/node from 18.8.4 to 18.8.5 (988455d)
  • dev-deps: bump @types/node from 18.8.5 to 18.11.0 (cfc7a61)
  • dev-deps: bump @typescript-eslint/eslint-plugin (c6354c9)
  • dev-deps: bump @typescript-eslint/eslint-plugin (274da1c)
  • dev-deps: bump @typescript-eslint/eslint-plugin (3627059)
  • dev-deps: bump @typescript-eslint/eslint-plugin (8dad36f)
  • dev-deps: bump @typescript-eslint/eslint-plugin (74f3038)
  • dev-deps: bump @typescript-eslint/eslint-plugin (5b2f5ca)
  • dev-deps: bump @typescript-eslint/eslint-plugin (c2a8aa8)
  • dev-deps: bump @typescript-eslint/eslint-plugin (2ac16ad)
  • dev-deps: bump @typescript-eslint/eslint-plugin (a7c1fe6)
  • dev-deps: bump @typescript-eslint/eslint-plugin (f269786)
  • dev-deps: bump @typescript-eslint/eslint-plugin (e2ae41a)
  • dev-deps: bump @typescript-eslint/eslint-plugin (15f5c0b)
  • dev-deps: bump @typescript-eslint/eslint-plugin (068b689)
  • dev-deps: bump @typescript-eslint/eslint-plugin (d07516d)
  • dev-deps: bump @typescript-eslint/eslint-plugin (247bea7)
  • dev-deps: bump @typescript-eslint/eslint-plugin (8a94ba5)
  • dev-deps: bump @typescript-eslint/eslint-plugin (f2df878)
  • dev-deps: bump @typescript-eslint/eslint-plugin (d347d9d)
  • dev-deps: bump @typescript-eslint/eslint-plugin (6737853)
  • dev-deps: bump @typescript-eslint/eslint-plugin (cc1a7f8)
  • dev-deps: bump @typescript-eslint/eslint-plugin (bba858c)
  • dev-deps: bump @typescript-eslint/parser from 5.36.1 to 5.36.2 (3ab1044)
  • dev-deps: bump @typescript-eslint/parser from 5.36.2 to 5.37.0 (49680ae)
  • dev-deps: bump @typescript-eslint/parser from 5.37.0 to 5.38.0 (fa383bf)
  • dev-deps: bump @typescript-eslint/parser from 5.38.0 to 5.38.1 (18bccc7)
  • dev-deps: bump @typescript-eslint/parser from 5.38.1 to 5.39.0 (bc7e2a3)
  • dev-deps: bump @typescript-eslint/parser from 5.39.0 to 5.40.0 (9c70ec2)
  • dev-deps: bump @typescript-eslint/parser from 5.40.0 to 5.40.1 (c8ad380)
  • dev-deps: bump @typescript-eslint/parser from 5.40.1 to 5.41.0 (a1454c0)
  • dev-deps: bump @typescript-eslint/parser from 5.41.0 to 5.42.0 (a44ee97)
  • dev-deps: bump @typescript-eslint/parser from 5.42.0 to 5.42.1 (c8d0ef5)
  • dev-deps: bump @typescript-eslint/parser from 5.42.1 to 5.43.0 (ee44c23)
  • dev-deps: bump @typescript-eslint/parser from 5.43.0 to 5.44.0 (c673928)
  • dev-deps: bump @typescript-eslint/parser from 5.44.0 to 5.45.0 (1da3a11)
  • dev-deps: bump @typescript-eslint/parser from 5.45.0 to 5.45.1 (80ea352)
  • dev-deps: bump @typescript-eslint/parser from 5.45.1 to 5.46.0 (d6a4cf6)
  • dev-deps: bump @typescript-eslint/parser from 5.46.0 to 5.46.1 (88f5db9)
  • dev-deps: bump @typescript-eslint/parser from 5.46.1 to 5.47.0 (1582a6e)
  • dev-deps: bump @typescript-eslint/parser from 5.47.0 to 5.47.1 (8f3c911)
  • dev-deps: bump @typescript-eslint/parser from 5.47.1 to 5.48.0 (9804ca3)
  • dev-deps: bump @typescript-eslint/parser from 5.48.0 to 5.48.1 (8576628)
  • dev-deps: bump @typescript-eslint/parser from 5.48.1 to 5.48.2 (e9038cd)
  • dev-deps: bump ajv from 8.11.0 to 8.11.2 (708f5fd)
  • dev-deps: bump ajv from 8.11.2 to 8.12.0 (afc941d)
  • dev-deps: bump browserslist from 4.21.3 to 4.21.4 (9edbae1)
  • dev-deps: bump eslint from 8.23.0 to 8.23.1 (c0af545)
  • dev-deps: bump eslint from 8.23.1 to 8.24.0 (fe56d9a)
  • dev-deps: bump eslint from 8.24.0 to 8.25.0 (cddc9b5)
  • dev-deps: bump eslint from 8.25.0 to 8.26.0 (a87e7ed)
  • dev-deps: bump eslint from 8.26.0 to 8.27.0 (cfa2c8b)
  • dev-deps: bump eslint from 8.27.0 to 8.28.0 (810889a)
  • dev-deps: bump eslint from 8.28.0 to 8.29.0 (f4df6ba)
  • dev-deps: bump eslint from 8.29.0 to 8.30.0 (ed6584a)
  • dev-deps: bump eslint from 8.30.0 to 8.31.0 (2cc8c11)
  • dev-deps: bump eslint from 8.31.0 to 8.32.0 (2889bed)
  • dev-deps: bump eslint-config-prettier from 8.5.0 to 8.6.0 (823a60e)
  • dev-deps: bump eslint-plugin-jest from 27.0.1 to 27.0.2 (bd2ad55)
  • dev-deps: bump eslint-plugin-jest from 27.0.2 to 27.0.4 (da72590)
  • dev-deps: bump eslint-plugin-jest from 27.0.4 to 27.1.0 (d81a6d6)
  • dev-deps: bump eslint-plugin-jest from 27.1.0 to 27.1.1 (79a8f30)
  • dev-deps: bump eslint-plugin-jest from 27.1.1 to 27.1.2 (3077c9f)
  • dev-deps: bump eslint-plugin-jest from 27.1.2 to 27.1.3 (49ae1bd)
  • dev-deps: bump eslint-plugin-jest from 27.1.3 to 27.1.4 (26c8a5c)
  • dev-deps: bump eslint-plugin-jest from 27.1.4 to 27.1.5 (b838d6b)
  • dev-deps: bump eslint-plugin-jest from 27.1.5 to 27.1.6 (5df204d)
  • dev-deps: bump eslint-plugin-jest from 27.1.6 to 27.1.7 (dca4a18)
  • dev-deps: bump eslint-plugin-jest from 27.1.7 to 27.2.0 (83babe8)
  • dev-deps: bump eslint-plugin-jest from 27.2.0 to 27.2.1 (19b7e7a)
  • dev-deps: bump jest and @types/jest (141cbec)
  • dev-deps: bump jest and @types/jest (28225b2)
  • dev-deps: bump jest and @types/jest (414804e)
  • dev-deps: bump jest and @types/jest (c98cc4f)
  • dev-deps: bump jest from 29.0.1 to 29.0.2 (79bf5cb)
  • dev-deps: bump jest from 29.0.3 to 29.1.1 (04b6d70)
  • dev-deps: bump jest from 29.1.2 to 29.2.0 (6dd9b1f)
  • dev-deps: bump jest from 29.2.1 to 29.2.2 (76245dd)
  • dev-deps: bump jest from 29.3.0 to 29.3.1 (f3eee82)
  • dev-deps: bump prettier from 2.7.1 to 2.8.0 (a6a62c6)
  • dev-deps: bump prettier from 2.8.0 to 2.8.1 (7b18ea0)
  • dev-deps: bump prettier from 2.8.1 to 2.8.2 (138f984)
  • dev-deps: bump prettier from 2.8.2 to 2.8.3 (1ca99c4)
  • dev-deps: bump prisma from 4.3.1 to 4.4.0 (7c7b3d1)
  • dev-deps: bump prisma from 4.4.0 to 4.5.0 (d155b8f)
  • dev-deps: bump prisma from 4.5.0 to 4.6.0 (63083f7)
  • dev-deps: bump prisma from 4.6.0 to 4.6.1 (75f1bff)
  • dev-deps: bump prisma from 4.6.1 to 4.7.0 (afc88d4)
  • dev-deps: bump prisma from 4.7.0 to 4.7.1 (71ffd8c)
  • dev-deps: bump prisma from 4.7.1 to 4.8.0 (456d2e8)
  • dev-deps: bump prisma from 4.8.0 to 4.8.1 (01b9528)
  • dev-deps: bump prisma from 4.8.1 to 4.9.0 (4c95b2b)
  • dev-deps: bump typescript from 4.8.2 to 4.8.3 (f7bac0a)
  • dev-deps: bump typescript from 4.8.3 to 4.8.4 (6dff5de)
  • dev-deps: bump typescript from 4.8.4 to 4.9.3 (fe3b22b)
  • dev-deps: bump typescript from 4.9.3 to 4.9.4 (a6fcdf3)

3.1.1 (2022-09-02)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 4.2.1 to 4.3.0 (101347a)
  • deps: bump @prisma/generator-helper from 4.3.0 to 4.3.1 (e31178a)
  • deps: bump @prisma/internals from 4.2.1 to 4.3.0 (10c8e93)
  • deps: bump @prisma/internals from 4.3.0 to 4.3.1 (1989e43)
  • dev-deps: bump @prisma/client from 4.2.1 to 4.3.0 (b82e90b)
  • dev-deps: bump @prisma/client from 4.3.0 to 4.3.1 (8bdb11e)
  • dev-deps: bump @swc/core from 1.2.242 to 1.2.244 (4ffbb41)
  • dev-deps: bump @swc/core from 1.2.244 to 1.2.245 (cf9cb51)
  • dev-deps: bump @swc/core from 1.2.245 to 1.2.246 (aab4d49)
  • dev-deps: bump @types/jest from 28.1.7 to 28.1.8 (0e92f26)
  • dev-deps: bump @types/jest from 28.1.8 to 29.0.0 (dec7d28)
  • dev-deps: bump @types/node from 18.7.11 to 18.7.13 (dea3dae)
  • dev-deps: bump @types/node from 18.7.13 to 18.7.14 (e80df5d)
  • dev-deps: bump @typescript-eslint/eslint-plugin (a742e8c)
  • dev-deps: bump @typescript-eslint/eslint-plugin (94b1643)
  • dev-deps: bump @typescript-eslint/parser from 5.34.0 to 5.35.1 (a373966)
  • dev-deps: bump @typescript-eslint/parser from 5.35.1 to 5.36.1 (9dc7daa)
  • dev-deps: bump eslint from 8.22.0 to 8.23.0 (f8fdaf7)
  • dev-deps: bump eslint-plugin-jest from 26.8.7 to 27.0.1 (49a2e3b)
  • dev-deps: bump jest from 28.1.3 to 29.0.0 (305c530)
  • dev-deps: bump jest from 29.0.0 to 29.0.1 (f4c1d76)
  • dev-deps: bump prisma from 4.2.1 to 4.3.0 (85d24bc)
  • dev-deps: bump prisma from 4.3.0 to 4.3.1 (21d710c)
  • dev-deps: bump typescript from 4.7.4 to 4.8.2 (e0bd4d5)

3.1.0 (2022-08-24)

Features

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 4.1.0 to 4.1.1 (881bd7c)
  • deps: bump @prisma/generator-helper from 4.1.1 to 4.2.0 (99c6ab4)
  • deps: bump @prisma/generator-helper from 4.2.0 to 4.2.1 (8548654)
  • deps: bump @prisma/internals from 4.1.0 to 4.1.1 (3cf1a24)
  • deps: bump @prisma/internals from 4.1.1 to 4.2.0 (1817d44)
  • deps: bump @prisma/internals from 4.2.0 to 4.2.1 (e44aed2)
  • dev-deps: bump @prisma/client from 4.1.0 to 4.1.1 (7c35eed)
  • dev-deps: bump @prisma/client from 4.1.1 to 4.2.0 (7854dc7)
  • dev-deps: bump @prisma/client from 4.2.0 to 4.2.1 (5474e0d)
  • dev-deps: bump @swc/core from 1.2.218 to 1.2.219 (b6acc0f)
  • dev-deps: bump @swc/core from 1.2.219 to 1.2.220 (a684c9a)
  • dev-deps: bump @swc/core from 1.2.220 to 1.2.222 (b08fcbb)
  • dev-deps: bump @swc/core from 1.2.222 to 1.2.223 (3798937)
  • dev-deps: bump @swc/core from 1.2.223 to 1.2.224 (3d691a0)
  • dev-deps: bump @swc/core from 1.2.224 to 1.2.226 (70150bd)
  • dev-deps: bump @swc/core from 1.2.226 to 1.2.233 (4faac54)
  • dev-deps: bump @swc/core from 1.2.233 to 1.2.235 (84cc3bf)
  • dev-deps: bump @swc/core from 1.2.235 to 1.2.239 (3bf77d6)
  • dev-deps: bump @swc/core from 1.2.239 to 1.2.241 (fd6b09c)
  • dev-deps: bump @swc/core from 1.2.241 to 1.2.242 (02916f2)
  • dev-deps: bump @types/jest from 28.1.6 to 28.1.7 (dd622a2)
  • dev-deps: bump @types/node from 18.0.6 to 18.6.1 (d9264e9)
  • dev-deps: bump @types/node from 18.6.1 to 18.6.2 (b7e22e4)
  • dev-deps: bump @types/node from 18.6.2 to 18.6.3 (2e23ddb)
  • dev-deps: bump @types/node from 18.6.3 to 18.6.4 (2b101b0)
  • dev-deps: bump @types/node from 18.6.4 to 18.6.5 (6d6996d)
  • dev-deps: bump @types/node from 18.6.5 to 18.7.1 (24b7ad2)
  • dev-deps: bump @types/node from 18.7.1 to 18.7.2 (5fb012c)
  • dev-deps: bump @types/node from 18.7.10 to 18.7.11 (f29d0d9)
  • dev-deps: bump @types/node from 18.7.2 to 18.7.5 (bed9ad4)
  • dev-deps: bump @types/node from 18.7.5 to 18.7.6 (1eed62d)
  • dev-deps: bump @types/node from 18.7.6 to 18.7.7 (3b5bbf0)
  • dev-deps: bump @types/node from 18.7.7 to 18.7.10 (853b76e)
  • dev-deps: bump @typescript-eslint/eslint-plugin (2480090)
  • dev-deps: bump @typescript-eslint/eslint-plugin (a21cec0)
  • dev-deps: bump @typescript-eslint/eslint-plugin (b0e3b10)
  • dev-deps: bump @typescript-eslint/eslint-plugin (be27f6e)
  • dev-deps: bump @typescript-eslint/eslint-plugin (3677904)
  • dev-deps: bump @typescript-eslint/parser from 5.30.7 to 5.31.0 (524a2ca)
  • dev-deps: bump @typescript-eslint/parser from 5.31.0 to 5.32.0 (6e18ea4)
  • dev-deps: bump @typescript-eslint/parser from 5.32.0 to 5.33.0 (6ef87f0)
  • dev-deps: bump @typescript-eslint/parser from 5.33.0 to 5.33.1 (7aaf0f7)
  • dev-deps: bump @typescript-eslint/parser from 5.33.1 to 5.34.0 (511cf84)
  • dev-deps: bump browserslist from 4.21.2 to 4.21.3 (e43bb0b)
  • dev-deps: bump eslint from 8.20.0 to 8.21.0 (6b0115e)
  • dev-deps: bump eslint from 8.21.0 to 8.22.0 (a9189c3)
  • dev-deps: bump eslint-plugin-jest from 26.6.0 to 26.7.0 (2b7493c)
  • dev-deps: bump eslint-plugin-jest from 26.7.0 to 26.8.1 (e722001)
  • dev-deps: bump eslint-plugin-jest from 26.8.1 to 26.8.2 (b9e3520)
  • dev-deps: bump eslint-plugin-jest from 26.8.2 to 26.8.3 (e2ad123)
  • dev-deps: bump eslint-plugin-jest from 26.8.3 to 26.8.7 (9116604)
  • dev-deps: bump prisma from 4.1.0 to 4.1.1 (0bf733d)
  • dev-deps: bump prisma from 4.1.1 to 4.2.0 (3734953)
  • dev-deps: bump prisma from 4.2.0 to 4.2.1 (58c0a1d)

3.0.1 (2022-07-24)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 4.0.0 to 4.1.0 (694a7b8)
  • deps: bump @prisma/internals from 4.0.0 to 4.1.0 (2787dcc)
  • deps: bump actions/setup-node from 3.3.0 to 3.4.0 (f1f3104)
  • deps: bump actions/setup-node from 3.4.0 to 3.4.1 (425b7db)
  • dev-deps: bump @prisma/client from 4.0.0 to 4.1.0 (44f543e)
  • dev-deps: bump @swc/core from 1.2.210 to 1.2.213 (0e2d828)
  • dev-deps: bump @swc/core from 1.2.213 to 1.2.215 (200b645)
  • dev-deps: bump @swc/core from 1.2.215 to 1.2.218 (57ee68c)
  • dev-deps: bump @swc/jest from 0.2.21 to 0.2.22 (57159d7)
  • dev-deps: bump @types/jest from 28.1.5 to 28.1.6 (7475c3c)
  • dev-deps: bump @types/node from 18.0.3 to 18.0.4 (d5f532c)
  • dev-deps: bump @types/node from 18.0.4 to 18.0.6 (26050d9)
  • dev-deps: bump @typescript-eslint/eslint-plugin (959c93e)
  • dev-deps: bump @typescript-eslint/eslint-plugin (dd6ba00)
  • dev-deps: bump @typescript-eslint/parser from 5.30.5 to 5.30.6 (755b9e2)
  • dev-deps: bump @typescript-eslint/parser from 5.30.6 to 5.30.7 (ba60b46)
  • dev-deps: bump browserslist from 4.21.1 to 4.21.2 (2c05f03)
  • dev-deps: bump eslint from 8.19.0 to 8.20.0 (4350525)
  • dev-deps: bump eslint-plugin-jest from 26.5.3 to 26.6.0 (e10e736)
  • dev-deps: bump jest and @types/jest (7fc3474)
  • dev-deps: bump prisma from 4.0.0 to 4.1.0 (9b5311a)

3.0.0 (2022-07-07)

⚠ BREAKING CHANGES

  • Drop Node 17 support

Features

  • add required properties array (de95efd)
  • prettier linting fixes (07b640a)

Dependencies and Other Build Updates

  • dev-deps: bump dev-dependencies (24d8cb7)

2.1.0 (2022-07-07)

Features

Dependencies and Other Build Updates

  • deps: bump dependabot/fetch-metadata from 1.3.1 to 1.3.2 (ebf6e7c)
  • dev-deps: bump @swc/core from 1.2.203 to 1.2.204 (f32dfd0)
  • dev-deps: bump @swc/core from 1.2.204 to 1.2.205 (d23e7af)
  • dev-deps: bump @swc/core from 1.2.205 to 1.2.206 (dc0120c)
  • dev-deps: bump @swc/core from 1.2.206 to 1.2.207 (5b4cba1)
  • dev-deps: bump @types/jest from 28.1.1 to 28.1.2 (d77f07d)
  • dev-deps: bump @types/jest from 28.1.2 to 28.1.3 (37119b8)
  • dev-deps: bump @types/jest from 28.1.3 to 28.1.4 (5a29f88)
  • dev-deps: bump @typescript-eslint/eslint-plugin (6417c2d)
  • dev-deps: bump @typescript-eslint/eslint-plugin (b43e6d8)
  • dev-deps: bump @typescript-eslint/parser from 5.28.0 to 5.29.0 (52d40bb)
  • dev-deps: bump @typescript-eslint/parser from 5.29.0 to 5.30.0 (ce7e6b3)
  • dev-deps: bump browserslist from 4.20.4 to 4.21.0 (a62529e)
  • dev-deps: bump browserslist from 4.21.0 to 4.21.1 (c52978f)
  • dev-deps: bump eslint from 8.17.0 to 8.18.0 (ad262c8)
  • dev-deps: bump eslint-plugin-prettier from 4.0.0 to 4.1.0 (877b169)
  • dev-deps: bump eslint-plugin-prettier from 4.1.0 to 4.2.1 (2a910e3)
  • dev-deps: bump jest from 28.1.1 to 28.1.2 (0760d9c)
  • dev-deps: bump typescript from 4.7.3 to 4.7.4 (7f4493f)

2.0.17 (2022-06-17)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.15.1 to 3.15.2 (7263084)
  • deps: bump @prisma/sdk from 3.15.1 to 3.15.2 (db15ad8)
  • dev-deps: bump @prisma/client from 3.15.1 to 3.15.2 (fa9c2fe)
  • dev-deps: bump @swc/core from 1.2.197 to 1.2.198 (e8a83f5)
  • dev-deps: bump @swc/core from 1.2.198 to 1.2.203 (34510ed)
  • dev-deps: bump @types/node from 17.0.41 to 17.0.42 (ccbe9d8)
  • dev-deps: bump @types/node from 17.0.42 to 17.0.44 (10f4a23)
  • dev-deps: bump @types/node from 17.0.44 to 18.0.0 (cf2de7a)
  • dev-deps: bump @typescript-eslint/eslint-plugin (fcc684c)
  • dev-deps: bump @typescript-eslint/parser from 5.27.1 to 5.28.0 (16859e1)
  • dev-deps: bump prettier from 2.6.2 to 2.7.0 (037a740)
  • dev-deps: bump prettier from 2.7.0 to 2.7.1 (dd8e1c2)
  • dev-deps: bump prisma from 3.15.1 to 3.15.2 (2fb85d3)

2.0.16 (2022-06-10)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.15.0 to 3.15.1 (5505d59)
  • deps: bump @prisma/sdk from 3.15.0 to 3.15.1 (d2aac13)
  • dev-deps: bump @prisma/client from 3.15.0 to 3.15.1 (4495654)
  • dev-deps: bump prisma from 3.15.0 to 3.15.1 (7d26c7d)

2.0.15 (2022-06-08)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.14.0 to 3.15.0 (0e7674d)
  • deps: bump @prisma/sdk from 3.14.0 to 3.15.0 (a2e1370)
  • deps: bump actions/setup-node from 3.2.0 to 3.3.0 (0629004)
  • deps: bump semver-regex from 3.1.3 to 3.1.4 (e3de580)
  • dev-deps: bump @prisma/client from 3.14.0 to 3.15.0 (2248004)
  • dev-deps: bump @swc/core from 1.2.196 to 1.2.197 (ce3e26f)
  • dev-deps: bump @types/jest from 28.1.0 to 28.1.1 (c37b564)
  • dev-deps: bump @types/node from 17.0.38 to 17.0.39 (7cc8c32)
  • dev-deps: bump @types/node from 17.0.39 to 17.0.40 (5228e39)
  • dev-deps: bump @types/node from 17.0.40 to 17.0.41 (be524a0)
  • dev-deps: bump @typescript-eslint/eslint-plugin (6aa3fa2)
  • dev-deps: bump @typescript-eslint/parser from 5.27.0 to 5.27.1 (8ed00b6)
  • dev-deps: bump browserslist from 4.20.3 to 4.20.4 (e84520c)
  • dev-deps: bump eslint from 8.16.0 to 8.17.0 (ab841bb)
  • dev-deps: bump eslint-plugin-jest from 26.4.6 to 26.5.3 (00e8bca)
  • dev-deps: bump jest from 28.1.0 to 28.1.1 (bb5df18)
  • dev-deps: bump prisma from 3.14.0 to 3.15.0 (e9472ee)
  • dev-deps: bump typescript from 4.7.2 to 4.7.3 (7b474ee)

2.0.14 (2022-06-03)

Dependencies and Other Build Updates

  • deps: bump npm from 8.10.0 to 8.12.0 (5c7f4f0)
  • dev-deps: bump @swc/core from 1.2.194 to 1.2.196 (0c6e87e)
  • dev-deps: bump @types/jest from 27.5.1 to 27.5.2 (7bfa28b)
  • dev-deps: bump @types/jest from 27.5.2 to 28.1.0 (637f0f4)
  • dev-deps: bump @types/node from 17.0.35 to 17.0.36 (65d2bce)
  • dev-deps: bump @types/node from 17.0.36 to 17.0.38 (c226bf1)
  • dev-deps: bump @typescript-eslint/eslint-plugin (b25c240)
  • dev-deps: bump @typescript-eslint/parser from 5.26.0 to 5.27.0 (9ebb5b9)
  • dev-deps: bump eslint-plugin-jest from 26.2.2 to 26.4.6 (001ebf4)

2.0.13 (2022-05-28)

Dependencies and Other Build Updates

  • deps: bump actions/setup-node from 3.1.1 to 3.2.0 (315b73a)
  • dev-deps: bump @swc/core from 1.2.181 to 1.2.182 (bbc7dea)
  • dev-deps: bump @swc/core from 1.2.182 to 1.2.183 (b612389)
  • dev-deps: bump @swc/core from 1.2.183 to 1.2.185 (bbf5d14)
  • dev-deps: bump @swc/core from 1.2.185 to 1.2.186 (cc75a03)
  • dev-deps: bump @swc/core from 1.2.186 to 1.2.187 (1c2a755)
  • dev-deps: bump @swc/core from 1.2.187 to 1.2.189 (e3509ba)
  • dev-deps: bump @swc/core from 1.2.189 to 1.2.192 (e072c5f)
  • dev-deps: bump @swc/core from 1.2.192 to 1.2.194 (31f573b)
  • dev-deps: bump @types/jest from 27.5.0 to 27.5.1 (8107f30)
  • dev-deps: bump @types/node from 17.0.31 to 17.0.32 (51accdc)
  • dev-deps: bump @types/node from 17.0.32 to 17.0.33 (bb716a7)
  • dev-deps: bump @types/node from 17.0.33 to 17.0.34 (a80c2a2)
  • dev-deps: bump @types/node from 17.0.34 to 17.0.35 (367e285)
  • dev-deps: bump @typescript-eslint/eslint-plugin (9b39cb5)
  • dev-deps: bump @typescript-eslint/eslint-plugin (c1d4b9c)
  • dev-deps: bump @typescript-eslint/eslint-plugin (8dbdfd4)
  • dev-deps: bump @typescript-eslint/parser from 5.23.0 to 5.24.0 (eed0c91)
  • dev-deps: bump @typescript-eslint/parser from 5.24.0 to 5.25.0 (7ad8faa)
  • dev-deps: bump @typescript-eslint/parser from 5.25.0 to 5.26.0 (c4eaee4)
  • dev-deps: bump conventional-changelog-conventionalcommits (c2a6e3a)
  • dev-deps: bump eslint from 8.15.0 to 8.16.0 (1d1fde1)
  • dev-deps: bump eslint-plugin-jest from 26.1.5 to 26.2.2 (a2ab399)
  • dev-deps: bump typescript from 4.6.4 to 4.7.2 (603d505)

2.0.12 (2022-05-11)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.12.0 to 3.13.0 (bff148d)
  • deps: bump @prisma/generator-helper from 3.13.0 to 3.14.0 (9fa774f)
  • deps: bump @prisma/sdk from 3.12.0 to 3.13.0 (9b14d42)
  • deps: bump @prisma/sdk from 3.13.0 to 3.14.0 (1a0c7c1)
  • dev-deps: bump @prisma/client from 3.12.0 to 3.13.0 (8a23365)
  • dev-deps: bump @prisma/client from 3.13.0 to 3.14.0 (d21c687)
  • dev-deps: bump @swc/core from 1.2.171 to 1.2.172 (6cc7c27)
  • dev-deps: bump @swc/core from 1.2.172 to 1.2.173 (eaee35f)
  • dev-deps: bump @swc/core from 1.2.173 to 1.2.174 (b29580d)
  • dev-deps: bump @swc/core from 1.2.174 to 1.2.175 (7935e89)
  • dev-deps: bump @swc/core from 1.2.175 to 1.2.177 (3d2bee6)
  • dev-deps: bump @swc/core from 1.2.177 to 1.2.179 (fd97e33)
  • dev-deps: bump @swc/core from 1.2.179 to 1.2.181 (7c707a6)
  • dev-deps: bump @swc/jest from 0.2.20 to 0.2.21 (88a2bf8)
  • dev-deps: bump @types/jest from 27.4.1 to 27.5.0 (f1a7e32)
  • dev-deps: bump @types/node from 17.0.27 to 17.0.29 (55b92e5)
  • dev-deps: bump @types/node from 17.0.29 to 17.0.30 (a39b8d1)
  • dev-deps: bump @types/node from 17.0.30 to 17.0.31 (84c6996)
  • dev-deps: bump @typescript-eslint/eslint-plugin (ad0389c)
  • dev-deps: bump @typescript-eslint/eslint-plugin (9559d40)
  • dev-deps: bump @typescript-eslint/parser from 5.20.0 to 5.21.0 (6a7a25e)
  • dev-deps: bump @typescript-eslint/parser from 5.21.0 to 5.22.0 (e37a8b7)
  • dev-deps: bump @typescript-eslint/parser from 5.22.0 to 5.23.0 (100e26e)
  • dev-deps: bump eslint from 8.14.0 to 8.15.0 (ad9552f)
  • dev-deps: bump jest from 28.0.0 to 28.0.1 (0be9a65)
  • dev-deps: bump jest from 28.0.1 to 28.0.2 (8fdd4f6)
  • dev-deps: bump jest from 28.0.2 to 28.0.3 (ef2b60a)
  • dev-deps: bump jest from 28.0.3 to 28.1.0 (93ba210)
  • dev-deps: bump prisma from 3.12.0 to 3.13.0 (43655f2)
  • dev-deps: bump prisma from 3.13.0 to 3.14.0 (f083acf)
  • dev-deps: bump typescript from 4.6.3 to 4.6.4 (2b12996)

2.0.11 (2022-04-25)

Dependencies and Other Build Updates

  • deps: bump dependabot/fetch-metadata from 1.3.0 to 1.3.1 (e427f0b)
  • deps: bump github/codeql-action from 1 to 2 (32adeca)
  • dev-deps: bump @swc/core from 1.2.165 to 1.2.168 (2600ccb)
  • dev-deps: bump @swc/core from 1.2.168 to 1.2.170 (a385bfb)
  • dev-deps: bump @swc/core from 1.2.170 to 1.2.171 (d55ccf5)
  • dev-deps: bump @types/node from 17.0.24 to 17.0.25 (94ea3e8)
  • dev-deps: bump @types/node from 17.0.25 to 17.0.27 (ddde144)
  • dev-deps: bump @typescript-eslint/eslint-plugin (3baf7cd)
  • dev-deps: bump @typescript-eslint/eslint-plugin (5b34c19)
  • dev-deps: bump @typescript-eslint/parser from 5.19.0 to 5.20.0 (06145d3)
  • dev-deps: bump browserslist from 4.20.2 to 4.20.3 (87e66fc)
  • dev-deps: bump eslint from 8.13.0 to 8.14.0 (9283b9c)
  • dev-deps: bump eslint-plugin-jest from 26.1.4 to 26.1.5 (60cb83a)
  • dev-deps: bump jest from 27.5.1 to 28.0.0 (c42dde3)

2.0.10 (2022-04-15)

Dependencies and Other Build Updates

  • deps: bump actions/setup-node from 3.1.0 to 3.1.1 (e02bd6c)
  • deps: bump async from 3.2.0 to 3.2.3 (6911385)
  • dev-deps: bump @swc/core from 1.2.164 to 1.2.165 (7687a77)
  • dev-deps: bump @types/node from 17.0.23 to 17.0.24 (0890283)
  • dev-deps: bump @typescript-eslint/eslint-plugin (7c2b3ba)
  • dev-deps: bump @typescript-eslint/parser from 5.18.0 to 5.19.0 (4d16d8d)
  • dev-deps: bump eslint from 8.12.0 to 8.13.0 (b3e8919)
  • dev-deps: bump eslint-plugin-jest from 26.1.3 to 26.1.4 (de9514f)

2.0.9 (2022-04-07)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.11.1 to 3.12.0 (164ade3)
  • deps: bump @prisma/sdk from 3.11.1 to 3.12.0 (59d91b9)
  • deps: bump actions/setup-node from 3.0.0 to 3.1.0 (39ba336)
  • dev-deps: bump @prisma/client from 3.11.1 to 3.12.0 (32ba38a)
  • dev-deps: bump @swc/core from 1.2.161 to 1.2.162 (5ab1efb)
  • dev-deps: bump @swc/core from 1.2.162 to 1.2.163 (c95c29a)
  • dev-deps: bump @swc/core from 1.2.163 to 1.2.164 (7dc9cb4)
  • dev-deps: bump @typescript-eslint/eslint-plugin (0c19d25)
  • dev-deps: bump @typescript-eslint/parser from 5.17.0 to 5.18.0 (e3c3aef)
  • dev-deps: bump prettier from 2.6.1 to 2.6.2 (849e932)
  • dev-deps: bump prisma from 3.11.1 to 3.12.0 (30ca888)

2.0.8 (2022-03-31)

Bug Fixes

  • Error while generating schema for prisma version < 3.10 (428b962), closes #414

Dependencies and Other Build Updates

  • dev-deps: bump @swc/cli from 0.1.56 to 0.1.57 (c83557a)
  • dev-deps: bump @swc/core from 1.2.160 to 1.2.161 (d97bc5a)
  • dev-deps: bump @typescript-eslint/eslint-plugin (78c72df)
  • dev-deps: bump @typescript-eslint/parser from 5.16.0 to 5.17.0 (040546a)
  • dev-deps: Use exact versions (113b702)

2.0.7 (2022-03-28)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.11.0 to 3.11.1 (8921d14)
  • deps: bump @prisma/sdk from 3.11.0 to 3.11.1 (fbdce97)
  • dev-deps: bump @prisma/client from 3.11.0 to 3.11.1 (2e5b74d)
  • dev-deps: bump @types/json-schema from 7.0.10 to 7.0.11 (bcd3aab)
  • dev-deps: bump eslint-plugin-jest from 26.1.2 to 26.1.3 (ae687e6)
  • dev-deps: bump prettier from 2.6.0 to 2.6.1 (0b34ad6)
  • dev-deps: bump prisma from 3.11.0 to 3.11.1 (9349a0d)
  • dev-deps: bump ts-jest from 27.1.3 to 27.1.4 (28bb7b7)
  • dev-deps: bump typescript from 4.6.2 to 4.6.3 (7efb019)
  • Replace babel with swc (d0e68ed)

2.0.6 (2022-03-24)

Dependencies and Other Build Updates

  • deps: bump minimist from 1.2.5 to 1.2.6 (56278ef)
  • dev-deps: bump @types/node from 17.0.22 to 17.0.23 (7b13f43)
  • dev-deps: bump ajv from 8.10.0 to 8.11.0 (c3d499e)

2.0.5 (2022-03-22)

Dependencies and Other Build Updates

  • deps: bump actions/cache from 2 to 3 (b5575b3)
  • dev-deps: bump @babel/core from 7.17.7 to 7.17.8 (c222be8)
  • dev-deps: bump @types/json-schema from 7.0.9 to 7.0.10 (d3e0613)
  • dev-deps: bump @types/node from 17.0.21 to 17.0.22 (61729ed)
  • dev-deps: bump @typescript-eslint/eslint-plugin (ee26e07)
  • dev-deps: bump @typescript-eslint/parser from 5.15.0 to 5.16.0 (f5a3b9e)
  • dev-deps: bump eslint-plugin-jest from 26.1.1 to 26.1.2 (3acb985)
  • dev-deps: bump prettier from 2.5.1 to 2.6.0 (a7de38b)

2.0.4 (2022-03-16)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.10.0 to 3.11.0 (804c8af)
  • dev-deps: bump prisma from 3.10.0 to 3.11.0 (31e30d9)

2.0.3 (2022-03-16)

Dependencies and Other Build Updates

  • deps: bump @prisma/sdk from 3.10.0 to 3.11.0 (3c56dec)
  • dev-deps: bump @babel/core from 7.17.5 to 7.17.7 (bdbbad9)
  • dev-deps: bump @prisma/client from 3.10.0 to 3.11.0 (b03b086)
  • dev-deps: bump @typescript-eslint/eslint-plugin (0769b9e)
  • dev-deps: bump @typescript-eslint/eslint-plugin (3865a60)
  • dev-deps: bump @typescript-eslint/parser from 5.13.0 to 5.14.0 (513a130)
  • dev-deps: bump @typescript-eslint/parser from 5.14.0 to 5.15.0 (c75221f)
  • dev-deps: bump eslint from 8.10.0 to 8.11.0 (81c7459)
  • dev-deps: bump eslint-config-prettier from 8.4.0 to 8.5.0 (cda5943)
  • dev-deps: bump ts-node from 10.6.0 to 10.7.0 (54dc84c)

2.0.2 (2022-03-02)

Dependencies and Other Build Updates

  • deps: bump actions/checkout from 2 to 3 (32478a0)
  • deps: bump dependabot/fetch-metadata from 1.2.1 to 1.3.0 (83003e0)
  • dev-deps: bump @typescript-eslint/eslint-plugin (1503af4)
  • dev-deps: bump @typescript-eslint/parser from 5.12.1 to 5.13.0 (9e66393)
  • dev-deps: bump eslint from 8.9.0 to 8.10.0 (61d99ee)
  • dev-deps: bump ts-node from 10.5.0 to 10.6.0 (6901648)
  • dev-deps: bump typescript from 4.5.5 to 4.6.2 (f4d0661)

2.0.1 (2022-02-25)

Dependencies and Other Build Updates

  • deps: bump actions/setup-node from 2.5.1 to 3.0.0 (2348863)
  • dev-deps: bump @types/jest from 27.4.0 to 27.4.1 (290a66c)
  • dev-deps: bump @types/node from 17.0.19 to 17.0.21 (5742be7)

2.0.0 (2022-02-23)

⚠ BREAKING CHANGES

  • Remove official support for NODE v12

  • Remove Node v12 support (af3090a)

Dependencies and Other Build Updates

  • deps-dev: Bump semantic-release package versions (9d9d087)

1.8.0 (2022-02-23)

Features

  • Support composite types (530b9b9)

Dependencies and Other Build Updates

  • deps: bump @prisma/sdk from 3.9.2 to 3.10.0 (8ad6fd7)
  • deps: bump dependabot/fetch-metadata from 1.1.1 to 1.2.0 (4e3b4bd)
  • deps: bump dependabot/fetch-metadata from 1.2.0 to 1.2.1 (b481775)
  • deps: Update @prisma/generator-helper from 3.9.2 to 3.10.0 (a46ce94)
  • dev-deps: bump @babel/cli from 7.17.0 to 7.17.3 (a3f4422)
  • dev-deps: bump @babel/cli from 7.17.3 to 7.17.6 (426a9c0)
  • dev-deps: bump @babel/core from 7.17.2 to 7.17.3 (7a2daf6)
  • dev-deps: bump @babel/core from 7.17.3 to 7.17.4 (2ad5e50)
  • dev-deps: bump @babel/core from 7.17.4 to 7.17.5 (675e3fe)
  • dev-deps: bump @prisma/client from 3.9.2 to 3.10.0 (fc7dea7)
  • dev-deps: bump @types/node from 17.0.17 to 17.0.18 (d895462)
  • dev-deps: bump @types/node from 17.0.18 to 17.0.19 (e22455a)
  • dev-deps: bump @typescript-eslint/eslint-plugin (4cfdf33)
  • dev-deps: bump @typescript-eslint/eslint-plugin (dd3c632)
  • dev-deps: bump @typescript-eslint/parser from 5.11.0 to 5.12.0 (9e806f7)
  • dev-deps: bump @typescript-eslint/parser from 5.12.0 to 5.12.1 (e2443b3)
  • dev-deps: bump eslint from 8.8.0 to 8.9.0 (5a8469c)
  • dev-deps: bump eslint-config-prettier from 8.3.0 to 8.4.0 (4e4663b)
  • dev-deps: bump eslint-plugin-jest from 26.1.0 to 26.1.1 (4d2e7d9)
  • dev-deps: bump prisma from 3.9.2 to 3.10.0 (f9754c7)

1.7.1 (2022-02-11)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.9.1 to 3.9.2 (e7e9d2b)
  • deps: bump @prisma/sdk from 3.9.1 to 3.9.2 (bfc2170)
  • dev-deps: bump @babel/core from 7.17.0 to 7.17.2 (82f2085)
  • dev-deps: bump @prisma/client from 3.9.1 to 3.9.2 (0d97972)
  • dev-deps: bump @types/node from 17.0.16 to 17.0.17 (0de571e)
  • dev-deps: bump babel-jest from 27.5.0 to 27.5.1 (cbf6fc3)
  • dev-deps: bump jest from 27.5.0 to 27.5.1 (e35e6db)
  • dev-deps: bump prisma from 3.9.1 to 3.9.2 (8af9d91)
  • devs: Remove core-js dependency (d4de302)

1.7.0 (2022-02-08)

Features

  • Add triple slash comments to JSON Schema properties' description (1735aa8), closes #326

Dependencies and Other Build Updates

  • dev-deps: bump @babel/cli from 7.16.8 to 7.17.0 (8eaeb5d)
  • dev-deps: bump @babel/core from 7.16.12 to 7.17.0 (c0942d7)
  • dev-deps: bump @types/node from 17.0.14 to 17.0.16 (0499a19)
  • dev-deps: bump @typescript-eslint/eslint-plugin (c9c3b75)
  • dev-deps: bump @typescript-eslint/parser from 5.10.2 to 5.11.0 (23ddb0c)
  • dev-deps: bump ajv from 8.9.0 to 8.10.0 (226177d)
  • dev-deps: bump babel-jest from 27.4.6 to 27.5.0 (36d01eb)
  • dev-deps: bump eslint-plugin-jest from 26.0.0 to 26.1.0 (1ef0864)
  • dev-deps: bump jest from 27.4.7 to 27.5.0 (763fa67)
  • dev-deps: bump ts-node from 10.4.0 to 10.5.0 (0116e74)

1.6.3 (2022-02-02)

Dependencies and Other Build Updates

  • deps: bump @prisma/generator-helper from 3.9.0 to 3.9.1 (f671c1d)
  • deps: bump @prisma/sdk from 3.9.0 to 3.9.1 (775a83c)
  • dev-deps: bump @prisma/client from 3.9.0 to 3.9.1 (cd33855)
  • dev-deps: bump prisma from 3.9.0 to 3.9.1 (d0c2404)
  • Tag dependency updates with build (8d5e108)

1.6.2 (2022-01-26)

Bug Fixes

  • Add more valid types for JSON type (3ead22c), closes #303

1.6.1 (2022-01-25)

Bug Fixes

  • Generated JSON type allows arrays (7ae084a), closes #303

Dependencies and Other Build Updates

  • fix semantic release (27cab5c)
  • Fix semantic release (4c46e26)
  • fix semantic-version release (e7ae2b2)
  • deps-dev: Add missing conventionalcommits dependency (fe9c86b)
  • Automatically build release for dependency updates (163befb)

1.6.0 (2021-12-14)

Features

  • Generate default value in JSON Schema (ddf4fa0)

1.5.0 (2021-09-26)

Features

1.4.0 (2021-08-03)

Features

  • Added support for new Prisma (2.17) types Decimal, Bytes and BigInt (c2ecc7e), closes #37

1.3.0 (2021-05-28)

Features

  • add option to keep relation scalar fields in json schema output (8162e70)

1.2.2 (2021-04-04)

Bug Fixes

  • Add support for prisma ^2.20 (3a6ba14), closes #26

1.2.1 (2021-01-20)

Bug Fixes

  • deps: Use newest prisma v2.15.0 helpers and sdk (db4a38d)

1.2.0 (2020-11-17)

Features

  • chor: add bin executable (9e30dff)

1.1.4 (2020-10-19)

Bug Fixes

  • Support floating number use cases (7f11bdd), closes #7

1.1.3 (2020-09-26)

Bug Fixes

  • remove bin cli reference from package json (f0f0a06), closes #6

1.1.2 (2020-09-24)

Bug Fixes

  • include correct assets for a github release (8f12f67)

1.1.1 (2020-09-24)

Bug Fixes

  • configure semantic-release/github and configure tarball include correctly (55adfcb)

1.1.0 (2020-09-24)

Features

  • support nullable primitives and relations (0f8de59)

1.0.0 (2020-09-23)

Bug Fixes

  • fix schema for single references (not array) (0e3f1c8)
  • formatting of Readme (5d5a362)
  • move core-js dev-dependency to dependencies (0b9fdb1)
  • only run ci on pull-request (f4cc6d8)
  • only run tests on source files (a729895)
  • remove files from npm package (3703cbe)
  • Remove required attribute (b74115f)
  • Trigger release (2a4974b)

Features

  • add 'properties' field to json-schema (f71a13a)
  • add a one-to-one self reference example (a9dc0de)
  • add babel to compilation step (8b03db2)
  • add enum support (d2dfb96)
  • add Json field to example (bbe171a)
  • implement dmmf to json schema mapping (f240a70)
  • remove relational scalar types and support scalar lists (2e12c10)
  • support model references (25077d6)

1.0.0-beta.3 (2020-09-23)

Bug Fixes

  • remove files from npm package (3703cbe)

1.0.0-beta.2 (2020-09-23)

Bug Fixes

1.0.0-beta.1 (2020-09-23)

Bug Fixes

  • fix schema for single references (not array) (0e3f1c8)
  • formatting of Readme (5d5a362)
  • move core-js dev-dependency to dependencies (0b9fdb1)
  • only run ci on pull-request (f4cc6d8)
  • only run tests on source files (a729895)
  • Remove required attribute (b74115f)

Features

  • add 'properties' field to json-schema (f71a13a)
  • add a one-to-one self reference example (a9dc0de)
  • add babel to compilation step (8b03db2)
  • add enum support (d2dfb96)
  • add Json field to example (bbe171a)
  • implement dmmf to json schema mapping (f240a70)
  • remove relational scalar types and support scalar lists (2e12c10)
  • support model references (25077d6)