Skip to content

Latest commit

 

History

History
168 lines (127 loc) · 6.43 KB

CHANGELOG.md

File metadata and controls

168 lines (127 loc) · 6.43 KB

@kubernetes-models/keda

0.4.2

Patch Changes

0.4.1

Patch Changes

0.4.0

Minor Changes

  • #199 dba981d Thanks @tommy351! - Pre-compile OpenAPI schema into a validate function. This should improve the performance of first-time validation, but the package size will slightly increase.

Patch Changes

0.3.2

Patch Changes

0.3.1

Patch Changes

0.3.0

Minor Changes

Patch Changes

0.2.1

Patch Changes

  • 767314d Thanks @tommy351! - Simplify export map.

    // Before
    {
      "exports": {
        "import": {
          "types": "./dist/index.d.ts",
          "default": "./dist/index.mjs"
        },
        "require": {
          "types": "./dist/index.d.ts",
          "default": "./dist/index.js"
        }
      }
    }
    
    // After
    {
      "exports": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.mjs",
        "require": "./dist/index.js"
      }
    }
  • Updated dependencies [9816d36, 767314d]:

0.2.0

Minor Changes

  • d46053b Thanks @tommy351! - Decrease the size of export map in package.json by using wildcard pattern (*).

    // Before
    {
      "exports": {
        "./v1/Pod": {
          "import": "./v1/Pod.mjs",
          "require": "./v1/Pod.js"
        },
        "./v1/Service": {
          "import": "./v1/Service.mjs",
          "require": "./v1/Service.js"
        }
      }
    }
    
    // After
    {
      "exports": {
        "./v1/*": {
          "import": "./v1/*.mjs",
          "require": "./v1/*.js"
        }
      }
    }
  • f82b1cc Thanks @tommy351! - Support TypeScript nodenext module resolution by adding types to export map.

    // Before
    {
      "exports": {
        "./v1/Pod": {
          "import": "./v1/Pod.mjs",
          "require": "./v1/Pod.js"
        }
      }
    }
    
    // After
    {
      "exports": {
        "./v1/Pod": {
          "import": {
            "types": "./v1/Pod.d.ts",
            "default": "./v1/Pod.mjs"
          }
          "require": {
            "types": "./v1/Pod.d.ts",
            "default": "./v1/Pod.js"
          }
        }
      }
    }

0.1.0

Minor Changes