Skip to content

Commit aa324d2

Browse files
doom-weavershestakovgerickpintor
authored
v4 getSetStreaming (#187)
* OSS-775: Create docs for C# driver (#166) * ENG-3044: Introduce set streaming support (#184) * introduce set streaming support * Fix circleci config - test dotnet 5.0 correctly, use public FaunaDB image Co-authored-by: Cleve Stuart <[email protected]> Co-authored-by: shestakovg <[email protected]> Co-authored-by: Erick Pintor <[email protected]>
1 parent dc12971 commit aa324d2

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ executors:
1111
docker:
1212
- image: mcr.microsoft.com/dotnet/sdk
1313

14-
- image: gcr.io/faunadb-cloud/faunadb/enterprise/<<parameters.version>>:latest
14+
- image: fauna/faunadb
1515
name: core
16-
auth:
17-
username: _json_key
18-
password: $GCR_KEY
1916

2017
environment:
2118
FAUNA_ROOT_KEY: secret
@@ -53,6 +50,7 @@ commands:
5350
- run:
5451
name: Run Tests 5.0
5552
command: |
53+
apt-get install -y dotnet-sdk-5.0
5654
dotnet --info
5755
dotnet restore
5856
dotnet test --framework net5.0 --logger "junit;LogFilePath=./TestResults/results50.xml" FaunaDB.Client.Test

FaunaDB.Client/Client/EventField.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ private EventField(string value)
1616
public static EventField DiffField => new EventField("diff");
1717

1818
public static EventField ActionField => new EventField("action");
19+
20+
public static EventField IndexField => new EventField("index");
1921
}
2022
}

concourse/scripts/publish_docs.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,5 @@ git config --global user.name "Fauna, Inc"
4949

5050
git add -A
5151
git commit -m "Update docs to version: $PACKAGE_VERSION"
52+
53+
echo "Documentation commited"

0 commit comments

Comments
 (0)