Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 30, 2025

Bumps skuba from 9.1.0 to 12.4.0.

Release notes

Sourced from skuba's releases.

skuba@12.4.0

Minor Changes

  • build: Default esbuild output to CJS format (#2074)

    Note: This only affects projects that have manually set package.json#/skuba/build to "esbuild". There are less than 10 of these at time of writing.

    skuba build now defaults to CJS output when using the esbuild configuration. ESM output is only used when the following conditions are met:

    • "type": "module" is set in package.json
    • The module field in tsconfig.json is not set to "commonjs"
  • lint: Remove Dockerfile syntax parser directive (#2075)

    Our containerisation guidance mounts the NPM_TOKEN environment variable as a build secret. This requires Dockerfile frontend version 1.10+, and we previously recommended adding a syntax parser directive to ensure availability of the feature in your build context.

    # syntax=docker/dockerfile:1.10.0
    FROM ...

    However, the directive introduces an online dependency on Docker services at build time. As SEEK-standard local & CI environments now include frontend version 1.18+ in their Docker toolchains, we recommend removing the directive and relying on the bundled version to reduce manual upkeep of the frontend version and to improve resilience.

    We will try to apply a one-time patch to your project to remove the directive. If your build breaks after the patch, your Dockerfile(s) may use other newer syntax features, and you can try manually restoring the directive.

  • api: Export apiTokenFromEnvironment from GitHub namespace (#2079)

    The apiTokenFromEnvironment function is now available as GitHub.apiTokenFromEnvironment().

    If you were importing this function directly from an internal path, update your imports:

    -import { apiTokenFromEnvironment } from 'skuba/lib/api/github/environment';
    +import { GitHub } from 'skuba';
    -const apiToken = apiTokenFromEnvironment();
    +const apiToken = GitHub.apiTokenFromEnvironment();

  • api: Publish standalone @skuba-lib/api package (#2072)

    Our development API is now available in a standalone package. Its namespaces are available through the root @skuba-lib/api import, or individual submodule imports such as @skuba-lib/api/buildkite.

    The @skuba-lib/api package may be useful for projects that include:

    • A dev tool/package that makes use of the development API. The package can now replace the larger skuba toolkit with @skuba-lib/api in dependencies.
    • A back-end application that makes use of the development API but has its own tooling to build and test code. The application can now replace the larger skuba toolkit with @skuba-lib/api in devDependencies .

    The skuba package retains its re-exports of these API namespaces for convenience.

... (truncated)

Changelog

Sourced from skuba's changelog.

12.4.0

Minor Changes

  • build: Default esbuild output to CJS format (#2074)

    Note: This only affects projects that have manually set package.json#/skuba/build to "esbuild". There are less than 10 of these at time of writing.

    skuba build now defaults to CJS output when using the esbuild configuration. ESM output is only used when the following conditions are met:

    • "type": "module" is set in package.json
    • The module field in tsconfig.json is not set to "commonjs"
  • lint: Remove Dockerfile syntax parser directive (#2075)

    Our containerisation guidance mounts the NPM_TOKEN environment variable as a build secret. This requires Dockerfile frontend version 1.10+, and we previously recommended adding a syntax parser directive to ensure availability of the feature in your build context.

    # syntax=docker/dockerfile:1.10.0
    FROM ...

    However, the directive introduces an online dependency on Docker services at build time. As SEEK-standard local & CI environments now include frontend version 1.18+ in their Docker toolchains, we recommend removing the directive and relying on the bundled version to reduce manual upkeep of the frontend version and to improve resilience.

    We will try to apply a one-time patch to your project to remove the directive. If your build breaks after the patch, your Dockerfile(s) may use other newer syntax features, and you can try manually restoring the directive.

  • api: Export apiTokenFromEnvironment from GitHub namespace (#2079)

    The apiTokenFromEnvironment function is now available as GitHub.apiTokenFromEnvironment().

    If you were importing this function directly from an internal path, update your imports:

    -import { apiTokenFromEnvironment } from 'skuba/lib/api/github/environment';
    +import { GitHub } from 'skuba';
    -const apiToken = apiTokenFromEnvironment();
    +const apiToken = GitHub.apiTokenFromEnvironment();

  • api: Publish standalone @skuba-lib/api package (#2072)

    Our development API is now available in a standalone package. Its namespaces are available through the root @skuba-lib/api import, or individual submodule imports such as @skuba-lib/api/buildkite.

    The @skuba-lib/api package may be useful for projects that include:

    • A dev tool/package that makes use of the development API. The package can now replace the larger skuba toolkit with @skuba-lib/api in dependencies.
    • A back-end application that makes use of the development API but has its own tooling to build and test code. The application can now replace the larger skuba toolkit with @skuba-lib/api in devDependencies .

    The skuba package retains its re-exports of these API namespaces for convenience.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for skuba since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [skuba](https://github.com/seek-oss/skuba) from 9.1.0 to 12.4.0.
- [Release notes](https://github.com/seek-oss/skuba/releases)
- [Changelog](https://github.com/seek-oss/skuba/blob/main/CHANGELOG.md)
- [Commits](https://github.com/seek-oss/skuba/compare/skuba@9.1.0...skuba@12.4.0)

---
updated-dependencies:
- dependency-name: skuba
  dependency-version: 12.4.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 30, 2025
@dependabot dependabot bot requested a review from samchungy as a code owner September 30, 2025 00:14
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 30, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 6, 2025

Superseded by #280.

@dependabot dependabot bot closed this Oct 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/skuba-12.4.0 branch October 6, 2025 21:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants