Skip to content

Version Packages#2286

Draft
seek-oss-ci wants to merge 1 commit intomainfrom
changeset-release/main
Draft

Version Packages#2286
seek-oss-ci wants to merge 1 commit intomainfrom
changeset-release/main

Conversation

@seek-oss-ci
Copy link
Copy Markdown
Contributor

@seek-oss-ci seek-oss-ci commented Mar 19, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

skuba@16.0.0

Major Changes

  • build, lint, test: Migrate to ESM (#2124)

    As part of our migration to ESM, skuba's source code is now pure ESM.

    skuba will attempt to automatically transition your project to ESM and migrate your tests from Jest to Vitest.

    The test migration will require some manual adjustments if you were using Jest-specific libraries for features. skuba will scaffold a new Vitest config for you, but will not attempt to migrate your existing Jest config.

    For package publishers, skuba build-package should handle publishing dual ESM/CJS packages automatically. Test your packages thoroughly after the migration to confirm everything works as expected.

    View the migration guide for more details.

  • test: Migrate to Vitest (#2274)

    skuba test now calls Vitest as the test runner instead of Jest.

    Breaking change: Unlike Jest, when running skuba test on your local machine, Vitest will run in watch mode by default. When run in CI, Vitest will run in non-watch mode.

    You can explicitly set the mode by passing the --watch or --no-watch flags to skuba test or use skuba test run to run in non-watch mode locally:

    skuba test --watch
    skuba test watch
    skuba test --no-watch
    skuba test run

    skuba test will forward any additional arguments to Vitest, so you can also use Vitest's CLI flags:

    skuba test --ui

    This opens up the Vitest UI in your browser, which provides a visual interface for running and debugging tests

Minor Changes

  • start: Support named app export (#2324)

    skuba start now resolves a named app export as a request listener, in addition to the existing default export.

    // works with both `export default` and `export const app = ...`
    export const app = new Koa().use(/* ... */);
  • migrate: Add ESM migration (#2274)

    If your project does not use skuba directly, you can still run our migration to ESM using npx or pnpm dlx:

    pnpm dlx skuba migrate esm
    npx skuba migrate esm

    You can view the full migration guide in our documentation here.

  • lint: Replace hoisted Jest dependencies with Vitest (#2124)

  • lint: Migrate Dockerfiles from pnpm install --prod to pnpm prune --prod (#2326)

    A new patch will replace any RUN pnpm install ... --prod (including variants with CI=true) with RUN pnpm prune --prod.

  • init: Support local: prefix in template name (#2333)

    This enable project initialisation from a local directory path.

  • lint: Remove pnpm-plugin-skuba from package.json (#2351)

  • start: Fix live reloading (#2139)

  • test: Remove GitHub annotations (#2124)

    Our first Vitest release does not support inline GitHub annotations in CI. This feature may be restored in future.

Patch Changes

  • template/*-rest-api: Use pnpm prune --prod to remove dev dependencies in Dockerfiles (#2326)

    Our API template Dockerfiles previously ran CI=true pnpm install --offline --prod after building to strip dev dependencies from node_modules. This has been replaced with pnpm prune --prod, which is a more explicit and reliable way to remove dev dependencies from the production image.

    RUN pnpm install --offline
    RUN pnpm build
    - RUN CI=true pnpm install --offline --prod
    + RUN pnpm prune --prod
  • template/*-npm-package: Resolve #src alias to ./src directory during package builds (#2322)

  • deps: esbuild ~0.28.0 (#2320)

  • deps: @inquirer/prompts ^8.0.0 (#2303)

  • deps: rolldown 1.0.0-rc.13 (#2319)

  • deps: read-package-up ^12.0.0 (#2302)

  • deps: @ast-grep/napi ^0.42.0 (#2285)

  • lint: Update pnpm-workspace.yaml trustPolicyExclude list (#2300)

@skuba-lib/changesets-changelog@1.0.0

Major Changes

  • Publish first version (#2334)

@skuba-lib/detect-invalid-spies@1.0.0

Major Changes

  • Publish first version (#2318)

eslint-config-skuba@9.0.0

Major Changes

  • Migrate from eslint-config-seek/base to eslint-config-seek/vitest/base (#2124)

    This package now ships Vitest ESLint rules instead of Jest rules. If you are consuming eslint-config-skuba directly, you will need to defer this upgrade until your codebase has migrated to Vitest and ESM.

Minor Changes

  • Re-export eslint-config-seek/extensions via eslint-config-skuba/extensions (#2291)

    This allows users to import from eslint-config-skuba/extensions instead of needing to hoist or install eslint-config-seek as a direct dependency.

    import {
      js as jsExtensions,
      ts as tsExtensions,
    } from 'eslint-config-skuba/extensions';
  • Remove require-extensions rules (#2124)

    This removes the require-extensions rules which were previously used to enforce file extensions on imports to reduce the number of files that needed to be changed when migrating to ESM.

  • Migrate to ESM (#2124)

    This package is still being published as a dual ESM/CJS package, but the source code is now ESM.

Patch Changes

  • deps: eslint-config-seek 15.0.5 (#2346)

pnpm-plugin-skuba@3.0.0

Major Changes

  • lint: Replace hoisted Jest dependencies with Vitest (#2124)

Patch Changes

  • lint: Update pnpm-workspace.yaml trustPolicyExclude list (#2300)

@skuba-lib/api@2.1.0

Minor Changes

  • Migrate to ESM (#2124)

    This package is still being published as a dual ESM/CJS package, but the source code is now ESM.

eslint-plugin-skuba@2.1.0

Minor Changes

  • Migrate to ESM (#2124)

    This package is still being published as a dual ESM/CJS package, but the source code is now ESM.

skuba-dive@4.1.0

Minor Changes

  • Migrate to ESM (#2124)

    This package is still being published as a dual ESM/CJS package, but the source code is now ESM.

@skuba-lib/vitest-koa-mocks@1.0.2

Patch Changes

  • Relax session and state option types in createMockContext from Record<string, unknown> to Record<string, any> (#2331)

@seek-oss-ci seek-oss-ci requested a review from a team as a code owner March 19, 2026 22:39
@seek-oss-ci seek-oss-ci force-pushed the changeset-release/main branch 19 times, most recently from 4009f45 to 4bb7697 Compare March 25, 2026 11:55
@samchungy samchungy marked this pull request as draft March 26, 2026 21:49
@seek-oss-ci seek-oss-ci force-pushed the changeset-release/main branch 9 times, most recently from 35e49cf to a247950 Compare March 30, 2026 01:32
@seek-oss-ci seek-oss-ci force-pushed the changeset-release/main branch 7 times, most recently from 0d27c40 to e311a47 Compare April 19, 2026 23:31
@seek-oss-ci seek-oss-ci force-pushed the changeset-release/main branch 11 times, most recently from ace3fe1 to e155d51 Compare April 27, 2026 22:44
@seek-oss-ci seek-oss-ci force-pushed the changeset-release/main branch 9 times, most recently from 854590d to 05d2e24 Compare May 6, 2026 06:34
@seek-oss-ci seek-oss-ci force-pushed the changeset-release/main branch from 05d2e24 to a02b6e4 Compare May 6, 2026 06:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant