Skip to content

Commit 64852e2

Browse files
committed
Release v0.3.8
1 parent b517225 commit 64852e2

File tree

8 files changed

+28
-16
lines changed

8 files changed

+28
-16
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [v0.3.8](https://github.com/feast-dev/feast/tree/v0.3.8) (2020-06-10)
4+
5+
[Full Changelog](https://github.com/feast-dev/feast/compare/v0.3.7...v0.3.8)
6+
7+
**Implemented enhancements:**
8+
9+
- v0.3 backport: Add feature and feature set labels [\#737](https://github.com/feast-dev/feast/pull/737) ([ches](https://github.com/ches))
10+
11+
**Merged pull requests:**
12+
13+
- v0.3 backport: Add Java coverage reporting [\#734](https://github.com/feast-dev/feast/pull/734) ([ches](https://github.com/ches))
14+
315
## [v0.3.7](https://github.com/gojek/feast/tree/v0.3.7) (2020-05-01)
416

517
[Full Changelog](https://github.com/gojek/feast/compare/v0.3.6...v0.3.7)

infra/charts/feast/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: A Helm chart to install Feast on kubernetes
33
name: feast
4-
version: 0.3.2
4+
version: 0.3.8

infra/charts/feast/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ helm repo update
3939
Install Feast release with minimal features, without batch serving and persistency:
4040
```bash
4141
RELEASE_NAME=demo
42-
helm install feast-charts/feast --name $RELEASE_NAME --version 0.3.2 -f values-demo.yaml
42+
helm install feast-charts/feast --name $RELEASE_NAME --version 0.3.8 -f values-demo.yaml
4343
```
4444

4545
Install Feast release for typical use cases, with batch and online serving:
@@ -60,7 +60,7 @@ PROJECT_ID=google-cloud-project-id
6060
DATASET_ID=bigquery-dataset-id
6161

6262
# Install the Helm release using default values.yaml
63-
helm install feast-charts/feast --name feast --version 0.3.2 \
63+
helm install feast-charts/feast --name feast --version 0.3.8 \
6464
--set feast-serving-batch."application\.yaml".feast.jobs.staging-location=$STAGING_LOCATION \
6565
--set feast-serving-batch."store\.yaml".bigquery_config.project_id=$PROJECT_ID \
6666
--set feast-serving-batch."store\.yaml".bigquery_config.dataset_id=$DATASET_ID
@@ -83,7 +83,7 @@ The following table lists the configurable parameters of the Feast chart and the
8383
| `feast-core.kafka.topics[0].partitions` | No of partitions for the topic | `1`
8484
| `feast-core.replicaCount` | No of pods to create | `1`
8585
| `feast-core.image.repository` | Repository for Feast Core Docker image | `gcr.io/kf-feast/feast-core`
86-
| `feast-core.image.tag` | Tag for Feast Core Docker image | `0.3.2`
86+
| `feast-core.image.tag` | Tag for Feast Core Docker image | `0.3.8`
8787
| `feast-core.image.pullPolicy` | Image pull policy for Feast Core Docker image | `IfNotPresent`
8888
| `feast-core.application.yaml` | Configuration for Feast Core application | Refer to this [link](charts/feast-core/values.yaml)
8989
| `feast-core.springConfigMountPath` | Directory to mount application.yaml | `/etc/feast/feast-core`
@@ -116,7 +116,7 @@ The following table lists the configurable parameters of the Feast chart and the
116116
| `feast-serving-online.core.enabled` | Flag for Feast Serving to use Feast Core in the same Helm release | `true`
117117
| `feast-serving-online.replicaCount` | No of pods to create | `1`
118118
| `feast-serving-online.image.repository` | Repository for Feast Serving Docker image | `gcr.io/kf-feast/feast-serving`
119-
| `feast-serving-online.image.tag` | Tag for Feast Serving Docker image | `0.3.2`
119+
| `feast-serving-online.image.tag` | Tag for Feast Serving Docker image | `0.3.8`
120120
| `feast-serving-online.image.pullPolicy` | Image pull policy for Feast Serving Docker image | `IfNotPresent`
121121
| `feast-serving-online.application.yaml` | Application configuration for Feast Serving | Refer to this [link](charts/feast-serving/values.yaml)
122122
| `feast-serving-online.store.yaml` | Store configuration for Feast Serving | Refer to this [link](charts/feast-serving/values.yaml)
@@ -150,7 +150,7 @@ The following table lists the configurable parameters of the Feast chart and the
150150
| `feast-serving-batch.core.enabled` | Flag for Feast Serving to use Feast Core in the same Helm release | `true`
151151
| `feast-serving-batch.replicaCount` | No of pods to create | `1`
152152
| `feast-serving-batch.image.repository` | Repository for Feast Serving Docker image | `gcr.io/kf-feast/feast-serving`
153-
| `feast-serving-batch.image.tag` | Tag for Feast Serving Docker image | `0.3.2`
153+
| `feast-serving-batch.image.tag` | Tag for Feast Serving Docker image | `0.3.8`
154154
| `feast-serving-batch.image.pullPolicy` | Image pull policy for Feast Serving Docker image | `IfNotPresent`
155155
| `feast-serving-batch.application.yaml` | Application configuration for Feast Serving | Refer to this [link](charts/feast-serving/values.yaml)
156156
| `feast-serving-batch.store.yaml` | Store configuration for Feast Serving | Refer to this [link](charts/feast-serving/values.yaml)
@@ -176,4 +176,4 @@ The following table lists the configurable parameters of the Feast chart and the
176176
| `feast-serving-batch.http.targetPort` | Container port for HTTP request | `8080`
177177
| `feast-serving-batch.grpc.port` | Kubernetes Service port for GRPC request| `6566`
178178
| `feast-serving-batch.grpc.targetPort` | Container port for GRPC request| `6566`
179-
| `feast-serving-batch.resources` | CPU and memory allocation for the pod | `{}`
179+
| `feast-serving-batch.resources` | CPU and memory allocation for the pod | `{}`
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: A Helm chart for core component of Feast
33
name: feast-core
4-
version: 0.3.2
4+
version: 0.3.8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: A Helm chart for serving component of Feast
33
name: feast-serving
4-
version: 0.3.2
4+
version: 0.3.8
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
dependencies:
22
- name: feast-core
33
repository: ""
4-
version: 0.3.2
4+
version: 0.3.8
55
- name: feast-serving
66
repository: ""
7-
version: 0.3.2
7+
version: 0.3.8
88
- name: feast-serving
99
repository: ""
10-
version: 0.3.2
10+
version: 0.3.8
1111
digest: sha256:7ee4cd271cbd4ace44817dd12ba65f490a8e3529adf199604a2c2bdad9c2fac3
1212
generated: "2019-11-27T13:35:41.334054+08:00"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
dependencies:
22
- name: feast-core
3-
version: 0.3.2
3+
version: 0.3.8
44
condition: feast-core.enabled
55
- name: feast-serving
66
alias: feast-serving-batch
7-
version: 0.3.2
7+
version: 0.3.8
88
condition: feast-serving-batch.enabled
99
- name: feast-serving
1010
alias: feast-serving-online
11-
version: 0.3.2
11+
version: 0.3.8
1212
condition: feast-serving-online.enabled

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</modules>
3838

3939
<properties>
40-
<revision>0.3.8-SNAPSHOT</revision>
40+
<revision>0.3.8</revision>
4141
<github.url>https://github.com/gojek/feast</github.url>
4242

4343
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)