Table of Contents

Media-iBox v6.0 - Changelog

6.0.109 - 2026/08/26

MEDIAIBOX-12253 [backend] Block-load related-list reads in the BFF so they never truncate at the MibApi page-size cap
MEDIAIBOX-12234 [Backend] User List page now lets a Sub-Administrator see their own account: the IS_AUTH_ADMIN visibility filter keeps hiding other administrator users from non-administrator viewers but adds an exception for the logged-in user's own record (Group List unaffected)
MEDIAIBOX-12232 [Backend] Push link-object related-child reads down to a paged SQL query (LINKOBJECTS UNION + distinct COUNT, LINKOBJECTS.ID ascending) instead of loading the whole bidirectional graph in memory — follow-up to MEDIAIBOX-12157
MEDIAIBOX-12231 [Backend] Compile a relationship/FK key-equality filter (FIELD[key]=id) to a sargable predicate instead of a non-sargable correlated COUNT(...)>0 subquery — follow-up to MEDIAIBOX-12157
MEDIAIBOX-12157 [BACKEND][GVPPLATF-140592] asyncRelatedList / related-child-route read and save paths still O(N) on group size despite MEDIAIBOX-11907

6.0.107.5 - 2026/08/13

MEDIAIBOX-12251 [GVPPLATF-149954][MIB] List Pages: after saving a relation the block only shows 250 items

6.0.107.4 - 2026/08/13

MEDIAIBOX-12242 [Backend][GVPPLATF-149733] Auth: restore the configurable refresh-token reuse leeway (refreshTokenReuseLeeway, default 30s) so concurrent refresh from one client is no longer treated as a replay attack and does not revoke the authorization
MEDIAIBOX-12243 [Backend][GVPPLATF-149733] CMS FrontEnd: single-flight token refresh (configurable tokenRefreshWindow, default 2 min) plus auth-error recovery — preserve the logout cookie on AJAX errors, return 401 instead of Forbid, configure AccessDeniedPath, stop the /Error redirect loop, and degrade /api/v1/dictionary to the default language on a revoked token

6.0.107.3 - 2026/08/10

MEDIAIBOX-12238 [GVPPLATF-149733] MIB3: "Error getting translations. Please, reload the page" persists until browser cookies are cleared

6.0.107.2 - 2026/08/10

Due to TC migration and build process error, this version should be ignored.

6.0.107.1 - 2026/08/07

MEDIAIBOX-12238 [GVPPLATF-149733] MIB3: "Error getting translations. Please, reload the page" persists until browser cookies are cleared

6.0.108 - 2026/08/05

MEDIAIBOX-11902 [Backend] Fix concurrency tracking on the EPG component — when the EPG component has no explicit MEDIATYPE config, the concurrency link now falls back to the EPG_SCHEDULE media type (mirroring the EPG grid) instead of silently dropping the link, so viewers/editors show up on the EPG page. Fail-soft when EPG_SCHEDULE is not provisioned (link is skipped, no HTTP 500). Inline edit on list pages was reviewed and already works as specified — no change required.
MEDIAIBOX-12191 [Backend] Restore the clear button (×) on the Source field when editing a cell inline in EditableList and Simple Related List — the list inline-edit props now emit allowClear, matching the Form behavior fixed in MEDIAIBOX-12146
MEDIAIBOX-12047 [Backend] RenderV2 performance analysis (Legacy vs React) and backend improvements — concurrency health probe always returns 200 with the state in the body, per-request de-duplication of related/enum lookups, media-type meta and user-preferences memoization, and a thread-safe per-request cache
MEDIAIBOX-12045 [Backend] Edit History / Microservices resilience review — timeout and retry for the Permission client, friendly errors for the Edit History drawer on misconfiguration/timeout, and CancellationToken propagation across the Permission and Edit History clients
MEDIAIBOX-10455 [Backend] List cell - Link - The value has disappeared
MEDIAIBOX-12200 [Backend] Concurrency microservice authenticates through api/v1/me so it works regardless of the Authorization Server's anonymous /User/Me configuration, and no longer sends the access token in a query string
MEDIAIBOX-12202 [Backend] Concurrency viewers now lists exactly the operators the microservice reports (no longer accumulates every user ever resolved), the permission verdict is cached per media type and positive-only (a transient permission failure no longer disables an operator until the BFF restarts), and the viewers action is serialised as camelCase (viewing/editing) so the editing state renders
MEDIAIBOX-12205 [Backend] Legacy views: fixed a NullReferenceException that broke every list page whose media type has a Source field (the source tree can legitimately be null after the async Source TreeView change), and fixed the REDIRECT_TO_EDIT_PAGE_BY_FIELD redirect button being invisible on legacy Related fields (malformed CSS class)
MEDIAIBOX-12059 [back] Add Range field type and props (range)
MEDIAIBOX-12058 [Backend] Add Money field type (AdmFieldType.Money = decimal) — money variant with currency/precision/maxDigits/stringMode props, decimal-preserving persist, and culture-invariant numeric parsing
MEDIAIBOX-12199 [Backend] REDIRECT_TO_EDIT_PAGE_BY_FIELD[Field] now works on the React Form — the BFF emits a props.link descriptor ({ pageKey, id } for Integer, { pageKey } for Related; discriminated by admField type, so Image does not emit) and the React Form builds the route /${pageKey}/${id}. In React the config value is the bare page key (no ~app/.../{ID} template). The config was harmonized to Dictionary<string,string> (matching the list components) and the legacy .cshtml redirect was kept working for relative values
MEDIAIBOX-11989 [MEDIAIBOX-11989][GVPPLATF-118988][MIB] - Edit History - Subscriptions Page: It doesn't show changes in criteria block
MEDIAIBOX-12223 [Backend] Fix the SOURCE column rendering empty on every row after a List refresh (filter, sort or paginate) for any media type with a Source field — the cell now resolves its label instead of returning {"label":"","value":"<id>"}. Root cause: MediaTypeInformation.CopyWithFieldsListDeepCopied() was resetting the RelatedsList (id→label map) of Source fields to an empty dictionary; the string-based meta path used on refresh (MetaWorkflow.GetMediaTypeMeta(string)) applied an extra copy that re-zeroed it, so the label was lost. The initial SSR render used the content-based overload and was unaffected — which is why only the refresh/paginate/sort path showed the blank column. Fixed with a uniform null-safe deep-copy of RelatedsList for all field types. No cross-user leak: the shared cache holds Source with an empty map (populated per-user post-copy), and the second call site is per-user/request-scoped. Same root cause as MEDIAIBOX-12216 (drawer surface)
MEDIAIBOX-12212 [Backend] IS_CHILD_REQUIRED on a Simple Related List is now enforced server-side — a save/update whose resulting related list is empty is rejected by the BFF (PostbackStatus.ValidationException, {DICT:RELATED/CHILDREQUIRED} message) instead of being accepted with 200 OK. Previously the rule was only validated client-side and could be bypassed (and in the React flow was not enforced at all). Applies to non-bulk saves (BulkMode == None); async saves that keep existing related items are correctly allowed (the empty check reads the retained items ids). IS_CHILD_REQUIRED=false/absent and bulk operations are unaffected
MEDIAIBOX-12216 [Backend] Fixed the Source column rendering blank (and the ASIDE_FILTERS[RELATED] Source filter appearing not to apply) on the Related field drawer of React forms — a regression from MEDIAIBOX-12047 where the metadata deep copy blanked the RelatedsList of Source fields after it had already been populated per-user. The copy now deep-copies RelatedsList for all fields instead of clearing Source, so the Source display value resolves again. Cross-user isolation is preserved (the shared media-type cache holds an empty Source list; population stays per-request and per-user), and each field now gets its own dictionary instance
MEDIAIBOX-12213 [Backend] REDIRECT_TO_EDIT_PAGE_BY_FIELD[<column>] now works on Simple/Ordered Related List columns (not only the ID column) — the BFF materialises the configured cell as a link render type on the row data, so it no longer navigates to /app/undefined/{id}. The link is built for any field type with content, and its id is the row record id (item.Id, consistent with the ID column), so clicking any configured cell opens that row's record — not the cell's own value. A field with blank content produces no link (the cell stays empty). Complements the Form fix in MEDIAIBOX-12199 (list link lives in the row data, not in the column schema)

6.0.107 - 2026/07/17

MEDIAIBOX-12166 [MEDIAIBOX-12166][GVPPLATF-148651] MIB Groups - When adding any user in the Users block, an error is displayed, but it is possible to save successfully
MEDIAIBOX-12167 [Backend] MIB Groups - Aside now pre-selects users already belonging to the group
MEDIAIBOX-12078 [Backend] Document the ContentCriteria feature usage — create/populate a Content Criteria (criteria, filters, ordering) and manage Content Selection highlights programmatically through the MIB API
MEDIAIBOX-12161 [Backend] DmmComponent — fix InvalidOperationException when the operator lacks the DMM_JOBS / DMM_IMPORTER_SCHEDULER grants (render read-only instead of failing); document the DMM component write-permission gating
MEDIAIBOX-12044 [Backend] Allow configurate a limit for Content Criteria Highlight list
MEDIAIBOX-12165 [MEDIAIBOX-12165] [GVPPLATF-148619] Non-admin users get HTTP 500 opening their own profile (Manage account)
MEDIAIBOX-11982 [Backend] Expose the form "New" button visibility in the V2 payload via schema.configuration.addNew (mirrors the page create permission; covers media-type and Authorization edit pages) — plus: RenderV2 breadcrumb now honors a previousPageKey carrying a trailing item id (e.g. samples-edition-page/12), stripping the item id so the breadcrumb resolves to the media type list and the new-item form gets a working back-trail
MEDIAIBOX-12176 [GVPPLATF-141299][backend]Errors in MIB logs - System.NullReferenceException

6.0.106 - 2026/07/14

MEDIAIBOX-12158 Fix in image pagination for EPG
MEDIAIBOX-12154 DMM component: "Last execution" date shows 01/01/1901 for completed steps and finished jobs
MEDIAIBOX-12150 [GVPPLATF-147784][backend] Concurrency V2 now skips any component without a MediaType silently and uniformly — a missing MediaType no longer produces error logs for any block, replacing the earlier core/custom discrimination
MEDIAIBOX-12159 [Backend] Fix Request ID error when saving a form after clearing a related tree-select (Source) field
MEDIAIBOX-12170 [Backend] EPG /epg/data uses containment instead of overlap, dropping programs that cross boundaries
MEDIAIBOX-12172 [Backend] EPG grid: select only landscape content thumbnails

6.0.105 - 2026/07/09

MEDIAIBOX-12057 [back] Add Slider field props (min/max/step/marks)
MEDIAIBOX-12145 [GVPPLATF-148440][backend] Request-logging middleware swallows every authenticated request (bare HTTP 200, empty body) when Serilog level is Warning/Error/Fatal — MibLoggingOperationCompleteMiddleware never calls _next
MEDIAIBOX-12139 [backend] MibTokenStore.RevokeByAuthorizationIdAsync throws NotImplementedException — OpenIddict token-chain revocation (anti-replay) silently disabled
MEDIAIBOX-12150 [GVPPLATF-147784][backend] Several pages: absence of a MediaType on custom components no longer logs errors — Concurrency V2 skips custom components without a MediaType silently while core components still surface the misconfiguration
MEDIAIBOX-11265 [GVPPLATF-135541][backend] Related field with the Add New (upload) action showed the ID instead of the name until the page was reloaded — the upload response now returns _title and value (mirroring the related field's KeyValueViewData shape) with a fallback to the item NAME, so the related field renders the readable name immediately after creating the item
MEDIAIBOX-12143 [Backend] EPG grid content thumbnails only resolve for some contents
MEDIAIBOX-12146 [GVPPLATF-148500][backend] Selected value in Source (async-tree-select) fields can no longer be cleared — regression from MEDIAIBOX-7310; the BFF now emits allowClear: true in the Source field props so the clear ("×") icon is restored

6.0.99.1 - 2026/07/08

MEDIAIBOX-11476 [GVPPLATF-138210][GVPPLATF-144312][backend] Add config on Categories Administration Page: The ID option is not displayed on the quick filter

6.0.104 - 2026/07/03

MEDIAIBOX-11967 [backend] Content Sources: admin has no Save/Delete on newly created sources — configurablepermissions ETag hashed empty content, freezing the Permission snapshot; hash the response content so the ETag reflects changes, and invalidate the findall query cache on save
MEDIAIBOX-12136 [Backend] AUTH_GRANTS: sargable reference-token lookup (persisted computed column + index) and working grant cleanup (prune-on-startup, authorization pruning, honored batch size); document config trade-offs for table growth
MEDIAIBOX-12031 [Backend] Enrich EPG schema columns for list view
MEDIAIBOX-12051 [Backend] EPG grid — content thumbnails: resolve via reverse FK query and serve presigned URL
MEDIAIBOX-12052 [Backend] EPG channels — endpoint ignores componentKey, falls back to default EPG_CHANNEL model
MEDIAIBOX-12129 DmmComponent.GetDmmJobId throws ArgumentException (500) when the Job Id column is empty or not a GUID
MEDIAIBOX-12138 [backend] MibServer3 JWT auth crashes under concurrency — shared TokenValidationParameters.PropertyBag corrupted (InvalidOperationException) + cross-request context leak; move per-request TraceIdentifier/RequestAborted to IHttpContextAccessor and remove the shared PropertyBag mutation
MEDIAIBOX-12140 [backend] Source field requests /api/v2/global/sources as a relative URL, decoupled from rootUrl (fixes the Source input calling the wrong host when rootUrl is misconfigured; regression from MEDIAIBOX-7310)

6.0.103 - 2026/07/01

MEDIAIBOX-12132 [backend] OpenIddict: GET /user/me returns 400 (NotImplementedException in MibApplicationStore.FindByIdAsync) — blocks all CMS logins
MEDIAIBOX-12134 [backend] OIDC login loop when login UI and auth endpoints are on different sub-domains — share session cookie via cookieDomain config

6.0.102 - 2026/06/30

MEDIAIBOX-12042 [Web Host] Restart Agent case exceeded memory or CPU consumption
MEDIAIBOX-11957 [Backend] Implement card props for content field on event edition page
MEDIAIBOX-12007 [GVPPLATF-147261] [backend] unhandled NotSupportedException (MibTranslationStream.Seek) breaks MIB UI
MEDIAIBOX-11551 [Backend] Implement form-wide dynamic behaviors
MEDIAIBOX-12040 [backend] Add verbose diagnostics across the MibServer3 page-render path (DisplayWorkflow + related-filters/BatchGet META)
MEDIAIBOX-12046 [backend] Guard against NullReferenceException in BatchRepositoryBase.BatchGet when a media-type permission is missing
MEDIAIBOX-12036 [Backend] Filter panel is missing
MEDIAIBOX-11943 [GVPPLATF-145826]MIB - Movie Criteria Block - Attempting to save more than 300 movies, it saves successfully but doesn't save all of them
MEDIAIBOX-11743 [GVPPLATF-142232]MIB React - MIB Users: Unable to delete users from the list page
MEDIAIBOX-11999 Migrate Authorization Server from IdentityServer4 (EOL) to OpenIddict
MEDIAIBOX-11994 [GVPPLATF-146979] [backend] Relationship problem found in some of the select existing asides.
MEDIAIBOX-12027 [Backend] Wrong redirection to MibAuth/account after Login
MEDIAIBOX-12124 [back] OIDC authorize dead-ends at /home/error behind /MibAuth reverse-proxy (OpenIddict endpoint URIs not matched under PathBase)
MEDIAIBOX-7310 [GVPPLATF-105546][UX] Load input Sources TreeView asyncronously to avoid excessive DOM size
MEDIAIBOX-12026 Sync Vercel environment with Samples
MEDIAIBOX-12125 [backend] OIDC token exchange fails with invalid_grant (ID2088 issuer mismatch) behind /MibAuth reverse-proxy — pin OpenIddict issuer
MEDIAIBOX-12050 [MEDIAIBOX-12050][back] Slow fromOauthClient permission resolution — LINKOBJECTS group query not seekable (CMS pages take 5–23 s)

6.0.101 - 2026/06/15

MEDIAIBOX-12007 [GVPPLATF-147261] [backend] unhandled NotSupportedException (MibTranslationStream.Seek) breaks MIB UI

6.0.100 - 2026/06/10

MEDIAIBOX-8241 [GVPPLATF-57241] [Backend] List Pages: Sorting the values of some columns isn't working well
MEDIAIBOX-11954 [MibServer3] DMM workflow component adaptations for Enricher
MEDIAIBOX-11923 [Mib Api] Allow mib api update more than one register per time
MEDIAIBOX-11985 [back] Permission cache marks IsReady=true with incomplete snapshot, causing 1h without menus
MEDIAIBOX-11986 [back] Add missing EPG grid personalization dictionary tags
MEDIAIBOX-11874 [backend] Date Range filter is not working in the aside
MEDIAIBOX-11955 [BACKEND][GVPPLATF-138562] Re-order filters in the search of Content Criteria
MEDIAIBOX-11476 [GVPPLATF-138210][backend] Add config on Categories Administration Page: The ID option is not displayed on the quick filter
MEDIAIBOX-11949 Authorization - Saving User Profile Removes Existing 2FA Configuration
MEDIAIBOX-11773 [OPSSUP-3096] Improve LOGIN_TRY_NUMBER to detect attacks
MEDIAIBOX-11743 [GVPPLATF-142232]MIB React - MIB Users: Unable to delete users from the list page
MEDIAIBOX-11953 EPG Component - Filter should behave as Vercel does
MEDIAIBOX-11881 [Backend] [SPIKE] Analyse implementation of async Ordered Related List and "send to top/send to bottom" ordering actions

6.0.99 - 2026/05/25

MEDIAIBOX-11920 [Backend] Refactor POST related list drawer data endpoint in order to return related items
MEDIAIBOX-11733 [Backend] Channels Line Up endpoint
MEDIAIBOX-11880 [Backend] Refactor POST api/v2/epg/channels endpoint in order to consider default lineup

6.0.98 - 2026/05/21

MEDIAIBOX-11907 [BACKEND][GVPPLATF-140592] asyncRelatedList component failed for large volumes of data
MEDIAIBOX-11744 [Backend] Implement EPG edition component
MEDIAIBOX-11734 [Backend] Refactor data endpoint in order to include channels
MEDIAIBOX-11706 MIB React - MIB Groups - It is not possible to create a new group.
MEDIAIBOX-11914 [GVPPLATF-145266] [MIB] - MIB Users - The hyperlink in the ID column on the Groups tab is redirecting to the Users page
MEDIAIBOX-11562 [BACKEND] [GVPPLATF-140191] Create a AdmFieldType to render a color picker field on mib
MEDIAIBOX-11748 [Backend] EPG - Add EPG configuration support to GET /user/current and implement PATCH /user/current
MEDIAIBOX-11346 [GVPPLATF-94323] [Backend] Tooltip to fields in Related List
MEDIAIBOX-11919 [GVPPLATF140273] Columns view settings are not saved for Images list
MEDIAIBOX-11476 [GVPPLATF-138210][backend] Add config on Categories Administration Page: The ID option is not displayed on the quick filter
MEDIAIBOX-11916[GVPPLATF-145310] MIB React: advanced filter "Instance" hard-capped at 10 characters across list pages
MEDIAIBOX-8200 [GVPPLATF-143991] Dependency Provider

6.0.97 - 2026/05/07

MEDIAIBOX-11901 [Backend] Fix channel related field fetching on data endpoint
MEDIAIBOX-11771[GVPPLATF-142156]MIB React - MIB Users - It is possible to create a user without a timezone, but it is not possible to edit it
MEDIAIBOX-11883 [Backend] Allow inserting values as strings for EnumValues
MEDIAIBOX-11682 [GVPPLATF-143981][GVPPLATF-140749][GVPPLATF-139668]Backend][Performance]MIB React - MIB Users - Page takes a long time to load and save the data
MEDIAIBOX-11667 [GVPPLATF-140661] OutOfMemoryException when downloading files from File Management
MEDIAIBOX-11632 [Backend] Forms - Allow to update tabs order and visibility
MEDIAIBOX-11916 [GVPPLATF-145310] MIB React: advanced filter "Instance" hard-capped at 10 characters across list pages

6.0.96 - 2026/04/24

MEDIAIBOX-11763 [Backend] Implement agnostic MFA TOTP support in MibAuth Server
MEDIAIBOX-11864 [GVPPLATF-143981] [MIB] MIB users with Administrator permissions do not inherit all permissions automatically
MEDIAIBOX-11845 [Backend] Search Text - Improve All Text Filter in List Component
MEDIAIBOX-11865 [GVPPLATF-143829] List pages's columns order is not kept between reloads
MEDIAIBOX-11837 [GVPPLATF-143407] Column number limit in list pages
MEDIAIBOX-11805 [OPSSUP-7384]MIB React - Saved filters do not apply when used later
MEDIAIBOX-11890 Create migrations for Content Criteria PreProcessor

6.0.95 - 2026/04/14

MEDIAIBOX-11869 [GVPPLATF-144170]MIB React - A block listing table with 'add existing' only contains the columns ID and Name
MEDIAIBOX-11834 [GVPPLATF-143550] Timeout accessing Basic group (MIB groups)

6.0.94 - 2026/04/13

MEDIAIBOX-11868 [GVPPLATF-144171] Movies/Series Error opening listPage

6.0.93 - 2026/04/09

MEDIAIBOX-10807 [Backend] Refactor epg grid component in order to support generic mediatypes
MEDIAIBOX-11851 [GVPPLATF-143736][Backend] "is empty" filter doesn't work
MEDIAIBOX-11859 [GVPPLATF-143217] Some list pages are not loading correctly

6.0.92 - 2026/04/06

MEDIAIBOX-11204 [Backend] A new all text filter must be added to List Component
MEDIAIBOX-11392 [Backend] Implement EPG component
MEDIAIBOX-11775 [backend] Failed to load API definition when accessing Swagger for MibAPI
MEDIAIBOX-11570 Content Criteria - Highlights Aside Fields not working
MEDIAIBOX-11719 [Backend] Review documentation of multi-step login feature
MEDIAIBOX-11480 [GVPPLATF-138557][react] Users device - Quick filter doesn't work for large numbers
MEDIAIBOX-11673 [GVPPLATF-140695]MIB React - Pricing Categories - The filter in the aside component is not reset when the field is cleared.
MEDIAIBOX-11664 [backend][GVPPLATF-140580][MIB REACT] Missing fields in the logs
MEDIAIBOX-11788 [PC-3116] [CONS] Editorial Menu: Menu Sections related are listing wrong items
MEDIAIBOX-11073 [Backend] Business Rule Plugin - Page Scope
MEDIAIBOX-11732 [GVPPLATF-141568][backend] MIB React - Channel Maps: The filter for strings is case sensitive on the Channel Maps TV block
MEDIAIBOX-11726 [GVPPLATF-141638]MIB React - Select type filter in aside doesn't work
MEDIAIBOX-11300 ContentCriteria - MaxGroups config is not working
MEDIAIBOX-11844 [Backend] Page Plugin - Current items are coming empty

6.0.91 - 2026/03/17

MEDIAIBOX-11703 [GVPPLATF-141274]MIB React: Movies page: ADI.xml is not downloaded
MEDIAIBOX-11392 [Backend] Implement EPG component
MEDIAIBOX-11745 [PC-3056] Remove limit of 15 items on the Contents related block

6.0.90 - 2026/03/04

MEDIAIBOX-11729 [GVPPLATF-141684] Edit permissions through mib react is creating wrong permissions
MEDIAIBOX-11679 [Backend] [PC-3036] List - Ordered List - Implement configuration redirect to edit page
MEDIAIBOX-11313 [GVPPLATF-136241][backend]MIB React - Criteria blocks - Filter order in preview tab is wrong
MEDIAIBOX-11686 [GVPPLATF-140896] MIB React - MIB Users - Validation Error not user friendly when creating user
MEDIAIBOX-11698 [Backend] [MibAuthorization] Standardize error responses in GroupsControllerV2
MEDIAIBOX-11699 [Backend] [MibAuthorization] Standardize error responses in UsersControllerV2

6.0.89 - 2026/02/25

MEDIAIBOX-11725 [GVPPLATF-141297][GVPPLATF-141572]MIB React - Select type filter doesn't work

6.0.88 - 2026/02/24

MEDIAIBOX-11684 [Backend] ImageUrlResolverPlugin: Missing page key and template component key in list component flow
MEDIAIBOX-11360 [backend] [GVPPLATF-134388] MIB React - Live Channels - Refresh button on Subscription Info block disappeared
MEDIAIBOX-11699 [Backend] [MibAuthorization] Standardize error responses in UsersControllerV2
MEDIAIBOX-11704 [GVPPLATF-141297]MIB React - Select type filter doesn't work
MEDIAIBOX-11690 [PC-2942] Dropdown is not updated with new registered records

6.0.87 - 2026/02/09

📝 Release Notes

MEDIAIBOX-11391 [Backend] Establish basic data model for EPG component and create migrations
MEDIAIBOX-11544 [Backend] Add appRoutes.account to menu service for SPA manage account redirection
MEDIAIBOX-11548 [Backend] [MibAuthorization] Enable "allow credentials" CORS policy
MEDIAIBOX-11549 [Backend] [MibAuthorization] Add default theme to auth app
MEDIAIBOX-11391 [Backend] Establish basic data model for EPG component and create migrations
MEDIAIBOX-11526 [Backend] MibAuthorization - Allow anonymous access to theme endpoint
MEDIAIBOX-11547 [Backend] [MibAuthorization] Update next step code for update password step
MEDIAIBOX-11440 [Backend] Mib API throws "Writing to the response body is invalid for responses with status code 304" errors
MEDIAIBOX-11538 [Backend] [MibServer3] Image Url Resolver Plugin
MEDIAIBOX-11620 [Backend] [MibAuthorization] Serialization - Apply camelCase to LoginStepResultHandler
MEDIAIBOX-11512 [GVPPLATF-138800] MIB React - Source filter doesn't work if list is already filtered (list page)
MEDIAIBOX-11424 [Backend] MibAuthorization - Implement POST /api/v2/auth/forgot-password
MEDIAIBOX-11567 [Backend] [MibAuthorization] Theme - Logo: Fix path being trimmed from root url
MEDIAIBOX-11655 [Backend] Listpage - Filter - Search option 'Any' not working
MEDIAIBOX-11539 [Backend] [MibServer3] Image Url Resolver Plugin - Inline Image Preview
MEDIAIBOX-11663 [Backend] [MibServer3] Distribute Nuget Package for MediaiBox.Cms.FrontEnd.Plugins
MEDIAIBOX-11424 [Backend] MibAuthorization - Implement POST /api/v2/auth/forgot-password
MEDIAIBOX-11425 [Backend] MibAuthorization - Implement POST /api/v2/auth/reset-password/validate
MEDIAIBOX-11552 [GVPPLATF-139656] Cannot delete groups on mib user page
MEDIAIBOX-11619 [Backend] [MibAuthorization] New config to enable the new Login UI
MEDIAIBOX-11395 [Backend] A new Range filter was developed by Frontend Team. But this options is not availale to backend core.
MEDIAIBOX-11566 [GVPPLATF-140219] MIB React - MIB Users - It is not possible to create a new user
MEDIAIBOX-11426 [Backend] [Backend] MibAuthorization - Implement POST /api/v2/auth/reset-password
MEDIAIBOX-11650 [GVPPLATF-140539]MIB React - MIB Users - Data inconsistency with the database.
MEDIAIBOX-11621 [Backend] [MibAuthorization] OAuth - Automatic consent approval
MEDIAIBOX-11520 [Backend] Add messageDuration to theme request
MEDIAIBOX-11676 [Backend] [MibAuthorization] Login - Fix duplicate base path in return url
MEDIAIBOX-11680 [Backend] [MibAuthorization] Login - Captcha - Fix property name

6.0.86 - 2026/01/08

MEDIAIBOX-11422 [Backend] Implement POST /api/v2/auth/update-password
MEDIAIBOX-11531 [Backend] Button Save is missing on all Form Pages (Reopen)
MEDIAIBOX-11397 [Backend] [MibServer3] Create Cron expression converter
MEDIAIBOX-11407 [Backend] Implement Reconfigurable forms configuration

6.0.85 - 2026/01/05

MEDIAIBOX-10828 [Backend] List components - Value format of Date and DateTime fields differs from the Form Component
MEDIAIBOX-10711 [Backend] Send maximum item number as limit on Ordered Related List
MEDIAIBOX-11515 [CONS] CMS-API has a query without nolock
MEDIAIBOX-11421 [Backend] Implement POST /api/v2/auth/login
MEDIAIBOX-11488 [Backend] Add custom configurations in the configuration object for react frontend
MEDIAIBOX-11510 [Backend] Implement login flow token issuer and authorization filter
MEDIAIBOX-11509 [Backend] Use camelCase serialization in V2 endpoints
MEDIAIBOX-11517 [Backend] Avoid 302 redirect in update-password endpoint
MEDIAIBOX-11522 [Backend] Button Save is missing on all Form Pages
MEDIAIBOX-11497 [Backend] Add endpoint to return theme configuration for Auth app
MEDIAIBOX-11387 [Backend] [MibServer3] Implement Cron variant

6.0.84 - 2025/12/17

MEDIAIBOX-11271 [GVPPLATF-136394]MIB REACT - Edit history does not load and keeps loading infinitely when using add new in any block
MEDIAIBOX-11513 [Backend] Charts - Fix dynamic charts not updating on the front-end

6.0.83 - 2025/12/16

MEDIAIBOX-11483 [GVPPLATF-138558]Media Files - Unable to preview Widevine medias

6.0.82 - 2025/12/15

MEDIAIBOX-11385 [MibClient2] [MibMigrator] - Create Cron Adm Field type and create support for migrations with the new field type
MEDIAIBOX-11386 [Backend] [MibServerApi] Ensure CRUD operations for new Cron adm field type
MEDIAIBOX-11253 Review and refactor payloads related to select inputs
MEDIAIBOX-11464 [GVPPLATF-138333] Unable to add more than one register with aside custom using hiddenFilters at once

6.0.81 - 2025/12/01

MEDIAIBOX-11390 [GVPPLATF-100503][Frontend] Media files: No media can be viewed
MEDIAIBOX-11191 [Backend][GVPPLATF-135599]Error in ASIDE_FILTERS when creating a new item
MEDIAIBOX-11341 [Backend] Concurrency - Get viewers endpoint
MEDIAIBOX-11220 [GVPPLATF-128348] [DMM Content Workflow] Must enable override for DMM routes
MEDIAIBOX-11237 Search/Filter - It is not possible to perform searches if there is a "," (comma) in the string

6.0.80 - 2025/11/17

MEDIAIBOX-11344 [Backend] Concurrency - Link user endpoint
MEDIAIBOX-11320 [Backend] When Quick Edit is set, the edit continues and is not possible to remove in the List Component
MEDIAIBOX-11319 [Backend] Is not possible to remove column ID from List Component
MEDIAIBOX-11365 [Backend]Make the serverType parameter mandatory in the manifest call
MEDIAIBOX-11315 [GVPPLATF-136398]The back button to edit pages is displayed only when the breadcrumb length is greater than 1
MEDIAIBOX-10956 [Backend] [MibServer3] Charts - Dynamic mode - Label discovery for Enums
MEDIAIBOX-10957 [Backend] [MibServer3] Charts - Dynamic mode - Label mapping for Booleans
MEDIAIBOX-10762 [Backend] Refactor edition history mediatype endpoint in order to identify main mediatype
MEDIAIBOX-10563 Special characters - Selector - Displaying html code instead of character
MEDIAIBOX-7271 [GVPPLATF-102557][MIB Auth] Make confgurable token expiration time for MIB3 requests
MEDIAIBOX-11343 [Backend] Concurrency - Refresh Link endpoint
PC-2778 Edit/Create screen redirected to 404 with mib version from 6.0.70
MEDIAIBOX-11345 [Backend] Concurrency - Health check endpoint
MEDIAIBOX-11350 [GVPPLATF-136820] MIB REACT - Metadata Validation Area/Games - Edit Page name incorrect
MEDIAIBOX-11367 [backEnd][GVPPLATF-137228]- Categories - It is not possible to create a new category
MEDIAIBOX-11342 [Backend] Concurrency - Unlink user endpoint
MEDIAIBOX-11003 [Backend][GVPPLATF-132457] regex error shouldn't show the pattern
MEDIAIBOX-11369 [Backend] [MibServer3] Implement sorting for the Related Drawer
MEDIAIBOX-11398 [GVPPLATF-132700] [Backend] Allow to get CriteriaClause from hiddenFilters object
MEDIAIBOX-11272 [GVPPLATF-136393]MIB REACT - Edit history is not sorting by edit date

6.0.79 - 2025/11/04

MEDIAIBOX-11062 Simple Related List - Error when add new / add existent
MEDIAIBOX-11068 Form - Bulk Edit - Error when save
MEDIAIBOX-11069 Form - Fields appear as empty if the Keywords field is not filled
MEDIAIBOX-11248 List - List page appear as blank if the any Keywords field are shown
MEDIAIBOX-11250 Form - If I try to remove Keywords, a new blank item appear in the field

6.0.78 - 2025/10/29

MEDIAIBOX-11354 [GVPPLATF-132700] [Backend] Fix default value for CriteriaClause when use hiddenFilters

6.0.77 - 2025/10/28

MEDIAIBOX-11331 [Backend] Async Relared List - Reapply inline modifications
MEDIAIBOX-10927 [Backend][MibServer3] Card - Dynamic & Highlighted modes
MEDIAIBOX-10952 [MibServer3] Pie Chart - Dynamic mode - Get Page Data
MEDIAIBOX-10955 [MibServer3] Bar Chart - Dynamic mode - Get Page Data
MEDIAIBOX-11337 [GVPPLATF-132700] [Backend] hiddenFilters not working properly
MEDIAIBOX-11175 [GVPPLATF-135000][Backend][MIB React] Content Criteria - Content values: content type int accepting string values
MEDIAIBOX-11108 [Backend React] [GVPPLATF-134388] Refresh Button - Only Works to component with an editable lists
MEDIAIBOX-11309 [GVPPLATF-136246][MIB React][MIB Legacy] Criteria - Search preview: Always returns highlights regardless of search
MEDIAIBOX-11325 Refactor related list refresh endpoint for custom components
MEDIAIBOX-10948 [MibServer3] Pie Chart - Highlighted mode - Get Page Data

6.0.76 - 2025/10/23

MEDIAIBOX-11262 [GVPPLATF-136325] [backend] MIB React - Media Files: Unable to preview DRM protected media (Fix for the issue that occurred with the first released version)

6.0.75 - 2025/10/22

MEDIAIBOX-11175 [GVPPLATF-135000][Backend][MIB React] Content Criteria - Content values: content type int accepting string values
MEDIAIBOX-11264 Update Mib projects: System.Text.Json version to 9.0.9
MEDIAIBOX-11262 [GVPPLATF-136325] [backend] MIB React - Media Files: Unable to preview DRM protected media
MEDIAIBOX-11263 [GVPPLATF-136328][MIB React] Search - Filters: Missing "Save Filters" and "Clear All" buttons in search
MEDIAIBOX-11311 [GVPPLATF-135457][MIB React] Content Criteria: Preview does not highlight records coming from Highlights (in Legacy they are shown in blue)
MEDIAIBOX-11190 [GVPPLATF-135634] ID column is not displayed on Aside when use ASIDE_FIELDS on config
MEDIAIBOX-11326 [Backend] Update dictionary with new translations
MEDIAIBOX-11120 [Backend] [GVPPLATF-134476] Pages: Edit page does not have a button to return to the list page
MEDIAIBOX-11308 [MIB React] Criteria: Content names containing commas are truncated after the first comma
MEDIAIBOX-11209 [GVPPLATF-134573][Backend] RelatedList search does not change field value or remove row for new records with filter applied
MEDIAIBOX-11163 [Backend] Allow receive hiddenFilters

6.0.74 - 2025/10/15

MEDIAIBOX-11247 [Backend] Handle etag validation failure with status code 412
MEDIAIBOX-10804 [Backend] "Content Criteria Filters" with cache on Content Criteria page
MEDIAIBOX-11251 [MIB React] Live Schedule Criteria: Records created in React cannot be saved in Legacy
MEDIAIBOX-10915 [Backend][GVPPLATF-133754,GVPPLATF-134317] The "ID" field is always appearing even if it is not in the INCLUDEFIELDS list or is in EXCLUDEFIELDS
MEDIAIBOX-11231 [Backend][GVPPLATF-135859] Copy with related not working
MEDIAIBOX-11213 [backEnd][GVPPLATF-135762]Criteria: Preview does not provide an option to open content editing in another page
MEDIAIBOX-11135 [Backend][GVPPLATF-135080] Edit history is returning permission error
MEDIAIBOX-11258 [GVPPLATF-135964] [backend] MIB React | Users | User Pins Block: A error is thrown when we use refresh button
MEDIAIBOX-10976 [Backend] [MibApi] Endpoint POST /api/v1/aggregate-data

6.0.73 - 2025/10/03

MEDIAIBOX-10971 [Backend] [MibApi] Implement AggregateQueryExecutor to execute compiled SQL and return structured results
MEDIAIBOX-10975 [Backend] [MibApi] Implement QueryMetadataEnricher to enrich query results with metadata for selected columns
MEDIAIBOX-11218 [Backend] Implement quick-edit endpoint
MEDIAIBOX-11216 [Backend] [MibApi] Implement FilterQueryToSqlConverter to convert filter trees to sql query
PC-2330 Sync StepType with DMM enum
MEDIAIBOX-10969 [Backend] [MibApi] Implement QueryToSqlConverter to convert db-agnostic Query object to engine-specific SQL
MEDIAIBOX-11244 [MIB Legacy] Content Criteria: Preview does not load records
MEDIAIBOX-10969 [Backend] [MibApi] Implement QueryToSqlConverter to convert db-agnostic Query object to engine-specific SQL
MEDIAIBOX-10973 [Backend] [MibApi] Extend QueryToSqlConverter to include filters in the where clause

6.0.72

Due to TC migration and build process error, this version should be ignored.

6.0.71 - 20225/09/29

MEDIAIBOX-8244 [Backend][MibReact]Show Image
MEDIAIBOX-11221 [Backend][MIB React] Content Criteria: Page breaks when adding a condition

6.0.70 - 2025/09/23

MEDIAIBOX-10965 [Backend] [MibApi] Implement QueryMetadataValidator for validating query objects against metadata
MEDIAIBOX-11137 Simple Related List - Is not possible to edit items
MEDIAIBOX-11157 [Backend]Changes in the preview flow (ContentCriteria)
MEDIAIBOX-10966 [Backend] [MibApi] Implement QueryPermissionsValidator to enforce media type access control
MEDIAIBOX-11206 [Backend] Enable QuickEdit through configuration
MEDIAIBOX-11091 [Backend] - Refactor theme request to send Welcome Image
MEDIAIBOX-11184 [Backend][GVPPLATF-133754] Do not allow saving a RelatedList/FieldRelated with invalid filter
MEDIAIBOX-11200 [GVPPLATF-134999][Backend][MIB React] Content Criteria - Preview Search error: when searching for some columns
MEDIAIBOX-11210 [Backend][GVPPLATF-135742] Legacy - The EDITURL config does not work correctly in SimpleRelatedListComponent

6.0.69 - 2025/09/16

MEDIAIBOX-11029 ListPage Component - Filter IsEmpty and IsNotEmpty not working
MEDIAIBOX-11165 [GVPPLATF-128057][Backend]MIB - Movie Criteria Block: SQL error when add many movies

6.0.68 - 2025/09/12

MEDIAIBOX-11179 [GVPPLATF-135099][Backend][MIB React] Content Criteria: error when adding a group, changing it to OR, leaving it empty, and saving
MEDIAIBOX-11172 [GVPPLATF-135456][Backend][MIB React] Content Criteria: condition order alternates after saving new conditions
MEDIAIBOX-11168 [GVPPLATF-134998][Backend][MIB React] Content Criteria - Preview error: when cleaning Max Results value
MEDIAIBOX-11162 [GVPPLATF-135502] [Backend] Duplicate timezone conversion in Criteria Component
MEDIAIBOX-11056 [Backend][GVPPLATF-134578] Related List - allows sending empty value for required field
MEDIAIBOX-10960 [Backend] [MibApi] Implement QuerySyntaxValidator for early validation of aggregate query requests

6.0.67 - 2025/09/09

MEDIAIBOX-11149 [GVPPLATF-135452][Backend][MIB React] Movie Criteria Block: unable to delete Highlights after adding and saving them

6.0.66 - 2025/09/05

MEDIAIBOX-11138 [Backend][GVPPLATF-135411][MIB React] Content Criteria - Don't show records selected
MEDIAIBOX-11030 [GVPPLATF-132586][Backend] Preview does not return the url to play the video
MEDIAIBOX-11141 [Backend][MIB React] Content Criteria: record breaks when relating some Live Channels in the condition (filter error)
MEDIAIBOX-11147 [Backend][MIB React] Content Criteria: missing preview search option
MEDIAIBOX-11146 [Backend][MIB React] Content Criteria: highlight doesnt persist data

6.0.65 - 2025/09/03

MEDIAIBOX-10921 [Backend] - Create a new refresh request with pagination
MEDIAIBOX-11031 Form Page - Readonly fields by Component Configuration can be persisted when edited by HTML
MEDIAIBOX-11042 [Backend] Simple Related List Component - Limit initial items and use asyncRelatedList type
MEDIAIBOX-11065 [Backend] Async Related List - Implement persistence flow
MEDIAIBOX-11134 [Backend][GVPPLATF-134893][MIB React] Content Criteria - Values aside window: "show only selected" throws error with multiple saved records
MEDIAIBOX-11116 [Backend][React] Add source filter
MEDIAIBOX-11123 [GVPPLATF-135028-GVPPLATF-125058][Backend] Issues in the content criteria block (persistence and highlight)

6.0.64 - 2025/08/26

MEDIAIBOX-10779 Backend [React] Related List - Page Component Configuration REDIRECT_TO_EDIT_PAGE_BY_FIELD is not working in MIB React
MEDIAIBOX-10910[Backend][GVPPLATF-133249]MIB React - Vouchers: Opening the Preview tab on a criteria results in multiple errors
MEDIAIBOX-11041 [Backend] Related list async-data endpoint - Handle filters, added and removed IDs
MEDIAIBOX-11054 Breadcrumbs - Breadcrumb appears in wrong page
MEDIAIBOX-11071 [Backend][GVPPLATF-134708] - Simple related is return null values in schema props
MEDIAIBOX-11075 [Backend] Add boolean column to MIB3UX_MENU to flag React-based menus
MEDIAIBOX-11093 [Backend][GVPPLATF-134695] MIB React - Content criteria: Unable to select more than one record

6.0.63 - 2025/08/15

MEDIAIBOX-10824 [Backend][MibServer3] - Charts - Static mode - Interactivity
MEDIAIBOX-10857 [Backend][Core-Components] - Charts - Implement Stacked Bar Chart
MEDIAIBOX-10873 [Backend] Create new request for Async Related List With Pagination
MEDIAIBOX-10875 [MIB Auth] Error displaying the Users/Groups list page
MEDIAIBOX-10892 [Backend][MibDocs] Charts - Static mode - Create MibDocs
MEDIAIBOX-10925 [Backend] [MibServer3] Charts - Refactor to fit different widget modes
MEDIAIBOX-10972 [Backend] Review and refactor Latch endpoints
MEDIAIBOX-10994 [Backend] Create a page component configuration to add footer in components
MEDIAIBOX-10998 [Backend] Vouchers - TSV Export All Pages: Download fails when there are too many records
MEDIAIBOX-11024 [Backend]Adjust the display of the Menu items in MibReact
MEDIAIBOX-11045 [Backend][GVPPLATF-132189] Apply the 'createdAtAsUtc' property in the schema of the form components
MEDIAIBOX-11051 [Backend][OPSSUP-7099][UDO 684113] Content Criteria Highlight ha dejado de funcionar en MIB

6.0.62 - 2025/07/31

MEDIAIBOX-10858 [Backend][Core-Components] - Charts - Implement Bar Chart
MEDIAIBOX-10861 [Backend] Latch and 2FA variant
MEDIAIBOX-10912 [Backend][GVPPLATF-133754] It's not working "IN" and "NOTIN" filter condition for aside filters
MEDIAIBOX-10913 [Backend][GVPPLATF-133866]MIB React - Notifications - Type movies and schedules in the Catalog Item block with an error when opening related
MEDIAIBOX-10924 [Backend] RelatedList search has error when backend is custom
MEDIAIBOX-10930 [Backend][GVPPLATF-133366]MIB React - Error screen when user does not have permission shows that server is down
MEDIAIBOX-10931 [GVPPLATF-133931] [Backend] MIB REACT - all pages:The page opens with a non-existent ID without an error appearing for the operator
MEDIAIBOX-10934 [Backend][GVPPLATF-133249]MIB React - Vouchers: Opening the Preview tab on a criteria results in multiple errors
MEDIAIBOX-10961 [Backend][GVPPLATF-134264][MIB React]Error open Edition History
MEDIAIBOX-10962 [Backend][GVPPLATF-133545]MIB React - VOD Channels: error adding External Url by Device Type
MEDIAIBOX-10978 [Backend][GVPPLATF-134299]MIB React - TVOpen Blackouts - Error "Filter not applied" when try to select Target Technology
MEDIAIBOX-10992 MIB React - Unfriendly error message when constraint/fk errors occur
MEDIAIBOX-10996 [Backend][ContentCriteria]Corrections in the structure of the information sent to the front end

6.0.61 - 2025/07/17

MEDIAIBOX-10694 [BACKEND][GVPPLATF-131763] MIB React - Recent menu does not show recently visited pages
MEDIAIBOX-10745 [Backend] Keywords in Simple Related List - Is not possible do edit/delete
MEDIAIBOX-10823 [Backend][Core-Components] - Charts - Implement Pie Chart
MEDIAIBOX-10835 Simple Related List - ReadOnly field is not disabled on Add New Form
MEDIAIBOX-10841 [GVPPLATF-133174] MIB React - Aside Filter should show message when filtering condition is not set
MEDIAIBOX-10856 [Backend][Core-Components] - Charts - Implement Stacked Pie Chart
MEDIAIBOX-10860 [Backend][Core-Components] - Charts - Implement Card
MEDIAIBOX-10872 [GVPPLATF-133176][Backend][MIB REACT] Notifications Page - Incorrect Scheduled Date
MEDIAIBOX-10874 [MIB Auth] Groups edit page is not displaying Creation date correctly
MEDIAIBOX-10885 [Backend] [GVPPLATF-131941] MIB React - Live series - Availability Window blocks: The DateTime fields have the time displayed in the AM/PM format
MEDIAIBOX-10888 [Backend][GVPPLATF-133264] It is not possible to add items to the criteria blocks
MEDIAIBOX-10889 [Backend][GVPPLATF-133366][MIB React] - Error screen when user does not have permission shows that server is down
MEDIAIBOX-10901 [Backend][GVPPLATF-133665][ONLY DEV GVP] [gvp.mib.edithistory] - not working due to Mongo error
MEDIAIBOX-10910 [Backend][GVPPLATF-133249]MIB React - Vouchers: Opening the Preview tab on a criteria results in multiple errors

6.0.60 - 2025/06/26

MEDIAIBOX-9655 [Backend] List - Add new - Error 500 when opening page to create new item
MEDIAIBOX-10521 [Backend] SimpleRelatedList - Preview/Download implementation
MEDIAIBOX-10744 [Backend] Filter - Columns view Default option is hiding ID
MEDIAIBOX-10749 Columns changes (order, visibility) on List pages are not being persisted
MEDIAIBOX-10748 [Backend] Columns in Simple Related List - Values presented differently from the Form
MEDIAIBOX-10803 [Backend] Fix component aggregation method in order to support bulk edition
MEDIAIBOX-10832 [GVPPLATF-131859]MIB React: Click to sort ascending/descending" button on ID column doesn't sort records properly
MEDIAIBOX-10836 [GVPPLATF-131861] [Front] MIB React - Simple Search list page | When searching for date is not possible to select the hour
MEDIAIBOX-10839 [GVPPLATF-132491]MIB React - EPG Programs: The Content Id field displays the Content Name instead of the ID
MEDIAIBOX-10840 [GVPPLATF-132192]MIB React - Images: The Upload From URL feature does not work

6.0.59 - 2025/06/18

MEDIAIBOX-10802 [Backend] [GVPPLATF-132492] - ID column is not displayed on Aside when use ASIDE_FIELDS on config
MEDIAIBOX-10814 [Backend][GVPPLATF-132485] Notifications - Add existing in Device Types block do not allow deleting records

6.0.58 - 2025/06/17

MEDIAIBOX-10782 [GVPPLATF-132483]MIB REACT - Bulkedit does not perform any validation that is performed on the page.
MEDIAIBOX-10792 [Backend][GVPPLATF-132486] Aside - Problems displaying data and schema when accessing Aside with MediaType VW_EPG_SCHEDULES and VW_INSTANCE_VOD_CHANNEL
MEDIAIBOX-10813 [GVPPLATF-132566] MibServer request logs only shows requests to statics
MEDIAIBOX-10825 [Backend][GVPPLATF-123359] MIB React - Copy with Related is relating the copy to the old ID

6.0.57 - 2025/06/13

MEDIAIBOX-10511 [Backend] Player loading error when opening aside and switching tabs
MEDIAIBOX-10662 [Backend] Field - Config CUSTOM_FIELD_SCHEMA[FieldName] is not working
MEDIAIBOX-10755 [Backend][GVPPLATF-123359] MIB React - Copy with Related is relating the copy to the old ID
MEDIAIBOX-10764 [Backend][GVPPLATF-132269] MIB REACT - Related list in bulk edit returns fetch data error

6.0.56 - 2025/06/05

MEDIAIBOX-9991 [Backend] List - Filter by date - Add new format when is DATE, DATETIME, UTC
MEDIAIBOX-10530 [Backend] MIB - Media types permissions when we are using relationship table
MEDIAIBOX-10561 [Backend] Related List - Refresh - New endpoint to refresh the related list
MEDIAIBOX-10617 [Backend] - Images block - Some fields do not exist when adding a new image directly through the block
MEDIAIBOX-10743 [GVPPLATF-130620][Backend] TSV Exporter: An error is shown when trying to export current/all pages to .tsv
MEDIAIBOX-10747 [GVPPLATF-131849][Frontend] Simple search does not have the ID option
MEDIAIBOX-10754 [Backend] [GVPPLATF-132243] MIB React - Filters do not have search input

6.0.55 - 2025/05/29

MEDIAIBOX-9877 [Backend] List - Filter - When the user filter by boolean any value is returning false value
MEDIAIBOX-10001 [Backend][GVPPLATF-123401] Applications Page - When we add a routing, only ID field appears in the partition
MEDIAIBOX-10349 [Backend] Ordered Related List - Implement interface for component display
MEDIAIBOX-10350 [Backend] Ordered Related List - Refactor Persistence methods to work with new endpoints
MEDIAIBOX-10656 [GVPPLATF-124898][Backend] FormGrouping - Problem with fields order
MEDIAIBOX-10687 [GVPPLATF-131723][Backend] Aside Filters is not filled properly
MEDIAIBOX-10692 [Backend] [GVPPLATF-131425] Business Rule Plugin - Core. More Info
MEDIAIBOX-10713 [GVPPLATF-131722][Backend] [React] Form Grouping Ordering
MEDIAIBOX-10736 [GVPPLATF-123359][Backend] Copy with related doesn´t work in Genres Page

6.0.54 - 2025/05/15

MEDIAIBOX-8551 [GVPPLATF-117021] [MIB Libs] Considerar milisegundo na classe MediaiBox.Core.Tools.DateTimeConversion.DateConverter
MEDIAIBOX-10065 [Backend] Edit history - Filter - Join the value and the label in the prop
MEDIAIBOX-10114 [Backend] Login - Images - Add the new asset
MEDIAIBOX-10498 [Backend] MibAuthorizationServer - Group Page - PUT group users
MEDIAIBOX-10503 MibServer3 - CREATE Instance Page - Schema
MEDIAIBOX-10504 [Backend] MibAuthorizationServer - CREATE Instance Page - POST New Instance
MEDIAIBOX-10505 [Backend] MibServer3 - CREATE Instance Page - POST New Instance
MEDIAIBOX-10508 [Backend] MibServer3 - GET Instance Page - Add buttons logic to schema
MEDIAIBOX-10621 [BACKEND][GVPPLATF-131000] MIB React - Aside boolean fields do not come with default value
MEDIAIBOX-10623 [BACKEND][GVPPLATF-130999]MIB React - Add new in blocks only shows the ID after refreshing the page
MEDIAIBOX-10631 [Backend] DATEINS - When have Exclude Fields Page Configurations, the field shows current date/time
MEDIAIBOX-10635 [Backend] Mismatch in Required Field Behavior Between MIB Legacy and MIB React
MEDIAIBOX-10645 [Backend] User Edit Page - Conditionally required fields
MEDIAIBOX-10663 [Backend] MibServer3 - Adjust Access URL for Authorization
MEDIAIBOX-10669 [Backend] [MibServer3] Display administration pages in MibReact
MEDIAIBOX-10671 [Backend] [GVPPLATF-130777] Unable do save a new criteria in Movies Criteria block
PC-553 [CORE] Error no upload de APK
PC-1393 [GVPPLATF-131320][CORE][MIB AUTH] Improvement - Warning when closing QR Code after enabling TOTP
PC-1965 [GVPPLATF-131319] [MIB AUTH - LATCH] QR doesn't generate if user has áéíóúñ in the name

6.0.53.4 - 2025/05/12

PC-1965 [GVPPLATF-131319] [MIB AUTH - LATCH] QR doesn't generate if user has áéíóúñ in the name
PC-1393 [GVPPLATF-131320][CORE][MIB AUTH] Improvement - Warning when closing QR Code after enabling TOTP
MEDIAIBOX-10663 [Backend] MibServer3 - Adjust Access URL for Authorization

6.0.53 - 2025/04/30

MEDIAIBOX-10313 [Backend] MibServer3 - PUT Group Page - Persist Permission Components
MEDIAIBOX-10389 [Backend] Related List - Change the displayproperty
MEDIAIBOX-10469 [Backend] MibServer3 - GET User Page - Schema and Data for Applications List
MEDIAIBOX-10470 [Backend] MibAuthorizationServer - GET User Page - Get user applications
MEDIAIBOX-10471 [Backend] MibAuthorizationServer - User Page - PUT user application
MEDIAIBOX-10472 [Backend] MibServer3 - User Page - PUT user application
MEDIAIBOX-10492 [Backend] MibServer3 - CREATE Group Page - Schema
MEDIAIBOX-10493 [Backend] MibAuthorizationServer - CREATE Group Page - POST New Group
MEDIAIBOX-10494 [Backend] MibServer3 - CREATE Group Page - POST New Group
MEDIAIBOX-10495 [Backend] MibAuthorizationServer - GET Group Page - GET users from group
MEDIAIBOX-10496 [Backend] MibServer3 - GET Group Page - Schema and Data for Users Related List
MEDIAIBOX-10497 [Backend] MibServer3 - Group Page - Add Existing drawer for Users Related List
MEDIAIBOX-10498 [Backend] MibAuthorizationServer - Group Page - PUT group users
MEDIAIBOX-10499 [Backend] MibServer3 - Group Page - PUT group users
MEDIAIBOX-10500 [Backend] MibAuthorizationServer - Group Page - DELETE Group
MEDIAIBOX-10501 [Backend] MibServer3 - Group Page - DELETE Group
MEDIAIBOX-10502 [Backend] MibServer3 - GET Group Page - Add buttons logic to schema
MEDIAIBOX-10506 [Backend] MibAuthorizationServer - Instance Page - DELETE Instance
MEDIAIBOX-10507 [Backend] MibServer3 - Instance Page - DELETE Instance
MEDIAIBOX-10513 [Backend] Refactor select and tree select field formats
MEDIAIBOX-10519 [BACKEND] [GVPPLATF-130085] Related fields are bringing the Id value instead of the displayValue before saving
MEDIAIBOX-10529 [BACKEND][FRONTEND] [GVPPLATF-130201] MIB - Users with read permission on the source can edit and see the save button but cannot save.
MEDIAIBOX-10535 [Backend][GVPPLATF-125124][GVPPLATF-129274] List - Filters - Default view button moves active columns to the end of the list
MEDIAIBOX-10560 Field Type - Related - Appearing ID instead Name before saving
MEDIAIBOX-10566 [GVPPLATF-130613] MIB REACT - EPG Schedule - Rating field coming with undefined value
MEDIAIBOX-10572 [Backend][GVPPLATF-125051] Page - Create - Some required fields are not highlighted when empty when trying to create a new register
MEDIAIBOX-10586 [Backend] Refactor drawer data endpoint for aside filter compatibility
MEDIAIBOX-10589 [Backend] [GVPPLATF-124778] Content Criteria: Error persisting on Movies Criteria component in Commercial Offer Page
MEDIAIBOX-10605 [GVPPLATF-130987] Unable to reorder registers in asides
MEDIAIBOX-10622 [BACKEND][GVPPLATF-130997]MIB React - Add existing in blocks do not allow deleting records
PC-1943 [CORE] Bug search page history with pageConfig "VISIBLEINHISTORYDASHBOARD"

6.0.52.3 - 2025/04/25

MEDIAIBOX-10566 [GVPPLATF-130613] MIB REACT - EPG Schedule - Rating field coming with undefined value
MEDIAIBOX-10572 [Backend][GVPPLATF-125051] Page - Create - Some required fields are not highlighted when empty when trying to create a new register
MEDIAIBOX-10589 [backend] [GVPPLATF-124778] Content Criteria: Error persisting on Movies Criteria component in Commercial Offer Page

6.0.52.2 - 2025/04/24

MEDIAIBOX-10389 [Backend] Related List - Change the displayproperty
MEDIAIBOX-10519 [BACKEND] [GVPPLATF-130085] Related fields are bringing the Id value instead of the displayValue before saving
MEDIAIBOX-10560 Field Type - Related - Appearing ID instead Name before saving

6.0.52.1 - 2025/04/23

MEDIAIBOX-10513 [Backend] Refactor select and tree select field formats
MEDIAIBOX-10535 [Backend][GVPPLATF-125124][GVPPLATF-129274] List - Filters - Default view button moves active columns to the end of the list
MEDIAIBOX-10586 [Backend] Refactor drawer data endpoint for aside filter compatibility

6.0.52 - 2025/04/17

MEDIAIBOX-9998 [GVPPLATF-123391] UX Reference - infinite load on page name. More info.
MEDIAIBOX-10464 [Backend] MibServer3 - User Page - Add Existing drawer for Groups Related List
MEDIAIBOX-10466 [Backend] MibServer3 - User Page - PUT user groups
MEDIAIBOX-10481 [Backend] Implement delete endpoint for list pages
MEDIAIBOX-10549 [Backend] Related Drawers - Remove obsolete endpoint
MEDIAIBOX-10552 [Backend] MibServer3 - GET User Page - Schema Adjustments
MEDIAIBOX-10562 Field Type - OS Timezone - Wrong component for this type
MEDIAIBOX-10569 [MibServer3] Review pagination on list pages
MEDIAIBOX-10575 [Backend] MibServer3 - PUT User Page - Update profile picture
MEDIAIBOX-10582 [Backend] For AdmFields HTML, the Variant must be 'editor-field'
MEDIAIBOX-10591 [Backend] MIB is using MediaType permission instead of relation table, blocking deletion in related blocks
MEDIAIBOX-10592 [Backend] FormGrouping - The ordering of the blocks is not respecting the database configuration
PC-1350 [CORE][MibServer][Latch] Add latch service unpairing route
PC-1351 [CORE][MibServer3][Latch] Add TOTP unpairing route

6.0.51 - 2025/04/09

MEDIAIBOX-7491 [GVPPLATF-108703][GVPPLATF-108497][UX] Add "Disable Copy with Related" Page Configuration
MEDIAIBOX-10030 [Backend] Form - Copy with related - It's not copy with the related list data
MEDIAIBOX-10045 [GVPPLATF-123748] MIB React - Pages with blocks other than the main one have an error in bulk editing.
MEDIAIBOX-10348 [Backend] Selectable search - Add new logic to not show the filters
MEDIAIBOX-10453 [GVPPLATF-129906] [Backend] MIB React - Boolean fields when default value is setted returns on frontend true value
MEDIAIBOX-10459 [Backend] MibServer3 - CREATE User Page - Schema
MEDIAIBOX-10461 [Backend] MibServer3 - CREATE User Page - POST New User
MEDIAIBOX-10462 [Backend] MibServer3 - GET User Page - Schema and Data for Groups Related List
MEDIAIBOX-10463 [Backend] MibAuthorizationServer - GET User Page - GET user groups
MEDIAIBOX-10465 [Backend] MibAuthorizationServer - User Page - PUT user groups
MEDIAIBOX-10467 [Backend] MibAuthorizationServer - User Page - DELETE User
MEDIAIBOX-10468 [Backend] MibServer3 - User Page - DELETE User
MEDIAIBOX-10489 [Backend] Allow hiding/disabling a page component
PC-1373 [CORE][MIB AUTH] Password validation error when changing credentials during login with expired password and TOTP active
PC-1805 [GVPPLATF-130501][CORE][MIB AUTH - LATCH] Add proxy config
PC-1826 [MIB AUTH - LATCH] CAPTCHA code always invalid when TOTP is enabled for Password Change

6.0.50.2 - 2025/04/04

PC-1805 [GVPPLATF-130501][CORE][MIB AUTH - LATCH] Add proxy config. More info: MibAuthorizationServerConfig
PC-1373 [CORE][MIB AUTH] Password validation error when changing credentials during login with expired password and TOTP active
PC-1826 [MIB AUTH - LATCH] CAPTCHA code always invalid when TOTP is enabled for Password Change

6.0.50 - 2025/04/01

MEDIAIBOX-10188 [Frontend] [GVPPLATF-124888] Form Grouping - Add new blocks related to the same mediatype
MEDIAIBOX-10295 [Backend] MibAuthorization - POST user permissions - Generic Permissions
MEDIAIBOX-10299 [Backend] MibAuthorization - POST group permissions - Generic Permissions
MEDIAIBOX-10306 [Backend] MibServer3 - GET Group Page - Boolean Permissions Component
MEDIAIBOX-10307 [Backend] MibServer3 - GET Group Page - Generic Permissions Component
MEDIAIBOX-10308 [Backend] MibServer3 - GET Group Page - Sources Permissions Component
MEDIAIBOX-10309 [Backend] MibServer3 - PUT User Page - Media Type Permissions Component
MEDIAIBOX-10310 [Backend] MibServer3 - PUT User Page - Boolean Permissions Component
MEDIAIBOX-10311 [Backend] MibServer3 - PUT User Page - Generic Permissions Component
MEDIAIBOX-10312 [Backend] MibServer3 - PUT User Page - Source Permissions Component
MEDIAIBOX-10338 [Backend] Related List - Link - Add props to navigate
MEDIAIBOX-10357 [Backend] Edit history - GVP - Error 404
MEDIAIBOX-10402 [Backend] ASIDE_FILTERS implementation
MEDIAIBOX-10436 [Backend] Form item - InputNumber validation for integer and decimal values is with error
MEDIAIBOX-10460 [Backend] MibAuthorizationServer - CREATE User Page - POST New User
MEDIAIBOX-10474 [Backend] MibServer3 - GET User Page - Add buttons logic to schema
MEDIAIBOX-10491 [Backend] Part 1 - Review error responses for V2 endpoints
MEDIAIBOX-10510 [Backend] Part 2 - Review error responses for V2 endpoints
MEDIAIBOX-10544 [Backend] Related List - Select more than one existing items
MEDIAIBOX-10545 [Backend] ASIDE_FILTERS - Keep compatibility with previous endpoint
MEDIAIBOX-10551 [Backend] Allow the list export criteria to have a limit of -1
PC-1054 [CORE] Vulnerability with moment.js
PC-1704 MibBulkMigrator: Reserverd Keyword problem
PC-1512[OPSSUP-6793][GVPPLATF-129192]Prometheus library is throwing exceptions

Note

React version 1.0.88 or greater

6.0.49.4 - 2025/03/20

PC-1054 [MIB] Vulnerability with moment.js
PC-1512[OPSSUP-6793][GVPPLATF-129192]Prometheus library is throwing exceptions

6.0.49 - 2025/03/13

MEDIAIBOX-10294 [Backend] MibAuthorization - POST user permissions - Sources
MEDIAIBOX-10296 [Backend] MibAuthorization - POST user permissions - Boolean Permissions
MEDIAIBOX-10298 [Backend] MibAuthorization - POST group permissions - Sources
MEDIAIBOX-10300 [Backend] MibAuthorization - POST group permissions - Boolean Permissions
MEDIAIBOX-10303 [Backend] MibServer3 - GET User Page - Boolean Permissions Component
MEDIAIBOX-10304 [Backend] MibServer3 - GET User Page - Generic Permissions Component
PC-1063 Adicionar imagem/logo ao lado do LockService block
PC-1183 Centralizar código de integração Latch na LockServerWorkflow
PC-1311 [MIB AUTH - LATCH] Adjustments
PC-1362 High memory usage in MIB services

6.0.48 2025/02/27

GVPPLATF-125057 [ONLY MIB REACT] [MEDIAIBOX-10420] - TV Technologies: Error saving new item in Default Instances block
MEDIAIBOX-10419 [Backend] DMM - Refactor endpoints in order to support legacy component
MEDIAIBOX-10420 [Backend] [GVPPLATF-125230] Genres page - Genres Metadata block - Unable to save a new genre metadata
MEDIAIBOX-10433 [Backend] [GVPPLATF-128682] MIB Legacy - Movies Page - An error message is always displayed when successfully creating a new movie
MEDIAIBOX-10068 [Backend] [GVPPLATF-123924] MIB React - Payment Methods page - Wrong block name
MEDIAIBOX-10226 [Backend] Related List - Refresh - New endpoint to refresh the related list
MEDIAIBOX-10287 [Backend] MibAuthorization - GET user permissions - Generic Permissions
MEDIAIBOX-10288 [Backend] MibAuthorization - GET user permissions - Boolean Permissions
MEDIAIBOX-10289 [Backend] MibAuthorization - GET group permissions - Sources
MEDIAIBOX-10290 [Backend] MibAuthorization - GET group permissions - MediaTypes
MEDIAIBOX-10293 [Backend] MibAuthorization - POST user permissions - MediaTypes
MEDIAIBOX-10301 [Backend] MibServer3 - GET User Page - Media Type Permissions Component
MEDIAIBOX-10302 [Backend] MibServer3 - GET User Page - Source Permissions Component
MEDIAIBOX-10305 [Backend] MibServer3 - GET Group Page - Media Type Permissions Component
MEDIAIBOX-10418 [Backend] DMM - Implement schema and data for legacy DMM component
PC-1125[MibApi] drm key route "/drmkeydata" has a non configurable table

Latch in development

PC-963 [MibAuth] - Criar rota GET /account/{id}/totp + UnitTest
PC-966 [MibAuth] - Criar rota POST /account/{id}/totp + UnitTest
PC-969 [MibServer3] - Criar rota de proxy para [MibAuth] GET /account/{id}/topt + UnitTest
PC-970 [MibServer3] - Criar rota de proxy para [MibAuth] POST /account/{id}/topt + Unit Test
PC-972 [MibAuth] - Retornar novo campo LOCK_TOTP_ENABLED em rota /me
PC-974 [MibAuth] - [GET][Post]Alterar comportamento para devolver modal para frontend (AuthenticationController.cs /login) + UnitTest
PC-987 [MibAuth] Implementar fluxo de validação "Change Password, next login / Password Expires , expired next login" + UnitTest
PC-990 [MibAuth] - Criar rota DELETE /account/{id}/totp + UnitTest - Desparear (unlink) Totp e limpar o totpId
PC-1008 [MibAuth] - Renderizar novos campos na tela

6.0.47 2025/02/12

GVPPLATF-126009 MIB - Content Criteria page - It is not possible to do bulk edit
GVPPLATF-127258 [MIB] - Channel Maps List and Edit Page - Console Error addEventListener
PC-1041 [MibAuth] Language change doesn't reflect in the system and isn't saved
PC-899 Auth - Group: User List visual problems
MEDIAIBOX-10173 [Backend] Authentication - API - Add new menu option
MEDIAIBOX-10213 [Backend][GVPPLATF-125124] List - Filters - Default view button moves active columns to the end of the list
MEDIAIBOX-10250 [Backend] Content Criteria - GET Page schema
MEDIAIBOX-10251 [Backend] Content Criteria - Search and Refresh data
MEDIAIBOX-10252 [Backend] Content Criteria - Save endpoint
MEDIAIBOX-10269 [BackEnd][GVPPLATF-127400] MIB React - Secondary blocks: The block filter does not work.
MEDIAIBOX-10285 [Backend] MibAuthorization - GET user permissions - MediaTypes
MEDIAIBOX-10319 [Backend] Content Criteria - GET Page data
MEDIAIBOX-10339 [Backend] Player - Get endpoint return data and manifest
MEDIAIBOX-10372 [MEDIAIBOX-10372] [Backend] Player - Get the manifest
MEDIAIBOX-10342 [MEDIAIBOX-10342] [Backend] Upload image - New POST endpoint
MEDIAIBOX-10346 Simplifying Migration Application
MEDIAIBOX-10359 [Backend]Upload image - Error saving null fields in related lists
MEDIAIBOX-10393 [Backend] Player - Related list - Include preview property when item is video / image
MEDIAIBOX-10394 [Backend] Player - Form schema - Include preview property when item is video
MEDIAIBOX-10408 [Backend] Image preview raises application error

Latch in development

PC-948 [AuthDB] - Criar migrations Auth novos campos (ADM_USERS)
PC-949 [MibAuth] - Adicionar novos campos na página de edição do user (Legacy)
PC-951 [MibAuth] - Retornar novo campo LOCK_ENABLED em rota /me
PC-952 [MibAuth] - Criar nova rota para pareamento do usuário + UnitTest
PC-953 [MibServer3] - Criar nova rota para pareamento de usuário + Unit Test
PC-954 [MibAuth] - Adicionar novo MibConfig
PC-957 [MibAuth] - [MibConfig] Add operations Config in MibAuthorizationLockServerConfig + UnitTest
PC-961 [MibAuthDB] - Criar migration novos campos TOTP
PC-980 [MibAuth] - Adicionar nova rota de (des)pareamento no MibAuthorizationClient
PC-984 [MibAuth] Implementar fluxo de validação "User self edit password" + UnitTest
PC-985 [MibAuth] Implementar fluxo de validação "Adm edit other users password" + UnitTest
PC-986 [MibAuth] Implementar fluxo de validação "Reset password password (forgot password)" + UnitTest
PC-988 [MibAuth] Implementar lógica de validação + UnitTest
PC-989 [MibAuth] Alterar fluxo de save do usuário (próprio) para desparear (unlink) latchCode e limpar o appId
PC-997 [MibAuth] Implementar biblioteca em C# para acessar o LatchServer
PC-1035 [MibAuth] Integrar botão de pareamento na rota de pareamento

6.0.46 2025/01/20

GVPPLATF-125028 [GVPPLATF-125028] [MIB REACT] - Age Ratings and Zones page - Successful delete message is displayed but deletion does not occur
GVPPLATF-125230 [MIB REACT] Genres page - Genres Metadata block: Unable to save a new genre metadata
GVPPLATF-128041 [Backend] [GVPPLATF-128041] MIB - Dictionary: Some error messages need to be changed
MEDIAIBOX-10087 [Backend] [GVPPLATF-124117] Custom modal - Page configuration - Override Delete Message. More info.
MEDIAIBOX-10255 [Backend] Selectable search - New request POST
MEDIAIBOX-10321 [Backend] DMM - Abort task
MEDIAIBOX-10334 [Backend][GVPPLATF-125099] Create a flow for using REGEX in field validation
MEDIAIBOX-10341 [Backend] Upload image - Refactor the current persistence endpoint
PC-572 RelatedList: Visualização de campo BOOLEAN com um Usuário sem o Source necessário
PC-898 Auth - Group: CreationDate format is wrong
PC-936 [MibServer3][DmmApiClient] Update to DmmApiClient 6.0.12
PC-941 [MibServer3][DmmComponent] Job with status finished displays actions with 0% progress

6.0.45 2025/01/03

GVPPLATF-122437 [MEDIAIBOX-9869]- MIB React - Producers Page - Image upload does not show the image as a mandatory field and generates an error
GVPPLATF-123428 [MIB REACT] Images Page - When we create new image field "File" is labeled "Upload"
GVPPLATF-125051 MIB React: Some required fields are not highlighted when empty when trying to create a new register
GVPPLATF-127197 [gvp.mibserver3] Improve error message when creating a label with duplicate code
GVPPLATF-127229 [gvp.mibserver3] Constraint errors show up once per each component in page
MEDIAIBOX-10003 [Backend] List - UTC field - Add prop utc
MEDIAIBOX-10084 [Backend] Edit history - GVP - Error when is open the edit history
MEDIAIBOX-10132 [Backend] DMM - GET Data
MEDIAIBOX-10133[Backend] DMM - PUT Retry button
MEDIAIBOX-10134 [Backend] DMM - PUT Change priority
MEDIAIBOX-10135 [Frontend] Authentication - Boolean - Source permissions
MEDIAIBOX-10261 [Backend] Translation - Add dictionary, dmm and more text
MEDIAIBOX-10282 [Backend] Related List - Delete - New configuration to display a delete all items button

6.0.44 2024/12/12

GVPPLATF-126927 MibLog Review. More info: MibCoreConfig and MibMiddlewareConfig
GVPPLATF-127251 MIB - Parameters Partitions: Groups block is not displayed
MEDIAIBOX-9951 [Backend] [GVPPLATF-122937] Menu - Do not support more than 4 levels of expansion
MEDIAIBOX-10160 [Backend] Authentication - API - GET for the group edition page
MEDIAIBOX-10161 [Backend] Authentication - API - PUT for editing groups
MEDIAIBOX-10162 [Backend] Authentication - API - GET for the instance (category) edition page
MEDIAIBOX-10163 [Backend] Authentication - API - PUT for editing instances (categories)
MEDIAIBOX-10165 [Backend] Authentication - API - GET list of users
MEDIAIBOX-10167 [Backend] Authentication - API - GET user account information
MEDIAIBOX-10169 [Backend] Authentication - API - PUT for editing user account
MEDIAIBOX-10235 [Backend] DMM - New schema
MEDIAIBOX-10238 [Backend] Configuration - Translation - Check the missing translations

6.0.43 - 2024/11/28

OPSSUP-6791 [UDO 647719, 646709, 648337][MIB3] Memory Leak + OutOfMemory al descargar TSVs.
MEDIAIBOX-10156 [Backend] Authentication - API - GET user information
MEDIAIBOX-10157 [Backend] Authentication - API - GET list of instances (categories)
MEDIAIBOX-10158 [Backend] Authentication - API - GET list of groups
MEDIAIBOX-10159 [Backend] Authentication - API - PUT for editing a user
MEDIAIBOX-10189 [Backend] [GVPPLATF-123210] Page - Save - Problem to save null value to RECURRENCE_DAYS field and PRICE with decimal value in Pricing Model page on React
MEDIAIBOX-10223 [Backend] Selectable search - Related List - Add new filter
PC-484 [MIB CORE] Images: Deletion of Images and Previews
PC-575 Related: Inconsistência exposta ao utilizar Copy with Related

6.0.42 - 2024/11/14

GVPPLATF-84601 MIB3 - VOD Channels - Movie Criteria - Default Order: It accepts negative numbers on Max Number of Results field
GVPPLATF-126403 [React] - Change "type" logic in MIB page schema generation
GVPPLATF-126504 MIB - Field of type Related gets ignored in a Simple Related List
MEDIAIBOX-8335 [OPSSUP-6098] SPIKE - Review memory usage in mib.api - Part2
MEDIAIBOX-10168[Backend] Authentication - MibAuthorizationServer - PUT for account edition
PC-574 Related List/Unique: Mensagem de sucesso mesmo em caso que ocorre erro
PC-711 Edit History: Error when choosing a distant page in a list with many items. See more.
PC-917 TSV: The service sometimes goes down when is MibAgents

6.0.41 - 2024/11/04

GVPPLATF-56433 [Bulk] General: Error when trying to bulkedit content
GVPPLATF-84598 MIB3 - VOD Channels - Movie Criteria - Default Order: Displaying incorrect error message when saving non-int max number of results
GVPPLATF-100409 [gvp.mibserver3] Some .js files are not being minified
GVPPLATF-115521 [MIB][gvp.mibserver3] First time use Page: Review error message
MEDIAIBOX-9217 [Backend] [GVPPLATF-124023] Form item - JSON - Send a new variant
MEDIAIBOX-8335 [OPSSUP-6098] SPIKE - Review memory usage in mib.api
MEDIAIBOX-10058 [Backend] History dashboard - Export - It's not generate a current page tsv
MEDIAIBOX-10119[Backend] Authentication - MibAuthorizationServer - GET for the lists category
MEDIAIBOX-10120 [Backend] Authentication - MibAuthorizationServer - GET for the user account
MEDIAIBOX-10122 [Backend] Authentication - MibAuthorizationServer - PUT for editing a user
MEDIAIBOX-10123 [Backend] Authentication - MibAuthorizationServer - GET for the group edition page
MEDIAIBOX-10124 [Backend] Authentication - MibAuthorizationServer - PUT for editing groups
MEDIAIBOX-10125 [Backend] Authentication - MibAuthorizationServer - GET for category edition page
MEDIAIBOX-10126 [Backend] Authentication - MibAuthorizationServer - PUT for editing categories
MEDIAIBOX-10147 [Backend] Authentication - MibAuthorizationServer - GET for the lists groups
MEDIAIBOX-10164 [Backend] Authentication - MibAuthorizationServer - GET for the lists users
MEDIAIBOX-10166 [Backend] Authentication - MibAuthorizationServer - GET for the user admin edition
MEDIAIBOX-10175 [Backend] Custom Validation - Distribute XML code documentation from Validation Plugin
MEDIAIBOX-10181 [Backend] Configuration - Translations - Add limit text

6.0.40 - 2024/10/17

GVPPLATF-73725 MIB - Edit History - it's showing wrong info about removed related contents
MEDIAIBOX-9995 [Backend] Authentication - Category - Restructure the flow of methods in the authorization server
MEDIAIBOX-10106 [Backend] [MibMigrator] JSON Variant - Support for migration to column with Json data type
MEDIAIBOX-10107 [Backend] [MibServerApi] JSON Variant - Ensure CRUD of the MibApi with Json AdmFieldType
MEDIAIBOX-10109 [Backend][MibServer3 - Legacy] JSON Variant - Ensure the legacy does not break with AdmFieldType Json fields. More Info
MEDIAIBOX-10142 [Backend][GVPPLATF-125100] React Menu - It does not show menus without url
PC-735 Add image support with URL only in mib. More info.

6.0.39.2 - 2024/10/08

GVPPLATF-125127 Errores 403 en operaciones replace y remove en mibapi

6.0.39.1

Configuration problem when picking up the fix branch.

6.0.39 - 2024/10/04

GVPPLATF-73725 MIB - Edit History - it's showing wrong info about removed related contents
GVPPLATF-124519 [React] Dependency Injection of MibApiClient In Validation plugin
GVPPLATF-124529 [React] Add Delete Validation to FormComponentCustomValidator
GVPPLATF-124554 [ONLY MIB REACT] Images page not saving - Field names are empty in validation plugin
GVPPLATF-124998 [React] Field values are being sent as JsonElement to the Validation Plugin
MEDIAIBOX-9656 [Backend] React Menu - Add a verification when calling for display endpoints
MEDIAIBOX-9657 [Backend] React Menu - Legacy menu should not show React menu items
MEDIAIBOX-9987 [Backend] Authentication - Create and implement the client in MibServer3
MEDIAIBOX-9988 [Backend] Authentication - User - Restructure the flow of methods in the authorization server
MEDIAIBOX-9994 [Backend] Authentication - Groups - Restructure the flow of methods in the authorization server
MEDIAIBOX-10088 [Backend] [GVPPLATF-124043] Related List - Add new property called limit to limit how many register there could be
MEDIAIBOX-10089 [Backend] Page - Related field - Add new prop previewProperty

6.0.38 - 2024/09/19

MEDIAIBOX-9779 Add new default IFrame component. See more
GVPPLATF-99800 MIB - Live Channels list page: edit in a new tab not being displayed on right click for read only users
GVPPLATF-87123 MIB - VOD Channels - Apps: drag and dropg should persist
MEDIAIBOX-10006 [Backend] Configuration - Translations - Add new
GVPPLATF-124010 tsv-exporter-worker should include /health endpoint
GVPPLATF-99862 MIB - List Pages - Advanced search - It is allowing to input null/giant strings as Favorite Advanced Search and returning an Ajax error when trying to save
MEDIAIBOX-9937 [GVPPLATF-124306] [React] Validation Plugin - Core

6.0.37 - 2024/09/06

OPSUP-6426 [MIB3][TSV Exporter] El TSV Exporter deja exportaciones zombies.

6.0.36 - 2024/09/05

GVPPLATF-123388 [React] Validation Plugin - Inserting MIB Api into Validation Plugins
GVPPLATF-123702 MIB - Error when adding new items in blocks other than the main block, but properly saved
OPSSUP-6479 [MIB3] Loguear cambios de más de 50% de content criterias en la página de Subscriptions
GVPPLATF-123389 [React] Validation Plugin - Readonly MIB Api Wrapper
MEDIAIBOX-10046 [Backend] Configuration - SPIKE - Request is note being directed to the configured URL
GVPPLATF-94601 [MibServer3.Perf] Query users notification in each load page

6.0.35 - 2024/08/21

GVPPLATF-117275 [gvp.mibserver] producers detail page, image not displayed after changing it
GVPPLATF-118246 MIB - Common - Images: Editable List Page does not work properly when Extension column is displayed
GVPPLATF-121881 MIB - Images page: Boolean fields do not need to be marked as mandatory, because when they are not filled in, a default value is used
GVPPLATF-122777 [gvp.catalogexporter.agent] ContentCriteras with operator AND, not working correctly
GVPPLATF-123028 MIB - EPG Programs Page: It is not possible to reset the columns to default
MEDIAIBOX-9901 [GVPPLATF-123079] [Backend] Configuration - Authentication via Postman Requires Cookies - Need Support for Bearer Token
MEDIAIBOX-9739 [Backend] Page dashboard- Export button - Create the new endpoint
MEDIAIBOX-9958 [Backend] List - Save in line - Is not saving when is a related dropdown
MEDIAIBOX-9978 [Backend] Configuration - Translations
MEDIAIBOX-10020 [Backend] Form - Save button - It's not working

6.0.34

Due to TC migration and build process error, this version should be ignored.

6.0.33 - 2024/07/29

MEDIAIBOX-8551 [GVPPLATF-117021] [MIB Libs] Considerar milisegundo na classe MediaiBox.Core.Tools.DateTimeConversion.DateConverter
MEDIAIBOX-9911 [GVPPLATF-108545][NetCore/Monitoring] Publish Microsoft.Data.SqlClient event counters to Prometheus-Net
MEDIAIBOX-9279 [Backend] List - Filters - Save filter - Search functionality always return all the filters
MEDIAIBOX-9532 [Backend] List - Simple search - Is not filtering by date
MEDIAIBOX-9581 [Backend] Validation Plugin - Delete
MEDIAIBOX-9874 [Backend] Configuration - Translations - Add new translations
MEDIAIBOX-9890 [Backend] Configuration - Upload form item - Add default value
MEDIAIBOX-9907 [Backend] Edit history - Get Register ID - Send a 403 error
MEDIAIBOX-9910 [Backend] List - Search history - Change the field when is an object
MEDIAIBOX-9919 [Backend] History dashboard - Page - Add remove operation inside items
MEDIAIBOX-9927 [Backend] Related List - Bulk Edit - Handle new Payload
MEDIAIBOX-9969 [Backend] History dashboard - Refactor - Total item is not coming in the endpoint
MEDIAIBOX-9072 Consolidation - Bug ao editar user/profile no Authorization
MEDIAIBOX-9767 Consolidation - Erro ao editar ADM_FIELD do tipo string em bloco SimpleRelated quando valor é um JSON

6.0.32 - 2024/04/17

MEDIAIBOX-9939 [Consolidation] - Add configs translations/dictionaries
MEDIAIBOX-9923 [GVPPLATF-122812][MibClient2] RollbackTransaction is leaking connections

6.0.31 - 2024/07/15

MEDIAIBOX-7002 [GVPPLATF-96486] MibRepository Otimizações
MEDIAIBOX-8563 [GVPPLATF-116011] [UX] Error rendering component when MIBCMSFRONTENDSERVERBASECONFIG_DEFAULT_LOADALLFIELDSINMEDIATYPEINCLUDECALLS is false
MEDIAIBOX-9801 [GVPPLATF-82252] MIB API add one object with value 0 when import one object without equivalence in database
MEDIAIBOX-7913 [Backend] List - Save in line - Error when you try to save a change
MEDIAIBOX-9578 [Backend] List - Multi Select - Preview new drawer
MEDIAIBOX-9627 [Backend] Form item - Upload - It's necessary to send maxFileSize prop
MEDIAIBOX-9739 [Backend] Page dashboard- Export button - Create the new endpoint
MEDIAIBOX-9748 [Backend] Edition History - Filter - Refactor GET all the register for a mediatype
MEDIAIBOX-9749 [Backend] User dashboard - Export button - Create the new endpoint
MEDIAIBOX-9769 [Backend] GVP - Images - Create a new item doesn't have the file to upload
MEDIAIBOX-9781 [Backend] History Dashboard - Menu - Check if it's configurable
MEDIAIBOX-9807 [Backend] Related List - GVP - Disable the ID in the related list
MEDIAIBOX-9824 [Backend] User dashboard - Get all the results without filtering by mediatype
MEDIAIBOX-9879 [Backend] History dashboard - Add remove operation inside items
MEDIAIBOX-9888 [Backend] Form item - Upload - Change prop to maxFileSize
MEDIAIBOX-7913 [Frontend] Page - Title
MEDIAIBOX-9726 [Consolidation] - Add translations/dictionaries

6.0.30 - 2024/07/02

MEDIAIBOX-9705 [GVPPLATF-120162] MIB - Several pages: After selecting an enum, the field name and ID are displayed with the enum value
MEDIAIBOX-9798 [GVPPLATF-112338] [MIB API] - Mib api faz milhares de requisições para edit history
MEDIAIBOX-9799 [GVPPLATF-122106] [MIB5] [Logs] All milliseconds in the timestamps are set to 0
MEDIAIBOX-9427 [Logs] Nem todos os logs estão no formato correto.
MEDIAIBOX-9423 [Backend] List - Multi Select - New prop list
MEDIAIBOX-9486 [Backend] List - Creation Date - It's display 1 hour less
MEDIAIBOX-9728 [Backend] Configuration - Translations - Add translations for new features
MEDIAIBOX-9747 [Backend] Edition history - Filter - Get all mediatypes
MEDIAIBOX-9793 [Backend] Page dashboard - Details - Error 403 endpoint
MEDIAIBOX-9861 [Backend] List - Multi select - Problem with the checksum when it's saving
MEDIAIBOX-9384 Improve reusage of connections in MibSql
MEDIAIBOX-9685 [Consolidation] DMM Block + DMM Api

6.0.29 - 2024/06/24

MEDIAIBOX-9842 [OPSSUP-6601][mibapi] Missing NOLOCK in query statements

6.0.28 - 2024/06/21

MEDIAIBOX-9402 [OPSSUP-6479][Content Criteria] - Quando houver mais de 50% de alterações, gerar log.
MEDIAIBOX-9709 [OPSSUP-6554][UDO 603807] [MIB3] Fix timeout - TSV Exporter no funciona si hay muchas columnas selecionadas.
MEDIAIBOX-9225 [GVPPLATF-118286] [Database] Duplicação de índice após execução de uma migration do MibAuth
MEDIAIBOX-9734 [Backend] User dashboard - Filter - Refactor the user endpoint
MEDIAIBOX-9757 [Backend] Page - Save - Add new item in the related list with a related variant
MEDIAIBOX-9553 [Backend] Edition History/User History - List - Get data to show details of the item
MEDIAIBOX-9552 [Backend] Edition History/User History - List - Get data filter by register ID
MEDIAIBOX-9551 [Backend] Edition History/Page History - List - Get data to show details of the item
MEDIAIBOX-9550 [Backend] Edition History/Page History - List - Get data filter by all mediatypes
MEDIAIBOX-9691 [Frontend] Menu - GVP - Hide the menu for 245 version

6.0.27 - 2024/06/06

MEDIAIBOX-9754 [GVPPLATF-122058] [gvp.mibapi] Error 403 in PUT method

6.0.26 - 2024/06/05

MEDIAIBOX-9556 [Backend] Page/User Dashboard - Filter - Return the pages
MEDIAIBOX-9544 [Backend] Related List - List - It appears jobs in the list
MEDIAIBOX-9549 [Backend] Edition History - Filter - Get register ID
MEDIAIBOX-9554 [Backend] List - Filters - Refactor in source filter
MEDIAIBOX-9555 [Backend] Page/User Dashboard - Filter - Return the user
MEDIAIBOX-9557 [Backend] Page/User Dashboard - Filter - Return the mediatype
MEDIAIBOX-9653 [Frontend] Page dashboard - Page is not loading data

6.0.25 - 2024/05/21

MEDIAIBOX-9574 [OPSSUP-6426][UDO 594149][MIB3][TSV Exporter] Avoid loading whole file to memory before uploading
MEDIAIBOX-9582 [Backend] List - Filters - Send in lowercase AND and OR in search history
MEDIAIBOX-9543 [Backend] Page - Form - Check required field GVP
MEDIAIBOX-9601 [Backend] Page - Check title inside schema
MEDIAIBOX-9605 [Backend] Form - Related - Is not saving when is selected another option
MEDIAIBOX-9586 [Backend] List - Refactor endpoint shareID
MEDIAIBOX-9603 [Backend] Validation Plugin - Simple Related List

6.0.24 - 2024/05/17

MEDIAIBOX-9644 [GVPPLATF-121701] Fix nullable validation in the ComponentHelpers class.

6.0.23 - 2024/05/15

MEDIAIBOX-9641 [GVPPLATF-121698] Error when trying to get the insertion date in the main block

6.0.22 - 2024/05/13

MEDIAIBOX-9418 [OPSSUP-6492][UDO 603807] [MIB3] TSV Exporter no funciona si hay muchas columnas selecionadas.
MEDIAIBOX-9616 [GVPPLATF-120848]TSV Exporter - Notificação não desaparece quando o arquivo já foi baixado.
MEDIAIBOX-9520 [Backend] Page - Creation Date - It's sending the current date

6.0.21 - 2024/05/09

MEDIAIBOX-9538 [GVPPLATF-120708]MIB - Mib Users List Page: pagination does not work (mib-authorization)
MEDIAIBOX-9614 [GVPPLATF-121182] MIB - Images page: Unable to preview an image
MEDIAIBOX-9617 [GVPPLATF-121326] [MIB Auth] Attempting to delete an object already absent
MEDIAIBOX-9360 Permissions: Erro ao salvar permissão de um usuário em caso especifico
MEDIAIBOX-9361 Permissions: Inconsistência ao editar permissão

6.0.20 - 2024/05/07

MEDIAIBOX-9431 [OPSSUP-6478][MIB3] El TSV Exporter exporta la fecha en formato mm/dd/aaa en lugar de dd/mm/aaaa desde 24.2
MEDIAIBOX-9509 [OPSSUP-6426][UDO 594149][MIB3][TSV Exporter] O TSV Exporter deixa exportações zumbies
MEDIAIBOX-9561 [GVPPLATF-120779][TSVExport] Use MIBSTORAGELIB2CONFIG_DISK_PATH
MEDIAIBOX-9597 [GVPPLATF-120874] MIB - Movies page: Erro quando usamos copy with related em Series and Seasons pages
MEDIAIBOX-9600 TSV: Arquivo baixado não está com todas as colunas solicitadas

6.0.19 - 2024/05/03

MEDIAIBOX-9568 [GVPPLATF-120851] Problema na página de VideoPreview
MEDIAIBOX-9150 [Mib.Frontend] PersistenceComponentSaveSingleEntityData is returning saveDataList value with "ValueKind = string"
MEDIAIBOX-9328 [Backend] Form item - Related - Check related configuration
MEDIAIBOX-9335 [Backend] List - Share filter - Check endpoint to share a filter
MEDIAIBOX-9407 [Backend] Configuration - Check title list, related list GVP
MEDIAIBOX-9477 [Backend] Form item - Related Filed - Don't show the details
MEDIAIBOX-9529 [Backend] List - Download - Is not found the file

6.0.18 - 2024/04/25

MEDIAIBOX-9505 [OPSSUP-6506] Não é possível editar o valor de Inherited ao tentar atualizar uma permissão de source
MEDIAIBOX-9493 [GVPPLATF-120488][MIB6] - Images page: Width and height of images are not added to their respective fields
MEDIAIBOX-9511 [GVPPLATF-120581] Warning message is not displayed in the Movies Criteria block
MEDIAIBOX-9449 MIB - Erro ao tentar salvar páginas que têm parentIds (filhos) sendo salvos com o registro pai
MEDIAIBOX-9506 Erro ao tentar exibir mensagem de dicionário

6.0.17 - 2024/04/22

MEDIAIBOX-9483 [GVPPLATF-120474] Erro ao rodar o search na página User List
MEDIAIBOX-9488 [GVPPLATF-120609][MIB] Detail pages go blank and won't refresh, even manually
MEDIAIBOX-8797 Content Criteria: Erro ao gerar preview quando há múltiplos parâmetros e o primeiro é "Same year as the page"
MEDIAIBOX-9484 Botão save bloqueado após exceção do tipo PersistenceValidationException
MEDIAIBOX-9490 Melhorar logs na feature de "Custom validation for form fields"
MEDIAIBOX-9373 [Backend] Page - Test for Form fields order returning false positive
MEDIAIBOX-9471 [Backend] Related List - New item form drawer not loading when there is no parent media type
MEDIAIBOX-9475 [Backend] Page - Download button - Is not generate any file

6.0.16 - 2024/04/17

MEDIAIBOX-9413 PAGE_COMPONENT_CONFIGURATIONS: Erro quando tem a configuração READONLY_FIELDS
MEDIAIBOX-9461 TSV Exporter Cache Error - System.IO.FileNotFoundException
MEDIAIBOX-9419 [OPSSUP-6426][UDO 594149][MIB3][TSV Exporter] El TSV Exporter deja exportaciones zombies.
MEDIAIBOX-9337 [Backend] Page - Copy - Is copy with related list data
MEDIAIBOX-9375 [Backend] List - Simple search - Default filter is ID
MEDIAIBOX-9414 [Backend] Related list - DMM Jobs - Data not loading when there is nullable boolean
MEDIAIBOX-9398 [Backend] Configuration - Appears options shouldn't appear
MEDIAIBOX-9412 [Backend] Menu - Menu icons change URL

6.0.15 - 2024/04/16

MEDIAIBOX-9459 [GVPPLATF-120477][MIB6] - Pages: The pages cant be saved displaying criteria errors.
MEDIAIBOX-9442 [GVPPLATF-120469] Image: Erro ao salvar nova Image de upload em Form
MEDIAIBOX-9432 [Backend] - Page - Save button - Change structure payload
MEDIAIBOX-9395 [Backend] Page - Save button - Error when it's saving a change in related list

6.0.14 - 2024/04/10

MEDIAIBOX-9429 [Mib.Frontend] [GVPPLATF-120419] Valor nulo do tipo NullableDropRelated
MEDIAIBOX-94059405 [GVPPLATF-120291] Erro em Form Component com campos de data [MEDIAIBOX-9382][GVPPLATF-119970] Erro ao tentar adicionar novo arquivo
MEDIAIBOX-9406 [GVPPLATF-119085] Erro ao rodar um advanced search com a configuração ADVANCED_FILTERS
MEDIAIBOX-9415 [GVPPLATF-120380] MIB Authorization | When saving MIB API: Sources permissions all child sources marked with inherited will be dismarked
MEDIAIBOX-9327 [Backend] Form item - Date - Send a value null as default value limit=0 to export all pages

6.0.13 - 2024/04/10

MEDIAIBOX-9362 [Mib.Frontend] [GVPPLATF-119948] Resilience in AddFields on save (custom block)
MEDIAIBOX-9370 [GVPPLATF-119873] Mib retorna null exception para list components sem a configuração de edit url
MEDIAIBOX-7528 [GVPPLATF-109222][FailFast] Improve MibConfig log
MEDIAIBOX-9094 [Backend] List - Props not expected in frontend
MEDIAIBOX-9391 [Backend] List - Download - Export endpoint should handle limit=0 to export all pages

6.0.12 - 2024/04/08

MEDIAIBOX-9394[GVPPLATF-120260] Erro ao buildar o projeto na versão 6.0.11
MEDIAIBOX-9154 [Backend] Architecture - Boolean fields in the endpoint has to be true or false

6.0.11 - 2024/04/05

MEDIAIBOX-9228 DMM - DLL Conflicts between 5.0.54 and 6.0.0
MEDIAIBOX-9229 [GVPPLATF-119085] Users list page: Trying to do an advanced search results in a exception
MEDIAIBOX-9244 [GVPPLATF-119011] MIB - Various pages: Some labels does not display the Timezone
MEDIAIBOX-9232 [GVPPLATF-119010] Users have no permissions over inherited sources
MEDIAIBOX-9148 [Backend] List - Action button - Download button
MEDIAIBOX-9318 [Backend] Configuration - Change permission to delete in GVP Pages
MEDIAIBOX-9307 [Backend] Page - Creation Date - Change architecture

6.0.10 - 2024/03/27

MEDIAIBOX-9297 [GVPPLATF-118983] - Error when saving VOD Channels, Live Channels, Movies, Subscriptions, Users and TVOpen Blackouts Edit page
MEDIAIBOX-9045 [GVPPLATF-118286] Mib Auth - Melhorias para permissões genéricas
MEDIAIBOX-9313 [Backend] Page - Form - Put properly order in form
MEDIAIBOX-9322 [Backend] Global action - Form - Change props inside props

6.0.9 - 2024/03/25

MEDIAIBOX-9172 [Backend] Refactor - Rename Configuration Property in List Schema
MEDIAIBOX-9222 [Backend] Global Actions - Form - Create endpoint to the form schema
MEDIAIBOX-9198 [Backend] Configuration - Return - Send returnURL
MEDIAIBOX-9199 [OPSSUP-6458] Paginas de Mib Users no esta funcionando para los usuarios Is Administrator.
MEDIAIBOX-9200 [OPSSUP-6457][MIB3] La pantalla de GVP_USERS en MIB no funciona si no es Administrator.
MEDIAIBOX-9218 [OPSSUP-6460] La opción de changePassword en mib no esta funcionando desde 24.2
MEDIAIBOX-9220 [Backend] Global actions - List - Create endpoint to the drawer schema
MEDIAIBOX-9298 [Backend] Page - Action buttons - Change parameters preview and download
MEDIAIBOX-9153 [Backend] List - Action button - Check new item, copy, copy with related
MEDIAIBOX-9292 [Backend] Page - Form - Add prop disable and required
MEDIAIBOX-9221 [Backend] [Backend] Global Actions - List - Create endpoint with data
MEDIAIBOX-9299 [Backend] Configuration - Translations - Change to kebab case

6.0.8 - 2024/03/15

MEDIAIBOX-9145 [Backend] Form - Order form fields
MEDIAIBOX-9134 [Backend] Page - Breadcrumbs is empty
MEDIAIBOX-9109 [Backend] List - Advanced Search - Error 400 when filtering
MEDIAIBOX-9031 [Backend] Page - Action button - Download button endpoint
MEDIAIBOX-9159 [Backend] Configuration - Add translations part 2
MEDIAIBOX-9196 [BackEnd] Architecture - Form View Data: Image is being saved with wrong ID
MEDIAIBOX-9029 [Backend] Page - Action button - Preview button show image endpoint
MEDIAIBOX-9065 [Backend] Page - Action button - Save button endpoint related list
MEDIAIBOX-9180 [GVPPLATF-118983] - Error when saving VOD Channels and Live Channels page
MEDIAIBOX-9187 [Backend] List - Pagination - Error when changing pages
MEDIAIBOX-9158 [Backend] Form - Check fields ID, Creation Date
MEDIAIBOX-9059 [Backend] Page - Action button - Check Delete item endpoint

6.0.7 - 2024/02/28

MEDIAIBOX-9114 [Backend] Page - GET endpoint change field configurations
MEDIAIBOX-9151 [Backend] Page - Add a second title inside schema
MEDIAIBOX-8883 [Backend] Page - Action button - Copy and Copy with related endpoint
MEDIAIBOX-9035 [Back/Front] Page - Action button - Save button endpoint form
MEDIAIBOX-9005 Related List - Get Schema for Create New Item Drawer Form
MEDIAIBOX-8950 Revisar os fluxos de utilização de clients para injeção do HttpClient que implementa o handler de log de requisições
MEDIAIBOX-9131 [Backend] Configuration - Add translations
MEDIAIBOX-9117 [Backend] Page - Validate save payload parsing

6.0.6 - 2024/02/26

MEDIAIBOX-9075 [Backend] List component schema configuration
MEDIAIBOX-9119 [Backend] Page - Identifying different related lists

6.0.5 - 2024/02/22

MEDIAIBOX-9074 [mib.api] Intermittent errors in requests to the MIB API
MEDIAIBOX-9091 [mib.api] Error EntityConverter: Writer -> 'System.Byte
MEDIAIBOX-9108 [Mib.Frontend] Adm Field Related with "ValueKind = string" in property value
MEDIAIBOX-9057 [Backend] List - Filters - Column View - Default values
MEDIAIBOX-9016 List - Item Table - Save item add parameter Checksum
MEDIAIBOX-9066 [Back/Front] Page - Get data information related list
MEDIAIBOX-9062 [Back/Front] Page - Get data information form

6.0.4 - 2024/02/16

MEDIAIBOX-9071 [mib.api] Error EntityConverter: Writer -> 'System.Byte[]
MEDIAIBOX-9012 [Backend] Endpoints de compartilhar filtros
MEDIAIBOX-8977 Allow custom validation on the default FormComponent
MEDIAIBOX-8694 Connect list component inline edit and remove
MEDIAIBOX-9026 [GVPPLATF-118615] MIB auth - sources permissions of groups are readonly
MEDIAIBOX-8646 [GVPPLATF-116438] Improve logs of mib components
MEDIAIBOX-8575 [GVPPLATF-117228][MIB5] - Live Channels: Movies Criteria preview tab display a movie with id 0
MEDIAIBOX-9069 Samples enviroment doesn't work

6.0.3 - 2024/02/09

MEDIAIBOX-8442 [GVPPLATF-116210] Criar registros com audit listner ou edit history dependendo de algumas configurações
MEDIAIBOX-8789 [Backend] Add Etag property to ItemV2ViewData
MEDIAIBOX-9003 [Backend] Breadcrumb Structure
MEDIAIBOX-8813 Form Page - Update
MEDIAIBOX-8812 Form Page - Create
MEDIAIBOX-8810 Related - Get Schema for Form
MEDIAIBOX-8809 Related - Data (pagination)
MEDIAIBOX-8808 Related - Get Schema
MEDIAIBOX-8806 Form Item - Source
MEDIAIBOX-8805 Form Item - Keywords
MEDIAIBOX-8803 Form Item - Related & Images
MEDIAIBOX-8814 Form Page - Delete
MEDIAIBOX-8605 List component- Sources integration
MEDIAIBOX-8969 Atualização de segurança dos pacotes Microsoft.Data.SqlClient e System.Data.SqlClient
MEDIAIBOX-8712 [GVPPLATF-117935] Suporte para hierarquia e id/parent como string em Custom Configurable Permissions
MEDIAIBOX-8646 [GVPPLATF-116438] Improve logs of mib components

6.0.2 - 2024/01/24

MEDIAIBOX-8683 [Backend] Add formPageKey property to the list component schema
MEDIAIBOX-8656 Integrating the new dictionary into the backend
MEDIAIBOX-8650 [OPSSUP-5562] TSV Exporter is not considering the MIB User timezone when generating the list
MEDIAIBOX-8383 [GVPPLATF-113352] Edit History API gerando uma MongoException
MEDIAIBOX-8801 Corrigir fluxos de exportação TSV após merge da releases/5.0
MEDIAIBOX-8693 [Backend] Create endpoint V2 for inline edit
MEDIAIBOX-8802 Fix assembly version in MibVersion
MEDIAIBOX-8793 Update copyright notice & Fix home link
MEDIAIBOX-8699 [Backend] Fix notification URL return on endpoint V2

6.0.1 - 2023/12/15

No changes. First version publicly available.

6.0.0 - 2023/12/15

As a new release of a major version, there are some breaking changes. Please review them here.

MEDIAIBOX-8267[MibApi] Page History Dashboard: Clicking on edit button of deleted item does not display error toast
MEDIAIBOX-8287[MibServer3] Ajuste a listagem de campos, mostrar campo do tipo data corretamente.
MEDIAIBOX-8177[MibMigrator] Possibilidade de passar filtro no comando CreateIndex.
MEDIAIBOX-7797[Microservice|Permission] Implementação de métodos Async.
MEDIAIBOX-6629[Backend] Implementação de métodos Async no MibAuthorizationServer.
MEDIAIBOX-6931[MibConcurrency] Trocar a biblioteca Newtonsoft pela System.Text.Json.
MEDIAIBOX-6929[TsvExporter] Trocar a biblioteca Newtonsoft pela System.Text.Json
MEDIAIBOX-8078 Migrate all libraries from .NET Standard 2.1 to .NET 6.0
MEDIAIBOX-8049[Backend] Integração de métodos async no cms
MEDIAIBOX-8140 Content Criteria: No option is being displayed in the search operator dropdown at the Preview Tab
MEDIAIBOX-8139 Edit History Dashboard is not loading
MEDIAIBOX-8138 MibAuth area is displaying error toast with message "undefined" after api calls
MEDIAIBOX-7608 Implement the Sports Model
MEDIAIBOX-8107 [MibApi] Possibilidade de usar SubPastas ao fazer upload de arquivos no storagearea.
MEDIAIBOX-8106 [SQS+S3] Possibilidade de criar fila em subpasta no SQSS3.
MEDIAIBOX-8152 [MibApi] MibList Advanced Search: BatchGetException is thrown when comma is present in query.
MEDIAIBOX-8153 Copy With Related: Error when Content Criteria is empty.
MEDIAIBOX-8143 Configuration file "mibmongodbconfig" cannot be found in Mib 6.0.
MEDIAIBOX-8180 Mib List cannot be rendered due to compilation error in AdvancedSearch.cshtml.
MEDIAIBOX-8227 Notifications V2 - Pagination seems to be backwards
MEDIAIBOX-7609 Implement the Music Model
MEDIAIBOX-8231 List Routes - Data
MEDIAIBOX-7610 Implement the Games Model
MEDIAIBOX-8228 Rotas de Display para MIB React
MEDIAIBOX-8232 List Routes - Schema
MEDIAIBOX-8230 List Routes - Search
MEDIAIBOX-8328 Form Component - Schema
MEDIAIBOX-8329 Form Routes - Data
MEDIAIBOX-8450 Refactor List data route to support advanced search
MEDIAIBOX-8271 User History Dashboard: Admin user is not viewing all media types it has permission to
MEDIAIBOX-8471 Review and refactor ListWorkflow methods
MEDIAIBOX-8229 User Account Routes
MEDIAIBOX-8456 [ACD Router] Create a documentation to Install/Run MIB CMS with Podman
MEDIAIBOX-8233 Theme Routes
MEDIAIBOX-8556 Upgrade MIB to .NET 8
MEDIAIBOX-8497 [MIBReact-Backend] Add Breadcrumbs and Title inside Page Request
MEDIAIBOX-8651 Content Criteria: Preview sendo gerado de forma errada.
MEDIAIBOX-8652 Content Criteria: Preview sendo gerado linha de ID 0
MEDIAIBOX-8637 [Mib3] Não faz download de arquivos do S3.
MEDIAIBOX-8625 Export List Endpoint.
MEDIAIBOX-8662 Violação de Unique Constraint não está lançando a mensagem de erro esperada. MEDIAIBOX-8661 Related List: Não está sendo possível criar item.
MEDIAIBOX-8668 Provide color configuration and logo url to samples environment.
MEDIAIBOX-8682 Simple Related List: Problemas ao criar item com uniques inválidos