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.

139 lines
6.5 KiB

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