Skip to content

Commit 2f90321

Browse files
authored
Prep 0.12.1 Release (#572)
1 parent 886cec0 commit 2f90321

File tree

5 files changed

+114
-4
lines changed

5 files changed

+114
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<tbody align="center">
4040
<tr>
4141
<td >2.3.*</td>
42-
<td rowspan=6><a href="https://github.com/dotnet/spark/releases/tag/v0.12.0">v0.12.0</a></td>
42+
<td rowspan=6><a href="https://github.com/dotnet/spark/releases/tag/v0.12.1">v0.12.1</a></td>
4343
</tr>
4444
<tr>
4545
<td>2.4.0</td>

benchmark/scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.spark</groupId>
55
<artifactId>microsoft-spark-benchmark</artifactId>
6-
<version>0.12.0</version>
6+
<version>0.12.1</version>
77
<inceptionYear>2019</inceptionYear>
88
<properties>
99
<encoding>UTF-8</encoding>
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# .NET for Apache Spark 0.12.1 Release Notes
2+
3+
### New Features/Improvements
4+
5+
* Expose `JvmException` to capture JVM error messages separately ([#566](https://github.com/dotnet/spark/pull/566))
6+
7+
### Bug Fixes
8+
9+
* AssemblyLoader should use absolute assembly path when loading assemblies ([570](https://github.com/dotnet/spark/pull/570))
10+
11+
### Infrastructure / Documentation / Etc.
12+
13+
* None
14+
15+
### Breaking Changes
16+
17+
* None
18+
19+
### Known Issues
20+
21+
* Broadcast variables do not work with [dotnet-interactive](https://github.com/dotnet/interactive) ([#561](https://github.com/dotnet/spark/pull/561))
22+
23+
### Compatibility
24+
25+
#### Backward compatibility
26+
27+
The following table describes the oldest version of the worker that the current version is compatible with, along with new features that are incompatible with the worker.
28+
29+
<table>
30+
<thead>
31+
<tr>
32+
<th>Oldest compatible Microsoft.Spark.Worker version</th>
33+
<th>Incompatible features</th>
34+
</tr>
35+
</thead>
36+
<tbody align="center">
37+
<tr>
38+
<td rowspan=4>v0.9.0</td>
39+
<td>DataFrame with Grouped Map UDF <a href="https://github.com/dotnet/spark/pull/277">(#277)</a></td>
40+
</tr>
41+
<tr>
42+
<td>DataFrame with Vector UDF <a href="https://github.com/dotnet/spark/pull/277">(#277)</a></td>
43+
</tr>
44+
<tr>
45+
<td>Support for Broadcast Variables <a href="https://github.com/dotnet/spark/pull/414">(#414)</a></td>
46+
</tr>
47+
<tr>
48+
<td>Support for TimestampType <a href="https://github.com/dotnet/spark/pull/428">(#428)</a></td>
49+
</tr>
50+
</tbody>
51+
</table>
52+
53+
#### Forward compatibility
54+
55+
The following table describes the oldest version of .NET for Apache Spark release that the current worker is compatible with.
56+
57+
<table>
58+
<thead>
59+
<tr>
60+
<th>Oldest compatible .NET for Apache Spark release version</th>
61+
</tr>
62+
</thead>
63+
<tbody align="center">
64+
<tr>
65+
<td>v0.9.0</td>
66+
</tr>
67+
</tbody>
68+
</table>
69+
70+
### Supported Spark Versions
71+
72+
The following table outlines the supported Spark versions along with the microsoft-spark JAR to use with:
73+
74+
<table>
75+
<thead>
76+
<tr>
77+
<th>Spark Version</th>
78+
<th>microsoft-spark JAR</th>
79+
</tr>
80+
</thead>
81+
<tbody align="center">
82+
<tr>
83+
<td>2.3.*</td>
84+
<td>microsoft-spark-2.3.x-0.12.1.jar</td>
85+
</tr>
86+
<tr>
87+
<td>2.4.0</td>
88+
<td rowspan=6>microsoft-spark-2.4.x-0.12.1.jar</td>
89+
</tr>
90+
<tr>
91+
<td>2.4.1</td>
92+
</tr>
93+
<tr>
94+
<td>2.4.3</td>
95+
</tr>
96+
<tr>
97+
<td>2.4.4</td>
98+
</tr>
99+
<tr>
100+
<td>2.4.5</td>
101+
</tr>
102+
<tr>
103+
<td>2.4.6</td>
104+
</tr>
105+
<tr>
106+
<td>2.4.2</td>
107+
<td><a href="https://github.com/dotnet/spark/issues/60">Not supported</a></td>
108+
</tr>
109+
</tbody>
110+
</table>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VersionPrefix>0.12.0</VersionPrefix>
4+
<VersionPrefix>0.12.1</VersionPrefix>
55
<PreReleaseVersionLabel>prerelease</PreReleaseVersionLabel>
66
<RestoreSources>
77
$(RestoreSources);

src/scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>${microsoft-spark.version}</version>
88
<properties>
99
<encoding>UTF-8</encoding>
10-
<microsoft-spark.version>0.12.0</microsoft-spark.version>
10+
<microsoft-spark.version>0.12.1</microsoft-spark.version>
1111
</properties>
1212

1313
<modules>

0 commit comments

Comments
 (0)