Skip to content

Latest commit

 

History

History
115 lines (58 loc) · 7.86 KB

CHANGELOG.md

File metadata and controls

115 lines (58 loc) · 7.86 KB

secco

2.2.0

Minor Changes

  • #99 1593131 Thanks @LekoArts! - Support Yarn Berry (currently v3 & v4) by modyfing the .yarnrc.yml file inside the destination before trying to install packages from the local Verdaccio registry

  • #101 d4d8ef9 Thanks @LekoArts! - Add SECCO_VERDACCIO_PORT environment variable. You can use this to change the default port (4873) when secco uses Verdaccio.

  • #101 d4d8ef9 Thanks @LekoArts! - You can now use secco inside destinations that are set up with workspaces. It should work for all supported package managers (npm, yarn, pnpm, bun).

    Please note: secco will automatically use the --force-verdaccio flag when inside a workspaces project.

Patch Changes

  • #101 d4d8ef9 Thanks @LekoArts! - Correctly display additional information e.g. during npm install when VERBOSE env var is set

2.1.0

Minor Changes

  • #96 69c2d17 Thanks @LekoArts! - Add full support for Bun by correctly setting the npm registry during bun add. This is achieved by using the BUN_CONFIG_REGISTRY environment variable.

2.0.0

Major Changes

  • #87 2de166e Thanks @renovate! - Update execa from 8.0.1 to 9.3.0. The new v9 major version now requires at least Node.js ^18.19.0 || >=20.5.0.

    Since secco supported Node.js >=18.0.0 in v1, this dependency update warrants a major update to also update secco's engines key.

    Breaking change: secco now requires Node.js ^18.19.0 || >=20.5.0 or later. This also means that the unstable Node.js 19 is no longer supported.

Patch Changes

  • #94 2eb523b Thanks @LekoArts! - Improve error message when no packages are found for watching

1.1.4

Patch Changes

  • #80 be3104a Thanks @renovate! - Update internal dependencies, most notably valibot from 0.30.0 to 0.32.0

1.1.3

Patch Changes

1.1.2

Patch Changes

  • 62fa0c6 Thanks @LekoArts! - When secco publishes a package to the local Verdaccio registry it's in the format <pkg-name>@1.0.0-secco-1702997119379 where 1702997119379 is the Date.now() timestamp. The postfix got extended by using nanoid to add 4 characters at the end, e.g. <pkg-name>@1.0.0-secco-1702998721042-9hax.

    The goal of this is to mitigate collisions during publishing when at the same timestamp publishing happens to the instance.

  • 3a7b8e5 Thanks @LekoArts! - Adjust the default list of ignored files and directories to include lock files of popular package managers. Also a bug was fixed to now correctly exclude src when copying over changes from source to destination. Your logs (e.g. Copied X to Y) now not include any files inside src.

    Also a small bug was fixed that occurred when using the --force-verdaccio flag. Previously, the process ended even without the --scan-once flag.

1.1.1

Patch Changes

  • #34 08ad44e Thanks @LekoArts! - After updating valibot to the latest version, the validation for environment variables wasn't behaving correctly. The custom validation is fixed now.

1.1.0

Minor Changes

  • f482749 Thanks @LekoArts! - Support VERBOSE environment variable to enable verbose logging. You can use this as an alternative to --verbose flag.

  • ba49078 Thanks @LekoArts! - Skip packages that have "private": true set in their package.json. npm and by extension Verdaccio will refuse to publish it. If your package is a devDependency then this will be fine but if it's a dependency you'll need to remove private. Learn more in npm's docs.

Patch Changes

  • f0a80f8 Thanks @LekoArts! - Improve some logs to make them more accurate and helpful

  • b591967 Thanks @LekoArts! - Update valibot to latest version and handle deprecations

1.0.3

Patch Changes

  • #12 a4153eb Thanks @LekoArts! - Use correct fs-extra/esm subpath were needed to mitigate fs.readJsonSync is not a function

  • 516b96a Thanks @LekoArts! - Use correct save-exact flag for pnpm

1.0.2

Patch Changes

  • 78528e5 Thanks @LekoArts! - Revert previous change in 1.0.1 as fs-extra has no full ESM support

1.0.1

Patch Changes

  • #8 79bf441 Thanks @LekoArts! - Refactor the internal usage of fs-extra to use named imports, not the default import. Things should continue to work as usual.

1.0.0

Major Changes

  • c417042 Thanks @LekoArts!

    Hello 👋🏻

    Welcome to secco's first release. After testing it for a while locally I'm now releasing it as a stable 1.0.0 version. This makes it easier to follow semver best practices anyways.

    Have fun using it!