Skip to content

Commit e2c1ae1

Browse files
authored
0.4.0 Release (#189)
1 parent b0d6f33 commit e2c1ae1

File tree

8 files changed

+59
-8
lines changed

8 files changed

+59
-8
lines changed

README.md

+1-1
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=4><a href="https://github.com/dotnet/spark/releases/tag/v0.3.0">v0.3.0</a></td>
42+
<td rowspan=4><a href="https://github.com/dotnet/spark/releases/tag/v0.4.0">v0.4.0</a></td>
4343
</tr>
4444
<tr>
4545
<td>2.4.0</td>

benchmark/scala/pom.xml

+1-1
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.3.0</version>
6+
<version>0.4.0</version>
77
<inceptionYear>2019</inceptionYear>
88
<properties>
99
<encoding>UTF-8</encoding>

docs/release-notes/0.3/release-0.3.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ The following table outlines the supported Spark versions along with the microso
2626
<tbody align="center">
2727
<tr>
2828
<td>2.3.*</td>
29-
<td>microsoft-spark-2.3.x-0.2.0.jar</td>
29+
<td>microsoft-spark-2.3.x-0.3.0.jar</td>
3030
</tr>
3131
<tr>
3232
<td>2.4.0</td>
33-
<td rowspan=3>microsoft-spark-2.4.x-0.2.0.jar</td>
33+
<td rowspan=3>microsoft-spark-2.4.x-0.3.0.jar</td>
3434
</tr>
3535
<tr>
3636
<td>2.4.1</td>

docs/release-notes/0.4/release-0.4.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# .NET for Apache Spark 0.4 Release Notes
2+
3+
### New Features and Improvements
4+
5+
* Revamped loading assemblies used inside UDFs ([#180](https://github.com/dotnet/spark/pull/180))
6+
* Support for Vector UDFs ([#127](https://github.com/dotnet/spark/pull/127))
7+
* Support for Grouped Map UDFs ([#143](https://github.com/dotnet/spark/pull/143))
8+
* Resolve the signer mismatch issue ([#186](https://github.com/dotnet/spark/pull/186))
9+
* Ability to launch a debugger from the worker ([#150](https://github.com/dotnet/spark/pull/150))
10+
* Compatibility check for Microsoft.Spark.dll in the worker ([#170](https://github.com/dotnet/spark/pull/170))
11+
* Update Apache.Arrow to v0.14.1 ([#167](https://github.com/dotnet/spark/pull/167))
12+
* Support for RuntimeConfig in SparkSession ([#184](https://github.com/dotnet/spark/pull/184))
13+
* Support for `Trigger` in `DataStreamWriter` ([#153](https://github.com/dotnet/spark/pull/153))
14+
* The ability to use `--archives` option to deploy the worker binaries and assemblies that UDFs depend on ([#187](https://github.com/dotnet/spark/pull/187))
15+
16+
### Breaking Changes
17+
* Due to the changes in loading assemblies ([#180](https://github.com/dotnet/spark/pull/180)), the Microsoft.Spark.Worker executable is no longer compatible with the previous versions.
18+
* The `--class org.apache.spark.deploy.DotnetRunner` option in `spark-submit` is changed to **`--class org.apache.spark.deploy.dotnet.DotnetRunner`** to resolve the signer mismatch issue ([#186](https://github.com/dotnet/spark/pull/186)).
19+
20+
### Supported Spark Versions
21+
22+
The following table outlines the supported Spark versions along with the microsoft-spark JAR to use with:
23+
24+
<table>
25+
<thead>
26+
<tr>
27+
<th>Spark Version</th>
28+
<th>microsoft-spark JAR</th>
29+
</tr>
30+
</thead>
31+
<tbody align="center">
32+
<tr>
33+
<td>2.3.*</td>
34+
<td>microsoft-spark-2.3.x-0.4.0.jar</td>
35+
</tr>
36+
<tr>
37+
<td>2.4.0</td>
38+
<td rowspan=3>microsoft-spark-2.4.x-0.4.0.jar</td>
39+
</tr>
40+
<tr>
41+
<td>2.4.1</td>
42+
</tr>
43+
<tr>
44+
<td>2.4.3</td>
45+
</tr>
46+
<tr>
47+
<td>2.4.2</td>
48+
<td><a href="https://github.com/dotnet/spark/issues/60">Not supported</a></td>
49+
</tr>
50+
</tbody>
51+
</table>

eng/Versions.props

+1-1
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.3.0</VersionPrefix>
4+
<VersionPrefix>0.4.0</VersionPrefix>
55
<PreReleaseVersionLabel>prerelease</PreReleaseVersionLabel>
66
<RestoreSources>
77
$(RestoreSources);

src/scala/microsoft-spark-2.3.x/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.scala</groupId>
66
<artifactId>microsoft-spark</artifactId>
7-
<version>0.3.0</version>
7+
<version>0.4.0</version>
88
</parent>
99
<artifactId>microsoft-spark-2.3.x</artifactId>
1010
<inceptionYear>2019</inceptionYear>

src/scala/microsoft-spark-2.4.x/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.scala</groupId>
66
<artifactId>microsoft-spark</artifactId>
7-
<version>0.3.0</version>
7+
<version>0.4.0</version>
88
</parent>
99
<artifactId>microsoft-spark-2.4.x</artifactId>
1010
<inceptionYear>2019</inceptionYear>

src/scala/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.scala</groupId>
55
<artifactId>microsoft-spark</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.3.0</version>
7+
<version>0.4.0</version>
88
<properties>
99
<encoding>UTF-8</encoding>
1010
</properties>

0 commit comments

Comments
 (0)