Skip to content

Commit f6303db

Browse files
authored
Merge pull request #195 from weaviate/descope
Update CI to use descope
2 parents a754a4a + 05209c8 commit f6303db

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ jobs:
5353
fail-fast: false
5454
matrix:
5555
server:
56-
- 1.31.16
57-
- 1.32.11
58-
- 1.33.0
59-
- 1.34.0-rc.0
56+
- 1.31.20
57+
- 1.32.17
58+
- 1.33.5
59+
- 1.34.0
6060

6161
steps:
6262
- name: Check for required secrets

ci/docker-compose-rbac.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ services:
2727
AUTHORIZATION_ENABLE_RBAC: "true"
2828
AUTHENTICATION_DB_USERS_ENABLED: "true"
2929
AUTHENTICATION_OIDC_ENABLED: 'true'
30-
AUTHENTICATION_OIDC_CLIENT_ID: 'wcs'
31-
AUTHENTICATION_OIDC_ISSUER: 'https://auth.wcs.api.weaviate.io/auth/realms/SeMI'
30+
AUTHENTICATION_OIDC_CLIENT_ID: 'Peuc12y02UA0eAED1dqSjE5HtGUrpBsx'
31+
AUTHENTICATION_OIDC_ISSUER: 'https://auth.weaviate.cloud/Peuc12y02UA0eAED1dqSjE5HtGUrpBsx'
3232
AUTHENTICATION_OIDC_USERNAME_CLAIM: 'email'
33-
AUTHENTICATION_OIDC_GROUPS_CLAIM: 'groups'
33+
AUTHENTICATION_OIDC_GROUPS_CLAIM: 'roles'
3434
...

src/Weaviate.Client.Tests/Integration/TestCollections.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public async Task Test_Collections_Export()
258258
Assert.Equal(100, config?.DynamicEfMin);
259259
Assert.Equal(-1, config?.Ef);
260260
Assert.Equal(128, config?.EfConstruction);
261-
if (ServerVersionIsInRange("0.0.0", "1.33.0"))
261+
if (ServerVersionIsInRange("0.0.0", "1.33.15"))
262262
{
263263
Assert.Equal(
264264
VectorIndexConfig.VectorIndexFilterStrategy.Sweeping,
@@ -419,7 +419,7 @@ public async Task Test_Collections_Export_NonDefaultValues_Sharding()
419419
Assert.Equal(100, config?.DynamicEfMin);
420420
Assert.Equal(-1, config?.Ef);
421421
Assert.Equal(128, config?.EfConstruction);
422-
if (ServerVersionIsInRange("0.0.0", "1.33.0"))
422+
if (ServerVersionIsInRange("0.0.0", "1.33.15"))
423423
{
424424
Assert.Equal(
425425
VectorIndexConfig.VectorIndexFilterStrategy.Sweeping,
@@ -578,7 +578,7 @@ public async Task Test_Collections_Export_NonDefaultValues_MultiTenacy()
578578
Assert.Equal(100, config?.DynamicEfMin);
579579
Assert.Equal(-1, config?.Ef);
580580
Assert.Equal(128, config?.EfConstruction);
581-
if (ServerVersionIsInRange("0.0.0", "1.33.0"))
581+
if (ServerVersionIsInRange("0.0.0", "1.33.15"))
582582
{
583583
Assert.Equal(
584584
VectorIndexConfig.VectorIndexFilterStrategy.Sweeping,
@@ -712,7 +712,7 @@ await collection.Config.Get(TestContext.Current.CancellationToken)
712712
Assert.IsType<VectorIndex.HNSW>(defaultVectorConfig.VectorIndexConfig);
713713
var hnswConfig = defaultVectorConfig.VectorIndexConfig as VectorIndex.HNSW;
714714

715-
if (ServerVersionIsInRange("0.0.0", "1.33.0"))
715+
if (ServerVersionIsInRange("0.0.0", "1.33.15"))
716716
{
717717
Assert.Equal(
718718
VectorIndexConfig.VectorIndexFilterStrategy.Sweeping,

0 commit comments

Comments
 (0)