claude[bot]
15755ced17
docs: remove deprecated get_large_file_storage_config endpoint from OpenAPI spec ( #7629 )
...
Closes #7622
Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: Diego Imbert <diegoimbert@users.noreply.github.com >
2026-01-20 18:31:41 +00:00
Ruben Fiszel
f8885eba4b
feat(raw-apps): add public URL and custom path support for raw apps ( #7630 )
...
* feat(raw-apps): add public URL and custom path support for raw apps
- Enable public URL UI in raw app editor by removing hideSecretUrl prop
- Add bundle_secret field to AppWithLastVersion for raw app rendering
- Compute bundle_secret in get_public_app_by_secret endpoint
- Update PublicApp.svelte to render RawAppPreview for raw apps
- Make get_data endpoint accessible without auth for anonymous raw apps
- Use /apps_u/ endpoint for bundle loading to support anonymous access
This allows raw apps to use the same public URL and custom path features
as regular apps, with proper support for anonymous (no login required)
execution mode.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* refactor: compute bundle_secret only once in get_public_app_by_secret
Move bundle_secret computation after all authorization checks to avoid
duplication between anonymous and authenticated code paths.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* fix: add explicit error state for raw apps missing workspace
Show a clear error message instead of silently falling through to
render AppPreview when a raw app is loaded without workspace info.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* update sqlx
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 18:21:58 +00:00
Pyra
b2944c5dfb
feat: otel REST tracing ( #7571 )
2026-01-20 13:38:02 +00:00
Ruben Fiszel
36d803fc9d
chore(main): release 1.612.2 ( #7614 )
...
* chore(main): release 1.612.2
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-19 20:39:35 +00:00
Ruben Fiszel
9ec2bcbc1d
fix: add HIDE_WORKERS_FOR_NON_ADMINS env var and workspace-scoped custom_tags endpoint ( #7613 )
2026-01-19 19:14:18 +00:00
Ruben Fiszel
348d4f7598
chore(main): release 1.612.1 ( #7612 )
...
* chore(main): release 1.612.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-19 18:41:41 +00:00
Ruben Fiszel
e1f7aafb85
chore(main): release 1.612.0 ( #7609 )
...
* chore(main): release 1.612.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-19 17:56:59 +00:00
Ruben Fiszel
b5897428b7
chore(main): release 1.611.0 ( #7604 )
...
* chore(main): release 1.611.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-19 10:59:42 +00:00
Ruben Fiszel
d34fe303fd
feat: add HashiCorp Vault secret storage integration ( #7599 )
...
* feat: add HashiCorp Vault secret storage integration
- Create SecretBackend trait abstraction for secret storage
- Add VaultBackend implementation with CRUD operations
- Integrate secret backend into variable CRUD operations
- Add migration functions (DB → Vault and Vault → DB)
- Add frontend configuration UI for secret backend
- Add test connection and migration endpoints
2026-01-18 23:08:29 +00:00
Ruben Fiszel
e000029e60
chore(main): release 1.610.1 ( #7601 )
...
* chore(main): release 1.610.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-17 21:30:19 +00:00
Ruben Fiszel
6c8c845e41
chore(main): release 1.610.0 ( #7596 )
...
* chore(main): release 1.610.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-17 21:08:41 +00:00
Ruben Fiszel
c5a95d1ba1
feat: add workspace success handler with 60s TTL caching ( #7598 )
...
* feat: add workspace success handler with 60s TTL caching
Add a new workspace-level success handler that triggers when jobs complete
successfully, similar to the existing error handler. Key features:
- Database migration adds success_handler and success_handler_extra_args columns
- API endpoint for configuring success handler in workspace settings
- 60s TTL caching to avoid DB trips when checking handler existence
- Handler only triggers for top-level Script/Flow/SingleStepFlow jobs (not previews)
- Frontend UI with ScriptPicker and "Create from template" button for bunnative scripts
- EE warning alerts for CE users on success handler and critical alerts sections
- Backend tests for cache behavior and settings CRUD operations
The success handler receives: path, email, result, job_id, is_flow, workspace_id,
and started_at. It runs as the g/success_handler group.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* fix: update RawCode struct in tests to use new field names
Update test to use ConcurrencySettingsWithCustom and DebouncingSettings
instead of the deprecated individual fields.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* Update backend/windmill-api/src/workspaces.rs
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
* test: improve success handler test to verify job creation
Update test_success_handler_triggered_on_success to actually verify that:
- A success handler job is created in v2_job table
- The job has the correct runnable_path (configured script)
- The job runs as success_handler@windmill.dev
- The job has correct parent_job and root_job references
- The trigger starts with 'success.handler.'
This provides better test coverage for the success handler feature.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* fix: fix success handler test and root_job parameter
- Fix test to use JobPayload::ScriptHash (JobKind::Script) instead of
JobPayload::Code (JobKind::Preview) since previews don't trigger handlers
- Add required 'lock' column to script inserts for deployed scripts
- Fix duplicate lines in workspaces.rs
- Set root_job correctly in push_success_handler
- Update test assertions to match actual behavior (root_job optimization)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* sqlx
* refactor: reduce duplication in workspace handler cache logic
- Extract database queries into fetch_error_handler_from_db and
fetch_success_handler_from_db helper functions
- Use shared WORKSPACE_HANDLER_CACHE_TTL_SECONDS constant for 60s TTL
- Reduces code from ~116 lines to ~54 lines while maintaining identical behavior
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* Add cache propagation warning to workspace success handler UI
Note that changes may take up to 60 seconds to propagate due to caching.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
2026-01-17 13:24:58 +00:00
Ruben Fiszel
202475a175
feat: add private npm registry proxy support for ATA in webide ( #7597 )
2026-01-17 10:44:30 +00:00
Ruben Fiszel
4f06b0f22f
chore(main): release 1.609.0 ( #7593 )
...
* chore(main): release 1.609.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-16 22:19:31 +00:00
Ruben Fiszel
ee8198c83e
chore(main): release 1.608.0 ( #7589 )
...
* chore(main): release 1.608.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-16 10:55:55 +00:00
Ruben Fiszel
560e88b628
chore(main): release 1.607.1 ( #7586 )
...
* chore(main): release 1.607.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-16 00:12:11 +00:00
Ruben Fiszel
d6967d6972
chore(main): release 1.607.0 ( #7573 )
...
* chore(main): release 1.607.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-15 10:32:00 +00:00
Ruben Fiszel
ea7a9f8d01
feat: allow resume urls at flow level for pre-generation ( #7582 )
2026-01-15 08:56:09 +00:00
Ruben Fiszel
f98b41031f
chore(main): release 1.606.1 ( #7568 )
...
* chore(main): release 1.606.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-14 14:51:14 +00:00
Ruben Fiszel
2b6cddd3ce
chore(main): release 1.606.0 ( #7553 )
...
* chore(main): release 1.606.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-14 12:15:47 +00:00
centdix
5be34e3a5d
feat(aiagent): handle oauth for mcp tools ( #7564 )
...
* feat(aiagent): handle oauth for mcp tools
* cleaning
* cleaning
* move oauth2
* cleaning
* cimd
* wrap path
* fix frontend
* fix
* refresh resources
* cleaning
* update ee ref
* update sqlx
* cleaning
* update
* cleaning
* update ref
* cleaning
* cleaning
* update ref
2026-01-14 12:06:40 +00:00
HugoCasa
78919221e5
Revert "feat(aiagent): handle oauth for mcp tools [merge-ee-first] ( #7544 )"
...
This reverts commit e8827822fa .
2026-01-14 12:59:14 +01:00
centdix
e8827822fa
feat(aiagent): handle oauth for mcp tools [merge-ee-first] ( #7544 )
...
* feat(aiagent): handle oauth for mcp tools
* cleaning
* cleaning
* move oauth2
* cleaning
* cimd
* wrap path
* fix frontend
* fix
* refresh resources
* cleaning
* update ee ref
* update sqlx
* cleaning
* update
* cleaning
* update ref
* cleaning
* cleaning
2026-01-14 11:57:00 +00:00
Ruben Fiszel
fd99c9f031
chore(main): release 1.605.0 ( #7548 )
...
* chore(main): release 1.605.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-13 18:05:29 +00:00
Ruben Fiszel
212d8b8601
chore(main): release 1.604.0 ( #7547 )
...
* chore(main): release 1.604.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-13 16:30:48 +00:00
Ruben Fiszel
b593f7dfd4
chore(main): release 1.603.4 ( #7542 )
...
* chore(main): release 1.603.4
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-12 16:44:03 +00:00
Ruben Fiszel
e4aba00330
chore(main): release 1.603.3 ( #7539 )
...
* chore(main): release 1.603.3
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-11 10:02:18 +00:00
Ruben Fiszel
5df126b359
chore(main): release 1.603.2 ( #7537 )
...
* chore(main): release 1.603.2
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-09 20:10:47 +01:00
Ruben Fiszel
9a6b28a27c
chore(main): release 1.603.1 ( #7535 )
...
* chore(main): release 1.603.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-09 17:38:24 +00:00
Ruben Fiszel
af95ed9975
fix improve tags sensitivity behavior for certain backend apis
2026-01-09 17:32:44 +00:00
Ruben Fiszel
ed2adcb814
chore(main): release 1.603.0 ( #7529 )
...
* chore(main): release 1.603.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-09 10:48:41 +00:00
claude[bot]
550e14527a
feat: add password reset flow using configured SMTP settings ( #7525 )
...
* feat: add password reset flow using configured SMTP settings
Implements password reset functionality for users with email/password login:
Backend:
- Add `/auth/request_password_reset` endpoint to request a password reset email
- Add `/auth/reset_password` endpoint to reset password using token
- Add `/auth/is_smtp_configured` endpoint to check if SMTP is available
- Uses existing `magic_link` table for storing reset tokens
- Tokens expire after 1 hour
- Invalidates all existing sessions on password reset
- Includes audit logging
Frontend:
- Add "Forgot password?" link on login page (shown when SMTP is configured)
- Add `/user/forgot-password` page for requesting password reset
- Add `/user/reset-password` page for entering new password
- Both pages follow existing Windmill design patterns
Security:
- Always returns success response to prevent email enumeration
- Password must be at least 8 characters
- Uses argon2 for password hashing (same as existing login)
Closes #7524
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
* nits
* nits
* fix oss
* nits
* fix oss
---------
Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
Co-authored-by: HugoCasa <hugo@casademont.ch >
Co-authored-by: Ruben Fiszel <ruben@windmill.dev >
2026-01-09 10:31:56 +00:00
Ruben Fiszel
1fbbf05039
chore(main): release 1.602.0 ( #7469 )
...
* chore(main): release 1.602.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-01-08 06:34:55 +00:00
Diego Imbert
615ecab687
fix: ducklake default connection extra_args ( #7509 )
...
* Ducklake default extra_args
* indicator nit
2026-01-06 17:55:05 +00:00
Ruben Fiszel
526ae033cb
chore(main): release 1.601.1 ( #7464 )
...
* chore(main): release 1.601.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-27 15:40:10 +00:00
Ruben Fiszel
acededc35d
chore(main): release 1.601.0 ( #7460 )
...
* chore(main): release 1.601.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-27 00:41:28 +00:00
Ruben Fiszel
0c5d97a52c
chore(main): release 1.600.1 ( #7458 )
...
* chore(main): release 1.600.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-26 17:40:29 +00:00
Ruben Fiszel
c1cce95a3c
chore(main): release 1.600.0 ( #7457 )
...
* chore(main): release 1.600.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-26 15:12:09 +00:00
Ruben Fiszel
2883b9f92f
chore(main): release 1.599.3 ( #7455 )
...
* chore(main): release 1.599.3
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-25 16:45:52 +00:00
Ruben Fiszel
6d7d16c022
chore(main): release 1.599.2 ( #7452 )
...
* chore(main): release 1.599.2
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-25 10:19:48 +00:00
Ruben Fiszel
5989c84e70
chore(main): release 1.599.1 ( #7450 )
...
* chore(main): release 1.599.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-25 08:13:12 +00:00
Ruben Fiszel
bee96af090
chore(main): release 1.599.0 ( #7449 )
...
* chore(main): release 1.599.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-24 21:03:56 +00:00
Ruben Fiszel
82e6ec5384
feat: raw apps can be built by agents fully locally ( #7448 )
2025-12-24 21:00:04 +00:00
Ruben Fiszel
5b77c09005
chore(main): release 1.598.0 ( #7445 )
...
* chore(main): release 1.598.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-23 20:57:24 +00:00
Ruben Fiszel
6279f6d128
chore(main): release 1.597.1 ( #7442 )
...
* chore(main): release 1.597.2
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-23 21:34:34 +02:00
Ruben Fiszel
77c3c4fabd
chore(main): release 1.597.1 ( #7441 )
...
* chore(main): release 1.597.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-23 18:21:23 +00:00
Ruben Fiszel
3b36a41d11
chore(main): release 1.597.0 ( #7425 )
...
* chore(main): release 1.597.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-23 16:53:58 +00:00
Pyra
62da20a45c
feat: v2 job debouncing ( #7411 )
...
* rework everything again
Signed-off-by: pyranota <pyra@duck.com >
* updcate sqlx
Signed-off-by: pyranota <pyra@duck.com >
* update ref
Signed-off-by: pyranota <pyra@duck.com >
* fix things
Signed-off-by: pyranota <pyra@duck.com >
* fix function
Signed-off-by: pyranota <pyra@duck.com >
* final fixes
Signed-off-by: pyranota <pyra@duck.com >
* update sqlx
Signed-off-by: pyranota <pyra@duck.com >
* fix script creation
Signed-off-by: pyranota <pyra@duck.com >
* address todo
Signed-off-by: pyranota <pyra@duck.com >
* cleanup
Signed-off-by: pyranota <pyra@duck.com >
* remove dbg
Signed-off-by: pyranota <pyra@duck.com >
* cleanup
Signed-off-by: pyranota <pyra@duck.com >
* fix
Signed-off-by: pyranota <pyra@duck.com >
* fixups
Signed-off-by: pyranota <pyra@duck.com >
* fix cargo.toml
Signed-off-by: pyranota <pyra@duck.com >
* update ee repo
Signed-off-by: pyranota <pyra@duck.com >
* fix ci
Signed-off-by: pyranota <pyra@duck.com >
* nit
Signed-off-by: pyranota <pyra@duck.com >
* ref
Signed-off-by: pyranota <pyra@duck.com >
* fix
Signed-off-by: pyranota <pyra@duck.com >
* ee repo
Signed-off-by: pyranota <pyra@duck.com >
* sqlx
Signed-off-by: pyranota <pyra@duck.com >
* ee ref
Signed-off-by: pyranota <pyra@duck.com >
* remove dbg
Signed-off-by: pyranota <pyra@duck.com >
* sqlx
Signed-off-by: pyranota <pyra@duck.com >
* feat: v2 job debouncing
Signed-off-by: pyranota <pyra@duck.com >
* v2 debouncing
Signed-off-by: pyranota <pyra@duck.com >
* compat
Signed-off-by: pyranota <pyra@duck.com >
* fix all
Signed-off-by: pyranota <pyra@duck.com >
* remove legacy logic
Signed-off-by: pyranota <pyra@duck.com >
* nit
Signed-off-by: pyranota <pyra@duck.com >
* finish
Signed-off-by: pyranota <pyra@duck.com >
* nits
Signed-off-by: pyranota <pyra@duck.com >
* stage import
Signed-off-by: pyranota <pyra@duck.com >
* remove unused import
Signed-off-by: pyranota <pyra@duck.com >
* remove comments
Signed-off-by: pyranota <pyra@duck.com >
* ee ref
Signed-off-by: pyranota <pyra@duck.com >
* ee ref
Signed-off-by: pyranota <pyra@duck.com >
* nits
Signed-off-by: pyranota <pyra@duck.com >
* Update backend/windmill-queue/src/jobs.rs
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
* Update backend/windmill-common/src/runnable_settings/settings.rs
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
* Update frontend/src/lib/components/flows/DebounceLimit.svelte
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
* fix nits
Signed-off-by: pyranota <pyra@duck.com >
* force no compat in ci
Signed-off-by: pyranota <pyra@duck.com >
* better default key handling
Signed-off-by: pyranota <pyra@duck.com >
* simplify
Signed-off-by: pyranota <pyra@duck.com >
* sqlx
Signed-off-by: pyranota <pyra@duck.com >
* optimize
Signed-off-by: pyranota <pyra@duck.com >
* sqlx
Signed-off-by: pyranota <pyra@duck.com >
* fix flow step
Signed-off-by: pyranota <pyra@duck.com >
* add openapi
Signed-off-by: pyranota <pyra@duck.com >
* fix ci
Signed-off-by: pyranota <pyra@duck.com >
* ee ref
Signed-off-by: pyranota <pyra@duck.com >
* rename WMDEBUG flag
Signed-off-by: pyranota <pyra@duck.com >
* ee ref
Signed-off-by: pyranota <pyra@duck.com >
* remove gate for is_flow_step on pull
Signed-off-by: pyranota <pyra@duck.com >
* remove dead code
Signed-off-by: pyranota <pyra@duck.com >
* nits
Signed-off-by: pyranota <pyra@duck.com >
* chore: update ee-repo-ref to 71d872d27de44227b82f75a9c0879d8428684880
This commit updates the EE repository reference after PR #369 was merged in windmill-ee-private.
Previous ee-repo-ref: 4c7642dc9f7f4467fc055136bd56558b66ef2d54
New ee-repo-ref: 71d872d27de44227b82f75a9c0879d8428684880
Automated by sync-ee-ref workflow.
---------
Signed-off-by: pyranota <pyra@duck.com >
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
2025-12-23 13:24:04 +00:00
Ruben Fiszel
14f0fbe815
add proper jobs timings for raw apps
2025-12-23 11:39:48 +00:00
Ruben Fiszel
582898b5cf
chore(main): release 1.596.0 ( #7422 )
...
* chore(main): release 1.596.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2025-12-20 10:03:58 +00:00