Skip to content

Commit 5424a4b

Browse files
authored
Merge branch 'main' into python-uv
2 parents 04aac60 + 1d8e361 commit 5424a4b

File tree

67 files changed

+2463
-783
lines changed

Some content is hidden

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

67 files changed

+2463
-783
lines changed

.github/workflows/backend-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ jobs:
4444
mkdir frontend/build && cd backend && touch
4545
windmill-api/openapi-deref.yaml &&
4646
DATABASE_URL=postgres://postgres:changeme@postgres:5432/windmill
47-
DISABLE_EMBEDDING=true RUST_LOG=info cargo test --features enterprise
48-
--all -- --nocapture
47+
DISABLE_EMBEDDING=true RUST_LOG=info cargo test --features
48+
enterprise,deno_core --all -- --nocapture

.github/workflows/build-staging-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
platforms: linux/amd64,linux/arm64
6363
push: true
6464
build-args: |
65-
features=enterprise,enterprise_saml,stripe,embedding,parquet,prometheus,openidconnect,cloud,jemalloc
65+
features=enterprise,enterprise_saml,stripe,embedding,parquet,prometheus,openidconnect,cloud,jemalloc,deno_core
6666
tags: |
6767
${{ steps.meta-ee-public.outputs.tags }}
6868
labels: |

.github/workflows/docker-image-rpi4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
platforms: linux/amd64,linux/arm64
6868
push: true
6969
build-args: |
70-
features=embedding,parquet,openidconnect
70+
features=embedding,parquet,openidconnect,deno_core
7171
tags: |
7272
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:dev
7373
${{ steps.meta-public.outputs.tags }}

.github/workflows/docker-image.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
env:
22
REGISTRY: ghcr.io
3-
IMAGE_NAME: ${{ github.event_name != 'pull_request' && github.repository ||
3+
IMAGE_NAME:
4+
${{ github.event_name != 'pull_request' && github.repository ||
45
'windmill-labs/windmill-test' }}
5-
DEV_SHA: ${{ github.event_name != 'pull_request' && 'dev' || format('pr-{0}',
6+
DEV_SHA:
7+
${{ github.event_name != 'pull_request' && 'dev' || format('pr-{0}',
68
github.event.number) }}
79

810
name: Build windmill:main
@@ -75,7 +77,7 @@ jobs:
7577
platforms: linux/amd64,linux/arm64
7678
push: true
7779
build-args: |
78-
features=embedding,parquet,openidconnect,jemalloc
80+
features=embedding,parquet,openidconnect,jemalloc,deno_core
7981
tags: |
8082
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.DEV_SHA }}
8183
${{ steps.meta-public.outputs.tags }}
@@ -136,7 +138,7 @@ jobs:
136138
platforms: linux/amd64,linux/arm64
137139
push: true
138140
build-args: |
139-
features=enterprise,enterprise_saml,stripe,embedding,parquet,prometheus,openidconnect,cloud,jemalloc,tantivy
141+
features=enterprise,enterprise_saml,stripe,embedding,parquet,prometheus,openidconnect,cloud,jemalloc,tantivy,deno_core
140142
tags: |
141143
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-ee:${{ env.DEV_SHA }}
142144
${{ steps.meta-ee-public.outputs.tags }}
@@ -198,7 +200,7 @@ jobs:
198200
platforms: linux/amd64
199201
push: true
200202
build-args: |
201-
features=enterprise,enterprise_saml,stripe,embedding,parquet,prometheus,openidconnect,cloud,jemalloc,tantivy
203+
features=enterprise,enterprise_saml,stripe,embedding,parquet,prometheus,openidconnect,cloud,jemalloc,tantivy,deno_core
202204
PYTHON_IMAGE=python:3.12.2-slim-bookworm
203205
tags: |
204206
${{ steps.meta-ee-public-py312.outputs.tags }}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [1.404.1](https://github.com/windmill-labs/windmill/compare/v1.404.0...v1.404.1) (2024-10-03)
4+
5+
6+
### Bug Fixes
7+
8+
* flow picker of flows ([92f61f0](https://github.com/windmill-labs/windmill/commit/92f61f07ed6d354407d26843e3a270b95bae90bc))
9+
10+
## [1.404.0](https://github.com/windmill-labs/windmill/compare/v1.403.1...v1.404.0) (2024-10-03)
11+
12+
13+
### Features
14+
15+
* **frontend:** add quick access menu in flow editor ([#4415](https://github.com/windmill-labs/windmill/issues/4415)) ([45ccd45](https://github.com/windmill-labs/windmill/commit/45ccd45e306c66931880a9b8fd48bfe684c774ac))
16+
17+
18+
### Bug Fixes
19+
20+
* **cli:** improve schedule path handling on windows ([9ac3b6b](https://github.com/windmill-labs/windmill/commit/9ac3b6b1d5d64d7467dd80506f8a8d772c4630bd))
21+
* fix id editor for app ([8e58e43](https://github.com/windmill-labs/windmill/commit/8e58e4320a31d71c40a5ed352416a4c2dd3adb26))
22+
* **frontend:** disable runnable field on route editor from detail panel ([#4469](https://github.com/windmill-labs/windmill/issues/4469)) ([3134f79](https://github.com/windmill-labs/windmill/commit/3134f79ced80aab86912643ab7a60dcf909ab104))
23+
324
## [1.403.1](https://github.com/windmill-labs/windmill/compare/v1.403.0...v1.403.1) (2024-10-01)
425

526

0 commit comments

Comments
 (0)