4 min read

Conformance changelog

Find out what's new in each release of Conformance.
Table of Contents

Conformance is available on Enterprise plans

pnpm
yarn
npm

pnpm update --latest --recursive @vercel-private/conformance

This patch update has the following changes:

  • Parse ESLint JSON config with a JSONC parser
  • Fix retrieving latest version of CLI during init

This patch update has the following changes:

  • Fix updating allowlist files when entries conflict or already exist

This minor update has the following changes:

This minor update has the following changes:

  • Ensure in-memory objects are cleaned up after each run
  • Fix detection of Next.js apps in certain edge cases
  • Bump dependencies for performance and security

This patch update has the following changes:

  • Fix the init command for Yarn classic (v1)
  • Update AST caching to prevent potential out of memory issues
  • Fix requesting git authentication when sending Conformance metrics

This minor update has the following changes:

New rules:

This minor update captures and sends Conformance runs metrics to Vercel. Your team will be able to view those metrics in the Vercel dashboard.

The following rules also include these fixes:

This minor update introduces multiple new rules, fixes and improvements for existing rules and the CLI, and updates to some dependencies for performance and security.

Notably, this release introduces a new needsResolution flag. This is used by the CLI and will be used in future metrics as a mechanism to opt-out of further tracking of this issue.

The following new rules have been added:

The following rules had fixes and improvements:

This minor update introduces a new rule and improvements to our telemetry.

The following new rules have been added:

  • NO_INSTANCEOF_ERROR: Disallows using error instanceof Error comparisons due to risk of false negatives.

This minor update introduces multiple new rules, fixes and improvements for existing rules and the CLI, and updates to some dependencies for performance and security.

The following new rules have been added:

The following rules had fixes and improvements:

This minor update introduces new rules to improve Next.js app performance, resolves an issue where TypeScript's baseUrl wasn't respected when traversing files, and fixes an issue with dependency traversal which caused some rules to return false positives in specific cases.

The following new rules have been added:

  • NEXTJS_REQUIRE_EXPLICIT_DYNAMIC: Requires explicitly setting the dynamic route segment option for Next.js pages and routes.
  • NO_INLINE_SVG: Prevents the use of svg tags inline, which can negatively impact the performance of both browser and server rendering.

This patch updates some Conformance dependencies for performance and security, and improves handling of edge case for both NEXTJS_NO_ASYNC_LAYOUT and NEXTJS_NO_ASYNC_PAGE.

This minor update introduces a new rule, and improvements to both NEXTJS_NO_ASYNC_LAYOUT and NEXTJS_NO_ASYNC_PAGE.

The following new rules have been added:

  • REQUIRE_NODE_VERSION_FILE: Requires that workspaces have a valid Node.js version file (.node-version or .nvmrc) file defined.

This minor update introduces new rules to improve Next.js app performance, enhancements to the CLI output, and improvements to our telemetry. While telemetry improvements are not directly user-facing, they enhance our ability to monitor and optimize performance.

The following new rules have been added:

  • NEXTJS_NO_ASYNC_PAGE: Ensures that the exported Next.js page component and its transitive dependencies are not asynchronous, as that blocks the rendering of the page.
  • NEXTJS_NO_ASYNC_LAYOUT: Ensures that the exported Next.js layout component and its transitive dependencies are not asynchronous, as that can block the rendering of the layout and the rest of the page.
  • NEXTJS_USE_NATIVE_FETCH: Requires using native fetch which Next.js polyfills, removing the need for third-party fetch libraries.
  • NEXTJS_USE_NEXT_FONT: Requires using next/font (when possible), which optimizes fonts for improved privacy and performance.
  • NEXTJS_USE_NEXT_IMAGE: Requires that next/image is used for all images for improved performance.
  • NEXTJS_USE_NEXT_SCRIPT: Requires that next/script is used for all scripts for improved performance.

Initial release of Conformance.

Last updated on May 8, 2024