Skip to content

Commit 1894b20

Browse files
author
Lavkesh Lahngir
committed
Merge branch 'feastmaster'
2 parents c977b79 + d785b60 commit 1894b20

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
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+
16+
## [v0.4.5](https://github.com/gojek/feast/tree/v0.4.5) (2020-02-14)
17+
18+
[Full Changelog](https://github.com/gojek/feast/compare/v0.4.4...v0.4.5)
19+
20+
**Merged pull requests:**
21+
- Use bzip2 compressed feature set json as pipeline option [\#466](https://github.com/gojek/feast/pull/466) ([khorshuheng](https://github.com/khorshuheng))
22+
- Make redis key creation more determinisitic [\#471](https://github.com/gojek/feast/pull/471) ([zhilingc](https://github.com/zhilingc))
23+
- Helm Chart Upgrades [\#458](https://github.com/gojek/feast/pull/458) ([Yanson](https://github.com/Yanson))
24+
- Exclude version from grouping [\#441](https://github.com/gojek/feast/pull/441) ([khorshuheng](https://github.com/khorshuheng))
25+
- Use concrete class for AvroCoder compatibility [\#465](https://github.com/gojek/feast/pull/465) ([zhilingc](https://github.com/zhilingc))
26+
- Fix typo in split string length check [\#464](https://github.com/gojek/feast/pull/464) ([zhilingc](https://github.com/zhilingc))
27+
- Update README.md and remove versions from Helm Charts [\#457](https://github.com/gojek/feast/pull/457) ([woop](https://github.com/woop))
28+
- Deduplicate example notebooks [\#456](https://github.com/gojek/feast/pull/456) ([woop](https://github.com/woop))
29+
- Allow users not to set max age for batch retrieval [\#446](https://github.com/gojek/feast/pull/446) ([zhilingc](https://github.com/zhilingc))
30+
331
## [v0.4.4](https://github.com/gojek/feast/tree/v0.4.4) (2020-01-28)
432

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

core/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@
7272
<groupId>org.springframework.boot</groupId>
7373
<artifactId>spring-boot-starter-log4j2</artifactId>
7474
</dependency>
75+
<dependency>
76+
<groupId>org.apache.logging.log4j</groupId>
77+
<artifactId>log4j-web</artifactId>
78+
</dependency>
7579
<!--compile io.github.lognet:grpc-spring-boot-starter:3.0.2'-->
7680
<dependency>
7781
<groupId>io.github.lognet</groupId>

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,11 @@
278278
<artifactId>log4j-jul</artifactId>
279279
<version>${log4jVersion}</version>
280280
</dependency>
281+
<dependency>
282+
<groupId>org.apache.logging.log4j</groupId>
283+
<artifactId>log4j-web</artifactId>
284+
<version>${log4jVersion}</version>
285+
</dependency>
281286
<dependency>
282287
<groupId>org.apache.logging.log4j</groupId>
283288
<artifactId>log4j-slf4j-impl</artifactId>

serving/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@
9898
<groupId>org.springframework.boot</groupId>
9999
<artifactId>spring-boot-starter-log4j2</artifactId>
100100
</dependency>
101+
<dependency>
102+
<groupId>org.apache.logging.log4j</groupId>
103+
<artifactId>log4j-web</artifactId>
104+
</dependency>
101105

102106
<dependency>
103107
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)