Skip to content

Commit c3282d1

Browse files
authored
Merge pull request #927 from FgForrest/dev
Release `2025.6`
2 parents 7487fb6 + fcc2071 commit c3282d1

File tree

423 files changed

+15314
-5383
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

423 files changed

+15314
-5383
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
directory: "/"
5+
exclude-paths:
6+
- "data/**"
7+
- "docker/**"
8+
- "documentation/**"
9+
schedule:
10+
interval: "weekly"
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"

.github/workflows/benchmark-hook.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
permissions:
1111
contents: read # Required for actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 to clone the repository
1212
id-token: write # Required for authentication in certain actions (e.g., digitalocean/action-doctl@v2)
13-
secrets: read # Required to access the DIGITALOCEAN_ACCESS_TOKEN secret
1413

1514
env:
1615
KUBECONFIG: ${{ github.workspace }}/evita_performance_tests/src/do_k8s_automation/deploy/kube.cfg

.github/workflows/benchmark.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
permissions:
1111
contents: read # Required for actions/checkout to access the repository code
1212
id-token: write # May be required for accessing resources with OIDC authentication
13-
secrets: read # Required to access the secrets (e.g., DIGITALOCEAN_ACCESS_TOKEN, GRAFANA_* secrets, PERFORMANCE_GIST_TOKEN)
1413

1514
env:
1615
KUBECONFIG: ${{ github.workspace }}/evita_performance_tests/src/do_k8s_automation/deploy/kube.cfg

.github/workflows/ci-dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
paths: # but react only to changes in code or pipeline definition
99
- evita*/**/*.java
1010
- evita*/**/pom.xml
11+
- pom.xml
1112
- evita_external_api/evita_external_api_lab/src/main/resources/META-INF/lab/gui/dist/**
1213
- jacoco/**/pom.xml
1314
- docker/**

.github/workflows/ci-performance.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
permissions:
1010
contents: read # To checkout the repository code using actions/checkout.
1111
packages: write # To publish the Docker image to the GitHub Packages registry.
12-
secrets: read # To access the secrets.
1312

1413
concurrency:
1514
group: ${{ github.head_ref || github.ref_name }} # for the same branch (dev or PR)

.github/workflows/ci-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ on:
1414
- "release_*"
1515
paths: # but react only to changes in code or pipeline definition
1616
- evita*/**/*.java
17+
- evita_external_api/evita_external_api_lab/src/main/resources/META-INF/lab/gui/dist/**
1718
- evita*/**/pom.xml
19+
- pom.xml
1820

1921
jobs:
2022
build:

SECURITY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ evitaDB is currently in active development and fixes are back ported only to a f
66

77
| Version | Supported |
88
|------------|--------------------|
9+
| 2025.5.x | :white_check_mark: |
910
| 2025.4.x | :white_check_mark: |
1011
| 2025.3.x | :white_check_mark: |
1112
| < 2025.2.x | :x: |

documentation/user/en/get-started/query-our-dataset.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ When this procedure is completed you should see the similar output in the consol
8383
| __/\ V /| | || (_| | |_| | |_) |
8484
\___| \_/ |_|\__\__,_|____/|____/
8585
86-
beta build 2025.4.1 (keep calm and report bugs 😉)
86+
beta build 2025.5.1 (keep calm and report bugs 😉)
8787
Visit us at: https://evitadb.io
8888
8989
19:45:37.088 INFO i.e.s.c.DefaultCatalogPersistenceService - Catalog `evita` is being loaded and it contains:
@@ -136,13 +136,13 @@ Open your Java IDE and add the following dependency to your project:
136136
<dependency>
137137
<groupId>io.evitadb</groupId>
138138
<artifactId>evita_java_driver</artifactId>
139-
<version>2025.4.1</version>
139+
<version>2025.5.1</version>
140140
</dependency>
141141
```
142142
</CodeTabsBlock>
143143
<CodeTabsBlock>
144144
```Gradle
145-
implementation 'io.evitadb:evita_java_driver:2025.4.1'
145+
implementation 'io.evitadb:evita_java_driver:2025.5.1'
146146
```
147147
</CodeTabsBlock>
148148
</CodeTabs>

documentation/user/en/get-started/run-evitadb.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ To integrate evitaDB into your project, use the following steps:
6363
<dependency>
6464
<groupId>io.evitadb</groupId>
6565
<artifactId>evita_db</artifactId>
66-
<version>2025.4.1</version>
66+
<version>2025.5.1</version>
6767
<type>pom</type>
6868
</dependency>
6969
```
7070
</CodeTabsBlock>
7171
<CodeTabsBlock>
7272
```Gradle
73-
implementation 'io.evitadb:evita_db:2025.4.1'
73+
implementation 'io.evitadb:evita_db:2025.5.1'
7474
```
7575
</CodeTabsBlock>
7676
</CodeTabs>
@@ -108,14 +108,14 @@ exception when you enable the corresponding API in evitaDB's configuration.
108108
<dependency>
109109
<groupId>io.evitadb</groupId>
110110
<artifactId>evita_external_api_grpc</artifactId>
111-
<version>2025.4.1</version>
111+
<version>2025.5.1</version>
112112
<type>pom</type>
113113
</dependency>
114114
```
115115
</CodeTabsBlock>
116116
<CodeTabsBlock>
117117
```Gradle
118-
implementation 'io.evitadb:evita_external_api_grpc:2025.4.1'
118+
implementation 'io.evitadb:evita_external_api_grpc:2025.5.1'
119119
```
120120
</CodeTabsBlock>
121121
</CodeTabs>
@@ -128,14 +128,14 @@ implementation 'io.evitadb:evita_external_api_grpc:2025.4.1'
128128
<dependency>
129129
<groupId>io.evitadb</groupId>
130130
<artifactId>evita_external_api_graphql</artifactId>
131-
<version>2025.4.1</version>
131+
<version>2025.5.1</version>
132132
<type>pom</type>
133133
</dependency>
134134
```
135135
</CodeTabsBlock>
136136
<CodeTabsBlock>
137137
```Gradle
138-
implementation 'io.evitadb:evita_external_api_graphql:2025.4.1'
138+
implementation 'io.evitadb:evita_external_api_graphql:2025.5.1'
139139
```
140140
</CodeTabsBlock>
141141
</CodeTabs>
@@ -148,14 +148,14 @@ implementation 'io.evitadb:evita_external_api_graphql:2025.4.1'
148148
<dependency>
149149
<groupId>io.evitadb</groupId>
150150
<artifactId>evita_external_api_rest</artifactId>
151-
<version>2025.4.1</version>
151+
<version>2025.5.1</version>
152152
<type>pom</type>
153153
</dependency>
154154
```
155155
</CodeTabsBlock>
156156
<CodeTabsBlock>
157157
```Gradle
158-
implementation 'io.evitadb:evita_external_api_rest:2025.4.1'
158+
implementation 'io.evitadb:evita_external_api_rest:2025.5.1'
159159
```
160160
</CodeTabsBlock>
161161
</CodeTabs>
@@ -225,7 +225,7 @@ When you start the evitaDB server you should see the following information in th
225225
| __/\ V /| | || (_| | |_| | |_) |
226226
\___| \_/ |_|\__\__,_|____/|____/
227227
228-
beta build 2025.4.1 (keep calm and report bugs 😉)
228+
beta build 2025.5.1 (keep calm and report bugs 😉)
229229
Visit us at: https://evitadb.io
230230
231231
Log config used: META-INF/logback.xml

documentation/user/en/query/examples/complexGrammar.graphql

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
queryProduct(
3-
label: {
4-
name: "query-name",
5-
value: "my-query"
6-
},
3+
head: [
4+
{
5+
label: {
6+
name: "query-name",
7+
value: "my-query"
8+
}
9+
}
10+
],
711
filterBy: {
812
and: [
913
{

0 commit comments

Comments
 (0)