lsif-java/CHANGELOG.md

86 строки
3.1 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

# Change Log
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## 0.5.2
### Fixed
- Fix the duplicated end events for a document vertex. [#89](https://github.com/microsoft/lsif-java/issues/89)
- Update dependencies and remove log4j. [PR#95](https://github.com/microsoft/lsif-java/pull/95)
2021-10-20 09:51:55 +03:00
## 0.5.1
### Changed
- Change to EPL 1.0 license. [#84](https://github.com/microsoft/lsif-java/pull/84)
2021-03-23 10:38:34 +03:00
## 0.5.0
### Added
- Support `ReferenceResults` and `ReferenceLinks`. [PR#74](https://github.com/microsoft/lsif-java/pull/74)
- Add `belongsTo` edge to connect project vertex and group vertex. [PR#72](https://github.com/microsoft/lsif-java/pull/72)
### Changed
- Change compliance to Java 11. [PR#76](https://github.com/microsoft/lsif-java/pull/76)
- Rename `document` to `shard`. [PR#73](https://github.com/microsoft/lsif-java/pull/73)
2020-12-02 05:37:52 +03:00
## 0.4.0
### Added
- Support moniker in LSIF v0.5.0. [PR#63](https://github.com/microsoft/lsif-java/pull/63)
- Support logical group projects in LSIF v0.5.0. [PR#67](https://github.com/microsoft/lsif-java/pull/67)
### Fixed
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.4.0+label%3Abug)
2019-10-09 08:27:17 +03:00
## 0.3.2
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.3.2+label%3Abug)
2019-08-27 08:39:11 +03:00
## 0.3.1
### Fixed
- Update build script to exclude unnecessary files. [PR#47](https://github.com/microsoft/lsif-java/pull/47)
2019-08-23 05:22:07 +03:00
## 0.3.0
### Changed
- Update the implementation to align with the v4 protocol. [PR#45](https://github.com/microsoft/lsif-java/pull/45)
2019-07-16 09:02:11 +03:00
## 0.2.0
### Changed
- Default to the current working directory if `repo.path` is not specified. [#30](https://github.com/Microsoft/lsif-java/issues/30)
2019-07-16 09:02:11 +03:00
- Reimplement the indexer to improve the performance. [PR#33](https://github.com/microsoft/lsif-java/pull/33)
- Update the implementation to align with the v3 protocol. [PR#41](https://github.com/microsoft/lsif-java/pull/41)
2019-04-28 10:57:39 +03:00
## 0.1.6
### Changed
- Improve the indexing performance. [PR#27](https://github.com/Microsoft/lsif-java/pull/27)
2019-04-28 10:57:39 +03:00
### Fixed
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.1.6+label%3Abug)
2019-04-15 08:08:19 +03:00
## 0.1.5
2019-04-26 05:34:42 +03:00
### Changed
- Improve the indexing performance. [#12](https://github.com/Microsoft/lsif-java/issues/12)
2019-04-26 05:34:42 +03:00
2019-04-15 08:08:19 +03:00
### Fixed
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+label%3Abug+milestone%3A0.1.5)
2019-04-15 08:08:19 +03:00
## 0.1.4
### Fixed
- Fix an NPE in ImplementationsVisitor when get the implementation ranges.
### Changed
- Visit SimpleType and SimpleName in HoverVisitor and ReferencesVisitor.
## 0.1.3
### Added
- Add SimpleType, SingleVariableDeclaration, VariableDeclarationFragment and MethodInvocation into ReferencesVisitor.
### Fixed
- Stop enlisting the vertices and edges if the element does not have hover information.
## 0.1.2
### Changed
- Change the output format.
## 0.1.1
### Fixed
- Fix the typo for `metaData`.
- Remove the duplicated `hoverResults`.
## 0.1.0
Initialize the Java LSIF Indexer.