AtroCore
2.0.5
From: 2025-06-11
- Fixed bug with dynamic actions
2.0.4
From: 2025-06-10
Fixed minor bugs
2.0.3
From: 2025-06-06
- Added ability to generate custom dynamic action via console command.
php console.php create action MyAction
2.0.2
From: 2025-06-03
- Added ability to export new attributes as mass action
- Added ability to mark Attribute as Read-Only
- Templates for Product Preview were adapted to new attributes
- Fixed minor bugs
2.0.1
From: 2025-06-02
- Added button for closing attribute panels
- Fixed minor bugs
2.0.0
From: 2025-04-17
Important: major changes Introduced – some are not backward compatible!
Please ensure you create a full system backup before updating, in case a rollback is needed.
-
Web server root directory changed.
The web server root directory has been updated to enhance project structure and security. You must now explicitly set the public folder as the web server root.
Previous configuration: /var/www/pim.site.com
New configuration: /var/www/pim.site.com/public
Please update your web server configuration accordingly.
-
Entity filter enhancements
The entity filter has been redesigned and relocated to the right-hand sidebar for greater flexibility and control. You can now:
- Save, manage, and reuse filters with ease – streamlining complex query workflows
- Apply multiple pre-configured and/or saved filters and/or advanced filters simultaneously
- Apply multiple conditions to the same field using AND/OR logic
- Configure subqueries, view and edit subquery contents directly
-
Attribute management
-
Attributes are now dynamic fields that can be assigned individually to selected records, rather than globally across all entities.
-
The Product Attribute Values entity has been deprecated, but all core features – inheritance (from parent and classification), multilingual support, filtering, mass actions, and import/export remain fully supported.
-
Attributes are usable for eny Entity in the system. A new Entity field has been added to attributes. It is set during attribute creation and cannot be changed afterward. Each attribute is now associated with a single entity, so when adding an attribute to a record, only attributes linked to that entity will be available. New attributes can also be created directly from the entity’s settings.
-
To add an attribute, use the Add Attribute action from the record’s details page. Additional attributes can be added via the Attributes panel. A new Delete Attribute option is available in list view for bulk removal.
-
Attributes can now be linked to a specific Channel. Channel-specific values have been migrated to separate attributes with a linked channel. When an attribute is linked to a channel, the channel name is shown as part of the attribute name on the record page (e.g., Color / Magento
).
-
Introduced a new attribute type, Composite, which allows combining multiple attributes into one.
-
Added a Full Width parameter to the Attribute entity, allowing control over attribute field width on the record page. This option is enabled by default for HTML, Text, and Markdown attribute types.
-
Classifications can now be assigned to all entities that has attributes activated. You can also configure entity settings to allow only a single classification per record if needed.
-
New attribute values are now available in entity filters. For entities with the “Has Attributes” option enabled, attribute-based filtering is supported.
-
The Attribute Panel is now a required field when creating an attribute. Panels and groups are linked to entities, so only panels associated with the same entity can be selected. By default, a panel named "Attributes" is created in the environment and can be set as the default for new attributes.
-
The display order of attributes on a product page is controlled either by the "Sort Order" field on the attribute page or through drag-and-drop within a panel or group. Attribute order in a group takes priority over panel-level ordering. Panel order on the product page is also based on the "Sort Order" field.
-
Attribute handling in script fields has been simplified. Attributes are now directly accessible in Twig-based fields such as exports, imports, scripted attributes, and workflows. There’s no need for additional database queries – just reference the attribute using its code (or ID if the code is not set), for example: {{ entity.attribute_code }}
.
-
A new custom function, putAttributesToEntity
, has been introduced to simplify loading attributes into an object within your script. This allows you to retrieve attributes of another entity in a single call. For example:
{% set product = findRecord('Product', {'id' : 'a01jfaapbb6e4hsq01qt54yqkzp'}) | putAttributesToEntity %}
{{ product.attribute_code }}
-
The previously used getProductAttributeValue function is now deprecated and will no longer work. All scripts using this function must be updated to follow the new attribute handling approach.
-
Some Import and Export Feeds cannot be migrated and should be reconfigured manually
- Feeds that use product attribute values must be reconfigured manually . Due to the extensive changes introduced, automatic migration of these feeds is not possible.
-
Other changes
- Added the ability to export attributes for all entities.
- Introduced a right sidebar in modal windows for improved navigation.
- Added an option to disable direct attribute linking.
- Enabled selection of allowed options for attributes and fields of type List and Multi-value List.
- Improved the image gallery functionality.
- Enhanced the Compare/Merge feature for better performance.
- Upgraded icon handling and functionality.
- Improved content filtering capabilities.
- Entity search now covers all text fields for more comprehensive results.
- Added “Create no record activity” and “No recording as modification” checkboxes in entity field settings to exclude changes from activity logs and prevent updating the "Modified at" timestamp.
- Fixed list option color display bug.
- Resolved an update issue related to MariaDB.
- Fixed a bug preventing full form opening when creating an entity field.
REST API CHANGES
The ProductAttributeValue
entity has been removed, along with all related API endpoints. Attribute values are now integrated directly into the main entity record. Previously, retrieving attribute values for a product required an additional API call (e.g., Product/1111/productAttributeValues
). Now, a single request to Product/1111
returns all fields, including attribute values.
The example of the entity response code with attribute values
{
"id": "some-id",
"name": "Some entity record name",
....
// The attribute of type float with units does not have a code, that is why the key consists of the attribute ID.
"w66c5e66a16f021f5": 75,
"w66c5e66a16f021f5UnitId": "usd",
"w66c5e66a16f021f5UnitName": "USD",
...
// The attribute of type date has code "date", that is why the key here is just "date".
"date": "2025-06-02"
}
To retrieve attribute values for a list of products (or any entity with the "Has Attributes" option enabled), include the desired attributes in the query parameters.
Example:
/api/v1/Product?maxSize=5&offset=0&sortBy=name&asc=true&attributes=w66c5e66a16f021f5,g65d75b6441a84aea
where attributes=w66c5e66a16f021f5,g65d75b6441a84aea
are attributes IDs.
1.13.50
From: 2025-04-15
- Fixed bug with notifications
- Fixed minor bugs
1.13.49
From: 2025-04-11
- Information about linking/unlinking a new attribute to the record is now displayed in the Activities
- Fixed bug with inability to configure list layout from the Filter panel
- Fixed bug with removing an association group
- Fixed minor bugs
1.13.48
From: 2025-04-03
- Added new connection type that can take dns directly as a parameter
- Added Stable Only configuration and security configurations
- Added the ability to make URL fields/attributes multilingual
- Added Field level usage type for actions
- Added Right Sidebar to List Pages
- Added split download for files
- Added mass update option for new attributes
- Changes in new attributes are now displayed in Activities
- Improved icon placement on the left sidebar
- Updated administration menu
- Fixed bug with empty tooltip on list options
- Fixed bug with creating connection of type SFTP
- Fixed bug with 'Reset to default' button in fields
- Fixed bug with panel counters
1.13.47
From: 2025-03-27
- Added ability to add attributes to any entity of the system by enabling option "Has attributes" in the entity manager. Attributes are dynamic fields of an entity.
- Changed the logic of Breadcrumbs: they now show the history of entity views on the entity page and the path to the record on the record page
- Right sidebar is updated
- Stream has been renamed to "Activities" and added to the right sidebar. It is also a dynamic panel at the bottom of the page. It is no longer automatically loaded when you open the record page. To open Activities you need to click on the arrows in front of the panel name.
- Improved Item Filtering in Activities
- Fixed minor bugs
- Fixed bug with permissions for Saved Search
1.13.46
From: 2025-03-26
1.13.45
From: 2025-03-26
1.13.44
From: 2025-03-25
- Fixed bugs with layout manager
1.13.43
From: 2025-03-20
- Added ability to create public entity filters available to other users
- Added HTML sanitiser that allows only tables in the field
- Fixed bug with highlighting product category in the category tree
- Dynamic logic Visible on panels is removed from the system
- Optimized usage for Created At, Created By, Modified At, Modified By fields
- Added ability to configure layouts for entity relations to itself (children, parents, associates, etc.)
- Fixed bug with clearing deleted data
- Fixed bug with content filter
- Fixed bug with static lists
- Fixed a bug with layouts
1.13.35
From: 2025-03-13
- Fixed bug with default value for Integer Range field
- Fixed bug with editing product components from product preview
- Improved cache functionality when changing layout profiles
- Action history was improved
- Required fields and attributes are highlighted when clicking on the status icon
- Fixed bug with 500 error when closing relation panel
- Fixed bug with inability to select folder for the imported file for non-admin user
- Fixed bug with invalid format for date/date-time fields
- Fixed bug in Swagger doc
1.13.33
From: 2025-03-11
- Added ability to set an image of the svg type as a logo
- Added ability to use fields of type list as Status Fields
- Added button for sorting the items in the left sidebar
- Updated detail layout and detail view for Relation Entities
- Fixed bug with right panel
- Fixed bug with hiding the field panel for invisible fields
- Improved Cache clearing when Style and Locale are changed
- Fixed but with default value for Float Range field
- Removed virtual fields from metadata
1.13.32
From: 2025-03-10
- Fixed bug with system notifications
1.13.31
From: 2025-03-03
- Added the ability to configure field-level permissions for the User Profile entity
- Adapted list layout and list view for Relation Entities
1.13.27
From: 2025-02-27
- Replaced default icons for entities
1.13.26
From: 2025-02-25
- Refactored preferences functionality: User Profile is now used to customize the locale, style, dashboards, and other settings specific to an individual user
- Added timezone parameter to the API which allows to adapt fields and attributes of type date to the selected time zone
- Fixed bug with creating boolean fields with null value enabled
- Fixed bug with notification bubble
1.13.24
From: 2025-02-25
- Added missing fields for File Entity to OpenApi
1.13.23
From: 2025-02-24
- Fixed minor bugs
- OpenAPI docs updated
1.13.22
From: 2025-02-24
- Added minor adjusments for left Sidebar
- Fixed minor bug
1.13.21
From: 2025-02-17
- Added the ability to add an entity to favorites by clicking on the pin icon
- Add a config to disable icons for favorites
- Updates to the tooltips have been made: the tooltip is now displayed when you hover over an element
- Updates to the left sidebar
- Fixed bug with the default value of list and static list fields
- Fixed a bug with resetting tooltips for group menus items
- Fixed bug with resetting preferences to default
- Fixed bug with drag and drop
- OpenAPI documentation updated: added new endpoints /Measure, /Unit, etc.
1.13.19
From: 2025-02-14
- Optimized layout configuration
- New standard icons have been added to entities. If a custom icon is not installed, the entity will have a default icon that corresponds to the first letter of its name
- Updates to the left sidebar
- Changes to entity fields made by another user are now loaded in real time
- Fixed a bug with global search panel on mobile
- Fixed a bug with stream
- Fixed a minor bug in layout manager
1.13.17
From: 2025-02-11
- Added ability to configure Favorites panel in the toolbar
- Updated translations for layouts
- Fixed bug with layot configuration
- Fixed bug with global search on mobile
- Other minor bugs fixed
1.13.12
From: 2025-02-04
- The functionality of the Advanced Navigation module is now included in the Сore. The module will be removed after the update. Navigation Menu can now be configured in the Layout Profile. The ability to combine items into groups is provided as a general functionality.
- The dashboard is now configured within the Layout Profile. Users can also configure their own dashboard in Preferences or from the Dashboard page itself
- Implemented support for the OAuth2 authentication method for SMTP connection
- Followers is now a standard field which can be used in layouts
- Quick create is moved to navigation menu
- Updated usability of Set value by AI Ui handlers and Actions
- Previews were moved to img-from-pdf folder
- Fixed bug in layout configuration
- Fixed bug in wallpaper image links
1.13.8
From: 2025-01-30
- Data filters now open by clicking a special icon. Their action applies only to a single entity
- Added grouping for types of fields and attributes
- Added data filter, anchor navigation and ability to switch to the merge interface to the record comparison window
- Added ability to switch between existing layout profiles for separate entity and for every separate entity view. A user with permission to edit the Layout Profile can configure a layout directly from the entity. It will be saved in the corresponding profile. The Layout profile is assigned separately for the user. This can be done by the admin, or by the user himself, if he has the appropriate rights.
- "Provide Feedback" button moved to right pop-up menu
- Fixed bug with parent products
- Fixed bug with ancor menu
- Fixed bug in hierarchies
- Fixed bug in translations
- Fixed bug with editing custom entities
1.13.5
From: 2025-01-29
- Fixed bug with Theme migration in Preferences
1.13.4
From: 2025-01-29
- Fixed bug with scrolling in Layout Customization modal window
1.13.3
From: 2025-01-28
- Fixed bug in right sidebar
1.13.2
From: 2025-01-23
- Refactored left sidebar
- Refactored status icon display
- Added the ability to expand the scripts editor to the full screen
- Fixed bug in Categories
- Fixed bug in Bookmark panel
- Fixed bug in Notification Profiles
1.12.16
From: 2025-01-21
1.12.14
From: 2025-01-14
- Added the ability to configure multiple Styles for an instance. Themes were migrated to the Styles with custom settings preserved
- Added ability to configure permissions for style control
- Added code field for Locales
- Added custom backgrouds
- Updated access management for Layout Profiles
- Page title is updated for tab name
- Fixed bug with inability to create entity field with long code
- Fixed bug with global search in Attribute Value entity
1.12.11
From: 2025-01-08
- Refactored Entity Manager
- Improved record comparison
- Updated navigation menu
- Fixed bug with options order in dropdown list
- Fixed bug with mass update
1.12.10
From: 2025-01-02
- Improved record comparison
- Fixed bug with size definition for large files
- Fixed bug with set of actions of type Import
- Fixed bug with bookmarks
- Fixed bug in users
1.12.9
From: 2024-12-27
- Added ability to merge multiple records into one. It is possible to edit field values manually and select field values and relations from any of the merged record
- Added ability to use conditions in the Action
- The workflow action is now divided into sub-jobs like regular mass actions
- Fixed bug with tooltips
- Fixed bug with tree panel
1.12.8
From: 2024-12-27
1.12.7
From: 2024-12-23
- Added mass action "Compare"
- Added dynamic load for actions
- Improved product comparison
- Fixed bug in layouts
- Fixed bug in bookmarks
1.12.6
From: 2024-12-19
- Multilingual attributes are now displayed in the stream with the language name
- Added bookmarks on the left panel
- Added virtual relation fields to entity filter
- Added an editable preview for product page. You can create an unlimited number of preview templates.
- Fixed bug with value of the field "Modified by" when the record has been changed through the Job Manager
- Fixed minor bug
1.12.4
From: 2024-12-17
- Fixed minor bug
- Added compare functionality
1.12.3
From: 2024-12-16
1.12.2
From: 2024-12-16
- Fixed bug with side panels
1.12.1
From: 2024-12-11
- A single unified mechanism for working with Jobs has been developed. The Queue Manager has been transformed into the Job Manager
- System downgrading is now prohibited
- Fixed bug with incorrect "Modified at" date when editing record
- Fixed bug with logs in the Module Manager
- Fixed bug with HTML Sanitizer
1.11.60
From: 2024-12-10
- Improved field creation
- Fixed minor bug
1.11.59
From: 2024-12-09
- Added bookmarks functionality
- Fixed minor bugs
1.11.57
From: 2024-12-09
1.11.56
From: 2024-12-04
- Added fields with dimensions and color space of Files. Field values are automatically determined for images and PDF files
- Added ability to edit components in preview real time
- Fixed bug with auto-refresh interval of dashlets
- Fixed minor bug with inheritance icon
1.11.54
From: 2024-12-04
- Additional layout profile is created with system installation
1.11.53
From: 2024-12-02
- Added ability to edit component attributes in preview
- Added preview for WebP and SVG files
- Fixed bug with Attribute Values layout
- Fixed minor bug in the system notifications
1.11.52
From: 2024-11-29
- Added option to validate option values for classification attributes
- Added ability to set allowed types for multiple link to files
1.11.51
From: 2024-11-27
- Added ability to set allowed types for multiple link to files
- Fixed category tree bug
- Fixed minor bug with translations
- Fixed minor bug with HTML fields
- Fixed minor bug with multiple select values
1.11.50
From: 2024-11-27
- Added filtering by type when uploading file for fields and attributes of type File
1.11.49
From: 2024-11-25
- Added parent categories for import
- Added "Inherit all from parent" action
- Fixed bug with font effects of HTML fields and attributes in the view mode
- Added the ability to select from which perspective the action is performed.
1.11.48
From: 2024-11-22
- Added system config parameter to adjust media file extension
1.11.46
From: 2024-11-19
- Updated the design of the modal window for Components
- Fixed bug with incorrect user name in Stream
- Added HTML Sanitizer
1.11.45
From: 2024-11-19
1.11.44
From: 2024-11-15
- Added ability to configure password changing templates
- Fixed bug with category tree
- Fixed minor bug in field permissions configuration
1.11.41
From: 2024-11-14
- Fixed bug with product tree
1.11.40
From: 2024-11-14
1.11.39
From: 2024-11-13
- Fixed minor bug with panel design
1.11.38
From: 2024-11-13
1.11.37
From: 2024-11-12
1.11.36
From: 2024-11-12
1.11.35
From: 2024-11-11
- Fixed bug with editing enum fields
1.11.31
From: 2024-11-08
- Improved usability of the "Disable Hierarchy" function
1.11.30
From: 2024-11-07
- Added new Dashlet type "Record List" which allows you to display any of the existing Entities in the list view on the Dashboard
1.11.29
From: 2024-11-06
- Counters will no longer be displayed during mass actions. The progress of jobs execution can be viewed in the queue manager
- Fixed bug with missing field labels when creating a field
1.11.28
From: 2024-11-04
- Improved search for products in related entities
- Linking a large number of categories to a product is now done through pseudo-transactions. As a result - links are created much faster and the system does not freeze during this process
- Fixed bug with mass deleting of records
1.11.27
From: 2024-10-28
- Fixed bug with translations
- Fixed bug with saving tooltips for fields
- Fixed bug with editing html attribute
- Fixed bug with recording error logs when sending notifications is disabled
- Fixed minor bugs in panel design
- Added function to convert webp images on the fly
1.11.26
From: 2024-10-24
- Unified icon placement for UI panels
- Fixed bug with UI Handlers
- Fixed bug with format of date fields
- Fixed bug with creating new entity
1.11.25
From: 2024-10-24
1.11.24
From: 2024-10-23
- Fixed bug in Module manager
- Fixed bug with stream
1.11.23
From: 2024-10-23
- Fixed bug with translations
1.11.22
From: 2024-10-16
- Component panel can be disabled or enabled via Layout Manager
- Added ability to customise additional layouts in layout profiles
- Added ability to disable field type filters
- Added ability to hide 'Show full list' option for layout profile
- Changed type for entities UI Handler and Translation to Reference Data
- Fixed bug where locale is not set for user
- Fixed bug where locale was displayed incorrectly in language filters
- Fixed bug where Index error for field value is to large
- Only Admin users can use the Profile Selector in Layout Customisation.
1.11.18
From: 2024-10-15
- Layouts can now be duplicated with profiles
- Fixed bug with action creation performance
1.11.15
From: 2024-10-15
1.11.12
From: 2024-10-07
- Added new entity type Reference Data
- Fixed bug with Modal window for Revisions
- Fixed bug with relation permissions
- Updated authentication details for Shopware
- Fixed bug with the Current Version and Latest Version in Modules
1.11.10
From: 2024-10-02
- Added channel filter for classifications
- Fixed bug with Modal window for Revisions
1.11.9
From: 2024-10-02
- Fixed bug with permissions
1.11.7
From: 2024-10-01
- Updated speed of the navigation
- Updated authentication details for Shopware
1.11.4
From: 2024-09-30
1.11.2
From: 2024-09-27
1.11.1
From: 2024-09-26
- Fixed bug with entity fields configuration
1.11.0
From: 2024-09-23
- Fixed bug with the order of list options in dropdown list
- Fixed bug with copying text to HTML fields
- Added ability to copy export configurations from one PIM system to another
- Added new tools for layout management
- Fixed bug with inability to edit entity
1.10.73
From: 2024-09-17
- Implemented ULID identifiers for all records
- Fixed bug in layout pannel
- Fixed bug in file export
- Added a guide for the Product entity
- Added "Add Relation" to file actions
- Fixed bug with option "Set as main image"
1.10.71
From: 2024-09-13
- Fixed minor bug with notifications
1.10.70
From: 2024-09-13
- Fixed bug with layouts
- Fixed minor bug with files
1.10.69
From: 2024-09-12
- Fixed bug with Relationships in Layouts
- Fixed bug with inability to edit records in related panels
- Fixed bug with field panels in layouts
1.10.68
From: 2024-09-09
- Fixed bug with Attribute Tabs
- SMTP connection security is not mandatory
- Fixed bug with mass action timeout
- Added ability to copy import and export feed configuration as json
1.10.66
From: 2024-09-06
- Fixed bug with unselecting records
- Reconfigured spell checker for fields of type markdown
- Added product export without predefined feed
1.10.65
From: 2024-08-29
- Fixed minor bug in system notifications
- Added ability to select all records visible now via Shift + click
- Converted Note in stream to markdown
- Layout Manager is migrated to Svelte
- Added ability to edit Layouts directly on interfaces
- Added Layout Profiles
1.10.63
From: 2024-08-22
- Adjusted Delete, Update and Set value by AI action types so that they can not be saved/updated/executed as Entity level usage
- Changed template of notifications about updates
- Fixed minor bug with Markdown
- Fixed bug with option "Show more"
- Fixed bugs with html editor
1.10.61
From: 2024-08-19
- Added "My Teams" boolean filter in Issues
- Added new datatype Markdown for fields and attributes
- Reduced the time of product page loading
- Updated Notification functionality
1.10.59
From: 2024-08-19
- Standard width of side panel for List view cahnged from 900px to 1160px.
1.10.58
From: 2024-08-13
- Fixed bug with SMTP server settings
- Changed update page
- Fixed bug with download link for custom image download
- Added ability to set permissions for Import and Export Jobs
- Fixed bug with Stream
- Fixed minor bug with layouts
- Improved performance on items
1.10.57
From: 2024-08-13
- Increase timeout for frontend
1.10.56
From: 2024-08-06
- Fixed scroll on mobile
- Fixed bug with Notification Rules
- Added release notes to Administation/Modules
1.10.52
From: 2024-07-31
- Changed system requirements. At least PHP8.1 is required. Not PHP 7.4 as it was before.
- Refactor notification functionality: added the ability to configure templates for notifications, edit, create and delete system and email notifications; added the ability to have several notification profiles and select the desired one at the system level and at the preference level
- Added ability to restore and permanently delete Files and Folders
- Fixed bug with duplicating followers
- Fixed bug with inability to filter large amount of records in subquery
- Fixed minor bug in attribue pannel display
- Added additional functions to support AI integartion module
- Added support for tax groups
1.10.48
From: 2024-07-26
- Added minor improvement
- Fixed minor bug in list filtering
- Fixed minor bug in custom tabs
- Fixed minor bug in mass actions
- Fixed minor bug in attribute labels
- Updated for AI module
1.10.47
From: 2024-07-23
- Added option Show full list to related panels
- Fixed minor bug in module installation
- Updated for AI module
1.10.44
From: 2024-07-23
1.10.42
From: 2024-07-17
- Added error messaging for mass actions
- Add possibility to configure email templates with twig variables
- Added integration with Svelte
- Added action "Duplicate and Select" on the selection window for one-to-many relations
- Added the ability to delete records permanently
- Fixed entity Disabled option
- Fixed bug in sales
1.10.40
From: 2024-07-12
- Fixed bug with displaying values of boolean fields in Stream
1.10.39
From: 2024-07-02
- Fixed visual bug in categories
- Moved Record Preview functionality to Core
- Added parameter for password expiration date
- Refactored the notation of changes in the system so that the tracking of fields and attributes during import does not affect the import performance.
- Added outgoing email accounts
1.10.35
From: 2024-06-25
- Fixed bug in Ui handlers dublication
- Fixed bug with file import
- Added support for an AI Integration module
1.10.34
From: 2024-06-21
- Added labels for checkboxes on kanban board
- Improved import speed for list options
- Fixed minor bug
1.10.33
From: 2024-06-18
- Added UI handler type: Disable Options
- Added ability to download files into archive by mass action
- Disabled ability to configure layout for Label entity. It is now configured automatically according to system configuration
- Added password complexity validation. By default user password should contain at least one symbol, capital letter, and digit and should be at least 8 characters long. The regular expression can be changed or removed in Administration > Settings.
- Fixed bug with import of range attributes
- Fixed minor bug in UI
- Fixed minor bug in session management
1.10.32
From: 2024-06-17
- Added restriction for only one chatgpt connection
- Fixed minor bug
- Fixed minor bug parent record export
- Changed textarea height parameter to Minimum number of rows of textarea and Maximum number of rows of textarea. They will be used when textarea is disabled in view mode.
1.10.31
From: 2024-06-06
- Fixed bug with Outbound emails settings
- Fixed minor bug in layouts
- Fixed bug with editing files
1.10.28
From: 2024-06-05
- Fixed bug with validation rules for File types
- Fixed minor bug with layouts
1.10.27
From: 2024-05-31
- Added field Folder path for Files and Folders
- Connector has been renamed to Synchronization
- Added change tracking for multiple link fields
- Fixed minor visual bug
- Fixed bug in export http validator
1.10.25
From: 2024-05-27
- Added optimization for multiparent relationship
- Fixed issues in UI
1.10.24
From: 2024-05-24
- Implemented Symfony Mailer to send emails
1.10.16
From: 2024-05-16
- The mechanics of UI Handlers have been updated: added two types of trigger actions - On focus and On Load/Change. Added new type of UI handler "Set value" which is available with the Workflows module
- Visualization of empty fields has been changed: null or empty field is now displayed for fields and attributes that have no value
- Fixed a bug with assigning multiple parents to product records
- Added possibility to add custom code to Head Code
- Added preview for video files
- Fixed minor bug with relation inheritance
- Fixed labels
1.10.14
From: 2024-05-10
- Added ability to send error logs to our centralized logging system to quickly identify and resolve bugs appeared on users environments. In order to allow bug reports to be sent, the checkbox "Send anonymous error reports" on the Setting page must be enabled.
- The error is now shown if a field does not exist in the selection when filtering data records via API
- Added ability to customize the storage time of records that were deleted by scheduled job
- Added an icon in the top menu bar so that the user can leave a feedback about our product
- Fixed bug with plate view of File and Product entities
- Fixed bug with dropdown option on detail page of some entities
- Fixed bug in Quick Create
- Fixed bug in Global Search
1.10.12
From: 2024-05-10
- Fixed bug video player was not work
1.10.10
From: 2024-05-09
- Added action to launch multiple action in a sequence
1.10.9
From: 2024-05-03
- All Files became private
- Upgraded Sharing function for sharing public links
- Added field "Download URL (shared)" for Files in Export Feed configurator for exporting public download links
- Upgraded mass action split functionality
- Notification bubble 'II' is now shown on the queue manager icon when it is on pause
- Fixed bug with language filter
1.10.8
From: 2024-05-02
- Added ability to display attributes of type Link and Link Multiple as static list (available with the module Advanced Data Types installed)
- Fixed bug with creating products from file page
- Fixed minor bug in list small
1.10.6
From: 2024-04-25
- Added Lists to admin panel
- Added ability to unlink all files from storage. Physical files are still stored
- Added ability to set NULL value for attributes and fields of type boolean
- Refactored mechanism for reuploading files
- Fixed bug with hierarchy tree displaying
- Fixed bug with displaying counter in case of updating (deleting) large amount of records
- Fixed minor visual bug for mobile
- Fixed minor visual bug with attributes
- Fixed minor bug with multilingual fields of list options
- Fixed minor visual bug with attribute tabs
1.10.4
From: 2024-04-23
- Fixed minor bug in navigation menu in mobile
- Fixed bug in navigation menu buttons
- Fixed bug with empty value for fields of type string
- Added display for link fields as a static list
1.10.3
From: 2024-04-17
- Added ability to save custom filters for dashboards
- Any language can be selected for the Language fields
- For fields and attributes of the string type added "Disable Null Value" checkbox. If the value of an attribute (field) is not specified, it is considered as Null and is displayed in the view mode with the placeholder "Null". To set an empty value for an attribute or field from UI, user needs to write a space in the field (in edit mode placeholder Null changes to None). If an empty value is set for an attribute (field) of type string, nothing is displayed in the view mode. In the view mode space is displayed as ⎵.
- Fixed bug with closing list option panel
- Fixed bug with editing record in edit mode
1.10.1
From: 2024-04-16
- Fixed minor bug with pannels
1.10.0
From: 2024-03-19
ATTENTION! Major changes! Backward compatibility is not respected!
- Deep refactoring of the mechanisms for working with files was carried out. Entities Asset, Attachment, AssetType, AssetCategory, Library have been removed. These API endpoint were removed too. Entities File, FileType, Folder, Storage have been added instead. Data was migrated into new entities. Also relationship entities such as ProductAsset has been changed to ProductFile (CategoryAsset -> CategoryFile, etc).
- AtroCore provided the opportunity to use several Storages. Such as a local file system, Microsoft Share Point, Google drive and so on.
- Implemented File First concept.
- Added ability to scan(index) storages on the server for the system to display them in the interfaces
php index.php storages --scan
or php index.php storage <STORAGE ID> --scan
.
- Added ability to upload a file via URL.
- Added default file types.
- Changed file presentation. It has become more informative.
- Added ability to reupload file.
- Implemented unified upload modal form.
- Xattr is recommended for installation.
1.9.22
From: 2024-04-25
- Fixed bug with hierarchy tree displaying
1.9.21
From: 2024-04-24
- Fixed bug in navigation menu buttons
1.9.20
From: 2024-04-18
- Fixed bug with closing list option panel
- Fixed bug with editing record in edit mode
1.9.19
From: 2024-04-17
1.9.18
From: 2024-04-16
- Fixed minor bug with pannels
1.9.17
From: 2024-04-09
- Mass update (delete) job is now split into several sub-jobs of 2000 records each if the number of records to be updated exceeds 400
- Simplified the layout configuration for related panels: added the icon to close each panel from record page (the panel will be closed only for current user), in the layouts manager added the ability to define, whether the panel is shown per default or not by the checkbox "hidden per default".
- Default value of the field is now set when you click on it in case if it is empty
- Fixed bug with filter
1.9.15
From: 2024-04-05
- Fixed minor bug with login options
- Fixed minor bug with scripts
1.9.14
From: 2024-04-05
- The response time for hierarchical entities has been decreased due to the fact that the tree in the left pane is not loaded every time you switch between records if it is hidden
- Fixed minor bug in "followed" filter
1.9.13
From: 2024-04-03
- Improvements for multilingual label translations
- Improved language filters in entities
- Added "+" button for convenient creation of records in the fields of type link and linkMultiple
- Fixed minor bug in stream
1.9.12
From: 2024-04-02
- Added new preconfigured entity "Order Confirmation"
- Added new preconfigured entity "Prospect"
1.9.11
From: 2024-04-01
- Fixed bug with displaying deleted records in the linked entities
- Fixed minor bug
- Fixed bug with sorting category trees by drag & drop
1.9.10
From: 2024-03-25
- Added extensibleEnum type to dynamic logic
- Added record comparison between different instances. The functionality is available with the Connector module.
- Fixed bug with adding Currency when installing the environment
- Fixed bug with category hierarchy
1.9.9
From: 2024-03-19
- Fixed minor bug with opening attachments in the stream
- The cron job will not be performed if the schedulled job is deleted or deactivated
- Integrated translations to Polish
- Added numeration to Accounts
1.9.8
From: 2024-03-18
- Increased the performance of the hierarchical entity list output by removing fields "isRoot" and "hasChildren" from the response to record collection request. Now these fields are calculated only when requested
- Fixed bug with importing attributes of type list to Attribute Value entity
1.9.7
From: 2024-03-15
- Fix bug in migration mechanism
1.9.6
From: 2024-03-13
- Fixed a bug in asset import
- Fixed bug with Unique List Options checkbox for Lists
- Added ability to copy Sales as Invoice, Credit Note, Delivery and Sale Return
1.9.5
From: 2024-03-12
- Fixed bug error 500 on Asset update
1.9.4
From: 2024-03-07
- Added ability to set permissions for ProductHierarchy
- Fixed minor bug in category selection
- Fixed minor bug in access for roles
1.9.3
From: 2024-03-05
- Added validation for unlinking the list option from the list
- Fixed bug with default value field in layouts
- Fixed bug with list option code
- Fixed bug with actions menu
1.9.1
From: 2024-02-27
API changes:
Relationship between ExtensibleEnumOption and ExtensibleEnum has been changed from many-to-one to many-to-many. As a result, the following parameter changes for ExtensibleEnumOption entity took place:
"extensibleEnumsId" was changed to "extensibleEnumsIds": { "type": "array" }
"extensibleEnumsName" was changed to "extensibleEnumsNames": { "type": "object" }
General changes:
- List option code is unique now if it is define
- The DAM module is now included into Core
- Fixed bug with classifications
- Fixed bug with creating list option from the entity.
1.8.41
From: 2024-02-27
- Fixed minor bug when default price is taken from the Recurring Price the Currency is not filled too
1.8.40
From: 2024-02-26
- Fixed minor bug when field label is not renamed
1.8.39
From: 2024-02-21
- The Action to export selected records is now provided out of the box
- Added ability to set unit as default from the Measure entity. After the action is applied, the selected unit will become the default for all fields and attributes that use this measure
- Added relation many-to-many between Classification Attribute and List Option entities. This allows to choose options for an attribute that can only be used in a particular classification
1.8.38
From: 2024-02-20
- Added ability to set default value for currency at once for all fields and attributes
- Fixed bug with Unique checkbox for fields (duplicated records are not deleted now)
- Added ability to configure dynamic logic for attribute tabs
1.8.36
From: 2024-02-15
- Added minor improvements in module Inventory
1.8.35
From: 2024-02-15
- Fixed minor bug in parent display
1.8.34
From: 2024-02-14
- Fixed minor bug in name display whe creating multilingual list option
- Added new data type Measure
- Added simple text field for connection parameters
- Fixed bug in layout pannel
1.8.33
From: 2024-02-09
- Dynamic Logic is now configured in a separate entity "UI Handlers". Actions of the types Required, Visible and Read-only can be applied to multiple fields at once, as well as to panels
- Fixed bug with uploading assets
1.8.31
From: 2024-02-08
- Fixed minor bug with automatic update
1.8.30
From: 2024-02-06
- Added ability to activate/deactivate records
- Added checkbox "Dropdown" to Extensible Enum and Multi-enum
1.8.27
From: 2024-02-06
- Fixed bug with currency displaying
1.8.25
From: 2024-02-02
- Added date change for assets update change date on products
1.8.24
From: 2024-02-01
- Fixed a bug with empty attribue export
1.8.22
From: 2024-01-31
- Fixed minor bug with classifications display
- Fixed minor bug with entities display
1.8.20
From: 2024-01-30
- Fixed minor bug with importing user entity records
1.8.17
From: 2024-01-29
- Fixed bug with default value of list type field
1.8.16
From: 2024-01-26
- Fixed Naming/Calculation for Sales
- Added new connection type Atrocore
1.8.15
From: 2024-01-19
- Static lists are nor exist now. For dynamic lists it is possible to create system lists and list options
- Currency now is a system measure. It appears automatically after system update (four currencies are available by default).
- Added active checkbox for units
- It is possible to add Authorization token from UI
- Updated duplicate action: Entity fields and one-to-many relationships are cloned automatically. For links many-to-one and many-to-many it is possible to choose which relations should be cloned in the entity settings
1.8.12
From: 2024-01-16
- Updated action type export
- Added validation for deleting measure, units, list, list options
- Fixed bug with logs not shown
- Fixed bug with locale saving
- Fixed bug with classifications
1.8.10
From: 2024-01-15
- Added further support to adresses
- Fixed minor bug with showing currency
1.8.8
From: 2024-01-10
- The Action now is a separate entity in the Core
- Fixed bugs with product tree
- Fixed bug in user activity stream
- Set Name for adress as optional per default
1.8.7
From: 2024-01-08
- Converted Currency Data type to float with measure units
- Fixed bug with default unit in import feed configurator
- Added improvements for ERP
1.8.5
From: 2024-01-03
- Added inheritance for entity of type Relation
- Added possibility to disable hierarchy of entity
- Fixed bug with classifications
1.8.4
From: 2023-12-30
- CRITICAL bug has been fixed
1.8.2
From: 2023-12-19
- Relationship type of entity was removed, existing relationship entities became Relation
- Fixed bug with dashboard
- Fixed bug with price profile editing
- Added checkbox "Apply only of required" for default values of fields
1.8.1
From: 2023-12-19
- Created system jobs for deleting old import and export jobs, logs, attachments, etc.
1.8.0
From: 2023-12-15
- Portals functionality has been removed
1.7.37
From: 2023-12-14
- Added ability to pause queue manager to be able to delete records until they start running
- Fixed bug with filter Deleted
1.7.34
From: 2023-12-14
- CRITICAL bug has been fixed
1.7.33
From: 2023-12-12
- Fixed bug with autosuggestions for relations
1.7.32
From: 2023-12-12
- Fixed bug with no recently added list options shown
- Added twig function to convert Asset Images to Base64
1.7.31
From: 2023-12-11
- Added ability for Queue Manager to proceed more than 1 item per second
1.7.24
From: 2023-12-05
- Fixed bug with creating queue items with same sorting
- Added ability to add field name in scope for fields that has same labels in Layout Manager
- Added ChatGPT action
1.7.22
From: 2023-12-01
- Fixed bug with adding roles to user
- Fixed bug with tooltips
- Improved import performance
1.7.21
From: 2023-11-29
- Fixed bug with roles
- Fixed bug with tooltips
- Made filter and search case-insensitiv (relevant for PostrgeSQL)
- Fixed bug with marking for no relation option in import feed
1.7.20
From: 2023-11-29
- Fixed bug with adding a team or role for a user
- Added ability to set button like "set main Category" for main Category
- Fixed bug with completeness
- Added optimization to import
1.7.18
From: 2023-11-28
- Fixed bug with deleting a product
1.7.17
From: 2023-11-28
- Fixed bug 500 in product creating
1.7.16
From: 2023-11-28
- Fixed bug in filter fields
1.7.15
From: 2023-11-27
1.7.14
From: 2023-11-23
- Major change! All manyToMany relations now has there own entities as Entity Type Relations. It is helps to do export or import
1.7.13
From: 2023-11-24
- Fixed bug in Cron Manager
1.7.7
From: 2023-11-14
- Increased import performance
- Removed unnecessary queries in Core
1.7.6
From: 2023-11-10
- Fixed bug with product tree
1.7.5
From: 2023-11-08
- Fixed bug with product attriute value pannel
- Added support for database export
1.7.4
From: 2023-11-08
1.7.2
From: 2023-11-06
- Fixed bug with option Delete Forever
- Fixed minor bug in Layouts
- Fixed bug in Connections
1.7.0
From: 2023-10-23
- Added PostgreSQL support
- Added mass update action to Queue Manager
- Added ability to choose measure units for attributes of type string
1.6.59
From: 2023-10-27
- Fixed bug with merging export feeds
- Added support for oauth 1.0a connection
1.6.58
From: 2023-10-25
- Added multilingualism for fields and attributes of type script
1.6.57
From: 2023-10-23
- Fixed bug with bad server response when deleting category
- Added synchronization for OTTO Marketplace API
1.6.56
From: 2023-10-16
- Added ability to set variables in the filter
- Fixed bug with dashboard page
1.6.55
From: 2023-10-12
- Added ability to restore deleted records
- Fixed bug with filter
- Added counter for related panels
1.6.53
From: 2023-10-09
- Fixed bug with translation of required fields
- Fixed bug with creating a new entity field
- Removed the option to automatically change the username when changing the e-mail address
- Fixed bud with scheduled jobs editing
- Changed ordering of options for fields and attributes of type list
1.6.52
From: 2023-10-06
- Fixed bug with Dynamic Logic panel
- Fixed bug with saving attachments in Discussions
1.6.51
From: 2023-10-03
- Refactored import of PAV from Product entity
- Fixed bug in mass translation option
1.6.49
From: 2023-09-29
- Fixed bug with product asset inheritance
1.6.47
From: 2023-09-20
- Added inheritance for relationship entities
1.6.45
From: 2023-09-13
1.6.44
From: 2023-09-13
- Created "Execute now" in scheduled jobs
- Fixed bug in the change history for list-type attributes
- Set mainLanguage as only reguired language
- Fixed bug with no notification about change on product page
1.6.39
From: 2023-09-12
- Bug with deleting attributes has been fixed
1.6.37
From: 2023-09-05
- Refactored old code
- Added new priorities to connector
- Fixed bug with attribute editing
1.6.35
From: 2023-08-31
1.6.34
From: 2023-08-29
- Added purchase info to Module Manager
1.6.33
From: 2023-08-28
- Fixed bug with list label
- Fixed bug with name while creating
1.6.30
From: 2023-08-21
- Fixed bug with Import/Export feed duplication
- Fixed bug with notifications
- Fixed bug with fields creating
- Fixed bug with tooltips
- Add ability to set thousand separator empty
1.6.26
From: 2023-08-17
1.6.25
From: 2023-08-17
- Fixed a bug when notifications for classification attributes reffered to attributes as "NULL"
1.6.22
From: 2023-08-08
- Added ability to enable index (db index) for field
- Added ability to download file for favicon in JPG, PNG or SVG format
1.6.19
From: 2023-08-01
- Refactored relationship entities
- Fixed bug with exporting to ZIP archive
1.6.18
From: 2023-07-28
- Added ability to add config variables
- Moved Create Button in list small on top
- Updated asset selection functionality
1.6.17
From: 2023-07-25
- Unified twig functionality
- Added enable/disable options for text fields
1.6.14
From: 2023-07-13
- Fixed minor bug in stream displaying