Skip to content

Commit bfc46f0

Browse files
authored
Resolves #1743: Update FDB dependency to 7.1.10 (#1744)
* Resolves #1743: Update FDB dependency to 7.1.10 The FDB Java version has been updated to 7.1.10 in this PR. The more important thing is actually that the client (and server) versions be updated to 7.1.10 or 7.1.11 (depending on whether the environments support AVX instructions) to get the recent bug fixes, but this seems like a good signal to send to let our downstream adopters know they should upgrade. This resolves #1743. * update FDBVERSION in Dockerfile.standalone-tests
1 parent 1b1fe84 commit bfc46f0

7 files changed

+30
-10
lines changed

.idea/compiler.xml

+21-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/Dockerfile.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM centos:7
2-
LABEL version=0.0.18
2+
LABEL version=0.0.19
33

4-
ARG FDBVERSION=7.1.3
4+
ARG FDBVERSION=7.1.10
55

66
RUN yum install -y \
77
git \

build/Dockerfile.fdbserver

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM centos:7
2-
ARG FDBVERSION=7.1.3
2+
ARG FDBVERSION=7.1.10
33
LABEL version=${FDBVERSION}-1
44

55
RUN yum install -y \

build/Dockerfile.standalone-tests

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# EKS (amazonlinux) version:
2-
# --build-arg FDBVERSION=7.1.3-${OKTETO_USER}-debug \
2+
# --build-arg FDBVERSION=7.1.10-${OKTETO_USER}-debug \
33
# --build-arg FDBREPO=${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_REGION}.amazonaws.com/foundationdb \
44
# --build-arg JDKPKG=java-11-amazon-corretto-11.0.13+8-1.amzn2
55

6-
ARG FDBVERSION=7.1.3
6+
ARG FDBVERSION=7.1.10
77
ARG FDBREPO=foundationdb
88

99
FROM ${FDBREPO}/foundationdb-base:${FDBVERSION} AS java

build/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
common: &common
5-
image: fdb-record-layer-build:0.0.18
5+
image: fdb-record-layer-build:0.0.19
66
build:
77
context: .
88
dockerfile: Dockerfile.build
@@ -17,7 +17,7 @@ services:
1717
- FDBHOSTNAME=fdbserver
1818

1919
fdbserver:
20-
image: foundationdb-server:7.1.3-1
20+
image: foundationdb-server:7.1.10-1
2121
environment:
2222
- FDBSTARTOPT=2
2323
- HOST_IP=0.0.0.0

docs/ReleaseNotes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This release also updates downstream dependency versions. Most notably, the prot
2020
// begin next release
2121
### NEXT_RELEASE
2222
23-
* **Bug fix** Fix 1 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
23+
* **Bug fix** FDB Java dependency version updated to 7.1.10 to incorporate fixes over older 7.1 versions [(Issue #1743)](https://github.com/FoundationDB/fdb-record-layer/issues/1743)
2424
* **Bug fix** Fix 2 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
2525
* **Bug fix** Fix 3 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
2626
* **Bug fix** Fix 4 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ group=org.foundationdb
2929

3030
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Xverify:none -XX:+TieredCompilation
3131

32-
fdbVersion=7.1.3
32+
fdbVersion=7.1.10
3333
# Set the api version used by build and CI tests. The default api version used by consumers is not impacted and is determined
3434
# by ApiVersion.getDefault()
3535
apiVersion=710

0 commit comments

Comments
 (0)