Skip to content

Latest commit

 

History

History
213 lines (111 loc) · 12.1 KB

CHANGELOG.md

File metadata and controls

213 lines (111 loc) · 12.1 KB

@httpx/dsn-parser

1.8.5

Patch Changes

1.8.4

Patch Changes

1.8.3

Patch Changes

1.8.2

Patch Changes

1.8.1

Patch Changes

1.8.0

Minor Changes

1.7.1

Patch Changes

1.7.0

Minor Changes

Patch Changes

1.6.8

Patch Changes

1.6.7

Patch Changes

1.6.6

Patch Changes

1.6.5

Patch Changes

1.6.4

Patch Changes

  • #832 321957a Thanks @belgattitude! - esbuild updated to 0.19.11 to fix a potential typeScript-specific class transform edge case

1.6.3

Patch Changes

1.6.2

Patch Changes

1.6.1

Patch Changes

1.6.0

Minor Changes

Patch Changes

1.5.0

Minor Changes

1.4.0

Minor Changes

1.3.0

Minor Changes

  • #619 b7587cd Thanks @belgattitude! - Add convertJdbcToDsn utility function Helps to convert jdbc dsn. Useful for prisma using sqlserver.

    import { convertJdbcToDsn } from '@httpx/dsn-parser';
    
    const jdbcDsn =
        'sqlserver://localhost:1433;database=my-db;authentication=default;user=sa;password=pass03$;encrypt=true;trustServerCertificate=true';
    
    const dsn = convertJdbcToDsn(jdbc);
    
    // -> 'sqlserver://localhost:1433?database=my-db&authentication=default&user=sa&password=pass03
    encrypt=true&trustServerCertificate=true'

1.2.0

Minor Changes

1.1.0

Minor Changes

1.0.1

Patch Changes

1.0.0

Major Changes

  • #496 746390b Thanks @belgattitude! - Minimum requirement bumped to node16 / es2019 / chrome90

    The dsn-parser package can be transpiled if you need support in older browsers. See your framework documentation for how to do this (ie nextjs).

  • #496 746390b Thanks @belgattitude! - Fix esm/cjs exported types thanks to arethetypeswrong and publint

Minor Changes

Patch Changes

  • #496 746390b Thanks @belgattitude! - Reduce total bundle size from 1.30kb to 1.13kb mingzip

    dsn-parser tree-shakes well, 1.13kb is the size of the full import.

0.10.1

Patch Changes

0.10.0

Minor Changes