Skip to content

v1.9.75

Latest
Compare
Choose a tag to compare
@GiladShoham GiladShoham released this 19 Feb 11:36
· 12 commits to master since this release

Improvements

  • Allow setting up per-workspace with --local option bit config set user.token xxx --local, or --local-track to have config in workspace.jsonc (#9557, #9555)
  • Support VScode extension to produce a visual workspace graph for components (#9547, #9545)
  • Allow for better control over component's package.json when running bit compile (#9530)
  • Enable auto-formatting components before snap/tag with workspace.jsonc config (#9497)
    "teambit.defender/formatter": {
      "formatOnPreSnap": true
    }
    
  • Simplify getting diff from a version it's parent with --parent. Instead of bit diff foo 0.0.1 0.0.2 you can bit diff foo 0.0.2 --parent (#9498)
  • Improve various CLI/UI outputs and errors for better DX (#9507, #9502, #9506)
  • Support syntax highlighting for .cjs and /mjs (#9492)

Bug Fixes

  • Fix an issue where bit login didn't validate the token when it announced user is "logged in" (#9562)
  • Fix an issue where sometimes in workspace UI you can't compare past version with current changes (#9549)
  • Fix an issue where component data got mutated fix, avoid mutating scope aspects when loading a component from the workspace (#9551)
  • Fix an issue where bit install picked up unrelated package.json and installed dependencies from them (#9554)
  • Fix an issue where active component wasn't picked up correctly when URL had several query params (#9550)
  • Fix an issue where getting out-of-memory during bit snap due to high number of concurrent add-dependencies-graph (#9475)
  • Fix an issue where artifacts directory got into the generated component package (#9532)
  • Fix an issue where bit start HMR failed (#9534)
  • Fix an issue where running bit checkout reset --all to write removed components failed on a lane (#9533)
  • Fix an issue where bit watch didn't re-compile modified components (#9523)
  • Fix an issue where API-reference didn't pick up on exported types (#9512)
  • Fix an issue where config-writer throws an error about failed generating config files after deleting node_modules (#9508)
  • Fix an issue where bit server-forever failed on Windows (#9499)
  • Fix and issue where plugin resolution path was incorrect and led to "file not found" errors (#9561)

Internal