This repository was archived by the owner on Aug 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +17
-10
lines changed
commons/src/main/java/org/jetbrains/bsp/bazel/commons
server/src/main/java/org/jetbrains/bsp/bazel Expand file tree Collapse file tree 5 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 5
5
6
6
## [ Unreleased]
7
7
8
+ ## [ 2.7.0]
9
+
8
10
### Features 🎉
9
11
- Server uses BEP to log bazel progress.
10
12
| [ ae52b8f] ( https://github.com/JetBrains/bazel-bsp/commit/ae52b8f401b793ba15e84d492ba0f72a462b74dc )
11
13
12
14
### Fixes 🛠️
13
- - Add class jars generated during annotation processing
15
+ - Add class jars generated during annotation processing.
14
16
| [ #372 ] ( https://github.com/JetBrains/bazel-bsp/pull/372 )
15
- - Set PublishDiagnosticsParams.reset to be true
17
+ - Set PublishDiagnosticsParams.reset to be true.
16
18
| [ #377 ] ( https://github.com/JetBrains/bazel-bsp/pull/377 )
17
- - Update document about how to use projectview
19
+ - Update document about how to use projectview.
18
20
| [ #383 ] ( https://github.com/JetBrains/bazel-bsp/pull/383 )
21
+ - Fixup failed target names from BEP in bazel 6+ in the bloop mode.
22
+ | [ #402 ] ( https://github.com/JetBrains/bazel-bsp/pull/402 )
23
+
19
24
20
25
## [ 2.6.1]
21
26
359
364
360
365
- Everything... 🎉
361
366
362
- [ Unreleased ] : https://github.com/JetBrains/bazel-bsp/compare/2.6.1...HEAD
367
+ [ Unreleased ] : https://github.com/JetBrains/bazel-bsp/compare/2.7.0...HEAD
368
+
369
+ [ 2.7.0 ] : https://github.com/JetBrains/bazel-bsp/compare/2.6.1..2.7.0
363
370
364
371
[ 2.6.1 ] : https://github.com/JetBrains/bazel-bsp/compare/2.6.0..2.6.1
365
372
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Below is a list of languages supported over Bazel BSP and their implementation s
33
33
2 . Run in the directory where Bazel BSP should be installed:
34
34
35
35
``` shell
36
- cs launch org.jetbrains.bsp:bazel-bsp:2.6.1 -M org.jetbrains.bsp.bazel.install.Install
36
+ cs launch org.jetbrains.bsp:bazel-bsp:2.7.0 -M org.jetbrains.bsp.bazel.install.Install
37
37
```
38
38
39
39
3 . Add bsp generated folders to your ` .gitignore ` : ` .bsp ` and ` .bazelbsp `
@@ -66,7 +66,7 @@ bazel run --stamp --define "maven_repo=file://$HOME/.m2/repository" //server/src
66
66
cs launch -r m2Local org.jetbrains.bsp:bazel-bsp:< your version> -M org.jetbrains.bsp.bazel.install.Install
67
67
```
68
68
69
- ### Using Bloop
69
+ ### Using Bloop ( _ deprecated! _ )
70
70
71
71
By default Bazel BSP runs as a BSP server and invokes Bazel to compile, test and run targets.
72
72
This provides the most accurate build results at the expense of
@@ -95,7 +95,7 @@ For example, using Coursier:
95
95
96
96
``` shell
97
97
cd ~ /src/my-repository
98
- cs launch org.jetbrains.bsp:bazel-bsp:2.6.1 -M org.jetbrains.bsp.bazel.install.Install \
98
+ cs launch org.jetbrains.bsp:bazel-bsp:2.7.0 -M org.jetbrains.bsp.bazel.install.Install \
99
99
-- \
100
100
--use-bloop \
101
101
-t //my-targets/... \
Original file line number Diff line number Diff line change 1
- 2.6.1
1
+ 2.7.0
Original file line number Diff line number Diff line change 5
5
6
6
public class Constants {
7
7
public static final String NAME = "bazelbsp" ;
8
- public static final String VERSION = "2.6.1 " ;
8
+ public static final String VERSION = "2.7.0 " ;
9
9
public static final String BSP_VERSION = "2.1.0-M4" ;
10
10
public static final String SCALA = "scala" ;
11
11
public static final String JAVA = "java" ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ load("@bazel_sonatype//:defs.bzl", "sonatype_java_export")
4
4
sonatype_java_export (
5
5
name = "bsp" ,
6
6
srcs = glob (["*.java" ]),
7
- maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.6.1 " ,
7
+ maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.7.0 " ,
8
8
maven_profile = "org.jetbrains" ,
9
9
pom_template = "//:pom.xml" ,
10
10
resources = ["//log4j_config" ],
You can’t perform that action at this time.
0 commit comments