Skip to content

v0.4.0

Choose a tag to compare

@github-actions github-actions released this 10 Aug 23:44
· 19 commits to main since this release
fed1822

Minor Changes

  • b609957: scry init no longer writes your API key into the committed config file.

    --commit-api-key described itself as "not recommended" and defaulted to true, so
    every init wrote the key into .storybook-deployer.json and committed it. The
    copy was never load-bearing: init already stores the key as the SCRY_API_KEY
    GitHub secret and the workflow it generates reads it from there.

    Passing --no-commit-api-key did not help either — the key was written regardless,
    and the .gitignore entry it added never matched, because # only starts a comment
    at the beginning of a line in .gitignore.

    The default is now false and the escape hatch still exists behind an explicit
    --commit-api-key. For local runs, export SCRY_API_KEY instead.

    If you ran an earlier version, rotate that project's API key — git history keeps
    it after the file is changed.