Skip to content

Commit

Permalink
update changelog & bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com>
  • Loading branch information
pyalex committed Oct 12, 2021
1 parent 6780262 commit 7825d58
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 9 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [v0.2.15](https://github.com/feast-dev/feast-spark/tree/v0.2.15) (2021-10-12)
[Full Changelog](https://github.com/feast-dev/feast-spark/compare/v0.2.14...v0.2.15)

**Implemented enhancements:**

- Configurable templates by job type for spark kubernetes jobs [\#99](https://github.com/feast-dev/feast-spark/pull/99) ([pyalex](https://github.com/pyalex))

## [v0.2.14](https://github.com/feast-dev/feast-spark/tree/v0.2.14) (2021-09-27)
[Full Changelog](https://github.com/feast-dev/feast-spark/compare/v0.2.13...v0.2.14)

**Implemented enhancements:**

- Enable sql expression evaluation in fieldMapping for historical retrieval [\#98](https://github.com/feast-dev/feast-spark/pull/98) ([pyalex](https://github.com/pyalex))

## [v0.2.13](https://github.com/feast-dev/feast-spark/tree/v0.2.13) (2021-09-25)
[Full Changelog](https://github.com/feast-dev/feast-spark/compare/v0.2.12...v0.2.13)

**Implemented enhancements:**

- Add streaming metrics [\#95](https://github.com/feast-dev/feast-spark/pull/95) ([khorshuheng](https://github.com/khorshuheng))

**Fixed bugs:**

- Fix setup requirement [\#97](https://github.com/feast-dev/feast-spark/pull/97) ([khorshuheng](https://github.com/khorshuheng))
- Remove spark bigquery package download at run time [\#96](https://github.com/feast-dev/feast-spark/pull/96) ([khorshuheng](https://github.com/khorshuheng))

## [v0.2.12](https://github.com/feast-dev/feast-spark/tree/v0.2.12) (2021-08-19)
[Full Changelog](https://github.com/feast-dev/feast-spark/compare/v0.2.11...v0.2.12)

Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Extension for running Ingestion on Spark
name: feast-spark
version: 0.2.12
version: 0.2.15
4 changes: 2 additions & 2 deletions infra/charts/feast-spark/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# feast-spark

Feast Extension for running Ingestion on Spark 0.2.12
Feast Extension for running Ingestion on Spark 0.2.15

## Installation

Expand All @@ -10,7 +10,7 @@ https://docs.feast.dev/v/master/getting-started/deploying-feast/kubernetes

| Repository | Name | Version |
|------------|------|---------|
| | feast-jobservice | 0.2.12 |
| | feast-jobservice | 0.2.15 |
| | prometheus-statsd-exporter | 0.1.2 |

## Values
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Job Service manage ingestion jobs.
name: feast-jobservice
version: 0.2.12
version: 0.2.15
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/charts/feast-jobservice/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# feast-jobservice

![Version: 0.2.12](https://img.shields.io/badge/Version-0.2.12-informational?style=flat-square)
![Version: 0.2.15](https://img.shields.io/badge/Version-0.2.15-informational?style=flat-square)

Feast Job Service manage ingestion jobs.

Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies:
- name: feast-jobservice
repository: ""
version: 0.2.12
version: 0.2.15
- name: prometheus-statsd-exporter
repository: ""
version: 0.1.2
Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: feast-jobservice
version: 0.2.12
version: 0.2.15
condition: feast-jobservice.enabled
- name: prometheus-statsd-exporter
version: 0.1.2
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</modules>

<properties>
<revision>0.2.12</revision>
<revision>0.2.15</revision>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<scala.version>2.12</scala.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ object IngestionJob {

val parser = new scopt.OptionParser[IngestionJobConfig]("IngestionJob") {
// ToDo: read version from Manifest
head("feastSpark.ingestion.IngestionJob", "0.2.5")
head("feastSpark.ingestion.IngestionJob", "0.2.15")

opt[Modes]("mode")
.action((x, c) => c.copy(mode = x))
Expand Down

0 comments on commit 7825d58

Please sign in to comment.