You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

161 lines
8.2 KiB

  1. ---
  2. ## Release Notes
  3. ### 1.4.3
  4. - Adds some logging to hopefully trap [#22](https://github.com/eamodio/vscode-gitlens/issues/22) - Cannot read property 'sha' of undefined
  5. - Fixes issue with the latest insiders build (1.9.0-insider f67f87c5498d9361c0b29781c341fd032815314b) where there is a collision of document schemes
  6. ### 1.4.2
  7. - Fixes issue where file history wouldn't compare correctly to working tree if the filename had changed
  8. ### 1.4.1
  9. - Adds `gitlens.advanced.gitignore.enabled` to enable/disable .gitignore parsing. Addresses [#20](https://github.com/eamodio/vscode-gitlens/issues/20) - Nested .gitignore files can cause blame to fail with a repo within another repo
  10. ### 1.4.0
  11. - Adds `alt+h` shortcut for the `gitlens.showQuickFileHistory` command
  12. - Adds `shift+alt+h` shortcut for the `gitlens.showQuickRepoHistory` command
  13. - Adds `gitlens.advanced.maxQuickHistory` to limit the number of quick history entries to show (for better performance); Defaults to 200
  14. - Adds `gitlens.diffLineWithPrevious` as `alt` context menu item for `gitlens.diffWithPrevious`
  15. - Adds `gitlens.diffLineWithWorking` as `alt` context menu item for `gitlens.diffWithWorking`
  16. - Adds `gitlens.showFileHistory` as `alt` context menu item for `gitlens.showQuickFileHistory`
  17. - Removes context menu for `gitlens.diffLineWithPrevious` -- since it is now the `alt` of `gitlens.diffWithPrevious`
  18. - Removes context menu for `gitlens.diffLineWithWorking` -- since it is now the `alt` of `gitlens.diffWithWorking`
  19. - Replaces `gitlens.menus.fileDiff.enabled` and `gitlens.menus.lineDiff.enabled` with `gitlens.menus.diff.enabled` -- since the switch between file and line diff is now controlled by the `alt` key
  20. ### 1.3.1
  21. - Renames `Diff` commands for better clarity
  22. - Removes `Git` from the commands as it feels unnecessary
  23. - Reorders the context menu commands
  24. - Adds `Diff Commit with Working Tree` to the explorer context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  25. - Adds `Diff Commit with Working Tree` & `Diff Commit with Previous` to the editor title context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  26. ### 1.3.0
  27. - Adds support for blame and history (log) on files opened via compare commands -- allows for deep navigation through git history
  28. ### 1.2.0
  29. - Adds compare (working vs previous) options to repository history
  30. - Adds compare (working vs previous) options to file history
  31. - Fixes issue with repository history compare with commits with multiple files
  32. ### 1.1.1
  33. - Allows `gitlens.showQuickRepoHistory` command to run without an open editor (falls back to the folder repository)
  34. - Adds logging for tracking [#18](https://github.com/eamodio/vscode-gitlens/issues/18) - GitLens only displayed for some files
  35. ### 1.1.0
  36. - Adds new `gitlens.showQuickFileHistory` command to show the file history in a quick-pick list (palette)
  37. - Adds new `gitlens.showQuickRepoHistory` command to show the repository history in a quick-pick list (palette)
  38. - Adds `gitlens.showQuickFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  39. - Removes `git.viewFileHistory` option from the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  40. - Changes the `gitlens.statusBar.command` settings default to `gitlens.showQuickFileHistory` instead of `gitlens.toggleBlame`
  41. ### 1.0.2
  42. - Fixes [#16](https://github.com/eamodio/vscode-gitlens/issues/16) - incorrect 'Unable to find Git' message
  43. ### 1.0.0
  44. - Adds support for git history (log)!
  45. - Adds support for blame annotations and git commands on file revisions
  46. - Adds ability to show multiple blame annotation at the same time (one per vscode editor)
  47. - Adds new `gitlens.showFileHistory` command to open the history explorer
  48. - Adds new `gitlens.showFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  49. - Adds per-language CodeLens location customization using the `gitlens.codeLens.languageLocations` setting
  50. - Adds new `gitlens.diffLineWithPrevious` command for line sensitive diffs
  51. - Adds new `gitlens.diffLineWithWorking` command for line sensitive diffs
  52. - Adds `gitlens.diffWithPrevious` command to the explorer context menu
  53. - Adds output channel logging, controlled by the `gitlens.advanced.output.level` setting
  54. - Switches on-demand CodeLens to be a global toggle (rather than per file)
  55. - Complete rewrite of the blame annotation provider to reduce overhead and provide better performance
  56. - Improves performance of the CodeLens support
  57. - Improves performance (significantly) when only showing CodeLens at the document level
  58. - Improves performance of status bar blame support
  59. - Changes `gitlens.diffWithPrevious` command to always be file sensitive diffs
  60. - Changes `gitlens.diffWithWorking` command to always be file sensitive diffs
  61. - Removes all debug logging, unless the `gitlens.advanced.debug` settings it on
  62. - Fixes many (most?) issues with whitespace toggling (required because of https://github.com/Microsoft/vscode/issues/11485)
  63. - Fixes issue where blame annotations would not be cleared properly when switching between open files
  64. ### 0.5.5
  65. - Fixes another off-by-one issue when diffing with caching
  66. ### 0.5.4
  67. - Fixes off-by-one issues with blame annotations without caching and when diffing with a previous version
  68. ### 0.5.3
  69. - Adds better uncommitted hover message in blame annotations
  70. - Adds more protection for dealing with uncommitted lines
  71. ### 0.5.2
  72. - Fixes loading issue on Linux
  73. ### 0.5.1
  74. - Adds blame information in the StatusBar
  75. - Add new StatusBar settings -- see **Extension Settings** above for details
  76. - Renames the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings options (to align with command names)
  77. - Adds new `gitlens.diffWithPrevious` option to the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings
  78. - Fixes Diff with Previous when the selection is uncommitted
  79. - Removes `gitlens.blame.annotation.useCodeActions` setting and behavior
  80. ### 0.3.3
  81. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing spawn-rx dependency (argh!)
  82. ### 0.3.2
  83. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing lodash dependency
  84. ### 0.3.1
  85. - Adds new CodeLens visibility & location settings -- see **Extension Settings** above for details
  86. - Adds new command to toggle CodeLens on and off when `gitlens.codeLens.visibility` is set to `ondemand`
  87. ### 0.2.0
  88. - Fixes [#1](https://github.com/eamodio/vscode-gitlens/issues/1) - Support blame on files outside the workspace repository
  89. - Replaces blame regex parsing with a more robust parser
  90. - Fixes failures with Diff with Previous command
  91. - Fixes issues with blame explorer CodeLens when dealing with previous commits
  92. - Fixes display issues with compact blame annotations (now skips blank lines)
  93. ### 0.1.3
  94. - Improved blame annotations, now with sha and author by default
  95. - Add new blame annotation styles -- compact and expanded (default)
  96. - Adds many new configuration settings; see **Extension Settings** above for details
  97. ### 0.0.7
  98. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash (Really!)
  99. - Fixes [#5](https://github.com/eamodio/vscode-gitlens/issues/5) - Finding first non-white-space fails sometimes
  100. - Adds .gitignore checks to reduce the number of blame calls
  101. ### 0.0.6
  102. - Fixes [#2](https://github.com/eamodio/vscode-gitlens/issues/2) - [request] Provide some debug info when things fail
  103. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash
  104. - Attempts to scroll to the correct position when opening a diff
  105. ### 0.0.5
  106. - Fixes issues where filename changes in history would cause diffs to fails
  107. - Fixes some issues with uncommitted blames
  108. - Removes CodeLens from fields and single-line properties to reduce visual noise
  109. - Automatically turns off blame only when required now
  110. ### 0.0.4
  111. Candidate for preview release on the vscode marketplace.
  112. ### 0.0.1
  113. Initial release but still heavily a work in progress.