Releases: JamieMason/syncpack
12.0.0
12.0.0 (2023-12-24)
See also the release notes for 12.0.0-alpha.0 and 12.0.0-alpha.1 for all changes made in
latest
since 11.2.1.
Features
Bug Fixes
Support this project
12.0.0-alpha.1
12.0.0-alpha.1 (2023-12-23)
Bug Fixes
- effect: apply breaking changes after update (2ea9a79)
- npm: update dependencies (ce80ea5)
- npm: update dependencies (f7c5382)
Support this project
12.0.0-alpha.0
12.0.0-alpha.0 (2023-11-05)
Bug Fixes
Features
- cli: throw if command is not found (0608605)
- cli: display an error code/reason for every kind of mismatch
- cli: output a count of ignored instances
- docs: huge documentation overhaul
- groups: add support for
$LOCAL
keyword in config, Closes #161 - groups: allow
dependencies: ["**"]
andpackages: ["**"]
to be omitted - list: add usage count next to each dependency in
syncpack list
, Closes #162 - options: add support for
--indent ‘\t’
- update: group and filter npm updates by major, minor, patch etc
- update: show more information while querying npm for updates
- versions: add support for
workspace:~
andworkspace:*
- versions: preserve semver group rules when fixing mismatches, Closes #157
- versions: support
npm:[email protected]
- versions: support semver boundaries
>=1.0.0 <=3.0.0
- versions: support semver git tags
git://github.com/user/project.git#0.3.0
- versions: support semver tags
4.0.0-alpha.61
Breaking Changes
-
semverRange
has been deprecated in config files, if you'd like to define a global policy for semver ranges you can achieve this with a semver group.{ - "semverRange": "^", + "semverGroups": [{ "range": "^" }] }
-
There is no longer a default Semver Group. By default, version mismatches will be fixed while leaving the semver ranges as they were. This is intended to make it easier for new users to onboard, but it is recommended that you define Semver Groups yourself which match your project's requirements.
See the Getting Started guide for a walkthrough on this.
Summary
This is the biggest syncpack release to date and has taken a couple of months to complete. Given the scale of the changes, it is an alpha release.
The tests have been rewritten to be easier to maintain and bugs were found along the way, so there will be other small improvements and bug fixes which I've lost track of that are not listed here.
Please give it a try in a local branch and submit an issue if you find any problems.
There is a brand new Getting Started guide and other new documentation which I encourage you to read.
Finally, if anyone reading this finds syncpack useful then please tell people about it – it's completely free and has been a ton of work.
Support this project
11.2.1
11.2.1 (2023-08-14)
Bug Fixes
- npm: update dependencies (c8a5cab)
Features
- config: add a json schema (d35ace5), closes #146 #147
- depTypes: handle
'!peer'
and'**'
(06f2e88) - depTypes: rename
'workspace'
to'local'
(463c936), closes #154
Breaking Changes
In command line options:
- syncpack list --types prod,workspace
+ syncpack list --types prod,local
In configuration files:
- dependencyTypes: ['prod', 'workspace'],
+ dependencyTypes: ['prod', 'local'],
Documentation Changes
- https://jamiemason.github.io/syncpack/config/dependency-types
- https://jamiemason.github.io/syncpack/config-file#json-schema
Support this project
10.9.3
10.7.3
10.7.2
10.6.1
10.6.1 (2023-06-18)
Features
10.5.1
10.5.1 (2023-06-04)
Summary
- Adds a new
syncpack prompt
command which displays a series of prompts to fix version mismatches which syncpack cannot fix automatically. - Adds a new Same Range Version Group which relaxes syncpack to ensure that all versions have semver ranges which all satisfy each other, instead of the default behaviour of them having to be identical.
Bug Fixes
- cli: add missing syncpack-lint binary (ae265cb)