Skip to content

Releases: RobinTail/express-zod-api

v20.12.0

18 Sep 19:48
4899386
Compare
Choose a tag to compare

Feature

Chores

Full Changelog: v20.11.0...v20.12.0

v20.11.0

14 Sep 19:56
Compare
Choose a tag to compare

Feature

Chores

Full Changelog: v20.10.0...v20.11.0

v20.10.0

10 Sep 15:07
ea64104
Compare
Choose a tag to compare

Feature

Chores

Full Changelog: v20.9.2...v20.10.0

v20.9.2

09 Sep 19:18
Compare
Choose a tag to compare

Chores

Full Changelog: v20.9.1...v20.9.2

v20.9.1

01 Sep 11:06
Compare
Choose a tag to compare

Fix

Chores

Full Changelog: v20.9.0...v20.9.1

v20.9.0

30 Aug 15:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: v20.8.0...v20.9.0

v20.8.0

26 Aug 06:27
48d3d5f
Compare
Choose a tag to compare

Feature

Chores

Full Changelog: v20.7.1...v20.8.0

v20.7.1

18 Aug 19:32
Compare
Choose a tag to compare

Fixes

Chores

Full Changelog: v20.7.0...v20.7.1

v20.7.0

11 Aug 20:07
Compare
Choose a tag to compare

Changes to migration plugin (single-use tool, regardless SemVer)

  • Better migration plugin by @RobinTail in #1982
    • Requirements: eslint@^9 and typescript-eslint@^8 (may work with previous versions, but it's no longer tested);
    • rules and files have to be defined explicitly;
    • For migrating from v19 use the following minimal config and run eslint --fix:
// eslint.config.js (or .mjs if you're developing in a CommonJS environment)
import parser from "@typescript-eslint/parser";
import migration from "express-zod-api/migration";

export default [
  { languageOptions: { parser }, plugins: { migration } },
  {
    files: ["**/*.ts"], // define the files need to be migrated (source code)
    rules: { "migration/v20": "error" }, // enable the rule explicitly
  },
];

Chores

Full Changelog: v20.6.2...v20.7.0

v20.6.2

01 Aug 21:32
Compare
Choose a tag to compare

Refactoring

Chores

Full Changelog: v20.6.1...v20.6.2