Skip to content

Commit 00ce124

Browse files
authored
Update roadmap end of July (#1046)
1 parent a5183b6 commit 00ce124

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

src/components/roadmap/index.jsx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import styles from './styles.module.css';
55
const roadmapItems = [
66
{
77
title: 'Ruby support',
8-
month: 'July',
8+
month: 'September',
99
category: 'Languages',
1010
issueLink: 'https://github.com/windmill-labs/windmill/issues/3201',
1111
description: ''
1212
},
1313
{
1414
title: 'Settable permissions within object storage by folders',
15-
month: 'June',
15+
month: 'August',
1616
category: 'Backend',
1717
issueLink: 'https://github.com/windmill-labs/windmill/issues/5446',
1818
description: `Currently the workspace object storage is all or nothing. You can either see the object explorer or not, and you can either write and read everywhere or not.
@@ -21,37 +21,37 @@ This would be a settable setting such that the layout within the buckets can fol
2121
},
2222
{
2323
title: 'Hide sensitive values from logs',
24-
month: 'July',
24+
month: 'September',
2525
category: 'Backend',
2626
issueLink: 'https://github.com/windmill-labs/windmill/issues/5450',
2727
description: `SDK clients should automatically propagate to the workers (maybe using a special pattern in stdout) that there is some strings that are sensitive because they correspond to secrets pulled with getResource and getValue. Additionally, workers should be able to have a list of values to consider secrets synced from an external source-of-truth. Those sensitive values would always be masked in logs.`
2828
},
2929
{
3030
title: 'Database explorer for every SQL',
31-
month: 'June',
31+
month: 'August',
3232
category: 'Developer',
3333
issueLink: 'https://github.com/windmill-labs/windmill/issues/5448',
3434
description: `It would be nice to have a database explorer similar to Supabase to explore your database data and run REPL like commands directly from a windmill db resource`
3535
},
3636
{
3737
title: 'Dedicated workers improvements',
38-
month: 'June',
38+
month: 'August',
3939
issueLink: 'https://github.com/windmill-labs/windmill/issues/5337',
4040
description:
4141
'Dedicated workers are currently a setting for individual scripts, flows and worker groups. A dedicated worker can only be dedicated to one script or flow. We mean to change that so that in the extreme case, it can handle a full workspace.\n\nWe want them to now have a configuration, let\'s call it the dedicated worker configurations that select all the flows and scripts (potentially apps) it will be dedicated to:\nfor all those it needs to do a compaction for ts and python where it will essentially route internally the job to the right subfunction based on job path which mean all those scripts can now run on the same runtime and we have at most 2 running runtimes (bun, python) on a dedicated worker. Those configuration can be deployed and each deployment will have a deployment version and a status . It corresponds to the status of creating the single lockfile for ts and single lockfile for python. If we have incompatible reqs for different scripts it will fail otherwise it pass.\n\nInstead of having to declare if a script or flow is ran on dedicated worker on the script or flow, they will be automatically updated when they are part of a successful deployment of a worker config such that their tag become dedicated:<dedicated_worker_config_name>\nThe creation of the compacted view is the "hard part". Once we have those, we can use our normal traversers to generated or fail to generate the single lockfile.',
4242
important: true
4343
},
4444
{
4545
title: 'Interactive script debugger',
46-
month: 'June',
46+
month: 'August',
4747
category: 'Developer',
4848
issueLink: 'https://github.com/windmill-labs/windmill/issues/5432',
4949
important: true,
5050
description: 'Add breakpoints and run an interactive debugger for Python and TypeScript.'
5151
},
5252
{
5353
title: 'Code/React UI builder',
54-
month: 'June',
54+
month: 'August',
5555
issueLink: 'https://github.com/windmill-labs/windmill/issues/5433',
5656
important: true,
5757
description:
@@ -66,37 +66,37 @@ This would be a settable setting such that the layout within the buckets can fol
6666
},
6767
{
6868
title: 'Free form flows',
69-
month: 'June',
69+
month: 'August',
7070
issueLink: 'https://github.com/windmill-labs/windmill/issues/5435',
7171
description:
7272
'- Free positioning of nodes\n- Colorable Rectangle to group nodes\n- Free Text annotable anywhere'
7373
},
7474
{
7575
title: 'AI step as flow primitive',
76-
month: 'July',
76+
month: 'September',
7777
category: 'AI',
7878
issueLink: 'https://github.com/windmill-labs/windmill/issues/5436',
7979
description: '- More powerful and native API calls to AI models'
8080
},
8181
{
8282
title: 'Improved local dev experience',
83-
month: 'June',
83+
month: 'August',
8484
category: 'Developer',
8585
issueLink: 'https://github.com/windmill-labs/windmill/issues/5440',
8686
description:
8787
'- Python and Typescript (bun) to respect the windmill lockfile of a script when running it\n- leverage the MCP integration to add context to AI ide like Cursor and Windsurf'
8888
},
8989
{
9090
title: 'Exhaustive Hub integrations generated by AI',
91-
month: 'July',
91+
month: 'September',
9292
category: 'Integration',
9393
issueLink: 'https://github.com/windmill-labs/windmill/issues/5441',
9494
description:
9595
'- Improve AI agents to generate both code and test for all possible integrations\n- Make it easier for community to contribute to this process'
9696
},
9797
{
9898
title: 'Data pipelines v2: DuckLake integration',
99-
month: 'August',
99+
month: 'October',
100100
category: 'Backend',
101101
important: true,
102102
issueLink: 'https://github.com/windmill-labs/windmill/issues/5442',
@@ -105,7 +105,7 @@ This would be a settable setting such that the layout within the buckets can fol
105105
},
106106
{
107107
title: 'Shardable job queue for unlimited scalability',
108-
month: 'August',
108+
month: 'October',
109109
category: 'Backend',
110110
issueLink: '',
111111
description:
@@ -229,10 +229,10 @@ function WindmillRoadmap() {
229229
March: 3,
230230
May: 4,
231231
May: 5,
232-
June: 6,
233-
July: 7,
234-
August: 8,
235-
September: 9,
232+
August: 6,
233+
September: 7,
234+
October: 8,
235+
October: 9,
236236
October: 10,
237237
November: 11,
238238
December: 12,

0 commit comments

Comments
 (0)