Skip to content

Commit bc22fda

Browse files
davidheryantozhilingc
authored andcommitted
Add changelong for v0.4.6 and update versions in pom and Helm chart to v0.4.6
1 parent 155cede commit bc22fda

File tree

8 files changed

+24
-11
lines changed

8 files changed

+24
-11
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [v0.4.6](https://github.com/gojek/feast/tree/v0.4.6) (2020-02-26)
4+
5+
[Full Changelog](https://github.com/gojek/feast/compare/v0.4.5...v0.4.6)
6+
7+
**Merged pull requests:**
8+
- Rename metric name for request latency in feast serving [\#488](https://github.com/gojek/feast/pull/488) ([davidheryanto](https://github.com/davidheryanto))
9+
- Allow use of secure gRPC in Feast Python client [\#459](https://github.com/gojek/feast/pull/459) ([Yanson](https://github.com/Yanson))
10+
- Extend WriteMetricsTransform in Ingestion to write feature value stats to StatsD [\#486](https://github.com/gojek/feast/pull/486) ([davidheryanto](https://github.com/davidheryanto))
11+
- Remove transaction from Ingestion [\#480](https://github.com/gojek/feast/pull/480) ([imjuanleonard](https://github.com/imjuanleonard))
12+
- Fix fastavro version used in Feast to avoid Timestamp delta error [\#490](https://github.com/gojek/feast/pull/490) ([davidheryanto](https://github.com/davidheryanto))
13+
- Fail Spotless formatting check before tests execute [\#487](https://github.com/gojek/feast/pull/487) ([ches](https://github.com/ches))
14+
- Reduce refresh rate of specification refresh in Serving to 10 seconds [\#481](https://github.com/gojek/feast/pull/481) ([woop](https://github.com/woop))
15+
316
## [v0.4.5](https://github.com/gojek/feast/tree/v0.4.5) (2020-02-14)
417

518
[Full Changelog](https://github.com/gojek/feast/compare/v0.4.4...v0.4.5)

datatypes/java/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Dependency Coordinates
1616
<dependency>
1717
<groupId>dev.feast</groupId>
1818
<artifactId>datatypes-java</artifactId>
19-
<version>0.4.5-SNAPSHOT</version>
19+
<version>0.4.6-SNAPSHOT</version>
2020
</dependency>
2121
```
2222

infra/charts/feast/Chart.yaml

+1-1
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.4.5
4+
version: 0.4.6

infra/charts/feast/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The following table lists the configurable parameters of the Feast chart and the
8585
| `feast-core.prometheus-statsd-exporter.*` | Refer to this [link](charts/feast-core/charts/prometheus-statsd-exporter/values.yaml |
8686
| `feast-core.replicaCount` | No of pods to create | `1`
8787
| `feast-core.image.repository` | Repository for Feast Core Docker image | `gcr.io/kf-feast/feast-core`
88-
| `feast-core.image.tag` | Tag for Feast Core Docker image | `0.4.5`
88+
| `feast-core.image.tag` | Tag for Feast Core Docker image | `0.4.6`
8989
| `feast-core.image.pullPolicy` | Image pull policy for Feast Core Docker image | `IfNotPresent`
9090
| `feast-core.prometheus.enabled` | Add annotations to enable Prometheus scraping | `false`
9191
| `feast-core.application.yaml` | Configuration for Feast Core application | Refer to this [link](charts/feast-core/values.yaml)
@@ -126,7 +126,7 @@ The following table lists the configurable parameters of the Feast chart and the
126126
| `feast-serving-online.core.enabled` | Flag for Feast Serving to use Feast Core in the same Helm release | `true`
127127
| `feast-serving-online.replicaCount` | No of pods to create | `1`
128128
| `feast-serving-online.image.repository` | Repository for Feast Serving Docker image | `gcr.io/kf-feast/feast-serving`
129-
| `feast-serving-online.image.tag` | Tag for Feast Serving Docker image | `0.4.5`
129+
| `feast-serving-online.image.tag` | Tag for Feast Serving Docker image | `0.4.6`
130130
| `feast-serving-online.image.pullPolicy` | Image pull policy for Feast Serving Docker image | `IfNotPresent`
131131
| `feast-serving-online.prometheus.enabled` | Add annotations to enable Prometheus scraping | `true`
132132
| `feast-serving-online.application.yaml` | Application configuration for Feast Serving | Refer to this [link](charts/feast-serving/values.yaml)
@@ -168,7 +168,7 @@ The following table lists the configurable parameters of the Feast chart and the
168168
| `feast-serving-batch.core.enabled` | Flag for Feast Serving to use Feast Core in the same Helm release | `true`
169169
| `feast-serving-batch.replicaCount` | No of pods to create | `1`
170170
| `feast-serving-batch.image.repository` | Repository for Feast Serving Docker image | `gcr.io/kf-feast/feast-serving`
171-
| `feast-serving-batch.image.tag` | Tag for Feast Serving Docker image | `0.4.5`
171+
| `feast-serving-batch.image.tag` | Tag for Feast Serving Docker image | `0.4.6`
172172
| `feast-serving-batch.image.pullPolicy` | Image pull policy for Feast Serving Docker image | `IfNotPresent`
173173
| `feast-serving-batch.prometheus.enabled` | Add annotations to enable Prometheus scraping | `true`
174174
| `feast-serving-batch.application.yaml` | Application configuration for Feast Serving | Refer to this [link](charts/feast-serving/values.yaml)
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.4.5
4+
version: 0.4.6
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.4.5
4+
version: 0.4.6

infra/charts/feast/requirements.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
dependencies:
22
- name: feast-core
3-
version: 0.4.5
3+
version: 0.4.6
44
condition: feast-core.enabled
55
- name: feast-serving
66
alias: feast-serving-batch
7-
version: 0.4.5
7+
version: 0.4.6
88
condition: feast-serving-batch.enabled
99
- name: feast-serving
1010
alias: feast-serving-online
11-
version: 0.4.5
11+
version: 0.4.6
1212
condition: feast-serving-online.enabled

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</modules>
3737

3838
<properties>
39-
<revision>0.4.5-SNAPSHOT</revision>
39+
<revision>0.4.6-SNAPSHOT</revision>
4040
<github.url>https://github.com/gojek/feast</github.url>
4141

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

0 commit comments

Comments
 (0)