added changelog to spring boot vscode extension and updated readme a bit
This commit is contained in:
53
vscode-extensions/vscode-spring-boot/CHANGELOG.md
Normal file
53
vscode-extensions/vscode-spring-boot/CHANGELOG.md
Normal file
@@ -0,0 +1,53 @@
|
||||
## 2018-05-14 (M11)
|
||||
|
||||
* _(Spring Boot)_ major performance improvements and footprint reductions (due to a groundbreaking change to how projects are being resolved, this is now delegated to the surrounding Java tooling)
|
||||
* _(Spring Boot)_ support for JDK10 added
|
||||
* _(Spring Boot)_ bugfix - custom JMX domains now supported for live hovers ([#44](https://github.com/spring-projects/sts4/issues/44))
|
||||
* _(Spring Boot)_ bugfix - live hovers now show up for all open editors (not limited to the one with focus anymore)
|
||||
* _(all)_ JVM used to run the language servers can now be specified via custom settings ([#51](https://github.com/spring-projects/sts4/issues/51))
|
||||
|
||||
## 2018-03-15 (M10)
|
||||
|
||||
* _(Spring Boot)_ support added for request-mapping-like symbols for webflux router definitions
|
||||
* _(Spring Boot)_ code lenses for webflux handler methods implemented that visualize the mapped route (VSCode only at the moment)
|
||||
* _(Spring Boot)_ document highlight support added for webflux router definitions that highlight parts of the routes that belong together
|
||||
* _(Spring Boot)_ request mapping symbols now include accept and content type defintions
|
||||
* _(Spring Boot)_ support for direct navigation from live injection reports to source code added for Eclipse
|
||||
* _(Spring Boot)_ abstract @Bean-annotated methods are now ignored when creating symbols for bean definitions
|
||||
* _(Spring Boot)_ URLs from hovers (like request mapping URLs from running boot apps) now open in an internal browser that has a navigation and an address bar
|
||||
* _(Spring Boot)_ bugfix for NPE that happened occasionally when creating a new Java file
|
||||
* _(all)_ language server processes now show up with their real name when using `jps` instead of just `JarLauncher`
|
||||
|
||||
## 2018-02-23 (M9)
|
||||
|
||||
__Attention:__ We merged the two different extensions for Spring Boot (for Java code and for properties) into a single extension for the various platforms (Eclipse, VSCode, Atom). This might require that you manually uninstall the old extensions and install the new ones. Automatic updates don't work here. For the Eclipse case, you might want to start with a fresh STS4 M9 distribution and go from there to avoid manual uninstall/install steps.
|
||||
|
||||
* _(Spring Boot)_ support added for Spring Data repositories, they show up as bean symbols now
|
||||
* _(Spring Boot)_ fixed a bug that caused an exception when using content-assist for a non-Spring-Boot java project
|
||||
* _(Spring Boot, VSCode)_ support for navigation added to live injection reports, they allow you to directly navigate to the source code of the bean type and the resource where the bean got defined. Limitation: this works for VSCode only at the moment, support for Eclipse and Atom still in progress
|
||||
* _(Spring Boot, Eclipse integration)_ fixed a bug that caused content-assist to be turned off in the java editor
|
||||
* improved the way the JDK to run the language server is found together with an improved error message if no JDK can be found
|
||||
|
||||
## 2018-01-30 (M8)
|
||||
|
||||
* _(Spring Boot Java)_ function declarations are now being parsed into symbols for functions that directly inherit from `java.util.Function` ([#18](https://github.com/spring-projects/sts4/issues/18))
|
||||
* _(Spring Boot Java)_ updated live hover mechanics to work with latest Spring Boot 2.0 snapshot versions
|
||||
* _(Spring Boot Java)_ improved the way the JDK (to run the language server) is found
|
||||
* _(Spring Boot Java)_ improved warning message about missing tools.jar
|
||||
* _(Spring Boot Java)_ live hovers now show up on class flies that are displayed as source
|
||||
* _(Spring Boot Java)_ fixed a problem with outdated symbols showing up after file deletion/rename
|
||||
* _(Spring Boot Java)_ fixed a deadlock issue
|
||||
* _(Spring Boot Java)_ reduced number of threads used behind the scenes
|
||||
* _(Spring Boot Java)_ reduced number of CPU cycles used by live hover mechanism
|
||||
* _(Spring Boot Java, Spring Boot Properties)_ reduced memory footprint
|
||||
* _(Spring Boot Properties)_ fixed an issue with wrong indentation after inserting property node
|
||||
|
||||
## 2017-12-15 (M7)
|
||||
|
||||
* _(all)_ issues solved when running on Windows ([#25](https://github.com/spring-projects/sts4/issues/25), [#26](https://github.com/spring-projects/sts4/issues/26), [#29](https://github.com/spring-projects/sts4/issues/29))
|
||||
* _(Spring Boot Java)_ live hover information now works for inner classes
|
||||
* _(Spring Boot Properties)_ boot property editing now activated for bootstrap*.yml files in VSCode automatically
|
||||
|
||||
## 2017-12-04
|
||||
|
||||
* initial public beta launch
|
||||
@@ -1,4 +1,4 @@
|
||||
# VS Code Language Server for Spring Boot Application Properties
|
||||
# VS Code Language Server for Spring Boot
|
||||
|
||||
VSCode extension and Language Server providing support for working with Spring Boot
|
||||
`application.properties`, `application.yml` and `.java` files.
|
||||
@@ -8,9 +8,9 @@ VSCode extension and Language Server providing support for working with Spring B
|
||||
The extension will automatically activate when you edit files with the following
|
||||
name patterns:
|
||||
|
||||
- `*.java` => activates Spring Boot specific support editing `.java` files.
|
||||
- `application*.properties` => activates support for Spring Boot properties in `.properties`format.
|
||||
- `application*.yml` => activates support for Spring Boot properties in `.yml` format.
|
||||
- `*.java` => activates Spring Boot specific support editing `.java` files.
|
||||
|
||||
You can also define your own patterns and map them to the language-ids
|
||||
`spring-boot-properties` or `spring-boot-properties-yaml` by defining `files.associations`
|
||||
|
||||
Reference in New Issue
Block a user