All Versions
85
Latest Version
Avg Release Cycle
11 days
Latest Release
873 days ago

Changelog History
Page 6

  • v1.0.0-beta.17 Changes

    February 02, 2020

    1.0.0-beta.17 (2020-02-02)

    chore

    • ๐Ÿ‘Œ improve readObject and writeObject typings (#1023) (9f905d9)

    ๐Ÿ’ฅ BREAKING CHANGES

    • โšก๏ธ readObject and writeObject have been updated to use the same object schemas used in readCommit, readTree, and readTag. And they are actually documented now in the docs. (The main change is trees are simply arrays now, rather than objects with a .entries property.) The types returned by readObject also form a proper discriminated union so TypeScript will infer the type of .object given .format and .type.
  • v1.0.0-beta.16 Changes

    February 02, 2020

    1.0.0-beta.16 (2020-02-02)

    chore

    • switch to autogenerated TypeScript definitions (#1019) (e2e7d40)

    ๐Ÿ’ฅ BREAKING CHANGES

    • ๐Ÿšš The undocumented param aliases authUsername and authPassword are removed in favor of username and password.
    • ๐Ÿ”Œ plugins.set has been replaced by plugins.fs, plugins.emitter, plugins.credentialManager, plugins.pgp, and plugins.http.
    • ๐Ÿ”Œ core has been replaced by plugins.createCore and plugins.deleteCore.
  • v1.0.0-beta.15 Changes

    January 29, 2020

    1.0.0-beta.15 (2020-01-29)

    ๐Ÿ› Bug Fixes

    • checkout: don't treat modified files as conflicted unless the file would actually change (#1018) (321618f)
  • v1.0.0-beta.14 Changes

    January 29, 2020

    1.0.0-beta.14 (2020-01-29)

    chore

    • โœ‚ remove deprecated 'fs' and 'emitter' params (#1016) (8bb09e5)

    ๐Ÿ’ฅ BREAKING CHANGES

    • ๐Ÿšš The deprecated fs and emitter params have been removed. They've been superseded by the fs and emitter plugins.
  • v1.0.0-beta.13 Changes

    January 28, 2020

    1.0.0-beta.13 (2020-01-28)

    chore

    ๐Ÿ’ฅ BREAKING CHANGES

    • ๐Ÿ“ฆ The internal-apis are no longer included in the npm package. I never really intended that; they were just for running unit tests. Also, I renamed dist/for-future/isomorphic-git/index.js to dist/index.js and dist/for-node/isomorphic-git/index.js to dist/index.cjs.

    And I removed the jasmine fallback. I'm sorry jest uses native modules, but it's just too good not to use and maintaining a fallback test runner is an added complication.

  • v1.0.0-beta.12 Changes

    January 28, 2020

    1.0.0-beta.12 (2020-01-28)

    chore

    • ๐Ÿšš 'message' events are no longer trimmed, and 'rawmessage' event removed (#1010) (92fd6ea)
    • return Uint8Arrays instead of Buffers (#1009) (2c1e26f)

    ๐Ÿ’ฅ BREAKING CHANGES

    • โšก๏ธ As a historical accident, message events were trimmed. This was lossy and removed valuable information, such as an '\r' by itself, which is a signal to update the existing line instead of appending a new one. The rawmessage event was added as a temporary workaround to expose the untrimmed data. The rawmessage event has been removed and from now on, message events emit the full untrimmed data.
    • ๐Ÿ’ป Any functions that returned Buffer objects now instead return Uint8Array objects. This is so we can eventually drop the bloated Buffer browser polyfill.
  • v1.0.0-beta.11 Changes

    January 28, 2020

    1.0.0-beta.11 (2020-01-28)

    chore

    ๐Ÿ’ฅ BREAKING CHANGES

    • ๐Ÿšš Ths sign command was deprecated a while ago (back when commit got a signingKey param) and has now been removed.
  • v1.0.0-beta.10 Changes

    January 27, 2020

    1.0.0-beta.10 (2020-01-27)

    chore

    • โœ‚ remove the 'autoTranslateSSH' feature (#1006) (7b04575)

    ๐Ÿ’ฅ BREAKING CHANGES

    • ๐Ÿšš The autoTranslateSSH feature has been removed since it's kind of hacky, and it's trivial to implement your own version using the data.suggestion property of the UnknownTransportError when something fails.
  • v0.78.5 Changes

    February 21, 2020

    0.78.5 (2020-02-21)

    ๐Ÿ› Bug Fixes

    • pathological graph traversal in findMergeBase (#1057) (5613706)
  • v0.78.4 Changes

    February 10, 2020

    0.78.4 (2020-02-10)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fix obsolete type information in index.d.ts (#1028) (5c2cf6a)

    ๐ŸŽ Performance Improvements

    • indexPack: remove profiling code that has a linear overhead (#1039) (ea7524e)