860 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
v2.2.3 - 2026-08-26
🐛 Bug Fixes
-
[client-v2] Fix a render error when switching a v2 association field to popup record selection. (#10419) by @katherinehhh
-
[Public forms] Fix duplicate Submit actions in V2 regular form configuration when Public Forms is enabled. (#10417) by @katherinehhh
-
[AI LLM: GigaChat] Fixed an application startup error on iOS 15.6 and earlier when the GigaChat AI provider is enabled (#10418) by @cgyrock
-
[WeCom] Fixed WeCom automatic login lifecycle and notification form compatibility in client-v2. by @chenzhizdt
v2.2.2 - 2026-08-25
🚀 Improvements
- [undefined] Clarified how to use public NocoBase file URLs in Markdown, external pages, and third-party services (#10406) by @mytharcher Reference: Storage engine overview
🐛 Bug Fixes
-
[Access control] Fixed an ACL bypass that allowed
firstOrCreateorupdateOrCreateto read or modify existing records without the required view or update permission. (#10403) by @mytharcher -
[Workflow]
-
Fix option fields being unable to select configured values in v2 workflow Create record and Update record nodes. (#10414) by @katherinehhh
-
Fix the extra trigger at
startsOnfor schedule workflows repeating on a cron expression (#10410) by @Tespera -
Fixed workflow task center menus so the active menu can be collapsed by clicking it again while retaining its selected highlight (#10404) by @mytharcher
-
Fixed collection event as sub-workflows failing when called with a record ID and no preload associations configured (#10407) by @mytharcher
-
-
[UI templates] Fix the error when closing an approval task containing a referenced block (#10415) by @zhangzhonghe
v2.2.1 - 2026-08-23
🐛 Bug Fixes
-
[UI layout] Fix the issue where desktop routes may be empty after upgrading (#10405) by @zhangzhonghe
-
[Action: Export records Pro] Fix a crash when changing and drag-sorting Pro export fields. by @katherinehhh
v2.2.0 - 2026-08-22
NocoBase 2.2.0 Release Notes
NocoBase 2.2 further completes the end-to-end V2 experience. With the independent /v/ frontend entry and the new mobile experience now available, V2 is no longer just a redesigned page experience—it is becoming a more independent and lightweight frontend runtime. This release also upgrades the file access mechanism and continues to improve the comment block, AI knowledge base, workflows, and V2 compatibility across core plugins.
If your application already relies primarily on V2 pages, 2.2 provides a more complete and lightweight V2 experience. If your application still mainly uses V1 pages, we recommend migrating your pages and plugins before switching to the new /v/ entry.
New features
New independent /v/ frontend entry
/v/ is a new, independently built frontend entry. NocoBase 2.0 introduced a major frontend refactor while retaining compatibility with V1 modules and pages. The /v/ build removes this legacy V1 compatibility: it can no longer create or render V1 pages and blocks and includes only V2 capabilities. It also delivers significant performance improvements and will become the primary target for future NocoBase development.
If your production application already consists entirely of V2 pages, you can consider adopting the
/v/entry.If your application mainly uses V2 pages but still contains a small number of V1 pages, migrate those pages to V2 first.
If your application still mainly uses V1 pages, we do not recommend switching directly to
/v/. Migrate the pages and related plugins first.
In most cases, you can enter the new frontend by adding the /v/ prefix to an existing path:
# Original path
https://nocobase.example.com/admin/1xl0epqn6q3
# Independent V2 entry
https://nocobase.example.com/v/admin/1xl0epqn6q3
Set the default application entry
Use the APP_CLIENT_ENTRY_MODE environment variable to control the application entry mode:
legacy-default: both/and/v/are available;/is the default entrymodern-default: both/and/v/are available;/v/is the default entrymodern-only: only/v/is available
Current status of /v/
The /v/ entry is being introduced progressively. It has several notable differences:
- Pages created with Page V1 are no longer displayed under
/v/. Pages created with Page V2 continue to work normally. - Plugins adapted only for
client-v1are not loaded under/v/. The/v/entry loads only plugins adapted forclient-v2. See the client plugin development documentation for details.
Most built-in NocoBase plugins have been adapted and migrated to client-v2 in this release, so most features are ready to use. A small number of plugins have not yet been migrated and will be handled progressively. Some plugin capabilities will receive future updates only under /v/. Current differences include:
- The plugin list no longer shows deprecated plugins or plugins that support only NocoBase 1.x
- New Page V1 pages can no longer be created
- Public forms distinguish between V1 and V2, and V1 public forms are not displayed under
/v/ - Approval workflows require their related UI to be reconfigured before they can be used under
/v/ - The new mobile experience is available only under
/v/ - The “AI employees / Data sources” tab has been removed
- Comment, calendar, expression, and external data collections have been removed
- Workflow manual nodes are not yet supported under
/v/ - Badge counts cannot yet be added to menus
Plan the migration to /v/ according to your production environment and current use of V1 and V2 features.
Related documentation:
File access upgrade: stable URLs, permission checks, and deployment changes
NocoBase 2.2 introduces an important upgrade to the access mechanism for NocoBase-managed files. By default, attachments and files no longer expose local storage paths, object storage URLs, or presigned URLs as their business URLs. Instead, they use stable NocoBase URLs:
/files/<app>/<dataSource>/<collection>/<id><extname>
For example:
/files/main/main/attachments/42.pdf
If APP_PUBLIC_PATH=/nocobase is configured, the corresponding subpath is added automatically:
/nocobase/files/main/main/attachments/42.pdf
When a stable URL is accessed, the request first goes to NocoBase. NocoBase checks the current user, role, view permission, and data scope for the target attachment or file collection. Once the check succeeds, NocoBase responds with a 302 redirect to the actual URL generated by the storage engine.
Stable URL → NocoBase identity and permission checks → 302 → Local or object storage URL
This separates business content from physical storage addresses. If you change a bucket, CDN domain, signing strategy, or thumbnail rule, stable URLs already stored in business fields usually do not need to be updated. The everyday workflows for uploading attachments, displaying images, previewing files, and downloading files remain essentially unchanged.
Configure file URLs and public access independently
For file storage engines, NocoBase URL is the recommended default so that file access follows NocoBase role and data permissions. NocoBase 2.2 also provides separate options for scenarios that require direct storage URLs or public access:
- Original URL: returns the storage engine URL directly, without NocoBase permission checks
- Allow public access: continues to return a NocoBase URL but skips file-record permission checks when the URL is accessed
Both Original URL and Allow public access expand the scope from which files can be accessed, so configure them carefully for your use case. After the settings are saved, the API response behavior changes for both existing and new files under the same storage engine, but no files are moved or uploaded again.
Check deployment configuration before upgrading
/files/ is an authenticated NocoBase application route. It must not be handled as a static directory or fall through to the frontend SPA's index.html fallback. Nginx and Caddy configurations generated by the current NocoBase CLI include the required rules automatically. If you maintain your reverse proxy manually, verify that:
/files/is forwarded to NocoBase and evaluated before the SPA fallback rule- When
APP_PUBLIC_PATHis configured, the corresponding subpath/files/route is also forwarded, while the root/files/route remains available for compatibility - The
302 Locationreturned by a stable URL is not cached - When a page accesses the API cross-origin, its origin is included in
CORS_ORIGIN_WHITELIST - All cluster nodes and replicas are upgraded together so that
/files/requests cannot reach an older node - When using an external NocoBase data source, the consuming instance and its related plugins are upgraded before the source instance
Note: Existing
/storage/uploads/..., CDN, and object storage URLs stored in historical Markdown, rich text, or business fields are not rewritten automatically. Once the new version is running, newly uploaded files and newly edited content may contain/files/...URLs, which older versions do not recognize. Environments with strict rollback requirements should retain a database snapshot before reopening write access and verify the reverse proxy configuration in advance.
Security boundaries
Stable URLs provide a permission check before access, but NocoBase does not continuously proxy the file content. After permission checks succeed, the browser can still see the final storage URL. If that URL points to a public bucket, a public CDN, or an openly accessible local static directory, anyone who obtains it may still bypass NocoBase.
For sensitive files such as contracts, identity documents, and internal materials, use storage-side controls such as private storage, short-lived signed URLs, or CDN authentication. For online Office previews, NocoBase issues a short-lived URL bound to the current file after the user's permissions are validated. This URL is valid for 10 minutes by default and must not be stored or distributed as a long-term sharing link.
Related documentation:
- File manager: Stable URLs
- File storage engines and access control
- Environment variables
- Production deployment
- Nginx reverse proxy
- Caddy reverse proxy
New mobile experience (/v/ only)
The new mobile experience provides a /v/mobile entry with a dedicated mobile layout.
Mobile and desktop layouts share the same data sources and business data, while their menus, routes, and page content can be configured independently. This makes it possible to reorganize pages around mobile usage patterns and use a bottom tab bar as the primary navigation, which is better suited to mobile devices.
NocoBase 2.2 further improves interactions such as mobile tab bars, scrolling in half-screen panels, embedded pages, and permission controls, making data entry, queries, approvals, and task processing more reliable.
Related documentation:
New comment block
The new comment block is no longer limited to the comments collection in the main data source and no longer needs to be used as a relationship block. You can add it to a record detail page or popup for tasks, articles, tickets, customers, and other records, allowing users to view, reply to, and add comments in the context of the current record.
Related documentation:
AI knowledge base enhancements
The AI knowledge base has been migrated to client-v2 and now offers improved knowledge base and vector storage configuration:
- When a workflow creates a knowledge base document, it can overwrite an existing document with the same document key
- Vector databases can be configured and managed
- Configuration entries are available for external knowledge bases and external vector storage extensions, allowing developers to use plugins to integrate vector databases or third-party retrieval services that NocoBase does not yet support out of the box
Related documentation:
Workflow: Database transaction node
The new database transaction node runs a group of database operations within the same transaction. It is designed for scenarios in which multiple data-processing steps must either all succeed or all roll back—for example, creating an order, reducing inventory, writing order line items, and updating the order status.
Related documentation:
V2 compatibility and experience improvements
In addition to the new features above, NocoBase 2.2 continues to migrate and improve the V2 interfaces and interactions of commonly used features:
- User, department, and permission settings
- User data synchronization
- DingTalk authentication, synchronization, and notification settings
- WeCom authentication, synchronization, and notification settings
- Email management
- Form drafts
- Public forms
- Backup management
- Data source management
- Translation testing tools
This release also fixes a range of issues affecting mobile devices, embedded pages, sub-application SSO, printing, and exporting, further improving the stability and consistency of the V2 entry.
Related documentation:
Plugins that no longer support V2 (deprecated but not yet removed)
Some plugins were deprecated in earlier releases. A number of them can still be used for now, but they will be removed entirely in NocoBase 3.
| Plugin | Replacement | Notes |
|---|---|---|
@nocobase/plugin-audit-logs |
@nocobase/plugin-audit-logger |
Deprecated since 1.0 |
@nocobase/plugin-backup-restore |
@nocobase/plugin-backups |
Deprecated since 1.0 |
@nocobase/plugin-block-multi-step-form |
JS Block | Deprecated since 2.0 |
@nocobase/plugin-charts |
@nocobase/plugin-data-visualization |
Deprecated since 2.0 |
@nocobase/plugin-collection-fdw |
Database synchronization | Deprecated since 2.2 |
@nocobase/plugin-comments |
@nocobase/plugin-block-comment |
Deprecated since 2.2 |
@nocobase/plugin-custom-variables |
Event flow | Deprecated since 2.2 |
@nocobase/plugin-data-visualization-echarts |
@nocobase/plugin-data-visualization |
Deprecated since 2.0 |
@nocobase/plugin-disable-pm-add |
None | Deprecated since 2.2 |
@nocobase/plugin-field-component-mask |
RunJS | Deprecated since 2.0 |
@nocobase/plugin-graph-collection-manager |
None | Deprecated since 2.2 |
@nocobase/plugin-mobile-client |
@nocobase/plugin-ui-layout |
Deprecated since 2.0 |
@nocobase/plugin-mobile |
@nocobase/plugin-ui-layout |
Deprecated since 2.0 |
@nocobase/plugin-mock-collections |
AI-powered app building | Deprecated since 2.0 |
@nocobase/plugin-multi-app-manager |
@nocobase/plugin-app-supervisor |
Deprecated since 2.0 |
@nocobase/plugin-multi-app-share-collection |
None | Deprecated since 1.0 |
@nocobase/plugin-notifications |
@nocobase/plugin-notification-manager |
Deprecated since 1.0 |
@nocobase/plugin-snapshot-field |
None | Deprecated since 1.0 |
v2.1.44 - 2026-08-20
🎉 New Features
- [Multi-space] Added search to space switchers and space management in both v1 and v2 by @jiannx
🐛 Bug Fixes
- [DingTalk] Fixed DingTalk internal auto-login retaining the previous user's session after switching accounts. by @chenzhizdt
v2.1.43 - 2026-08-19
🐛 Bug Fixes
-
[app] Added runtime polyfills for modern JavaScript APIs in supported older browsers (#10385) by @mytharcher
-
[undefined] Fixed customized external database field display names being reset when selected tables are reloaded by @cgyrock
-
[Data source manager] Fixed customized external database field display names being reset when a data source is submitted or its selected tables are changed (#10387) by @cgyrock
-
[Workflow: Approval] Fixed approval workflows configured to return to any previous approval node only allowing the nearest upstream node by @mytharcher
v2.1.42 - 2026-08-18
🚀 Improvements
- [undefined]
- Added LDAP and DingTalk user data synchronization guides, including permissions, event modes, synchronized fields, department owners, and troubleshooting. (#10377) by @chenzhizdt Reference: DingTalk synchronization, LDAP synchronization
- Improve LDAP and DingTalk user synchronization documentation and add all supported translations. (#10382) by @chenzhizdt Reference: DingTalk / LDAP
🐛 Bug Fixes
-
[Workflow: JavaScript] Fixed JavaScript workflow task recovery repeatedly enqueueing jobs whose executions have ended or expired. (#10366) by @mytharcher
-
[Action: Export records Pro] Fix export errors when using complex filters with the Export Pro plugin by @zhangzhonghe
-
[Action: Import records Pro] Fixed asynchronous imports not respecting field-level import permissions by @mytharcher
-
[App supervisor] Fixed Kingbase connections when creating supervised applications by @2013xile
v2.1.41 - 2026-08-16
🚀 Improvements
-
[lock-manager] Added renewable local lock leases and ensured try-acquired locks are released safely across reuse and errors (#10368) by @jiannx
-
[Redis lock adapter] Added renewable Redis lock leases and made reusable lock handles release safely during contention and errors by @jiannx
🐛 Bug Fixes
-
[File manager] Fix the extra submit step when selecting an existing file in a single-value field (#10372) by @zhangzhonghe
-
[Collection field: Markdown(Vditor)] Fix Markdown HTML previews in v2 details blocks under dark themes. (#10370) by @katherinehhh
-
[Collection field: Encryption] Fixed bulk import failing with
model.changed is not a functionwhen the collection contains an encryption field by @cgyrock -
[Workflow: Webhook] Fixed a 400 error when manually executing a webhook workflow without request headers by @mytharcher
v2.1.40 - 2026-08-14
🚀 Improvements
- [Block: Tree] Tree filter blocks now support configurable default sorting. (#10339) by @jiannx
🐛 Bug Fixes
-
[client-v2]
-
Fix filter forms refreshing automatically in UI edit mode (#10356) by @zhangzhonghe
-
Use Cascader by default for tree-structured relation fields in v2 filter forms (#10357) by @zhangzhonghe
-
Fix mobile single-select relation fields not clearing when the selected record is tapped again (#10346) by @zhangzhonghe
-
Fix the issue where China region fields cannot be added directly to filter forms (#10333) by @zhangzhonghe
-
Fix JS items incorrectly appearing in form field linkage rule actions (#10363) by @gchust
-
-
[Workflow: JSON calculation] Fixed JSON Query jobs losing structured parser errors and displaying
[object Object](#10344) by @mytharcher -
[Action: Export records]
-
[Block: Kanban] Fixed configured content disappearing after reopening a kanban card's detail drawer (#10334) by @jiannx
-
[File manager] Fixed video previews not updating when switching between files (#10345) by @mytharcher
-
[Action: Import records Pro]
-
Fixed asynchronously imported records not being associated with the current space by @jiannx
-
Clarified import results by showing the number of newly created records separately from updated records by @mytharcher
-
-
[Workflow: Approval]
-
Fix inconsistent subtable column widths in approval details by @zhangzhonghe
-
Add data scope filtering to Client V2 related approval blocks by @zhangzhonghe
-
v2.1.39 - 2026-08-11
🐛 Bug Fixes
-
[client-v2] Fixed an issue where ctx.form.submit could not correctly submit form data. (#10063) by @gchust
-
[database] Fixed prefix indexes on camel-case fields when underscored database naming is enabled (#10329) by @2013xile
-
[Action: Duplicate record] Improve direct duplication failure feedback in v2 without duplicate API error messages. (#10327) by @katherinehhh
-
[Record history] Improved record history write performance for collections with large snapshot tables by @2013xile
-
[Workflow: Approval] Fix the issue where removed one-to-many relation records cannot be selected again in approval forms by @zhangzhonghe
v2.1.38 - 2026-08-10
🚀 Improvements
- [undefined] Clarified the default JavaScript Worker concurrency behavior and when to configure a concurrency limit (#10317) by @mytharcher Reference: JavaScript node
- [Workflow: JavaScript] JavaScript workflow nodes now queue asynchronous Worker execution and limit per-process Worker concurrency to reduce resource spikes. (#10280) by @mytharcher
🐛 Bug Fixes
-
[Flow engine]
-
[File manager] Fixed file downloads failing after previewing cross-origin images when browser cache entries lack CORS response headers (#10313) by @mytharcher Reference: File Preview / Aliyun OSS
v2.1.37 - 2026-08-08
🎉 New Features
- [client-v2] Add Date variables and optional formatted output to V2 field-value editors. (#10289) by @katherinehhh
🐛 Bug Fixes
-
[client-v2]
-
Fix missing and incorrectly resolved
Current popupparent record variables in v2 popup-subtable add-new and edit dialogs. (#10292) by @katherinehhh -
Fixed parent item variables resolving to the wrong level when assigning association field values in sub-tables. (#10249) by @gchust
-
Fix the cancel button language in mobile selection lists (#10297) by @zhangzhonghe
-
-
[data-source-manager] Fixed formula fields being converted to number fields after synchronizing fields from the database (#10303) by @2013xile
-
[database] Fixed migration packages omitting many-to-many through-table data after an application restart (#10306) by @cgyrock
-
[Backup manager] Fix duplicate backups from async exports (#10300) by @gchust
-
[AI employees] AI employee actions now support linkage rules for conditional visibility in v2 forms. (#10298) by @jiannx
-
[Data source: External NocoBase] Fixed external NocoBase files and attachment fields failing to load in AI workflows by @2013xile
-
[Migration manager] Fixed many-to-many through-table migration data after application restarts and classified migration rules as system data by @cgyrock
-
[Template print] N/A — this PR records a fix target but contains no shipped behavior change. by @hongboji
-
[Workflow: Approval] Fix approval comment default values when using RunJS by @zhangzhonghe
-
[App supervisor] Prevented app creation with database identifiers that do not start with an English letter or contain unsupported characters. by @hongboji
v2.1.36 - 2026-08-05
🐛 Bug Fixes
-
[Data source manager] Prevented clearing a field interface directly from the Configure fields table. (#10288) by @hongboji
-
[Auth: LDAP] Fixed LDAP login when a user DN mixes UTF-8 escapes with escaped syntax characters such as commas. by @hongboji
v2.1.35 - 2026-08-05
🚀 Improvements
-
[Workflow: HTTP request node] Fix unstable test cases (#10246) by @mytharcher
-
[Action: Batch update] Support configurable after-success behavior for v2 Update record and Bulk update actions. (#10278) by @katherinehhh
-
[Action: Export records] Add field search to v2 import and export action settings. (#10261) by @katherinehhh
-
[Action: Export records Pro] Add field search to v2 Import Pro and Export Pro action settings. by @katherinehhh
🐛 Bug Fixes
-
[client-v2] Fix missing Current record variables in v2 JS column event-flow conditions. (#10279) by @katherinehhh
-
[database] Fixed MSSQL queries failing when filtering to-many relations with pagination and sorting by a root collection field (#10224) by @cgyrock
-
[data-source-manager] Fixed external data source table synchronization leaving removed collections registered in the database manager (#10209) by @cgyrock
-
[Workflow: JavaScript] Fixed JavaScript workflow Workers not exiting after scripts returned or asynchronous workflows timed out (#10241) by @mytharcher
-
[Collection field: Sequence] Fixed duplicate automatic sequence values after migration when multiple records share the latest creation time (#10239) by @mytharcher
-
[Data source: External SQL Server] N/A — regression test coverage only by @cgyrock
-
[AI: Knowledge base] Fixed PGVector knowledge base searches consuming unused PostgreSQL pool connections and creating duplicate pools for different vector tables. by @cgyrock
-
[Data source: External MySQL] Fixed previously selected external database tables disappearing after adding new tables. by @cgyrock
-
[Workflow: Approval]
-
Fix missing field values in approval sub-tables by @zhangzhonghe
-
Allow approval comments to use configurable default values by @zhangzhonghe
-
v2.1.34 - 2026-08-01
🐛 Bug Fixes
-
[Workflow] Fixed an issue where manually executing a workflow with
autoRevision=0could still create a new revision. (#10243) by @mytharcher -
[UI templates] Fix the issue where table blocks load data after returning to a page with empty filters (#9890) by @zhangzhonghe
-
[Template print] Fixed unwanted spacing between Latin and East Asian text in PDF files generated from DOCX templates. by @jiannx
-
[Workflow: Approval] Fix missing external data source fields in approval views by @zhangzhonghe
v2.1.33 - 2026-07-31
🐛 Bug Fixes
-
[client-v2] Fix JSON field save validation errors after reloading v2 forms. (#10206) by @katherinehhh
-
[Backup manager] Validate the maximum backup retention count and display save errors. (#10189) by @katherinehhh
-
[AI employees] AI employee chat now validates attachment count and combined size before upload (#10195) by @cgyrock
-
[Workflow] Fixed workflow executions becoming blocked while saving a large number of jobs in one database operation (#10204) by @mytharcher
v2.1.32 - 2026-07-29
🚀 Improvements
- [undefined] Improved documentation site search: results are now grouped by section with visible headings and paths, more relevant pages rank first, and plugin metadata pages are sorted last. (#10185) by @Molunerfinn
🐛 Bug Fixes
-
[client-v2] Fixed table action buttons remaining disabled after their linkage rule is disabled or removed. (#10186) by @hongboji
-
[Data source manager] Enable searching relation target collections and target keys in the v2 data source manager. (#10194) by @katherinehhh
-
[Variables and secrets] Fixed missing error feedback when submitting duplicate variables in the v2 Variables and secrets settings page. (#10181) by @katherinehhh
-
[Workflow] Fixed workflow canvas version dropdown not showing versions beyond the first 20. (#10190) by @mytharcher
-
[Version control] Fixed version-control shortcuts becoming inactive after opening settings and improved shortcut preview, save, reset, and navigation behavior by @cgyrock
v2.1.31 - 2026-07-27
🚀 Improvements
- [Workflow] Improved workflow pending task handling by persisting start, resume, and rerun tasks in the event queue. (#9846) by @mytharcher
🐛 Bug Fixes
-
[ai] Improved document loading reliability with clearer password-protected PDF errors and timeout handling. (#10172) by @cgyrock
-
[flow-engine] Fix v2 table quick edit visibility for record-scoped and field-scoped update permissions. (#10182) by @katherinehhh
-
[AI employees]
-
Fixed the Operator variable selector in AI employee workflow nodes so nested variables can be expanded, and removed the Null option from the required field. (#10167) by @cgyrock
-
Fixed AI employee shortcuts losing block context when starting a new conversation from an existing conversation (#10169) by @cgyrock
-
Fixed AI form context not using customized form item labels (#10168) by @cgyrock
-
-
[AI: Knowledge base] Improved AI knowledge-base document processing with clearer PDF errors, upload size validation, timeout protection, and correct segment-list pagination. by @cgyrock
-
[Workflow: Approval] Fix missing field templates in approval configuration when UI Editor is off by @zhangzhonghe
v2.1.30 - 2026-07-24
🚀 Improvements
-
[client-v2] Improved v2 QR code and barcode scan recognition, camera lifecycle safety, and responsive preview behavior. (#10145) by @katherinehhh
-
[client] Added Myanmar (
my-MM) to the legacy System Settings language selector. (#10153) by @hongboji -
[Workflow: Approval]
-
Added usage instructions and card-style workflow selection to the approval initiation list by @mytharcher
-
Improved the approval timeline with clearer status badges, timing details, user avatars, responsive layout, and connected submission rounds by @mytharcher
-
🐛 Bug Fixes
-
[client-v2]
-
Fix RunJS values not taking effect in client v2 date range limits. (#10157) by @katherinehhh
-
Improve error messages for unsupported and missing pages in the
/v/branch (#10159) by @zhangzhonghe -
Fix v2 table action titles being reverted after linkage refresh. (#10140) by @katherinehhh
-
Fixed required association values being cleared after selection in popup sub-table forms with parent-item data scopes. (#10146) by @katherinehhh
-
Fix record picker lists not refreshing after creating a record in client v2. (#10142) by @katherinehhh
-
-
[flow-engine]
-
[Authentication]
-
[AI employees] Prevented Nathan from reporting malformed or unchanged code patches as successfully applied (#10174) by @2013xile
-
[Collection field: Sequence] Fixed v2 sequence rule options not saving entered values and fixed-text rules incorrectly reporting a required-field error. (#10156) by @katherinehhh
-
[Backup manager] Fix missing visible error notifications when Backup Manager restore requests fail in the v2 client. (#10158) by @katherinehhh
-
[Block: Kanban] Fixed Calendar and Kanban popup templates not taking effect or being cleared incorrectly when using copied popup templates (#9856) by @jiannx
-
[App SSO] Fixed App SSO failures when the public issuer is unreachable from sub-application servers by @2013xile
-
[Auth: OIDC] Fixed incorrect redirects after OIDC login through a sub-application custom domain by @2013xile
-
[Workflow: Approval] Hide approval configuration controls when UI Editor is off by @zhangzhonghe
v2.1.29 - 2026-07-21
🚀 Improvements
- [Workflow: Approval] Approval notification channels can now be searched remotely by title by @mytharcher
🐛 Bug Fixes
-
[flow-engine] Fixed an issue where the Add Block menu could unexpectedly disappear while searching. (#10097) by @gchust
-
[client-v2]
-
[Calendar] Add scrolling to the v2 calendar event overlay when many events are shown. (#10138) by @katherinehhh
-
[Multi-space] Fixed account switching failures caused by stale space headers during authentication recovery by @jiannx
v2.1.28 - 2026-07-19
🐛 Bug Fixes
-
[client-v2] Fix mobile menus hidden incorrectly by device type rules (#10123) by @zhangzhonghe
-
[Workflow: Approval] Fix occasional errors when opening approval task details directly by @zhangzhonghe
v2.1.27 - 2026-07-19
🚀 Improvements
- [client-v2] Added Myanmar (
my-MM) to the languages selectable in System Settings. (#10131) by @hongboji
🐛 Bug Fixes
-
[resourcer] Fixed pre-action workflows not triggering when used together with before-save approval workflows. (#10119) by @mytharcher
-
[flow-engine] Fix mobile popups exceeding the screen and hiding the close button (#10118) by @zhangzhonghe
-
[client-v2]
-
[utils] Ensured server-side outbound request redirects also comply with
SERVER_REQUEST_WHITELIST(#10109) by @mytharcher Reference: Environment variables -
[Workflow: Approval] Fix messages overriding by @mytharcher
v2.1.26 - 2026-07-17
🚀 Improvements
- [undefined]
- Updated the data source documentation structure, links, and localized pages. (#10108) by @hongboji Reference: Data sources
- Updated the data source documentation structure, links, and localized pages. (#10108) by @hongboji Reference: Data sources
🐛 Bug Fixes
-
[server] Prevented uploaded XML and other active content files from executing scripts in the application origin (#10104) by @mytharcher
-
[database] Fixed an SQL injection risk when reading database view metadata (#10115) by @2013xile
-
[client-v2]
-
[AI employees] Fixed an error when sending files pasted into the AI employee chat input (#10106) by @cgyrock
-
[File storage: S3(Pro)] Fixed S3-compatible file URLs omitting the configured storage path, which caused uploaded logos and attachments to return 404 errors by @mytharcher
v2.1.25 - 2026-07-15
🎉 New Features
-
[DingTalk] Added DingTalk Stream mode support for organization event synchronization. by @chenzhizdt
-
[Auth: LDAP] Added LDAP user data sync source support, including optional AD department synchronization. by @chenzhizdt
🚀 Improvements
-
[ai] Reduced main-process memory usage when parsing uploaded knowledge base documents. (#10083) by @cgyrock
-
[undefined]
-
[File storage: S3(Pro)] S3 Pro uploads now return the created file record with permanent file URLs. by @mytharcher
-
[RabbitMQ queue adapter] Enhance the channel management and error recovery capabilities of the RabbitMQ adapter by @sdp-ncd
🐛 Bug Fixes
-
[User data synchronization] Fixed external department sync order so child departments can be reparented correctly when their parent is synced later. (#10028) by @chenzhizdt
-
[Collection field: Markdown(Vditor)] Fixed iframe sanitization for v1 Markdown rendering and editing. (#10096) by @katherinehhh
-
[Workflow] Fixed hidden fields being included when workflow serializes appended association data (#10086) by @mytharcher
-
[AI employees] Fixed AI tool-call approvals to authorize against the message's owning conversation before updating decisions. (#10077) by @cgyrock
-
[Data source: External NocoBase]
-
Fixed file preview, permanent URL handling, and upload routing for external NocoBase file collections, including S3 Pro uploads by @mytharcher
-
Fixed workflow AI employees being unable to read attachments from External NocoBase data sources by @2013xile
-
v2.1.24 - 2026-07-13
🐛 Bug Fixes
-
[client-v2]
-
[app] Fixed Redis cache configuration ignoring the dedicated cache URL (#10065) by @2013xile
-
[Action: Batch edit] Fixed Markdown editor initialization failure when a V2 form includes a
processfield. (#10080) by @katherinehhh -
[AI employees] Fixed AI attachment handling to avoid trusting client-provided file paths or URLs. (#10037) by @cgyrock
-
[Workflow] Fixed manual workflow execution returning an error when a valid request does not start an execution. (#10049) by @mytharcher
-
[Redis worker ID allocator]
-
Improved Redis worker ID isolation and failure diagnostics by @2013xile
-
Restored standalone startup without Redis worker ID configuration by @2013xile
-
-
[Workflow: Approval] Filter approval file associations by current user ownership when the temporary switch is enabled. by @mytharcher
v2.1.23 - 2026-07-10
🐛 Bug Fixes
-
[client-v2]
-
Fixed v2 ScanInput recognition for Safari QR images selected from the upload path. (#10011) by @katherinehhh
-
Fixed client runtime asset base URL normalization when
__webpack_public_path__is injected without a trailing slash, and added coverage for that edge case. (#10040) by @chenos -
Fixed an issue where button linkage rule states in table blocks could become polluted after pagination. (#10038) by @gchust
-
-
[app] Fix lazy-loaded assets using an external script URL when
CDN_BASE_URLis empty. (#10052) by @Molunerfinn -
[flow-engine] Fixed an issue where overriding ctx.api in a JS block could cause a Maximum call stack size exceeded error. (#10051) by @gchust
-
[Workflow: Delay node] Prevented delay nodes from accepting numeric durations less than 1 through the API (#10057) by @mytharcher
-
[Form drafts] Fixed form drafts disappearing after consecutive page refreshes (#10059) by @gchust
-
[Data source: Main] Prevented invalid many-to-many relationship field configurations from being saved (#10044) by @2013xile
-
[Collection: Tree] Fixed tree path collection creation to avoid passing internal field model metadata into collection options. (#10035) by @cgyrock
-
[Workflow] Fixed subflow nodes remaining pending when the child workflow fails before creating an execution record (#10043) by @mytharcher
-
[Flow engine]
-
[Template print] Fixed template print permission checks so hidden fields and records outside the current role's view scope are not rendered. by @jiannx
-
[Workflow: Approval]
-
Allow string type of assignee ID to be added by @mytharcher
-
Fix approval form fields becoming single-column in print preview by @zhangzhonghe
-
Fix the issue where fields in disabled approval subtables can still be edited by @zhangzhonghe
-
v2.1.22 - 2026-07-09
🐛 Bug Fixes
-
[client-v2]
-
[cli] Fixed NocoBase CLI default value issues for image registry fallback, built-in database images, env info display, and prompt initialization. (#10027) by @chenos
-
[Authentication] Fix the issue where reset password links open the sign-in page (#10006) by @zhangzhonghe
v2.1.21 - 2026-07-08
🎉 New Features
- [AI employees] Add OrcaRouter as an LLM provider (#10003) by @jinhaosong-source
🚀 Improvements
- [Workflow] Remove arithmetic operators for condition node (#10019) by @mytharcher
🐛 Bug Fixes
-
[client-v2]
-
[File manager]
- Reject active-content filenames during file upload unless the configured storage MIME type rule explicitly allows them. (#10021) by @mytharcher Reference: Local storage, Security guide
- Fixed missing Attachment field interface in v2 data table management, and fixed image upload preflight checks for public form file relationship fields. (#10012) by @katherinehhh
-
[Data source manager] Hide the historical attachment field interface from the V2 data table Add field menu. (#10018) by @katherinehhh
-
[Data visualization] Fixed chart click interactions that could stop working after chart rerendering (#10031) by @2013xile
-
[Migration manager] Fixed an issue where migration could leave an app stuck on the repair screen by @2013xile
-
[App supervisor] Fixed app JWT secret isolation so main app tokens are no longer accepted by sub apps after an independent secret is enabled by @2013xile
v2.1.20 - 2026-07-07
🚀 Improvements
- [cli]
-
Improved the Docker CLI setup by supporting configurable default NocoBase image registry/variant, fixing proxy and
no-nginximage port compatibility, and adding Docker Nginx/Caddy installation guides. (#9972) by @chenos -
Refactor CLI setup startup to reuse
nb app start, normalize API base path redirects, persist shared env proxy defaults, and rebuild Docker proxy containers when published ports change. (#9997) by @chenos
-
🐛 Bug Fixes
-
[client-v2]
-
[flow-engine] Fixed an issue where popup configuration became inconsistent when toggling design modes. (#10005) by @gchust
-
[File manager] Reject active-content filenames during file upload unless the configured storage MIME type rule explicitly allows them. (#9994) by @mytharcher Reference: Local storage, Security guide
-
[Data source: External MariaDB] Fix Add all collections toggle in MySQL, MSSQL, and MariaDB external data source settings. by @katherinehhh
v2.1.19 - 2026-07-03
🐛 Bug Fixes
-
[cli] Fixed revision creation events failing on RabbitMQ brokers that reject
:and@in queue names. (#9989) by @cgyrock -
[client-v2]
-
Fixed iframe sanitization for v2 Markdown rendering and editing. (#9986) by @katherinehhh
-
Fixed routed popup creation forms losing prefilled field values such as Calendar V2 start and end dates. (#9874) by @jiannx
-
Fixed V2 table data scope filters so missing URL query parameters no longer block table data queries. (#9869) by @jiannx
-
Fixed an issue where multiline text field values could not be set via ctx.setFormValues. (#9959) by @gchust
-
-
[AI employees]
-
[File manager] Hidden the file manager attachments list API and return 404 when it is requested. (#9978) by @mytharcher
-
[Workflow] Fixed an issue where workflow execution node results could remain stuck in a loading state. (#9991) by @mytharcher
-
[Backup manager]
-
[Data visualization] Fixed an issue where chart blocks would trigger unnecessary refreshes when closing a popup. (#9970) by @gchust
-
[UI templates] Fixed an issue where the field template menu was incorrectly displayed in subforms. (#9960) by @gchust
-
[Mobile (deprecated)] Fix responsive v1 admin pages so view actions open as subpages and select fields use mobile popups (#9974) by @zhangzhonghe
-
[Version control] Fixed version-control revision creation on RabbitMQ brokers that reject
:and@in queue names. by @cgyrock -
[Workflow: Approval] Fix the error that may occur when opening approval details without configuration permissions by @zhangzhonghe
v2.1.18 - 2026-07-02
🚀 Improvements
-
[cli] Support manual Nginx/Caddy proxy config generation, allow Docker deployments without bundled Nginx, and align proxy and CDN-related runtime configuration. (#9943) by @chenos
-
[undefined] Clarified the security guidance for PDF previews using external storage. (#9901) by @mytharcher Reference: File Preview
-
[utils] Added warnings for server-side outbound requests that target potential SSRF-risk addresses when
SERVER_REQUEST_WHITELISTis not configured. (#9966) by @mytharcher Reference: Environment Variables, Global Environment Variables -
[AI: Knowledge base] Added ZIP filename encoding options for knowledge base document uploads to avoid garbled filenames in ZIP archives created with non-UTF-8 encodings. by @cgyrock
🐛 Bug Fixes
-
[client-v2] Fix the issue where route subpages are blank or use incorrect spacing after refresh (#9961) by @zhangzhonghe
-
[Workflow] Reduced unnecessary workflow dispatcher DB fetch retries under concurrent queue processing. (#9953) by @mytharcher
-
[Action: Export records] Fixed XLSX exports so text-like field values that start with formula characters are escaped before being opened in Excel. (#9973) by @mytharcher
-
[AI employees] Fixed LLM providers falling back to their default Base URL when the custom Base URL field is cleared. (#9958) by @cgyrock
-
[Data source: External NocoBase] Fixed external NocoBase attachment uploads and updates in attachment fields by @2013xile
v2.1.17 - 2026-07-01
🐛 Bug Fixes
-
[flow-engine] Fixed an issue where ctx.auth.user would not update after switching users. (#9964) by @gchust
-
[Mobile (deprecated)] Fix the issue where mobile pages and public forms cannot be scrolled on mobile devices (#9898) by @zhangzhonghe
v2.1.15 - 2026-06-30
🐛 Bug Fixes
-
[undefined] Fixed the Version control documentation in non-Chinese languages so the Professional Edition label is displayed. (#9944) by @cgyrock
-
[AI employees] Fixed workflow AI employee tasks failing after repeated tool calls reached the graph recursion limit. (#9945) by @cgyrock
-
[Action: Custom request] Fixed custom requests allowing runtime options to override the saved request target. (#9904) by @mytharcher
-
[Data source manager] Fixed v2 collection field management so template-protected fields cannot be deleted and inherited fields support view / override behavior consistent with v1. (#9940) by @katherinehhh
-
[Migration manager] Fixed garbled text that could occur when migrating MySQL data with non-ASCII content by @2013xile
-
[Workflow: Approval] Fix the error when adding Original application content to approval nodes by @zhangzhonghe
v2.1.14 - 2026-06-29
🎉 New Features
- [AI employees] Added Mistral AI as an LLM provider for AI services. (#9925) by @cgyrock
🚀 Improvements
- [cli] support OAuth device authorization flow (#9922) by @chenos
🐛 Bug Fixes
-
[client-v2]
-
[Users] Removed the default password from the add-user form in Users & Permissions. (#9915) by @jiannx
-
[Data source: External NocoBase] Fixed NocoBase external data sources failing to load when connection options include runtime objects by @2013xile
-
[Record history] Fixed external NocoBase data source loading failure when record history is enabled by @2013xile
-
[App supervisor] Fixed the app supervisor Applications tab registration in Client V2 by @2013xile
v2.1.12 - 2026-06-26
🚀 Improvements
-
[flow-engine] Automatically refreshed related data blocks when RunJS closes a popup after updating data through resource APIs (#9873) by @gchust
-
[client-v2] Support configure js block should be wrapped by block card. (#9897) by @gchust
🐛 Bug Fixes
-
[client-v2]
-
Fixed link actions becoming invisible on mobile embedded pages when icon-only mode is enabled but no icon is configured. (#9921) by @katherinehhh
-
Fixed v2 table row action buttons changing row height. (#9866) by @jiannx
-
Fixed v2 form submit success redirects so they can reference the saved response record. (#9907) by @katherinehhh
-
Fixed table blocks failing when a configured drag sorting field has been deleted, and allowed clearing the drag sorting field setting. (#9867) by @jiannx
-
-
[client] Corrected several copy and typo issues across locales, related UI text, and documentation. (#9905) by @Molunerfinn
-
[flow-engine] Fixed an issue where some parameters of ctx.openView in RunJS would not take effect. (#9883) by @gchust
-
[cli] support pnpm and yarn global self update (#9912) by @chenos
-
[AI employees]
-
[Block: iframe] Fixed 403 errors for normal users when viewing v2 iframe blocks in HTML mode. (#9889) by @jiannx
-
[AI: Knowledge base] Fixed layout overflow in version control and knowledge base document lists when content or viewport size is constrained. by @cgyrock
-
[Migration manager] Fixed migration rules for database-synced collections by @2013xile
-
[Record history] Fixed an issue where record history could fail to save changes for some collections by @2013xile
v2.1.11 - 2026-06-24
🚀 Improvements
- [Backup manager] Fixed version-control restore failures when selected-collection backups contain database views or related database objects. (#9827) by @cgyrock
🐛 Bug Fixes
-
[flow-engine]
-
[client-v2]
-
[ai] Added support for using NocoBase request variables in user-bound MCP configurations and prevented user-bound MCP connection failures from interrupting AI employee conversations. (#9888) by @cgyrock
-
[cli] prepare npm source dev dependencies (#9882) by @chenos
-
[UI templates] Fixed an issue where association field block templates could not be used. (#9406) by @gchust
-
[AI: Knowledge base] Fixed AI knowledge base document table and hit-test result cards overflowing on narrow screens or with long filenames. by @cgyrock
-
[Version control] Fixed version-control restore failures when selected-collection backups contain database views or related database objects. by @cgyrock
-
[Multi-space] Fixed the spaces settings page so it can load spaces beyond the first 20 records. by @jiannx
v2.1.10 - 2026-06-23
🎉 New Features
-
[ai] Added support for using current user variables in remote MCP client URLs and headers. (#9828) by @cgyrock
-
[cli] support install hook scripts (#9824) by @chenos
🚀 Improvements
-
[client-v2] Show field-level validation rules as read-only inherited rules in UI field validation settings. (#9819) by @katherinehhh
-
[Flow engine] Added the current block to the user context by default when building AI employees using the Flow Surface API. (#9840) by @gchust
🐛 Bug Fixes
-
[client-v2] Fixed block did not refresh after blocks settings updated. (#9843) by @gchust
-
[Workflow: Custom action event]
-
Fixed custom-context trigger workflow actions so frontend variables in request payloads are resolved before submission in v2 action buttons (#9853) by @mytharcher
-
Fixed the v2 custom action workflow binding selector so enabled workflows are filtered with boolean values and can be listed correctly. (#9865) by @mytharcher
-
-
[Block: Gantt] Fixed Gantt task popup template settings not applying or clearing correctly. (#9835) by @jiannx
-
[Workflow: Approval]
-
Fixed approval action node validation to allow
nullforapplyDetailorapprovalUidand skip processing unless a string reference is provided by @mytharcher -
Fix the issue where related approvals do not load or refresh correctly by @zhangzhonghe
-
v2.1.9 - 2026-06-20
🚀 Improvements
- [client-v2] Add override value option for field value settings. (#9578) by @gchust
🐛 Bug Fixes
-
[client-v2]
-
[auth] Encrypted password data is no longer included in sign-in status responses (#9836) by @2013xile
-
[app] Ignore unrelated currentScript when inferring plugin public path (#9839) by @chenos
-
[UI templates] Fixed incorrect default context for ctx.openview. (#9811) by @gchust
v2.1.8 - 2026-06-18
🐛 Bug Fixes
-
[ai]
-
[AI: Knowledge base]
-
Fixed unclear failures when enabling the AI knowledge base plugin without the AI plugin available. by @cgyrock
-
Fixed incompatible LangChain dependency resolutions for the AI knowledge base plugin. by @cgyrock
-
v2.1.7 - 2026-06-17
🎉 New Features
-
[Backup manager] Support backup and restore for KingBase as the primary database (#9791) by @2013xile
-
[Migration manager] Support migrations for KingBase as the primary database. by @2013xile
🚀 Improvements
-
[undefined] Improved AI knowledge base retrieval and documentation. (#9765) by @cgyrock
-
[cli] add env config schema version (#9782) by @chenos
-
[Workflow] Stabilize update options test (#9773) by @mytharcher
-
[File manager] Improved PDF previews by using the browser-native viewer for cross-origin PDF files while keeping same-origin PDF files rendered with PDF.js. (#9796) by @mytharcher
-
[Backup manager] Tables whose collection
dataCategoryis marked as'runtime'are now excluded from backups automatically. (#9804) by @cgyrock -
[AI: Knowledge base] Improved AI knowledge base document segmentation, segment management, hit tests, and document workflow node support. by @cgyrock
🐛 Bug Fixes
-
[client-v2]
-
Fixed an issue where form submission would show incorrect message when a subform contained a sub-table. (#9807) by @gchust
-
Fixed an issue where event flows on sub-table columns would execute incorrectly. (#9821) by @gchust
-
remove unexpected updateAssociationValues from association fields (#9812) by @katherinehhh
-
Fixed untranslated Yes/No options in v2 filter form checkbox dropdowns. (#9792) by @katherinehhh
-
Fixed the issue that not able to update event flow settings after saving block as template. (#9585) by @gchust
-
Fixed incorrect display and format settings when v2 table association title fields use time, date-only, or datetime fields. (#9785) by @katherinehhh
-
-
[Workflow] Fixed workflow dispatcher recovery after unexpected dispatch errors. (#9783) by @mytharcher
-
[File manager] Fixed 404 errors when uploading files to attachment URL fields in external data sources (#9809) by @2013xile
-
[Action: Custom request] Fixed V2 custom request actions showing an extra error when request settings are not configured. (#9802) by @katherinehhh
-
[AI employees]
-
[Workflow: Custom action event] Fixed action panel v2 trigger workflow buttons showing success and sending a request when no workflow is bound. (#9798) by @mytharcher
-
[Flow engine] Fixed an issue where current record forms and details in popup could contain incorrect data if built by AI. (#9788) by @gchust
-
[Async task manager] Fixed async task file download errors when the task id is missing from
filterByTk. (#9705) by @mytharcher -
[Data source: External NocoBase] Proxy NocoBase external data source file upload and storage actions by upload data source by @2013xile
-
[Multi-space] Fixed permission errors when space managers add users without access to the users email field. by @jiannx
-
[Workflow: Subflow] Fixed asynchronous subflows so parent workflows can resume after worker restart or in-memory event mapping loss. by @mytharcher
-
[App supervisor] Fixed a crash when remote WebSocket proxy responses fail by @2013xile
v2.1.5 - 2026-06-15
🎉 New Features
- [Workflow: mailer node] Add attachment support to the workflow mailer node. (#9724) by @mytharcher
🚀 Improvements
-
[client-v2] Supported current item variables in the data scope of association field columns within form sub-tables. (#9444) by @gchust
-
[undefined]
-
[File manager] Added selectable text support to the file manager PDF preview when the PDF contains embedded text. (#9781) by @mytharcher
-
[Action: Batch edit] Improved v2 action plugin loading and kept migrated action buttons in a stable order. (#9778) by @katherinehhh
-
[Version control] Updated the Chinese display name of the Version Control plugin. by @cgyrock
🐛 Bug Fixes
-
[cli-v1] Fix the
yarn deverror after upgrading projects created bycreate-nocobase-appfrom 2.0 to 2.1. (#9775) by @Molunerfinn -
[client-v2] Fixed migration progress not showing its dedicated progress view (#9761) by @2013xile
-
[flow-engine] Fixed Vietnamese and Chinese IME input handling in v2 single-line text and textarea fields. (#9764) by @katherinehhh
-
[server] Fixed unsafe plugin name handling in
pm:enableto prevent local file inclusion through plugin resolution. (#9701) by @mytharcher -
[File manager] Fixed PDF preview failures caused by the pdf.js worker module not loading correctly. (#9779) by @mytharcher
-
[Block: Kanban] Fixed unexpected hidden popup action persistence and repeated destroy requests when opening calendar, gantt, and kanban blocks outside edit mode. (#9772) by @jiannx
-
[Action: Export records Pro] Improved v2 import/export pro Processing mode settings and tooltip descriptions. by @katherinehhh
-
[Migration manager] Fixed failures when importing large migration data files by @2013xile
-
[Template print] Rejected unsupported template file types before template printing starts by @2013xile
v2.1.4 - 2026-06-13
🚀 Improvements
- [Workflow] Improved workflow metadata editing by allowing descriptions to be edited from the details modal and pre-filling duplicate workflow metadata. (#9766) by @mytharcher
🐛 Bug Fixes
-
[Action: Import records] Store import uploads on disk to reduce memory pressure during large imports. (#9739) by @mytharcher
-
[Backup manager] Fixed a security issue where unsafe PostgreSQL schema names could be accepted during backup restore (#9758) by @2013xile
-
[Workflow]
-
[Action: Import records Pro] Avoid parsing large pro import files on the request node before async task creation. by @mytharcher
-
[Version control] Adjusted the Version control topbar shortcut to appear next to the UI editor in both legacy and v2 admin layouts. by @cgyrock
v2.1.3 - 2026-06-12
🚀 Improvements
- [cli]
🐛 Bug Fixes
-
[client] Fix the issue where fields in horizontal subforms are too narrow to display data (#9755) by @zhangzhonghe
-
[Data source manager]
-
Fixed the blank edit field drawer caused by repeated rerenders on the v1 external data source Configure fields page. (#9759) by @katherinehhh
-
Fixed an issue where deleting the active collection category in the v1 data source manager could leave the All collections tab empty. (#9757) by @katherinehhh
-
-
[Async task manager] Fixed incorrect request IDs in async task worker logs (#9686) by @2013xile
-
[Workflow: SQL node] Fixed SQL workflow legacy template-variable migration being skipped for some beta-version users. (#9762) by @mytharcher
-
[AI employees]
-
[Block: Kanban] Fixed URL support for calendar and related popups. (#9751) by @jiannx
-
[Workflow: Approval] Fix the issue where related data is not displayed in v2 approval forms by @zhangzhonghe
v2.1.2 - 2026-06-11
🎉 New Features
-
[AI employees] Added an external vector store configuration form for AI knowledge bases. (#9723) by @cgyrock
-
[AI: Knowledge base] Added an external vector store configuration form for AI knowledge bases. by @cgyrock
🚀 Improvements
-
[undefined]
- Add a version control scenario to the AI builder quick start (#9748) by @Molunerfinn Reference: AI Builder Quick Start
- Improved the version control documentation with AI Builder automatic revision guidance. (#9745) by @cgyrock
-
[cli] clarify init setup wording (#9750) by @chenos
-
[Action: Import records] Improved import and async task error dialogs so long error messages can be fully read without breaking the layout. (#9746) by @katherinehhh
-
[Action: Import records Pro] Improved import dialogs so long error messages remain readable and v2 processing mode can be selected directly from the settings menu. by @katherinehhh
🐛 Bug Fixes
-
[client-v2] Fix the issue where v2 pages could keep loading after signing in (#9738) by @zhangzhonghe
-
[cli] require Node.js 22 for nb (#9749) by @chenos
-
[File manager] Fix PDF previews missing CJK/CID font text after switching to pdf.js. (#9737) by @mytharcher
v2.1.0 - 2026-06-10
NocoBase 2.1.0 Release Notes
NocoBase 2.1 is a major upgrade to AI capabilities, multi-app, and 2.0 adaptation. We've introduced the NocoBase CLI, making it easy for both people and AI Agents to connect to and manage NocoBase applications. From creating applications and AI-assisted building to enhanced AI Employees and an AI development plugin, it covers the full flow from environment onboarding to system building and business collaboration. We've also enhanced multi-app capabilities to make interaction and collaboration across apps easier. At the same time, we've added version control and continued to substantially round out 2.0 page support and core capabilities — more blocks, fields, actions, and plugins now support 2.0.
What's New
Introducing the NocoBase CLI
In this release, the NocoBase CLI (nb) is the core entry point for both regular users and AI Agents to connect to NocoBase.
The CLI is used to initialize, connect, and manage NocoBase applications in a local workspace. It covers several scenarios:
- Install a new NocoBase application via Docker, npm, or Git, then save it as a CLI env
- Connect to an existing NocoBase application and save it as a CLI env
- Install, create, and activate plugins
- Operate, back up, and manage NocoBase applications
Whether you want to plug AI into an existing system or spin up a new application from scratch, you can handle initialization and ongoing management through the CLI.
For teams, the CLI provides a standard entry point that AI Agents can understand and operate on — environment initialization, connection configuration, and runtime management all share the same flow.
The official release also adds a set of operations-related commands:
nb api: Call the NocoBase API through the CLI.nb app: Manage application runtime state: start, stop, restart, logs, and upgrade.nb backup: Create a backup and download it locally, or restore a local backup file to a target env.nb config: Manage CLI default configuration.nb db: Manage the built-in database of the selected env.nb env: Manage NocoBase project environments, the current env, status, details, and runtime commands.nb license: Manage commercial licenses and licensed plugins.nb plugin: Manage plugins of the selected NocoBase env.nb scaffold: Generate a NocoBase plugin development scaffold.nb self: Check or update the NocoBase CLI itself.nb source: Manage local source projects: download, develop, build, and test.
Related documentation:
AI-assisted building: replace manual configuration with conversation
AI-assisted building is one of the core experiences in this release. You can describe your business needs in natural language, and the AI helps complete data modeling, page configuration, permission setup, and workflow orchestration.
Compared with traditional low-code building, AI-assisted building has several clear advantages:
- A lower barrier to entry — you don't need to be familiar with every configuration concept up front
- A shorter path from requirement description to working prototype
- Data, UI, and workflow configuration can be completed by the AI continuously
For example: "design a CRM data model for me", "create a customer management page for me", or "orchestrate a workflow that automatically deducts inventory after an order is created" — all of these can be handled by the AI within the scope of NocoBase's capabilities.
Related documentation:
NocoBase Skills cover the full building flow
To help the AI truly understand NocoBase's configuration system, this release ships a set of domain knowledge packs that can be installed into AI Agents — NocoBase Skills.
Skills are standardized knowledge and operation wrappers organized around NocoBase's key capability domains, helping the AI more accurately understand object models, configuration structures, and execution boundaries.
We currently provide 8 Skills that cover the full building flow:
- Environment management — environment checks, install/deploy, upgrade, and troubleshooting
- Data modeling — create and manage tables, fields, and relations
- UI building — create and edit pages, blocks, popups, and interaction reactions
- Workflow management — create, edit, enable, and diagnose workflows
- Permission configuration — manage roles, permission policies, user bindings, and risk assessment
- Solutions — bulk-build entire business systems from YAML (still in beta, with limited stability)
- Plugin management — view, enable, and disable plugins
- Publish management — cross-environment publishing, backup/restore, and migration
With Skills, the AI can more accurately understand NocoBase's configuration system and provide smarter assistance when building and managing systems.
Note: NocoBase Skills are still being actively improved. NocoBase Skills are also installed automatically when you install and initialize the NocoBase CLI, so in most cases you don't need to install them separately.
Related documentation:
AI development plugin
This release fills in the foundational capabilities needed for AI plugin development, so the AI can take part not only in application building but also in custom plugin development.
This shows up in three main areas:
- A unified
rsbuild/rspackbuild pipeline, consolidating plugin development and the frontend build system - A
client-v2capability and/v/routing system aimed at AI development, preparing for the next-generation client plugin development - AI plugin development Skills that help the AI better understand plugin structure, code organization, and implementation patterns
Preparation around client-v2 includes:
@nocobase/appexposes theclient-v2entry- The kernel ships a
@nocobase/client-v2package with base components, utilities, and type definitions - Each plugin gets a
/src/client-v2directory - A new
/v/route is added — still being actively improved, available for early adopters - The kernel is gradually migrating to V2
- Plugins are gradually migrating to V2
A unified build pipeline lowers the cost of frontend plugin development and debugging. The gradual rollout of client-v2 also gives the AI a more stable target structure for generating and maintaining plugin code.
In practice: you can describe a plugin requirement in natural language, and the AI helps generate the frontend and backend code, data tables, APIs, permission configuration, and i18n content.
Note: AI plugin development is only for client-v2-style new plugins. We will follow up with migration documentation and Skills for moving from client-v1 plugins to client-v2, to help you bring existing plugins into the new system.
Related documentation:
AI Employees enhancements
AI-assisted building answers "how do I use AI to build a system"; AI Employees answer "how do I let AI work inside the system to solve concrete business problems".
AI Employees existed in earlier releases, but in this release the related capabilities have been enhanced and the AI kernel has been rounded out:
- MCP support
- New AI Employee Atlas, playing a team-leader role and dispatching other AI Employees to complete tasks based on user intent
- AI Employee workflow node
- LLM-based web search tool
- New aggregation query tool and report generation tool for producing business analysis reports
- New localization engineer Lina, a built-in AI Employee from the localization plugin used for system localization translation, supporting incremental, selected, and full translation scopes
These improvements take AI Employees' extensibility, orchestration, and execution capabilities inside business systems to the next level. AI Employees can understand the current business context, invoke skills to execute specific tasks, participate in automated workflows, and combine external information to deliver analysis and output.
The official release also adds support for AI Employees to load files from workflow attachment fields and to handle multiple conversations in parallel, further improving the usability of AI Employees in real business processes.
Related documentation:
- AI Employees
- Lina: Localization engineer
- Translate localization terms with Lina and a local HY-MT1.5-1.8B model
Version control
Version control helps you better manage your application's version iterations and change history. You can create, view, and restore different versions of an application, making it easy to switch versions and recover from issues during development and operations. Note: This feature requires the Professional edition or above.
Related documentation:
Multi-app enhancements
In this release, we have made some important enhancements to multi-app deployments, mainly in three areas:
- New app block and app switcher, which let you surface entry points to other sub-applications on a page, making it easy for users to switch between the main app and sub-apps.
- New app single sign-on. When a user enters a sub-app from the main app, or switches between sub-apps, the system attempts to automatically sign them in to the target sub-app using the currently logged-in user. Users no longer need to re-enter their credentials in each sub-app.
- Calling sub-app APIs. In multi-app scenarios, each sub-app has its own independent API, distinguished by path prefix, parameters, and so on, making it easy to call a sub-app's API.
These enhancements are very practical for users running multi-app deployments, making it easier to exchange data and operate across multiple applications and improving the overall collaboration efficiency of multi-app systems.
Related documentation:
Workflow enhancements
This release enhances the controllability and observability of workflows:
- Added timeout control — workflows that run too long are automatically terminated (subflows also support timeout configuration)
- Added created-by and updated-by fields
- Added a log field to node jobs, making it easier to view node logs while debugging
- The Webhook trigger (synchronous mode) returns a 408 response status on timeout
Related documentation:
Handwritten signature field
Added a handwritten signature field that lets you draw and save a signature in a form, suitable for approvals, confirmation sheets, receipts, and similar scenarios.
Related documentation:
JS Item action
Added the JS Item action, which lets you run custom logic in an action by writing JS, working together with event flows to meet more flexible interaction needs.
Related documentation:
2.0 adaptation and new features
Beyond AI, this release continues to migrate key feature modules to 2.0, while also rolling out new features for real-world business scenarios.
New features
2.0 adaptation
- Custom request
- Tree filter block
- Calendar block
- Kanban block
- Gantt block
- List block
- Grid card block
- Map block
- Markdown block
- iframe block
- Chart block / Data visualization
Multilingual documentation
- Added Indonesian and Vietnamese documentation
v2.0.61 - 2026-06-03
🚀 Improvements
-
[client] Enhanced autocomplete support for some built-in RunJS functions. (#9481) by @gchust
-
[undefined] Update the Embed NocoBase documentation for the open source plugin (#9642) by @zhangzhonghe Reference: Embed NocoBase
🐛 Bug Fixes
-
[flow-engine]
-
[client]
-
[cli] Fix nginx template to serve
.mjsassets with JavaScript MIME type. (#9626) by @mytharcher -
[database] Fixed an issue where importing numeric password values could fail (#9635) by @2013xile
-
[AI employees] Fixed AI provider base URL validation. (#9667) by @cgyrock
-
[Flow engine]
-
[Notification: In-app message] Fixed SQL injection risk in the in-app notification channel timestamp filter. (#9630) by @mytharcher
-
[License settings] Fixed the license settings page hanging for a long time when the pkg login check is slow or unreachable (#9650) by @hongboji
-
[Workflow: JavaScript] Clarify that Workflow JavaScript module support mode is unsafe and not a permission boundary (#9629) by @mytharcher Reference: Workflow JavaScript
-
[Access control] Fixed incomplete permissions on first login when union role is the default (#9632) by @2013xile
-
[File manager] Fixed local file storage path validation to prevent unsafe paths from escaping the configured storage root. (#9628) by @mytharcher
-
[Password policy] Fixed an issue where password policy validation could fail for numeric password values by @2013xile
v2.0.60 - 2026-05-29
🚀 Improvements
- [AI employees] Improved the LLM Base URL field so it can use global-scope variables in create and edit forms. (#9615) by @cgyrock
🐛 Bug Fixes
-
[client] Fix the badge width in the top navigation bar (#9607) by @zhangzhonghe
-
[AI employees] Fixed AI shortcut buttons getting an empty block context after referenced table blocks are removed. (#9617) by @cgyrock
-
[Migration manager] Fix PostgreSQL migration diffs so child inherited columns are not dropped when a local column becomes inherited. by @hongboji
v2.0.59 - 2026-05-28
🐛 Bug Fixes
-
[ai] Pinned LangChain dependencies to stable versions to prevent Ollama tool execution failures and avoid affected upstream releases (#9604) by @cgyrock
-
[flow-engine] Fixed the incorrect ui log level. (#9577) by @gchust
-
[Collection: Tree] Fix the error caused by circular parent-child data in tree collections (#9603) by @zhangzhonghe
-
[AI: Knowledge base] Pinned LangChain dependencies to stable versions to prevent Ollama tool execution failures and avoid affected upstream releases by @cgyrock
v2.0.58 - 2026-05-28
🎉 New Features
- [Workflow] Added an administrator API to rerun started workflow executions from the head or a specified node. (#9569) by @mytharcher
🚀 Improvements
- [client] Remove the Hidden option from menu item settings (#9595) by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
fix sync mobile date picker popup value (#9582) by @katherinehhh
-
fix preserve time format for v2 time fields (#9579) by @katherinehhh
-
increase scan input image upload limit (#9580) by @katherinehhh
-
fix sync hidden state for subform linkage (#9594) by @katherinehhh
-
fix issue where subtable in subform could not add a second row (#9586) by @katherinehhh
-
Fix page tabs disappearing after switching menus (#9583) by @zhangzhonghe
-
-
[flow-engine] Fixed an issue where table action linkage rules would execute incorrectly after a form was successfully submitted in a popup. (#9445) by @gchust
-
[Workflow: Custom action event] Fixed custom action table buttons with multiple records context incorrectly allowing custom context workflows to be selected. (#9608) by @mytharcher
-
[File manager]
-
Fixed Unicode filename normalization during file uploads to avoid generating object keys with control characters. (#9584) by @mytharcher
-
Improved PDF preview failure messages and documented CORS requirements for external storage. (#9600) by @mytharcher Reference: File Preview
-
v2.0.57 - 2026-05-25
🐛 Bug Fixes
-
[build] Fixed plugin server obfuscation output to avoid browser globals in Node.js runtime bundles. (#9559) by @Molunerfinn
-
[Workflow: Manual node] Fixed temporary saves for manual workflow tasks not persisting submitted form values. (#9554) by @mytharcher
-
[AI employees] fixed incorrect description of the tool name in the work context prompt (#9567) by @cgyrock
-
[File manager] Safely render PDF previews with PDF.js instead of iframe-based raw PDF rendering. (#9566) by @mytharcher
-
[Auth: OIDC] Fixed token leakage when SSO login callbacks receive an external redirect URL by @2013xile
-
[Workflow: Approval]
-
Fix the issue where
jobs:resumeAPI is not supported by approval node by @mytharcher -
Fixed approval withdraw to update submitted business data while respecting source collection update permissions. by @mytharcher
-
Fixed stale approval todos when approval workflows are terminated by non-approval node failures. by @mytharcher
-
v2.0.56 - 2026-05-21
🎉 New Features
- [Backup manager] open source backup manager plugin (#9550) by @chenos
🚀 Improvements
-
[client] optimize action button display settings (#9510) by @katherinehhh
-
[flow-engine] V2 field configuration menus now support searching fields (#9489) by @zhangzhonghe
-
[undefined]
-
Add dependency security review for pull requests (#9523) by @zhangzhonghe
-
Add dependency security review for pull requests by @zhangzhonghe
-
Add dependency security review for pull requests by @zhangzhonghe
-
-
[Notification manager] Change queue strategy to optimize sending performance (#9407) by @mytharcher
-
[AI: Knowledge base] Enabled vector storage modification for AI knowledge bases by @cgyrock
-
[Workflow: Approval] Improve related approvals with timeline cards by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
fix clear selected values when dependent association fields change in data scope linkage (#9551) by @katherinehhh
-
Fix the issue where a menu badge still shows a dot when its value is 0 (#9491) by @zhangzhonghe
-
Fix the issue where filter forms cannot use current form variables (#9474) by @zhangzhonghe
-
Fix the issue where narrowed v2 blocks become full width after leaving edit mode (#9529) by @zhangzhonghe
-
Fixed incorrect JS Field menu state in subforms. (#9507) by @gchust
-
-
[flow-engine] fix multiple selection issue for external data source fields in v2 form (#9542) by @katherinehhh
-
[AI employees] Fix error when AI employee access read-only knowledge base (#9539) by @cgyrock
-
[Calendar] Fix the issue where calendar more items cannot be fully displayed (#9492) by @zhangzhonghe
-
[Action: Batch update] fix bulk-update action reset loading state after update failure (#9509) by @katherinehhh
-
[API documentation] Fixed collection API documentation so query parameters no longer interfere with each other (#9442) by @jiannx
-
[Workflow] Add loading state for manual workflow execution. (#9533) by @mytharcher
-
[Migration manager] Fixed migration file creation failures when using OceanBase by @2013xile
-
[File storage: S3(Pro)] Fix S3 Pro endpoint handling so server uploads and URL previews do not duplicate the bucket host. by @mytharcher
-
[Workflow: Approval] Fix duplicate approval record indexes when delegates happen concurrently on the same approval job. by @mytharcher
v2.0.55 - 2026-05-18
🚀 Improvements
-
[AI employees] Prompt on duplicate table name when saving to vector database (#9497) by @cgyrock
-
[AI: Knowledge base] Prompt on duplicate table name when saving to vector database by @cgyrock
🐛 Bug Fixes
-
[client]
-
[File manager] Fix file manager
tx-cosuploads missing file size metadata. (#9499) by @mytharcher -
[Data source: Main] Fix the issue where field options are written into the schema after syncing fields (#9505) by @2013xile
-
[WEB client] Clean blocks data after remove menus. (#9459) by @gchust
-
[AI employees] Fix AI employee OSS file read errors (#9493) by @cgyrock
-
[Action: Import records] Fix the issue where imported record on date-like fields shows wrong date (#9463) by @mytharcher
-
[Action: Export records Pro] Fix the issue where error thrown when export attachment from attachment url field by @mytharcher
-
[Action: Import records Pro] fix timezone handling for pro xlsx imports by @mytharcher
v2.0.53 - 2026-05-14
🚀 Improvements
- [flow-engine] Added an unsaved changes confirm message when closing the event flow configuration page with unsaved data present. (#9449) by @gchust
🐛 Bug Fixes
-
[client]
-
fix prevent opening quick edit for association fields in table (#9469) by @katherinehhh
-
Fixed display-only relation fields in sub-tables not showing or not clickable after refresh. (#9453) by @jiannx
-
fix multiple select fields in v2 data blocks should display option labels instead of values (#9472) by @katherinehhh
-
-
[Block: Multi-step form] fix scrollbar issue when enabling full-height in v1 step form block (#9468) by @katherinehhh
v2.0.52 - 2026-05-13
🎉 New Features
- [client]
🚀 Improvements
-
[client] exclude already associated records in association selection dialog of one-to-many table block (#9448) by @katherinehhh
-
[Departments] optimize department list style by adding icons and adjusting spacing (#9435) by @katherinehhh
-
[AI: Knowledge base] The unique identifier for a knowledge base is configurable at the time of creation by @cgyrock
🐛 Bug Fixes
-
[client]
-
Fixed the issue where legacy default value settings can't be removed. (#9470) by @gchust
-
Fixed the issue where can't select options for association's select field. (#9088) by @gchust
-
Fixed an issue where the target block data scope was set incorrectly when deselecting row data in a table block event flow. (#9443) by @gchust
-
Fix duplicate table requests when filter forms have default values (#9423) by @zhangzhonghe
-
Fixed V2 linkage rules to support setting selectable options for fields (#9399) by @jiannx
-
fix error when changing title field of association field in v2 table block (#9451) by @katherinehhh
-
Fixed an intermittent issue where action button linkage rules would fail to take effect. (#9430) by @gchust
-
hide subtable component for to-many association fields in v2 subtable (#9438) by @katherinehhh
-
-
[server] fix(file-manager): force download active content files in local/public storage (#9437) by @mytharcher
-
[AI employees] Fixed Ollama test flight requiring key input (#9450) by @cgyrock
-
[Graph collection manager] fix graphical interface auto layout throws update action filter error (#9421) by @katherinehhh
-
[Workflow] fix: restore helper text in FlowModel workflow binding dialogs for operation and custom action events (#9447) by @mytharcher
-
[Departments] fix translation conflict between add user and add department buttons in Users & Permissions settings (#9456) by @katherinehhh
-
[Collection field: Markdown(Vditor)] fix markdown field tooltip being hidden in horizontal form layout (#9420) by @katherinehhh
-
[WEB client] Fix route type filtering when using translated labels (#9425) by @zhangzhonghe
-
[Workflow: Approval]
-
Fix the issue where JS field appears in approval process settings by @zhangzhonghe
-
Fix approval form layout on mobile devices by @zhangzhonghe
-
Fix duplicate approval record index when delegating approval tasks. by @mytharcher
-
-
[Backup manager] Fixed an issue where backups would fail with an error when files could not be found. by @gchust
v2.0.51 - 2026-05-10
🚀 Improvements
- [Workflow: Approval] Fix required validation behavior for approval forms by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
Fixed an issue where JS code could no longer be edited after a JS field was set to read-only. (#9404) by @gchust
-
Fixed an issue where sub-table field assignments would not take effect in field linkage rules. (#9412) by @gchust
-
Fix the issue where v2 page tabs do not sync immediately after saving settings (#9396) by @zhangzhonghe
-
Fixed an issue where the default value popup for association fields in the create form would display incorrectly. (#9408) by @gchust
-
-
[Password policy] Fixed an issue where permanently locked users could sign in after a service restart by @2013xile
-
[Action: Import records Pro] Fix the issue where duplicated check on date field always fails by @mytharcher
-
[Workflow: Approval] Fix the issue where the select record drawer is obscured in approval workflow configuration by @zhangzhonghe
v2.0.50 - 2026-05-09
🎉 New Features
-
[client] add associate and dissociate actions to association block (#9366) by @katherinehhh
-
[Text copy] support "Display copy button" option for read-only text field (#9394) by @katherinehhh
🚀 Improvements
-
[undefined] - (#9374) by @Molunerfinn
-
[client] Allow to assign field value for sequence field (#9397) by @mytharcher
🐛 Bug Fixes
-
[flow-engine] Fixed untranslated data table field validation messages in v2 flow forms (#9393) by @jiannx
-
[client]
-
Fixed
Hidden (reserved value)fields in form blocks so they remain visible in UI Editor mode, and restored value input support for assigning them in Field assignment (#9373) by @jiannx -
Fix incorrect download filenames for AttachmentURL fields when file metadata is missing. (#9382) by @mytharcher
-
Fixed the v2 table bulk workflow trigger so row selection stays consistent after redirecting between tabs and rows can be selected again after returning (#9388) by @jiannx
-
Fix filter forms that could not collapse (#9386) by @zhangzhonghe
-
Fix the issue where v1 subtable linkage rules incorrectly change required field styles (#9364) by @zhangzhonghe
-
fix incorrect data rendering in grid card block after update and refresh (#9351) by @katherinehhh
-
fix required option field in subtable not validated correctly on first selection in mobile (#9352) by @katherinehhh
-
Fix the issue where URL query parameter variables become invalid after switching cached pages (#9263) by @zhangzhonghe
-
fix adapt DividerItem to theme in v2 (#9372) by @katherinehhh
-
fix hide quick create option for association select field in v2 subtable (#9358) by @katherinehhh
-
Fixed linkage rules have not been rerun after form values change. (#9357) by @gchust
-
Fix the error when filtering scalar fields with custom multi-select filters (#9387) by @zhangzhonghe
-
-
[server] validate plugin package names before filesystem operations (#9367) by @chenos
-
[Data source manager] prevent editing and deletion of all records in custom scope permissions for external data sources (#9395) by @katherinehhh
-
[Data source: Main] Fixed imported database tables using the wrong prefixed table name when a table prefix is enabled (#9403) by @2013xile
-
[Notification: In-app message] Fixed an issue where the in-app message list did not refresh after receiving realtime notifications (#9409) by @mytharcher
-
[Block: Kanban] fix prevent single-word wrapping in long text field of v1 kanban block (#9356) by @katherinehhh
-
[Collection field: Formula] fix formula field in v2 subtable not triggered to auto-calculate (#9354) by @katherinehhh
v2.0.49 - 2026-05-06
🚀 Improvements
- [undefined] - (#9349) by @Molunerfinn
🐛 Bug Fixes
-
[Data source: Main] Prevent crash when fields is undefined during collection loading (#9174) by @saraTabbane
-
[UI templates] Fixed an issue where the popup template list failed to correctly load available templates. (#9332) by @gchust
-
[AI employees] Fix the issue of occasional errors when AI employee use the DeepSeek v4 model (#9348) by @cgyrock
-
[File manager] Improved preview file download error handling (#9103) by @gaston98765
-
[Workflow: Approval] Fix the issue where filter and other query parameters now work in API of listing available approval workflows by @mytharcher
v2.0.48 - 2026-05-04
🐛 Bug Fixes
-
[AI employees] Fix the issue where the action button AI employee list displays developer employees (#9320) by @cgyrock
-
[Workflow: Approval]
-
Fix the issue where file in original application no reloaded by @mytharcher
-
Support to parse some client variables in approval actions by @mytharcher
-
v2.0.47 - 2026-05-01
🎉 New Features
- [AI employees] LLM provider now supports the Xiaomi MIMO platform (#9315) by @cgyrock
🚀 Improvements
-
[flow-engine] Improve block drag layout behavior on v2 pages (#9264) by @zhangzhonghe
-
[AI employees] AI employee category adjustment (#9274) by @cgyrock
-
[Workflow: Approval] Mark association show mode loading from DB as legacy by @mytharcher
🐛 Bug Fixes
-
[database] Fixed an issue where SQL Server external data source datetime filters could fail (#9272) by @2013xile
-
[client]
-
Preserve null values for empty Data scope variable dependencies in v2 forms. (#9287) by @jiannx
-
rerun JS column rendering when row data changes (#9282) by @jiannx
-
Fix the issue where filter form fields disappear after reopening a popup record selector (#9211) by @zhangzhonghe
-
Fixed an issue where JS field cells in v2 table blocks could appear blank after filtering or refreshing table data. (#9285) by @jiannx
-
-
[flow-engine] Fixed an issue where system-hidden fields could be selected in form-related variable. (#9302) by @gchust
-
[Action: Import records] Fix the issue where failed row index in importing records is not correct (#9277) by @mytharcher
-
[Block: Gantt] Add a Gantt block setting to enable drag to reschedule. (#9301) by @jiannx
-
[AI employees] Fix AI employee deepSeek V4 integration error (#9275) by @cgyrock
-
[Action: Export records Pro] Fix the issue where auto mode not works by @mytharcher
-
[Workflow: Approval]
-
Fix type error by @mytharcher
-
Fix approval execute timing so
latestExecutionIdis synced after approval commit by @mytharcher
-
v2.0.46 - 2026-04-28
🐛 Bug Fixes
-
[client]
-
[Authentication] Fixed old sessions remaining active after a password change (#9261) by @2013xile
-
[Data source: External MariaDB] Fix test case failed because module importing not correct by @mytharcher
v2.0.45 - 2026-04-27
🚀 Improvements
- [Workflow: JavaScript] Upgrade Docker images, CI workflows, and the workflow JavaScript sandbox dependency for Node.js 22 compatibility. (#9245) by @Molunerfinn
🐛 Bug Fixes
-
[AI employees] Fixed the issue where variables in the system prompt of AI employees did not take effect (#9256) by @cgyrock
-
[License settings] update license save success message (#9251) by @jiannx
-
[Action: Import records] Fix the issue where import xlsx failed and throw no header matched error (#9253) by @mytharcher
-
[Action: Import records Pro] Fix the issue where import xlsx failed and throw no header matched error by @mytharcher
-
[AI: Knowledge base] Fix issue where deleting knowledge base documents did not delete associated vector data by @cgyrock
v2.0.44 - 2026-04-26
🚀 Improvements
- [AI employees] Remove the recommended model in the LLM service configuration (#9228) by @cgyrock
🐛 Bug Fixes
- [client] relationship field hidden sort switch (#9220) by @jiannx
v2.0.43 - 2026-04-24
🚀 Improvements
-
[Workflow] Improve execution list performance (#9214) by @mytharcher
-
[Workflow: Approval] Add indexes on approval records columns to improve performance on list and submit actions by @mytharcher
🐛 Bug Fixes
-
[database] Fixed an issue where decimal fields with validation could reject valid numeric input (#9204) by @2013xile
-
[Users] Fixed dynamically configured fields in Edit profile not loading the latest user data (#9205) by @2013xile
-
[AI employees] Fix the issue of missing URL field values for attachments in AI employee form selections. (#9216) by @cgyrock
-
[Data source manager] Fixed an issue where grouped sorting on external data source sort fields could not be cleared (#9203) by @2013xile
v2.0.42 - 2026-04-23
🚀 Improvements
-
[build] Knowledge base supports batch uploading files via ZIP (#9206) by @cgyrock
-
[AI: Knowledge base] Knowledge base supports batch uploading files via ZIP by @cgyrock
🐛 Bug Fixes
-
[data-source-manager] Fixed nullable field sync (#9189) by @2013xile
-
[client] Fixed popup relation blocks and popup record variables using the wrong record identifier when collections use a non-primary unique key (#9191) by @2013xile
-
[AI employees] Fix issue where AI employees cannot fill relation field values in forms. (#9182) by @cgyrock
-
[Multi-space] Fixed the error of not finding collection in space permission verification by @jiannx
-
[Workflow: Approval] Fix approval reassignee search to query users beyond the first 200 candidates by @zhangzhonghe
v2.0.41 - 2026-04-22
🎉 New Features
-
[Auth: OIDC] mapping attribute support custom fields by @chenzhizdt
-
[DingTalk] DingTalk: notifications, in-DingTalk auto login, and user sync. by @chenzhizdt
🚀 Improvements
-
[ai] AI employee and knowledge base now support additional file types for upload (.xlsx, .xls, .csv, .md, .json) (#9172) by @cgyrock
-
[undefined] Add Arabic translation for guide section and navigation (#9141) by @saraTabbane
🐛 Bug Fixes
-
[data-source-manager] Fix for percentage fields being reset to numeric when resynchronizing external data sources (#9178) by @jiannx
-
[client]
-
[Departments] Fixed an issue where repeated department synchronization could not update department sort order (#9173) by @2013xile
-
[Data source: Main] Fixed field sync from database for connected views when the collection name differs from the database view name (#9155) by @2013xile
-
[Workflow: JavaScript] Fix security issue of script executing in
node:vmmode (#9084) by @mytharcher -
[AI: Knowledge base] Fix issue where vector database is not synced when deleting knowledge base documents. by @cgyrock
-
[WeCom] Fixed missing department order when synchronizing departments from WeCom by @2013xile
v2.0.40 - 2026-04-20
🐛 Bug Fixes
-
[client] Fixed an issue where updating sub-table values through field assignment would result in data contamination. (#9163) by @gchust
-
[data-source-manager] Fixed an issue where sequence fields could be changed to string after database synchronization (#9143) by @2013xile
-
[File manager] Return null when preview URL is missing (#9104) by @gaston98765
-
[Workflow: JavaScript] Fix security issue of script executing in
node:vmmode (#9084) by @mytharcher -
[Departments]
v2.0.39 - 2026-04-18
🚀 Improvements
- [Departments] Display the
parentIdforeign key field of department collection in the UI (#9130) by @2013xile
🐛 Bug Fixes
-
[data-source-manager] Fixed file collection field sync removing
previewfield (#9129) by @2013xile -
[client]
-
[database] Fixed SQL injection risks in recursive tree eager loading and scoped sort initialization (#9133) by @2013xile
-
[Data visualization] Fixed chart block sorting to use aliased measures and dimensions in aggregated queries (#9131) by @2013xile
-
[Collection: SQL] Fixed missing SQL validation on SQL collection updates (#9134) by @2013xile
v2.0.38 - 2026-04-16
🎉 New Features
- [AI employees] Improve AI employees' ability to parse uploaded documents (#9126) by @cgyrock
🚀 Improvements
-
[logger] Add
refererinformation to request logs (#9110) by @2013xile -
[undefined] Sync translated environment-variable and cluster-mode docs with the latest Chinese updates. (#9115) by @mytharcher
-
[AI employees] After AI employee block selection, fill form attachment into upload area (#9127) by @cgyrock
-
[Workflow: Manual node] Use
simplePaginationon workflow tasks related collections for better list performance (#9117) by @mytharcher -
[Workflow: Approval] Use
simplePaginationonapprovalsandapprovalRecordscollection for better list performance by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Notification: In-app message] Fix the issue where receiver select component works not correctly (#9123) by @mytharcher
-
[AI employees] Fix the issue where the baseURL settings of google-gen-ai's LLM service does not take effect (#9107) by @cgyrock
-
[Email manager] Remove form closing prompt after email is sent successfully by @jiannx
v2.0.37 - 2026-04-14
🚀 Improvements
-
[undefined]
-
[client] add form required verification switch (#9060) by @jiannx
🐛 Bug Fixes
- [utils] Add security control for server HTTP request sending, to avoid possible SSRF (#9079) by @mytharcher Reference: Environment variables
v2.0.36 - 2026-04-10
🐛 Bug Fixes
-
[client] fix subtable adds many-to-many field error (#9070) by @jiannx
-
[flow-engine] Fixed the problem that many-to-one fields from external data sources cannot be added in the table block (#9068) by @jiannx
-
[Notification manager] Optimize in-app notification sending performance in workflow scenarios (#9066) by @mytharcher
v2.0.35 - 2026-04-09
🐛 Bug Fixes
-
[client] Fixed an issue where the record pickup popup from a sub-table’s selection button could not correctly resolve parent item variable values. (#8996) by @gchust
-
[Collection field: Code] Correct the UI interface of the code fields (#9061) by @2013xile
v2.0.34 - 2026-04-08
🎉 New Features
- [Migration manager] support migration command by @chenos
v2.0.33 - 2026-04-08
🎉 New Features
- [AI employees] Add an LLIM-based web search tool for AI employees (#9032) by @cgyrock
🐛 Bug Fixes
-
[client]
-
[data-source-manager] Fixed an issue where some field types were not updated correctly after syncing fields from the database (#9046) by @2013xile
-
[AI employees] Fix AI employee document upload failure under subpath access with APP_PUBLIC_PATH configured. (#9034) by @cgyrock
v2.0.32 - 2026-04-04
🚀 Improvements
- [undefined] Add table of contents to README (#8878) by @gaston98765
🐛 Bug Fixes
-
[client]
-
[server] Add serving check to avoid app status updated by non-serving instance (#8959) by @mytharcher
-
[AI employees]
-
[Workflow: HTTP request node] Sanitized workflow request node results to avoid exposing request config, defaulted new nodes to return response data only, and added debug logging for failed requests. (#9024) by @mytharcher
-
[Collection field: Sort] fix(field-sort): prevent crash when scopeKey attribute is undefined (#9019) by @gaston98765
-
[Block: GridCard] Fixed the problem that the button is not refreshed when the grid card is refreshed (#9021) by @jiannx
-
[Workflow: Approval]
-
Add fault-tolerant on workflow deleted, to avoid load error in tasks list by @mytharcher
-
Add fault-tolerant for no
latestRoundby @mytharcher
-
v2.0.31 - 2026-04-01
🚀 Improvements
-
[AI employees] Optimize prompts for deepseek when handling unsupported file types (#9003) by @cgyrock
-
[Workflow] Change enabled switch size to small (#9010) by @mytharcher
🐛 Bug Fixes
-
[client] Fixed the issue where the copy of the associated fields in the table was not displayed correctly in the first rendering. (#9007) by @jiannx
-
[flow-engine] Fix clipped settings menus in popup (#9005) by @gchust
-
[Notification: In-app message] Fix action whitelist for in-app message updates to prevent unauthorized updates by non-owners. (#9001) by @mytharcher
-
[AI employees] Fixed the issue of abnormal web search behavior when using the Qwen LLM (#9012) by @cgyrock
v2.0.30 - 2026-03-30
🚀 Improvements
- [Workflow: JavaScript] Add
isolated-vmas default JavaScript execute engine for JavaScript node (#8973) by @mytharcher Reference: JavaScript Node
🐛 Bug Fixes
-
[client] Fixed incorrect secondary confirmation message when closing multi-level popup after modifying form data. (#8944) by @gchust
-
[Workflow: SQL node] Fix security issue in SQL node (#8989) by @mytharcher
-
[AI employees] Add ownership verification to the AI conversation API (#8993) by @cgyrock
-
[Workflow: Approval] Fix version limit of legacy migrations to avoid error thrown when start in latest version deployment by @mytharcher
v2.0.29 - 2026-03-29
🚀 Improvements
- [undefined] Reduced log noise during server startup by silencing unzip commands for LibreOffice and Oracle Instant Client (#8984) by @Rishabh1925
🐛 Bug Fixes
-
[client] Fix the issue where space in variable expression cause label not display (#8988) by @mytharcher
-
[flow-engine] Fixed an issue where menu items could not be selected when the UI component width in the configuration state was too small. (#8954) by @gchust
-
[Data visualization] When using variable-based filters, charts fail to resolve variable values correctly on the initial render (#8964) by @2013xile
v2.0.28 - 2026-03-27
🐛 Bug Fixes
-
[Action: Import records] fixed the problem of import failure after opening plugin-space (#8968) by @jiannx
-
[Data visualization] fixed the abnormal data statistics of the root role chart after enabling the space plugin (#8969) by @jiannx
-
[Workflow: JavaScript] Fix security issues (#8967) by @mytharcher
-
[AI employees] Adjust the gap between the tool card components in the AI Conversation (#8965) by @cgyrock
-
[Action: Export records] Limit import and export configuration of multi-layer related fields (#8893) by @jiannx
-
[Action: Import records Pro] limit import and export configuration of multi-layer related fields by @jiannx
v2.0.27 - 2026-03-26
🚀 Improvements
-
[Workflow] Add variable for page size parameter (#8951) by @mytharcher
-
[Workflow: Subflow] Add defensive logic to avoid workflow hangs when exception occurs by @mytharcher
🐛 Bug Fixes
-
[client] Fixed the exception when adding child nodes to the tree table in the pop-up window (#8872) by @jiannx
-
[server] Avoid to handle sync-message after app stopped (#8940) by @mytharcher
-
[Flow engine] Remove legacy event copied from uiSchema repository to avoid error thrown when triggering (#8957) by @mytharcher
-
[Authentication] fix acl to support custom state filtering parameters (#8918) by @jiannx
-
[Email manager] Fixed signature being overwritten when using templates by @jiannx
v2.0.26 - 2026-03-25
🚀 Improvements
- [client] Optimize the horizontal layout of form actions (#8869) by @jiannx
🐛 Bug Fixes
-
[flow-engine] Synchronize status to field configuration when form field is deleted (#8857) by @jiannx
-
[Custom variables] skip auth notify (#8942) by @chenos
v2.0.25 - 2026-03-24
🚀 Improvements
- [Workflow: Approval] Fix JSON field caused performance issue when loading approval records list by @mytharcher
🐛 Bug Fixes
-
[server] Change close timing of Pub-Sub to
beforeStop, to avoid message sent or handled after database closed (#8934) by @mytharcher -
[Localization] prevent localizationTexts:missing request on permission denial (#8903) by @chenos
-
[Data source: External Oracle] Fix an error that occurs when loading the Oracle external data source by @2013xile
v2.0.24 - 2026-03-22
🐛 Bug Fixes
-
[resourcer] Fix an issue where external data sources fail to load correctly. (#8929) by @2013xile
-
[Action: Import records Pro] Fix the issue where option of "Trigger workflow" not works when not checked by @mytharcher
v2.0.23 - 2026-03-20
🐛 Bug Fixes
-
[database] Use warning instead of error when any of appends parameters invalid (#8923) by @mytharcher
-
[Workflow: Approval] Fix translation, node selection, and return target issues in the v2 approval form return button by @zhangzhonghe
v2.0.22 - 2026-03-20
🐛 Bug Fixes
- [Migration manager] Fixed the issue where the migration is interrupted due to an error caused by the target environment not having the new table created during the upload migration process. by @Andrew1989Y
v2.0.21 - 2026-03-20
🚀 Improvements
-
[Workflow] Add filter executions list (#8914) by @mytharcher
-
[Workflow: Approval] Avoid to configure approvers' UI when no collection configured in trigger by @mytharcher
🐛 Bug Fixes
-
[resourcer] Prevent the
filterByTkparameter array from being automatically converted into an object when it exceeds 100 items (#8908) by @2013xile -
[client] fix the issue where non-administrators cannot clear associated field values (#8904) by @jiannx
-
[Action: Import records Pro]
-
Fix the issue where error thrown when import in sync mode by @mytharcher
-
Fix the issue where columns more than ~30 cause importing error, due to stream has been read duplicately by @mytharcher
-
-
[Workflow: Approval] Fix concurrency issue when add assignee by @mytharcher
v2.0.20 - 2026-03-19
🐛 Bug Fixes
-
[server] Fix the issue where lifecycle events sent by worker cause serving app stops (#8906) by @mytharcher
-
[Data source manager] Fixed issue that collection created by AI employee always missing
createByandupdateByfields (#8895) by @cgyrock -
[Action: Import records Pro] Fix lazy import caused SES error by @mytharcher
-
[Template print] Fix sql collection printing error by @jiannx
-
[Email manager] Fixed page error when the email does not exist by @jiannx
v2.0.19 - 2026-03-17
🚀 Improvements
- [Workflow] Fix the issue where gracefully shutdown not drain all events (#8894) by @mytharcher
🐛 Bug Fixes
-
[AI employees] Fix issue with specified URL for LLM service not taking effect in text embedding model calls. (#8892) by @cgyrock
-
[Action: Import records Pro] Fix
beforeStopevent on sub app not fired by @mytharcher
v2.0.18 - 2026-03-17
🎉 New Features
-
[AI employees]
-
[App supervisor] Support filtering in the application list
Add confirmation dialogs for start and stop actions
Sort application status entries by environment name by @2013xile
🚀 Improvements
-
[server] improve pm add logic (#8875) by @chenos
-
[client] Support showing confirm message before closing popup. (#8839) by @gchust
-
[Async task manager] async tasks are added to support workers in post error messages (#8849) by @cgyrock
🐛 Bug Fixes
-
[client] Fixed the issue where the “Select record” popup in the subtable failed to load correctly when opened the second time. (#8865) by @gchust
-
[AI employees] Fixed potential undefined variable errors in AI plugin upgrade migration scripts. (#8883) by @cgyrock
-
[Action: Import records Pro] Fix the issue where async tasks do not end after an error occurs in async import by @cgyrock
v2.0.17 - 2026-03-14
🚀 Improvements
- [undefined] README (#8866) by @gaston98765
🐛 Bug Fixes
-
[client] Fixed the issue where the default values of some fields did not take effect after refreshing the page. (#8834) by @gchust
-
[database] Fix the server-side validation issue for date fields (#8867) by @2013xile
-
[Localization] localizationTexts:missing interface permission exception (#8861) by @jiannx
-
[AI: Knowledge base] Prevent the vector database and vector storage in use from being deleted. by @cgyrock
v2.0.16 - 2026-03-12
🐛 Bug Fixes
-
[client]
-
[UI templates] Fixed the errors occurred when using edit form block and detail block template. (#8859) by @gchust
-
[Form drafts] Fixed the issue where form draft data was lost when the popup was opened multiple times. (#8858) by @gchust
-
[Localization] unfound entries will not be submitted in the non-editing state of the page. (#8841) by @jiannx
-
[Action: Import records Pro] Fixed the issue where multiple selections cannot be made for duplicate fields in the imported configuration. by @jiannx
v2.0.15 - 2026-03-12
🐛 Bug Fixes
-
[Email manager] reply and reply to all recipient adjustments, fixing table field addition failed and other issues by @jiannx
-
[Migration manager] Fix the issue that system tables cannot be selected in custom rules by @cgyrock
v2.0.14 - 2026-03-11
🚀 Improvements
- [Migration manager] Improved migration checks, SQL download support, log formatting, and execution process visibility by @cgyrock
🐛 Bug Fixes
-
[client]
-
Fix the issue where custom fields in Filter form Field values cannot render the correct value input type (#8823) by @zhangzhonghe
-
Fix the issue where the v2 filter form collapse button stops working after sorting fields (#8843) by @zhangzhonghe
-
Fixed the issue where the reference template (v1) management page was missing filter and refresh action. (#8833) by @gchust
-
sub form & sub table data not displayed due to permission check (#8846) by @chenos
-
-
[Access control] use collection.filterTargetKey instead of Model.primaryKeyField (#8853) by @chenos
-
[UI templates]
-
[Workflow: Approval]
-
Fix the issue where assignees not follow the order configured in the node by @mytharcher
-
Fix untranslated labels in approval processing details by @zhangzhonghe
-
-
[Migration manager]
-
Fix build error by @mytharcher
-
Fix missing migration description and set the current time as the default by @cgyrock
-
Fixed a potential process freeze caused by logging excessively large SQL statements included in migration error exceptions by @cgyrock
-
Adjust temporary directory into storage, to support usage under cluster mode by @mytharcher
-
v2.0.13 - 2026-03-10
🎉 New Features
- [client] Support trigger workflow button to configure after success flow (#8726) by @mytharcher
🚀 Improvements
-
[Workflow] Show all node types in adding menu even not available (#8828) by @mytharcher
-
[AI: Knowledge base] Refactored knowledge base document loading logic. by @cgyrock
🐛 Bug Fixes
-
[client]
-
[Office File Previewer] Change modal height to a proper value to show more content of file (#8835) by @mytharcher
-
[UI templates] Fixed the issue where the reference block event flow in the table block could not be configured with a row click event flow. (#8814) by @gchust
v2.0.12 - 2026-03-09
🚀 Improvements
-
[Redis lock adapter] Refactor due to API of LockManger changed in main repository by @mytharcher
-
[Backup manager] Add lock for scheduled backing-up across cluster nodes by @mytharcher
🐛 Bug Fixes
-
[client]
-
[lock-manager] Fix racing condition issue of lock manager (#8734) by @mytharcher
-
[server] Fixed the error issue in data queries of non-database data sources (#8776) by @cgyrock
-
[Access control] Fixed Restful API data source data modification error. (#8788) by @cgyrock
-
[Action: Export records] fixed issue that belongsToArray field is blank in exported excel (#8787) by @cgyrock
v2.0.11 - 2026-03-06
🎉 New Features
- [Workflow: Custom action event] Support custom context data for passing variables to custom action trigger in sub-flow (#8758) by @mytharcher
🚀 Improvements
-
[client] Show a prompt message when no data is available for the Edit Form block or the Details block. (#8790) by @gchust
-
[flow-engine] Fixed an issue where new runjs code would parse variable expressions before execution. (#8762) by @gchust
🐛 Bug Fixes
-
[client]
-
Fix popup link navigation being reverted after view close (#8752) by @zhangzhonghe
-
Disabled adding blocks for many-to-many (array) associatied records to prevent errors. (#8779) by @gchust
-
Fixed an issue where the original data block did not refresh after editing data in the association field popup. (#8782) by @gchust
-
Fix tab clipping and ensure minimum tab width in design mode (#8771) by @zhangzhonghe
-
Fix validation for linkage-hidden required fields in config mode (#8773) by @zhangzhonghe
-
Fix delayed UI updates for subtable column hide toggle and consecutive column deletion (#8755) by @zhangzhonghe
-
fix two required verifications appear in the update record form (#8761) by @jiannx
-
-
[database]
-
[undefined] Fixed an issue where, after upgrading, the system prompted that plugin-block-reference could not be found. (#8757) by @gchust
-
[Action: Export records] Fixed the issue where numeric type fields in excel files displayed as strings (#8774) by @cgyrock
-
[Block: List] Fixed an issue where list block fields could not use the current record variable. (#8784) by @gchust
-
[Workflow] Fix the issue where node drag placeholder incorrectly showing when dragging blocks in approval node (#8763) by @mytharcher
-
[UI templates]
-
[Data source: Main]
-
[AI employees]
-
[Multi-space] Fix the space permission error when creating data with the primary key by @jiannx
v2.0.10 - 2026-03-03
🐛 Bug Fixes
-
[AI employees] Fixed ai employee chat error while knowledge base enabled (#8746) by @cgyrock
-
[Flow engine] fix sql destroy error (#8745) by @chenos
-
[Access control] Database instance used when setting ACL metadata is incorrect (#8747) by @2013xile
-
[Workflow: Approval] Fix the issue where query result not showing caused by nodes filtered by type by @mytharcher
v2.0.9 - 2026-03-02
🐛 Bug Fixes
-
[client]
-
[database] Fix field custom regular check failure in v2 (#8729) by @jiannx
-
[flow-engine] Fixed an issue where ctx.exit could not terminate the execution of user-defined event flows. (#8737) by @gchust
-
[Workflow: Approval] Add missed parameter to avoid associations not updated when submit new approval by @mytharcher
v2.0.8 - 2026-03-01
🎉 New Features
- [AI employees] Update AI chatbox user prompt (#8725) by @heziqiang
🐛 Bug Fixes
-
[server] Resolve cache issue by appending hash to assets (#8730) by @chenos
-
[AI employees] Fixed AI data source configuration rendering issue. (#8731) by @cgyrock
-
[Workflow: Custom action event] Fix the issue where custom action workflow hangs when execute as sub-flow (#8738) by @mytharcher
-
[Workflow: Approval]
-
Sanitize association values in approval actions, to avoid any data manipulation beyond permission by @mytharcher
-
Fix the issue where error throw when execute approval workflow manually by @mytharcher
-
Fix error thrown caused by value of
dataAftermissing when added or delegated by @mytharcher -
Fix the issue where appends parameter filtering by ACL by @mytharcher
-
Fix ACL issue where association value should not be create or update when user has no permission by @mytharcher
-
v2.0.7 - 2026-02-27
🎉 New Features
- [AI employees] Support searching built-in docs with multiple keywords and reading multiple documents in a single tool calling (#8718) by @2013xile
🚀 Improvements
-
[client] support summary configuration for table (#8721) by @chenos
-
[Embed NocoBase] Provide sanitize API to filter association values in action (#8688) by @mytharcher
🐛 Bug Fixes
-
[Data visualization] fix i18n for plugin chart entry text (#8716) by @heziqiang
-
[Workflow: JavaScript] Fix test cases can not pass on windows (#8722) by @mytharcher
-
[AI employees] Resolve issue where AI message renders with length 0 (#8723) by @heziqiang
-
[Template print] Fix the issue where ACL API changed but is not adapted to plugin by @mytharcher
-
[Workflow: Approval] Sanitize association values in approval actions, to avoid any data manipulation beyond permission by @mytharcher
-
[Email manager] Fix image content ID format parsing by @jiannx
v2.0.6 - 2026-02-26
🐛 Bug Fixes
- [AI employees] Fixed AI conversation error when using MySQL database. (#8708) by @cgyrock
v2.0.5 - 2026-02-26
🐛 Bug Fixes
-
[client] In mobile, close the menu first and then perform the page jump (#8699) by @zhangzhonghe
-
[AI LLM: GigaChat] Fixed GigaChat plugin not working in version 2.0. (#8707) by @cgyrock
-
[AI employees]
-
[AI: Knowledge base] Fixed AI knowledge base plugin startup error. by @cgyrock
-
[Email manager] Image rendering error by @jiannx
v2.0.3 - 2026-02-24
🎉 New Features
- [Core] Open source commercial plugins and update license from AGPL-3.0 to Apache-2.0 (#8682) by @chenos
🚀 Improvements
- [AI employees] Update ai employee docs (#8690) by @heziqiang
🐛 Bug Fixes
-
[client]
-
[AI employees] aiTools:list API returns 403 (#8672) by @chenos
-
[Localization] improve handling of missing i18n keys (#8673) by @chenos
v2.0.2 - 2026-02-22
🐛 Bug Fixes
- [Calendar] Fix calendar localization and date formatting issues (#8498) by @sembaev-a-a
v2.0.1 - 2026-02-16
🐛 Bug Fixes
- [AI employees] Fix browser OOM when using AI employee (#8653) by @mytharcher
v2.0.0 - 2026-02-15
NocoBase 2.0 is a major upgrade focused on building complex applications and scaling deployments. This release brings systematic improvements to AI capabilities, application architecture, data editing experience, and frontend event flow, along with full adaptation of V2 pages and core features.
New Features
AI Employees
AI capabilities are now built into the core as a first-class citizen, with extensibility through the plugin system:
- Integrated into the core with plugin-based extensibility
- Upgraded and optimized LangChain dependencies for better stability and scalability
- Simplified AI employee interaction flow, lowering configuration and usage barriers
Reference:
App Supervisor
The App Supervisor plugin provides unified discovery, scheduling, and management of multiple NocoBase application instances, suitable for multi-app and multi-environment deployment scenarios.
- Application auto-discovery and centralized management
- Shared memory mechanism for improved inter-instance collaboration
- Multi-environment hybrid deployment for complex delivery requirements
Shared Memory
Multi-Environment Hybrid Deployment
Reference:
Workflow Canvas Enhancement
Drag-and-Drop Node Reordering
Copy and Paste Nodes
Sub-table (Inline Edit / Popup Edit)
To meet different levels of complexity in related data editing, NocoBase offers two sub-table edit modes:
- Sub-table (Inline Edit): Edit related data directly in the table for efficient operations, ideal for quick data entry and batch updates
- Sub-table (Popup Edit): Edit data via popup forms with support for more complex field types and validation logic, suitable for high-complexity scenarios
Sub-table (Inline Edit)
Sub-table (Popup Edit)
Reference:
Field Assignment
The new field assignment mechanism unifies and enhances initialization and write logic for form data, improving clarity and consistency:
- Unified field assignment configuration entry, reducing the complexity of scattered configuration
- Field assignment logic no longer depends on field component type, making data behavior more stable and predictable
- Support for field-level assignment on relation fields, enabling complex relational data modeling
- Both default value and constant value assignment modes, covering initialization and override scenarios
- Legacy "field default value" is deprecated; please migrate to the new field assignment mechanism
Reference: Field Assignment (documentation coming soon)
Event Flow Execution Order
Event flow runs strictly in the Event → Flow → Step hierarchy, with corresponding hooks triggered before and after each level for fine-grained control and extension.
event:
before:
- track_event_start
flows:
- name: flow1
before:
- track_flow_start
steps:
- name: step1
before: [track_step_start]
run: do_something
after: [track_step_done]
after:
- track_flow_end
- name: flow2
...
- name: flow3
...
after:
- track_event_end
Reference:
Features Adapted to 2.0
Bulk Edit
Reference:
Duplicate
Reference:
Block Height
Reference:
Table Row Drag-and-Drop Sort
Reference:
Data Loading Method
Reference:
Displaying Relation Fields in Forms
Reference:
Page (V2) Localization Support
V2 pages now fully support localization across pages, blocks, actions, and fields.
After enabling the localization plugin, the system automatically collects missing translation entries and displays them in the localization management list for centralized maintenance.
In JS blocks, use ctx.t() to retrieve localized text with variable interpolation:
const label = ctx.t('Your name is {{name}}', {
name: await ctx.getVar('ctx.user.nickname')
});
ctx.render(label);
Approval 2.0
All newly created approval workflows use the 2.0 block-based layout. Existing 1.x configurations remain supported. To switch a 1.x approval to the 2.0 layout, select the v2 version and reconfigure the interface. Note that once switched, it cannot be reverted to 1.x.
Configure Initiator Interface
Configure Approver Interface
CC (Carbon Copy) 2.0
All newly created CC nodes use the 2.0 block-based layout for the recipient's view. Existing 1.x configurations remain supported. To switch a 1.x CC to the 2.0 layout, select the v2 version and reconfigure the interface. Note that once switched, it cannot be reverted to 1.x.
Not Yet Available in 2.0
The following features are not yet available in 2.0 and will be upgraded in future releases:
| Feature | Current Alternative |
|---|---|
| Custom Request | Workflow Request Node |
| Browser Print | JS Action |
| Multi-step Form | JS Block |
| Tree Filter Block | JS Block |
| Calendar Block | JS Block |
| Custom Variable | Event Flow |
| Gantt Block | JS Block |
| Kanban Block | JS Block |
| Text Copy | Event Flow |
| Column Settings | JS Action |
| Style Linkage Rule | Event Flow |
| Copy Text Shortcut | Event Flow |
| QR Code Field | JS Field |
| Scan to Input | Event Flow |
| Embed NocoBase | — |
| China Administrative Region Field | — |
| Code Field | — |
| Public Form | — |
| Workflow Manual Node Todo | — |
| After Successful Submission | Event Flow |
| Data Template | Event Flow |
v1.9.47 - 2026-02-13
🐛 Bug Fixes
-
[client] Fix issue where cleared association attachment field is not saved after submit in edit form (#8616) by @katherinehhh
-
[utils] Fix security issue of
formula.jsevaluator engine (#8416) by @mytharcher -
[Workflow: Approval] Fix the issue where approval data not showing in record detail popup if workflow mode is set to "Before save" by @mytharcher
v1.9.46 - 2026-02-10
🐛 Bug Fixes
-
[client] Fix field component options not refreshed in real time when association field switches pattern (#8611) by @katherinehhh
-
[Data visualization: ECharts] Fix ECharts spelling error by @heziqiang
-
[Workflow: Approval]
-
Fix the issue where values missing from detail popup of "My application" by @mytharcher
-
Fix error thrown when execute on before save mode by @mytharcher
-
v1.9.45 - 2026-02-09
🐛 Bug Fixes
-
[Field component: mask] Fix an issue where the mask field settings popup could not load all user roles correctly. by @gchust
-
[Workflow: Approval] Fix incorrect id to load detail record by @mytharcher
v1.9.44 - 2026-02-08
🎉 New Features
- [Workflow: Approval] Add ACL control for approval APIs by @mytharcher
v1.9.43 - 2026-02-06
🎉 New Features
- [Auth: DingTalk] Allows to bind user with
unionIdby @2013xile
🚀 Improvements
- [Collection field: Markdown(Vditor)] Added a configuration option to set the default edit mode in the component settings. (#8408) by @Cyx649312038
🐛 Bug Fixes
- [Action: Import records] Fix the vulnerability of import action (#8544) by @mytharcher
v1.9.42 - 2026-02-02
🚀 Improvements
- [Auth: DingTalk] Use
useridas the default key for user association, while preserving compatibility with existing authenticators that rely on mobile by @2013xile
🐛 Bug Fixes
-
[Workflow: Approval] Fix performance issue caused by JSON field in list loading (MySQL) by @mytharcher
-
[WeCom] Fix an issue where users cannot be auto-registered when mobile is missing by @2013xile
v1.9.41 - 2026-02-02
🚀 Improvements
- [client] Support disabling redundant default appends params for
ResourceActionProvider(#8527) by @2013xile
🐛 Bug Fixes
-
[Workflow] Add fault-tolerant for collection record select component, to avoid error thrown when collection deleted (#8528) by @mytharcher
-
[File manager] Secure file path for local storage, to avoid access path out of document root (#8539) by @mytharcher
-
[Workflow: Subflow] Fix route path of workflow link by @mytharcher
v1.9.40 - 2026-01-25
🚀 Improvements
- [Office File Previewer] Add more file types for previewing on Microsoft (#8500) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[database]
-
[File manager] Fix the issue where filename get from request body became unexpectedly decoded string (#8481) by @mytharcher
-
[Data source: Main] Fixed an issue where deleting records from a many-to-many association table block did not respect the association field
onDelete: 'restrict'constraint (#8493) by @2013xile -
[Block: iframe] Fix the error when adding aggregated variables to Iframe (#8482) by @zhangzhonghe
-
[Workflow: Webhook] Fix the issue where body data is missing when body parsing not configured by @mytharcher
-
[Template print] Fixed incorrect print button permission logic when roles were unioned. by @jiannx
-
[Workflow: Approval]
-
Fix the issue where concurrency makes execution repeatedly resumed by @mytharcher
-
Fix the issue where return an approval to previous node but returned to start by @mytharcher
-
-
[Migration manager] Fixed a potential process freeze caused by logging excessively large SQL statements included in migration error exceptions by @cgyrock
v1.9.39 - 2026-01-21
🐛 Bug Fixes
-
[server] Fix version of
mathjsin common dependencies (#8475) by @mytharcher -
[client] Fix the issue where the configuration menu does not display in Chrome 144 (#8470) by @zhangzhonghe
-
[Async task manager] Fix the issue where workflow triggered by async import delayed to execute (#8478) by @mytharcher
-
[Action: Import records Pro] Fix the issue where workflow triggered by async import delayed to execute by @mytharcher
v1.9.38 - 2026-01-20
🚀 Improvements
-
[server] Support configuring a CORS origin whitelist (#8454) by @2013xile
-
[Error handler] Sanitize SQL reference errors (#8464) by @2013xile
🐛 Bug Fixes
-
[client]
-
fix issue where collection field group sorting settings did not take effect. (#8453) by @katherinehhh
-
fix issue when editing collection in the graphical interface (#8451) by @katherinehhh
-
Fix the issue where the table "Column Settings" button is non-functional (#8441) by @zhangzhonghe
-
Fix the issue where table row button linkage rules affect the state of buttons within popup forms (#8434) by @zhangzhonghe
-
-
[Mobile (deprecated)] Deprecated mobile plugin (replaced by the ui-layout plugin from version 2.0). (#8456) by @chenos
v1.9.37 - 2026-01-15
🚀 Improvements
-
[evaluators] Update version of math.js to support more functions (#8411) by @mytharcher
-
[Notification: In-app message] Fix performance issue when sending in-app messages to large number of users (#8402) by @mytharcher
🐛 Bug Fixes
-
[client]
-
fix cascading select data not cleared after successful submission in create form (#8403) by @katherinehhh
-
Add fault tolerant for action schema, to avoid page crash when click action button (#8420) by @mytharcher
-
fix issue with submit button where skip required validation does not work when confirmation is enabled (#8400) by @katherinehhh
-
-
[Collection field: Many to many (array)] Fix error when appending second-level many-to-many(array) relations in association queries (#8406) by @cgyrock
-
[Workflow] Fix the issue where schema ID is not updated in duplicated node (#8396) by @mytharcher
v1.9.36 - 2026-01-10
🚀 Improvements
- [client] Improve plugin manager list render performance by changing to native webkit css for text ellipsis (#8391) by @mytharcher
🐛 Bug Fixes
-
[File manager] Fix the issue where file URL generated incorrectly for files uploaded to S3 storage (#8392) by @mytharcher
-
[File storage: S3(Pro)] Fix the issue where file renaming mode not works by @mytharcher
-
[Workflow: Approval] Fix value block not displays caused by missing
ValueBlock.Resultcomponent by @mytharcher
v1.9.35 - 2026-01-09
🚀 Improvements
- [Workflow: Approval] Simplify parameters in query, and improve performance by @mytharcher
🐛 Bug Fixes
- [Workflow: Webhook] Fix the issue where 404 error thrown when post to webhook URL in sub-app by @mytharcher
v1.9.34 - 2026-01-09
🚀 Improvements
- [Access control] Improve permission checks when modifying nested association fields (#7856) by @2013xile
🐛 Bug Fixes
-
[client]
-
[logger] Fix extra error information being discarded when printing system logs (#8367) by @cgyrock
-
[Workflow: Loop node] Fix the issue where failed node in condition branch cannot pass status to upper branching node (#8360) by @mytharcher
-
[Data source: Main] View collection metadata should include source field options (#8337) by @2013xile
-
[Workflow]
-
[Action: Import records] Fix incorrect error message when a unique constraint error is triggered during async XLSX import (#8342) by @cgyrock
-
[Access control]
-
[Data source: REST API] Add fault-tolerant for request context, to avoid error thrown when method is not in context by @mytharcher
-
[Action: Export records Pro] Fix error when sub-applications execute async import/export tasks while the main application does not enable the import/export pro plugin by @cgyrock
-
[Workflow: Approval] Fix the issue where filter fields not work correctly in tasks center by @mytharcher
v1.9.33 - 2026-01-04
🎉 New Features
-
[client] Support plugin-defined maintenance components when the app enters maintenance status (#8252) by @cgyrock
-
[File manager] Support file renaming method configuration (#8231) by @JAVA-LW
-
[File storage: S3(Pro)] Add rename mode option for S3 Pro storage by @mytharcher
🚀 Improvements
- [Migration manager] Improved migration checks, SQL download support, log formatting, and execution process visibility by @cgyrock
🐛 Bug Fixes
-
[database]
-
[client] Fix the issue where error thrown in in filter form block settings of m2m field (#8282) by @mytharcher
-
[Async task manager] Fix language of canceling background task (#8245) by @mytharcher
-
[File manager] Fix the issue where error thrown when upload file larger than 5MB to AWS S3 (#8275) by @mytharcher
-
[Workflow] Fixed database events becoming invalid after refreshing the external data source (#8207) by @cgyrock
-
[Collection: Tree] Update paths after bulk creating tree collection nodes (#8267) by @2013xile
-
[Data source: External PostgreSQL] Fixed database events becoming invalid after refreshing the external data source by @cgyrock
-
[Data source: External Oracle] Fixed database events becoming invalid after refreshing the external data source by @cgyrock
v1.9.32 - 2025-12-24
🎉 New Features
- [Workflow] Add new system variables in workflow, including
instanceIdandgenSnowflakeId()(#8223) by @mytharcher
🐛 Bug Fixes
-
[client] Fix stack overflow caused by infinite loop in display association fields lazy loading (#8262) by @zhangzhonghe
-
[Action: Import records] Fix the issue where row index in error message is always 1 when error thrown in import action (#8244) by @mytharcher
-
[Workflow: Manual node] Fix the issue where error thrown when cancel execution of deleted workflow (#8258) by @mytharcher
-
[Collection field: Sequence] Fixed an error when the field-sequence repair command encounters a non-existent collection in the current environment. (#8251) by @cgyrock
-
[Action: Import records Pro] Fix unique check logic which will throw error when the value of unique field is null by @mytharcher
-
[Workflow: Approval] Fix duplicated rollback of same transaction by @mytharcher
v1.9.31 - 2025-12-22
🚀 Improvements
-
[Async task manager] Improved error handling during cleanup tasks by adding exception-catching mechanisms to prevent application crashes (#8215) by @mytharcher
-
[Workflow] Add original workflow instance to duplicate API (#8225) by @mytharcher
🐛 Bug Fixes
-
[client] Handle empty linkage rules to prevent errors (#8239) by @zhangzhonghe
-
[Departments] Fix an issue where aggregate search cannot locate users (#8222) by @2013xile
v1.9.30 - 2025-12-19
🚀 Improvements
- [Workflow] Improve description of
changedfield in collection event (#8216) by @mytharcher
🐛 Bug Fixes
-
[cli] license-kit is compatible with the case where DB_PASSWORD is empty (#8220) by @jiannx
-
[database] Fix date field query inconsistency between main and external data sources (#8181) by @cgyrock
-
[License settings] Fix the abnormal display of the licensed plugin (#8214) by @jiannx
-
[Workflow: Approval]
-
Fix the issue where approving makes association to creating new record by @mytharcher
-
Fix the issue where approving makes to-many association to creating new records by @mytharcher
-
v1.9.29 - 2025-12-18
🐛 Bug Fixes
-
[Workflow] Fix the issue where error thrown when delete workflow version which is not current (#8203) by @mytharcher
-
[Migration manager] Fix missing migration description and set the current time as the default by @cgyrock
v1.9.27 - 2025-12-17
🚀 Improvements
-
[server] Add fault tolerance when missing app instances cause errors while fetching app maintaining messages (#8196) by @2013xile
-
[Error handler] Do not expose raw database error messages on SQL syntax errors, to avoid revealing the database type (#8195) by @2013xile
-
[Workflow] Support to use legacy config to create new in duplicated workflow (#8165) by @mytharcher
🐛 Bug Fixes
-
[Workflow] Fix the issue where the only one record show in record list to be manually execute (#8187) by @mytharcher
-
[Collection: Connect to foreign data (FDW)] Fix trigger errors when connecting to tables with uppercase names by @2013xile
-
[Workflow: Approval] Fix the issue where status of unrelated approval records are incorrectly changed to
UNPROCESSEDby approve action by @mytharcher
v1.9.26 - 2025-12-16
🚀 Improvements
-
[acl] Support
acl.registerSnippetAPI to merge snippet configuration (#8155) by @mytharcher -
[Access control] Disallow assigning the root role to users (#8180) by @2013xile
🐛 Bug Fixes
-
[License settings]
-
[File manager] Fix the issue where previewing
.txtfile on OSS got wrong charset (#8161) by @mytharcher -
[Action: Import records] Synchronously wait for the
afterCreateevents triggered by the import to finish. (#8158) by @2013xile -
[Collection: Connect to foreign data (FDW)] Fix issue where loading fails for tables with uppercase names by @2013xile
-
[Data source: External SQL Server] Fix issues where the
encryptandtrustServerCertificateoptions are not available by @2013xile
v1.9.25 - 2025-12-12
🚀 Improvements
- [Workflow]
🐛 Bug Fixes
-
[acl] Fix the issue where the API
acl.canreturnnullwhen role isroot(#8150) by @mytharcher -
[Workflow: Manual node] Fix the issue manual todo list is using incorrect API (#8144) by @mytharcher
-
[HTTP request encryption] Use brackets for array format in qs parsing by @chenos
-
[Workflow: Approval] Fix the issue where error thrown when cancel a execution when its workflow is deleted by @mytharcher
-
[Migration manager] Fix an issue where line breaks in data were lost during migration. by @cgyrock
v1.9.24 - 2025-12-09
🐛 Bug Fixes
-
[client] Fix the issue where
RemoteSelectcomponent incorrectly loading record when value is null (#8137) by @mytharcher -
[Collection field: Sequence] Improve the robustness of the plugin-field-sequence when handling the repair command (#8139) by @cgyrock
-
[Notification: Email] fix email notification connection limitation (#8119) by @jiannx
v1.9.23 - 2025-12-09
🚀 Improvements
-
[auth] Fix CVE-2025-13877 (#8128) by @2013xile
-
[Action: Import records] allow selecting ID for import fields (#8132) by @katherinehhh
🐛 Bug Fixes
- [server] Fixed an issue where triggered workflows were not added to the processing queue after importing data, ensuring that workflows run as expected immediately post-import (#8121) by @mytharcher
v1.9.21 - 2025-12-06
🚀 Improvements
- [Audit logs] Update the unique identifier field to
textto prevent identifier length overflow during bulk edits by @2013xile
🐛 Bug Fixes
- [Workflow: Approval] Fix the issue where no data when loading related approvals with ACL scope variables by @mytharcher
v1.9.20 - 2025-12-05
🎉 New Features
- [Collection field: Sequence] Automatically update sequence fields after data migration (#8063) by @cgyrock
🚀 Improvements
- [Migration manager] Automatically update sequence fields after data migration by @cgyrock
🐛 Bug Fixes
-
[Workflow] Fix the issue where error thrown in execution canvas when node is deleted (#8090) by @mytharcher
-
[Workflow: Approval] Fix the issue where error thrown when load related approval in union only role mode by @mytharcher
v1.9.19 - 2025-12-04
🐛 Bug Fixes
- [Workflow: Approval]
-
Fix the issue when list approvals OOM happens by @mytharcher
-
Fix the issue where the approver pop-up window does not display a title by @zhangzhonghe
-
v1.9.18 - 2025-12-03
🐛 Bug Fixes
-
[Action: Import records] Imported fields do not match the fields set in ACLsettings (#8075) by @2013xile
-
[Workflow] Fix the issue where execution page throw error when jobs on node is undefined (#8066) by @mytharcher
-
[Access control] Add middleware for permission checks on association operations for external data source (#8062) by @2013xile
-
[Workflow: Approval]
-
Fix the issue of permission error thrown when load record related approvals on detail drawer by @mytharcher
-
Fix the issue where approval records are not included in job result in return branch by @mytharcher
-
Fix the issue where process is incorrect when branching with order and countersign by @mytharcher
-
v1.9.17 - 2025-12-02
🐛 Bug Fixes
-
[client] Fix the flickering issue of the linkage rule dropdown select box (#8018) by @zhangzhonghe
-
[acl] Fix an issue where ACL meta info is incorrect when external data-source permission scopes use current-user related variables (#8013) by @2013xile
-
[Theme editor] Enable theme switcher on mobile devices (#8046) by @zhangzhonghe
-
[Multi-app manager] Log level settings not applied to sub applications (#8045) by @2013xile
v1.9.16 - 2025-12-01
🎉 New Features
- [Data source: REST API] add
error message transformeroptions in restful api data source configuration by @cgyrock
🚀 Improvements
-
[client]
-
[Workflow] Add "main" data source context for UserSelect, in order to provide a more common component which could be used in other place (#8010) by @mytharcher
-
[Workflow: Approval] Use common component to reduce duplicated code by @mytharcher
🐛 Bug Fixes
-
[client] Fix lazy load bug in Variable.Input, which will cause variable options menu re-render incorrectly (#8009) by @mytharcher
-
[Action: Import records] Fix the issue where error thrown when field in importing xlsx has
nullvalue (#8037) by @mytharcher -
[Workflow] Fix the issue where queue closed before messages publishing (#8003) by @mytharcher
-
[Workflow: Subflow] Fix the issue workflow selected displaying "N/A" when workflow count is larger than 200 by @mytharcher
-
[Workflow: Approval]
-
Fix permission issue when get
approvalRecords.reassigneedue toRemoteSelectchanged by @mytharcher -
Fix the issue where print action not works when refresh page with modal opened by @mytharcher
-
v1.9.15 - 2025-11-28
🐛 Bug Fixes
-
[client]
-
[Departments] Fix the issue where department associated fields could not be edited (#7462) by @heziqiang
-
[Collection: Tree] Fix path table update failures caused by incorrect tree parent-field lookup (#8000) by @2013xile
-
[Collection field: Many to many (array)] Fixed the issue where the m2m array field in the subtable could not be updated (#7998) by @cgyrock
-
[Workflow: Approval]
-
Fix no applicant data in context of execution after user re-submitted by @mytharcher
-
Fix the issue where comment in job result is null after user submit approval with comment by @mytharcher
-
v1.9.14 - 2025-11-26
🎉 New Features
- [Auth: OIDC] Support automatic redirection to the SSO URL when unauthenticated by @heziqiang
🚀 Improvements
-
[client] Use triple brackets (
{{{and}}}) for variables in message content, to avoid variables been escaped by Handlebars (#7972) by @mytharcher -
[Collection field: Markdown(Vditor)] adjust vditor fullscreen content width (#7974) by @katherinehhh
🐛 Bug Fixes
-
[database] Fix: remove UTC processing in time conversion for time-only fields to prevent timezone-induced shifts. (#7812) by @ChimingLiu
-
[client] fix remote remote select not showing correct label for non-object value (#7975) by @katherinehhh
-
[Workflow]
-
Fix the issue where prepared executions not send to queue before stop (#7981) by @mytharcher
-
Fix the issue where task link to error page (#7983) by @mytharcher
-
Fix the issue where some workflow tasks menu not displaying (#7980) by @mytharcher
-
Fix tasks count not showing caused by provider misused (#7968) by @mytharcher
-
-
[Workflow: Manual node] Fix the issue where manual tasks count is not correct (#7984) by @mytharcher
-
[Data visualization]
-
[Data source manager] Fixed data source password updating failure when database password is changed (#7977) by @cgyrock
-
[Action: Import records] Fixed the issue when importing data in tree table (#7976) by @cgyrock
v1.9.13 - 2025-11-25
🐛 Bug Fixes
- [client] Fix routing issues when using an Iframe (#7957) by @zhangzhonghe
v1.9.12 - 2025-11-24
🚀 Improvements
-
[client] Add loading state for update record and destroy record action button, avoid duplicated requests (#7964) by @mytharcher
-
[Async task manager] Enhanced error messages for asynchronous tasks to provide users with specific reasons for task failures (#7796) by @mytharcher
-
[Action: Import records Pro] Enhanced error messages for asynchronous tasks to provide users with specific reasons for task failures by @mytharcher
-
[Workflow: Approval]
-
Fix variable select in AssigneeSelect, limit only PK or FK of users collection could be selected by @mytharcher
-
Reduce associations to load in approval popup, to provide better performance by @mytharcher
-
Make payload of manually executing (or triggering by sub-flow node) compatible with record or primary key. Avoid consistency issue in trigger context. by @mytharcher
-
🐛 Bug Fixes
-
[Async task manager] Add migration rule for
asyncTaskscollection, avoid async tasks records to be migrated (#7950) by @mytharcher -
[Workflow: Approval] Fix language file by @mytharcher
v1.9.11 - 2025-11-21
🐛 Bug Fixes
-
[client] Fix field interface showing many-to-one instead of one-to-one for belongsTo in external data source configuration (#7936) by @cgyrock
-
[Workflow] Fixed the issue where updating the task count would unintentionally reset the state of forms being filled out (#7937) by @mytharcher
-
[Collection field: Many to many (array)] Fix M2M (array) field issues when creating/updating related data (#7926) by @cgyrock
v1.9.10 - 2025-11-20
🚀 Improvements
-
[Access control] Reduce the default permissions for the member role (#7921) by @2013xile
-
[Data visualization] Added Russian language support for plugin interfaces. (#7676) by @sembaev-a-a
-
[Workflow: Webhook] Add icon for response node type by @mytharcher
🐛 Bug Fixes
-
[client] Fix error: Can't resolve 'antd-mobile' and Can't resolve 'antd-mobile-icons' (#7914) by @zhangzhonghe
-
[Access control] Support data-scope restrictions for association operations. (#7919) by @2013xile
-
[Data source: Main] Fix the issue where a newly added one-to-many field cannot be selected as a foreign key before restarting the application. (#7907) by @cgyrock
v1.9.8 - 2025-11-18
🐛 Bug Fixes
-
[Workflow: Custom action event] Fix the error caused by listening to non-existent external data source events by @mytharcher
-
[Template print] parse the variables in the filter by @jiannx
-
[Workflow: Approval] Fix an issue where race conditions occurring during concurrent approval processing by multiple approvers could cause a workflow node to execute more than once by @mytharcher
v1.9.7 - 2025-11-17
🐛 Bug Fixes
-
[client] Fix the issue where the linkage rule for the approval form is not working (#7858) by @zhangzhonghe
-
[server] Fix an issue in service-splitting mode where unsubscribed queue messages could not be published (#7875) by @mytharcher
-
[Workflow]
-
[Workflow: Manual node] Fix namespace of locale language should use, to show correct content of translation (#7877) by @mytharcher
-
[Access control] Issue of association operation snippets are not taking effects (#7876) by @2013xile
-
[Workflow: Approval]
-
Fix the issue where the page size of loading notification channel is not big enough, and cause the list is not completed loaded by @mytharcher
-
Fix the issue where the linkage rule for the approval form is not working by @zhangzhonghe
-
Fix the date format on the approval list cards in the to-do center to display the complete date and time by @mytharcher
-
Fix a performance issue that occurred when querying the list of approval records during approval submission by @mytharcher
-
v1.9.6 - 2025-11-12
🐛 Bug Fixes
-
[client] Fix the issue where duplicated templates do not appear, which is caused by dragging and then deleting a referenced template (#7847) by @zhangzhonghe
-
[utils] Enable object merging in intersect strategy (#7840) by @chenos
-
[Data visualization: ECharts] fix issue with ECharts config labelType by @heziqiang
-
[Email manager] sync microsoft mail read status without timestamp by @jiannx
v1.9.5 - 2025-11-10
🐛 Bug Fixes
-
[Workflow: Approval] Fix an issue where main collection fields were not excluded when reloading association data by @mytharcher
-
[Email manager] Fix the issue of reserved images and synchronization in outlook by @jiannx
v1.9.4 - 2025-11-10
🚀 Improvements
-
[Access control] Optimize permission control logic for association field operations (#7800) by @2013xile
-
[Workflow: JavaScript] Fix a security vulnerability caused by upper-level functions being passed into the execution environment, preventing exploitation that could grant access to the upper execution context by @mytharcher
-
[Auth: OIDC] Increase the request timeout by @2013xile
🐛 Bug Fixes
-
[server] Fix an issue where, after enabling service-splitting mode, worker processes sending messages through the message queue would cause errors (#7797) by @mytharcher
-
[client] fix empty next page issue in simple pagination detail block (#7784) by @katherinehhh
-
[Workflow]
-
[Users] Incorrect index refresh when field names use snake_case style (#7785) by @2013xile
-
[Workflow: Custom variable] Fix error thrown when no config in variable node by @mytharcher
v1.9.3 - 2025-11-05
🚀 Improvements
-
[database] Add the
multipleStatementsoption to the MariaDB connection instance to support invoking multiple statements in a single query (#7781) by @mytharcher -
[Workflow] Support data block in workflow to use consolidate detail settings menu (#7771) by @mytharcher
🐛 Bug Fixes
-
[server] Isolate Pub-Sub channel by app name (#7762) by @mytharcher
-
[client] Fix "Maximum call stack size exceeded" (#7780) by @zhangzhonghe
-
[database] Incorrect index field detection when field names use snake_case style (#7776) by @2013xile
-
[Workflow] Resolved an issue where the workflow dispatcher in cluster mode failed to correctly identify idle states, which could lead to unnecessary queue event consuming before plugin is ready (#7768) by @mytharcher
-
[Mobile (deprecated)] Fix the issue where the date field default value popup on mobile cannot select a date (#7783) by @zhangzhonghe
-
[Workflow: Approval] Fix error thrown when duplicate approval workflow by @mytharcher
-
[Email manager] collection mailMessages add indexes by @jiannx
v1.9.2 - 2025-11-04
🚀 Improvements
- [Workflow: Approval] Add notification for delegated and added assignee by @mytharcher
🐛 Bug Fixes
-
[Workflow] Fix an issue where, in service-splitting mode, manually executing a workflow containing an interrupt node would remain stuck in a pending status (#7767) by @mytharcher
-
[Email manager] add migration for indexex by @jiannx
v1.9.1 - 2025-11-04
🐛 Bug Fixes
-
[Workflow: Approval] Creating approval nodes in parallel branches is no longer supported to avoid issues caused by process status by @mytharcher
-
[Email manager] add sync logs by @jiannx
v1.9.0 - 2025-11-02
New Feature
Field Validation Rules
Supports configuring multiple validation rules for fields — such as required, format, length, range, and custom expressions. Input data is automatically validated upon form submission to ensure accuracy and consistency. Validation rules can be flexibly configured in field settings.
Reference: Field validation
Table Block Support Column Settings
The table block now includes a Column Settings feature, allowing users to adjust column order, visibility, and pinned position without entering edit mode — making data display more flexible and user-friendly.
Before Data Saved Trigger Mode for Approvals
Approvals now support a Before Data Saved trigger mode — when enabled, data will not be stored when the approval starts and will only be saved after the approval is approved.
Approval Trigger Exposes Approval ID Variable
The approval trigger now exposes the approval ID variable, allowing it to be referenced in workflows and automation processes for more flexible configuration and data tracking.
[Async Task Manager] Support for Service Splitting via Environment Variables and Queues
Introduces a new service splitting mechanism, allowing asynchronous task and workflow services to run independently through the WORKER_MODE environment variable — enabling multi-node deployment and performance optimization.
Reference: Service Splitting
New Event Queue for Handling Queue Messages
Adds a dedicated event queue for handling system queue messages, improving asynchronous task processing and reliability.
Reference: Cluster Mode: Message Queue
Graceful Shutdown Lifecycle Support
Introduces graceful shutdown handling. When the application process receives a SIGTERM or SIGINT signal, it now initiates a proper shutdown sequence to prevent issues from ongoing operations.
Plugin-Defined Tables Visible in Main Data Source
Plugin-defined tables can now be displayed in the main data source management interface, making them available for use in blocks and workflows.
Improvements
System Tables Use 53-bit Snowflake-like IDs
Update the IDs of system tables that previously used auto-increment primary keys without global uniqueness to 53-bit Snowflake-style IDs for globally unique identification.
View and Resume Tasks from Disabled Workflows
Manual task blocks now display pending tasks even from disabled workflows and allow users to continue processing them.
Mail Manager Enhancements
- Mail data supports resynchronization
- Allows resizing images inserted into the email editor.
- Rich text editor now supports soft line breaks, improving email formatting experience.
- Improved email list performance for smoother operations.
Workflow Module Optimization
- Optimized query performance in workflow queue execution by introducing separated fields and indexes for faster data retrieval.
v1.8.33 - 2025-10-29
🚀 Improvements
- [server] Add gateway log (#7683) by @2013xile
🐛 Bug Fixes
-
[database] Skip default value synchronization for MySQL JSON columns (#7696) by @2013xile
-
[client]
-
[Workflow] Fix the issue where, in service-splitting mode, improper handling of the in-memory pending queue caused some workflows to not execute (#7692) by @mytharcher
v1.8.32 - 2025-10-27
🚀 Improvements
-
[server] Optimize the method for loading l10n resources to prevent blocking event loop (#7653) by @2013xile
-
[cache] Avoid performance overhead caused by cloning Bloom filters (#7652) by @2013xile
-
[Action: Import records] Improved error messaging when table headers are missing (#7656) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Collection field: administrative divisions of China] Data import fails when the city and area have the same name (#7673) by @2013xile
-
[Workflow]
-
[File manager] Fix the issue of
.msgfile can not be uploaded properly (#7662) by @mytharcher -
[Data source: Main] Fix the issue where metadata was not synchronized across multiple nodes after creating a reverse association field (#7628) by @mytharcher
-
[Workflow: Approval]
-
Fix the translation issue of the status text in approval completion notifications, using the system’s default language for translation when the user has not set a language preference by @mytharcher
-
Fix the issue where task count not updated after added assignee by @mytharcher
-
v1.8.31 - 2025-10-17
🐛 Bug Fixes
-
[database] Fix error thrown when operator
$inmeetsnullvalue (#7610) by @mytharcher -
[Workflow: Approval]
-
Fix the transaction timeout issue caused by transactions not rolling back properly when database errors occur after approval submission by @mytharcher
-
Fix the issue where variables are not parsed in approval submit form by @mytharcher
-
v1.8.30 - 2025-10-16
🐛 Bug Fixes
- [client] Fix the issue of tab icon pop-ups being obscured (#7607) by @zhangzhonghe
v1.8.29 - 2025-10-15
🚀 Improvements
- [Workflow: Approval] Refactor branch configuration to adapt to kernel changes by @mytharcher
🐛 Bug Fixes
- [Workflow: Approval] Fix the issue of migration script errors due to non-existent tables when the application is not installed by @mytharcher
v1.8.28 - 2025-10-14
🚀 Improvements
-
[client] In order to get more accurate MIME type of file, use
mimepackage to detect MIME type of file in client (#7551) by @mytharcher -
[Workflow]
-
[Workflow: Loop node] Support to limit the maximum number of cycles for loop nodes through environment variables (#7543) by @mytharcher
-
[Workflow: Approval] Add print button to detail popup in custom approval blocks by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Public forms] Fix the issue where the upload rules for file fields in public forms were incorrect (#7553) by @mytharcher
-
[Calendar] fix data query issue caused by unique identifier in calendar block (#7562) by @katherinehhh
-
[Auth: LDAP] Fix LDAP bind failure with non-ASCII (UTF-8) DNs in Active Directory by @2013xile
v1.8.27 - 2025-10-02
🚀 Improvements
-
[client] Support to rotate image when previewing (#7523) by @mytharcher
-
[Workflow] Split the dispatching-related logic into a standalone dispatcher (#7535) by @mytharcher
🐛 Bug Fixes
-
[client] Fix the issue where sidebar submenus cannot highlight correctly (#7520) by @duannyuuu
-
[Workflow: Loop node] Fixed the issue where the process incorrectly advanced to the next item even when loop node conditions were not satisfied (#7521) by @mytharcher
-
[Workflow]
-
Fix the issue of duplicated executing due to improper queue handling (#7533) by @mytharcher
-
Fix the issue where the workflow list condition is incorrect when loading associated field context in the bound workflow configuration (#7516) by @mytharcher
-
Fix the issue where scheduled tasks based on date fields do not trigger after start (#7524) by @mytharcher
-
v1.8.26 - 2025-09-20
🚀 Improvements
-
[client] add localization support for tooltip & group item title (#7485) by @katherinehhh
-
[Calendar] support locale mapping display for calendar headers (#7508) by @katherinehhh
🐛 Bug Fixes
-
[client] Fix the issue where the menu icon configuration popover is being obscured (#7515) by @zhangzhonghe
-
[Notification: In-app message]
-
[Workflow] Fix the issue where incorrect subscription logic on background task queue in the workflow caused execution message incorrectly handled (#7507) by @mytharcher
-
[Workflow: Approval]
-
Fix the issue where an error occurred when deleting data from an external data source by @mytharcher
-
Fix the issue where formula fields in the approval form do not update automatically by @mytharcher
-
v1.8.25 - 2025-09-16
🚀 Improvements
- [auth] Support using
.in usernames (#7504) by @2013xile
🐛 Bug Fixes
-
[client] Fix the issue where button icon configuration popup is being covered/overlapped (#7506) by @zhangzhonghe
-
[Template print] support chinaRegions field by @jiannx
v1.8.24 - 2025-09-12
🎉 New Features
- [Workflow: Approval] Support to return to any nodes in approval process by @mytharcher
🚀 Improvements
-
[server] Use standard system logger for message queue (#7480) by @mytharcher
-
[client] Remove the ellipsis popover from file list (#7479) by @mytharcher
-
[Workflow] Optimize the workflow preparation process to support using preloaded node data (#7476) by @mytharcher
-
[Theme editor] Add support for side menu color customization (#7483) by @duannyuuu
-
[Redis queue adapter] Use standard system logger for Redis message queue adapter by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Workflow] Fix a potential error related to workflow log caching (#7490) by @mytharcher
-
[HTTP request encryption] Fix the issue where request parameters do not support the native URLSearchParams type by @mytharcher
-
[Data source: REST API] fix rest api URL validation rules by @katherinehhh
-
[Workflow: Approval] Fix the issue where the status text in the approval completion notification was not translated by @mytharcher
v1.8.23 - 2025-09-03
🚀 Improvements
-
[database] Optimized list API count query to reduce resource consumption. (#7453) by @aaaaaajie
-
[Notification: In-app message] Support configuring the auto-close delay for in-app message notifications (#7472) by @mytharcher
-
[Workflow: notification node] Support to test the node of notification (#7470) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Mobile] mobile date field without timezone not showing date time correctly (#7473) by @katherinehhh
-
[Public forms] public form field default value not applied when using variables (#7467) by @katherinehhh
-
[Action: Import records] Fix incorrect row number displayed when duplicate data is imported (#7440) by @aaaaaajie
-
[Collection: Tree] Remove database events related to the collection after deleting a tree collection (#7459) by @2013xile
-
[Workflow: Custom action event] Fix the issue where custom action events cannot be manually executed immediately after initialization by @mytharcher
-
[Workflow: Subflow] Fix the issue of subprocesses being resumed and executed multiple times by @mytharcher
-
[Workflow: Approval] For users who are not the current approver, the corresponding view button in the process flow table will not be displayed by @mytharcher
v1.8.22 - 2025-08-27
🐛 Bug Fixes
- [Workflow] Fix the issue where the detail popup was not displayed due to an incorrect route configuration in the tasks center (#7452) by @mytharcher
v1.8.21 - 2025-08-26
🐛 Bug Fixes
-
[File manager] Fix the error when editing the
storagefield in the file collection. (#7393) by @mytharcher -
[Workflow: Parallel node] Fix the issue where incorrect status determination in parallel branch nodes under the "Run all branch" mode caused premature completion (#7445) by @mytharcher
-
[Workflow: Approval] Add the status variable for custom templates in approval completion notifications by @mytharcher
v1.8.20 - 2025-08-25
🚀 Improvements
-
[Workflow] Adjust the workflow variable API to support presetting an additional variable list (#7439) by @mytharcher
-
[Workflow: Approval]
-
Support using approval-related variables in custom notifications by @mytharcher
-
Support updating the approval status after the end node terminates the execution by @mytharcher
-
🐛 Bug Fixes
-
[client]
-
Fix an issue where, in certain scenarios, editing a record in the mobile record picker popup causes an error (#7444) by @zhangzhonghe
-
required validation not working for attachment fields in subtable (#7431) by @katherinehhh
-
Fix the issue where the icon was displayed incorrectly when the URL in the attachment URL field contained query parameters (#7432) by @mytharcher
-
-
[database]
-
[undefined] Fixed issue with filtering by date field only in MySQL external source (#7422) by @aaaaaajie
-
[Action: Import records] Fixed an issue where import failed when the table primary key was a single-line text (#7416) by @aaaaaajie
-
[Workflow]
-
[Action: Import records Pro] Fixed unexpected update result when using string primary key in xlsx import. by @aaaaaajie
v1.8.22 - 2025-08-27
🐛 Bug Fixes
- [Workflow] Fix the issue where the detail popup was not displayed due to an incorrect route configuration in the tasks center (#7452) by @mytharcher
v1.8.21 - 2025-08-26
🐛 Bug Fixes
-
[File manager] Fix the error when editing the
storagefield in the file collection. (#7393) by @mytharcher -
[Workflow: Parallel node] Fix the issue where incorrect status determination in parallel branch nodes under the "Run all branch" mode caused premature completion (#7445) by @mytharcher
-
[Workflow: Approval] Add the status variable for custom templates in approval completion notifications by @mytharcher
v1.8.20 - 2025-08-25
🚀 Improvements
-
[Workflow] Adjust the workflow variable API to support presetting an additional variable list (#7439) by @mytharcher
-
[Workflow: Approval]
-
Support using approval-related variables in custom notifications by @mytharcher
-
Support updating the approval status after the end node terminates the execution by @mytharcher
-
🐛 Bug Fixes
-
[client]
-
Fix an issue where, in certain scenarios, editing a record in the mobile record picker popup causes an error (#7444) by @zhangzhonghe
-
required validation not working for attachment fields in subtable (#7431) by @katherinehhh
-
Fix the issue where the icon was displayed incorrectly when the URL in the attachment URL field contained query parameters (#7432) by @mytharcher
-
-
[database]
-
[undefined] Fixed issue with filtering by date field only in MySQL external source (#7422) by @aaaaaajie
-
[Action: Import records] Fixed an issue where import failed when the table primary key was a single-line text (#7416) by @aaaaaajie
-
[Workflow]
-
[Action: Import records Pro] Fixed unexpected update result when using string primary key in xlsx import. by @aaaaaajie
v1.8.19 - 2025-08-22
🎉 New Features
- [Workflow: Approval] Add inline template type for notification configuration by @mytharcher
🚀 Improvements
-
[client] Support displaying icons identified by strings in the Select component when in read-only mode (#7420) by @mytharcher
-
[database] Optimized ACL Meta query performance (#7400) by @aaaaaajie
-
[Mobile] Optimize the mobile popup component (#7414) by @zhangzhonghe
🐛 Bug Fixes
-
[database] Fixed issue where Postgres external table reads included views from other schemas (#7410) by @aaaaaajie
-
[Block: template] Resolved an issue where mail blocks were not visible when placed inside an inherited template block (#7430) by @gchust
-
[Action: Import records Pro] Disallow assigning relation fields during import duplicate detection. by @aaaaaajie
-
[Workflow: Approval] Fix the issue where the user list was empty during countersigning by @mytharcher
-
[Migration manager] Skip the
\restrictand\unrestrictcommands generated by the latest pg_dump when creating migration files to resolve restore errors. by @2013xile
v1.8.18 - 2025-08-19
🚀 Improvements
-
[Workflow] Updated the node selection menu to display options in a two-column layout for improving information density and allowing users to view more options at once (#7396) by @mytharcher
-
[License settings] In the license settings, copy the latest Instance ID each time (#7387) by @jiannx
🐛 Bug Fixes
-
[client]
-
[Mobile] incorrect display format of date field on mobile (#7412) by @katherinehhh
-
[Office File Previewer] Fix error thrown when upload file to attachment URL field (#7405) by @mytharcher
-
[Workflow] Fix error thrown and form data disappeared when edit workflow category (#7408) by @mytharcher
-
[Workflow: mailer node] Fix the issue where the email node might not resume execution properly (#7409) by @mytharcher
-
[Workflow: Custom action event] Clear the selected rows after successfully triggering actions on multiple records by @mytharcher
-
[Template print] Printing of radio-select fields in multiple lines of data by @jiannx
-
[Workflow: Approval] Fix the issue where loading external data source data in approval records resulted in a 404 error by @mytharcher
v1.8.17 - 2025-08-15
🎉 New Features
- [Workflow: Approval] Support to use consistent task title for all approval nodes in same workflow by @mytharcher
🚀 Improvements
-
[Authentication] Removed the token parameter from the URL after a successful sign-in (#7386) by @2013xile
-
[Template print] support field m2m array by @jiannx
🐛 Bug Fixes
-
[Mobile] Fix the issue where the form submission data in the mobile approval dialog is incorrect (#7389) by @zhangzhonghe
-
[Workflow] Fix the translation of the page title in the workflow tasks center (#7392) by @mytharcher
-
[Calendar] calendar event item tooltip showing [object Object] (#7372) by @katherinehhh
-
[Notification: In-app message] Fix translations (#7384) by @mytharcher
-
[File manager] Remove the hint for the file upload size limit (#7391) by @mytharcher
-
[File storage: S3(Pro)]
-
Deprecate problematic parameter
attachmentFieldby @mytharcher -
Fix the issue where the IAM authentication method could not be used to upload files by @mytharcher
-
v1.8.16 - 2025-08-14
🚀 Improvements
- [Notification: In-app message] Remove SQL logs output via
console.log(#7368) by @2013xile
🐛 Bug Fixes
-
[server] Some requests lack
ctx.action, causing errors in the audit log middleware (#7369) by @2013xile -
[Collection field: Formula] Fix the issue where formula input could not pass validation due to variable type (#7373) by @mytharcher
-
[Backup manager] large file backups could show “successful” before actually finishing by @gchust
v1.8.15 - 2025-08-11
🚀 Improvements
-
[client]
-
[Workflow]
-
[Office File Previewer] Add support for previewing
.odtfile (#7347) by @mytharcher -
[Backup manager] improve performance for mysql database backup operation by @gchust
🐛 Bug Fixes
-
[client]
-
Fix the issue where multi-column form layout doesn't convert to single-column layout on mobile devices (#7355) by @zhangzhonghe
-
Fix bulk delete collections error (#7345) by @aaaaaajie
-
Fixed issue where previously saved data scope was not preselected when configuring permissions individually. (#7288) by @aaaaaajie
-
-
[Workflow]
-
Refactor the "Add Node" menu and fix the workflow canvas rendering performance issues it caused (#7363) by @mytharcher
-
Fix the issue of incorrect filter conditions when retrieving a single to-do item (#7366) by @mytharcher
-
Fix the issue of keyword matching in the field select (#7356) by @mytharcher
-
Avoid error thrown caused by publishing to event queue when stopping (#7348) by @mytharcher
-
-
[Notification: In-app message] Fix the issue where in-site messages were received but not displayed in a popup (#7364) by @mytharcher
-
[Mobile] Resolved an issue where the date picker on mobile devices displayed incorrectly when date range limits were applied (#7362) by @katherinehhh
-
[File manager] Add
storageIdfield to file collection to support permission configuration (#7351) by @mytharcher -
[Workflow: Parallel node] Fix parallel node suspend after resume under MySQL (#7346) by @mytharcher
-
[Workflow: CC] Fix blocks can not be removed (#7338) by @mytharcher
-
[Office File Previewer] Support
.docx,.xlsxand.pptxfile with only URL to be previewed (#7336) by @mytharcher -
[Data visualization] date variable issue in default value of date field in chart filter block (#7291) by @katherinehhh
-
[Workflow: Approval]
-
Fix linkage rules not works in approval original detail block by @mytharcher
-
Fix update associations when submit draft by @mytharcher
-
v1.8.14 - 2025-08-05
🐛 Bug Fixes
-
[client] Fix the issue where variable raw strings are submitted with the form (#7337) by @zhangzhonghe
-
[Workflow: Approval] Add task title for added and delegated items by @mytharcher
v1.8.13 - 2025-08-04
🎉 New Features
- [Auth: SAML 2.0] Add signature-related configuration options by @2013xile
🚀 Improvements
- [Workflow: JavaScript] Change cache to app cache to avoid bugs in cluster mode by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Collection: Tree] Fix the path synchronization logic of tree collections (#7330) by @ChimingLiu
v1.8.12 - 2025-08-01
🎉 New Features
- [client] Added "Auto focus" option for Input, TextArea, URL, and InputNumber components that automatically focuses the input field during initial page rendering when enabled (#7320) by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
[utils] incorrect timezone handling for parseDate (#7318) by @katherinehhh
-
[undefined] Add new plugin to preset (#7319) by @mytharcher
-
[File manager] Fix storage field permission (#7316) by @mytharcher
-
[Workflow] Fix
undefinedresult when processor exit (#7317) by @mytharcher -
[Workflow: Dynamic calculation node] Fix legacy API caused error (#7321) by @mytharcher
-
[Workflow: Subflow] Fix flow suspended by @mytharcher
v1.8.11 - 2025-07-30
🎉 New Features
- [Office File Previewer] Support to preview Office files via Microsoft live preview (#7300) by @mytharcher
🚀 Improvements
-
[client] Do not automatically close menu after selection (#7252) by @kerwin612
-
[Notification: In-app message] Change in-app message from SSE to WebSocket (#7302) by @mytharcher
-
[Workflow] Reduce jobs amount to load when preparing execution (#7284) by @mytharcher
-
[Auth: DingTalk] In the DingTalk client, set the navigation bar title to an empty string instead of displaying “Loading…” by @2013xile
🐛 Bug Fixes
-
[client]
-
[Workflow: HTTP request node] Fix racing condition bug (#7310) by @mytharcher
-
[Workflow] Fix BigInt ID issue in MySQL when save job (#7292) by @mytharcher
-
[Action: Export records] Fixed incorrect formatting of nested relational fields when exporting to Excel. (#7277) by @aaaaaajie
-
[Data source: External SQL Server] Fix inconsistent storage format for MSSQL datetime (without time zone) fields from external data sources by @aaaaaajie
-
[Workflow: Approval] Fix error thrown from assignee select inside external datasource by @mytharcher
v1.8.10 - 2025-07-24
🎉 New Features
-
[Auth: SAML 2.0] Support automatic redirection to the SSO URL when the user is unauthenticated by @2013xile
-
[server] Support configuring request body size limit via environment variable (#7273) by @aaaaaajie
-
[Workflow: Parallel node] Add "All settled" mode for parallel node (#7263) by @mytharcher
-
[Redis queue adapter] Add Redis adapter for event queue by @mytharcher
🚀 Improvements
-
[Workflow] Add json type constant for test variable (#7274) by @mytharcher
-
[AI integration] Remove
awaitfor invokingsaveJob(#7275) by @mytharcher -
[Workflow: JSON calculation] Make JSON query node testable by @mytharcher
-
[server] Make concurrent memory queue available when processing items not full (#7267) by @mytharcher
-
[database] Automatically activates simple pagination when dataset exceeds a threshold (#7227) by @aaaaaajie
-
[Workflow: Manual node] storePopupContext supports saving default context (#7264) by @zhangzhonghe
-
[Redis queue adapter] Make concurrent queue available when processing items not full for Redis adapter by @mytharcher
🐛 Bug Fixes
-
[client]
-
fuzzy search not working in select association field when using formula as title field (#7280) by @katherinehhh
-
missing current object variable in sub-table linkage rules (#7266) by @katherinehhh
-
Data selector title field setting is invalid (#7251) by @zhangzhonghe
-
Fix issue where Markdown fields were not rendered correctly in the detail view. (#7257) by @aaaaaajie
-
After field changes, the association fields that depend on this field have not cleared their values (#7262) by @zhangzhonghe
-
display issue when deprecated date variables are used in date fields of historical data (#7253) by @katherinehhh
-
-
[database]
-
Resolve auto simple pagination failure caused by table naming convention. (#7256) by @aaaaaajie
-
Fixed failure when exporting large datasets from PostgreSQL (#7228) by @aaaaaajie
-
Fix issue where default primary key sorting causes list loading failure when using MSSQL external data source in table block. (#7259) by @aaaaaajie
-
-
[auth] Fix the issue where an empty
secretin sub-application configuration prevents sign-in (#7239) by @2013xile -
[Data source manager] Fixed preserve external datasource attributes in collection configuration (#7249) by @aaaaaajie
-
[Action: Batch edit] Unable to perform bulk edit and bulk update in data selector (#7250) by @zhangzhonghe
-
[Workflow] Fix wrong version of dependency (#7258) by @mytharcher
-
[Data source: External Oracle] Fixed preserve external datasource attributes in collection configuration by @aaaaaajie
-
[Workflow: Approval] The Link button's URL points to a popup on the current page, but clicking it shows a 404 error by @zhangzhonghe
-
[Email manager] the messages and labes relationship collection is exceptional under mysql by @jiannx
v1.8.7 - 2025-07-17
🎉 New Features
- [Workflow: date calculation node] Support to test run node by @mytharcher
🚀 Improvements
-
[client] Color Picker: Add four recommended colors (#7226) by @zhangzhonghe
-
[Workflow] Make comparison compatible for date values (#7237) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Workflow: Subflow] Fix error thrown when recall signal arrive but pending execution is not on current instance by @mytharcher
v1.8.6 - 2025-07-16
🐛 Bug Fixes
-
[client]
-
[database] Fixed error when enabling simple pagination for external data source tables (#7222) by @aaaaaajie
-
[Collection field: Sort] missing sort field selection when duplicating records (#7116) by @katherinehhh
-
[Workflow: Approval]
-
Add fault tolerance for deleted approval in record list by @mytharcher
-
Fix multiple levels of associations when submit approval by @mytharcher
-
Fix exception when delete record by @mytharcher
-
v1.8.5 - 2025-07-14
🚀 Improvements
-
[Collection field: Formula] Add more calculable interfaces (#7215) by @mytharcher
-
[Workflow] Use logging instead of throwing error when execution should not run due to status (#7217) by @mytharcher
-
[Workflow: Approval] Support to delete approval when related data deleted by @mytharcher
🐛 Bug Fixes
-
[client]
-
issue where attachment fields could not be selected as variables in linkage rule (#7213) by @zhangzhonghe
-
Fix the issue where dropdown select components are blocked by the keyboard on iOS (#7149) by @zhangzhonghe
-
value assignment fails in edit form when both value and options are set for select field (#7209) by @katherinehhh
-
Filter collapse: Filter is not triggered during page initialization after setting default values for fields (#7206) by @zhangzhonghe
-
error when assigning values in list block using kanban sort field (#7208) by @katherinehhh
-
Browser tab title is not synchronized when switching between submenus (#7207) by @zhangzhonghe
-
Popup action: Page display does not meet expectations after switching tabs (#7212) by @zhangzhonghe
-
-
[acl] Fix error when deleting a role under role union mode that includes the root role. (#7198) by @aaaaaajie
-
[Multi-app manager] Fix auth options in unexpected position (#7210) by @mytharcher
-
[Authentication] Fix the issue where the login page cannot scroll (#7159) by @zhangzhonghe
-
[Workflow: Approval] Fix associations when submit approval by @mytharcher
v1.8.4 - 2025-07-13
🎉 New Features
-
[Multi-app manager] Support to configure independent auth secret for sub-apps (#7197) by @mytharcher
-
[Workflow: CC] Add CC node to workflow (#7201) by @mytharcher
🚀 Improvements
-
[Notification: In-app message] Optimize font size for mobile message page (#7199) by @zhangzhonghe
-
[Auth: DingTalk] Support configuring the callback URL’s protocol and port number by @2013xile
🐛 Bug Fixes
-
[Notification: In-app message] Fix BigInt timestamp in string format causes dayjs issue (#7196) by @mytharcher
-
[Workflow: Approval]
-
To avoid error when user not exists by @mytharcher
-
Reload association on record by @mytharcher
-
Add
try/catchin migration when update UI schema by @mytharcher
-
v1.8.3 - 2025-07-11
🚀 Improvements
- [Multi-app manager] Add database and authorization options for sub-app (#7184) by @mytharcher
🐛 Bug Fixes
- [Action: Custom request] variable parsing issue in URL during route navigation after custom request success (#7186) by @katherinehhh
v1.8.2 - 2025-07-10
🎉 New Features
- [Workflow: Approval] Add initializer for trigger by @mytharcher
🚀 Improvements
-
[Workflow] Convert operands to string before string comparison in logic calculation (#7190) by @mytharcher
-
[Collection field: Code] Add indent setting by @mytharcher
🐛 Bug Fixes
-
[database] Fixed an issue where fields of views were not displayed in blocks. (#7162) by @aaaaaajie
-
[Block: Kanban] fix subtable UI issues in Kanban and add support for Kanban column width setting (#7189) by @katherinehhh
-
[Workflow: Approval] Fix block and association bugs by @mytharcher
v1.8.1 - 2025-07-09
🐛 Bug Fixes
-
[client]
-
[Workflow: Manual node] Fix error thrown when use variable (#7177) by @mytharcher
-
[Template print] add migration script to rootDataType field by @jiannx
-
[Workflow: Approval] Fix approved branch not run when no assignee by @mytharcher
v1.8.0 - 2025-07-07
New Feature
Forgot Password – Email Recovery Supported
Users can now recover their passwords via email. Enable this feature in Settings > Authentication > Forgot Password, configure an email notification channel, and customize the password reset email (supports variables and HTML format).
Reference: Forgot Password
Custom Aggregation Variables
Supports creating statistical variables such as count, sum, and average. These variables can be used in menu badges, page labels, and other areas to make the interface more intuitive and information-rich.
Reference: Custom Variables
Email Management
The email management module has been fully upgraded, now supporting email deletion, batch sending, sync interval settings, AI-generated content, and various user experience improvements.
Data Sources
Supports the SQL Server BIT field in external data sources and enables on-demand loading of data tables from external sources.
Text Copy
Supports one-click copying of text field content.
[Workflow: HTTP Request Node] Support for multipart/form-data Type
When configuring an HTTP Request node in a workflow, you can now select the multipart/form-data content type. Once enabled, the request body accepts form-data submissions—including file fields—to support file uploads and similar scenarios.
[Workflow: Approval] Approval Node Results Support Generating Approval Record Variables
Approval node execution results can now be used as variables in subsequent nodes, with automatic recording of status and related data.
Reference: Node Results
Improvements
Scan-to-Fill Input
The generic text input component now includes an Enable Scan option. When enabled, a scan button appears on the right side of the input field, allowing data to be entered via scanning devices. You can also configure whether manual input is allowed.
Reference: Enable scan
Localization Support in Markdown Block
Markdown content now supports localization using the {{t 'xxx'}} syntax to insert multilingual text.
Reference: Localization
Menu Links Support Opening in New Window
A new "Open in new window" option has been added for menu links, allowing you to customize how links are opened.
Calendar Block Supports Setting Week Start Day
You can now customize the calendar view’s week start day, choosing either Sunday or Monday to fit different regional preferences and habits.
Markdown (Vditor) View Mode Supports Image Click-to-Zoom
In view mode, images within Markdown content can be clicked to enlarge, enhancing the reading experience.
Comprehensive Enhancement Of Workflow Module Functionality And Performance
- Support filtering workflows by more fields to improve search efficiency
- Optimize mobile display styles to enhance user experience
- Exclude JSON field loading to significantly improve execution plan list loading performance
- Add a new log API for node test runs
- Adjust the API interface of the
getCollectionFieldOptionsmethod to enhance flexibility
Approval Process Functionality Enhancements And Experience Improvements
- Added Configuration Option For Transfer And Add Sign Personnel Selection Lists, Supporting Display Of More Field Information To Assist More Accurate Selection
- Adjusted Time Display In Timeline To Absolute Time To Improve Readability
- Imported Approval-Related Data Tables From Workflow Plugin To Prevent Local Tables From Being Overwritten
- Adjusted Variable API Interface Structure To Enhance Flexibility And Consistency
Support Configuring Database Connection Pool Options Via Environment Variables
Database connection pool parameters can be flexibly set through environment variables to improve deployment flexibility.
Comment Block Supports Pagination
Supports paginated loading of comments to enhance loading performance and reading experience in scenarios with large data volumes.
Mobile Experience Improvements
- Notification Popups Adapted To Mobile Styles
- Optimized Mobile Layout Detection Logic To Enhance Responsiveness Accuracy
v1.7.20 - 2025-07-07
🐛 Bug Fixes
-
[client]
-
After field changes, data scopes that depend on this field should automatically clear selected values (#7161) by @zhangzhonghe
-
Fix the issue where setting table column width is ineffective (#7158) by @zhangzhonghe
-
Fix the error issue with filter forms in the Duplicate button popup (#7154) by @zhangzhonghe
-
Fixed an error that occurred when saving a one-to-one relationship in a configuration field. (#7153) by @aaaaaajie
-
-
[undefined] Fix e2e.yml (#7160) by @mytharcher
-
[File manager]
-
[Public forms] fix issue where Date Only field failed to select date in public form. (#7168) by @katherinehhh
-
[Workflow] Fix the issue where multiple left swipes are required to return to the previous page on mobile devices (#7165) by @zhangzhonghe
-
[Data visualization] Table pagination issue (#7151) by @2013xile
-
[Workflow: Approval]
-
Fix associations not loaded after withdrawn by @mytharcher
-
Remove transaction of patching schema due to timeout by @mytharcher
-
Fix error thrown when approval deleted by @mytharcher
-
Fix update association when submit by @mytharcher
-
v1.7.19 - 2025-07-03
🚀 Improvements
-
[database] Support to add pool options from env (#7133) by @mytharcher
-
[Workflow]
-
[Multi-app manager] add filter support to multi-app management (#7124) by @katherinehhh
-
[Workflow: Approval] Change time to absolute in timeline by @mytharcher
🐛 Bug Fixes
-
[client]
-
Setting field displayName in connected view had no effect (#7130) by @aaaaaajie
-
background color style issue in subtable on detail block (#7144) by @katherinehhh
-
Workflow manual node UI configuration: linkage rules cannot select Current form variables (#7125) by @zhangzhonghe
-
association field default value overrides existing data in sub-table (#7120) by @katherinehhh
-
markdown did not reflect changes in real-time when referencing $nForm variables (#7147) by @katherinehhh
-
Fault tolerance for settings based on 'x-acl-action' (#7128) by @mytharcher
-
-
[utils] filtering issue on DateOnly or Datetime (without time zone) using Exact day variable (#7113) by @katherinehhh
-
[Workflow] Fix error thrown by cycling import (#7134) by @mytharcher
-
[Password policy] Support permanently locking user accounts by @2013xile
-
[Workflow: Subflow] Fix issue in cluster mode by @mytharcher
-
[Workflow: Approval]
-
Remove non-filterable fields from filter by @mytharcher
-
Add form layout settings by @mytharcher
-
v1.7.18 - 2025-06-26
🚀 Improvements
-
[Workflow] Optimize mobile style (#7040) by @mytharcher
-
[Public forms] Optimize the performance of date components in public forms (#7117) by @zhangzhonghe
🐛 Bug Fixes
-
[Workflow] Fix params of loading record in tasks (#7123) by @mytharcher
-
[WEB client] Fix issue where blocks under pages were not displayed after setting role menu permissions (#7112) by @aaaaaajie
-
[Workflow: Approval]
-
Fix applicant variable name in trigger by @mytharcher
-
Fix mobile styles by @mytharcher
-
Fix error thrown when approval related collection deleted by @mytharcher
-
v1.7.17 - 2025-06-23
🐛 Bug Fixes
-
[client]
-
[Mobile] Fix mobile popup z-index issue (#7110) by @zhangzhonghe
-
[Calendar] date field issue in quick create form of calendar block (#7106) by @katherinehhh
v1.7.16 - 2025-06-19
🐛 Bug Fixes
-
[Workflow]
-
[Action: Import records] Resolve login failure issue after batch import of usernames and passwords (#7076) by @aaaaaajie
-
[Workflow: Approval] Only participants can view (get) detail of approval by @mytharcher
v1.7.15 - 2025-06-18
🐛 Bug Fixes
-
[client]
-
[Workflow] Fix incorrectly executed checking on big integer number (#7091) by @mytharcher
-
[File manager] Fix attachments field can not be updated in approval process (#7093) by @mytharcher
-
[Workflow: Approval] Use comparison instead of implicit logic to avoid type issues by @mytharcher
v1.7.14 - 2025-06-17
🚀 Improvements
-
[client] Auto-hide grid card block action bar when empty (#7069) by @zhangzhonghe
-
[Verification] Remove verifier options from the response of the
verifiers:listByUserAPI (#7090) by @2013xile
🐛 Bug Fixes
-
[database] support association updates in updateOrCreate and firstOrCreate (#7088) by @chenos
-
[client]
-
[Collection field: Many to many (array)] Updating a many to many (array) field throws an error when the
updatedByfield is present (#7089) by @2013xile -
[Public forms] Public forms: Fix unauthorized access issue on form submission (#7085) by @zhangzhonghe
v1.7.13 - 2025-06-17
🚀 Improvements
-
[client] Logo container width adapts to content type (fixed 168px for images, auto width for text) (#7075) by @Cyx649312038
-
[Workflow: Approval] Add extra field option for re-assignees list by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Collection field: Sequence] Fix string based bigint sequence calculation (#7079) by @mytharcher
-
[Backup manager] unknow command error when restoring MySQL backups on windows platform by @gchust
v1.7.12 - 2025-06-16
🚀 Improvements
- [client] add "empty" and "not empty" options to checkbox field linkage rules (#7073) by @katherinehhh
🐛 Bug Fixes
-
[client] After creating the reverse relation field, the option "Create reverse relation field in the target data table" in the association field settings was not checked. (#6914) by @aaaaaajie
-
[Data source manager] Scope changes now take effect immediately for all related roles. (#7065) by @aaaaaajie
-
[Access control] Fixed an issue where the app blocked entry when no default role existed (#7059) by @aaaaaajie
-
[Workflow: Custom action event] Fix variable of redirect url not parsed by @mytharcher
v1.7.11 - 2025-06-15
🎉 New Features
- [Text copy] Support one-click copying of text field content (#6954) by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
[server] Cannot read properties of undefined (reading 'setMaaintainingMessage') (#7064) by @chenos
-
[Workflow: Loop node] Fix loop branch runs when condition not satisfied (#7063) by @mytharcher
-
[Workflow: Approval]
-
Fix todo stats not updated when execution canceled by @mytharcher
-
Fix trigger variable when filter by type by @mytharcher
-
v1.7.10 - 2025-06-12
🐛 Bug Fixes
-
[client]
-
[Data visualization] incorrect display of between date field in chart filter (#7051) by @katherinehhh
-
[API documentation] non-NocoBase official plugins fail to display API documentation (#7045) by @chenzhizdt
-
[Action: Import records] Fixed xlsx import to restrict textarea fields from accepting non-string formatted data (#7049) by @aaaaaajie
v1.7.9 - 2025-06-11
🐛 Bug Fixes
- [client] Fix block error issues (#7048) by @gchust
v1.7.8 - 2025-06-10
🎉 New Features
- [Audit logs] Add the environment variable
AUDIT_LOGGER_TRANSPORTto control the audit log output method by @2013xile
🚀 Improvements
-
[Calendar] support setting week start day in calendar block (#7032) by @katherinehhh
-
[Collection field: Many to many (array)] Permission-related errors when displaying many-to-many(many) fields in data tables. (#7028) by @aaaaaajie
🐛 Bug Fixes
-
[client]
-
auto-closing issue when configuring fields in the secondary popup form (#7042) by @katherinehhh
-
select field options not working in filter form linkage rules (#7035) by @katherinehhh
-
Filter form validation rules cause the filter button to become ineffective (#6975) by @zhangzhonghe
-
Fix fields not displaying in block templates caused by duplicate API requests (#6985) by @zhangzhonghe
-
-
[Action: Import records] Fix child table import failurewhen relational fields are involved (#7039) by @aaaaaajie
-
[Data visualization] Checkbox group fields in charts should display labels instead of raw values (#7033) by @2013xile
-
[Workflow] Fix error thrown in manual execute action when trigger not configured correctly (#7036) by @mytharcher
-
[Workflow: Approval]
-
To avoid undefined field error by @mytharcher
-
Fix API error when refresh detail page by @mytharcher
-
-
[WeCom] Add check for callback path in gateway middleware by @2013xile
v1.7.6 - 2025-06-09
🚀 Improvements
- [client] Prohibit moving a group menu into itself (#7005) by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
Resolved an issue where block failed to read view data from external data sources. (#7017) by @aaaaaajie
-
Fix the filter block parameter error issue (#6966) by @zhangzhonghe
-
Current object variable is invalid in linkage rules (#7008) by @zhangzhonghe
-
Unable to clear the required field indicator of sub-table using linkage rules (#7022) by @zhangzhonghe
-
-
[undefined] Remove database dependency for possibleTypes, enforce API-driven configuration by @aaaaaajie
-
[Mobile] Optimize mobile popup lag issues (#7029) by @zhangzhonghe
-
[Data source manager] Remove database dependency for possibleTypes, enforce API-driven configuration (#7019) by @aaaaaajie
-
[Action: Import records] Fixed errors occurring during batch editing when importing XLSX tree table data (#7013) by @aaaaaajie
-
[Workflow] Fix UI error when workflow not exists (#7023) by @mytharcher
-
[Workflow: JavaScript] Fix require for relative path by @mytharcher
-
[Workflow: Approval]
-
Fix error thrown when workflow deleted by @mytharcher
-
Reload file association from snapshot to avoid URL expires by @mytharcher
-
Fix trigger variables by @mytharcher
-
v1.7.5 - 2025-06-07
🐛 Bug Fixes
-
[client] Use independent variable scope for each field (#7012) by @mytharcher
-
[database] fix: add missing creator and updater fields in import xlsx (#7011) by @aaaaaajie
-
[Workflow] Fix collection event on create or update mode not triggering when create without changed field (#7015) by @mytharcher
-
[Action: Export records Pro] Fix the error that occurs when exporting attachments with conditions. by @aaaaaajie
v1.7.4 - 2025-06-06
🐛 Bug Fixes
-
[client]
-
[Localization] Resolve error caused by empty texts (#7010) by @2013xile
-
[Async task manager] Fixed multiple execution issue during async import (#7006) by @aaaaaajie
-
[Action: Export records Pro] Fixed multiple execution issue during async import by @aaaaaajie
-
[Workflow: Approval] Fix delegated approval can not continue when approved by others by @mytharcher
v1.7.3 - 2025-06-06
🚀 Improvements
- [Workflow] Support to filter more fields of workflow (#6995) by @mytharcher
🐛 Bug Fixes
- [client]
v1.7.2 - 2025-06-05
🚀 Improvements
-
[Action: Batch edit] Use
filterByTkinstead offilterunder selected mode (#6994) by @mytharcher -
[Action: Import records Pro] Optimze performance issues when processing large XLSX files (high-row/column datasets), preventing system crashes or freezes. by @aaaaaajie
🐛 Bug Fixes
-
[client]
-
[Workflow]
v1.7.1 - 2025-06-04
🎉 New Features
- [Data visualization] Support multiplication and division in chart transformation configuration (#6788) by @bugstark
🚀 Improvements
- [Public forms] Support to use url parameter as variable (#6973) by @mytharcher
🐛 Bug Fixes
-
[client] Fix fields not displaying in block templates caused by duplicate API requests (#6957) by @zhangzhonghe
-
[Workflow: Manual node] Fix initializer throws error when using external datasource (#6983) by @mytharcher
v1.7.0 - 2025-06-03
New Feature
Role Union
Role Union is a permission management mode. According to system settings, system developers can choose to use Independent roles, Allow roles union, or Allow roles union, to meet different permission requirements.
Reference: Role Union
Verification and Two-Factor Authentication (2FA)
The original verification code feature has been upgraded to a comprehensive verification management system, supporting multiple authentication methods (such as TOTP). The system also supports two-factor authentication (2FA), which requires an additional verification step during login, on top of the password, significantly enhancing account security.
Reference:
Template Printing
Template printing now supports dynamic image and barcode rendering.
Reference: Template Printing
Multiple Keyword Filter
The multi-keyword filter plugin adds powerful text filtering capabilities to the NocoBase platform, enabling you to filter data using multiple keywords and greatly enhancing the flexibility and efficiency of data queries.
Reference: Multiple keyword filter
Date Filter Supports Relative Date Range Selection
Supports filtering by custom time offsets (days/weeks/months/quarters/years) and specific dates, enabling more flexible time range queries.
Left-side Variables
The left-side variables in a condition are used to define the "object being judged" in the linkage rule, i.e., the condition will evaluate this variable’s value to determine whether the linkage behavior should be triggered.
Reference: Left-side Variables
Inherited Template
Inherited templates are ideal when you want blocks to follow a template’s basic updates but also allow specific changes. Blocks inherit the template’s settings and can extend or override them. Settings not changed in the block will update automatically with the template.
Reference: Inherited Template
Block Linkage Rules
Block linkage rules allow users to dynamically control the visibility of blocks, enabling the management of element display at the block level.
Reference: Block Linkage Rules
After Successful Submission
After successful submission, supports refreshing data in other blocks and navigating to detail pages with parameters.
Reference: After Successful Submission
Workflow Category Management
Open Source Plugins For Department And Attachment URL
Improvements
Linkage Rule Property Enhancements
- Selectable fields now support configurable options
- Date fields now support setting a date range
Reference: Field Linkage Rules
Import Pro
Import configuration now supports using multiple fields to uniquely identify records, as well as options to either overwrite or ignore blank cells during import.
Reference:Import Pro
Performance Optimization For Exporting XLSX
- Memory overflow and application freezing when exporting large data tables
- There is a probability of duplicate data in the exported data
- Query optimization for exported data based on indexes, unique constraints, and index strategies
- Add an export concurrent queue and set the concurrency number through environment variables.
Reference:
Performance Optimization For Importing XLSX Files
- Change the original single - row import strategy to batch insertion
- Reconstruct the duplicate identification mechanism. Change from single - row processing to batch processing while keeping the update logic and triggering workflow unchanged
Reference: About Performance
Workflow Execution Efficiency Improved By 100%
v1.6.38 - 2025-06-03
🐛 Bug Fixes
-
[client]
-
Fix the issue where blocks created in popups have incorrect collection (#6961) by @zhangzhonghe
-
Fix issue where filter form default values are invalid in sub-pages (#6960) by @zhangzhonghe
-
unable to expand association collection fields from external data sources in role data table scope (#6958) by @katherinehhh
-
Fix the issue where the 'Ellipsis overflow content' option is ineffective for relation fields (#6967) by @zhangzhonghe
-
Fix the issue where single-line text field values are displayed as an array in esay-reading mode (#6968) by @zhangzhonghe
-
-
[Authentication] Performance issue caused by expired token cleanup (#6981) by @2013xile
-
[File manager] Fix Ali-OSS timeout configuration (#6970) by @mytharcher
-
[Workflow: Custom action event] Fix initializer for workbench missed by @mytharcher
-
[Auth: OIDC] Sign-in button text not being localized by @2013xile
v1.6.37 - 2025-05-30
🐛 Bug Fixes
-
[client]
-
Fix the field order in filter button dropdown list (#6962) by @zhangzhonghe
-
subtable linkage variable fetches association data on clear instead of using form value (#6963) by @katherinehhh
-
association field in subtable triggering request when iteration variable with empty value (#6969) by @katherinehhh
-
-
[Theme editor] Hide theme switch option and fix popup style (#6964) by @zhangzhonghe
-
[Workflow: Approval] Fix error when assignees scope querying with association condition by @mytharcher
v1.6.36 - 2025-05-29
🚀 Improvements
- [Auth: OIDC] Ignore case when matching user by email by @2013xile
v1.6.35 - 2025-05-29
🎉 New Features
- [undefined]
-
Add new "Input Copy Button" plugin for single-line text fields (#6894) by @kerwin612
-
Add new "Input Copy Button" plugin for single-line text fields (#6894) by @kerwin612
-
New support for Gitpod allows you to start the development environment with one click and quickly begin development. (#6922) by @kerwin612
-
🚀 Improvements
- [client]
🐛 Bug Fixes
-
[client]
-
paginate association field dropdown data with page size of 200 (#6950) by @katherinehhh
-
Incorrect highlight position when dragging table rows (#6952) by @chenos
-
Block resize by dragging not working (#6944) by @chenos
-
field assignment component i18n not working (#6945) by @katherinehhh
-
Fix the issue with the copy button in the error pop-up copying out as [object Object]. (#6908) by @kerwin612
-
-
[Collection field: Markdown(Vditor)] markdown-vditor field component width issue after zoom in and out (#6946) by @katherinehhh
-
[Workflow: Approval] Fix locale by @mytharcher
v1.6.34 - 2025-05-27
🎉 New Features
- [Action: Import records Pro]
-
Support defining unique records by multiple fields when importing settings by @aaaaaajie
-
Supports settings for overwriting blank cells and ignore them when importing settings by @aaaaaajie
-
🚀 Improvements
- [undefined] Upgrade Node version to 20 for CI (#6927) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[undefined] Use Node 20 due to commander package requires (#6924) by @mytharcher
-
[database] Fixed uuid or nanoid auto-generation not working in many-to-many association (#6912) by @aaaaaajie
-
[Action: Export records] Fixed an issue where nested relationships failed to export correctly. (#6917) by @aaaaaajie
-
[Data source manager] Resolve issue with drag-and-drop sorting not working (#6937) by @chenos
-
[API documentation] Add missing sub-app info to req.headers (#6933) by @chenos
-
[Notification: In-app message] Resolved an issue where the "mark all as read" action in in-app messages could affect other users' data. (#6926) by @sheldon66
-
[Workflow: Custom action event] Avoid plugin load order caused error by @mytharcher
-
[File storage: S3(Pro)]
-
Fix preview url and upload parameter by @mytharcher
-
Fix duplicated upload parameters by @mytharcher
-
-
[Block: Multi-step form] Fix types by @mytharcher
-
[Workflow: Approval]
-
Fix incorrect record id for ViewAction by @mytharcher
-
Fix appends and data calculation before submit approval process by @mytharcher
-
v1.6.33 - 2025-05-23
🚀 Improvements
-
[undefined] Build the full docker image (#6898) by @chenos
-
[client] Optimize the issue of pages becoming increasingly slow with use (#6888) by @zhangzhonghe
-
[Calendar] support configurable refresh button in calendar block (#6920) by @katherinehhh
-
[Workflow: Custom action event] Fix en-US locales based on zh-CN keys by @mytharcher
-
[Workflow: Approval] Support to do all todos in workflow tasks center by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Collection field: Markdown(Vditor)] markdown (Vditor) field not adapting to theme (#6919) by @katherinehhh
-
[Collection: Tree] Avoid incorrect updates to similar path prefixes during path updates (#6913) by @2013xile
-
[File manager]
-
[Workflow: mailer node] Handle undefined 'to' field and improve email recipient processing. (#6915) by @sheldon66
-
[Workflow: Custom action event]
-
Fix button perform incorrectly after a few clicks by @mytharcher
-
Fix error handler can not be matched by class by @mytharcher
-
-
[Workflow: Approval] Fix association appends calculation by @mytharcher
v1.6.32 - 2025-05-20
🐛 Bug Fixes
- [client]
v1.6.31 - 2025-05-18
🚀 Improvements
- [Workflow] Add all missed en-US locale keys (#6885) by @mytharcher
🐛 Bug Fixes
-
[database] handle empty string cells during field import to prevent errors (#6880) by @aaaaaajie
-
[client]
-
[Workflow] Fix stack limit works incorrectly for collection event (#6876) by @mytharcher
-
[Block: Action panel] Read the route basename from the scanner to adapt for the desktop environment. (#6877) by @sheldon66
-
[Workflow: Manual node] Fix render error when show unprocessed item (#6879) by @mytharcher
-
[Workflow: Approval] Fix assignees scope of delegate and add to other assignees by @mytharcher
v1.6.30 - 2025-05-15
🚀 Improvements
- [client] add more built-in size settings for read status image (#6868) by @katherinehhh
🐛 Bug Fixes
-
[File manager]
-
[Action: Export records] improve performance when deleting fields in import/export field settings (#6861) by @katherinehhh
-
[Data visualization] Chart blocks do not display when added to popups triggered from block-level actions (#6864) by @2013xile
-
[Action: Export records Pro] improve performance when deleting fields in import/export pro field settings by @katherinehhh
-
[File storage: S3(Pro)] Change to use collection field to locate storage by @mytharcher
-
[Backup manager] Fix type error in build by @mytharcher
v1.6.29 - 2025-05-13
🚀 Improvements
- [Workflow] Allow to revision more than one draft (#6851) by @mytharcher
🐛 Bug Fixes
-
[Action: Export records] Fixed exporting empty values in nested associations and attachment url (#6845) by @aaaaaajie
-
[Workflow: Manual node] Fix stats number count wrong on tasks (#6783) by @mytharcher
-
[Workflow: test kit] Fix failed test cases due to required preset plugin (#6839) by @mytharcher
-
[Data visualization] Fix error when filtering nested m2m fields (#6855) by @2013xile
-
[Workflow: Subflow] Fix undefined trigger caused page crash by @mytharcher
-
[File storage: S3(Pro)] access url expiration invalid by @jiannx
-
[Workflow: Approval] Fix stats number count wrong on tasks by @mytharcher
v1.6.28 - 2025-05-09
🐛 Bug Fixes
-
[database] Import failed due to text field values. (#6699) by @aaaaaajie
-
[client] The hidden fields are still displayed (#6844) by @zhangzhonghe
-
[Action: Export records] Fix the error of exporting long texts. (#6713) by @aaaaaajie
-
[Workflow: Post-action event] Fix user acted variable not accessible in Hanldebars template (#6837) by @mytharcher
-
[Block: Action panel] The color of the Action panel is incorrect in dark mode (#6842) by @zhangzhonghe
-
[Action: Export records Pro] Fix the error of exporting long texts. by @aaaaaajie
v1.6.27 - 2025-05-08
🐛 Bug Fixes
- [client]
v1.6.26 - 2025-05-07
🎉 New Features
-
[Block: iframe] Iframe block supports configuring the allow attribute (#6824) by @zhangzhonghe
-
[Template print] Feature: Support
{ label, value }Select options in template printing. by @sheldon66
🐛 Bug Fixes
-
[client]
-
In nested subpages, the block list is not displayed when hovering the mouse over the "Add block" button (#6832) by @zhangzhonghe
-
When the relation field component of the filter form is changed to a data selector, there is no "Allow multiple selection" configuration item (#6656) by @zhangzhonghe
-
multiple error messages displayed when validation rule is violated in form fields (#6805) by @katherinehhh
-
issue with configuring linkage rules in subform (popup) within subtable (#6803) by @katherinehhh
-
Fix the issue where one-to-many field sub-fields cannot be selected as filtering options in filter forms (#6809) by @zhangzhonghe
-
subtable pagination bar style issue in read-only mode (#6830) by @katherinehhh
-
Table selector in the filter form, abnormal style (#6827) by @zhangzhonghe
-
-
[database]
-
[Collection field: Attachment(URL)] attachment (URL) fields should not allow value configuration in linkage rule (#6831) by @katherinehhh
-
[Workflow: Custom action event] triggered workflow action linkage issue by @katherinehhh
v1.6.25 - 2025-04-29
🎉 New Features
-
[undefined] add publish ci for license kit (#6786) by @jiannx
-
[Data visualization: ECharts] Add "Y-Axis inverse" setting for bar charts by @2013xile
🚀 Improvements
-
[utils] Increase the height of the filter button field list and sort/categorize the fields (#6779) by @zhangzhonghe
-
[client] optimize subtable add button style and align paginator on the same row (#6790) by @katherinehhh
-
[File manager] Add OSS timeout option default to 10min (#6795) by @mytharcher
-
[Password policy] Change default password expiration to never expire by @2013xile
-
[WeCom] Prioritize corporate email over personal email when updating the user's email by @2013xile
🐛 Bug Fixes
-
[client]
-
In the collapse block, clicking the clear button in the relationship field search box should not delete the data range (#6782) by @zhangzhonghe
-
association field not submitting data when displaying field from related collection (#6798) by @katherinehhh
-
Prohibit moving menus before or after page tabs (#6777) by @zhangzhonghe
-
Table block displays duplicate data when filtering (#6792) by @zhangzhonghe
-
In the filter form, switching the field operator and then refreshing the page causes an error (#6781) by @zhangzhonghe
-
-
[database]
-
[create-nocobase-app] Temporarily fix mariadb issue by downgrading to 2.5.6 (#6762) by @chenos
-
[Authentication] Disallow changing authenticator name (#6808) by @2013xile
-
[Template print] Fix: Correct permission validation logic to prevent unauthorized actions. by @sheldon66
-
[File storage: S3(Pro)] access url expiration invalid by @jiannx
-
[Block: Tree] After connecting through a foreign key, clicking to trigger filtering results in empty filter conditions by @zhangzhonghe
v1.6.24 - 2025-04-24
🚀 Improvements
- [client] Adjust upload message (#6757) by @mytharcher
🐛 Bug Fixes
- [client]
-
only export action in view collection is support when writableView is false (#6763) by @katherinehhh
-
unexpected association data creation when displaying association field under sub-form/sub-table in create form (#6727) by @katherinehhh
-
Incorrect data retrieved for many-to-many array fields from related tables in forms (#6744) by @2013xile
-
v1.6.23 - 2025-04-23
🚀 Improvements
-
[cli] Optimize internal logic of the
nocobase upgradecommand (#6754) by @chenos -
[Template print] Replaced datasource action control with client role-based access control. by @sheldon66
🐛 Bug Fixes
-
[cli] Auto-update package.json on upgrade (#6747) by @chenos
-
[client]
-
[Action: Import records] Fix the import and export exceptions that occur when setting field permissions. (#6677) by @aaaaaajie
-
[Block: Gantt] gantt chart block overlapping months in calendar header for month view (#6753) by @katherinehhh
-
[Action: Export records Pro]
-
pro export button losing filter parameters after sorting table column by @katherinehhh
-
Fix the import and export exceptions that occur when setting field permissions. by @aaaaaajie
-
-
[File storage: S3(Pro)] Fix response data of uploaded file by @mytharcher
-
[Workflow: Approval] Fix preload association fields for records by @mytharcher
v1.6.22 - 2025-04-22
🚀 Improvements
-
[create-nocobase-app] Upgrade dependencies and remove SQLite support (#6708) by @chenos
-
[File manager] Expose utils API (#6705) by @mytharcher
-
[Workflow] Add date types to variable types set (#6717) by @mytharcher
🐛 Bug Fixes
-
[client]
-
The problem of mobile top navigation bar icons being difficult to delete (#6734) by @zhangzhonghe
-
After connecting through a foreign key, clicking to trigger filtering results in empty filter conditions (#6634) by @zhangzhonghe
-
picker switching issue in date field of filter button (#6695) by @katherinehhh
-
The issue of the collapse button in the left menu being obscured by the workflow pop-up window (#6733) by @zhangzhonghe
-
missing action option constraints when reopening linkage rules (#6723) by @katherinehhh
-
export button shown without export permission (#6689) by @katherinehhh
-
Required fields hidden by linkage rules should not affect form submission (#6709) by @zhangzhonghe
-
-
[server] appVersion incorrectly generated by create-migration (#6740) by @chenos
-
[build] Fix error thrown in tar command (#6722) by @mytharcher
-
[Workflow] Fix error thrown when execute schedule event in subflow (#6721) by @mytharcher
-
[Workflow: Custom action event] Support to execute in multiple records mode by @mytharcher
-
[File storage: S3(Pro)] Add multer make logic for server-side upload by @mytharcher
v1.6.21 - 2025-04-17
🚀 Improvements
-
[client] Add delay API for scenarios which open without delay (#6681) by @mytharcher
-
[create-nocobase-app] Upgrade some dependencies to latest versions (#6673) by @chenos
🐛 Bug Fixes
-
[client]
-
Fix error thrown when mouse hover on referenced template block in approval node configuration (#6691) by @mytharcher
-
custom association field not displaying field component settings (#6692) by @katherinehhh
-
Fix locale for upload component (#6682) by @mytharcher
-
lazy load missing ui component will cause render error (#6683) by @gchust
-
Add native Password component to HoC Input (#6679) by @mytharcher
-
inherited fields shown in current collection field assignment list (#6666) by @katherinehhh
-
-
[database] Fixed ci build error (#6687) by @aaaaaajie
-
[build] build output is incorrect when plugin depends on some AMD libraries (#6665) by @gchust
-
[Action: Import records] fixed an error importing xlsx time field (#6672) by @aaaaaajie
-
[Workflow: Manual node] Fix manual task status constant (#6676) by @mytharcher
-
[Block: iframe] vertical scrollbar appears when iframe block is set to full height (#6675) by @katherinehhh
-
[Workflow: Custom action event] Fix test cases by @mytharcher
-
[Backup manager] timeout error occurs when trying to restore an unecrypted backup with a password by @gchust
v1.6.20 - 2025-04-14
🎉 New Features
- [Departments] Make Department, Attachment URL, and Workflow response message plugins free (#6663) by @chenos
🐛 Bug Fixes
-
[client]
-
The filter form should not display the "Unsaved changes" prompt (#6657) by @zhangzhonghe
-
"allow multiple" option not working for relation field (#6661) by @katherinehhh
-
In the filter form, when the filter button is clicked, if there are fields that have not passed validation, the filtering is still triggered (#6659) by @zhangzhonghe
-
Switching to the group menu should not jump to a page that has already been hidden in menu (#6654) by @zhangzhonghe
-
-
[File storage: S3(Pro)]
-
Organize language by @jiannx
-
Individual baseurl and public settings, improve S3 pro storage config UX by @jiannx
-
-
[Migration manager] the skip auto backup option becomes invalid if environment variable popup appears during migration by @gchust
v1.6.19 - 2025-04-14
🐛 Bug Fixes
- [client]
v1.6.18 - 2025-04-11
🚀 Improvements
-
[client]
-
[Workflow: Delay node] Support to use variable for duration (#6621) by @mytharcher
-
[Workflow: Custom action event] Add refresh settings for trigger workflow button by @mytharcher
🐛 Bug Fixes
-
[client]
-
[File storage: S3(Pro)] Fix missing await for next call. by @jiannx
-
[Email manager] Fix missing await for next call. by @jiannx
v1.6.17 - 2025-04-09
🚀 Improvements
-
[utils] Add duration extension for dayjs (#6630) by @mytharcher
-
[client]
-
[Error handler] Support custom title in AppError component. (#6409) by @sheldon66
-
[IP restriction] Update IP restriction message content. by @sheldon66
-
[File storage: S3(Pro)] Support global variables in storage configuration by @mytharcher
🐛 Bug Fixes
-
[client]
-
rule with 'any' condition does not take effect when condition list is empty (#6628) by @katherinehhh
-
data issue with Gantt block in tree collection (#6617) by @katherinehhh
-
The relationship fields in the filter form report an error after the page is refreshed because x-data-source is not carried (#6619) by @zhangzhonghe
-
variable parse failure when URL parameters contain Chinese characters (#6618) by @katherinehhh
-
-
[Users] Issue with parsing the user profile form schema (#6635) by @2013xile
-
[Mobile] single-select field with 'contains' filter on mobile does not support multiple selection (#6629) by @katherinehhh
-
[Action: Export records] missing filter params when exporting data after changing pagination (#6633) by @katherinehhh
-
[Email manager] fix email management permission cannot view email list by @jiannx
-
[File storage: S3(Pro)] Throw error to user when upload logo to S3 Pro storage (set to default) by @mytharcher
-
[Workflow: Approval] Fix
updatedAtchanged after migration by @mytharcher -
[Migration manager] migration log creation time is displayed incorrectly in some environments by @gchust
v1.6.16 - 2025-04-03
🐛 Bug Fixes
-
[client]
-
[database] When deleting one-to-many records, both
filterandfilterByTkare passed andfilterincludes an association field, thefilterByTkis ignored (#6606) by @2013xile
v1.6.15 - 2025-04-01
🚀 Improvements
-
[database]
-
[File manager] Add trim option for text fields of storages collection (#6604) by @mytharcher
-
[Workflow] Improve code (#6589) by @mytharcher
-
[Workflow: Approval] Support to use block template for approval process form by @mytharcher
🐛 Bug Fixes
-
[database] Avoid "datetimeNoTz" field changes when value not changed in updating record (#6588) by @mytharcher
-
[client]
-
association field (select) displaying N/A when exposing related collection fields (#6582) by @katherinehhh
-
Fix
disabledproperty not works whenSchemaInitializerItemhasitems(#6597) by @mytharcher -
cascade issue: 'The value of xxx cannot be in array format' when deleting and re-selecting (#6585) by @katherinehhh
-
-
[Collection field: Many to many (array)] Issue of filtering by fields in an association collection with a many to many (array) field (#6596) by @2013xile
-
[Public forms] View permissions include list and get (#6607) by @chenos
-
[Authentication] token assignment in
AuthProvider(#6593) by @2013xile -
[Workflow] Fix sync option display incorrectly (#6595) by @mytharcher
-
[Block: Map] map management validation should not pass with space input (#6575) by @katherinehhh
-
[Workflow: Approval]
-
Fix client variables to use in approval form by @mytharcher
-
Fix branch mode when
endOnRejectconfigured astrueby @mytharcher
-
v1.6.14 - 2025-03-29
🐛 Bug Fixes
-
[Calendar] missing data on boundary dates in weekly calendar view (#6587) by @katherinehhh
-
[Auth: OIDC] Incorrect redirection occurs when the callback path is the string 'null' by @2013xile
-
[Workflow: Approval] Fix approval node configuration is incorrect after schema changed by @mytharcher
v1.6.13 - 2025-03-28
🚀 Improvements
-
[Async task manager] optimize import/export buttons in Pro (#6531) by @chenos
-
[Action: Export records Pro] optimize import/export buttons in Pro by @katherinehhh
-
[Migration manager] allow skip automatic backup and restore for migration by @gchust
🐛 Bug Fixes
-
[client] linkage conflict between same-named association fields in different sub-tables within the same form (#6577) by @katherinehhh
-
[Action: Batch edit] Click the batch edit button, configure the pop-up window, and then open it again, the pop-up window is blank (#6578) by @zhangzhonghe
v1.6.12 - 2025-03-27
🐛 Bug Fixes
-
[Block: Multi-step form]
-
the submit button has the same color in its default and highlighted by @jiannx
-
fixed the bug that form reset is invalid when the field is associated with other field by @jiannx
-
-
[Workflow: Approval] Fix approval form values to submit by @mytharcher
v1.6.11 - 2025-03-27
🚀 Improvements
-
[client]
-
[Collection field: Sequence] support setting sequence as the title field for calendar block (#6562) by @katherinehhh
-
[Workflow: Approval] Support to skip validator in settings by @mytharcher
🐛 Bug Fixes
-
[client]
-
[API documentation] API document page cannot scroll (#6566) by @zhangzhonghe
-
[Workflow] Make sure workflow key is generated before save (#6567) by @mytharcher
-
[Workflow: Post-action event] Multiple records in bulk action should trigger multiple times (#6559) by @mytharcher
-
[Authentication] Localization issue for fields of sign up page (#6556) by @2013xile
-
[Public forms] issue with public form page title displaying 'Loading...' (#6569) by @katherinehhh
v1.6.10 - 2025-03-25
🐛 Bug Fixes
-
[client]
-
Unable to use 'Current User' variable when adding a link page (#6536) by @zhangzhonghe
-
field assignment with null value is ineffective (#6549) by @katherinehhh
-
yarn doccommand error (#6540) by @gchust -
Remove the 'Allow multiple selection' option from dropdown single-select fields in filter forms (#6515) by @zhangzhonghe
-
Relational field's data range linkage is not effective (#6530) by @zhangzhonghe
-
-
[Collection: Tree] Migration issue for plugin-collection-tree (#6537) by @2013xile
-
[Action: Custom request] Unable to download UTF-8 encoded files (#6541) by @2013xile
v1.6.9 - 2025-03-23
🐛 Bug Fixes
- [client] action button transparency causing setting display issue on hover (#6529) by @katherinehhh
v1.6.8 - 2025-03-22
🐛 Bug Fixes
-
[server] The upgrade command may cause workflow errors (#6524) by @gchust
-
[client] the height of the subtable in the form is set along with the form height (#6518) by @katherinehhh
-
[Authentication]
-
[Block: Map] map block key management issue causing request failures due to invisible characters (#6521) by @katherinehhh
-
[Backup manager] Restoration may cause workflow execution errors by @gchust
-
[WeCom] Resolve environment variables and secrets when retrieving notification configuration. by @2013xile
v1.6.7 - 2025-03-20
🚀 Improvements
-
[Workflow: mailer node] Add secure field config description. (#6510) by @sheldon66
-
[Notification: Email] Add secure field config description. (#6501) by @sheldon66
-
[Calendar] Calendar plugin with optional settings to enable or disable quick event creation (#6391) by @Cyx649312038
🐛 Bug Fixes
-
[client] time field submission error in Chinese locale (invalid input syntax for type time) (#6511) by @katherinehhh
-
[File manager] Unable to access files stored in COS (#6512) by @chenos
-
[Block: Map] secret key fields not triggering validation in map management (#6509) by @katherinehhh
-
[WEB client] The path in the route management table is different from the actual path (#6483) by @zhangzhonghe
-
[Action: Export records Pro] Unable to export attachments by @chenos
-
[Workflow: Approval]
-
Fix null user caused crash by @mytharcher
-
Fix error thrown when add query node result by @mytharcher
-
v1.6.6 - 2025-03-18
🎉 New Features
-
[client] support long text fields as title fields for association field (#6495) by @katherinehhh
-
[Workflow: Aggregate node] Support to configure precision for aggregation result (#6491) by @mytharcher
🚀 Improvements
- [File storage: S3(Pro)] Change the text 'Access URL Base' to 'Base URL' by @zhangzhonghe
🐛 Bug Fixes
-
[evaluators] Revert round decimal places to 9 (#6492) by @mytharcher
-
[File manager] encode url (#6497) by @chenos
-
[Data source: Main] Unable to create a MySQL view. (#6477) by @aaaaaajie
-
[Workflow] Fix legacy tasks count after workflow deleted (#6493) by @mytharcher
-
[Embed NocoBase] Page displays blank by @zhangzhonghe
-
[Backup manager]
-
Upload files have not been restored when creating sub-app from backup template by @gchust
-
MySQL database restore failure caused by GTID set overlap by @gchust
-
-
[Workflow: Approval]
-
Change returned approval as todo by @mytharcher
-
Fix action button missed in process table by @mytharcher
-
v1.6.5 - 2025-03-17
🚀 Improvements
-
[File manager] Simplify file URL generating logic and API (#6472) by @mytharcher
-
[File storage: S3(Pro)] Change to a simple way to generate file URL by @mytharcher
-
[Backup manager] Allow restore backup between pre release and release version of the same version by @gchust
🐛 Bug Fixes
-
[client]
-
rich text field not clearing data on submission (#6486) by @katherinehhh
-
The color of the icons in the upper right corner of the page does not change with the theme (#6482) by @zhangzhonghe
-
Clicking the reset button on the filter form cannot clear the filtering conditions of the grid card block (#6475) by @zhangzhonghe
-
-
[Workflow: Manual node]
-
[Workflow: Aggregate node] Fix round on null result (#6473) by @mytharcher
-
[Workflow] Don't count tasks when workflow deleted (#6474) by @mytharcher
-
[Backup manager] Not able to start server when missing default backup settings by @gchust
-
[Workflow: Approval]
-
Fix file association field error in process form by @mytharcher
-
Fix tasks count based on hooks by @mytharcher
-
v1.6.4 - 2025-03-14
🎉 New Features
- [client] Cascade Selection Component Add Data Scope Setting (#6386) by @Cyx649312038
🚀 Improvements
- [utils] Move
md5to utils (#6468) by @mytharcher
🐛 Bug Fixes
-
[client] In the tree block, when unchecked, the data in the data block is not being cleared (#6460) by @zhangzhonghe
-
[File manager] Unable to delete files stored in S3. (#6467) by @chenos
-
[Workflow] Remove bind workflow settings button from data picker (#6455) by @mytharcher
-
[File storage: S3(Pro)] Resolve issue with inaccessible S3 Pro signed URLs by @chenos
-
[Workflow: Approval] Avoid page crash when no applicant in approval process table by @mytharcher
v1.6.3 - 2025-03-13
🎉 New Features
- [WeCom] Allows setting a custom tooltip for the sign-in button by @2013xile
🐛 Bug Fixes
-
[client]
-
[Workflow: Manual node] Fix error thrown in migration (#6445) by @mytharcher
-
[Data visualization] Removed fields appear when adding custom filter fields (#6450) by @2013xile
-
[File manager] Fix a few issues of file manager (#6436) by @mytharcher
-
[Action: Custom request] custom request server-side permission validation error (#6438) by @katherinehhh
-
[Data source manager] switching data source in role management does not load corresponding collections (#6431) by @katherinehhh
-
[Action: Batch edit] Fix workflow can not be triggered in bulk edit submission (#6440) by @mytharcher
-
[Workflow: Custom action event] Remove
onlyin E2E test case by @mytharcher -
[Workflow: Approval]
-
Fix association data not showing in approval form by @mytharcher
-
Fix error thrown when approve on external data source by @mytharcher
-
v1.6.2 - 2025-03-12
🐛 Bug Fixes
-
[client] date field range selection excludes the max date (#6418) by @katherinehhh
-
[Notification: In-app message] Avoid wrong receivers configuration query all users (#6424) by @sheldon66
-
[Workflow: Manual node]
v1.6.1 - 2025-03-11
🐛 Bug Fixes
-
[client]
-
[Notification: In-app message] Differentiate the in-app message list background color from the message cards to enhance visual hierarchy and readability. (#6417) by @sheldon66
v1.6.0 - 2025-03-11
New Features
Cluster Mode
The Enterprise edition supports cluster mode deployment via relevant plugins. When the application runs in cluster mode, it can leverage multiple instances and multi-core processing to improve its performance in handling concurrent access.
Reference: Deployment - Cluster Mode
Password Policy
A password policy is established for all users, including rules for password complexity, validity periods, and login security strategies, along with the management of locked accounts.
Reference: Password Policy
Token Policy
The Token Security Policy is a function configuration designed to protect system security and enhance user experience. It includes three main configuration items: "session validity," "token effective period," and "expired token refresh limit."
Reference: Token Policy
IP Restriction
NocoBase allows administrators to set up an IP allowlist or blacklist for user access to restrict unauthorized external network connections or block known malicious IP addresses, thereby reducing security risks. It also supports querying access denial logs to identify risky IPs.
Reference: IP Restriction
Environment Variables
Centralized configuration and management of environment variables and secrets are provided for sensitive data storage, configuration reuse, environment isolation, and more.
Reference: Environment Variables
Release Management
This feature allows you to migrate application configurations from one environment to another.
Reference: Release Management
Route Management
- Menu Data Separated and Renamed to Routes: The menu data has been decoupled from the UI Schema and renamed as "routes." It is divided into two tables, desktopRoutes and mobileRoutes, which correspond to desktop and mobile routes respectively.
- Frontend Menu Optimization with Collapse and Responsive Support: The frontend menu now supports collapse functionality and responsive design for an improved user experience.
Reference: Routes
Roles and Permissions
User Management
Supports customization of user profile forms.
Workflow
An entry for the workflow to-do center has been added to the global toolbar, providing real-time notifications for manual nodes and pending approval tasks.
Workflow: Custom Action Events
Supports triggering custom action events both globally and in batch actions.
Workflow: Approval
- Supports transferring approval responsibilities and adding extra approvers.

- Allows approvers to modify the application content when submitting an approval.

- Supports configuration of a basic information block within the approval interface.
- Optimizes the style and interaction of initiating approvals and viewing pending tasks, with these improvements also integrated into the global process to-do center.

- No longer distinguishes the location where the approval is initiated; the approval center block can both initiate and process all approvals.
Workflow: JSON Variable Mapping Node
A new dedicated node has been added to map JSON data from upstream node results into variables.
Reference: JSON Variable Mapping
Capability Enhancements and Plugin Examples
| Extension | Plugin Example |
|---|---|
| Data Source Custom Preset Fields | @nocobase-sample/plugin-data-source-main-custom-preset-fields |
| Calendar Register Color Field | @nocobase-sample/plugin-calendar-register-color-field |
| Calendar Register Title Field | @nocobase-sample/plugin-calendar-register-title-field |
| Formula Register Expression Field | @nocobase-sample/plugin-field-formula-register-expression-field |
| Kanban Register Group Field | @nocobase-sample/plugin-kanban-register-group-field |
| Register Filter Operator | @nocobase-sample/plugin-register-filter-operator |
| File Storage Extension | @nocobase-sample/plugin-file-storage-demo |
Breaking Changes
Update to Token Policy
In version 1.6, a new Token Policy was introduced. When authentication fails, a 401 error will be returned along with a redirection to the login page. This behavior differs from previous versions. To bypass the check, refer to the following examples:
Frontend Request:
useRequest({
url: '/test',
skipAuth: true,
});
api.request({
url: '/test',
skipAuth: true,
});
Backend Middleware:
class PluginMiddlewareExampleServer extends plugin {
middlewareExample = (ctx, next) => {
if (ctx.path === '/path/to') {
ctx.skipAuthCheck = true;
}
await next();
};
async load() {
this.app.dataSourceManager.afterAddDataSource((dataSource) => {
dataSource.resourceManager.use(this.middlewareExample, {
before: 'auth',
});
});
}
}
Unit Test Function agent.login Changed from Synchronous to Asynchronous
Due to several asynchronous operations required in the authentication process, the test function login is now asynchronous. Example:
import { createMockServer } from '@nocobase/test';
describe('my db suite', () => {
let app;
let agent;
beforeEach(async () => {
app = await createMockServer({
registerActions: true,
acl: true,
plugins: ['users', 'auth', 'acl'],
});
agent = await app.agent().login(1);
});
test('case1', async () => {
await agent.get('/examples');
await agent.get('/examples');
await agent.resource('examples').create();
});
});
New Extension API for User Center Settings Items
API:
type UserCenterSettingsItemOptions = SchemaSettingsItemType & { aclSnippet?: string };
class Application {
addUserCenterSettingsItem(options: UserCenterSettingsItemOptions);
}
Example:
class PluginUserCenterSettingsExampleClient extends plugin {
async load() {
this.app.addUserCenterSettingsItem({
name: 'nickName',
Component: NickName,
sort: 0,
});
}
}
v1.5.25 - 2025-03-09
🐛 Bug Fixes
-
[server] Incorrect browser cache after running
yarn startcommand (#6394) by @gchust -
[Workflow: Approval] Avoid wrong assignees configuration query all users by @mytharcher
-
[WeCom] fix login prompt link and dingtalk login error by @chenzhizdt
v1.5.24 - 2025-03-07
🎉 New Features
- [Data visualization] Support NULLS sorting in chart queries (#6383) by @2013xile
🚀 Improvements
- [Workflow] Allow skip to trigger collection workflow in database event (#6379) by @mytharcher
🐛 Bug Fixes
-
[Action: Import records Pro] Use additional option to determine whether to trigger workflow or not by @mytharcher
-
[Action: Export records Pro] pro export action missing sort params by @katherinehhh
v1.5.23 - 2025-03-06
🐛 Bug Fixes
- [client]
v1.5.22 - 2025-03-06
🚀 Improvements
- [client] Add debounce handling to buttons (#6351) by @Cyx649312038
🐛 Bug Fixes
- [database] Fix error when retrieving relation collection records if the source key in relation fields is a numeric string (#6360) by @2013xile
v1.5.21 - 2025-03-05
🚀 Improvements
-
[Workflow] Lazy load job result for better performance (#6344) by @mytharcher
-
[Workflow: Aggregate node] Add round process for aggregated number based on double type (#6358) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[Workflow] Fix acl for getting job (#6352) by @mytharcher
v1.5.20 - 2025-03-03
🐛 Bug Fixes
-
[client] Pages with custom favicon briefly flash the NocoBase favicon during loading (#6337) by @zhangzhonghe
-
[Block: Map] Configuration settings for map field are missing/not visible (#6336) by @zhangzhonghe
-
[Custom brand] Pages with custom favicon briefly flash the NocoBase favicon during loading by @zhangzhonghe
-
[Template print] Restore from local failed when action template print and backup manager plugins were both enabled by @gchust
v1.5.19 - 2025-03-01
🐛 Bug Fixes
-
[client] add new button appears on hover in association field read-only mode (#6322) by @katherinehhh
-
[Action: Export records Pro] remove 'add block' option in export attachment button settings by @katherinehhh
-
[Action: Import records Pro] association block import button duplicate record detection shows no data in field dropdown by @katherinehhh
v1.5.18 - 2025-02-27
🐛 Bug Fixes
- [Block: Action panel] Setting the height of the action panel is invalid (#6321) by @zhangzhonghe
v1.5.17 - 2025-02-27
🐛 Bug Fixes
-
[client]
-
error when creating comment block without comment collection (#6309) by @katherinehhh
-
Error occurs when clicking tree block node (#6314) by @zhangzhonghe
-
After clicking the left menu, the sub-page is abnormally closed (#6305) by @zhangzhonghe
-
Do not clear field value when the expression value is empty (#6300) by @zhangzhonghe
-
-
[Collection field: Sequence] Fix sequence field not disabled when on read-only mode (#6274) by @mytharcher
-
[File manager] Fix migration for inherited collection (#6310) by @mytharcher
-
[Access control] Incorrect data records when using many to many fields as data scope in collection permissions (#6304) by @2013xile
-
[Block: Kanban] Incorrect data filtering in popup Kanban block using popup record variables (#6290) by @katherinehhh
-
[Block: Tree] Error occurs when clicking tree block node by @zhangzhonghe
v1.5.16 - 2025-02-26
🚀 Improvements
- [Backup manager] Allow restoring backup to an application even it is missing some plugins by @gchust
🐛 Bug Fixes
-
[client] rich text field component cannot be fully cleared (#6287) by @katherinehhh
-
[File manager]
v1.5.15 - 2025-02-25
🚀 Improvements
-
[File manager]
-
[Block: Action panel] Optimize mobile styles (#6270) by @zhangzhonghe
🐛 Bug Fixes
- [cli] Improve internal logic of nocobase upgrade command (#6280) by @chenos
v1.5.14 - 2025-02-24
🐛 Bug Fixes
- [Backup manager] The delete icon of the restore from local operation dialog is not working by @gchust
v1.5.13 - 2025-02-22
🐛 Bug Fixes
-
[client] Fix uploaded file missed when one by one (#6260) by @mytharcher
-
[Workflow: Pre-action event] Fix error message from response message node not shown by @mytharcher
v1.5.12 - 2025-02-21
🚀 Improvements
- [Workflow] Hide node id from node card in workflow canvas (#6251) by @mytharcher
🐛 Bug Fixes
- [File manager] Upgrade AWS SDK version to fix MinIO upload bug (#6253) by @mytharcher
v1.5.11 - 2025-02-20
🎉 New Features
- [Workflow] Support to extend group of instruction in workflow (#6237) by @mytharcher Reference: Extends Node Group
🐛 Bug Fixes
-
[client]
-
[Workflow]
v1.5.10 - 2025-02-17
🚀 Improvements
- [Collection field: Markdown(Vditor)] Vditor CDN use local resources (#6229) by @chenos
🐛 Bug Fixes
- [Workflow: Loop node] Fix loop exit earlier when node inside pending (#6236) by @mytharcher
v1.5.9 - 2025-02-17
🐛 Bug Fixes
-
[client]
-
[Data visualization] Filterting error occurs when the data source name contains a hyphen
-(#6231) by @2013xile
v1.5.8 - 2025-02-16
🐛 Bug Fixes
-
[client]
-
[Mobile] Mobile menu data is incomplete in permission configuration table (#6219) by @zhangzhonghe
v1.5.7 - 2025-02-13
🚀 Improvements
- [Notification: In-app message] Remove console error logging for SSE connection retries. (#6205) by @sheldon66
🐛 Bug Fixes
-
[client]
-
missing drag setting in relation data quick-create operation modal (#6201) by @katherinehhh
-
issue with high precision number formatting not applying (#6202) by @katherinehhh
-
Fix an issue where clearing a association field in a form doesn't actually clear the field value when submitting the form (#5540) by @zhangzhonghe
-
Block does not refresh after form submission (#6206) by @zhangzhonghe
-
linked field value persisting on submission after relation field reset (#6207) by @katherinehhh
-
update action displaying for rows without update permissions in table (#6204) by @katherinehhh
-
-
[Collection field: Sort] Fix sort field type not registered in external data source (#6212) by @mytharcher
-
[Authentication] WebSocket authentication issue (#6209) by @2013xile
-
[Collection field: Attachment(URL)] Fix deprecated request URL in hook by @mytharcher
v1.5.6 - 2025-02-12
🐛 Bug Fixes
-
[client]
-
[Action: Custom request]
-
[Data visualization] Chart blocks do not display when added to the popups of action panel (#6198) by @2013xile
v1.5.5 - 2025-02-11
🚀 Improvements
- [Notification: In-app message] Add test for retrieving latest message title and timestamp in in-app channels. (#6189) by @sheldon66
v1.5.4 - 2025-02-10
🚀 Improvements
- [Workflow] Add loading to duplicate action (#6179) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[utils] optimize the storage/plugins reading logic (#6186) by @chenos
-
[Notification: In-app message] Fix: Add user filter to message timestamp and title subqueries in channel list API to ensure data isolation. (#6185) by @deepure
-
[Backup manager] Files were not copied from the backup to the uploads folder during tolerant mode restore by @gchust
v1.5.3 - 2025-02-07
🐛 Bug Fixes
- [client]
-
The popup opened by clicking the belongsToArray field is fetching incorrect data (#6173) by @zhangzhonghe
-
time field operator set to "between" in filter form, but component didn't change to time range picker (#6170) by @katherinehhh
-
Kanban and calendar block popup edit form didn't show "Unsaved changes" (#6172) by @katherinehhh
-
v1.5.2 - 2025-02-06
🚀 Improvements
- [Mobile] Hide mobile config page header when no config permission (#6171) by @zhangzhonghe
🐛 Bug Fixes
-
[Workflow: notification node] Ensured notifications are sent correctly when user input contains Handlebars-like syntax. (#6164) by @sheldon66
-
[Workflow: Manual node] Fix form values not parsed in terminal button submitting (#6160) by @mytharcher
v1.5.1 - 2025-02-06
🐛 Bug Fixes
- [client]
v1.5.0 - 2025-02-05
Core Optimizations
Enable Links in Single-line Text Fields
The open mode supports drawer, dialog and page.
Association Block Supports Associate/Disassociate Actions
You can now perform association and disassociation actions directly in the association block.
Debugging Workflow
You can now directly trigger workflows during configuration to debug them.
Improved Mobile Interaction for Date Components
Enhanced interaction experience for date-related components on mobile devices.
Frontend Performance Optimizations
- Optimized initial screen load speed.
- Changed the frontend build tool to rspack.
- Reduced the bundle size of entry files for various plugin packages.
- Enhanced rendering performance for large data tables.
- Reduced stuttering during menu transitions.
- Introduced on-demand loading methods with the new
lazyanduseLazylibraries.
Below is a brief introduction to using lazy and useLazy:
import { lazy, useLazy } from '@nocobase/client';
// Export a single component:
const { RolesManagement } = lazy(() => import('./RolesManagement'), 'RolesManagement');
// Export multiple components:
const { AuthLayout, SignInPage, SignUpPage } = lazy(() => import('./pages'), 'AuthLayout', 'SignInPage', 'SignUpPage');
// Export a default component:
const ThemeList = lazy(() => import('./components/ThemeList'));
// Return a hook:
const useReactToPrint = useLazy<typeof import('react-to-print').useReactToPrint>(
() => import('react-to-print'),
'useReactToPrint',
);
// Return a library:
const parseExpression = useLazy<typeof import('cron-parser').parseExpression>(
() => import('cron-parser'),
'parseExpression',
);
New Plugins
Import Pro
Supports asynchronous import operations that run on a separate thread. This feature enables the import of large volumes of data with enhanced performance.
Reference: Import Pro
Export Pro
Enables asynchronous export operations that run on a separate thread, supporting large-scale data exports as well as attachment exports.
Reference: Export Pro
Template Print
The Template Printing plugin allows you to edit template files using Word, Excel, or PowerPoint (supporting the .docx, .xlsx, and .pptx formats). By setting placeholders and logical structures within the template, you can dynamically generate files in predetermined formats such as .docx, .xlsx, .pptx, and even .pdf. This functionality is widely applicable for creating various business documents, including quotes, invoices, contracts, and more.
Main Features
- Multi-format Support: Compatible with Word, Excel, and PowerPoint templates to meet diverse document generation needs.
- Dynamic Data Filling: Automatically populates document content based on defined placeholders and logic.
- Flexible Template Management: Easily add, edit, delete, and categorize templates for better maintenance and usage.
- Rich Template Syntax: Supports basic replacement, array access, loops, conditional output, and other template syntax for complex document generation.
- Formatter Support: Provides conditional outputs, date formatting, number formatting, and more to enhance document clarity and professionalism.
- Efficient Output Options: Supports direct PDF generation for easy sharing and printing.
Reference: Template Print
Audit Logger
This plugin records and tracks user activities as well as resource operation histories within the system.
Reference: Audit Logger
Workflow: Subflow
This feature allows one workflow to call another process. You can use variables from the current workflow as input for the subflow, and then use the subflow’s output as variables in subsequent nodes.
Reference: Workflow: Subflow
Email Manager
Integrate your Google or Microsoft email accounts into NocoBase to send, receive, view, and manage emails. Additionally, emails can be embedded directly into pages.
Reference: Email Manager
File Storage: S3 (Pro)
Supports file storage types that are compatible with the S3 protocol, including Amazon S3, Alibaba Cloud OSS, Tencent Cloud COS, MinIO, and more. This plugin also supports direct file uploads and private access.
Reference: File Storage: S3(Pro)
v1.4.34 - 2025-02-02
🐛 Bug Fixes
- [client] Unable to submit when selecting data (#6148) by @zhangzhonghe
v1.4.33 - 2025-01-28
🐛 Bug Fixes
- [Auth: OIDC] Set the
same-sitepolicy of state cookie tolaxby @2013xile
v1.4.32 - 2025-01-27
🐛 Bug Fixes
- [actions] Fix "move" action to trigger workflow (#6144) by @mytharcher
v1.4.31 - 2025-01-26
🚀 Improvements
-
[client] optimize filter component in filter form to match filterable settings (#6110) by @katherinehhh
-
[File manager] Allow to delete files when file (attachment) record is deleted (#6127) by @mytharcher
🐛 Bug Fixes
-
[database]
-
[client]
-
The data source management page is reporting an error (#6141) by @zhangzhonghe
-
When the linkage rule's conditions involve association fields that are not displayed, the button's linkage rule becomes ineffective (#6140) by @zhangzhonghe
-
Fix incorrect variable display in association field quick-add form (#6119) by @katherinehhh
-
The content is not displayed in the quick add popup (#6123) by @zhangzhonghe
-
Fix the issue where association field blocks do not request data (#6125) by @zhangzhonghe
-
Fix linkage rules in subtable/subform affecting blocks in association field popups (#5543) by @katherinehhh
-
-
[Collection field: administrative divisions of China] fix acl permission with chinaRegion (#6137) by @chareice
-
[Workflow] Fix incorrectly generated SQL (#6128) by @mytharcher
-
[Collection field: Many to many (array)] Fix the issue where updating many to many (array) fields in a subform is not working (#6136) by @2013xile
-
[Mobile] Fix select in read-only mode clickable and text overflow issue on mobile (#6130) by @katherinehhh
v1.4.30 - 2025-01-23
🐛 Bug Fixes
-
[client] Fix an issue with displaying N/A for association fields in Table (#6109) by @zhangzhonghe
-
[Collection: Tree] Disallow setting a node of tree collection as its own parent (#6122) by @2013xile
-
[Workflow: HTTP request node] Fix request node pending in loop (#6120) by @mytharcher
-
[Workflow: test kit] To fix mock datasource test cases depend on ACL (#6116) by @mytharcher
-
[Backup manager] Fixed an issue where some backup files could not be properly extracted and restored by @gchust
v1.4.29 - 2025-01-21
🎉 New Features
- [Block: Action panel] Support configuring the number of icons per row in the mobile action penal (#6106) by @katherinehhh
v1.4.28 - 2025-01-21
🐛 Bug Fixes
-
[client] The default value of the assocation field has not been updated (#6103) by @chenos
-
[Action: Batch edit] Remove form data template from bulk edit action form settings (#6098) by @katherinehhh
-
[Verification] Fix provider ID could be edit (#6097) by @mytharcher
v1.4.27 - 2025-01-18
🐛 Bug Fixes
-
[client] Fix the issue where block data is empty in the popup window on the embedded page (#6086) by @zhangzhonghe
-
[Workflow] Fix dispatch not process in preparing phase (#6087) by @mytharcher
v1.4.26 - 2025-01-16
🚀 Improvements
-
[client] Allows to add descriptions for SQL collections (#6081) by @2013xile
-
[resourcer] Allow empty object as values in action (#6070) by @mytharcher
🐛 Bug Fixes
- [Localization] Avoid API request when attempting to delete an empty translation (#6078) by @2013xile
v1.4.25 - 2025-01-15
🚀 Improvements
-
[client] Improve the extensibility of file-storage (#6071) by @chenos
-
[Workflow] Fix repeat field component in schedule configuration (#6067) by @mytharcher
🐛 Bug Fixes
-
[Mobile] Fix the issue of bottom buttons being obscured on mobile devices (#6068) by @zhangzhonghe
-
[Workflow: Custom action event] Fix context for http collection by @mytharcher
-
[Backup manager] Fixed a possible backup error when the collection-fdw plugin is not enabled by @gchust
-
[Departments] Fix custom action event cannot be triggered on departments collection by @mytharcher
v1.4.24 - 2025-01-14
🚀 Improvements
- [client] datePicker component input read only (#6061) by @Cyx649312038
🐛 Bug Fixes
-
[client]
-
Fix incorrect loading of modal association fields in table block (#6060) by @katherinehhh
-
Fix style issue in sub-table in detail block (#6049) by @katherinehhh
-
Fix number field format in readPretty mode affecting edit mode (#6050) by @katherinehhh
-
Fix table header cell style issue in ant-table (#6052) by @katherinehhh
-
-
[database] fix an issue when init sort field with primary key (#6059) by @chareice
-
[Data visualization] Remove the
LIMITclause when using aggregate functions without setting dimensions in chart queries (#6062) by @2013xile -
[Backup manager] Fixed backup download error for users only logged into sub-app by @gchust
v1.4.23 - 2025-01-13
🐛 Bug Fixes
-
[client] Fix the issue where fixed actions column are not working properly in tables (#6048) by @zhangzhonghe
-
[Users] Disable browser autofill when setting passwords for users in user management (#6041) by @2013xile
-
[Workflow] Fix date field based schedule event not triggers after app started (#6042) by @mytharcher
v1.4.22 - 2025-01-10
🚀 Improvements
-
[evaluators] Upgrade version of library formula.js to 4.4.9 (#6037) by @mytharcher
-
[Workflow] Fix logger API of workflow plugin (#6036) by @mytharcher
🐛 Bug Fixes
- [Workflow] Add defensive logic to avoid duplicate triggering (#6022) by @mytharcher
v1.4.21 - 2025-01-10
🚀 Improvements
- [client] Support linkage rules in the details block to hide(reserved value) (#6031) by @katherinehhh
🐛 Bug Fixes
-
[client]
-
[Backup manager] Fixed backup download failure when env API_BASE_PATH is not /api by @gchust
v1.4.20 - 2025-01-09
🎉 New Features
- [client] Add app.getHref() method (#6019) by @chenos
🚀 Improvements
-
[client]
-
Allow to sort workflows when binding to action button (#6017) by @mytharcher
-
Change reference links of evaluators to doc site (#6021) by @mytharcher
-
support maxTagCount: 'responsive' in multi-select dropdown component (#6007) by @katherinehhh
-
Set default end time for time scope component in filter block to 23:59:59" (#6012) by @katherinehhh
-
-
[Action: Batch edit] Refactor bulk edit form submit button: remove field assignment and linkage rule (#6008) by @katherinehhh
🐛 Bug Fixes
-
[client]
-
Fix required validation not working after deleting data in rich text editor (#6006) by @katherinehhh
-
Fix misalignment issue when action column buttons are hidden (#6014) by @katherinehhh
-
Fix Create Collections button issue on clicking Collections tab in REST API page (#5992) by @katherinehhh
-
Fix resolve issue where targetKey can't select NanoID field in one-to-many (#5999) by @katherinehhh
-
Fix style of setting button in compact theme (#6001) by @katherinehhh
-
Fix list component style (#5998) by @mytharcher
-
Fixed the issue where headers included in client requests were being overwritten (#6009) by @2013xile
-
Fix foreignKey, targetKey, and sourceKey should support filtering by Chinese characters (#5997) by @katherinehhh
-
-
[Action: Import records] fix import with belongs to many associations that use different target key (#6024) by @chareice
-
[Block: Map] Fix map field in detail block should render as map block (#6010) by @katherinehhh
-
[Embed NocoBase] The token for embed conflicts with auth by @chenos
v1.4.19 - 2025-01-06
🐛 Bug Fixes
- [client] Fix date range picker in filter form/action not showing time picker when showTime is set (#5994) by @katherinehhh
v1.4.18 - 2025-01-06
🚀 Improvements
- [Workflow: test kit] Fix date fields precision in test collection (#5983) by @mytharcher
🐛 Bug Fixes
-
[client]
-
Fix scrollbar issue when setting full height for data block in subpage (#5989) by @katherinehhh
-
Fix alignment issue when action column buttons are hidden (#5987) by @katherinehhh
-
Fix issue with batch deletion of system and general fields in collection manager (#5988) by @katherinehhh
-
Fix the issue where the 'URL search params' variable is not working on mobile page (#5968) by @Cyx649312038
-
-
[server] Fixed a potential app crash during backup restoration (#5981) by @gchust
-
[Mobile] Fix the issue of bottom buttons being obscured on mobile devices (#5991) by @zhangzhonghe
-
[Data visualization] Fixed the issue where "current popup variables" used on charts in subpages became empty after refreshing the page (#5984) by @2013xile
-
[Block: Kanban] Fix parent collection fields not loaded in the kanban (#5985) by @katherinehhh
v1.4.17 - 2024-12-31
🎉 New Features
- [client] Supports using "Table selected records" variable in m2m array fields (#5974) by @2013xile
🚀 Improvements
-
[undefined] Enable theme plugin by default (#5957) by @zhangzhonghe
-
[Data source: Main] Added name conflict validation to prevent users from creating Collections with the same name as system Collections (#5962) by @chareice
-
[Workflow] Avoid to misuse date range variables in most place unless filter component (#5954) by @mytharcher
🐛 Bug Fixes
-
[database]
-
[client]
-
Fix issue when adding a one-to-one relationship field in the form (#5975) by @katherinehhh
-
Fix issue with field assignment in subtable when re-select data after deleting data (#5958) by @katherinehhh
-
Fix the table block error caused by data containing fields named 'children' (#5951) by @zhangzhonghe
-
-
[Data source: Main] Fix legacy support issues with the unixTimestamp field. (#5967) by @chareice
-
[Workflow] Fix sub-details block throwing error in manual node UI configuration (#5953) by @mytharcher
v1.4.16 - 2024-12-26
🐛 Bug Fixes
-
[client] Fix UnixTimestamp field precision conversion issue (#5931) by @chenos
-
[Action: Duplicate record] Fix o2o association field not displaying configured target collection field in detail and form blocks (#5921) by @katherinehhh
-
[Backup manager] Fixed backup error when the mysqldump version is below 8 by @gchust
v1.4.15 - 2024-12-24
🐛 Bug Fixes
-
[server] Collections were not automatically created when enabling the plugin (#5939) by @chenos
-
[client] Fix property field search in linkage rules not matching correct data (#5925) by @katherinehhh
-
[Workflow]
v1.4.14 - 2024-12-21
🐛 Bug Fixes
-
[Data visualization] Fix the error when filtering with nested many to many associations in chart query. (#5917) by @2013xile
-
[Workflow: Aggregate node] Fix incorrect aggregation result caused by transaction (#5916) by @mytharcher
v1.4.13 - 2024-12-19
🚀 Improvements
-
[Collection: SQL] Prohibit the use of dangerous keywords and functions in SQL. (#5913) by @2013xile
-
[Theme editor] Optimize API validation for user profile editing and password updates (#5912) by @2013xile
🐛 Bug Fixes
-
[Data source: Main] Fixed foreign key loading issues (#5903) by @chareice
-
[Collection: SQL] Fix the issue where fields disappear after updating an SQL Collection. (#5909) by @chareice
-
[Backup manager] Fixed restore backup is not working on Windows by @gchust
v1.4.11 - 2024-12-18
🚀 Improvements
-
[client] Make more components support the 'Ellipsis overflow content' configuration item (#5888) by @zhangzhonghe
-
[database] add firstOrCreate & updateOrCreate to relation repository (#5894) by @chareice
🐛 Bug Fixes
-
[client]
-
Fix missing x-data-source parameter in duplicate request template for external data source block (#5882) by @katherinehhh
-
Fix horizontal scrollbar issue in table within plugin (#5899) by @katherinehhh
-
Fix the issue where extra 'N/A' options sometimes appear in association field dropdowns (#5878) by @zhangzhonghe
-
Fix PG view creation issue, resolve error when selecting views across schemas (#5881) by @katherinehhh
-
Fix issue with group styles in form blocks when layout is set to horizontal (#5884) by @katherinehhh
-
-
[Users]
-
Fix the issue where the form is not reset after adding or editing a user in user management. (#5875) by @2013xile
-
Fix the issues where pagination settings are reset after editing and submitting user profiles on the user management following a page switch or a change of page size. (#5893) by @2013xile
-
-
[Data source manager] Fix the filtering issues with the external data source Collection (#5890) by @chareice
-
[Public forms] Fix issue where global theme switch affects public form preview page theme (#5883) by @katherinehhh
v1.4.10 - 2024-12-12
🎉 New Features
- [Action: Custom request] Support using 'Current form' variable in custom request buttons (#5871) by @zhangzhonghe
🚀 Improvements
- [Data visualization] Allows to use foreign keys in query configuration of charts (#5869) by @2013xile
🐛 Bug Fixes
-
[client] Fix issue where file table selector is not display in non-configuration mode when using file select (#5874) by @katherinehhh
-
[Access control] Fixed issues related to replication records after configuring permissions (#5839) by @chareice
-
[Workflow] Fix transaction timeout when deleting execution automatically (#5870) by @mytharcher
v1.4.9 - 2024-12-12
🐛 Bug Fixes
-
[sdk] Remove the default locale (#5867) by @chenos
-
[client]
-
[Backup manager] Fixed backup download failure for sub-apps with custom domain by @gchust
v1.4.8 - 2024-12-10
🐛 Bug Fixes
-
[client]
-
[User data synchronization] Skip unsupported data types during synchronization instead of throwing an error. (#5835) by @chenzhizdt
-
[Backup manager]
-
Fixed slow popup of download window for large backup files by @gchust
-
Fixed the issue where restoring a backup sub-application causes all applications to restart by @gchust
-
v1.4.7 - 2024-12-09
🐛 Bug Fixes
- [Mobile] Fix mobile background color display issue (#5809) by @katherinehhh
v1.4.6 - 2024-12-08
🐛 Bug Fixes
-
[Action: Import records] fix import data with table in associations (#5833) by @chareice
-
[Access control] Fix the problem of using fields to query the relationship in the ACL (#5832) by @chareice
v1.4.5 - 2024-12-08
🐛 Bug Fixes
- [Access control] Refresh the page when the user's role is incorrect (#5821) by @chenos
v1.4.4 - 2024-12-08
🐛 Bug Fixes
-
[client]
-
[Data visualization] Fix the issue when formatting timezone-aware date fields in MySQL (#5829) by @2013xile
-
[Workflow]
-
[Collection field: Many to many (array)] Fix the issue where updating m2m array fields in single relation collection does not take effect (#5820) by @2013xile
-
[Calendar]
-
[Public forms] Fix incorrect QC code scan path in sub-application public form (#5799) by @katherinehhh
v1.4.3 - 2024-12-05
🚀 Improvements
-
[test] Allow login with role name in test cases (#5794) by @mytharcher
-
[Notification: In-app message] update titles for detail URLs in in-app-message forms and localization files (#5742) by @sheldon66
🐛 Bug Fixes
- [client]
-
Fix the issue where the token is not cleared after a user without a role encounters a sign in error and clicks the “Sign in with another account” button (#5790) by @2013xile
-
Loss of request headers on silent requests (#5795) by @chenos
-
Blank page when user has no role (#5797) by @chenos
-
Fix scrollbar issue in sub-table with size small under compact theme (#5796) by @katherinehhh
-
v1.4.2 - 2024-12-04
🐛 Bug Fixes
- [Workflow] Fix async workflow tag disappeared in workflow table (#5787) by @mytharcher
v1.4.1 - 2024-12-04
🚀 Improvements
- [cli] optimize the pkg command (#5785) by @chenos
🐛 Bug Fixes
- [Mobile] Fix missing date input field in filter operation on mobile (#5786) by @katherinehhh
v1.4.0 - 2024-12-03
🎉 Major New Features
Simplify the process of adding and updating plugins
- The plugin list now reads directly from the local directory.
- Combined the processes for adding and updating plugins.
- Interface supports batch activation of plugins.
- Simplified the download and upgrade process for commercial plugins.
Reference documentation:
Notification
- Notification: In-app message It supports users in receiving real-time message notifications within the NocoBase application;
- Notification: Email Used for sending email notifications with built-in SMTP transport. Details;
- Notification: WeCom Sends notifications through the WeCom channel.
Reference documentation:
User Data Synchronization
Reference documentation:
Backup Manager
Reference documentation:
Public Forms
Share public forms externally to collect information from anonymous users.
Reference documentation:
Data Source: KingbaseES
Use the KingbaseES database as a data source, either as the main database or an external database.
Reference documentation:
Data Source: External Oracle
Use external Oracle databases as a data source.
Reference documentation:
Collection Field: Attachments (URL)
Supports URL-based attachments.
Reference documentation:
Field Component: Mask
Reference documentation:
Workflow: JavaScript
JavaScript nodes allow users to execute JavaScript within a workflow. The script can use variables from upstream nodes in the process as parameters and the return value of the script can be used in downstream nodes.
Reference documentation:
Data Visualization: ECharts
Added ECharts, supporting funnel, radar and more charts, and providing more user-friendly configurations.
Reference documentation:
Block: Multi-step form
Reference documentation:
Block: Action Panel
Designed to house various quick actions, currently supports:
- Link
- Scan QR code
- Popup
- Custom request
Supports both grid and list layouts
Reference documentation:
v1.3.55 - 2024-12-03
🚀 Improvements
- [client] To use icons with more accurate meanings for block initializers (#5757) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[database] Fix update hasOne/belongsTo association values without foreign key (#5754) by @chareice
-
[Data source manager] Fix incorrect display of source key (#5771) by @katherinehhh
-
[Workflow: Custom action event]
-
Allow all roles to triggering custom action event in external data sources by @mytharcher
-
Fix default data source as main by @mytharcher
-
Fix data source error when not matched by @mytharcher
-
Fix custom action trigger not triggering on association by @mytharcher
-
v1.3.53 - 2024-11-28
🚀 Improvements
-
[client]
-
[Workflow: Pre-action event] remove waring log in request interceptor by @mytharcher
🐛 Bug Fixes
-
[cli] Daemon mode does not delete sock files (#5750) by @chenos
-
[client]
-
Fix issue with association fields affecting each other when multiple association fields has the same target collection (#5744) by @katherinehhh
-
Fix issue with checkbox alignment in sub-table (#5735) by @katherinehhh
-
Fix foreign key field display issue in the data selector (#5734) by @katherinehhh
-
Fix adjust feedbackLayout to improve validation messaging in sub-table (#5700) by @katherinehhh
-
-
[server] Load plugins in dependency order (#5706) by @chenos
-
[Block: Map] Fix error when changing zoom levels in Google Maps (#5722) by @katherinehhh
-
[Data source: Main] Fix infer field name in view collection (#5729) by @chareice
-
[File manager] when the endpoint is not empty, forcePathStyle is set to true (#5712) by @chenos
v1.3.52 - 2024-11-21
🚀 Improvements
-
[Workflow]
-
[Data source: REST API] Optimize REST API plugin text descriptions by @katherinehhh
v1.3.51 - 2024-11-19
🐛 Bug Fixes
-
[client]
-
[Collection field: Many to many (array)] Fix the issue where retrieving records in an association collection with many to many (array) fields causes an error (#5661) by @2013xile
-
[Block: Gantt] Fix gantt block template incorrectly calls the calendar block when adding (#5673) by @katherinehhh
-
[Data visualization] Fix the issue where data transformations do not work on tooltip in dual-axes charts (#5649) by @2013xile
v1.3.50-beta - 2024-11-14
🐛 Bug Fixes
-
[client] Fix issue preventing linkage rule title from being cleared during editing (#5644) by @katherinehhh
-
[Comments] Fix data scope setting not working in comment block by @katherinehhh
v1.3.49-beta - 2024-11-13
🚀 Improvements
-
[client] support one-to-one and many-to-many (array) field to use file collection (#5637) by @mytharcher
-
[evaluators] use Formula.js as default evaluator in calculation node (#5626) by @mytharcher
🐛 Bug Fixes
-
[client] Fix reset issue that reverts filter button title to default (#5635) by @katherinehhh
-
[Action: Import records] Fixed the issue that many-to-many relationship data cannot be imported through the id field (#5623) by @chareice
v1.3.48-beta - 2024-11-11
🚀 Improvements
-
[client] support hiding menu items (#5624) by @chenos
-
[server] add DB_SQL_BENCHMARK environment variable (#5615) by @chareice
🐛 Bug Fixes
-
[client] support file collection as target of one-to-many association (#5619) by @mytharcher
-
[Action: Import records] Fixed the issue that many-to-many relationship data cannot be imported through the id field (#5623) by @chareice
v1.3.47-beta - 2024-11-08
🚀 Improvements
- [Authentication] Optimize error message for sign in and sign up (#5612) by @2013xile
🐛 Bug Fixes
-
[client]
-
[Authentication] Fix the issue where users can't change password when signing in with a non-password authenticator (#5609) by @2013xile
v1.3.45-beta - 2024-11-06
🐛 Bug Fixes
-
[client] permission for the association table field in the table is based on the permission of the corresponding association field (#5569) by @katherinehhh
-
[Action: Export records] Fix export with i18n (#5591) by @chareice
-
[Action: Import records] fix issue with import belongs to association (#5417) by @chareice
v1.3.44-beta - 2024-11-05
🎉 New Features
- [Auth: OIDC] Add an option "enable RP-initiated logout" by @2013xile
🐛 Bug Fixes
- [client] Fix filter issue when setting single-select field as title field in association select (#5581) by @katherinehhh
v1.3.43-beta - 2024-11-05
🚀 Improvements
- [client] numeric precision can be configured to 8 digits (#5552) by @chenos
🐛 Bug Fixes
-
[client] Fix linkage style not updating in form. (#5539) by @sheldon66
-
[Auth: API keys] Fix the URL path for API keys settings page (#5562) by @2013xile
-
[Mobile] Fix the issue of preview images being covered by page (#5535) by @zhangzhonghe
-
[Block: Map] resolve map rendering in sub-details and incorrect value display for empty fields (#5526) by @katherinehhh
-
[Collection: Tree] Fix errors when updating path collection (#5551) by @2013xile
v1.3.42-beta - 2024-10-28
🐛 Bug Fixes
- [Collection: Tree] Fix the issue where node paths are not updated when disassociate children (#5522) by @2013xile
v1.3.41-beta - 2024-10-27
🚀 Improvements
- [Access control] Optimize performance for large tables in acl (#5496) by @chareice
v1.3.40-beta - 2024-10-25
🎉 New Features
- [Auth: OIDC] Add an option for allowing skip ssl verification by @2013xile
🚀 Improvements
- [client] show disabled unchecked checkbox for unselected fields (#5503) by @katherinehhh
🐛 Bug Fixes
-
[database] Fix the issue where string operators "contains" and "does not contain do not properly handle
nullvalues (#5509) by @2013xile -
[client] Fix linkage rule to correctly evaluate URL parameter variables (#5504) by @katherinehhh
-
[Block: Map] Fixed the issue where some maps are displayed incorrectly when multiple maps exist due to multiple calls to the
loadmethod of AMap (#5490) by @Cyx649312038
v1.3.39-beta - 2024-10-24
🐛 Bug Fixes
- [client] Fix the issue where filter blocks cannot be added in the popup (#5502) by @zhangzhonghe
v1.3.38-beta - 2024-10-24
🐛 Bug Fixes
-
[client]
-
[Workflow: HTTP request node] fix special white space appears when paste content into variable textarea caused issue (#5497) by @mytharcher
-
[Departments] Fix the issue of incorrect external data source permissions check under the department role by @2013xile
v1.3.37-beta - 2024-10-23
🚀 Improvements
- [client] Adjust hint in configuration panel of binding workflow to a button (#5494) by @mytharcher
🐛 Bug Fixes
- [File manager] fix upload and destroy file record within an association block (#5493) by @mytharcher
v1.3.36-beta - 2024-10-22
🐛 Bug Fixes
-
[Collection: Tree] Fix the issue where the path collection for the inheritance tree collection is not automatically created (#5486) by @2013xile
-
[Calendar] show pagination bar with data in the table (#5480) by @katherinehhh
-
[File manager] fix file can not be uploaded due to rule hook. (#5460) by @mytharcher
-
[Collection field: Formula] Fix incorrect formula calculation in nested multi-level sub-table (#5469) by @gu-zhichao
v1.3.35-beta - 2024-10-21
🚀 Improvements
- [Workflow: mailer node] add placeholder to mailer node (#5470) by @mytharcher
v1.3.34-beta - 2024-10-21
🎉 New Features
-
[test] Association fields in filter forms support configuring whether multiple selection is allowed (#5451) by @zhangzhonghe
-
[client] Add a variable named "Parent object" (#5449) by @zhangzhonghe Reference: Parent object
🐛 Bug Fixes
-
[client]
-
[Block: Map] remove zoom level configuration for map fields in table column (#5457) by @katherinehhh
-
[File manager] fix calling storage rule hook on read-pretty fields (#5447) by @mytharcher
-
[Data source: Main] fix e2e case failed due to component changed (#5437) by @mytharcher
v1.3.33-beta - 2024-10-16
🚀 Improvements
- [Workflow] add association field related hint to the batch mode of update node (#5426) by @mytharcher
🐛 Bug Fixes
-
[client]
-
[File manager] remove the 20 items limit of loading storages in file template collection configuration (#5430) by @mytharcher
-
[Action: Duplicate record] Fix the issue where the bulk edit popup does not display content (#5412) by @zhangzhonghe
-
[Data visualization] Fix the issue of default values not displaying in the chart filter block (#5405) by @zhangzhonghe
v1.3.32-beta - 2024-10-13
🐛 Bug Fixes
- [client] required relational field still triggers validation error after selecting a value with a variable in data scope (#5399) by @katherinehhh
v1.3.31-beta - 2024-10-11
🐛 Bug Fixes
-
[client] Fix the issue where using the chinaRegion field in the filter form fails to correctly filter out values (#5390) by @zhangzhonghe
-
[Action: Import records] fix import error with wps file (#5397) by @chareice
v1.3.30-beta - 2024-10-11
🐛 Bug Fixes
-
[client]
-
[Workflow: Custom action event]
-
Fix custom workflow event did not redirect after successful submission by @katherinehhh
-
Fix custom workflow event did not redirect after successful submission by @katherinehhh
-
v1.3.29-beta - 2024-10-10
🚀 Improvements
- [client] Date variables are also not prohibited in create form (#5376) by @zhangzhonghe
🐛 Bug Fixes
-
[Workflow: SQL node] fix error when no result when calling stored procedure in SQL instruction (#5385) by @mytharcher
-
[Workflow] fix date field based schedule trigger caused app crash, and also support other data source (#5364) by @mytharcher
v1.3.28-beta - 2024-10-09
🚀 Improvements
- [client] Save cdn links as local resources to prevent requesting external resources when deploying on the intranet (#5375) by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
Fix the issue where popups opened in the "Users & Permissions" configuration page are obscured by other popups (#5373) by @zhangzhonghe
-
Fix the problem that after deleting a tab in a subpage, it does not take effect after opening it again (#5362) by @zhangzhonghe
-
Fix the issue where inherited collection association fields cannot properly use variables (#5346) by @zhangzhonghe
-
Fix the issue of current and association collection fields affecting each other in configuration (#5343) by @katherinehhh
-
-
[Action: Import records] fixed issue with incorrect results for importing large dates (#5356) by @chareice
-
[Workflow] fix switching component of association field in assigned fields caused page crash in create/update node (#5366) by @mytharcher
-
[Block: Gantt] Fix the issue where opening a popup in the Gantt block and then closing it causes the subpage to also close (#5370) by @zhangzhonghe
v1.3.27-beta - 2024-09-30
🐛 Bug Fixes
-
[client] Fix variable "Table selected records" (#5337) by @zhangzhonghe
-
[Workflow: Custom action event] fix custom action event not triggers in association block by @mytharcher
v1.3.26-beta - 2024-09-29
🚀 Improvements
- [client] Hide scrollbars on mobile (#5339) by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
Fix the issue of not being able to open sub-pages in embedded pages (#5335) by @zhangzhonghe
-
Fix the issue of pop-up windows being obscured (#5338) by @zhangzhonghe
-
Fix the issue of abnormal style when creating blocks with data templates in mobile subpages (#5340) by @zhangzhonghe
-
Fix the issue of not refreshing the page block data when closing a subpage via the page menu (#5331) by @zhangzhonghe
-
-
[Action: Export records] fix export format for decimal type fields (#5316) by @chareice
-
[Block: Kanban] Fix the issue that the popup window could not be opened after clicking on the Kanban card in the embedded page (#5326) by @zhangzhonghe
v1.3.25-beta - 2024-09-25
🚀 Improvements
-
[client] update and improve Japanese translations in ja_JP files (#5292) by @Albert-mah
-
[Workflow] add error handling for unregistered node type (#5319) by @mytharcher
🐛 Bug Fixes
-
[client] Fix for not displaying full fields in variables (#5310) by @zhangzhonghe
-
[Workflow] fix non-existed field in collection trigger causes error (#5318) by @mytharcher
-
[Action: Export records] Fix fields from assicated tables are not processed by the field interface (#5296) by @gchust
v1.3.24-beta - 2024-09-23
🐛 Bug Fixes
-
[client]
-
[Data visualization] Fix style issues of chart blocks when using dark mode themes (#5302) by @2013xile
v1.3.23-beta - 2024-09-19
🚀 Improvements
-
[Users] Optimize performance for rendering the user management table (#5276) by @2013xile
-
[Departments] Optimize performance for rendering the user table in department management by @2013xile
🐛 Bug Fixes
-
[client]
-
Fix incorrect
rowKeyof theGeneral action permissions tablein Users & Permissions page (#5287) by @gchust -
Fix the issue where setting a date variable for the date field in the filter form results in incorrect filter results (#5257) by @zhangzhonghe
-
column width issue with scroll.y when table has no data (#5256) by @katherinehhh
-
Fix the problem of blank rows at the beginning of a table block (#5284) by @zhangzhonghe
-
-
[create-nocobase-app] Fix the issue where the popup for configuring Sequence rules lacked a submit button when adding a new Sequence field (#5281) by @zhangzhonghe
-
[database] import with checkbox field (#4992) by @chareice
-
[evaluators] Fix error caused by
Matrixtype from mathjs (#5270) by @mytharcher -
[Calendar] Cannot select the option to delete the schedule popup (#5274) by @katherinehhh
-
[Action: Export records] Fix missing request context when generating data sheet in export action (#5286) by @gchust
v1.3.22-beta - 2024-09-12
🎉 New Features
- [Action: Custom request] Support for API token variables in the "Custom Request Button" configuration (#5263) by @zhangzhonghe Reference: Custom request
🚀 Improvements
- [Collection field: Markdown(Vditor)] Support Vidtor when selecting fields in the UI for external data sources (#5246) by @katherinehhh
🐛 Bug Fixes
- [Calendar] issue where the calendar block cannot display correctly when the end date crosses months (#5239) by @katherinehhh
v1.3.21-beta - 2024-09-10
🐛 Bug Fixes
- [client] Fix error when using linkage rules (NocoBase installed via create-nocobase-app) (#5249) by @zhangzhonghe
v1.3.20-beta - 2024-09-10
🚀 Improvements
- [client] Support for displaying deeper level association fields in data blocks (#5243) by @zhangzhonghe
🐛 Bug Fixes
-
[client]
-
[Data visualization] Fix incorrect data source context when multiple data sources exist (#5237) by @2013xile
v1.3.19-beta - 2024-09-08
🐛 Bug Fixes
- [client] Fix URL anomalies caused by using popups together with Link buttons (#5219) by @zhangzhonghe
v1.3.18-beta - 2024-09-08
🐛 Bug Fixes
- [Collection field: Many to many (array)] Fix the error when deleting a collection contains m2m array fields (#5231) by @2013xile
v1.3.17-beta - 2024-09-07
🎉 New Features
- [client] Supports configuration of linkage rules in sub-forms and sub-forms. (#5159) by @zhangzhonghe
🚀 Improvements
-
[client]
-
[server] provide more user-friendly application-level error messages (#5220) by @chenos
🐛 Bug Fixes
-
[client] Fix the "Maximum call stack size exceeded" error that occurs in the details block (#5228) by @zhangzhonghe
-
[Collection field: Many to many (array)] Fix the error where setting a field of
uidtype as target key for a many to many (array) field (#5229) by @2013xile -
[UI schema storage] Fix the issue that member roles clicking the button reported no permission (#5206) by @zhangzhonghe
-
[Workflow] Fix trigger type column showing wrong text after new workflow created (#5222) by @mytharcher
-
[Users] Remove phone format validation when editing user phones in user management (#5221) by @2013xile
v1.3.16-beta - 2024-09-06
🚀 Improvements
-
[client]
-
[Authentication] support line break in system title (#5211) by @chenos
-
[Workflow: SQL node] Change result data structure of SQL node to only contains data. (#5189) by @mytharcher Reference: SQL Operation
-
[Access control] Make the
PermissionsTab pannel of theUsers & Permissionsconfiguration page expandable. (#5216) by @zhangzhonghe Reference: Development Guide -
[Action: Batch edit] batch updated and batch edit, change 'All' to 'Entire collection" (#5200) by @katherinehhh
🐛 Bug Fixes
-
[client]
-
[Data visualization] Fixed the issue of getting wrong value when aggregating select fields (#5214) by @2013xile
-
[Data source manager] Fixed incorrect
rowKeyof the datasource table inUsers & Permissionspage (#5215) by @gchust -
[Workflow: HTTP request node] Fix error when using non-string variable in request parameters. (#5204) by @mytharcher
-
[Collection field: Formula] fix formula field serve test (#5197) by @katherinehhh
-
[App backup & restore (deprecated)] fix test case errors (#5201) by @chenos
-
[Data source: REST API]
-
collection name should be disabled in rest-api collection by @katherinehhh
-
Rest api locale improve by @katherinehhh
-
v1.3.15-beta - 2024-09-04
🐛 Bug Fixes
-
[Workflow] Fix missed fields in workflow variables. (#5187) by @mytharcher
-
[Collection field: Markdown(Vditor)] issue with markdown(Vditor) (#5176) by @katherinehhh
v1.3.14-beta - 2024-09-03
🎉 New Features
- [client] Add support for many-to-many association fields. (#5178) by @zhangzhonghe
🚀 Improvements
- [Action: Custom request] remove linkageRule for custom request in create form (#5179) by @katherinehhh
🐛 Bug Fixes
- [Collection field: Formula] formula field adaptation time field (#5168) by @katherinehhh
v1.3.13-beta - 2024-09-03
🐛 Bug Fixes
- [Action: Export records] Fixed incorrect export of relational data (#5170) by @chareice
v1.3.12-beta - 2024-09-01
Merged
- fix(mobile): fix permission
#5163
Commits
- chore(versions): 😊 publish v1.3.12-beta
774c296 - chore: update changelog
7f9a116 - chore: update e2e test
49db3e4
v1.3.11-beta - 2024-08-31
Commits
v1.3.10-beta - 2024-08-31
Merged
- fix: issue with association select data scope linkage in sub-table
#5160 - fix: issue in data selector other block should display Markdown, not 'Add Text'
#5161 - fix(data-vi): issue of parsing variables in filter block
#5157 - fix(data-vi): transform the values of decimal fields from type string to number
#5155
Commits
- chore(versions): 😊 publish v1.3.10-beta
5afac9c - chore: update changelog
6fceac1 - chore: update comment
6e45780
v1.3.9-beta - 2024-08-29
Merged
- fix(mobile): should not force redirect to mobile page
#5152 - chore: support year data type in mysql
#5123
Commits
v1.3.8-beta - 2024-08-29
Commits
v1.3.7-beta - 2024-08-29
Merged
- fix: add text support handlebars
#5150
Commits
v1.3.6-beta - 2024-08-29
Merged
- fix: association select data scope linkage should support edit form
#5149
Commits
v1.3.5-beta - 2024-08-28
Merged
- fix: association select data scope linkage should be supported in sub-form
#5146 - fix(mobile): resovle redirect issue
#5145 - feat(plugin-workflow): allow to delete execution in list
#5135 - fix(defaultValue): ignores variable values that do not match the current field
#5122 - chore(deps-dev): bump eslint-plugin-jest-dom from 5.1.0 to 5.4.0
#5138 - chore(deps): bump @ant-design/pro-layout from 7.17.16 to 7.19.12
#5137 - fix(template): fix error on form block submission
#5133 - feat: add support for opening via URL
#5098 - fix(release): decrypt token error occasionally
#5143
Commits
- chore(versions): 😊 publish v1.3.5-beta
35e8f89 - Revert "chore(deps): bump @ant-design/pro-layout from 7.17.16 to 7.19.12 (#5137)"
3f461ad - fix(release): pro image ci
e45d450
v1.3.4-beta - 2024-08-27
Merged
- refactor: set remainsTheSame as the default value for field editing in bulk editing action
#5124
Commits
v1.3.3-beta - 2024-08-27
Merged
Commits
- chore(versions): 😊 publish v1.3.3-beta
9dffefb - chore: update changelog
7c28f4d - fix(release): remove continue-on-error for build step
5a41ab0
v1.3.2-beta - 2024-08-26
Commits
- chore(versions): 😊 publish v1.3.2-beta
dcadaa6 - chore(release): optimize release workflow
6987d46 - chore: update changelog
388b0e2
v1.3.1-beta - 2024-08-26
Merged
- feat(publish): publish pro repos
#5129 - fix(tree): missing collection schema
#5131 - fix(cli): support upgrade to next
#5130 - fix(client): fix field names of variable input
#5128 - fix: cannot access 'ActionPage' before initialization
#5125
Commits
- chore(versions): 😊 publish v1.3.1-beta
4aff92a - chore: update changelog
4515f02 - fix: missing schema
c4b8195
v1.3.0-beta - 2024-08-25
Merged
- feat(plugin-workflow-mailer): add variables
#5120 - feat(client): add constant props api for variable input
#5116 - fix(data-vi): add size settings for pie, bar and dualAxes
#5113 - fix(mobile): avoid crashing
#5109 - fix(varaible): resolve error on template block submission
#5103 - feat: allows to filter child nodes in tree table blocks
#5096 - feat: allow to set distinct for query measures
#5091 - feat(kanban): add support for opening via URL
#5083 - feat: create file record via path
#5088 - refactor: update Chinese translation for "Style"
#5078 - fix: resolve tab switching issue
#5081 - fix(kanban): correct componentType to 'Kanban'
#5080 - refactor: markdown rendering engine
#5079 - fix(embed): fix the problem that switching tabs doesn't work
#5074 - refactor: datetime field support timezone, defaultToCurrentTime, and onUpdateToCurrentTime
#5012 - feat(data-vi): allow to set link for statistic chart
#5073 - refactor(plugin-workflow): add calculation nodes group
#5035 - fix(mobile): fix 'Edit link' setting
#5068 - fix: html rendering in markdown block
#5064 - fix: gridCard blocks cannot flip pages when using API data sources
#5066 - fix(template): refresh parent data on submit button click in referenced template block
#5057 - fix: html rendering in markdown block
#5062 - fix(m2m-array): check naming collision
#5059 - style: table column congirure fields bar style improve
#5055 - fix(inherit): fix 'Add new' button for inherited collectons
#5049 - feat(client): add parse options for variable input
#5043 - fix(iframe): fix the popup contained Iframe block does not work
#5039 - fix(plugin-workflow-aggregate): limit aggregate instruction to only work on db data source
#5033 - fix: extend collection cache bug
#5031 - feat: encryption field
#4975 - fix: mobile auth
#5015 - fix(client): show original field input component after cleared variable
#5028 - feat: support to add Settings block in mobile
#5025 - style: action style improve
#5018 - fix: bug
#5009 - feat: adapt desktop blocks to mobile
#4945 - fix(CI): continue on error
#4999 - fix: markdown block should supports the markdown syntax
#5003 - fix: disabled action to maintain font color on mouse hover (#4988)
#5000 - fix: disabled action to maintain font color on mouse hover (#4988)
#4998 - refactor: support dynamic field component
#4932 - feat: mobile modal bug
#4976 - fix(T-4927): table performance bug
#4978 - refactor: pc block & action compatible with mobile devices
#4935 - feat: markdown & iframe html support handlebars as rendering engin
#4946 - fix(data-vi): issue of fixed height setting has no effect
#4960 - fix(client): fix variable input value type
#4955 - fix: remove theme token
#4947 - fix: ignore pro
#4928 - fix: prevent URL change on clicking unconfigured association field
#4919 - feat(data-vi): optimize style settings for chart blocks
#4940 - chore: skip app supervisor
#4937 - fix: mobile style bug
#4934 - fix: build image ci
#4929 - feat: plugin mobile v2
#4777 - refactor(test): change mock cluster constructor arguments
#4917 - fix: fix custom request linkage rules problem
#4913 - refactor(server): simplify api for publishing sync message
#4912 - chore: data source api
#4588 - feat(server): add cluster mode for starting app
#4895 - Revert "fix(client): sub application name (#4886)"
#4887 - fix(client): sub application name
#4886 - refactor: optimize e2e workflow
#4883 - refactor(client): allow to select null value explicitly in variable input
#4869 - chore: next release ci
#4861 - test: add locator for approval workflow to enable the withdraw button
#4859 - refactor(server): sync manager and ci
#4858 - fix(Table): fix styling issue with fixed columns
#4857 - feat(database): new field type many to many (array)
#4708 - feat(server): add sync-manager
#4780 - chore(router): disable using replace strategy when closing popups or subpages
#4838 - fix(plugin-manager): fix issue with inability to scroll on plugin management page
#4837 - fix: adjust the margin of the Add block button in the grid layout
#4820 - fix: base ref
#4829 - feat: open subpages within the main page
#4797 - feat(client): add
disabledoption to props of SchemaSettingsItem#4817 - fix(popups): correct value for filterByTk
#4792 - refactor: include sourceId in popup URL
#4788 - Merge branch 'main' into next
#4791 - feat(client): support linkage style in table and form
#4467 - feat: enable direct dialog opening via URL and support for page mode
#4706 - refactor: rewrite the UI of the code scanner.
#4677 - feat(plugin-workflow): add date range options to system variables
#4728
Commits
- Revert "refactor: datetime field support timezone, defaultToCurrentTime, and onUpdateToCurrentTime (#5012)"
ded5f26 - fix: remove schema
f696c67 - chore(versions): 😊 publish v1.3.0-beta
dea6a58
v1.2.39-alpha - 2024-08-25
Merged
- fix: the time zone defaults to the system time zone
#5121 - fix(plugin-workflow-parallel): fix missed transaction causing dead lock in mysql
#5118 - fix: action linkage rules not working correctly in tree table
#5107 - fix(data-vi): allow to map integer enum value
#5115 - fix: markdown test
#5117 - chore(deps): bump tsconfig-paths from 3.15.0 to 4.2.0
#5051 - fix:markdown demo rendering failure
#5114 - fix(filter): should not filter out zero
#5106 - style: filter form block action bar style improve
#5108 - refactor: description for simple pagination mode
#5110
Commits
- chore(versions): 😊 publish v1.2.39-alpha
9e30752 - chore: update changelog
2b34f3b - Update README.zh-CN.md
75c7fd6
v1.2.38-alpha - 2024-08-22
Merged
- fix: issue where data couldn't be submitted after deleting a row with required field in the subform
#5101 - refactor: collection support simplePaginate
#5099 - fix: button field assignment to only update visible fields
#5104 - fix(client): fix upload preview image
#5102 - fix: column index calculation error in table block
#5100 - chore: optimize translation
#5092
Commits
v1.2.37-alpha - 2024-08-21
Merged
Commits
v1.2.36-alpha - 2024-08-19
Merged
- 日本語readmeを追加する
#4971 - fix: mysql2 version
#5082 - fix: sorting of Table block data
#5071 - fix: the selected data in the sub table is overwritten by default values
#5075
Commits
- chore(versions): 😊 publish v1.2.36-alpha
271a829 - chore: update changelog
84ca0eb - Update README.ja-JP.md
d5b8f1f
v1.2.35-alpha - 2024-08-16
Merged
- fix: the display of data source status
#5069 - chore: upgrade mysql2 version
#5070 - fix: filter form action bar stye improve
#5054 - fix: quote table name in mysql query interface
#5065 - fix: collection with non ID as the primary key will encounter an error when using gantt
#5061 - fix: increase the upload file size limit of field-markdown-vditor
#5063 - fix(data-vi): dependency typo
#5060 - chore(deps): bump @babel/plugin-transform-modules-amd from 7.22.5 to 7.24.7
#5052 - chore(deps): bump xpipe from 1.0.5 to 1.0.7
#5050 - chore(deps): bump tsup from 7.2.0 to 8.2.4
#5046 - fix(inherit): correct title for inherited sub-collection association block
#5048 - fix: load parent field in inherited collection
#5044 - fix: disable edit and delete button for all records and own record in data scope configuration
#5041 - fix(Collapse): fix issue with data scope settings being ineffective
#4914 - fix(Table): should not error when open a popup by clicking a multi-level field
#5038 - fix(linkageRules): fix an exception when the condition contains a association field
#5037 - fix(client): missing sort parameter
#5034 - fix(database): skip table doesn't exist
#5023 - fix(variable): the chinaRegions field should not be a submenu
#5030 - style: quick add button for association field in the form, compact theme style without adaptation
#5024 - fix: correct foreign key value errors
#5027 - fix: source field type filtering association fields in sql collection & view collection
#5014 - fix: allowMultiple should not appear on read-only association fields
#5017
Commits
- chore(versions): 😊 publish v1.2.35-alpha
39bc571 - chore: update changelog
d37c71a - Update LICENSE.txt
28c2fff
v1.2.34-alpha - 2024-08-08
Merged
- fix(plugin-workflow): fix event key in date field schedule mode
#5010 - fix: backup file dir of sub apps
#4985
Commits
v1.2.33-alpha - 2024-08-07
Merged
- feat: support dynamic field component
#5006 - fix: required validate rule with trim
#5004 - fix: acl permission check issue for 'Delete Event' action
#5002
Commits
v1.2.32-alpha - 2024-08-06
Commits
v1.2.31-alpha - 2024-08-06
Commits
v1.2.30-alpha - 2024-08-06
Merged
- fix: unable to clear china region field
#4991 - fix(T-4927): table performance bug
#4978 - fix: disabled action to maintain font color on mouse hover
#4988 - fix: issue with ACLCollectionFieldProvider field permission evaluation
#4989 - fix(plugin-workflow-manual): fix assign field value for all action buttons of manual node
#4983 - fix(plugin-workflow): fix collection trigger in async mode after transaction committed
#4994
Commits
- fix: manual release
f8bc360 - chore(versions): 😊 publish v1.2.30-alpha
e0b36fb - chore(versions): 😊 publish v1.3.0-alpha
ca87866
v1.2.29-alpha - 2024-08-05
Merged
- chore: optimize text for data loading mode
#4918 - fix: action linkage rule
#4980 - chore(action-export): error message when field not found
#4890 - refactor: filter FilterTargetKeys options based on titleUsable
#4981 - fix(plugin-workflow-manual): fix disabled status in clicked button of manual todo
#4982 - refactor: set field required in sub-table should display required indicator in column header
#4972 - fix: enable date variables in filter forms
#4916 - fix: required constraint becomes invalid after setting validation rules on form fields
#4977
Commits
v1.2.28-alpha - 2024-08-01
Merged
- fix: collection manager support filterTargetKey setting
#4968 - chore(action-export): format of number field
#4974 - fix(acl): get allowedAction when condition is empty
#4973 - fix(plugin-workflow): fix formula validation for expression
#4957
Commits
v1.2.27-alpha - 2024-07-30
Merged
- fix: the date string in filter should not be UTC
#4967 - fix(plugin-workflow): fix admin role with workflow plugin permission can not delete executions
#4961 - fix: improve i18n
tStr()#4966
Commits
v1.2.26-alpha - 2024-07-30
Merged
- fix: remove i18n fallbackNS
#4964 - fix(plugin-workflow): fix delete action button to bind pre-action workflow
#4963 - fix: i18n plugin utils
#4962 - fix: plugin template add locale
#4943 - chore: upgrade playwright to v1.45.3
#4954 - test: custom action e2e
#4956 - fix: create multiple auto increment fields in mysql
#4951
Commits
v1.2.25-alpha - 2024-07-27
Merged
- fix(plugin-workflow): hide condition configuration in destroy collection event
#4952 - fix(plugin-workflow): fix schedule event on date field
#4953 - refactor(client): allow select to show null option as tag in read pretty mode if configured
#4950 - fix: clear default value immediately after field deletion
#4915 - fix: autoGenId default value should be false when adding collection
#4942 - refactor: migrate DataBlockCollector to DataBlockProvider
#4938 - fix(action-import): import with createdBy & updatedBy field
#4939
Commits
- chore(versions): 😊 publish v1.2.25-alpha
306035c - chore: update changelog
b2f82a2 - Update LICENSE.txt
027d54d
v1.2.24-alpha - 2024-07-23
Merged
- fix(subTable): ensure real-time update of formula field values
#4930 - fix: required not applied when changing field from hidden to visible and setting it as required
#4927 - fix(plugin-workflow): fix or condition bug in collection trigger
#4925
Commits
- chore(versions): 😊 publish v1.2.24-alpha
73d6905 - chore: update changelog
c07084c - Revert "fix(subTable): ensure real-time update of formula field values"
747910f
v1.2.23-alpha - 2024-07-22
Merged
- refactor: collection fields to initializer items
#4900 - fix(variable): fix context error with 'current object' variable
#4901 - feat(Link): add 'Open in new window' option
#4898 - refactor: adjust the markdown field to use the input component in filtering
#4899
Commits
- chore(versions): 😊 publish v1.2.23-alpha
bbbc349 - Update LICENSE.txt
a226d98 - chore: add translation
b634774
v1.2.22-alpha - 2024-07-18
Merged
- fix: exception when deleting object with formula fields in sub-form
#4897 - chore: external data source api
#4782 - fix: association field data scope should not persist when switching from select to cascader
#4893 - fix: image style issues in rich text field
#4892 - fix: correct issue with filter form field operator settings being ineffective
#4891
Commits
v1.2.21-alpha - 2024-07-17
Merged
- feat: add 'Clear default value' settings for Reset action
#4889
Commits
v1.2.20-alpha - 2024-07-16
Merged
- refactor: adjust rich text filter to Input component
#4888
Commits
- chore(versions): 😊 publish v1.2.20-alpha
d086e93 - chore: auto merge
32b8bf6 - chore: update changelog
b5c2107
v1.2.19-alpha - 2024-07-16
Commits
- chore(versions): 😊 publish v1.2.19-alpha
c56b873 - chore: update release ci
393b6bb - chore: update changelog
bef2a3f
v1.2.18-alpha - 2024-07-16
Commits
- chore(versions): 😊 publish v1.2.18-alpha
f69d552 - chore: update release ci
31c5489 - chore: update changelog
2c0721b
v1.2.17-alpha - 2024-07-16
Merged
- fix: dataSourceKey parameter error for external data sources in acl data scope list
#4882 - chore: clear listener after transaction commited
#4879 - chore(action-import): report sequelize error message
#4878 - fix: create multiple auto incr field in mysql
#4839 - fix: default values for fields should not be cleared after submission
#4877 - fix(form): resolve issue with association fields not displaying content due to referenced templates
#4876 - fix: real-time update issue for association field data scope in sub-table
#4872 - fix: useImportStartAction
#4875
Commits
- chore(versions): 😊 publish v1.2.17-alpha
c65c7f7 - chore: update changelog
b3efafc - Update bug_report.md
596aa81
v1.2.16-alpha - 2024-07-12
Merged
- fix: issue with iframe URL not opening correctly
#4873
Commits
- chore(versions): 😊 publish v1.2.16-alpha
a64015d - chore: update .env.example
df4abfd - chore: update changelog
a7b0c36
v1.2.15-alpha - 2024-07-11
Merged
- fix: initializer select close
#4865 - fix(data-vi): fix the permission issue when using external data sources in data-vi plugin
#4864
Commits
- Revert "fix: skip mysql server"
30cdd25 - fix: skip mysql server
f6bc113 - chore(versions): 😊 publish v1.2.15-alpha
11fdb51
v1.2.14-alpha - 2024-07-11
Merged
- fix(Safari): resolve issue with menu page not refreshing in Safari
#4835 - chore(bot): optimize comment content
#4856 - chore: fetch-depth=0
#4854
Commits
- chore(versions): 😊 publish v1.2.14-alpha
4e53736 - chore: update release ci
b564221 - chore: update changelog
a89a95c
v1.2.13-alpha - 2024-07-10
Merged
- feat(Menu): add support for setting search params and using variables in links
#4855 - fix(template): restrict block templates to their respective block types
#4842 - feat(variable): add a new variable named 'API token'
#4850 - fix: ineffective conditional checks for checkbox fields as linkage rule under m2o association field
#4849 - fix(client): fix output time in date-picker in date-only mode
#4778 - fix: page freeze issue when hiding formula fields through linkage rules
#4846 - fix(ci): fix ci script error for pro
#4845 - chore(data-source-main): i18n of field depended error
#4843 - fix(action-export): export with custom field title
#4825 - chore: disable search engine indexing
#4841 - chore(datasource-main): throw error when destory field if field is used by association field
#4833 - fix: adjust the margin of the Add block button in the grid layout
#4820 - chore: mutex task message of import and export
#4834 - chore(CI): sync changes from next branch
#4832 - chore(CI): add a job for E2E of workflow-approval
#4831 - chore(plugin-workflow): expose entire error into node result
#4799
Commits
- chore(versions): 😊 publish v1.2.13-alpha
3b02b0c - chore: update changelog
4c63f81 - Update pull_request_template.md
8792cbf
v1.2.12-alpha - 2024-07-05
Merged
- style: list block overflowY
#4822 - fix: external data source filterTargetKey undefined in filter action
#4815 - fix(database): should not add field when binding error
#4804 - feat: beforeAddDataSource hook
#4810 - fix: target key value is empty
#4796 - chore(ci): release database after closed
#4819 - fix: bug
#4816 - chore: add import export permission to admin & member user
#4809 - chore: add import export permission to member user
#4808 - fix: sub-form acl check
#4806 - fix: version calculation error when creating migration
#4805 - chore(e2e): optimize timeout to avoid lost report
#4798 - fix: table height shrinking with large data set at full height
#4787 - fix: incorrect highlight linkage for association field
#4794 - style: list block style improve
#4785 - fix: external data source not reloading when title field is updated
#4786 - test: approvals workflow e2e
#4781 - refactor: rewrite the UI of the code scanner.
#4677 - refactor(plugin-workflow): add deferred option for async workflow triggering
#4772
Commits
- chore(versions): 😊 publish v1.2.12-alpha
415eb52 - chore: update pull request template
9d48dbd - chore: update package.json
3da0fcf
v1.2.11-alpha - 2024-06-28
Merged
- fix(data-scope): avoid cyclic invocation of the same API
#4773 - feat(client): add searchbar and increase ux of select popover in icon-picker component
#4609 - feat(data-source-manager): filterTargetKey configuration optimization
#4766
Commits
v1.2.10-alpha - 2024-06-27
Merged
- fix(i18n): incorrect namespaces of plugins
#4771 - fix(plugin-workflow-mailer): fix payload in sync mode
#4765 - feat(plugin-workflow): add mode column to show if sync or not
#4767
Commits
- chore(versions): 😊 publish v1.2.10-alpha
734aa1a - chore: update changelog
5448795 - chore(e2e): make e2e tests more stable
405a6ee
v1.2.9-alpha - 2024-06-27
Merged
- test(plugin-workflow): check for duplicated triggering
#4762 - fix: missing data on first load in cascading association field component within template block
#4758 - fix: full height
#4759 - fix: export filter component
#4757 - fix(plugin-workflow): fix ui crash with unknown type trigger or node
#4761 - fix(l10n): error when enabling plugin-localization first time
#4760 - fix: error when overriding sorting field
#4752 - fix(pm): parse package name
#4756 - feat(l10n): allows to use l10n plugin resources in backend
#4751 - feat(variable): add a new variable named 'Parent popup record'
#4748 - chore(deps): bump i18next-http-backend from 2.4.2 to 2.5.2
#4743 - fix: checkbox style is not aligned when selecting the table
#4718
Commits
- chore(versions): 😊 publish v1.2.9-alpha
4a50647 - chore: update changelog
ce25df2 - fix(pm): search by keywords
1e44973
v1.2.8-alpha - 2024-06-25
Merged
- fix: missing multiple selection option for to-many association fields in sub-table
#4742 - chore: update dependencies
#4747 - fix: bug
#4744 - fix: adjust print content
#4746 - fix: double scrollbar on mobile client causing scrolling issues
#4745 - fix: tag component should support enable link
#4741 - fix: clear plugin list cache
#4739 - fix(backup-restore): dump with collection that names were reserved words in mysql
#4734 - refactor: integer fields with Primary selected will auto-check Auto increment
#4313
Commits
- chore(versions): 😊 publish v1.2.8-alpha
3a8867e - chore: update changelog
2eb7811 - chore: update link
e69d33a
v1.2.7-alpha - 2024-06-24
Merged
- fix: variable parse issue in link action with variables in paths
#4732 - fix(client): fix default size hint of upload component
#4731 - fix(plugin-workflow): fix duplicating sync workflow
#4727 - chore(data-vi): remove
addMigrations#4713 - fix(plugin-workflow): add loading for adding node
#4726 - fix(plugin-workflow): fix designable of assign fields in create/update node
#4724 - fix: optimize block template description
#4721 - fix: subform/subtable height equaling form height when form height is set
#4717 - fix(client): fix undefined context
#4719 - fix(grid): grid style
#4715
Commits
- chore(versions): 😊 publish v1.2.7-alpha
9276413 - chore: cnpm sync
8725492 - fix(vditor): lang error
e2a22d4
v1.2.6-alpha - 2024-06-20
Merged
- fix(plugin-workflow): fix client warning
#4709 - fix(plugin-workflow): fix undefined error of action trigger
#4710
Commits
v1.2.5-alpha - 2024-06-19
Merged
- fix(plugin-fm): fix thumbnail rule
#4707 - fix(plugin-workflow): fix locale key in storage
#4704 - fix: select field set as title field
#4703 - fix: refresh list automatically after closing modal following add operation
#4699 - fix(backup-restore): snippet name
#4700 - fix(client): fix upload progress style
#4698 - fix(variable): resolve the issue of incorrect sourceKey in variable lazy loading
#4691 - refactor: sub-table disabled dragSort
#4696 - fix: height calculation for full-height tabs in approval initiation and approval block
#4686 - chore(data-source-main): field name exists error message
#4689 - chore(database): mediumtext type support
#4697 - fix(database): find model in hooks
#4694 - feat(plugin-field-sequence): allow to customize date format
#4685 - refactor(plugin-workflow-dc): move collection template to plugin and remove sort field
#4682 - refactor: workflow block && template block support setting block height
#4678 - fix: restore field height spacing after removing description in form
#4679
Commits
- chore(versions): 😊 publish v1.2.5-alpha
9968eda - chore: add cnpm sync script
ac472ef - chore: update changelog
6a751b5
v1.2.4-alpha - 2024-06-17
Merged
- fix: action modal icon and Initializer menu close when click
#4664 - fix(data-vi): custom filter conditions are not applied
#4671 - fix: chart block actionBar style
#4666 - feat(data-vi): allows to use json5 in chart json config
#4668 - fix(duplicate): resolve error on click
#4658 - style: list block
#4665 - chore(action-import): validate association & select field value
#4643 - fix: form/detail/filter block height
#4652 - chore(test): skipping websocket-related tests currently causes vitest to hang
#4644 - fix(plugin-workflow): fix incorrectly schema reaction
#4661 - Update ja_JP.json
#4650 - fix(logger): fix the issue where workflow log files do not output
#4657 - fix(plugin-fm): add migration for fixing new added legacy attachment field
#4649 - fix(plugin-fm): set invalid when uploading is not completed to avoid submit
#4653 - fix: client test
#4648
Commits
- chore(versions): 😊 publish v1.2.4-alpha
9de4853 - chore: update changelog
92cf3d7 - fix(mock-collections): syntax error at or near "-"
6c431ca
v1.2.3-alpha - 2024-06-13
Merged
- style(client): grid style improve
#4647 - refactor(plugin-workflow): add card layout for assigning fields
#4642 - style: markdown block style improve
#4639
Commits
v1.2.2-alpha - 2024-06-12
Merged
- feat: support qrcode embed in markdown and scan in mobile
#4638 - refactor(plugin-workflow): use assigned fields for create/update node values
#4546 - fix(plugin-workflow-request): fix test
#4634 - fix: block height calculation
#4629
Commits
v1.2.1-alpha - 2024-06-12
Merged
- chore(action-import): skip reset sequence if no auto-increment primary is imported
#4631
Commits
- chore(versions): 😊 publish v1.2.1-alpha
0d6ebe1 - chore: update changelog
93d3313 - fix: use dataSource.collectionManager.getCollection
75f5098
v1.2.0-alpha - 2024-06-12
Merged
- chore: update release ci
#4632
Commits
- chore(versions): 😊 publish v1.2.0-alpha
7963417
v1.1.0-alpha.0 - 2024-06-12
Merged
- fix(filter-form): fix auto-trigger filter action without default value
#4627 - fix: page freeze when handling formula field in sub-table after add,select and delete record
#4613 - feat: workbench block
#4555
Commits
- chore(versions): 😊 publish v1.1.0-alpha.0
b6bf12a - chore: update release ci
ae80da7 - chore: update changelog
431df8e
v1.0.1-alpha.3 - 2024-06-11
Merged
- fix(auth): translation of sign in page
#4624 - fix: import data with association field
#4623 - feat: tree block
#4566 - chore(deps-dev): bump multer-aliyun-oss from 2.1.1 to 2.1.3
#4614
Commits
- chore(versions): 😊 publish v1.0.1-alpha.3
c7060ae - chore: update changelog
1dc8b20 - Update README.zh-CN.md
c413b3e
v1.0.1-alpha.2 - 2024-06-11
Merged
- feat(filter-form): auto-trigger filter action when default values exist
#4622 - fix: missing height in map history block
#4621 - fix: table block height issue with minimal data
#4617 - fix(preset): fix plugin-workflow-mailer version
#4619 - fix(auth): allows to set the auth type title translation from server end
#4616 - fix(export): export button remaining in loading state after cancel
#4615 - feat(tree-block): support filtering child nodes
#4603 - fix(client): fix text wrap in variable input
#4605 - refactor(plugin-workflow): change variable getter from collection fields
#4567 - fix: remove grid wrap
#4612 - feat(client): allow JSON5 value in Form Input of type JSONTextArea
#4600 - fix: iframe block loses height when set to default
#4602 - feat(plugin-workflow-smtp-mailer): add new plugin for sending email in workflow
#4584 - chore: fix typo
#4589
Commits
v1.0.1-alpha.1 - 2024-06-07
Merged
- fix: style issues for gridCard in mobile client
#4599 - fix: style issues for gridCard in mobile client
#4593 - fix(variable): should remove through collection field
#4590 - feat(data-vi): support for using url params and current role variables
#4586 - refactor(variable): support default value setting
#4583 - fix: compatibility issues with historical kanban and iframe block
#4587 - fix(linkage-rules): resolve issue with invalid expressions
#4580 - fix(map): amap reset
#4574 - feat: url support preview
#4559 - fix: correct precision conversion error for Unix timestamp in readPretty
#4569 - feat(plugin-workflow): allow to select any path of a variable in condition node
#4571 - fix(client): fix action props
#4568 - refactor: export & import plugin
#4468 - fix: styling issues during field drag-and-drop in details/form/list block
#4558 - chore(e2e): make e2e tests more stable
#4565 - fix: sign up page not found for a new basic authentication
#4556 - fix(l10n): i18n namespace of page title
#4557 - feat: iframe support variables
#4512 - fix(client): fix upload logo in system settings
#4564 - fix(plugin-fm): fix attachment component selectable check
#4563 - fix(client): fix waring props
#4562 - fix(plugin-fm): fix page crash when 413 in local dev
#4560 - fix defaultImage in constants.ts for google maps
#4483 - refactor(FormV2): add FormWithDataTemplates component
#4551 - feat(client): add new variable named 'URL search params' and support link action
#4506 - feat: data block support setting block height
#4441 - chore(deps): bump @typescript-eslint/parser from 6.14.0 to 6.21.0
#4548 - feat(logger): support for collecting debug informations when rendering failed
#4524 - fix: data filtering and formula field value errors after subtable record selection
#4547 - fix: show cascade select when no data in edit form
#4543 - fix(plugin-workflow): fix workflow version dropdown overflow
#4542 - test(block-templates): add test cases
#4540 - feat(client): adjust toolbar for Table Actions
#4538 - chore(deps): bump sanitize-html from 2.10.0 to 2.13.0
#4505 - fix(client): fix data template style
#4536 - fix(plugin-fm): fix cos path error
#4537 - fix: prevent deletion of entire association field when removing the last column in subtable
#4518 - fix(plugin-fm): fix delete file error of cos
#4529 - fix: table borded
#4534 - fix(client): fix the issue where adding block templates in the popup does not display
#4531 - Fix/initializer improve
#4533 - fix(i18n): fix i18n namespace for collection titles
#4530 - fix(plugin-map): add 'Set default zoom level' option for map fields
#4527 - fix: disable cascading select component for association field in subtable
#4517 - fix: association field enablement affecting block field states
#4528 - fix(utils): fix json-templates
#4525 - fix(client): fix deep association select in AppendsTreeSelect component
#4526 - fix: table drag error
#4511 - fix(client): fix the issue where setting default values using variabl…
#4521 - fix(plugin-workflow-manual): fix custom form field wrong interface in manual node
#4520 - fix(plugin-workflow): fix trigger workflow acl
#4522 - fix(plugin-workflow-request): fix locale
#4519 - fix: update form submit action missing linkageRules setting
#4515 - chore: add group title to Table item action settings
#4516 - fix(client): fix Variable.TextArea style
#4513 - fix(acl): use default role when
x-roledoes not belong to the current user#4507 - feat(plugin-fm): make rules configurable
#4118 - fix(data-vi): field component invisible when setting default value for filter field
#4509 - feat(client): refining error fallback for different components when catching errors
#4459 - refactor: remove all frontend checks for isForeignKey
#4499 - fix: after update event in single relation repository
#4503 - chore(auth): change char length limit of username to 1-50
#4502 - fix: sub-table support allowAddNew setting
#4498
Commits
- chore: update changelog
b70528a - chore(versions): 😊 publish v1.0.1-alpha.1
9218319 - Revert "chore: make e2e tests more stable"
2dfa7a2
v1.0.0-alpha.17 - 2024-05-27
Merged
- fix: optimize data scope variable in permission configuration
#4484 - refactor: form linkage rule to cancel assignment when multiple fields are selected
#4492
Commits
- chore(versions): 😊 publish v1.0.0-alpha.17
53eb054 - Update README.md
3851d49 - chore: update changelog
8d7bc1f
v1.0.0-alpha.16 - 2024-05-27
Merged
- fix: numeric field display issue in form linkage rule
#4482 - fix: export action missing data scope filter
#4476 - chore: application start error message
#4477 - fix(subTable): prevent setting default value for fields that have been unmounted
#4475 - fix: attachment collection permission
#4470 - fix(database): foreign key index in underscored table
#4473 - fix: missing app context in modal
#4457 - chore: avoid misoperation of date variables
#4452 - fix(plugin): resolve error caused by duplicate addition of custom request
#4458 - fix: verdaccio/verdaccio:5
#4448 - fix(core): support selecting the first level of variables as the default value
#4439 - fix: table row action linkage rule defect error
#4436 - fix(plugin-workflow): fix condition node variable error
#4437 - fix(plugin-workflow): fix empty value in create and update node association values
#4433 - fix: error in deleting data query after block linkage filtering
#4434 - docs(client): should name SchemaInitializer starting with a lowercase letter
#4432
Commits
- chore(versions): 😊 publish v1.0.0-alpha.16
2e7744f - fix(client): remove the "you are offline" prompt
1e230ec - chore: update changelog
121b6a8
v1.0.0-alpha.15 - 2024-05-21
Merged
- refactor: the default accuracy of the UnixTimestamp field is second
#4418 - refactor: collection manager setting title field
#4419 - feat(logger): add
dailyRotateFileto default transport & addtracelevel#4429 - fix: useCurrentFormVariable
#4428 - feat(plugin-workflow-request): allow to use response variables
#4414 - refactor(plugin-workflow): adjust multiple option in query node
#4412 - fix(filter-form): fix operator not valid in block templates
#4390 - fix: custom request action should support linkage rule setting
#4410 - fix: Fix typo in link target
#4416 - fix: change License link
#4415 - chore: migration to fix tree fields option
#4369 - fix: column name ambiguous error in array operator
#4401 - fix: values to filter with emtpy values
#4319 - fix(data-vi): transform values of multiple selection fields to labels
#4398 - feat: add process.env.API_CLIENT_STORAGE_PREFIX
#4395 - fix: the inherited field should be able to be set as the title field
#4394 - fix: duplicated items in update associations
#4393 - fix(data-vi): the custom tooltip for the pie chart is not working
#4392 - fix(theme-editor): form field spacing should not be affected by token.marginBlock
#4374 - fix(plugin-workflow-request): fix request hanging when invalid header value
#4376 - fix(logger): should close log stream after destroying app
#4380 - fix(plugin-workflow-action-trigger): fix hint
#4383 - chore: test on windows
#4375 - fix: data template middleware in data source
#4378 - chore: split sql collection
#3650 - refactor: tree collection support presetFieldsDisabledIncludes
#4371 - fix(data-vi): should use local timezone when formatting date
#4366 - chore: set main as a reserved character for application name
#4370 - refactor: flatten and merge Actions
#4336 - fix: accuracy loss in bigint field read pretty
#4360
Commits
- chore: update yarn.lock
a698de2 - chore(versions): 😊 publish v1.0.0-alpha.15
4f3a3c0 - Update bug_report.md
0626b83
v1.0.0-alpha.14 - 2024-05-16
Merged
- fix: require resolve
#4356 - fix: after setting title field the collection data should refresh
#4358 - fix(plugin-workflow-request): fix value fields overflowing
#4354 - chore(deps): bump tsx from 4.6.2 to 4.10.2
#4339 - chore(deps): bump @formily/path from 2.3.0 to 2.3.1
#4338 - fix: table column should support blank column occupancy
#4350 - fix(plugin-workflow): fix bind hint based on event type
#4349
Commits
- chore(versions): 😊 publish v1.0.0-alpha.14
0399272 - Revert "chore(deps): bump tsx from 4.6.2 to 4.10.2 (#4339)"
5fa77df - chore: update changelog
410af77
v1.0.0-alpha.13 - 2024-05-14
Merged
- feat: record last seen at in supervisor
#4345 - fix: demo bug
#4348 - chore: snippet name replacement
#4346 - chore(deps-dev): bump rc-tree-select from 5.5.5 to 5.20.0
#4340 - chore(deps): bump markdown-it and @types/markdown-it
#4343 - refactor: imporve add License
#4326 - fix(plugin-workflow-request): fix ignoreFail in sync mode
#4334 - fix: block error can delete
#4329 - fix: create kanban block report error
#4332 - fix(logger): download path
#4327 - fix(logger): list log files by application name
#4325
Commits
- chore(versions): 😊 publish v1.0.0-alpha.13
3e7d85b - fix: restart the application after updating the plugin
91c24ef - chore(CI): should run jobs when yarn.lock is changed
325a415
v1.0.0-alpha.12 - 2024-05-13
Merged
- fix: collection support title field setting
#4322 - fix: create tree collection field
#4321 - feat: strategy with resources list
#4312 - chore: test e2e CI
#4314 - test: e2e test
#4316
Commits
- chore(versions): 😊 publish v1.0.0-alpha.12
52a893f - chore: update changelog
e7ac08d - chore(CI): skip comment in main branch
819ac79
v1.0.0-alpha.11 - 2024-05-11
Merged
- fix(plugin-workflow-aggregate): fix association field select
#4315
Commits
v1.0.0-alpha.10 - 2024-05-11
Merged
- perf(e2e): reduce e2e runtime
#4280 - fix: linkage rule fireImmediately should be true
#4303 - refactor: export AuthenticatorsContextProvider and add client.d.ts
#4311 - test: optimal calculationNode e2e
#4310 - fix: support admin.xx static
#4304
Commits
- chore(versions): 😊 publish v1.0.0-alpha.10
814d5cb - chore: update changelog
f2db121 - Update README.md
5fb0081
v1.0.0-alpha.9 - 2024-05-09
Merged
- chore: release ci
#4306
Commits
- chore(versions): 😊 publish v1.0.0-alpha.9
9ecdf9b
v1.0.0-alpha.8 - 2024-05-09
Merged
- chore: release ci
#4305 - chore: release ci
#4302 - chore: optimize timeout for e2e
#4276 - feat(plugin-workflow-request): support "application/x-www-form-urlencoded" type
#4296
Commits
- chore: update changelog
556dfcd - chore(versions): 😊 publish v1.0.0-alpha.8
d57ebbd - chore: update release ci
58c3c0f
v1.0.0-alpha.7 - 2024-05-09
Merged
- chore: release ci
#4293 - fix(plugin-workflow-custom-action-trigger): fix locales
#4298 - style: add child action style improve
#4289 - fix: configure data scope in action permission reporting error
#4301 - test conditionNode e2e
#4295 - fix: bug
#4300 - fix: association collection field should not support sortable
#4288 - Fix/doc multi lang change
#4299 - feat(client): add hidden option to interface
#4279 - feat: table column support fixed right or fixed left
#4260 - fix: collection field support x-use-component-props
#4264 - fix: update doc demos
#4262 - refactor(plugin-workflow): migrate directly action trigger to custom action trigger
#4253 - feat: support mobile iframe block and toolbar props
#4292 - fix: missing toolbar props
#4291 - fix: actionSchemaToolbar support x-toolbar-props
#4286 - refactor: external data source view collection createMainOnly
#4287 - feat: add Gantt and Kanban blocks in pop ups/drawers
#4277 - fix: association select report Maximum call stack size exceeded in sub-table
#4278
Commits
- chore(versions): 😊 publish v1.0.0-alpha.7
24590cd - fix(server): parse plugin name
61338ee - chore: update changelog
8ae7d48
v1.0.0-alpha.6 - 2024-05-07
Merged
- feat: detail block support linkage rule
#4221 - fix: bulk delete collection field should not close modal
#4263
Commits
- chore(versions): 😊 publish v1.0.0-alpha.6
a2d8870 - chore: add generate-npmignore.sh
140a3a4 - chore: update changelog
080fc78
v1.0.0-alpha.5 - 2024-05-07
Merged
- feat(database): append default sort options into find
#4231 - fix: switch date field of the linkage rule from expression to constant value display Invalid Date
#4251 - fix: collection fields should refreshed after editing sync from database
#4224
Commits
v1.0.0-alpha.4 - 2024-05-02
Merged
- fix(plugin-workflow-request): fix response log
#4249 - fix(plugin-workflow): fix e2e typo
#4247 - fix(plugin-workflow): fix duplicated triggering schedule event in multiple apps
#4201 - fix(client): fix error log in variable component
#4248 - client components
#4216 - fix(logger): gateway log cache issue && upgrade winston
#4250
Commits
v1.0.0-alpha.3 - 2024-04-30
Merged
- chore: add copyright information to the file header
#4028 - fix: upgrade sub app
#4246 - refactor: extract to SetTheCountOfColumnsDisplayedInARow
#4211 - refactor: tree collection association support sub-table & sub-detail
#4225 - chore: upgrade vitest
#4232 - fix: restore backup before 1.0
#4228 - chore: error message on backup restore
#4218 - fix: improve plugin static file proxy
#4227 - fix: build order bug
#4223 - fix: missing pageSize parameters when setting column field sorting
#4219
Commits
v1.0.0-alpha.2 - 2024-04-29
Merged
- fix: iframe bug
#4217
Commits
- chore(versions): 😊 publish v1.0.0-alpha.2
b7fb765 - Update README.md
edf4ece - fix(pm): parse name
c5b803a
v1.0.0-alpha.1 - 2024-04-29
Merged
- chore(versions): 😊 publish v1.0.0-alpha.1
#4186
Commits
- chore: update changelog
a29fcfd
v0.21.0-alpha.16 - 2024-04-28
Merged
- feat(plugin-workflow): refresh the list after sync
#4177 - feat(plugin-workflow): show workflow key as tooltip on title
#4178 - test(plugin-workflow): add test cases
#4199 - chore: api cache control header
#4203 - feat: load vditor dep from local
#4190 - test: input number separator test
#4204 - fix: number field shuold support separator setting
#4197 - fix(plugin-workflow): refine experience
#4195 - chore: optimize warning wordings of import & export
#4196 - refactor: external data source collection manager
#4193 - fix: env bug
#4191 - fix: empty operator with association field
#4189 - chore: add e2e
#4184 - fix: vditor version
#4183 - refactor: form data template locale improve
#4188 - test: add automated testing
#4098 - chore: data source logger instance
#4181 - chore: get database instance in relation repository
#4179 - chore: add e2e for variables
#4152 - chore: define collection debug message
#4176 - chore: unsupportedFields in view collection
#4155 - feat: add plugin-field-markdown-vditor
#4065 - fix: bulk edit form acl action error
#4166 - fix: auto create uuid foreign key in relation field
#4160 - fix(plugin-fm): fix confusing size limit hint
#4153 - fix(users): improve users:updateProfile
#4162 - fix(client): get api url
#4161 - feat: remove plugin-ui-routes-storage
#4140 - fix: lock cytoscape version
#4158 - refactor: collection template support presetFieldsDisabled
#4159 - fix: grid schema
#4157 - client unit test
#4150 - fix: update belongs to many association that target key is not primary key
#4146 - refactor: form data template locale improve
#4148 - fix(database): column name in array field
#4110 - test: refresh on action e2e test
#4147 - fix(custom-request): support configuring content type
#4144 - chore: deprecate the current record variable from the form
#4063 - feat(Theme): add some tokens
#4137 - fix(client): fix some warnings
#4143 - style: tableActionColumn style improve
#4138 - fix: actionBar style improve
#4123 - chore: warning message if on delete conflict
#4141 - fix(plugin-workflow-manual): allow pass node when no assignee
#4139
Commits
- chore(versions): 😊 publish v0.21.0-alpha.16
fdd3ca6 - chore: make e2e more stable
8524bea - chore: make e2e more stable
08f6872
v0.21.0-alpha.15 - 2024-04-23
Merged
Commits
- chore(versions): 😊 publish v0.21.0-alpha.15
05504b5 - chore: update changelog
ac30ccc - fix(ui-schema-storage): allow uiSchemas:getParentJsonSchema
4b51a43
v0.21.0-alpha.14 - 2024-04-22
Merged
- fix: load association field in collection
#4122 - perf: remove all Skeleton animation
#4113 - test: add e2e
#4121 - chore(data-vi): adjust api
#4116 - fix: scheduleEventTrigger
#4114 - feat(plugin-workflow): add checker for intervally dispatching
#4119
Commits
- chore(versions): 😊 publish v0.21.0-alpha.14
7e4ad0d - chore: update changelog
e25d155 - chore: add deprecated comment for CompatibleSchemaInitializer
451bcca
v0.21.0-alpha.13 - 2024-04-21
Merged
- feat: add filterOtherRecordsCollection for DataBlockInitializer
#4117 - refactor: optimize CollectionField
#4111 - fix: improve sort field migration
#4112
Commits
- chore(versions): 😊 publish v0.21.0-alpha.13
9b20b04 - feat(database): improve text field
c26e43a - chore: update changelog
52893e2
v0.21.0-alpha.12 - 2024-04-19
Merged
- fix: field component
#4102 - fix: association select support add mode
#4108 - fix: createdBy & updatedBy target option
#4109 - fix(linkage-rule): linkage rule support empty condiction
#4103 - fix: add SanitizedCollectionProvider
#4100 - fix: tree collection target error
#4105 - fix: add ClearCollectionFieldContext
#4101 - feat: improve form block
#4099 - chore: migrate sortable options to sort field
#4011 - feat: support sort option in appends
#4056 - feat(data-vi): allows pie chart to accept negative numbers, fix T-4075
#4094 - fix(data-vi): number becomes string after precision transformation
#4092 - fix: encode url params
#4055 - test(plugin-workflow): add test case for duplicated triggering schedule workflow
#3817 - perf(LinkageRules): solve lagging problems
#4090 - fix(subTable): should not display Allow add new data option
#4086 - fix: missing fields
#4083 - fix: table select pagination error
#4078 - fix: reset page when setting block data scope
#4081
Commits
- chore(versions): 😊 publish v0.21.0-alpha.12
a8eb2b7 - chore: update changelog
57242c1 - fix: delete sock files before nocobase start
3445001
v0.21.0-alpha.11 - 2024-04-17
Merged
- fix: custom request role list
#4074 - fix: parse iso week
#4068 - fix(sourceId): avoid error
#4077 - fix(sql-collection): can't select interface when setting fields
#4079 - fix: load with source field
#4075 - fix: deletion of operation linkage rules does not take effect in real time
#4058 - fix(core): fix round bug in formula evaluator
#4070 - test: add e2e for data loading mode
#4069 - fix(filterForm): avoid duplicate names
#4071 - chore: optimize block title
#4040 - fix: sync default value in view
#4067 - fix(defaultValue): fix the issue of default values disappearing after refreshing the page
#4066 - refactor: gantt block
#4059 - fix: sub-table big field should support variable default value
#4062 - chore(Theme): set the default font size of the Compact theme to 16
#4064 - test: add e2e for actions
#4053
Commits
- chore(versions): 😊 publish v0.21.0-alpha.11
438a059 - fix: getCurrentTimezone error
fa8e890 - chore: update changelog
68bc73b
v0.21.0-alpha.10 - 2024-04-16
Merged
- chore: adjust import & export warnings
#4060
Commits
v0.21.0-alpha.9 - 2024-04-16
Merged
- fix(variable): missing variables and invalid translations
#4054 - test: add backend unit tests
#4000 - fix: improve card item
#4036
Commits
v0.21.0-alpha.8 - 2024-04-16
Merged
- chore(acl): disable register association fields actions
#4014 - fix(variable): fix parent record variable reporting errors in data scope
#4039 - test(e2e): add assertions on field values
#4034 - feat(Variable): add a new variable
#4025 - feat: run e2e with pro plugins
#3890 - fix: bug
#4038 - fix: array operator with camel case field
#4032
Commits
- chore(versions): 😊 publish v0.21.0-alpha.8
8c779b4 - feat: add to more blocks
fe4be82 - chore: update changelog
db32005
v0.21.0-alpha.7 - 2024-04-13
Merged
- fix: scopeKeyOptions should be obtained in real-time
#4029 - fix(addText): should use FormItemSchemaToolbar instead of BlockSchema…
#3963 - feat: register once hook in datasource manager
#4024 - fix: snippets
#4030 - fix: vitest single bug
#4031 - feat(data-vi): improved user experiences (refer to pr)
#4013 - test: add frontend unit test
#3991 - feat: support Others option in popup
#4015 - fix(collection-manager): no refresh after override the field
#4022 - chore: add export & import warnings
#4027 - refactor: third party data source support sort field grouped sorting edit
#4023 - fix(plugin-acl): pm.acl.roles snippet
#4026 - test: association name block e2e test
#4021 - fix: get api url
#4020 - fix(Sub-details): the initializer button is not displayed when the field value is empty
#4019 - fix: initializer use useAassociationName
#4018 - fix(auth): cas login bug when use subdirectory deployment
#4017 - fix(TreeTable): add child error
#4008 - fix: remove active field should not clear value
#4012 - fix(plugin-acl): datasource roles snippet
#4016 - fix: after selecting all, bulk update prompts for unselected data
#4010 - refactor: tree table is not enabled by default
#4001 - feat(plugin-workflow-action-trigger): support association actions to trigger
#4007 - Update application.ts
#4006 - fix: tag filed setting
#4009 - fix(users): remove phone validation due to incorrect check of foreign phone numebrs
#4005 - fix: association block action permission verification failed
#3994 - refactor: fields for table sorting cannot select sorting fields with scopekey
#3984 - fix(Form): invalid parentRecord
#3998 - fix(plugin-workflow): adjust locale
#3993 - fix: sub -table support allowSelectExistingRecord setting
#4004 - fix(auth): sign up page not found when entering with url directly
#4002 - chore(database): set null value when field is unique and value is empty string
#3997 - chore(gateway): report error with cause message
#3999 - chore(error-handler): display message cause the error
#3996 - fix: restore with table name in camel case
#3995 - refactor(plugin-workflow): adjust comments
#3990 - fix: gantt collapse & expand
#3982 - fix(BulkForm): should be required when switching to 'Changed to'
#3965 - fix: move action
#3985 - refactor: sort field should not has defaultValue
#3986 - chore: update class names of plugins
#3981 - feat(plugin-workflow-sync): add sync when multi-app-share-collection enabled
#3969 - fix(localization): incorrect locale when first entering
#3968 - chore: adjust and add api comments
#3951 - refactor: select options configuration
#3964 - fix(GridCard): set the count of columns displayed in a row
#3960 - refactor: only numerical formula fields support format
#3962 - chore(plugin-workflow): add comments
#3959 - chore: remove legacy formula plugins
#3939
Commits
- chore(versions): 😊 publish v0.21.0-alpha.7
d66c2ba - chore: update docs of Theme editor
71366e3 - test: fix e2e
3dcbdf3
v0.21.0-alpha.6 - 2024-04-07
Merged
- fix(LinkageRules): should be effective immediately
#3958 - fix(Picker): should display Allow add new data option
#3957 - fix(connect-data-blocks): should immediately show in the drop-down menu
#3953 - fix: left menu title modify
#3956 - fix: template list provider bug
#3950 - refactor: nanoid &uuid autoFill
#3955 - feat: getParentJsonSchema in ui schema repository
#3690 - fix: save uuid & nano id field value with sequelize validation
#3952
Commits
- chore(versions): 😊 publish v0.21.0-alpha.6
6017c01 - chore: update changelog
06a9d00 - chore: report error if collection not found
0bb421a
v0.21.0-alpha.5 - 2024-04-07
Merged
- fix: throughCollection support fuzzy search
#3949
Commits
- chore(versions): 😊 publish v0.21.0-alpha.5
b63a685 - chore: update changelog
47dffe5 - feat: update license format
62fcc01
v0.21.0-alpha.4 - 2024-04-07
Merged
- fix: getSourceKeyByAssocation
#3947 - fix(RichText): unify style
#3946 - fix(connectDataBlocks): should add FilterBlockProvider to Grid
#3944 - chore: add appVersion to Schema
#3936 - fix: collectionFieldInterfaceSelect
#3945 - fix: fix sourceId of templates
#3941 - fix(collection manager): collection manager primarykey & nanoid & uuid suport index setting
#3943 - fix(plugin-formula-field): fix component context
#3937
Commits
v0.21.0-alpha.3 - 2024-04-06
Merged
- fix: nanoid availableTypes
#3942 - fix: automatically generate default values
#3940 - fix: formula field caluation error
#3938 - fix: formula field support format
#3928 - refactor: unify tab initailizer naming
#3932 - fix: add zIndex to Lightbox overlay style
#3934 - fix(Table): fix the problem that the content of the association field is not displayed
#3930 - fix(evaluators): fix array flatten
#3931 - refactor: main data source view collection support filterTargetKey
#3818 - fix: formula field calculation error
#3929 - fix: load view collection belongs to association with source options
#3912 - fix: edit form unchanged should not appear unSaveed warning when cloas modal
#3920 - fix(Collapse): fix error for chinaRegions
#3925 - fix: number display format
#3924 - fix(defaultValue): should immediate effect when set default value
#3923 - feat: action support refreshDataBlockRequest configuration
#3882 - refactor: formBlockProvider & detailBlockProvider
#3898 - feat(data-vi): allows to add charts for mobile client
#3922
Commits
v0.21.0-alpha.2 - 2024-04-03
Merged
- chore: add API comments
#3919 - fix: fix Pagination
#3921 - test(plugin-error-handler): middleware
#3909 - fix: update plugin
#3895 - fix: gantt block pagination
#3918 - fix: source id null
#3917 - fix(Table): fix Pagination
#3916 - fix: get the correct sourceId
#3897 - fix(DataScope): fix no immediate effect issue after saving
#3910 - fix: select field options initialValue
#3911 - fix: external link click
#3908 - fix(inputNumber): loss of accuracy in inputNumber
#3902 - feat(plugin-workflow-action-trigger): add global action events
#3883 - docs: add api comment
#3868 - fix: vitest config bug
#3907 - fix: table fixed bug
#3901 - fix: list data undefined error
#3905 - fix: lazy render bug
#3886 - fix: sort params missing
#3906 - refactor: change useProps to x-use-component-props
#3853 - fix(withDynamicSchemaProps): change deep merge to shallow merge
#3899 - fix: history block add print button, click print button to report error
#3900 - fix: tar bug
#3891 - chore: return bigInt as string type
#3887 - feat(data-vi): data scope for chart filter fields
#3894 - feat: adjust menu of add new
#3884 - fix(plugin-custom-request): fix edit button dialog
#3893 - fix: fieldNames missing when setting data scope
#3892 - fix: deps check error when dev add production plugin
#3848 - fix: workflow tabs not exists
#3889 - fix: association field support data scope linkage
#3888 - fix: templateBlockProvider support association field append
#3866 - chore: main datasource api
#3880 - feat: run vitest with coverage
#3802 - fix: avoid duplicate menu keys
#3885 - fix(data-vi): dual axes chart displays abnormally
#3881 - fix: reject update when filter is empty object
#3777 - chore: update field with primary key attribute
#3852 - refactor: uuid & nanoid support default value configuration
#3830 - feat: table performance
#3791 - fix: setFormValueChanged undefined
#3879 - fix(client): fix diabled in filter dynamic component
#3874 - fix(plugin-workflow-parallel): fix locale
#3876 - fix(formula-field): formula field set form value change
#3873 - fix: formBlockProvider block display
#3877 - refactor(plugin-workflow): change to
#3871 - fix: kanban card modal display abnormal
#3863 - fix: filterTargetKey only support view collection
#3872
Commits
- chore(versions): 😊 publish v0.21.0-alpha.2
d173aef - feat: update agreements
e2763b3 - chore: update vitest configuration
85f33ce
v0.21.0-alpha.1 - 2024-03-29
Merged
- fix: association parent request
#3865 - test: add unit test for parseHTML
#3870 - fix(data-vi): bug when filtering chart with assocations
#3867 - fix: table settings get collectionField
#3837 - refactor(plugin-workflow): add transaction check from data source
#3857 - fix(data-vi): charts size bug when changing chart type
#3859 - fix(server): commands failed to load properly on Windows
#3858 - fix(LinkageRules): should work properly after the block is saved as a template
#3855 - test: main data source e2e test
#3816 - fix: delete field style improve
#3820 - chore: remove add-attach option from bulk update action
#3854 - refactor: default role & default field storage
#3844 - refactor: linkage rule fireImmediately
#3847 - fix: reporting error when clicking on the print button for the detail block
#3845 - fix(data-vi): canvas height keeps increasing when filtering/reseting
#3849 - create nocobase app unit test
#3833 - refactor(DataBlock): details block
#3776 - fix: client internal method (T-3711 and T-3712 and T-3713)
#3839 - refactor(DataBlock): grid card block
#3781 - refactor(DataBlock): filter form
#3785 - fix: improve app manager
#3841 - refactor(DataBlock): kanban and gantt and map and calendar
#3792 - refactor(DataBlock): filter collapse block
#3786 - refactor(DataBlock): table selector
#3784 - refactor(DataBlock): list block
#3779 - refactor(DataBlock): form block
#3771 - fix(client): disable the default onSubmit event of the form
#3834 - fix(data-vi): charts flickers
#3836 - fix: acl e2e failed
#3835 - chore: menu permissions & plugins setting permissions
#3822 - fix: e2e-failed
#3828 - fix: missing button icon
#3832 - refactor: action icon
#3831 - Optimize building tools
#3824 - optimize ci
#3825
Commits
- chore(versions): 😊 publish v0.21.0-alpha.1
6e20ab1 - feat: update docker config
f2d4188 - chore: update changelog
dd0538a
v0.20.0-alpha.17 - 2024-03-26
Merged
- feat: read pretty input number field support display format config
#3815 - fix(Table): fix invalid pagination
#3821 - chore: add tsdoc
#3788 - chore(test): fix agent type
#3819 - fix: embed plugin need hooks and e2e change
#3727 - fix(associationBlock): fix association blocks for parent collection f…
#3813 - fix(plugin-workflow-manual): fix schema migration
#3814 - refactor(DataBlock): table block
#3748 - fix(Details): block template
#3807 - chore: cascade can replace set null action
#3812 - feat(data-vi): support multiple data sources
#3743 - feat(plugin-workflow): support multiple data source in workflow
#3739 - chore: add options for matching and ignoring test files in e2e and p-test commands
#3811 - chore: file collection template preset fields should be disabled
#3810 - fix(plugin-workflow): remove string template in condition calculation
#3688 - fix: refresh collection name when update
#3797 - fix: reload when data source click refresh
#3804 - fix: plugin manager keywords
#3809 - fix: expand action and add new action should support drag & sort
#3808 - fix: create attachments middleware
#3794 - fix: useExpressionScope
#3805 - chore: set default association reference on delete action to no action
#3722 - fix: field permission all fields should be displayed
#3799
Commits
- chore(versions): 😊 publish v0.20.0-alpha.17
3398222 - fix: description
0dc0d32 - chore: update changelog
35a6514
v0.20.0-alpha.16 - 2024-03-23
Merged
- refactor: view collection support filterTargetKey config
#3767 - fix: hide child when useVisible() is false
#3803 - fix(client): fix action designer error occured in custom form
#3801 - fix: through collection support search
#3800 - fix(subTable): fix sorting rule setting
#3795 - fix: load data source when data source load failed
#3793 - fix(acl): role menu loading status
#3787 - fix(acl): bug when adding users to roles
#3783 - fix: filter does not allow passing empty objects
#3780 - fix(acl): role menu list only displays one page
#3775 - feat(plugin-user): add model method desensitize() to filter hidden field
#3768 - fix(plugin-file-manager): fix storage locale on file template table header
#3769 - fix: first character entered in foreign key input is not displayed
#3770
Commits
- chore(versions): 😊 publish v0.20.0-alpha.16
71ec7ec - chore: update changelog
170d601 - fix: manual e2e
556152d
v0.20.0-alpha.15 - 2024-03-20
Merged
- fix(auth): sso auth bug when deploying with subpath
#3764 - chore: load roles after start
#3763 - fix: uuid & nanoid should be disabled when editing
#3762 - fix(logger): output error cause info
#3760 - fix: uuid field
#3736 - feat: disassociate action
#3759 - chore: merge sub app database options
#3640 - fix(acl): bug of user filtering when adding them to roles
#3754 - fix: app stopped status
#3723 - fix: fix the disappearing collections when searching
#3750 - fix: configure openSize for table action is only immediately valid for one row
#3752
Commits
- test: add e2e for Disassociate
8e322ae - chore(versions): 😊 publish v0.20.0-alpha.15
bef9c8a - chore: update yarn.lock
3da340c
v0.20.0-alpha.14 - 2024-03-18
Merged
- refactor: url field support text type as availableTypes
#3751 - chore: system logger with error stack
#3747 - chore: adapt to plugin-custom-brand
#3740 - fix(data-vi): tooltip bug of pie chart
#3745
Commits
- chore(versions): 😊 publish v0.20.0-alpha.14
c75d38b - fix(field-interface): nested filterable
3b61968 - chore: update changelog
84f0808
v0.20.0-alpha.13 - 2024-03-17
Merged
- fix: collections undefined inuseCollectionState
#3741 - test(acl):column action acl e2e
#3738 - refactor: colDivider style improve for draging overing
#3709 - fix(data-vi): association fields transform bug
#3737 - fix(acl): invalid action permission judgment
#3735
Commits
- chore(versions): 😊 publish v0.20.0-alpha.13
db9ff33 - fix: console command
820352f - chore: update changelog
6f74230
v0.20.0-alpha.12 - 2024-03-16
Merged
- fix: compatibility of @ant-design/plots 2.x
#3734
Commits
- chore(versions): 😊 publish v0.20.0-alpha.12
c1be864 - fix: yarn dev error
c191f14 - chore: update changelog
8278262
v0.20.0-alpha.11 - 2024-03-16
Merged
- feat: supports subdirectory deployment
#3731 - fix(variables): fix varaibles for table selector
#3725 - fixing timezone header when it is negative value
#3732 - fix(data-source): foreignkey
#3707 - feat: add data source filter
#3724 - fix(Table): fix disappearing content after selecting a row
#3726 - refactor: view collection set name as default title when title is missing
#3719 - refactor: add blocks in a unified way
#3668 - feat: support to set data loading mode
#3712 - fix: block template
#3714 - refactor(SchemaInitializers): unify naming style
#3604 - fix: remove env in colletion delete button
#3682 - fix(data-vi): update antv version
#3710
Commits
- chore(versions): 😊 publish v0.20.0-alpha.11
15ef818 - chore: update registry in yarn.lock
e877e3b - chore: update changelog
42448ec
v0.20.0-alpha.10 - 2024-03-13
Merged
- fix(client): size undefined in nanoid
#3708 - refactor(radio): radio support multiple field types
#3706 - fix: get async json schema
#3705 - fix: select fieldnames
#3704 - fix: field configuration of Kanban interacts with other block
#3689 - fix: radio
#3701 - feat: add uuid & nanoid & unitTimestamp interface
#3684 - fix(plugin-workflow): fix duplicated triggering schedule event
#3692 - refactor(client): add component to support data source select
#3691 - fix(Form): should be created instead of updated when clicking submit
#3687 - fix: incorrect pagination query parameters when batch deleting last page
#3670
Commits
- chore(versions): 😊 publish v0.20.0-alpha.10
40a2294 - chore: update changelog
a8e37f6 - fix: add external deps
24b52c9
v0.20.0-alpha.9 - 2024-03-12
Merged
- refactor: add child in inheritance of tree collection
#3676 - fix: data source add field refresh(T-3253)
#3645 - chore: escape underscore char in include query
#3681 - fix: upgrade app after restore
#3680 - fix: view collection association field foreignkey should be select
#3671 - fix: acl should return true when resource allowed
#3675 - fix: init scope value when all data is null value
#3674 - fix: inheritance cache bug
#3669
Commits
- chore(versions): 😊 publish v0.20.0-alpha.9
2e7da6e - fix: pagination error in roles collections resourcer
023096b - chore: update changelog
56fd24e
v0.20.0-alpha.8 - 2024-03-11
Merged
- chore: move collection manager snippets into data source
#3666 - fix(Form): retain field's default value after submitting the form
#3665 - chore: test
#3664 - fix(auth): cas service validate issue
#3661 - fix: infer postgres field
#3663 - fix(plugin-workflow-action-trigger): fix appends loading
#3659 - fix(plugin-workflow): fix migration
#3654
Commits
- chore(versions): 😊 publish v0.20.0-alpha.8
6fd06a2 - chore: update yarn.lock
eae5a87 - chore: update changelog
02dcb75
v0.20.0-alpha.7 - 2024-03-08
Merged
Commits
- chore(versions): 😊 publish v0.20.0-alpha.7
63d1a8d - chore: update changelog
12ba7cd - chore(ci): change branch of pro image
8dbae24
v0.20.0-alpha.6 - 2024-03-08
Merged
- fix: parse association field in acl
#3655 - chore: update menu name of plugin-localization
#3653 - chore(pm): set plugin-sms-auth as local plugin, close T-3323
#3652 - fix(cascadeSelect): cassadeSelect does not dislay data in edit form
#3649 - fix(db): through scope in eager loading & fix(acl): filter reset issue
#3636 - fix: dateTime format configured in table is invalid
#3630 - fix: data source permission role update
#3643 - style: flexWrap in actionBar
#3635 - fix: add displayName
#3628 - fix(customRequestAction): should not support setting icons and colours
#3632 - fix(workflow-action-trigger): change plugin name
#3631 - fix: graph collection postions data missing
#3627 - fix(ActionLink): fix hover style
#3629 - feat(plugin-workflow-form-trigger): add trigger button to all single record action bar
#3563 - fix: sidebar menu text overflow
#3626 - fix(acl-plugin-setting): pluginPermissions for snippets check
#3622 - fix(subTable): fix changing title field invalid
#3625 - fix: fix hover style for sub table
#3623
Commits
- chore(versions): 😊 publish v0.20.0-alpha.6
8b4821e - chore: update yarn.lock
1088756 - chore: update changelog
f9a10de
v0.20.0-alpha.5 - 2024-03-06
Merged
- fix(save-record): differentiate between creation and updating based on record.isNew
#3620 - fix(plugin-workflow): fix schedule repeat logic
#3612 - refactor: useFormItemInitializerFields
#3621 - fix: collection without filterTargetKey should not be able to add block
#3614 - fix(kanban): fix block
#3619 - fix: should display settings after field deleted
#3606 - fix: role name is error in role configure
#3618 - fix: bulkEditFormItemSettings collection undefined
#3616 - fix: calender failed to change view for week
#3602 - fix(Table): fix Fixed Block bug
#3601 - chore: remove data source
#3610 - test: acl test
#3609 - fix: not exists data sourec
#3608 - fix: data-block parent request with data-source
#3605 - fix: remove temp doc
#3603
Commits
- chore(versions): 😊 publish v0.20.0-alpha.5
0fc382d - fix(select): fieldNames are missing the value parameter
e82179f - chore(ci): build pro image
4716c13
v0.20.0-alpha.4 - 2024-03-05
Commits
- fix: update plugin package.json
e377f3a - chore(versions): 😊 publish v0.20.0-alpha.4
e7cc6cc - chore(data-source-manager): improve translation
9bd0f4f
v0.20.0-alpha.3 - 2024-03-04
Merged
- fix: create-nocobase-app + yarn dev error
#3599 - fix: chinaRegions association fieldName
#3600 - fix: field hidden with linkage rule should clear value
#3576 - fix(client): fix mistaken changed api
#3598 - style(TableColumn): fix style of mouse hover
#3597
Commits
- chore(versions): 😊 publish v0.20.0-alpha.3
ff9acd6 - chore: update changelog
a70e87f - fix: remove backup file
56d4d24
v0.20.0-alpha.2 - 2024-03-03
Commits
- chore(versions): 😊 publish v0.20.0-alpha.2
32b15cb - chore: update changelog
eda9a37 - fix: import
e5a380f
v0.20.0-alpha.1 - 2024-03-03
Merged
- feat: support for multiple data sources
#3418
Commits
- chore(versions): 😊 publish v0.20.0-alpha.1
29e10f3
v0.19.0-alpha.10 - 2024-03-13
Merged
- fix: get async json schema
#3705 - fix(plugin-workflow): fix off static schedule trigger
#3595 - fix(plugin-workflow): fix interval number greater then 32-bits integer
#3592 - fix: plugin settings auth bug
#3585 - fix: formula field should trriger onchange when value change
#3573 - fix(LinkageRules): fix linkage rules with nested conditions
#3578
Commits
v0.19.0-alpha.9 - 2024-02-28
Merged
- fix: upload action
#3577 - fix: dataSource in select readPretty is missing
#3574 - fix: actions schema key should be uid
#3570 - fix: datatime format support preview
#3572 - refactor(plugin-workflow): refactor schedule trigger implementation
#3562 - refactor: the default openSize of dialog should be middle
#3569 - style: plugin manager style improve
#3568 - feat(Help): switch to the Chinese page when using Chinese
#3567 - refactor: fixedBlockDesignerItem
#3550 - fix: lazy loading belongs to association
#3559 - style: set size of icon button
#3560 - chore: fix e2e
#3557 - feat: adjust of menu in upper right corner of page
#3548 - chore: optimize plugin description
#3552 - chore: update plugin descriptions
#3556 - docs(plugin-workflow): adjust plugin description
#3553 - docs(plugin-snapshot-field): adjust description
#3551 - feat(core): add string template engine to evaluators
#3546 - docs(plugin-workflow-loop): fix description
#3549 - chore: update plugin names and descriptions
#3547 - refactor: formula field should not trigger form value change
#3518 - chore: limit restore dialect
#3534 - fix(client): fix filter default value
#3544 - refactor: iframe block support in RecordFormBlockInitializers
#3541
Commits
- chore(versions): 😊 publish v0.19.0-alpha.9
9520b24 - chore: update changelog
90cdef8 - test: fix e2e
3a0f942
v0.19.0-alpha.8 - 2024-02-21
Merged
- fix(LinkageRules): fix appends
#3537 - fix(LinkageRules): avoid to change observable object
#3538 - fix: clicking on field assignment does not display field configuration for the first time
#3484 - refactor: display title
#3535
Commits
v0.19.0-alpha.7 - 2024-02-20
Merged
- chore: update Dockerfile
#3503 - chore: optimize environmental variables
#3528 - fix(bi): parse issue of date variables
#3520 - refactor(Linkage): optimize the parsing of expression variables
#3519 - fix(core): refactor evaluate to support dash in key path
#3517 - chore: field type map
#3516 - fix: detail block should not support pageSizeChanger
#3515 - fix: fields locales
#3511 - fix(subTable): should clear form value after submit
#3508 - style(PinnedPluginList): fix hover background color
#3501 - docs(plugin-workflow): fix keyword
#3498
Commits
- chore(versions): 😊 publish v0.19.0-alpha.7
8cb1942 - chore(ci): using concurrency
e93563c - chore: update changelog
86ff9dd
v0.19.0-alpha.6 - 2024-02-07
Merged
- fix: plugin load collections
#3499 - fix: sub-table should not support action column
#3497 - fix: password cannot be empty
#3491 - refactor: plugin manager keywords
#3490 - fix(plugin-workflow-form-trigger): fix locale
#3488 - fix: fix T-3012
#3489 - fix(plugin-workflow): fix revision with new properties
#3487 - style(lang): add zh-tw
#3446 - fix: layout of plugin settings icons
#3478 - fix(server): fix messages in data-wrapping
#3485 - style: fix color of more button and scrollbar style
#3486 - fix(plugin-workflow): fix processor options to pass any context
#3483 - refactor(plugin-workflow): optimize hint on binding workflow
#3480 - refactor: plugin manager optimize & support keywords
#3467 - refactor(plugin-workflow): support any context in processor as options
#3473 - test: parallel branch node e2e
#3471 - fix(defaultValue): should not use defaultValue in filter blocks
#3472 - fix: attachment field set as single and doesn't display re-uploaded attachments after deleted
#3469
Commits
- chore(versions): 😊 publish v0.19.0-alpha.6
d8bbdc9 - feat: update package.json
c0988d9 - chore: update changelog
5fa4305
v0.19.0-alpha.5 - 2024-01-30
Merged
- refactor: remove SharedFilterProvider
#3424 - fix(client): fix variable textarea ime state under edge
#3458 - fix(CascadeSelect): should change value when deleting value
#3440 - fix: filter form block failed to connect templat block
#3457 - refactor: bulk edit action set changeTo as default value
#3455 - fix: load sql collection with source field
#3456 - test: Workflow manual node e2e
#3451 - fix(plugin-workflow): fix end logic when success
#3453 - style: fix side menu text overflow style
#3450 - feat: support to add filter blocks for relationship blocks
#3436 - fix(plugin-workflow): fix collection cycling triggering
#3448 - fix: pro ci
#3447 - fix(plugin-workflow): fix sql transaction and locale
#3444
Commits
- chore: update changelog
538033a - feat: update changelog
0558169 - chore(versions): 😊 publish v0.19.0-alpha.5
8765208
v0.19.0-alpha.4 - 2024-01-26
Merged
- fix(client): fix cron locale when DOM and DOW both present
#3442 - fix(plugin-workflow): fix sync collection trigger transaction
#3437 - fix: skip migration if exists
#3439 - feat(core): add message handling on success
#3435 - refactor(plugin-workflow): add sync option for trigger
#3383 - feat: add Korean translation
#3428 - fix: should load association data of sub details
#3432 - feat(plugin-workflow): add cancel action for execution
#3425 - fix: change exit description
#3430 - fix: remove tree-kill package to core/cli
#3429 - fix: e2e test did not exit successfully
#3427 - refactor: configuration mode, buttons without permission should be displayed, but cannot be clicked
#3421 - refactor: permission sholud passed without setting x-acl action
#3410 - test: mysql version bug
#3412 - fix: attachment deletion and re upload do not display
#3405 - refactor: parent inherited collection support enable child collection in add new action
#3398 - feat: improve plugin manager process
#3386 - Fix/plugin workflow migration
#3404 - fix: varibales as & &Iteration is not correct in record picker
#3399 - fix(plugin-workflow-manual): fix value block in todo block
#3400 - fix: assciation field in sub-table should support enable link when readOnly or readPrety
#3390 - refactor: local translate
#3396 - fix: fix T-2916
#3393 - refactor(sub-table): sub-table support selection of existing records
#3311 - fix(auth): redirect URL after signing in by SSO sucessfully
#3387 - fix(custom-request): permission issues
#3306 - feat: supports the WS_PATH environment variable
#3384 - fix: table column sort params should support cancel sort
#3372 - fix: fix T-2909
#3373 - fix: graph collection auto layout reporting error
#3370 - test: collection selector test
#3371 - fix(TableSelectorProvider): parse filter param
#3366 - Revert "test: collection selector test"
#3369 - test: collection selector test
#3368 - refactor: local impeove
#3367 - feat(oidc): add advanced options
#3364 - fix: useDesigner Designer should has default toolbar
#3365 - fix: linkage rules support multi-level association value calculation and assignment
#3359 - fix: linkage rule only support action with context record
#3355 - fix(header): avoid affecting the colours of other menus
#3357 - fix: compute node random data even error
#3346 - fix(theme): fix color of header menu
#3354 - fix: dump with sql collection
#3350
Commits
- chore(versions): 😊 publish v0.19.0-alpha.4
65020f6 - test(e2e): increase the number of retries for error-prone tests
f466e6e - Revert "fix(theme): fix color of header menu (#3354)"
3a06893
v0.19.0-alpha.3 - 2024-01-09
Merged
- fix: e2e ci
#3349 - fix: collection field update reporting error
#3352 - fix: build clean
#3351 - fix: filter form drop-down selection to add data range
#3321
Commits
- chore(versions): 😊 publish v0.19.0-alpha.3
38c1981 - chore: update changelog
c1149d7 - fix(client): hide gmt property
f2de05b
v0.19.0-alpha.2 - 2024-01-09
Commits
- chore(versions): 😊 publish v0.19.0-alpha.2
2070f20 - chore: update changelog
1802ca6 - fix: error creating sock file on windows
6567013
v0.19.0-alpha.1 - 2024-01-08
Merged
- refactor: optimize the command line
#3339 - feat: application backup and restore
#3268 - fix: workflow e2e concurrency errors
#3345 - test: workflow aggregate node e2e
#3342 - test: workflow sql node e2e
#3341 - fix(z-index): avoid obscuring the pop-up and upgrade antd to v5.12.8
#3337 - refactor(plugin-workflow): add trigger title for workflow which is different with title
#3333 - fix(database): cannot find module 'node-fetch'
#3335 - chore(e2e): make parallelism mode more stable
#3294 - fix(plugin-workflow-manual): adjust locale and column
#3331 - feat: add onChange props to SchemaComponent
#3292 - fix: fix T-2879
#3330 - refactor: gantt tooltip hover
#3328 - refactor: view collection should omit rawTitle when sync form database
#3327 - fix: view collection should omit rawTitle when sync form database
#3326 - refactor(client): pass props to antd list
#3319 - perf(bi): optimize performance of chart filter block
#3316 - fix: attachment reporting error while opening preview modal in table
#3318 - refactor(client): adjust list item style and fix warning
#3315 - fix: z-index of antd
#3313 - fix: in the dev environment, all plugins are loaded locally
#3309 - fix(plugin-workflow): adjust locale
#3308
Commits
- chore(versions): 😊 publish v0.19.0-alpha.1
c39d339 - fix: e2e with build
fd4809d - chore: update changelog
d84d109
v0.18.0-alpha.9 - 2024-01-03
Merged
- chore(plugin-workflow): add metric example
#3305 - chore(vscode): add inspect argument for attaching to debug port
#3307 - fix(client): detail block should support save as block template
#3303 - feat(plugin-workflow-request): allow to use variable in url
#3304 - fix: dateformat setting should support sub-table/table block
#3297 - fix: record picker should support popupsize setting
#3299 - feat: telemetry
#3279 - chore(logger): append url to request log message
#3296 - fix(defaultValue): fix unparsed default value in edit form's subtable
#3289 - fix: previewFields
#3293 - chore(logger): improve format
#3290 - fix: view collection should set title value when sync form database
#3287 - fix: remove require cache
#3288
Commits
- chore(versions): 😊 publish v0.18.0-alpha.9
004998a - chore: update changelog
32dd641 - fix(ui-schema-storage): duplicate of empty schema
5de28cd
v0.18.0-alpha.8 - 2023-12-29
Commits
- chore(versions): 😊 publish v0.18.0-alpha.8
8bac8da
v0.18.0-alpha.4 - 2023-12-29
Merged
- refactor: record picker submit button display by association type
#3283 - fix: use appends param to load association data
#3282
Commits
- fix: add LICENSE
6816ade - chore(versions): 😊 publish v0.18.0-alpha.4
0882c0c - chore: update changelog
0c12fbc
v0.18.0-alpha.3 - 2023-12-29
Merged
- refactor(plugin-workflow): adjust some api and packages
#3281 - test(e2e): acl e2e test
#3249 - test(e2e): add tests for collection manager
#3253 - test: workflow e2e
#3261 - fix: associaion block failed to create in internalViewer
#3274 - fix: z-index should be the same value
#3278 - style: collection manger fields style improve
#3276 - fix: require module
#3277 - chore: optimize jsdom and vitest configuration
#3269 - refactor(logger): improve logger format
#2664 - refactor(plugin-workflow): refactor apis
#3267 - fix: record picker display incorrect data when field has default value in collection
#3266 - fix: useParseDefaultValue
#3264 - refactor: local improve
#3265 - fix(plugin-workflow): defend unimplemented trigger type
#3263
Commits
- chore(versions): 😊 publish v0.18.0-alpha.3
501e3f1 - chore: update changelog
28759aa - feat: add plugin.t() method
95a5cab
v0.18.0-alpha.2 - 2023-12-25
Merged
- fix(database): belongs to association only in eager loading tree
#3259 - fix(plugin-workflow): queueing execution of disabled workflow block dispatching
#3256 - fix: tsx cli
#3254 - feat(plugin-workflow): add space control to RadioWithTooltip
#3252 - feat(plugin-calendar): add calendar plugin
#3109 - fix(plugin-workflow-dynamic-calculation): fix missed component
#3247 - refactor(client): allow fixed layout table and action link class
#3246 - feat: the $anyof and $noneOf operators should support non-array values
#3244
Commits
- chore(versions): 😊 publish v0.18.0-alpha.2
e8f481a - chore: update changelog
c492977 - fix: incorrect tsx version on windows
e4c9765
v0.18.0-alpha.1 - 2023-12-21
Merged
- refactor: establish a sound testing system
#3179 - refactor(auth): move auth client from core to the plugin & refactor auth client api
#3215 - fix(drawer): fix z-index
#3242 - fix: failed to duplicate value in sub-table when setting data scope in association select
#3239 - refactor(plugin-audit-log): remove useless function wrap
#3237 - perf: remove lazy load association fields
#3222 - feat(acl): supports 'current role' variable and collections filtering
#3181 - refactor(plugin-workflow): add logs and try/catch for preparing
#3236 - chore: remove field from db
#3233 - fix(kanban): kanban data on a page should be isolated
#3232 - fix(filter): fix $in operatror
#3235 - fix(localization): compatibility with plugin package names as namespaces
#3234 - fix: customize add record cusomeizeCreateFormBlockInitializers
#3230 - fix: update assocations in belongs to many repository
#3229 - fix: fix switch role and input style
#3226 - fix: tsx must be loaded with --import instead of --loader
#3225 - feat: add a secondary confirmation function to the direct execution o…
#3161 - fix(graph-collection-manager): application context missing
#3224 - fix(variable): local variables should not affect global variables
#3214 - chore: upgrade antd to v5.12.2
#3185 - feat(mobile-client): update the text of the preview button
#3189 - feat(ui-schema): nocobase-admin-menu & nocobase-mobile-container
#3213 - feat: kanban& gantt&bulk edit& bulk update& duplicate& print action pluggable
#3019 - fix(core): cannot add a record block in new tab in Drawer
#3196 - fix(acl): optimize error handling when logged user has no roles
#3190
Commits
- chore(versions): 😊 publish v0.18.0-alpha.1
95e6a32 - fix(e2e): change the value of adminSchemaUid
1eee7f5 - chore: update changelog
7d2fe69
v0.17.0-alpha.7 - 2023-12-15
Merged
- fix: update dependent version of cache-manager
#3195 - fix: fix T-2749
#3194 - feat(plugin-workflow-form): add role name to form trigger context
#3182 - feat: manual-release
#3184
Commits
- chore(versions): 😊 publish v0.17.0-alpha.7
d6dbc97 - chore: update changelog
22ea9d9 - chore(database): update event listener scope in collection
f6fdec1
v0.17.0-alpha.6 - 2023-12-13
Merged
- fix: create-app dev plugin load
#3183 - fix: update yarn.lock
#3180 - test(e2e): add tests for client
#3144 - fix(plugin-workflow-manual): fix schema config component
#3172 - fix: use node:18-bullseye
#3178
Commits
v0.17.0-alpha.5 - 2023-12-12
Merged
Commits
- chore(versions): 😊 publish v0.17.0-alpha.5
3530135 - chore: update changelog
7b74e99 - chore: field type map
2c37910
v0.17.0-alpha.4 - 2023-12-12
Merged
- fix(theme-editor): "No permission" error when updating default theme of system
#3171 - fix: dev load remote plugin
#3175 - fix: sub-form(popover)in sub-table value mutual influence
#3164 - fix(plugin-workflow-manual): fix initializer
#3170 - feat(variable): add current role
#3167 - fix: plugin version not updated after upgrade
#3166 - fix: sub menu hide
#3168 - fix(bi): import bug
#3165 - refactor(plugin-workflow): split workflow features into plugins
#3115 - fix(bi): localization
#3159 - fix: fix default value is not working in sutable
#3155 - fix(plugin-workflow): fix destroy node locale
#3150 - fix(lm): texts update hook after collection update
#3151
Commits
- chore(versions): 😊 publish v0.17.0-alpha.4
cf9ccfe - chore: update changelog
32b9541 - fix(mock-collections): mock unique
efb6580
v0.17.0-alpha.3 - 2023-12-06
Merged
- fix: delete root docs
#3145 - fix(lm): wrong version of migration
#3148 - fix(lm): reserve i18n namespaces for plugins to avoid conflicts
#3121
Commits
v0.17.0-alpha.2 - 2023-12-06
Merged
- fix: default action schema settings
#3146 - feat(bi): filter block for charts
#2851 - fix: validate uid rule
#3140 - refactor: collection template support forbidDeletion setting
#3139 - fix: menu height bug
#3137 - fix: menu height 50vh
#3135 - refactor: uid validate rule
#3134
Commits
- chore(versions): 😊 publish v0.17.0-alpha.2
36fd488 - fix: load field when source collection not found
95bec22 - chore: update changelog
34e026c
v0.17.0-alpha.1 - 2023-12-04
Merged
- refactor: new schema initializer and schema settings
#2802
Commits
v0.16.0-alpha.6 - 2023-12-04
Merged
- fix: association field should support json field as title field
#3129 - fix(client): allow match query case insensitive
#3127 - fix(plugin-workflow): fix condition branch node finding logic (fix #3082)
#3128 - refactor: url& sequence support availableType as string
#3126 - refactor: view collection support json field
#3125 - chore(users): remove deprecated code
#3122 - refactor: collection template support configureActions
#3123 - fix: onTemplateSuccess undefined
#3119
Fixed
- fix(plugin-workflow): fix condition branch node finding logic (fix #3082) (#3128)
#3082
Commits
- chore(versions): 😊 publish v0.16.0-alpha.6
9d64430 - chore: update changelog
06ba3bf - feat: improve mock records
bfeaf45
v0.16.0-alpha.5 - 2023-11-30
Merged
- fix(pm): create plugin bug
#3117 - fix: fields options undefined
#3116 - refactor: map field support connect as remote table field
#3114 - fix(linkageRules): fix autorun
#3105 - chore: sync collection after set collection fields
#3112 - fix(client): adjust error message
#3108 - fix(plugin-workflow): fix form event parse variables
#3106 - chore: view primary key
#3107 - fix: query view collection with primaryKey
#3104 - fix: association data params missing appends
#3103 - fix(plugin-api-doc): non-main application crashes
#3100 - fix(linkageRules): avoid infinite loop
#3095 - fix(bi): fix T-2643
#3101 - chore: cache effective snippets results in acl role
#3102 - feat(database): support find with filter and where
#3097 - fix(plugin-workflow): fix schedule trigger
#3096 - fix: test db creator types
#3094 - test: load through collection with primaryKeys
#3093
Commits
- chore(versions): 😊 publish v0.16.0-alpha.5
8977420 - chore: update changelog
f4df696 - fix(cli): unsafe shell command constructed from library input
5ebd5d5
v0.16.0-alpha.4 - 2023-11-24
Merged
- refactor: avoid errors
#3091 - fix: avoid infinite loop
#3089 - refactor: import interface getOptions
#3088 - fix: sql collection creation issue
#3087 - refactor(plugin-workflow): show header of manual drawer
#3085 - fix: should load association data in subform
#3083 - fix: view collection json field rendering error
#3077 - fix: m2o association field should support pattern configure
#3074 - fix: subform disappears
#3073 - fix(plugin-mobile-client): page content disappears when tab is disabled
#3059 - fix(client): fix variable input style when disabled
#3071 - fix: update inherited collection performance issue
#3070 - fix(linkage): avoid infinite loop
#3069 - fix: add i18n resources after server app load
#3068 - fix: linkage rule in action set both disable and enable
#3065
Commits
- chore(versions): 😊 publish v0.16.0-alpha.4
ffb300d - chore: update changelog
3a0a0d1 - fix: dev plugins path
992f2d4
v0.16.0-alpha.3 - 2023-11-20
Merged
- feat: node >= 18
#3066
Commits
v0.16.0-alpha.1 - 2023-11-20
Merged
- refactor(cache): improve cache
#3004 - fix: local storage base url
#3063 - feat: show table definition
#3061 - feat: mariadb support
#3052 - fix(plugin-workflow): client minor fixes
#3062 - chore: view inference
#3060 - fix: sort by association collection
#3058
Commits
v0.15.0-alpha.4 - 2023-11-18
Merged
- fix(calendar): cannot switch week in week mode
#3057 - feat(e2e): add mockCollections
#3054 - fix: association table block overwirtten by default values in popver action
#3056 - feat: register collection sync logic
#3055 - fix: tableoid should pointed to target collection in assciation field data scope config
#3053
Commits
- chore(versions): 😊 publish v0.15.0-alpha.4
ef1b9db - chore: update changelog
54caf05 - fix: import @nocobase/utils/client
4a26b9b
v0.15.0-alpha.3 - 2023-11-16
Merged
- feat: e2e commands
#3042 - Revert "chore: hide linkage rule option in some buttons (#3046)"
#3051 - chore: hide linkage rule option in some buttons
#3046 - feat: collection factory
#3047 - fix: association block filter params
#3039 - fix(plugin-fm): fix error log
#3038 - refactor: findSchema should omit AssociationField.Viewer
#3037 - fix: fix display association fields with subform
#3036 - test: optimize command
#3030 - fix: attachment field in m2m association field report error whwen setting required
#3031
Commits
v0.15.0-alpha.2 - 2023-11-13
Merged
- fix: antd table ref bug
#3029 - fix: improve plugin settings code
#3028 - fix: plugin settings manager Component optional & delete isBookmark
#3027 - fix(plugin-workflow): fix workflow title in binding workflow configuration not showing
#3026
Commits
v0.15.0-alpha.1 - 2023-11-13
Merged
- refactor: plugin settings manager
#2712 - fix: fix regular of variable
#3024 - fix: should load association data in subform
#3020 - fix: association field in reference block failed to append
#2998 - fix: relational data should be loaded correctly on first render
#3016 - feat: plugin-mock-collections
#2988 - Update pull_request_template.md
#3013 - fix: should lazy load association data in subform
#3012 - fix(import): remove commas from numbers
#3011 - fix(static-server): directoryListing: false
#3010 - fix(theme): text color of page header right side
#3008 - fix: menu failed to design while menu title is empty string
#2999 - fix(plugin-workflow): add missed component
#3007 - fix: detail block has no data
#3003 - refactor(plugin-workflow): allow to use function for values when creating node
#3002 - fix(plugin-workflow): fix configuration drawer close logic
#3001 - chore: add aria label for workflow table
#2995 - fix: select item can not be selected in connecting data blocks
#2993 - chore: optimize error message
#2992 - refactor(plugin-workflow): change to function
#2991 - fix(plugin-workflow): fix loop scope variable
#2989 - chore: optimize error message
#2985 - fix(formula-field): formula field failed to real-time evaluating and support sub-form
#2983 - fix: association select should not clearing after config data scope
#2984 - fix(plugin-workflow): fix node form values when closed
#2978 - fix: button of details is not refresh when updating record
#2977 - fix: docs ci
#2976 - fix: avoid infinite loop
#2974 - feat: drop table with cascade option
#2973 - fix: client docs
#2965 - fix(variable): compat $date
#2971 - fix: add child action should omit children data
#2969 - chore: destory collection in share collection plugin
#2968 - fix: application bug
#2958 - perf: avoid page lag or stuttering
#2964 - fix: percent field component should support decimal point
#2966 - refactor: remove useless code
#2961 - test: client ui test
#2736 - fix: import action should not visible when view collection not editable
#2957 - refactor(plugin-workflow): add exports for client
#2960 - fix(plugin-workflow): fix canvas style
#2959 - fix(plugin-workflow): fix variables and form changed
#2955 - test(custom-request): update test case, avoid failed
#2954 - fix: create collection report error
#2953 - fix: target collection pointed to by tableoid is incorrect
#2952 - feat(plugin-workflow): add zoomer for workflow canvas
#2951 - feat(map-plugin): supports connecting each point into a line
#2216 - fix(calendar): render data of next month is incorrect
#2942 - fix(custom-request): parsed not working when the value of the variable is of type o2m.
#2926 - fix: improve local storage options
#2943
Commits
- chore(versions): 😊 publish v0.15.0-alpha.1
29457cb - chore: update changelog
3b2ad2f - fix: env APPEND_PRESET_LOCAL_PLUGINS
5c93750
v0.14.0-alpha.8 - 2023-11-01
Merged
- fix(e2e): APP_BASE_URL
#2938 - refactor(variable): rename
#2937 - fix(plugin-workflow): ajdust style
#2934 - fix: theme migration error
#2929 - refactor(plugin-workflow): add end property to branch
#2928 - fix(plugin-workflow): fix migration
#2927 - fix: app quickstart
#2921 - chore(theme-editor): add migration
#2367 - feat(e2e): add test.pgOnly
#2923 - chore: optimize locators
#2833 - chore(e2e): based postgres in CI to run e2e
#2924 - refactor(plugin-workflow): adjust branch styles
#2922 - feat: framework benchmark
#2915 - refactor: reset form values after create action
#2905 - chore: upgrade @formily/antd-v5
#2920 - fix(core): print not work when has sub-form or sub-details
#2852 - fix: association block was not associated after adding data
#2907 - feat: plugin-disable-pm-add-online
#2918 - fix: error when post create action with emtpy value
#2916 - fix: removed plugins, no longer added when upgrading
#2917 - refactor(plugin-workflow): change to use node key for variables
#2909 - fix: disappearing of fixed-block option
#2914 - fix: linkage rules cause abnormal field display
#2913 - fix: useRecord
#2911 - fix: useValuesFromRecord with cloneDeep
#2902 - fix: app fix at initialized state
#2908 - fix: cascadeSelect title label display error
#2904 - fix: foreignKey undefined in association field
#2903 - fix: linkage rule memory overflow
#2899 - fix: remove search by packageName
#2901 - refactor(plugin-workflow): add isAvailable check for adding node
#2898 - fix: fileManager selector should be radio when not allow multiple
#2884 - fix(plugin-workflow): fix schedule workflow under normal multi-apps
#2896 - chore: expose auth manager option in application
#2894 - fix(plugin-workflow): fix cycling association stackoverflow
#2892 - chore: create sub app db with context
#2891 - refactor(plugin-workflow): add property to determine workflow type triggerable on ui
#2890 - fix(variable): compat old variable names
#2889 - fix: disappearing of sub-form data
#2888 - fix(variable): fix currentObject
#2887 - refactor: assocation select file clear linkage
#2885 - fix(plugin-custom-request): improve x button style and afterSuccess not work when manualClose is enable
#2882 - fix(variable): make all fields of currentForm and currentObject variable optional
#2878 - fix(plugin-workflow): fix lang
#2881 - fix: non UI configured states should only display corresponding inhreited collection block
#2879 - fix: assocition select rendering error in create mode
#2880 - fix: action linkage not work in detail block
#2875 - fix: record picker did not refresh list after adding data
#2877 - fix: select field incorrect rendering in association field block
#2876 - feat(variable): add current parent record
#2857 - fix(plugin-custom-request): variables not work in form block
#2873 - fix: remote plugin name
#2872 - feat(database): sync false option
#2864 - fix(client): fix varaible textarea setRange bug
#2862 - fix: after successful submission failed to config redirectTo
#2867 - fix: m2o association field should not allow sub-table as field component
#2865 - fix(plugin-sequence): avoid invalid value from
ArrayTable.useRecord()#2859 - fix: field in detail block should not allow config default value
#2858 - chore: ci yarn cache
#2853 - feat(ci): run backend tests concurrently
#2815 - feat(custom-request): improve x button of variable
#2829 - docs(plugin-api-keys): add warning for API_KEY env
#2847 - refactor(client): add exports
#2846 - fix(variable): should have currentObject in sub-blocks
#2823 - fix: revert linkage rules
#2821 - fix: should not display currentRecord in creation form block
#2814 - fix(plugin-workflow): fix lang
#2844 - fix: codesanbox bug
#2842 - revert:association field log
#2840 - fix: association field in assign field should set title field as collection field config
#2839 - fix: version source
#2836 - fix(plugin-workflow): fix action order in workflow list
#2835 - fix(file-manager): improve initialization logic
#2834 - feat: support filter blocks in select record drawer
#2828 - fix: remote plugin
#2831 - fix: fix auto-close dialog
#2825 - feat(auth): add global auth token provider
#2824 - feat(file-manager): support configuring thumbnail rules
#2810 - feat(client): add disabled for initializer switch and undeletable for action settings
#2820 - refactor(plugin-workflow): adjust ui and client api
#2817 - fix(client): fix action component warning
#2818 - fix: multiple select should assigned null after clear value
#2822 - feat(plugin-custom-request): support better custom-request
#2536 - fix: cascadeselect report error in m2m association field
#2819 - fix(plugin-workflow): ignore queuing executions which workflow has been deleted
#2808 - fix: assign field modal cantnot open
#2807 - fix(auth): SSO issues
#2733 - fix: data scope report error with invalid variables
#2811 - style: import action modal formlayout
#2809 - fix: option should clear when data scope change
#2800 - test: confirm the feasibility of e2e test cases
#2799 - fix: the input box displayed should correspond to the field type
#2805 - fix(bi): query with
limit#2803 - fix: record picker cannot select data when editing
#2798 - feat: add measure execution function
#2801 - chore(bi): complete chart api
#2771 - fix: fix the wrong way to determine form type
#2787 - fix: bug
#2797 - fix: should not show loading when children is enpty in menu
#2796 - fix: should save operators
#2794 - fix(client): fix undefined field method on button
#2795 - fix: data scope linkage in association field
#2786 - chore(e2e): delete collectionName key
#2783 - fix(client): fix rendering cause range bug
#2785 - chore(collection-manager): Throw an error when the value of foreignKey is the same as otherKey
#2780 - fix: percent value invalid
#2782 - fix: percent value should divide by 100
#2781 - Revert "fix(client): fix rerendering cause range bug (#2770)"
#2779 - refactor(e2e): support batch creation of collections
#2778 - fix: field history with reverse field
#2776 - fix: should allow to set default value in relationship form block
#2777 - fix(plugin-workflow): fix toJSON type check
#2772 - fix: create collections with multiple records
#2753 - fix(client): fix rerendering cause range bug
#2770 - fix(default): should allow to set default value in relationship form block
#2774 - fix(percent): percent failed to input 0
#2769 - refactor(duplicate action):duplicate fields error when change duplicate mode & support unselect all
#2768 - feat(gateway): extend app selector as middleware
#2761 - fix(expression): should reset lastIndex of regular
#2767 - refactor(plugin-workflow): add new status for 'retry needed' scenarios
#2765 - fix(variable): should not return undefined when parsing 0
#2766 - fix(variable): should not disable options in expression
#2764 - fix(subtable): should not have a value by default and fix key of table
#2763 - style: fix PageHeader
#2760 - fix(graph-collection-manager):graph collection cannot open edit modal
#2759 - test(e2e): add a test for check table row
#2757 - style: list block style improve
#2755
Commits
- Delete docs/tr-TR directory
3fe6265 - test: 确认e2e测试用例可行性
ef1b07e - Revert "fix(default): should allow to set default value in relationship form block (#2774)"
88807b3
v0.14.0-alpha.7 - 2023-10-07
Merged
- feat(variable): lazy load association fields
#2382 - chore(e2e): make stability
#2751 - fix(plugin-workflow): fix context data of form trigger
#2749 - refactor(auth): OIDC, SAML auth switch popup to redirectction
#2737 - chore(database): clean invalid associations in collection model when set field failed
#2720 - feat: support e2e
#2624 - feat(application): cron job in application
#2730 - refactor(bi): improve chart frontend api
#2721 - chore(multi-app-manager): add sub app upgrade handler
#2728 - fix(association-field): sub-table cannot move
#2727 - fix(plugin-workflow): fix assignees and aggregate variable
#2725 - refactor: file association field should default to using preview field as title field
#2718 - refactor: view collection support jsonb
#2719 - perf: improve the UX of SchemaInitializer
#2666 - fix: fileManager did not close drawer after selecting files
#2716 - fix: association block should not close drawer after deleting data
#2717 - fix: action linkage rule not effect in tree collection
#2713 - fix: useAssociationNames
#2714 - refactor: attachment field support size config
#2552 - feat: association support select cascade for tree collection field
#2514 - feat(database): append tree parent recursively
#2573 - feat: support load belongs to association with collection that without primary key
#2529 - fix(gateway): should not refresh when application start from error recover
#2711 - feat(db): add sql collection
#2419 - fix: inherited collection failed to select
#2710 - fix: form-data-template failed to clear option
#2709 - fix: tableoid options value of association field in filter is incorrect
#2705 - fix: saving method of association field creation button is not effect
#2706 - fix: gen tsconfig.paths.json bug
#2708 - fix(plugin-workflow): fix exporting types
#2707 - fix(plugin-workflow): fix parallel bug in loop
#2703
Commits
- chore(versions): 😊 publish v0.14.0-alpha.7
384cc1c - Revert "refactor(auth): OIDC, SAML auth switch popup to redirectction (#2737)"
301a85d - feat: update docs
dd53633
v0.14.0-alpha.6 - 2023-09-22
Merged
- refactor(plugin-workflow): add client exports
#2702 - refactor: view collection support add m2o association field
#2422 - fix: fix operator called of date field
#2701 - fix: deep level association field adding error
#2700 - fix(cli): fix template file mode
#2697
Commits
- chore(versions): 😊 publish v0.14.0-alpha.5
3b0b648 - chore(versions): 😊 publish v0.14.0-alpha.6
8eb6344 - chore(versions): 😊 publish v0.14.0-alpha.5
bffa53a
v0.14.0-alpha.4 - 2023-09-21
Merged
- fix: collection schema not exists
#2669 - fix: core doc filter params
#2695 - feat: add testid
#2434 - feat(database): support read ssl file in database config
#2689 - test: should correctly parse the command options
#2688 - fix: build bug
#2685 - feat(database): perform data validation before the update/create operation
#2681 - fix: build bug
#2683 - refactor: association block acl improve
#2682 - refactor: acl collection field provider
#2679 - chore: test
#2677 - style:form-item style improve
#2678 - fix(acl): association field acl check error
#2675 - chore(command): set command handle by ipc server or not
#2660 - fix(auth): user role not found
#2674 - fix: file association field cannot set file manager as field component
#2672 - feat(database): database connecting backoff
#2668 - refactor(plugin-workflow): adjust code
#2663 - fix(auth): change password issue of basic auth
#2662 - fix: interface group undefined
#2656 - refactor: view collection float type field supports number and percent
#2653 - fix: template tsconfig paths
#2652 - fix: improve build
#2643 - fix(share-collection): sync plugins when install sub app
#2650 - fix: fix quarter variables
#2648 - fix: filterable undefined
#2646 - fix(cli): reset command options
#2645
Commits
- chore(versions): 😊 publish v0.14.0-alpha.4
d20398f - feat: update readme.md
a484e89 - fix: db.sync
282645e
v0.14.0-alpha.3 - 2023-09-13
Merged
- fix: plugin symbol link with
dirtype#2640 - style: collection category style improve
#2638 - style: collection category style improve
#2637 - chore: should update belongs to many through table when it is a view
#2635
Commits
- chore(versions): 😊 publish v0.14.0-alpha.3
6058850 - feat: update docs
3e87ad9 - fix: remove PluginManager.getPackageName
de8fc80
v0.14.0-alpha.2 - 2023-09-13
Commits
- chore(versions): 😊 publish v0.14.0-alpha.2
3670d67 - chore: update changelog
4271713 - fix: migration error
1798170
v0.14.0-alpha.1 - 2023-09-12
Merged
- feat: new plugin manager, supports adding plugins through UI
#2430 - fix(mobile-client-plugin): avoid primary field error
#2625 - fix(plugin-workflow): fix scope variable in loop
#2633 - fix: create action reported error when config save mode filterKeys
#2631 - fix(gateway): throw error when run from cli
#2627 - feat(plugin-workflow): support variable in midway path
#2598 - feat(database): support ssl config of database
#2620
Commits
- chore(versions): 😊 publish v0.14.0-alpha.1
117d4b8 - fix: error: SQLITE_ERROR: no such table: authenticators
adf11bf - fix: original error: SQLITE_ERROR: no such column: options
6cc88df
v0.13.0-alpha.10 - 2023-09-10
Merged
- chore: remove username interface
#2621 - refactor: useFieldModeOptions
#2612 - feat(bi): allow to use variables in query filter
#2609
Commits
- chore(versions): 😊 publish v0.13.0-alpha.10
fec17d5 - chore: add NOCOBASE_SYSTEM_SETTINGS to localStorage
893b2d7
v0.13.0-alpha.9 - 2023-09-07
Merged
- fix: core/client package.json module error
#2610
Commits
- chore(versions): 😊 publish v0.13.0-alpha.9
b655517
v0.13.0-alpha.8 - 2023-09-07
Merged
- chore(antd): reduce animation duration
#2602 - fix: window reload after pm load failed
#2605 - fix: sync roles collection in share plugin
#2601 - fix: fix collapsed panels not working when clicked
#2600 - feat(graph-collection-manager): display collections on demand
#2583 - fix(acl): parse acl params of association collection
#2594 - fix: issue of plugin snippet
#2593
Commits
v0.13.0-alpha.7 - 2023-09-05
Merged
- chore: incr bodyParser body limit
#2591
Commits
- chore(versions): 😊 publish v0.13.0-alpha.7
97b4570
v0.13.0-alpha.6 - 2023-09-04
Merged
- fix: resource undefind
#2589 - fix(RangePicker): fix shortcut invalid
#2586 - fix(auth): add authenticator uid limitation
#2587
Commits
- fix: yarn install on windows
eb255df - chore(versions): 😊 publish v0.13.0-alpha.6
e5f5358 - chore: optimize versions of deps
88b2eb8
v0.13.0-alpha.5 - 2023-09-03
Merged
- refactor: build tools
#2374 - feat(plugin-cas): support cas authenticator
#2580 - fix: association block report error for toOne association field
#2582 - feat(gateway): response cli result when run nocobase command
#2563 - fix(collection-manager): redundant fields after set collection fields
#2575 - refactor: restrict the use of tree table in data selectors
#2581 - fix(plugin-fm): add migration to fix attachment ui schema
#2579 - fix(plugin-fm): fix attachment field param typo
#2577 - fix(FilterDynamicComponent): avoid crashing
#2566 - feat(api-keys): add tooltip for roles
#2567 - fix: number field reported error when clear data
#2561 - docs(plugin-workflow): fix swagger docs
#2565 - fix(acl): grant action with table without createdAt field
#2562 - refactor(collection-manager): collection &&fields support description config
#2554 - chore: set audit-logs as local plugin
#2564 - style: sub-table add button style improve
#2508 - refactor: associatiion fields in table should not have data scope settings
#2509 - feat(plugin-workflow): add filter button for workflows list
#2555 - fix(plugin-workflow): fix destroy node bug
#2553 - fix: properties initialized in plugin.load are still empty in plugin.install
#2544 - fix: plugin list not updated after upgrade
#2545 - fix(theme-editor): fix enable invalid
#2539
Commits
- chore(api-doc): collection manager db views api doc
9288cb9 - Revert "fix(RangePicker): fix shortcut invalid (#2489)"
8e42da2 - chore(versions): 😊 publish v0.13.0-alpha.5
af34fe1
v0.13.0-alpha.4 - 2023-08-27
Merged
- fix(RangePicker): fix shortcut invalid
#2489
Commits
v0.13.0-alpha.3 - 2023-08-26
Merged
Commits
- chore(versions): 😊 publish v0.13.0-alpha.3
5278017 - fix: swagger filter params
3d9a6ef - fix: xpipe.eq
9364a44
v0.13.0-alpha.2 - 2023-08-24
Merged
- refactor(plugin-workflow): hide unused form in manual ui after done
#2526 - style(plugin-workflow): adjust terminal style on workflow canvas
#2524
Commits
- chore(versions): 😊 publish v0.13.0-alpha.2
f4a1953 - chore: update changelog
a638442 - fix(plugin-client): extract locale files of antd
cf77ca1
v0.13.0-alpha.1 - 2023-08-24
Merged
- feat: application supervisor
#2353 - fix: sort field init
#2520 - feat: api documentation plugin
#2255 - fix(plugin-workflow): fix duplicated downstream executions after condition
#2517 - fix: basic-auth compitibility issue
#2515 - fix(plugin-workflow): fix status button styles
#2516 - fix(plugin-fm): fix error when add attachment field to manual form assigned values
#2503 - fix(plugin-workflow): fix loop scope variable parsing
#2502 - feat(database): support field get in view preview
#2482 - refactor: m2m data filtering through collection data
#2497 - refactor(graph-collection-manager): update antv-x6 to 2.x
#2466 - fix: view collection reported error when editing
#2493 - fix: dev load plugin
#2455 - fix(plugin-workflow): fix variable type check
#2492 - chore: remove Default value option for sequence field
#2488 - fix: tagcolor value error
#2487 - feat(auth): support signing in with username
#2376 - fix: view collection source field
#2483
Commits
- chore(versions): 😊 publish v0.13.0-alpha.1
6debb8d - chore: update changelog
b91a923 - fix: swagger block event loop
b063000
v0.12.0-alpha.5 - 2023-08-18
Merged
- fix(sdk): window is not defined in nuxt (#2479)
#2481 - fix: source collections not updated during synchronization in view collection
#2480 - feat(plugin-workflow): add user variable to form trigger context
#2477 - fix: large field in the subtable do not display value
#2475 - fix: error in tree table dragging and sorting
#2476 - fix: prompt on the last row of the subtable row is obscured
#2467 - fix(plugin-workflow): fix form trigger data bug
#2472 - fix: hook error in
isTitleField#2471 - fix(plugin-workflow): fix create/edit workflow form
#2470 - fix(plugin-workflow): fix fields filter in value assignment nodes
#2469 - refactor: view synchronization field, source field support selected to inherited collection field
#2456 - fix(plugin-workflow): fix schedule config component witdh
#2461 - refactor: sub-table/sub-form support formula field
#2449 - refactor: remoteSelect fieldName value
#2457 - chore(database): view with hashed id field
#2458
Commits
v0.12.0-alpha.4 - 2023-08-15
Merged
- feat(plugin-workflow): add sort and pagination to query node params
#2453 - style: ellipsisWithTooltip style improve
#2451 - refactor: add new action init icon
#2454 - fix(plugin-map): should filter empty data, Close T-1380
#2447 - fix: should show/hide schema when enabled/disabled TabBar, Tabs, Header
#2428 - fix(client): fix select button height in variable textarea
#2450 - refactor: default value for field configuration in sub-table
#2425 - fix(plugin-workflow): fix assign attachment value in nodes
#2448 - fix(findSchema): table operation action and detail operation action interact with each other
#2446 - refactor: recordPicker => associationField
#2444 - style: schemaSetting dropdown style improve
#2432 - refactor: buffer form attachment file name
#2429 - fix(plugin-workflow): fix aggregate node association select
#2438 - fix(plugin-workflow): add enablement editing back to workflow form
#2431 - fix(plugin-workflow): fix locale
#2427 - feat(map-plugin): map block support select map field of association tables
#2214 - feat(plugin-workflow): allow to configure auto delete execution in history
#2423 - refactor(schema-template): Inherit collection using blockTemplate
#2418 - fix(mobile-client): style broken and display correct mobile url in sub app
#2414 - fix(plugin-workflow): adjust styles
#2417 - feat(plugin-workflow): add form trigger type
#2347 - fix(data-template): titleField undefined
#2398 - refactor: map clear modal getContainer
#2410 - fix: useSyncFromForm support multi-level relationships
#2413 - refactor: restrict the fields within the configured data scope in sub table
#2394 - feat(plugin-workflow): add execution dropdown for quick navigating
#2404 - refactor(plugin-workflow): change reload api to sync, and fix duplicated listening
#2403 - feat(plugin-workflow): add clear button for clearing executions
#2401 - feat(plugin-workflow): add modal to edit title when duplicating workflow
#2399 - refactor: should not trigger event of row when clicking in drawer
#2400 - fix(database): update belongs to many relation with target collection
#2393 - refractor(remote-select): association field data scope merge with original filter conditions
#2118 - fix(plugin-workflow): fix manual assignee select variable type filter
#2396 - fix: params undefined
#2397 - feat(plugin-workflow): add reload for multi-app
#2391 - refactor:the default value of the built-in field should not be required
#2115 - feat(bi): make more config visualizable
#2386 - refactor: table select record restricted the usage association field
#2338 - fix: useVariablesCtx
#2390 - fix: customized create action supports tree data for table selection data
#2328 - fix: no field configuration items for association field details in the sub table
#2384 - fix: resource undefined
#2372 - refactor: remoteSelect support non object value
#2375 - fix: linkagerule copy data mutual influence
#2333 - refactor: association field support sorting rules in sub-table
#2326 - feat(association-field): association field support sub-form(popover)
#2373 - fix(markdowm): markdown style hook error reporting
#2380 - fix: currentObject can not loadData
#2385 - chore: change debug server to yarn dev
#2383 - feat: association blocks support
GridCardandListblocks#2356 - fix(plugin-mobile): the layout is incorrect
#2360
Commits
- chore(versions): 😊 publish v0.12.0-alpha.4
df85fb4 - fix: improve translation
15504c2 - chore: dockerignore
b34b731
v0.12.0-alpha.3 - 2023-08-02
Commits
v0.12.0-alpha.2 - 2023-08-02
Commits
- chore(versions): 😊 publish v0.12.0-alpha.2
6ae22ce - fix: chore: update changelog
524571e - fix: update dockerfile
f4d97a5
v0.12.0-alpha.1 - 2023-08-02
Merged
- refactor!: plugins build and plugins load
#2253 - fix: modal will automatically close when configing fields to association field details in sub-table
#2371 - fix(default-value): should not show 'N/A' when a normal value is selected.
#2365 - fix(bi): issue of parsing label of region & file field
#2366 - chore: upgrade antd to 5.7.3
#2359 - fix(bi): g2plot render wrong when fields contain
.#2363 - fix: graph collection current appInfo error
#2364 - refactor(association field): association field support tag field mode
#2251 - refactor: form data templates and depulicate action support sync from form fields
#2314 - chore: only dev env can throw errors
#2355 - fix: inheritd association field failed to get detail data
#2354 - refactor(plugin-workflow): adjust full-width to auto-width
#2351 - Revert "feat(theme-editor): add migration (#2310)"
#2352 - fix(locale): acl bug of localization management
#2350 - feat(theme-editor): add migration
#2310 - feat: support JSONB
#2321 - fix(bi): parsing enum labels of field with alias
#2349
Commits
- chore(versions): 😊 publish v0.12.0-alpha.1
93f2bc2
v0.11.1-alpha.5 - 2023-07-29
Merged
- refactor(plugin-workflow): change strict equal and not equal to unstrict
#2346
Commits
- chore(versions): 😊 publish v0.11.1-alpha.5
40c4aab - fix: update yarn.lock
656287e - refactor: make testing more stable
3c7b3f3
v0.11.1-alpha.4 - 2023-07-29
Merged
- refactor(plugin-workflow): allow system values to be assigned in create and update node
#2345 - chore(database): merge fields arguments by path
#2331 - fix(theme-editor): avoid error
#2340 - refactor: upgrade @testing-library/react to 14.x
#2339 - test: view collection as through model
#2336 - fix: sub-form record provider data failed to matching
#2337 - fix(bi): issue of formatting relation field & reference link of line chart
#2332 - chore: tsx
#2329 - chore: upgrade jest
#2323
Commits
- chore(versions): 😊 publish v0.11.1-alpha.4
b93f28a - fix: yarn run test
d956c90 - chore: update changelog
54f2405
v0.11.1-alpha.3 - 2023-07-26
Merged
- fix(plugin-workflow): fix expression field in sub-form
#2324 - chore: improve FormProvider
#2322 - fix: collectionField undefined
#2320 - fix: should use
filterinstead ofwhere#2318 - fix(bi): issue of dnd
#2315 - feat(filter-block): support foreign key and inheritance
#2302 - chore: merge docker build
#2317 - feat(locale): allows to manage locale resources in core package
#2293 - fix(plugin-workflow): fix styles
#2316 - Feat/translation fr_FR
#2275 - feat: customize action support create record for any collection
#2264 - refactor: form data template support data scope config
#2229 - chore: auto fix eslint errors when pre-commit
#2304 - refactor: sub-table acl ignore
#2259 - refactor: date field UI supports configuration formatting
#2241 - fix(plugin-workflow): fix schedule duplicated triggering in multi-apps
#2313 - refactor: table column field provider optimize
#2312 - fix: table column field undefined fix
#2311 - fix: table column field failed to be actived
#2309 - fix(default-value): fix tag in RemoteSelect
#2306 - fix: modal not displayed when clicking on the association field in the table
#2292 - fix(database): skip reference delete on view collection
#2303
Commits
- chore(versions): 😊 publish v0.11.1-alpha.3
81819f0 - chore: fix Warning if eslint
986e241 - chore: fix prettier
30b0d9b
v0.11.1-alpha.2 - 2023-07-23
Commits
- chore(versions): 😊 publish v0.11.1-alpha.2
c84476d - chore(theme-editor): fix deps
d0528cf - chore(theme-editor): fix deps
25decf0
v0.11.1-alpha.1 - 2023-07-22
Merged
- fix(plugin-workflow): workflow collections should not appear in blocks
#2290 - chore: remove belongsToMany through table as collection dependency
#2289 - feat(database): handle targetCollection option in repository find
#2175 - feat: add built-in themes
#2284 - docs: add doc for Theme Editor
#2280 - fix: fix sorting of user menu
#2288 - feat(theme-editor): support to config Header's color and Settings button's color
#2263 - feat(plugin-workflow): add sql node
#2276 - fix: the drop-down multiple selection fields are not displayed as title fields when inherited collection
#2257 - fix(bi): orderBy bug under MySQL
#2283 - test: make testing more stable
#2277 - fix(bi): eliminate redundancy queries
#2268 - fix(client): using component as action title
#2274 - fix(middleware): revert now variable back
#2267 - fix: linkage failed with current date variable
#2272 - fix: fix style of page tab
#2270 - fix: collection select no options
#2271 - refactor: add locale plugin
#2261 - feat(plugin-workflow): allow manual form button to be configured with preset values
#2225 - feat(plugin-workflow): change to unlimited depth preloading associations in workflow
#2142 - feat: localization management
#2210 - refactor: linkage rules support datetime
#2260 - fix: view inherited collection field reported error
#2249 - fix: loading did not disappear after submission failure
#2252 - feat: support custome themes
#2228 - chore(plugin-workflow): fix breadcrumb warning
#2256 - fix(plugin-workflow): fix request node error in loop
#2254 - feat(database): view collection support for add new, update and delete actions
#2119 - refactor(client): change isTitleField check to interface property titleUsable
#2250 - fix: option field display value in workflow todo list
#2246 - fix(plugin-workflow): fix dispatch bug
#2247 - fix: avoid crashes when emptying DatePicker's value
#2237 - fix: no template data requested during depulicating
#2240 - fix(plugin-workflow): fix job button style
#2243 - fix: avoid crashing when delete group menu
#2239 - fix: should auto focus in drop-down menu
#2234 - fix(plugin-fm): adjust upload file size to 1G which same as default on server side
#2236 - fix: should only show one scroll bar in drop-down menu
#2231 - fix: failed to correctly respond to optional fields in the child collection in the parent collection table
#2207 - fix(core): fix batch update query logic
#2230 - fix: should limit submenu height
#2227 - fix(upload): fix style of attachement in Table
#2213
Fixed
- fix(plugin-fm): adjust upload file size to 1G which same as default on server side (#2236)
#2215
Commits
- chore(versions): 😊 publish v0.11.1-alpha.1
e979194 - fix(theme-editor): remove db.sync
fa2de8e - fix(theme-editor): fix color of menu when it is selected
8c90436
v0.11.0-alpha.1 - 2023-07-08
Merged
- refactor(client)!: upgrade antd to v5
#2078 - fix(plugin-workflow): fix loop variable
#2211 - fix(db): fix .now variable
#2209 - chore(plugin-workflow): adjust types
#2206 - Breaking change: refactor(client)!: application, router and plugin
#2068 - fix(plugin-workflow): try to avoid occasionally duplicated executions
#2196 - fix: association field display has been delete in sub-form
#2205 - refactor(client): abstract RawTextArea for variable input
#2204 - fix: error reported when open data scope
#2202 - fix: current object variavle can not be selected
#2201
Commits
v0.10.1-alpha.1 - 2023-07-07
Merged
- fix(client): fix variable component for preload label based on value
#2200 - fix: add new collection linakge disabled
#2198 - refactor: the default value setting of association field supports variables
#2138 - refactor: performance optimization of association field data scope
#2113 - refactor: duplicate support inherited collection
#2181 - fix: optional fields of the child collection cannot be displayed correctly in the parent collection
#2194 - fix(data-templates): fix filter is empty
#2193 - feat(api-keys): the expiration field support custom option
#2186 - refactor(plugin-workflow): refactor nodes variable option api
#2192 - fix: error reported when rewriting the collection field
#2189 - refactor: enable child collection support current object
#2188 - refactor(client): refactor variable components and variables in workflow
#2157 - feat: support token blacklist
#2168 - fix: change ci timeout minutes
#2187 - fix: cannot open the template when the data template filter is a custom function
#2183 - feat(collection-manager): tableOID field and collection field
#2161 - fix(utils): fix json-template type checking logic
#2177 - fix: error opening when data scope is null
#2178 - fix(plugin-workflow): fix data scope on todo table block
#2176 - fix: time zone when showTime is false
#2170 - chore(database): skip update association if through model is a view
#2173 - test: add data-testid attr
#2167 - fix(plugin-workflow): fix cancel action on trigger config
#2166 - fix(utils): avoid to use default value for null in json-templates
#2165 - fix(plugin-api-keys): use currentRoles instead of get roles from roles:list
#2163 - docs: update api-keys related documentation
#2162 - feat: data visualization
#2160 - refactor: optimization of tree table stuck performance
#2154 - feat(plugin-api-keys): support fetch api via api-keys
#2136 - feat(map-plugin): support google map
#2027 - fix: 修复 gulp-less 版本导致的初始化 bug
#2153
Commits
- chore(versions): 😊 publish v0.10.1-alpha.1
15f0282 - chore: update changelog
a96c4cd - fix(acl): add roles.users field
7e0ac57
v0.10.0-alpha.5 - 2023-06-29
Merged
- fix(assigned field):dynamic value validation error when assigned field
#2117 - fix(upload): fix the upload status not being updated if the upload was successful
#2133 - fix: association fields cannot config in table
#2146 - feat: error cache
#2145 - fix(client): fix field initializer in detail block
#2144 - fix: dropdownMatchSelectWidth=false
#2143 - fix(doc): 同级目录跳转
#2140 - refactor: should use useDocumentTitle to change document title
#2137 - Add *.pdf preview
#2105 - fix: migration up error
#2135
Commits
v0.10.0-alpha.4 - 2023-06-27
Merged
- refactor: request data when the drop-down list is opened
#2127 - fix: fix dialog does not appear
#2134 - fix(association-field):submitting failed after adding data in subform for multiple association fields
#2065 - fix(sub-apps): fix incorrect page display when navigating sub-apps
#2126 - fix: tree gantt block does not display correctly
#2123 - fix(plugin-workflow): change to use formv2 to avoid values updating issue
#2124 - style:list and gridCard block style improve
#2087 - fix: fix designer button does not appear
#2120 - fix: fix the drop-down menu does not disapper
#2109 - chore: fix typo
#2108
Commits
- chore(versions): 😊 publish v0.10.0-alpha.4
f3f91bd - chore: update changelog
ce79e4d - Revert "chore: upgrade types of react"
b2e7185
v0.10.0-alpha.3 - 2023-06-25
Merged
- fix: deleting the last field from sub table, the entire table will be delete
#2077 - fix(sub-table): inherited fields cannot be edited in a subtable
#2106 - fix(input-number): change step to 1
#2104 - fix: schema-uid-invalid
#2107 - fix(plugin-workflow): fix branch and exit logic
#2103 - fix: create plugin cli error
#2102 - fix: select options
#2101 - chore(deps): bump formily from 2.2.24 to 2.2.26
#2088 - fix(sub-table): allows configuration of "Display association fields"
#2073 - style: enable child collection modal style improve
#2100 - feat: data scope support variables for association fields
#2049 - refactor: fix warning of antd 4.x
#1998 - fix(plugin-workflow): fix job button style
#2098 - fix(mobile-client): fix multiple bugs and do some improvement
#2072 - fix(plugin-verification): fix duplication of installation
#2097 - fix: incomplete field list for assigned fields
#2093 - fix: add useAdminSchemaUid
#2092 - refactor(db): add batch logic to update for better performance
#2070 - fix: unable to load data from chinaRegion during the first configuation
#2089 - refactor: migrate adminSchemaUid & mobileSchemaUid to system settings
#2084 - fix(plugin-workflow): fix occasional error on enter workflow page
#2086 - fix: mobile docs style
#2083
Commits
- chore(versions): 😊 publish v0.10.0-alpha.3
83bf8ea - chore: update changelog
cc37667 - feat: update docs
5672ffc
v0.10.0-alpha.2 - 2023-06-20
Merged
- refactor: upgrade
umi,reactandreact-router-dom#1921 - fix(collection-manager): share collection when COLLECTION_MANAGER_SCHEMA not set
#2081 - fix(plugin-formula): fix formula field effect and read-pretty component
#2076 - fix: file collection field should default to preview as the title field
#2059 - fix(client): remove incorrect onchange in json component
#2079 - fix(client): fix onchange mistake
#2075 - fix(client): fix locale
#2074 - fix(Varaible): fix option is disabled
#2043 - fix: rowSelection undefined
#2071 - fix: association field cannot enable link in table column
#2066 - refactor(plugin-workflow): manual collection block migration
#2064 - refactor(association-field): support sub table
#1862 - fix: avoid error
#2060 - fix(Data-template): fix field cannot be expanded
#2057 - feat(association field):quick add new
#1953 - fix: duplicate action locale
#2052 - fix: fix default value of optional field
#2053 - refactor: List block and GridCard block style improve
#1988 - fix: block disappears when dragged over its parent
#2048 - fix: form performance
#2047 - fix: default value for multiple select cannot be set
#2031 - fix: display on the PC side of moblie access is incomplete
#2039 - fix: enable tab and deleting tab page will result in an error
#2045 - refactor(PluginManager): remove useless code
#2022 - fix(mobile-client): some mobile-client bugs
#2017 - fix: error reported after deleting the associationFilter block linkage field
#2038 - fix(association-field): default values for the fields of a association field
#2037 - chore(database): return emtpy fields when attributes not specified
#2034 - refactor: child and parent field are not linked
#2030 - fix(oidc): bugs of integration with logto
#2032 - fix(data-template): filter out foreign keys
#2033 - fix(client): fix json input component value handling
#2028 - feat: filter out IDs in sub-forms
#2025 - fix(GridCard): column count not work
#2023 - feat: use
ActionContextProviderinstated ofActionContext.Provider#2019 - fix: re-insert repeat routes
#2018 - refactor(plugin-workflow): change node config api render to component
#2014 - chore(github-actions): separate frontend and backend tests
#2013 - feat(plugin-mobile-client): support mobile-side client
#1879 - chore(database): append inherit inspect attribute with eager load
#2010 - feat(auth): support custom authentication
#2007 - feat(plugin-fm): add option for storage to remove file physically or not
#2005 - fix: eager load with nested association
#2002 - chore(acl): write role to acl if it exists in database and not found …
#2001 - feat: duplicate action
#1973 - refactor(association-field): useAssociationNames hook
#1956 - chore(collection-manager): should not throw error when source collection destoryed
#1999 - fix: assignedField can not select dynamicValue
#2000 - test: add tests for client
#1960 - fix: display title enable
#1995 - fix(plugin-formula): fix result component caused page crash
#1996 - feat(collection-manger): lazy load collection field
#1993 - fix: the edit drawer's audit logs block can only get records by this …
#1917 - feat: upgrade formily
#1880 - refactor(plugin-fm): change api and allow to select storage
#1250 - fix: fix default value is invalid in subform
#1989 - feat(database): add firstOrCreate and updateOrCreate in repository
#1943 - feat(database): append child collection name after eager load
#1978 - fix(multip-app-manager): init multiple Application instances while starting up a sub app
#1986 - feat(plugin-workflow): manual forms
#1748 - fix(charts): fields undefined bug
#1980 - chore(database): pg oid and name data type in view
#1982 - feat: infer belongs to association field in view collection
#1756 - fix: treeCollection config in detail block
#1975 - fix(database): missing reference when rewrite parent field
#1977 - fix(evaluators): fix number lead key in variable path
#1976 - fix(association-field): form.get & set valuesIn field.path
#1972 - fix: useCreateActionProps
#1971 - fix(database): update association values with nested associations
#1970 - fix: adding inherited blocks in relation fields under edited operate should only display themselves
#1967 - fix(form-item): data scope and sorting rule config should only display in association field
#1964 - fix: select with color tag value
#1963 - fix: select toValue
#1962 - fix: select null value
#1961 - refactor(sub-form):sub-form style
#1959 - fix(plugin-formula): fix read-pretty component when used in association field
#1957 - perf(data-scope): async loading of variable data
#1932 - fix: undefined mode
#1950 - fix(grid-card, list): display title only work on current block
#1942 - refactor(linkage-rule): linkage rules condition support toMany association fields
#1924 - feat(plugin-manager): better plugin manager experience
#1927 - chore(database): sort many to many associations by primary key by …
#1948 - test(audit-logs): audit log changes
#1928 - fix: eager load belongs to many with through table
#1946
Commits
- chore(versions): 😊 publish v0.10.0-alpha.2
0b06e2c - Revert "fix: the edit drawer's audit logs block can only get records by this … (#1917)"
a1872fa - fix(association-field): show add new button when no data
261ca0d
v0.9.4-alpha.2 - 2023-05-26
Merged
- fix: parse nested associations in filterParser
#1941 - fix(association-field): allow dissociate
#1940 - fix(data-template): fix title input prevented proper data switching
#1937 - refactor: association select display loading when data is loading
#1925 - fix(association-field): allow multiple
#1938 - feat(multi-app-manager): support auto start
#1931 - fix(client): fix some warnings
#1934
Commits
- chore(versions): 😊 publish v0.9.4-alpha.2
d7f2146 - fix(association-field): display sub-details by default
1e870cf - chore: update changelog
f2619b0
v0.9.4-alpha.1 - 2023-05-25
Merged
- chore: load view collection when source not found
#1930 - feat(data-template): support to set data scope and title field
#1918 - feat(data-template): support for unlimited levels of fields selection
#1910 - chore: when using association field by picker mode,it's open size can be changed
#1926 - fix(ConfigurationTabs): avoid error
#1782 - fix: tableField query data in add child action
#1876 - refactor: front-end testing with vitest
#1900 - fix: disable popup button in add-modal
#1808 - fix: append acl resource params
#1923 - chore: update guard with array contains null
#1922 - refactor: initialization when switching field components
#1915 - fix(association-field): only when the new data is successfully created can the data be associated
#1884 - fix: eager load with belongs to many with custom source key
#1913 - fix: hiding the title of a subform will hide all embedded titles
#1904 - fix: updateAssociationValues
#1903 - fix(plugin-formula): use read-pretty component in result
#1911 - fix: can't set default value when turn on the form field required
#1887 - fix(Data-template): fix bug when deleting fields
#1907 - feat(app): add clear cache button
#1909 - fix: eager load belongs to many association
#1906 - feat: support to-multi field variables
#1680 - fix: append belongs to association with fields
#1894 - fix: appends belongs to association
#1893 - fix: preload relational data
#1847 - feat: support reboot application manually
#1889 - Refactor/append fields
#1883 - chore: pg sql parser
#1890 - fix(plugin-workflow): fix language
#1886 - fix: field required when setting sorting rules
#1885 - feat(plugin-workflow): add node description to drawer when edit node
#1882 - fix(plugin-workflow): fix variable api caller in loop
#1877 - chore(github-template): clean comments and format
#1878 - feat(association-field): default one data for to-many association
#1873 - fix(plugin-workflow): fix trigger title when workflow not loaded
#1875 - feat(plugin-workflow): aggregate
#1852 - Feat/translation es_ES
#1801 - fix: data is not updated when appends are changed
#1872 - fix:association select no options when clearing filter
#1866 - fix(acl): issue with repeated createdById field
#1871 - feat(client): allow search by title in collection select
#1869 - chore: skip get standalone deployment sub application
#1868 - fix(plugin-workflow): remove useless context option
#1867 - fix: inherit fields filter Foreign Key fields
#1864 - feat(plugin-workflow): loop
#1787 - fix: insertAdjacent not find
#1861 - refactor(add-new):association field add new support button edit
#1854 - feat: support List and Grid Card block
#1753 - fix: fix multi-select field not show 'Allow multiple' switch
#1857 - fix: field for attachment interface type without appends
#1856 - fix: action error when field deleted
#1849 - feat: support running single sub app
#1853 - fix: assign field with delete field
#1850 - fix: title field in assign fields value
#1848 - fix:association appends
#1842 - feat(plugin-workflow): add delete button in workflow canvas page
#1844 - fix(block-provider): getNesterAppends filter fix
#1839 - feat: repository aggregate method
#1829
Commits
- feat(docs): update docs
0b0a8d2 - chore(versions): 😊 publish v0.9.4-alpha.1
9c94840 - chore: update changelog
a6c7b41
v0.9.3-alpha.1 - 2023-05-11
Merged
- refactor: association field
#1838 - fix: tree with fields option
#1833 - fix(client): fix ime status in variable textarea
#1832 - chore: should not return children property when child nodes are empty
#1825 - fix: tree with sort field
#1822 - fix(plugin-workflow): select menu width
#1820 - fix: filter with appends
#1819 - Fix/filter by array field
#1813 - Fix/empty tree query
#1814 - fix: association scope inherit
#1806 - fix: update tree node
#1812 - fix: list trees
#1810 - test: filter nested association
#1802 - fix: table configuration delete button problem
#1764 - fix: fix Menu dismiss on Drag&Drop
#1772 - fix(linkage-rule): condition variable field is allow select To many association fields
#1798 - chore: duration calculation
#1770 - fix: tree performance
#1779 - fix: close the drawer incorrectly after submit
#1775 - Fix/recreate association field
#1789 - fix: drop repeated "Connect data blocks"
#1763 - fix: failed to open child collections add new modal
#1780 - fix(utils): fix json-templates bug and moved to utils
#1784 - fix(evaluators): fix date result in variable
#1781 - fix: fix button design about edit action
#1755 - chore: enable overring field default value
#1777
Commits
- chore(versions): 😊 publish v0.9.3-alpha.1
cf0a921 - chore: update changelog
daf2034 - chore: fix lint errors
23ad507
v0.9.2-alpha.4 - 2023-04-26
Merged
- feat: node args in pm2 runtime
#1774 - fix: hide default value for expression
#1765 - fix(AssociationSelect): fix x-read-pretty not working
#1766 - fix: fixed the configuration field filter
#1742 - fix(filter-block): fix association fields not being filtered
#1758 - fix(variable-input): fix style
#1761 - chore: skip sync overriding field default value
#1762 - fix: gantt abnormal drag and drop update action
#1760
Commits
- chore(versions): 😊 publish v0.9.2-alpha.4
923f6e7 - docs: update changelog
2c75aa7 - chore: cleanup
77a6cbf
v0.9.2-alpha.3 - 2023-04-25
Merged
- fix: eslint
#1759 - feat: deleted collection field give some tips
#1744 - chore: optimize the white screen problem
#1639 - fix: plugin-manage and designable-switch add tooltip
#1749 - chore: update dockerfile
#1754 - chore(comment): collectionOptions.duplicator
#1752 - fix: custom column title, same as form field title
#1745 - feat: support to use variables to set default value
#1726 - fix(plugin-workflow): request headers and params should support input
#1750 - fix(client): fix initializer meno props based on antd@^4.24
#1746 - fix: improve the display of the title field
#1741 - fix: batch edit deletes relational table fields
#1743 - style: automatically omit table cell content based on width
#1646 - feat(collection-manager): support for setting the title field
#1729 - fix: acl scope support variables
#1660 - fix: filter-condition-update-incorrectly(switch "and"、"or")
#1737 - fix(plugin-workflow): fix foreignkey in variable
#1740 - fix(plugin-formula): remove showUnchecked option
#1730 - fix(plugin-workflow): fix manual migration script
#1735 - fix: correcting misspelled word
#1731 - fix(FilterFormBlock): fix association field can not to filter
#1699 - feat: add react-hooks lint
#1728 - fix: missing spacing after dragging
#1671 - fix: load view collection
#1727
Commits
- chore(versions): 😊 publish v0.9.2-alpha.3
9756dd1 - fix(collection-manager): fix table layout
683db5b - refactor: fix lint error
7b9bfa1
v0.9.2-alpha.2 - 2023-04-19
Merged
- fix: press enter to reload when the Pagination is focused
#1720
Commits
- chore(versions): 😊 publish v0.9.2-alpha.2
3dfd5a1
v0.9.2-alpha.1 - 2023-04-19
Merged
- refactor(plugin-workflow): change single form to custom form block
#1707 - chore(ci): add timeout config for jobs
#1725 - refactor(plugin-workflow): migrate menu items to options
#1724 - fix(client): fix error on clear value in variable input
#1723 - fix(record-picker): fix the table paging problem
#1718 - fix(map-plugin): some data is incorrect
#1717 - fix: data scope not effect in gantt
#1716 - fix: button loading does not disappear when the operation submit failed
#1698 - fix(linkage rule):multiple select condition judgment failed
#1715 - Fix/save through table data
#1714 - feat: improve ui design for linkage action
#1659 - feat(map): support to filter other blocks
#1691 - refactor: improve linkage rule enable
#1700 - fix: find fields arg
#1710 - feat(form-block): data templates
#1704 - fix: linkage relationship data condition judgment failed
#1681 - fix(gantt): update permission check in gantt block
#1701 - fix: clearFormGraph
#1706 - fix(plugin-workflow): fix request body variable component
#1703 - fix(gantt): improve task bar text
#1696 - fix: long text should be line feed
#1686 - fix: cannot display data when remove last page and the page only just one item
#1685 - fix: meta acl with association query
#1695 - fix: linkage rule title can not set empty
#1688 - feat: improve plugin manager ui
#1650 - feat: gantt block
#1393 - fix(client): fix constant input lose focus in variable
#1689 - feat(plugin-workflow): add workflow specific logger
#1677 - fix: remove designer
#1684 - test: should load the .env.test
#1678 - fix: incorrect language after logout
#1679 - feat: optimize file collection
#1666 - fix: sort field init performance
#1675 - fix(plugin-workflow): fix null collection fields
#1674 - fix(client): fix variable component read pretty mode
#1673 - fix: ui problem of compact theme
#1670 - fix: linkage rule enable effect in form
#1669 - feat: collection template summary
#1672 - feat: (plugin-workflow) dynamic expression
#1560 - chore: find inherit collection warn
#1663 - fix: linkage rule title config clear exception
#1665 - feat: support tableoid filter
#1657 - feat(plugin-workflow): add array mapping support in processor
#1662 - fix(plugin-workflow): fix appends null to collection trigger
#1661 - feat(filter-operators): eq and ne operators support array
#1658 - fix(plugin-workflow): fix todo drawer data load
#1656 - refactor(client): improve translation
#1654 - fix: fix the 'Add menu item' button disappears
#1655 - chore: add new allowAddtoCurrent config
#1652 - feat: support file collection
#1636 - fix(plugin-workflow): fix manual node drawer
#1653 - chore: inhertis api with difference schema
#1545 - fix: select record can not enable child collection
#1649 - feat: plugin before enable hook
#1648 - chore: add transaction in set field action
#1647 - fix(linkage rule):linkage rule not display in action
#1644 - refactor: view collection options
#1643 - fix: update field error
#1645 - feat(Table): column action support linkage rules
#1638 - fix(view-collection): field name cannot be edited when there with field source
#1642 - fix: linkage rule config closing rules require reopening the form to take effect
#1640 - refactor(client): change Variable.TextArea to controlled component
#1605 - fix: get pg view def
#1641 - fix: infer view column type with alias
#1634 - fix(plugin-workflow): fix minors ui issues
#1635 - chore: disabled underscored in view collection.
#1633 - fix: form action dragging area is too large
#1628 - fix: FixedBlock related ui
#1632 - feat: database view collection
#1587 - fix: init sort value in sort field with scopeKey
#1626 - style: linkage rule style improve
#1625 - fix: find with attributes and group
#1411 - docs: transform video link to video tag
#1414 - feat(parse-variables): support to parse variables in filter params
#1558 - fix(linkage rules) : support naming, enabling and disabling, copying, and assigning null values
#1511 - chore: update test ci
#1622 - fix: history add new button does not support enabling child collection
#1536 - fix/(linkages-action): detail block actions does not support linkage rules
#1504 - fix: avoid fixedblock height working in popup
#1621 - fix: when the page has FixedBlock, the table of popup is not displayed
#1619 - feat: association-filter-improve
#1606 - fix(Table): cannot display table data
#1617 - fix(plugin-workflow): fix todo list form read-pretty for non-assigneed user
#1615 - feat(table): hidden pagination when only one page is available
#1614 - refactor: improve FixedBlock performance
#1593 - fix(collection-manager): infinite recursion
#1608 - fix(audit-logs): Add ellipsis feature to table columns
#1603 - feat: improve the non-link ui of association data
#1602 - feat(Kanban): the card support open mode
#1601 - fix( importable-field): incorrect display when moving sort handle
#1613 - fix: enable child collections remain after deleting a child collection
#1610 - fix: destroy through table record referencing collections table
#1611 - fix(plugin-workflow): add default actions value of manual node
#1600 - feat(plugin-workflow): add failOnEmpty option for query node
#1599 - fix(plugin-workflow): use toJSON instead of get to get valid result
#1596 - Translation pt-BR (Brazilian Portuguese)
#1591 - fix: role permission add new scope display blank
#1592 - fix(FixedBlock): avoid kanban triggering programmatic scrolling
#1406 - fix: repeat request categories when switching between graph interface and collection&fields
#1590 - fix: collectionFieldsOptions cannot get all fields
#1588 - fix(plugin-workflow): fix input width in request node config
#1585 - feat(filter-blocks): support filter-blocks
#1505 - refactor: multi-app
#1578 - feat: compact theme
#1574 - feat: support cron field
#1421 - fix(Calendar): ensur to get correct gridInitializer when adding a new…
#1425 - feat(markdown): support mermaid and better style
#1583 - fix(plugin-map): map block repeats
#1582 - feat: tree collection
#1561 - feat(plugin-map): add map block
#1486 - chore: lazy load sub app in share collection
#1569 - fix(record-picker): supports adding sub-collection records
#1573 - fix: app manager reload
#1565 - feat: multi-app-share-collection plugin
#1562 - feat: record picker support to enable links
#1515 - feat: multiple apps
#1540 - docs(client): add variable docs
#1556 - fix(charts): improve chart table preview with object type
#1555 - feat(plugin-workflow) config preload associations in triggers and nodes
#1548
Fixed
- fix(plugin-workflow): fix todo list form read-pretty for non-assigneed user (#1615)
#1572
Commits
- chore(versions): 😊 publish v0.9.2-alpha.1
d1adc9d - fix(file-manager): upgrade s3 version
50183b0 - fix: linkage rule
b8776fe
v0.9.1-alpha.2 - 2023-03-09
Merged
- fix(plugin-workflow): fix module import (#1550)
#1552 - chore: relation repository response when source model not found
#1546 - fix(plugin-workflow): fix assignees config component in manual node
#1547 - feat: stopped state in application
#1543 - fix(plugin-workflow): fix AssociationInput field path
#1542 - fix: cache with index.html
#1541 - fix: belongs to many through table with custom schema
#1539 - fix(plugin-formula): expose formula field result in form
#1534 - test: with collection_manager_schema env
#1532 - fix: filter by association field with underscored
#1537 - fix(charts): fix copy
#1533 - feat: add chart plugin
#1477 - feat: support add new in block for inheritance collection
#1518 - refactor(plugin-workflow): change canvas card and adjust styles
#1529 - fix: test with nocobase plugin
#1525 - fix: nginx cache
#1523 - fix: remove field when collection has difference schema with database
#1524
Commits
- chore(versions): 😊 publish v0.9.1-alpha.2
bc5156d - fix: add new blocks
3904aa7 - fix: schema name conflicts
a463c3d
v0.9.1-alpha.1 - 2023-03-03
Merged
- refactor: audit logs block
#1517 - fix(evaluators): fix preprocessing and add test cases
#1519 - chore(debug): fix debug filename when run test
#1520 - feat: collection manager schema env
#1506 - fix(client): fix checkbox unchecked display
#1508 - feat(snapshot-field): improve transition
#1513 - fix(plugin-workflow): fix CollectionField validation when using variable
#1512 - feat(plugin-formula): calculation with snapshot field
#1498 - fix(association-select): filter without data scope not work
#1509 - feat: fallback sort field init to createdAt field
#1507 - fix(graphical-interface): collection category does not display title
#1503 - fix(association-select): data is incorrect when use data scope
#1491 - feat: dialect version accessors
#1502 - fix: collection schema updated but model _schema not change
#1500 - Update zh_CN.ts
#1481 - fix(linkageRules): support empty condiction
#1496 - feat: form/button linkage rules
#1456 - fix: collection importer has incorrect reference
#1495 - feat: support custom plugin deployment in dockerfile
#1494 - fix: environment variables
#1490 - feat: prepare database method
#1492 - Fix/multiple schema query
#1488 - fix: string violation
#1487 - refactor(plugin-workflow): migrate evaluators
#1485 - docs: fix typo
#1482 - fix(plugin-workflow): fix customized job status
#1484 - fix(plugin-workflow): fix condition config param
#1483 - fix(plugin-workflow): fix migration
#1479 - fix(plugin-workflow): fix migration on table prefix
#1478 - refactor(plugin-formula): combine 2 formula field type into 1
#1457 - fix(plugin-workflow): fix migration for calculation
#1476 - fix(plugin-workflow): fix schedule trigger number type repeat
#1475 - Feat(plugin-workflow) manual instruction
#1339 - feat: support for importing attachments
#1466 - fix: column not exists error after destory relation field
#1465 - fix: add schema
#1464 - fix: avoid o2o, o2m can select the data already selected
#1462 - feat: add test cases
#1463 - feat: update zh_CN.ts
#1458 - refactor: export plugin
#1460 - Fix/pg schema with inherit
#1446 - feat: multiple apps admin
#1431 - chore: fix build plugin error
#1454 - feat: provide the underscored option for the database
#1366 - Revert "fix(table): make filed overflow behavior right (#1392)"
#1452 - fix(collection category): zh_cn locale defect
#1451 - feat: add namespace and duplicator parameters for collection options
#1449 - fix(snapshot-field): remove depth limit
#1450 - chore: update licenses url
#1285 - feat: association snapshot
#1438 - fix(table): make filed overflow behavior right
#1392 - fix(plugin-sequence): fix missed createdAt field in bulk hook
#1448 - fix: error:0308010C:digital envelope routines::unsupported
#1447 - feat: collection categories
#1327 - fix(plugin-fm): fix path config for storages
#1445 - fix: node.js 17+, add openssl-legacy-provider
#1434 - fix(plugin-workflow): fix schedule on field null value
#1442 - feat: pg schema support
#1439 - fix(i18n): set key and ns separator default to false
#1432 - feat: disable trigger when import collection
#1417 - chore: translate 'Add tab' in page header
#1424 - fix(plugin-workflow): use promise to request
#1426 - fix(acl): custom appends merge strategy
#1416 - docs: update G2Plot example url
#1408 - docs: fix typo
#1412 - fix(FixedBlock): using both association filters and FixedBlock does not show the complete table
#1405 - feat(calendar): startDate and endDate support the use of association fields
#1397 - fix: load through collection before belongsToMany field bind
#1409 - feat(verification-plugin): support tencent sms
#1382 - fix: foreign keys are editable when adding fields
#1404 - fix: navbar_ui style
#1398 - fix: inherit startup sort
#1402 - fix(plugin-workflow): fix url input width for request config
#1401 - Fix/snapshot
#1396 - feat: fix through collections inherits filter
#1394 - Fix(plugin-sequence): support sequence field in m2m through table
#1383 - fix(plugin-workflow): adjust executed alert position
#1381 - fix: through collection individual hooks
#1378 - fix: through collection records should not be reset
#1377 - feat(client): add form disabled context
#1374 - Fix(plugin-workflow): request node
#1367
Commits
- docs: add plug-in documentation
68511f0 - feat(db): field value parser
5805b69 - chore(versions): 😊 publish v0.9.1-alpha.1
946c8f2
v0.9.0-alpha.2 - 2023-01-14
Merged
- feat: load multiple languages dynamically
#1355 - refactor(plugin-workflow): refactor request instruction
#1356 - feat: update dependencies
#1353
Commits
- feat: add en-US.example.json
86554c0 - fix: locale cache
a4116a2 - chore(versions): 😊 publish v0.9.0-alpha.2
daa91e9
v0.9.0-alpha.1 - 2023-01-11
Merged
- feat: change license
#1350 - feat: formula plugin
#1344 - feat: acl optimization
#1136 - feat: duplicator plugin
#1265 - fix(plugin-workflow): fix missed preparing
#1337 - fix: FixedBlock does not disappear when the current tab is deleted
#1324 - feat(Select): should compile title and label
#1332 - fix: improve filter
#1333
Commits
- chore(versions): 😊 publish v0.9.0-alpha.1
013f091 - fix: typeError: Cannot read properties of undefined (reading 'find')
1dc4142 - feat: improve translation
31794d3
v0.8.1-alpha.4 - 2023-01-05
Merged
- chore(versions): 😊 publish v0.8.1-alpha.4
#1331
v0.8.1-alpha.2 - 2023-01-05
Merged
- fix(plugin-sequence-field): integer generated should not less then start
#1330 - fix: filter removeNullConditions
#1329 - fix: snapshot display fix
#1328 - fix(plugin-workflow): fix history drawer in workflow canvas
#1326 - feat: snapshot field plugin
#1253 - feat: configure fields style fix
#1322 - fix(plugin-workflow): fix events in prepare
#1325 - fix(database): filter match
#1319 - fix: action merge params
#1321 - chore: set belongs to many on delete to cascade
#1311 - fix: disable filterByTk options in destory method when collection has no primary key or has composite primary key
#1313 - fix: slow find with include in mysql
#1304 - fix(map-plugin): cannot save because the value is null
#1309 - fix: create inherits with table name contains upper case
#1308 - fix: upgrade error
#1303 - fix: association filter
#1301 - fix: pageSize 200 & not a function
#1299 - refactor(client): make tab initializer more common
#1298 - fix(Select): title field and clear button not work
#1296 - fix(plugin-fm): fix local storage config and skip empty base url
#1294 - feat: antd->4.2.8
#1231 - feat: association filter
#1274 - chore: upgrade sequelize version to to latest
#1234 - feat: add iframe-block plugin
#1281 - feat: update page size to 200 and limit fields
#1282 - fix: prevent horizontal scroll of menus
#1279 - Turkish language created for Docs. Belgeler için türkçe dil desteği
#1071 - fix(client/kanban): fix kanban card default active all fields bug
#1270 - fix: cannot delete event in calendar
#1277 - fix(AssociationSelect): missing field title in details
#1275 - fix: menu cannot scroll
#1276 - feat: support fixed block
#1267 - fix(plugin-sequence): fix test case
#1268 - fix(plugin-sequence): fix update pattern index
#1266 - feat : support fixed menu and header
#1260 - fix: destroy field in parent table
#1263 - refactor(client/popup): text: 'Set popup size' changed to 'Popup size'
#1262 - feat: page tabs
#1261 - fix(plugin-fm): drawer form values
#1259 - feat: support sync button
#1258 - fix: isOverride cannot work
#1257 - refactor(sequence-field): move to plugin and use table to record
#1209 - feat: add map plugin
#1229 - fix(plugin-workflow): fix job result in history
#1242 - feat: set field
#1237 - chore: update ci
#1239 - feat(client/popup): support set drawer and modal popup size
#1224 - fix(plugin-file-manager): fix local serve middleware
#1226 - feat: iframe block
#1225 - fix(workflow/request-var): fix request node var editor
#1223 - fix: change nginx timeout as 10min
#1222 - fix: change import timeout as 10 min
#1221 - fix: field component options appears in non-association interface
#1220 - Fix(plugin-workflow): client refactor
#1163 - feat(cli): quickstart
#1204 - fix(plugin-cm): fix interfaces injection and getter
#1196 - fix(i18n): move back key to global
#1195 - test(plugin-workflow): add cache and test for sqlite
#1194 - fix(plugin-workflow): use dual pipes to process triggers
#1187 - fix(plugin-workflow): temp skip case
#1188 - feat(menu): when a group is selected, the submenu items are also selected together
#1152 - fix(plugin-workflow): fix transaction in trigger
#1186 - feat: export blob type error
#1170 - fix(plugin-workflow): dispatch when server start
#1183 - fix: yarn start error in windows system
#1177 - fix(plugin-users): fix initialization of sms verification
#1173 - fix(plugin-workflow): fix test case
#1172 - feat(plugin-workflow): add duplicate action
#1171 - fix(plugin-workflow): fix context operand
#1169 - fix: auto deploy error
#1168 - feat: configurable the scope of target collections
#1165 - ci(workflows): fix auto deploy error
#1166 - ci(workflows): support manual depoly and stop pr
#1132 - fix: saml oidc text
#1164 - fix: transaction error
#1162 - fix: create inherits with empty table
#1160 - fix: sso optimization
#1159 - feat: saml
#1143 - feat: oidc
#1126 - feat: belongs to many on delete
#1158 - Feat/collection templates
#1124 - Fix/action 404
#1157 - fix: 404 response
#1156 - Feat: plugin verification config
#1129 - feat: support use select field
#1105 - fix(plugin-workflow): fix trigger context getters
#1149 - feat: option readPretty optimization
#1138 - fix(plugin-workflow): fix locale
#1145 - fix(plugin-workflow): fix endsOn field
#1144 - fix: create empty collection
#1141 - fix(client): fix no key warning in menu
#1140 - Fix(plugin workflow) interval
#1139 - fix: x-collection-field
#1134 - feat: update many
#1135 - feat(workflow): support Http Request Node
#1102 - fix: incorrect repeat of calendar
#1131 - fix(database): refresh indexes
#1127 - fix: reference check after remove collection
#1123 - fix: sort field with table dose not have primary key
#1119 - fix: test
#1118 - fix: update to bigint
#1117 - fix(cm): default values for override
#1112 - fix: update sequence and foreignKey
#1116 - fix(plugin-workflow): fix workflow schema
#1115 - fix(client): menu key warnings
#1114 - fix: fk type invalid
#1113 - fix: handle column does not exist error
#1110 - fix: inherits with collection not exists
#1109 - fix(locale): move description to global
#1108 - feat: using bigint for id field
#1100 - refactor: formula plugin
#1082 - fix: create inherits from a table that has no id
#1104 - fix: find table sequence
#1101 - Feat/collection inherits
#1097 - fix: create collection with emtpy inhertis params
#1096 - fix: remove node after collection removed
#1095 - fix: unbind error
#1094 - chore: type conflict error message
#1093 - feat: collection inheritance
#1069 - feat: no recursive update associations
#1091 - fix(plugin-workflow): fix transaction chain in trigger
#1089 - fix(plugin-workflow): fix schema name conflict
#1087 - refactor(plugin-workflow): split transaction for collection trigger
#1080 - fix: skip records that do not exist
#1084 - refactor(plugin-workflow): adjust style
#1079 - fix: mysql variable 'lower_case_table_names' must be set to '0' or '2'
#1078 - feat: logging package
#1021 - Refactor: plugin-workflow client
#1077 - fix: reference options sync
#1061 - refactor(plugin-workflow): adjust some api
#1067 - fix(plugin-workflow): fix trigger getter
#1060 - Update README.md
#1053 - test(collection-manager): 20221104151410-update-collections-hidden test correct
#1042
Fixed
- fix(client): page title translation doesn't work
#838
Commits
- feat: update docs
15cbad3 - Revert "refactor: formula plugin (#1082)"
0cbfa0a - chore(versions): 😊 publish v0.8.1-alpha.2
4ecd2ee
v0.8.0-alpha.13 - 2022-11-04
Merged
- test(collection-manager): migration - 20221104151410-update-collections-hidden test optimize
#1040
Commits
- chore(versions): 😊 publish v0.8.0-alpha.13
ce588ee
v0.8.0-alpha.11 - 2022-11-04
Merged
- chore(collection-manager): migration - 20221104151410-update-collections-hidden
#1039 - fix: db sync failed
#1037 - feat: 添加字段浮窗定位优化
#1034 - fix: association accessors rebind
#1027 - chore(debugger): clean scripts
#1029 - fix(calendar): events cannot support moment
#1017 - Fix: debugger
#1014
Commits
- chore(versions): 😊 publish v0.8.0-alpha.11
6d9006f - feat: more console log
f15c67a - feat(client): add filter option
af3fbeb
v0.8.0-alpha.9 - 2022-11-02
Merged
- feat: improve collection manager
#1013 - feat(calendar): support for add/remove repeats events
#988 - Fix: sequence field
#1009 - feat: update docs
#1006 - fix(sample): fix shop-i18n client
#1005 - chore(versions): 😊 publish v0.8.0-alpha.7
#1002 - fix(plugin-workflow): fix trigger config
#997
Commits
- chore(versions): 😊 publish v0.8.0-alpha.9
642e044 - chore(versions): 😊 publish v0.8.0-alpha.8
d5680f8 - fix: remove sample plugin client files
7cded43
v0.8.0-alpha.8 - 2022-11-01
Commits
v0.8.0-alpha.7 - 2022-11-01
Commits
- chore(versions): 😊 publish v0.8.0-alpha.7
9fbb789 - fix(pm): upgrade error when using sqlite database
bc7848d
v0.8.0-alpha.6 - 2022-11-01
Commits
- chore(versions): 😊 publish v0.8.0-alpha.6
88b8a0f - fix: upgrade failure using docker
af32f08 - Update README.zh-CN.md
fc7b17b
v0.8.0-alpha.5 - 2022-11-01
Commits
- chore(versions): 😊 publish v0.8.0-alpha.5
3453f46
v0.8.0-alpha.3 - 2022-11-01
Commits
- chore(versions): 😊 publish v0.8.0-alpha.3
3395eb6
v0.8.0-alpha.2 - 2022-11-01
Commits
- chore(versions): 😊 publish v0.8.0-alpha.2
7f4c2de
v0.8.0-alpha.1 - 2022-11-01
Merged
- Some features
#979 - fix(client/form-fields): fix fields's x-read-pretty
#994 - feat: reference check
#989 - fix(client/menu-permisssions-page): fix menu-permisssions-page no data
#993 - feat: update docs
#996 - fix(client): add locale for sequence field
#995 - docs: update api docs
#973 - feat: update docs
#990 - fix(client/upload): fix upload mutiple files always uploading status
#974 - fix(client/table-selector-provider): make data range config effective
#960 - fix(client/formula): set cursor focus on input
#959 - feat: plugin workflow visualization
#987 - feat: support show lunar day in week and day
#977 - fix: add sample plugins
#986 - feat: improve code
#978 - chore: improve ci
#976 - feat: support show lunar day
#972 - chore: fix incorrect deps
#970 - fix: empty logic operator filter
#961 - fix(plugin-workflow): fix workflow update action
#964 - fix(database/formula-field): when formula's field caculate result is 0 it alse will be save
#962 - feat(file-manager): support tencent cos
#958 - feat: push ali docker registry
#957 - fix(plugin-workflow): fix constant schedule trigger time
#956 - Turkish readme
#955 - chore(versions): 😊 publish v0.7.6-alpha.2
#954 - Turkish language
#939 - refactor(plugin-file-manager): move client code into plugin folder and enable path config
#913 - refactor: plugin manager
#965 - feat: add filter action to collection table
#953 - feat: ui schema cache
#877 - feat: changed with associations
#943 - feat: docker optimizing
#948 - fix(plugin-workflow): test changedWithAssociations()
#950 - fix(plugin-workflow): skip time based test
#951 - fix(plugin-workflow): fix schedule trigger bug
#949 - fix(plugin-workflow): fix collection fieldset component
#942 - fix(plugin-workflow): avoid revision with ghost nodes
#941 - fix(plugin-workflow): add req context to processor
#936 - feat: plugin workflow collection field
#934 - fix(plugin-workflow): fix schedule infinitely trigger when repeat not set
#926 - fix(plugin-workflow): temp disable validation of collection field in node
#928 - Doc/db repository
#896 - docs: fix resource & action dev doc
#880 - docs: fix i18n dev sample
#910 - feat: create with array of values
#912 - fix: unbind on error throwing
#914 - fix: appends merge now using primary key
#911 - Doc: api database events
#887 - feat: limit database identifier
#908 - fix: sync collection field default value
#907 - fix: appends merge includes
#905 - fix(samples): fix test case
#903 - fix: single relation repository appends query issue
#901 - feat(plugin-workflow): add concat calculator
#894 - fix(client/record-picker): support record-picker show format DataPicker
#888 - fix(client/block-select-collection): fix select collection menu view error
#889 - fix: unable to submit form during file upload
#892 - fix: run test by jest
#891 - feat(collection-manager): inverse fields can be configured
#883 - fix(formula): support integer and fix NaN error
#879 - fix: sort parameter is missing
#849 - fix: slow join query issued by appends field in find method of repository
#845 - feat(core/cache): support cache
#876 - feat: update option must have filter or filterByTk
#847 - added Russian translation
#840 - feat(database): add sequence field type
#779 - fix: can't access pages without permission via url
#826 - fix: listen promisify
#899 - refactor(core): simplify some code
#895 - feat: sample-custom-signup-page
#893 - docs: relation repository & acl
#848 - Update actions.md
#873 - docs: add testing dev doc
#871 - Doc: dev migration
#870 - Doc: command
#869 - docs: add hooks dev doc
#868 - feat: update development doc
#866 - feat: ratelimit sample plugin
#862 - feat: custom block sample
#867 - docs: move http to dev
#861 - refactor: middleware
#857 - Doc: dev i18n
#858 - docs: add resources-actions doc and sample
#853 - feat: add custom page sample and doc
#855 - feat: nocobase cli doc
#854 - fix: auto install a plugin on enable
#852 - Doc: dev collection fields
#846 - docs: server application api
#842 - docs: add actions api
#844 - refactor(doc): change to new structure
#804 - refactor: plugin manager
#775
Commits
- feat: release notes
b185412 - Update v08-changelog.md
d242169 - fix(client): tab pane initializers for create form block
929a4f8
v0.7.7-alpha.1 - 2022-10-26
Merged
- fix(database/formula-field): when formula's field caculate result is 0 it alse will be save
#962 - feat(file-manager): support tencent cos
#958 - feat: push ali docker registry
#957 - fix(plugin-workflow): fix constant schedule trigger time
#956 - Turkish readme
#955 - chore(versions): 😊 publish v0.7.6-alpha.2
#954
Commits
- chore(versions): 😊 publish v0.7.7-alpha.1
a7a807c - fix: lerna ERR! EUNCOMMIT M yarn.lock
39eb3c9 - feat: api service
59f102d
v0.7.6-alpha.2 - 2022-10-24
Merged
- Turkish language
#939 - refactor(plugin-file-manager): move client code into plugin folder and enable path config
#913 - feat: add filter action to collection table
#953 - feat: ui schema cache
#877 - feat: docker optimizing
#948 - fix(plugin-workflow): test changedWithAssociations()
#950 - fix(plugin-workflow): skip time based test
#951 - fix(plugin-workflow): fix schedule trigger bug
#949
Commits
- chore(versions): 😊 publish v0.7.6-alpha.1
a0382a9 - chore(versions): 😊 publish v0.7.6-alpha.2
b304681 - Revert "fix: registry.npmjs.org"
e24d6bd
v0.7.5-alpha.1.1666403334 - 2022-10-22
Merged
- feat: changed with associations
#943 - fix(plugin-workflow): fix collection fieldset component
#942 - fix(plugin-workflow): avoid revision with ghost nodes
#941 - fix(plugin-workflow): add req context to processor
#936 - Feat/plugin workflow collection field
#934 - fix(plugin-workflow): fix schedule infinitely trigger when repeat not set
#926 - fix(plugin-workflow): temp disable validation of collection field in node
#928
Commits
- chore(versions): 😊 publish v0.7.5-alpha.1.1666403334
692f7e7 - chore: dockerfile
65724de - chore: dockerfile
bd5a0ce
v0.7.5-alpha.1 - 2022-10-16
Merged
- chore(versions): 😊 publish v0.7.5-alpha.1
#920 - Feat: plugin workflow collection field
#919 - feat: create with array of values
#912 - fix: unbind on error throwing
#914 - fix: appends merge now using primary key
#911 - feat: limit database identifier
#908 - fix: sync collection field default value
#907 - fix: appends merge includes
#905 - fix: single relation repository appends query issue
#901 - feat(plugin-workflow): add concat calculator
#894 - fix(client/record-picker): support record-picker show format DataPicker
#888 - fix(client/block-select-collection): fix select collection menu view error
#889 - fix: unable to submit form during file upload
#892 - fix: run test by jest
#891 - feat(collection-manager): inverse fields can be configured
#883 - fix(formula): support integer and fix NaN error
#879 - fix: sort parameter is missing
#849 - fix: slow join query issued by appends field in find method of repository
#845 - feat(core/cache): support cache
#876 - feat: update option must have filter or filterByTk
#847 - added Russian translation
#840 - feat(database): add sequence field type
#779 - fix: can't access pages without permission via url
#826 - refactor(resourcer): combine middleware class
#825 - refactor(database): fix some fields and types
#820 - feat(locale): added Japanese translation
#813 - fix(plugin-workflow): fix value type for DatePicker to moment (#815)
#819 - refactor(plugin-workflow): export client calculators registry
#816 - fix: number storage type changed to double
#810 - refactor(server)
#795 - fix(plugin-verification): change provider rate limit error to 429
#788 - fix(plugin-cm): fix field disappear after failed to update
#773 - fix: fix uiSchema undefined
#770 - fix(plugin-cm): fix unique option default value to update
#768 - fix(plugin-users): fix update profile 500 (#766)
#767 - fix: mysql column in where clause is ambiguous
#756 - feat(plugin-cm): add unique option for base fields
#745 - feat(plugin-verification): add plugin-verification and phone for users
#722 - feat: resize grid columns with drag and drop
#748 - refactor(client): split schema-initializer items into multiple files
#744 - refactor(plugin-workflow): change files mode to 644
#755 - fix: db version check
#749 - feat: add examples
#718
Fixed
- fix(plugin-workflow): fix value type for DatePicker to moment (#815) (#819)
#815 - fix(plugin-users): fix update profile 500 (#766) (#767)
#766 - fix: db version check (#749)
#742
Commits
- fix(client): tab pane initializers for create form block
7efc4bc - fix: transaction cannot be rolled back because it has been finished with state: rollback
6dacec4 - fix(database): fix the index name too long error
7bfe6b8
v0.7.4-alpha.7 - 2022-08-15
Merged
- chore(versions): 😊 publish v0.7.4-alpha.7
#740
Commits
- docs: update release notes
a260d29 - fix(collection-manager): update collection without fields
03538ee
v0.7.4-alpha.4 - 2022-08-12
Merged
- chore(versions): 😊 publish v0.7.4-alpha.4
#727 - fix: sync table sort to export
#723 - feat: full version of the NocoBase dockerfile
#719 - fix(plugin-workflow): fix extend collection
#708 - fix: DB_TABLE_PREFIX doesn't get applied
#710 - feat: default value
#679 - fix: required field delete submit error (#688)
#694
Commits
- feat: add examples
b848b9c - fix: record provider required for read pretty
38c3e3e - Update README.zh-CN.md
ba0e618
v0.7.4-alpha.1 - 2022-07-28
Merged
- chore(versions): 😊 publish v0.7.4-alpha.1
#696 - fix: append roles to current user
#695 - fix: fix date format
#686 - test(plugin-workflow): skip prompt tests
#692 - fix: fix accuracy of percent
#685 - fix(plugin-workflow): adjust await sleep time for test cases
#691 - feat(plugin-workflow): add assignees config for prompt instruction
#690 - fix: role export button display (#616)
#666 - feat: uid validate
#681 - refactor: replace react-drag-listview with @dnd-kit/sortable
#660 - refactor(plugin-users): improve extendibility of middlewares
#677 - feat: o2m delete not refresh
#646 - feat: kanban add description
#659 - fix: field loss enum
#667 - feat: add editor hot key Ctrl+Shift+U
#675 - fix: Fix calendar change field error (#626)
#671 - chore: fix eslint not work
#670 - feat: number precision
#661 - feat: nginx config
#664 - feat: form item designer form switch issue
#656
Commits
- fix(client): fieldNames of RecordPicker
9038d11 - fix(client): required for the sub-table field
609b0e2 - feat(client): tab icon
d9b2bf8
v0.7.3-alpha.1 - 2022-08-10
Merged
- chore(versions): 😊 publish v0.7.3-alpha.1
#657 - feat: print action
#652 - feat: restore action-hooks
#655 - feat: collections&fields pagination issue
#653 - fix(core): change proxied agent methods to native
#654 - feat: remove table field details actions
#638 - fix: link to default value
#641 - feat: support for displaying relational table fields in details or form blocks
#635 - fix: record picker cannot select from different pages
#623 - fix: dragging an element to the left, right, or bottom would cause the element to disappear
#620 - feat: table action add reload button
#630 - feat: improve language settings
#627 - feat: field assignment for custom actions supports string variables
#597 - fix: skip recursive remove on grid component
#621 - feat: fix time and collection pagination
#618 - feat: recordblockinitializers fields pick
#558 - fix: incorrectly :active background
#607 - fix: obo table selector
#613 - feat: form validator
#569 - fix: table selector
#612 - chore(versions): 😊 publish v0.7.2-alpha.7
#611 - chore(versions): 😊 publish v0.7.2-alpha.3
#608 - chore(versions): 😊 publish v0.7.2-alpha.2
#606
Commits
- fix(client): build error
600f13f - fix(client): blocks are deleted when they are dragged below the current block
20ab8c1 - feat(client): plugin toolbar icons and translations
c51c6c0
v0.7.2-alpha.2 - 2022-07-07
Merged
- fix: field permissions cannot be saved
#605 - fix(plugin-workflow): fix revision bug
#603 - fix(plugin-workflow): fix select value
#600 - fix(plugin-workflow): fix CollectionFieldSelect component
#598 - feat(plugin-workflow): add association select in calculation
#584
Fixed
- fix: field permissions cannot be saved (#605)
#599
Commits
- chore(versions): 😊 publish v0.7.2-alpha.1
a0cc501 - fix(g2plot): import all plots
2bb8fd9 - Update issue templates
7767335
v0.7.2-alpha.1 - 2022-07-05
Merged
- chore(versions): 😊 publish v0.7.2-alpha.1
#578 - fix: drop all foreign keys
#576 - fix(plugin-workflow): fix collection trigger config
#575 - feat: filter with variable
#574 - feat(cli): check database version before installation
#572 - fix(database): index invalid
#564 - fix: export association table data
#561 - Refactor(plugin workflow): move client files into plugin
#556 - fix(database): constraints default to false
#550 - fix(plugin-workflow): fix select width
#552 - feat: compatible with old kanban
#553 - feat: display association fields
#512 - Fix(plugin workflow)
#549 - fix:update mysql port
#548 - fix: export of relation blocks
#546 - fix(plugin-workflow): clear options when change collection
#547 - feat(plugin-workflow): add race mode
#542 - fix(client): change toArr to _.castArray in select component
#543 - chore(versions): 😊 publish v0.7.1-alpha.7
#539
Commits
- fix(client): comment out useless code
4e9384b - fix(workflow): merge workflow providers
008a7f7 - feat(client): integer field
9928424
v0.7.1-alpha.5 - 2022-06-26
Commits
v0.7.1-alpha.4 - 2022-06-26
Merged
- chore(create-nocobase-app): fix some bugs
#538 - fix: destroy collection fields
#536 - feat(plugin-workflow): add delay node type
#532 - refactor: client application
#533 - fix: missing transaction
#531 - fix: add ellipsis property to record picker
#527 - fix: remove pattern without form item
#528 - fix(plugin-workflow): set current when update
#526 - fix: order nulls last
#519 - fix: action loading, refresh context, form submit and validate
#523 - Fix field pattern
#520 - fix(plugin-workflow): fix searchable select min-width
#524 - fix: template with fields only
#517 - fix(plugin-workflow): fix update workflow current property
#521 - refactor(plugin-workflow): abstract to classes
#515 - feat: column sortable and form item pattern
#518 - fix(custom-request): support string/json templates
#514 - feat: add block title
#513 - fix: remove collections & fields from db
#511 - feat: improve migrations
#510 - fix(client): consolidate usage of date/time as UTC in transfering
#509 - fix: formula bug
#508 - fix: default exportable fields
#506 - feat: association field block
#493 - feat: plugin export
#479 - fix(client): package path (fix #503)
#504 - fix: create or delete collection error
#501 - feat: update collections & fields
#500 - fix: rollback when field creation fails
#498 - fix(client): set
dropdownMatchSelectWidthto false globally#497 - fix(client): no-key warning in user menu items
#496 - Feat(plugin workflow): cron field for schedule trigger configuration
#495 - feat: audit logs
#494 - refactor(plugin-workflow): add revision column to execution
#491 - feat: relation field uiSchema
#487 - feat: change FK to input component
#488 - fix(plugin-multi-app-manager): fix pg cannot create database block tests
#486 - refactor(database): hook proxy
#402 - feat: chart blocks
#484 - Refactor(plugin workflow): support number in repeat config for schedule
#482 - chore(debug): add debug config
#475 - fix: has one bug
#478 - feat: relationships
#473 - fix(plugin-workflow): fix collection trigger transaction
#474 - fix(plugin-workflow): temporary solution for collection trigger conditions
#472 - fix: markdown component
#469 - fix: formula field and percent field
#467 - fix(plugin-workflow): fix update workflow action
#464 - fix: update formula field and percent field
#461 - feat: add formula field type
#457 - fix: the details of the associated data in the subtable are not displayed
#454 - fix(plugin-workflow): fix languages
#451 - fix: afterSync hook not triggered
#450 - docs(various): Improve readability
#447 - feat: custom request
#439 - Feat(plugin workflow): schedule trigger
#438 - feat: db migrator
#432 - fix(client): select component cannot be opened in sub-table block
#431 - docs(github): change to markdown format
#430 - fix(cli): typo
#429
Fixed
- fix(client): package path (fix #503) (#504)
#503
Commits
- feat(client): update locales
e57e60e - docs: update doc
e5cb948 - fix(client): improve datepicker component, date with time zone, gmt support
1c03fbb
v0.7.0-alpha.82 - 2022-05-27
Merged
- feat(client,sdk): improve api client
#425 - feat: add create-plugin command
#423 - feat: add button color
#420 - chore(versions): 😊 publish v0.7.0-alpha.78
#419
Commits
- chore(versions): 😊 publish v0.7.0-alpha.82
4820fd0 - docs: update installation documentation
90623e8 - fix: "typescript": "4.5.5"
c071217
v0.7.0-alpha.67 - 2022-05-24
Commits
- chore(versions): 😊 publish v0.7.0-alpha.67
3262979 - chore(versions): 😊 publish v0.7.0-alpha.66
9c19e4d
v0.7.0-alpha.64 - 2022-05-24
Merged
- feat: update docs
#413
Commits
- chore(versions): 😊 publish v0.7.0-alpha.63
c01c695 - chore(versions): 😊 publish v0.7.0-alpha.64
35d01a5 - fix(plugin-users): add translations (#416)
72c3ba4
v0.7.0-alpha.60 - 2022-05-23
Commits
v0.7.0-alpha.59 - 2022-05-23
Merged
- refactor(plugin-workflow): change column type of executed from boolean to integer
#411
Commits
- chore(versions): 😊 publish v0.7.0-alpha.59
c90e5ae - docs: update roadmap and release notes
f198411 - Update roadmap.md
e5c5e16
v0.7.0-alpha.58 - 2022-05-22
Merged
- fix: 204 no content response
#378 - feat: destroy association field after target collection destroy
#376 - fix(type): use sequelize native Transactionable instead of TransactionAble
#410 - fix(plugin-workflow): remove previous listeners when collection changed in config
#409 - feat: add custom action
#396 - refactor(plugin-workflow): multiple instances and event management (fix #384)
#408
Fixed
Commits
- chore(versions): 😊 publish v0.7.0-alpha.58
19ee422 - fix(plugin-acl): missing pagination parameters #394
b44753d - fix: missing isTruly/isFalsy filter operators #390
e596e6d
v0.7.0-alpha.57 - 2022-05-19
Merged
- fix(plugin-workflow): fix node type title in drawers
#389
Commits
- feat: build, cli, devtools, sdk, docs...
6410bc8 - chore(versions): 😊 publish v0.7.0-alpha.57
33f076e - Update README.md
e24e007
v0.7.0-alpha.34 - 2022-05-14
Merged
- Fix(plugin workflow): fix cannot get job result properties
#382 - feat: exist on server start throw error
#374 - chore: application options
#375 - fix: not in operator with null value record
#377
Commits
v0.7.0-alpha.33 - 2022-05-13
Merged
- Feat(plugin workflow): revisions
#379 - fix(database): fix option-parser include list index
#371 - fix(plugin-worklfow): fix duplicated description in fields values
#368 - fix(database): fix type and transaction in repository
#366 - Fix(plugin workflow): fix transaction of execution
#364 - fix(plugin-workflow): add document title
#363 - fix: set visible with confirm
#361
Commits
- chore(versions): 😊 publish v0.7.0-alpha.33
c4b5f4f - Update issue templates
8466159 - fix: link-to field data scope error (#1337)
2156c70
v0.7.0-alpha.30 - 2022-05-05
Merged
Commits
- chore(versions): 😊 publish v0.7.0-alpha.30
781fb0a - fix(client): upgrade formily packages
58b151c - fix(client): setFormValueChanged must be defined
b33c819
v0.7.0-alpha.29 - 2022-05-04
Merged
- fix: empty resource acl error
#357 - Feat: from values changed when unsaved will prompt
#351 - fix: modify filter close icon color
#356 - fix(plugin-workflow): fix i18n
#354
Commits
- chore(versions): 😊 publish v0.7.0-alpha.29
46e660b - fix(client): color styling
90a58cc - feat(client): translation
33a99d9
v0.7.0-alpha.28 - 2022-05-02
Merged
- Fix(plugin-workflow)
#353 - fix(plugin-file-manager): upgrade multer-aliyun-oss package to fix size
#352 - feat: improve code
#350 - Fix/plugin workflow
#349 - fix: db:sync not working
#348 - fix(plugin-workflow): fix trigger bind logic to avoid duplication
#347 - Fix(plugin workflow)
#346 - Fix:menu url style
#344 - chore(plugin-workflow): add translation
#345 - fix(plugin-workflow): break cycling trigger through transaction id
#341
Commits
- chore(versions): 😊 publish v0.7.0-alpha.28
a48d004 - chore(versions): 😊 publish v0.7.0-alpha.27
ebfe11f - chore(versions): 😊 publish v0.7.0-alpha.26
515d952
v0.7.0-alpha.24 - 2022-04-29
Merged
- fix: model.beforeCreate not called
#343 - fix: thumbnail image in kanban card
#338 - feat: db authenticate
#342 - chore: install subApp asynchronous
#336 - fix(plugin-workflow): change collection values input ux in workflow nodes
#340 - feat: improvements
#335 - Feat(plugin workflow): add changed fields to model trigger config
#332
Commits
- docs: update readme.md
aacec30 - chore(versions): 😊 publish v0.7.0-alpha.24
1fb2dd8 - feat: uuid field
2c0d3fc
v0.7.0-alpha.16 - 2022-04-27
Merged
Commits
- chore(versions): 😊 publish v0.7.0-alpha.16
27399f4 - feat: improve code
c71f45c - Update README.md
4317de7
v0.7.0-alpha.15 - 2022-04-26
Merged
- fix: create-nocobase-app compatibility
#323 - fix: create-nocobase-app client package version
#321 - fix: app manager
#320
Commits
- chore(versions): 😊 publish v0.7.0-alpha.15
f0d9b0e - chore(versions): 😊 publish v0.7.0-alpha.14
8736278 - chore(versions): 😊 publish v0.7.0-alpha.13
62eb85d
v0.7.0-alpha.6 - 2022-04-25
Commits
- chore(versions): 😊 publish v0.7.0-alpha.6
7d0087c
v0.7.0-alpha.5 - 2022-04-25
Commits
- chore(versions): 😊 publish v0.7.0-alpha.5
a00b45a - fix(plugin-system-settings): cannot read property cliArgs of undefined
b0d3274
v0.7.0-alpha.4 - 2022-04-25
Commits
- chore(versions): 😊 publish v0.7.0-alpha.4
327e413
v0.7.0-alpha.3 - 2022-04-25
Commits
v0.7.0-alpha.2 - 2022-04-25
Commits
- chore(versions): 😊 publish v0.7.0-alpha.2
0e0e99e - feat(license): update license
ed9b2b6 - feat: kanban disableCardDrag
05a251b
v0.7.0-alpha.1 - 2022-04-25
Commits
- chore(versions): 😊 publish v0.7.0-alpha.1
e7293ad
v0.7.0-alpha.0 - 2022-04-25
Merged
- refactor: modify default lable style
#318 - Fix multiple apps
#317 - Fix multiple apps
#316 - Fix acl target action error
#311 - feat: file storages
#314 - fix(plugin-workflow): fix some ux
#313 - fix(plugin-workflow): fix query node getter field
#308 - Fix create nocobase app
#307 - fix: create-nocobase-app
#306 - Fix create nocobase app
#305 - fix: block item add overflow:hidden
#304
Commits
- feat(license): replace MIT license with Apache-2.0
717efa8 - feat: translations
5c0184a - feat: translations
1f04f90
v0.6.2-alpha.12 - 2022-04-21
Commits
- chore(versions): 😊 publish v0.6.2-alpha.12
5a668cf - fix: create-nocobase-app publish
269e73e - chore: create-nocobase-app package.json
1c30ee1
v0.6.2-alpha.11 - 2022-04-20
Commits
v0.6.2-alpha.10 - 2022-04-20
Commits
v0.6.2-alpha.9 - 2022-04-20
Merged
- feat: details block
#302 - Fix(plugin workflow): fix collection data form view
#301 - feat: add $isCurrentUser filter operator
#299 - fix: through table primaryKey error
#297 - feat: junction collection for linkTo field
#296 - fix: long text will wrap in FormItem
#295 - fix(client): avoid cannot getField by randomly generated name and throw error
#294 - Feat/create nocobase app
#273 - feat(plugin-workflow): add all crud nodes for workflow
#293 - feat(plugin-workflow): add create node component
#292 - fix: rich text removed value avoid dispaly html string
#290
Commits
- fix: update yarn.lock
fcfde7e - chore(versions): 😊 publish v0.6.2-alpha.9
1afc867 - fix: update useCreateActionProps & useUpdateActionProps
fca0943
v0.6.2-alpha.7 - 2022-04-16
Commits
v0.6.2-alpha.6 - 2022-04-15
Commits
- chore(versions): 😊 publish v0.6.2-alpha.6
faa064a
v0.6.2-alpha.5 - 2022-04-15
Commits
- chore: create-nocobase-app lib
fc27ebc - chore: create-nocobase-app
8d0703c - chore(versions): 😊 publish v0.6.2-alpha.5
2b21546
v0.6.2-alpha.4 - 2022-04-15
Commits
- chore(versions): 😊 publish v0.6.2-alpha.4
e3a9e92
v0.6.2-alpha.3 - 2022-04-15
Commits
- feat: workspaces
0eb6997 - chore(versions): 😊 publish v0.6.2-alpha.3
2feae05 - chore: 0.6.2-alpha.2
dbf86d5
v0.6.2-alpha.1 - 2022-04-15
Commits
- chore(versions): 😊 publish v0.6.2-alpha.1
c6b58b2
v0.6.2-alpha.0 - 2022-04-15
Commits
- chore(versions): 😊 publish v0.6.2-alpha.0
5351fb3
v0.6.1-alpha.0 - 2022-04-15
Commits
- chore(versions): 😊 publish v0.6.1-alpha.0
0b52b73
v0.6.0 - 2022-04-15
Merged
- Feat: plugin-workflow
#288 - fix: slate style
#289 - fix: toJSON with belongsTo Assoication
#287 - feat: improve acl module
#283 - fix: destroy own records
#285 - feat(plugin-workflow): support context variables from model trigger
#284 - fix: acl write
#280 - fix: call root server hook after insertNewSchema
#282 - Feat/plugin workflow
#278 - feat: acl provider
#279 - feat: add Slate component
#272 - Feat/plugin users with jwt
#258 - fix: modify antd style of default
#277 - fix(client): meet undefined error after clear filter cascader value
#267 - Feat(plugin workflow): refactor calculation and add filter for query
#264 - feat: block provider
#261 - fix: toJSON with null association
#260 - fix: error handle error
#259
Commits
v0.6.0-alpha.1 - 2022-04-05
Merged
- fix: textarea read pretty can support break line
#255 - fix: markdown support ellipsis
#257 - featPlugin multiple apps
#248 - add action log tempalte
#239 - fix some bugs
#252 - fix(plugin-workflow): fix adding/removing node in parallel branches
#253 - Feat: client base entry of plugin workflow
#225 - fix: updateAt on move scope change
#251 - feat: get json schema with async node
#246 - feat: insertNewSchema
#245 - fix: transaction error
#242 - feat: block templates
#240 - feat: uiSchema clearAncestor
#241 - feat: init sort field values
#236 - fix: move action without alter updatedAt
#235 - feat: role check action
#234 - feat: ne operator
#233 - fix: user current role
#232 - featEnable permission
#229 - test: update reverseField
#231 - feat: kanban
#230 - Nocobase next kanban
#223 - add: test
#224 - Plugin error handler
#222 - fix: array $noneOf with null
#220 - fix: filter parser with number in key
#219 - feat: ui-schema-tree-path descendant index
#218 - fix: array operator query error
#217 - fix: operator query value
#216 - feat: string operators
#215 - feat: error handle middleware
#214 - refactor: filter schema component
#213 - fix: empty operator with $or filter
#212 - feat: plugin install
#211 - feat: sortBy through table value
#209 - Feat: plugin workflow
#210 - fix: collection fields sort
#208 - feat: sort in collection fields
#207 - fix Collection rest api
#205 - feat: non paged list
#204 - feat: finish calendar component develop
#199 - fix(dependencies): move json-template into original sub packages
#203 - Feat(plugin workflow): add more instructions
#201 - fix: getJsonSchema with properties
#202 - fix: postgres array operator
#200 - fix: postgres sort with appends issue
#198 - feat: uiSchema remove api
#196 - refactor: perPage to pageSize
#197 - fix: option parser test
#195 - fix: nest append
#194 - fix: test with database
#193 - fix(plugin-workflow): fix dependencies in package
#192 - Fix: plugin-workflow test
#191 - Refactor(plugin-workflow): upgrade plugin to use abstract plugin class and fix types
#190 - fix: ui schema storage
#188 - fix: ui schema storage
#187 - fix: update guard with Model instance
#186 - fix: getProperties with order
#183 - feat(server): improve application
#177 - Feature: plugin-workflow MVP
#171 - fix(root): fix dependencies in packages to avoid building errors
#178 - Application
#175 - feat: add acl plugin
#169 - add Filter component into schema componens
#176 - feat: add Markdown component into schema components
#173 - feat: table related components
#172 - feat: add select component into schema component
#168 - feat: add TreeSelect component into schema components
#167 - Plugin acl
#166 - add upload component into schema components
#165 - migrate TimePicker component into schema components
#164 - Feat/plugin UI schema v0.6
#143 - Feat/plugin collection manager
#147 - Acl
#162 - feat: acl
#153 - feat: add InputNumber Component into schema component
#160 - feature/nocobase next password
#159 - feat: add DatePicker into schema components
#161 - feat: add input into schema component
#158 - feat: add radio into schema component
#154 - optimize: rename checkbox component file
#155 - Nocobase next color select
#157 - feat: add async-data-provider component
#151 - feat: client v0.6
#150 - Feat/GitHub actions
#148 - feat: filter by target key
#146 - refactor: actions
#137 - feat: context field type support
#131 - feat: database next
#130 - feat: rename resourceKey & associatedKey to resourceIndex & associatedIndex
#126 - refactor: table cell text overflow that show ellipsis
#125 - Add S3 storage and refactors
#124 - Fix: plugin-file-manager
#111 - refactor: code splitting of the table component
#121 - refactor: code splitting of the table component
#120 - feat: add reset button in the filter panel
#110 - feat: allow user to change password
#109
Commits
- v0.6
732d310 - create-nocobase-app template from [develop]
9f4bea7 - feat: improve view action schema initializer
590ca26
v0.5.0-alpha.33 - 2021-11-22
Merged
- fix: upgrade formily & side menu render with createPortal & use deep compare effect
#103 - fix: SchemaRenderer get schema value
#102 - fix: upgrade formily and form.setValues uses overwrite strategy
#101 - feat: support i18n
#99 - feat: new version of the documentation
#95 - option-tag style
#92 - create-nocobase-app: favicon
#91 - feat: create nocobase app with simple & quickstart option
#87 - feat: export plugin
#73
Commits
v0.4.0-alpha.6 - 2021-04-18
Merged
Commits
- fix: improve login form styles
5319000 - fix: error message for login and registration
214b227 - docs: nodejs provided by docker
22739af
v0.4.0-alpha.5 - 2021-04-07
Commits
- chore(versions): publish packages 0.4.0-alpha.5
ef93a3c - chore(versions): publish packages 0.4.0-alpha.4
a22efec - chore(versions): publish packages 0.4.0-alpha.3
e72eebb
v0.4.0-alpha.2 - 2021-04-07
Commits
v0.4.0-alpha.1 - 2021-04-07
Merged
- fix: minor problems
#72 - Develop
#68 - Feature: plugin-china-region
#66 - Feature: filter for linkTo field
#64 - fix: make default view/tab cannot be destroyed
#63 - Feature/plugin automations
#65 - Feature/action logs
#62 - Feature/action logs
#61 - Feature/destroy lock
#60 - fix: ignore some typescript error
#59 - feat: route permissions
#58 - Feature: add permission plugin api
#57 - fix: updatedBy foreignKey
#56 - feat: add permissions plugin
#53 - fix: updatedBy field in bulkUpdate hook
#54 - test: skip bug test cases for ci passing
#52 - fix: avoid bug when update other field
#51 - feat: date-only operators
#50 - Feature field for set default
#49 - Feature: custom operators for querying
#48 - fix: toInclude bug with nested associations
#47 - feat: make single file upload to attachment available
#46 - feature: add file manager base architecture
#44 - feat: add createdBy/updatedBy field config for table managed by collections
#43 - fix: use wrapped and logic for merging filters
#42 - fix: filterByFields should return same value when input == null (close 0)
#41 - fix: Symbol property could not be iterated in for-in
#39 - Feature/sort
#38 - refactor: change sort strategy from offset to targetId
#37 - Feature/sort
#36 - feat: add filter and transaction for destroy action
#35 - fix: field filter logic for create/update
#34 - Feature: action fields options for create/update
#32 - Fix: change strategy from add to set for updateAssociations
#33 - Test/ci
#31 - feat: improve collection hooks/fields/actions/views...
#30 - Fix/model update associations
#29 - fix: database test cases and table options
#28 - feat: add virtual attribute geter & setter support
#27 - feat: collection options & hooks
#21 - feat(users): add users module
#26 - feat: add sort action
#22 - Test/list
#19 - feat: pagination options
#20 - test: refactor test in database and add more
#17 - feat: actions & views
#18 - Test cases for database
#16 - Refactor: change global injection of test for actions package.
#15 - feat: improve plugins
#14 - Doc: add README.md for server.
#12 - fix: parseRequest & registerHandlers
#10 - fix #9
#11 - feat: support register and call partial actions
#7 - 发布核心框架
#6





































































































