Skip to content
This repository was archived by the owner on Dec 21, 2025. It is now read-only.

Commit f98a0cb

Browse files
Marcin AbramowiczSpace Team
authored andcommitted
[release] 3.1.0
Merge-request: BAZEL-MR-527 Merged-by: Marcin Abramowicz <marcin.abramowicz@jetbrains.com>
1 parent c03090d commit f98a0cb

4 files changed

Lines changed: 36 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,44 @@
11
# Changelog
22

3-
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
4-
53

64
## [Unreleased]
7-
- Include libraries defined in `jdeps` files during sync
5+
6+
## [3.1.0] - 18.09.2023
7+
8+
### Security 🚨
9+
10+
- Bsp cli uses the right permissions for bspcli tmp directory.
11+
| [7fded76](https://github.com/JetBrains/bazel-bsp/commit/7fded7603a53931c3b50a43e5e6345f683d4a4be)
12+
- Server does not use TCP sockets to connect with BES.
13+
| [aac294d](https://github.com/JetBrains/bazel-bsp/commit/aac294d7c9d41d4ace2c01aba33d1bfe8cfabd0b)
814

915
### Features 🎉
1016

11-
- The server generates `extensions.bzl` based on languages (external rules) relevant to the project.
17+
- The server generates `extensions.bzl` based on languages (external rules) relevant to the project.
18+
| [a29c1da](https://github.com/JetBrains/bazel-bsp/commit/a29c1dab6a91888a5358557414f48a0bb0c44c9d)
19+
- Adding available sources to libraries for workspace/libraries call.
20+
| [2e17ea0](https://github.com/JetBrains/bazel-bsp/commit/2e17ea0ee212d362b1569631e6b979a73ba1e013)
1221
- Enhance Kotlinc Opts support.
22+
| [6b45eb6](https://github.com/JetBrains/bazel-bsp/commit/6b45eb61fb90c143b845cae69e2f69c6c1b4460d)
23+
- Include libraries defined in `jdeps` files during sync.
24+
| [bb47e49](https://github.com/JetBrains/bazel-bsp/commit/bb47e493fc595ddf21438f454cee7a6cd756fc0b)
1325

1426
### Fixes 🛠️
1527

16-
- aspects don't fail if target contains another target as `srcs` attribute
17-
- now server can obtain scala 3 compiler
28+
- Avoid using execroot if there are alternative options.
29+
| [6a8a7ac](https://github.com/JetBrains/bazel-bsp/commit/6a8a7ac4d3b823695fd58312f96bcb683582b55f)
30+
- Fixed `resolveOutput` implementation - now should work with projects without symlinks like bazel-bin, bazel-out.
31+
| [eb5df0a](https://github.com/JetBrains/bazel-bsp/commit/eb5df0a90555cf4e99d3332de1f0cbc749d95f0c)
32+
- Aspects don't fail if target contains another target as `srcs` attribute.
33+
| [637f0d9](https://github.com/JetBrains/bazel-bsp/commit/637f0d966ab96dc92ad32b028c82d2c207be8288)
34+
- Server can obtain scala 3 compiler.
35+
| [c4a6701](https://github.com/JetBrains/bazel-bsp/commit/c4a67011f76d76ab3de37e8e1592ebbece76b04b)
36+
- Correctly find symlink names even after folder renaming.
37+
| [f4fb71b](https://github.com/JetBrains/bazel-bsp/commit/f4fb71b019515574376f3a10c297f300acde4701)
38+
- Server does not omit targets that contain dots.
39+
| [1c51f02](https://github.com/JetBrains/bazel-bsp/commit/1c51f02a4331c331a0d7d4cc412bfd1e36daf77e)
40+
- Server adds sources to generated libs.
41+
| [eaa5161](https://github.com/JetBrains/bazel-bsp/commit/eaa5161fe4193268c21c324f27786f5f17f79afd)
1842

1943
## [3.0.0] - 09.08.2023
2044

@@ -440,7 +464,9 @@
440464

441465
- Everything... 🎉
442466

443-
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/3.0.0...HEAD
467+
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/3.1.0...HEAD
468+
469+
[3.1.0]: https://github.com/JetBrains/bazel-bsp/compare/3.0.0...3.1.0
444470

445471
[3.0.0]: https://github.com/JetBrains/bazel-bsp/compare/2.7.2...3.0.0
446472

central-sync/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.1.0

commons/src/main/java/org/jetbrains/bsp/bazel/commons/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
public class Constants {
77
public static final String NAME = "bazelbsp";
8-
public static final String VERSION = "3.0.0";
8+
public static final String VERSION = "3.1.0";
99
public static final String BSP_VERSION = "2.1.0";
1010
public static final String SCALA = "scala";
1111
public static final String JAVA = "java";

server/src/main/java/org/jetbrains/bsp/bazel/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ load("@bazel_sonatype//:defs.bzl", "sonatype_java_export")
33
sonatype_java_export(
44
name = "bsp",
55
srcs = glob(["*.java"]),
6-
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:3.0.0",
6+
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:3.1.0",
77
maven_profile = "org.jetbrains",
88
pom_template = "//server/src/main/resources:pom.xml",
99
resources = ["//log4j_config"],

0 commit comments

Comments
 (0)