The Wayback Machine - https://web.archive.org/web/20230530003511/https://github.com/teambit/bit/commits/master
Skip to content

Commits

Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on May 29, 2023

  1. fix(ws): empty comps gallery (#7462)

    ## Proposed Changes
    
    - Empty Comp Gallery fixes
    luvkapur committed May 29, 2023
  2. fix(merge-lane), avoid merging the same components multiple times whe…

    …n --include-deps is used (#7450)
    davidfirst committed May 29, 2023
  3. fix: always link harmony from bvm unless it is in root policy (#7460)

    ## Proposed Changes
    
    -
    -
    -
    zkochan committed May 29, 2023
  4. bump teambit version to 0.1.53 [skip ci]

    CircleCI committed May 29, 2023
  5. bump @teambit/legacy version to 1.0.499 [skip ci]

    CircleCI committed May 29, 2023
  6. fix(checkout), make components available on main without pre-bit-impo…

    …rt (#7457)
    
    When on main, `bit checkout head` makes lane-components available on
    main. However, in some scenario it was needed to run `bit import` first.
    This PR fixes it to import during the checkout before determining the
    ids to checkout.
    davidfirst committed May 29, 2023

Commits on May 28, 2023

  1. bump teambit version to 0.1.52 [skip ci]

    CircleCI committed May 28, 2023
  2. fix getComponentDevPatterns for TesterMain (#7454)

    ## Proposed Changes
    
    `getComponentDevPatterns` in TesterMain is not coherent with the same
    function from DocsMain & CompositionsMain, it is supposed to return
    `{name: string, pattern: string[]}`, but in TesterMain it sometimes will
    return `string[]` and sometimes `{name: string, pattern: string[]}`.
    Also typescript incorrectly infers the return type to `string[]` (why it
    doesn't detect the issue? I don't know, it should have thrown a typecast
    error), which means that you would falsely believe that you would get
    the correct type until it doesn't...
    
    Co-authored-by: Gilad Shoham <shoham.gilad@gmail.com>
    ocombe and GiladShoham committed May 28, 2023
  3. fix(preview): override body browser defaults in html template (#7451)

    ## Proposed Changes
    
    - override `body` styles in preview html template
    luvkapur committed May 28, 2023

Commits on May 27, 2023

  1. bump @teambit/legacy version to 1.0.498 [skip ci]

    CircleCI committed May 27, 2023

Commits on May 26, 2023

  1. fix(fetch), throw if the remote does not complete in 30 minutes (#7456)

    Here is an example how the client can wait forever for a remote:
    
    https://app.circleci.com/pipelines/github/teambit/bit/29462/workflows/e5534691-6533-4d43-bbf7-3c48decb86a8/jobs/276346
    To avoid this, just exit the process if it takes more than X minutes.
    Currently set to 30.
    davidfirst committed May 26, 2023
  2. bump teambit version to 0.1.51 [skip ci]

    CircleCI committed May 26, 2023
  3. bump @teambit/legacy version to 1.0.497 [skip ci]

    CircleCI committed May 26, 2023

Commits on May 25, 2023

  1. fix, avoid loading the version object for idOnLane (#7449)

    `idOnLane` method is used to check whether a version exists on the lane
    or on main. Until now, given the bitId, it was loading not only the
    Component object but also the Version object, and if not exits it was
    throwing ComponentNotFound.
    It's definitely possible that the version in question doesn't exist
    locally. This PR fixes it to only load the Component object.
    davidfirst committed May 25, 2023
  2. feat(lane-merge), support squash when merging one lane to another (#7448

    )
    
    Until now, only when merging to main it was squashing by default. This
    PR introduces a new flag `--squash` for when merging two lanes.
    davidfirst committed May 25, 2023
  3. bump teambit version to 0.1.50 [skip ci]

    CircleCI committed May 25, 2023
  4. bump @teambit/legacy version to 1.0.496 [skip ci]

    CircleCI committed May 25, 2023

Commits on May 23, 2023

  1. feat(stash): introduce a POC of "bit stash" (#7436)

    ## Proposed Changes
    
    - `bit stash save` - saves the modified components data to the local
    scope, generate a hash per component and save the map of id:hash in
    `.bit/stash/stash-{counter}.json`. then, bit-checkout-reset the
    component. (so then it's not modified anymore).
    - `bit stash load` - load the latest stash data, checkout the components
    according to the hashes and delete the stash file.
    davidfirst committed May 23, 2023
  2. bump teambit version to 0.1.49 [skip ci]

    CircleCI committed May 23, 2023
  3. bump @teambit/legacy version to 1.0.495 [skip ci]

    CircleCI committed May 23, 2023
  4. refactor, deprecate importManyDeltaWithoutDeps and importManyIfMissin…

    …gWithoutDeps (#7428)
    
    In favor of importWithoutDeps.
    No need to calculate delta anymore because all remote-scopes are now
    able to provide VersionHistory object.
    Changed `importWithoutDeps` to support `collectParents` where all
    history is needed.
    davidfirst committed May 23, 2023
Older