The Wayback Machine - http://web.archive.org/web/20230404000947/https://github.com/teambit/bit/commits/master
Skip to content
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 Apr 2, 2023

  1. fix: clear workspace cache before calculating component manifests (#7224

    )
    
    This fix reduces the number of repeat installs
    zkochan committed Apr 2, 2023
  2. fix(ws-config) - various fixes for ws-config write generated config f…

    …iles (#7234)
    
    ## Proposed Changes
    
    - add include to the generated global types folder from the generated
    tsconfig files
    - add `node_modules/@types` to the `typeRoots` in the generated root
    tsconfig file
    - reference relative config files with `./` at the beginning (some tools
    like TS don't know to use relative path correctly when not start with
    `.` or `..`)
    GiladShoham committed Apr 2, 2023
  3. bump teambit version to 0.1.16 [skip ci]

    CircleCI committed Apr 2, 2023
  4. bump @teambit/legacy version to 1.0.472 [skip ci]

    CircleCI committed Apr 2, 2023
  5. bump teambit version to 0.1.15 [skip ci]

    CircleCI committed Apr 2, 2023
  6. bump @teambit/legacy version to 1.0.471 [skip ci]

    CircleCI committed Apr 2, 2023

Commits on Mar 31, 2023

  1. feat(recover): introduce a new command "recover" to recover soft-remo…

    …ved components (#7225)
    
    This new command works regardless of the state in the workspace,
    specifically tested on the following use-cases:
    1. a component was just soft-removed, it wasn't snapped yet, so it's now
    in .bitmap with the "removed" aspect entry.
    2. soft-removed and then snapped. It's not in .bitmap now.
    3. soft-removed, snapped, exported. it's not in .bitmap now.
    4. a soft-removed components was imported, so it's now in .bitmap
    without the "removed" aspect entry.
    5. workspace is empty. the soft-removed component is on the remote.
    davidfirst committed Mar 31, 2023
  2. bump teambit version to 0.1.14 [skip ci]

    CircleCI committed Mar 31, 2023
  3. bump @teambit/legacy version to 1.0.470 [skip ci]

    CircleCI committed Mar 31, 2023
  4. perf, fix writing files performance by disabling fsync (#7226)

    Writing object files is 16 times faster with this change. See
    npm/write-file-atomic#155 for more info.
    davidfirst committed Mar 31, 2023

Commits on Mar 30, 2023

  1. audit fixes (#7215)

    ## Proposed Changes
    - update loader-utils to fix audit issue
    - update webpack-dev-server for audit issue
    - update @teambit/base-react.navigation.link to fix audit issues
    GiladShoham committed Mar 30, 2023
  2. fix(import), avoid throwing ComponentNotFound when .bitmap component …

    …was not found (#7223)
    
    This is an out-of-sync case which apparently we didn't handle.
    It happens when a component is exported. One user tagged the exported component locally, committed and pushed, another user clones the repo, gets the .bitmap with the versions according to the tagged one, which only exist on the first-user local but not on the remote.
    Until now, in this case, `bit status` was showing the import-pending message, suggesting to import, but `bit import` was throwing `ComponentNotFound` error.
    This PR fixes the import to not throw. Instead, in the output it shows the not-found components and suggests running `bit status` to sync the .bitmap back to the remote.
    davidfirst committed Mar 30, 2023
  3. improvement(ws-config) - Add new API for extending config files to re…

    …place extending file name with its abs/relative path (#7221)
    GiladShoham committed Mar 30, 2023
  4. fix(aspects) - load non loaded aspects from components (#7222)

    ## Proposed Changes
    
    - This also fixes issues with pnpm lock file getting changed on the
    second bit install when you have custom envs in your workspace
    GiladShoham committed Mar 30, 2023
  5. Fix homepage in packagejson (#7220)

    ## Proposed Changes
    
    - update the homepage field added to a component's package.json so it reflects the current remote domain (not hard-coded to the old bit.dev domain)
    benjgil committed Mar 30, 2023
  6. security(deps) - update dependencies to fix security issues (#7218)

    ## Proposed Changes
    
    - update loader-utils to fix audit issue
    - update webpack-dev-server for audit issue
    GiladShoham committed Mar 30, 2023
  7. bump teambit version to 0.1.13 [skip ci]

    CircleCI committed Mar 30, 2023
  8. bump @teambit/legacy version to 1.0.469 [skip ci]

    CircleCI committed Mar 30, 2023

Commits on Mar 29, 2023

  1. fix, avoid overriding mutated Version objects (#7216)

    In some cases, the `Version` object is mutated. For example when merging
    with squash or when building on CI.
    Currently, the object-writer is not aware of that and treat this object
    as immutable. As a result, it's possible that locally a `Version` object
    has changed and has the `squashed` prop and `parents` modified, but an
    import process that fetched this Version as a dependency of another
    component, overrode it.
    This PR fixes it by adding a new `modified` property to the `Version`
    object and it allows overriding only in case the incoming object is
    newer.
    davidfirst committed Mar 29, 2023
  2. bump teambit version to 0.1.12 [skip ci]

    CircleCI committed Mar 29, 2023
  3. bump @teambit/legacy version to 1.0.468 [skip ci]

    CircleCI committed Mar 29, 2023

Commits on Mar 28, 2023

  1. fix(ts-config-writer) - nest typesRoot under compilerOptions and make…

    … them relative paths (#7212)
    
    ## Proposed Changes
    
    - nest typesRoot under compilerOptions
    - make typesRoot values relative paths instead of absolute 
    - Uniq typesRoot
    GiladShoham committed Mar 28, 2023
Older