Skip to content

Releases: jycouet/kitql

[email protected]

06 Jun 07:06
165f477

Choose a tag to compare

Patch Changes

[email protected]

05 Jun 21:53
7ebe9bf

Choose a tag to compare

Patch Changes

[email protected]

04 Jun 20:34
1665465

Choose a tag to compare

Patch Changes

[email protected]

04 Jun 20:34
1665465

Choose a tag to compare

Major Changes

  • #1016
    b0eb9b8
    Thanks @Lms24! - feat(kit-routes)!: Avoid escaping string and array
    default values

    This change simplifies setting default values for path and search parameters. Previously, you had
    to douple-escape a default string or array value. Now, you can simply set the default values like
    any other data type:

     kitRoutes({
       PAGES: {
         '/[org]/[project]/sessions': {
           explicit_search_params: {
    -         timeFrame: { type: 'string', default: "'1d'" }
    -         userId: { type: 'Array<string>', default: "['123', 'abc']" }
    +         timeFrame: { type: 'string', default: '1d' }
    +         userId: { type: 'Array<string>', default: ['123', 'abc'] }
           }
         }
       }
     })

    This is a breaking change! To migrate to the new version, remove the quotes to escape string and
    array values as shown in the example above.

Patch Changes

  • #1028
    c7f3c90
    Thanks @Lms24! - fix(kit-routes): Allow setting boolean and null
    default values

[email protected]

04 Jun 07:55
fcb1893

Choose a tag to compare

[email protected] Pre-release
Pre-release

Patch Changes

[email protected]

03 Jun 14:16
6ccb048

Choose a tag to compare

Patch Changes

[email protected]

03 Jun 14:16
6ccb048

Choose a tag to compare

Patch Changes

[email protected]

03 Jun 14:16
6ccb048

Choose a tag to compare

Patch Changes

@kitql/[email protected]

03 Jun 14:16
6ccb048

Choose a tag to compare

Patch Changes

@kitql/[email protected]

03 Jun 14:16
6ccb048

Choose a tag to compare

Patch Changes