diff --git a/source/community/release_notes/sumac/dev_op_release_notes.rst b/source/community/release_notes/sumac/dev_op_release_notes.rst index 3e271d04..b25d9819 100644 --- a/source/community/release_notes/sumac/dev_op_release_notes.rst +++ b/source/community/release_notes/sumac/dev_op_release_notes.rst @@ -17,20 +17,82 @@ To view the end-user facing docs, see the :doc:`feature_release_notes`. Breaking Changes **************** +No breaking changes in Sumac. -Learner Experiences -******************* +User Facing Experiences +************************* -Instructor Experiences -********************** +See the :doc:`feature_release_notes` for more detail on user-facing changes in this release. Administrators & Operators ************************** -Settings and Toggles -==================== +- Most search functionality included in the core platform now supports Meilisearch as an alternative to Elasticsearch. For instances deployed using Tutor, only Meilisearch is supported, and Tutor will automatically provision Meilisearch and create the indexes during the upgrade. + - Two recent features, Studio Course Search and the new Content Libraries (beta), require Meilisearch and will be hidden from the UI if Meilisearch is not available. (For the Content Libraries beta, this affects only the UI - developers can still use the APIs without Meilisearch.) + - The new Content Libraries (beta) can be hidden entirely in Sumac by setting the waffle flag ``contentstore.new_studio_mfe.disable_new_libraries`` to "Yes". This option will be removed in Teak. + - After upgrading, if you wish to use the new Content Libraries (beta) or Studio Course Search features, you will need to run ``manage.py cms reindex_studio --experimental --incremental`` to populate the new Studio Search index with your existing content (courseware/libraries). Studio search results will be incomplete until this command has finished. + - A new media storage setting is required for new Content Libraries. This should be specified as OPENEDX_LEARNING['MEDIA']. Tutor will `provide this setting automatically `_, and can be used as an example for those who are running different infrastructure. For those not running Tutor, **please ensure that the file storage location is not publicly accessible**. +- `Course assets are now served by a view rather than a middleware `_ + - Background: The LMS/CMS previously handled course asset requests (asset-v1: andc4x URLs) via a middleware called StaticContentServer. This middleware has been converted to a view. + - Action: If your deployment has a custom MIDDLEWARE list in Django, you will need to remove this item at the time of upgrade to Sumac. Otherwise, no action is needed. +- Ubuntu 22.04 Related Operators Note + - `PR `_ + - In newer versions of ubuntu the MD4 hashing algorithm is disabled by default. To enable it the openssl config needs to be updated in a manner similar to what's being done here. Alternatively, you can set the FEATURES['ENABLE_BLAKE2B_HASHING'] setting to True which will switch to a newer hashing algorithm where MD4 was previously used. + Because this hashing is being used as a part of the edx-platform caching mechanism, this will effectively clear the cache for the items that use this hash. The will impact any items where the cache key might have been too big to store in memcache so it's hard to predict exactly which items will be impacted. +- Added override options to commerce related CTA URLs in edx-platform + - Background: Extension points have been added have been added to commerce app in: `PR1 `_, `PR2 `_ so Open edX community members who wants to extend the commerce functionality can do so without explicitly adding code into edx-platform codebase. For more information into extension points see Pluggable override section in `Extension Points `_. + - Additional Considerations: Commerce app itself is slated for deprecation. `See the associated DEPR ticket `_. +- `courseware.enable_navigation_sidebar `_ is now enabled by default. It was disabled by default in Redwood. + +- New Forums Implementation (migration from Ruby to Python forums backend) + + - For users running Tutor, they will automatically switch to the new app. Instructions to migrate data from mongodb to mysql is available in the plugin README https://github.com/overhangio/tutor-forum/ (not yet merged, see `feat: upgrade to sumac `_). + + - Users not running Tutor will by default remain on the legacy `cs_comments_service` app. They need to read this part of the forum app README: https://github.com/openedx/forum?tab=readme-ov-file#forum-v2-toggle Some settings need to be defined even for legacy app users. + + +New And Updated Settings and Toggles +==================================== +- `contentstore.new_studio_mfe.disable_legacy_libraries `_ +- `contentstore.new_studio_mfe.disable_new_libraries `_ +- `DISABLED_COUNTRIES `_ +- `GRADEBOOK_FREEZE_DAYS `_ +- `XBLOCK_RUNTIME_V2_EPHEMERAL_DATA_CACHE `_ +- `course_experience.enable_ses_for_goalreminder `_ +- `discounts.enable_first_purchase_discount_override `_ +- `new_core_editors.use_advanced_problem_editor `_ +- `notifications.enable_new_notification_view `_ +- `notifications.enable_notification_grouping `_ +- `notifications.enable_ora_grade_notifications `_ +- `ENABLE_ORA_PEER_CONFIGURABLE_GRADING `_ +- `RBAC_IGNORE_INVALID_JWT_COOKIE `_ +- `enterprise.enterprise_customer_support_tool `_ +- `enterprise.enterprise_groups_v2 `_ + +Removed Settings and Toggles +============================ +COURSEGRAPH_DUMP_COURSE_ON_PUBLISH +FEATURESENABLE_LIBRARY_AUTHORING_MICROFRONTEND +FEATURESENABLE_V2_CERT_DISPLAY_SETTINGS +commerce.transition_to_coordinator.checkout +commerce.transition_to_coordinator.refund +contentstore.library_authoring_mfe +discussions.enable_reported_content_notifications +learner_dashboard.enable_b2c_subscriptions +notifications.enable_coursewide_notifications +notifications.enable_notifications_filters +notifications.enable_ora_staff_notifications +notifications.show_notifications_tray +studio.enable_course_update_notifications +BLOCKSTORE_BUNDLE_CACHE_TIMEOUT +BUNDLE_ASSET_STORAGE_SETTINGS +BUNDLE_ASSET_URL_STORAGE_KEY +BUNDLE_ASSET_URL_STORAGE_SECRET +BLOCKSTORE_BUNDLE_CACHE_TIMEOUT +COURSEGRAPH_CONNECTION +COURSEGRAPH_JOB_QUEUE Other Operator Changes @@ -40,13 +102,40 @@ Other Operator Changes Deprecations & Removals *********************** +- The existing "Content Libraries" feature has been renamed to "Legacy Libraries" and will be deprecated in the next release (Teak), and removed entirely in Ulmo in favor of the new "Content Libraries" feature. The Teak release will include a tool for migrating content from Legacy Libraries into new Content Libraries. +- In `frontend-app-learner-dashboard `_ + - support for Optimizely has been removed along with the ProductRecommendations widget. + - `DEPR: Optimizely Support `_ + - Removed the RecommendationsPanel widget + - `DEPR: RecommendationsPanel `_ +- In edx-platform: + - ``commerce-coordinator`` related code has been removed. `PR: `_ +- [UPCOMING] In Teak pre-design-tokens brand packages will no longer be supported. With design tokens, theme authors will instead override core Paragon tokens by defining their own JSON tokens that get deep merged alongside the core Paragon tokens, thus overriding any tokens that were defined by the theme author. See `the associated DEPR ticket for details `_. +- [UPCOMING] Between now and the release of Teak, all Dockerfiles will be removed from the Open edX organization. As an alternative, Tutor provides `production-ready Docker images `_ for all supported Open edX services. And each Open edX service repository should contain documentation describing how it can be installed and executed, allowing anyone to write a Dockerfile that provisions the repository. See `this associated DEPR ticket for details `_. +- The cs_comments_service application is being replaced by forum. `[DEPR]: Replace cs_comments_service #437 `_ +- The Zooming Image Tool will be deprecated in Sumac. `[DEPR] Zooming Image Tool (HTML block template) #31436 `_ +- The EdxRestApiClient has been deprecated and removed in this release. See `[DEPR]: Complete removal of `EdxRestApiClient `_ for details. +- The Demographics app has been removed. It was added to support a private edX Demographics IDA for collecting additional user info. See `[DEPR]: Demographics Django app #35127 `_. +- The programs_listing endpoint in the credentials application has been removed. `[DEPR]: /program-listing endpoint `_. +- The skill_level endpoint has been removed `[DEPR]: endpoint /user/v1/skill_level/{job_id}/ `_. +- [UPCOMING] The Toggle 'block_structure.storage_backing_for_cache' will be removed, with a default setting of True. You may want to test enabling in Sumac before it becomes the default behavior in Teak. See `[DEPR]: block_structure.storage_backing_for_cache in edx-platform `_. +- As part of the `Oscare Ecommerce Stack deprecation `_ , the following repositories have been archived: + - https://github.com/openedx/ecommerce + - https://github.com/openedx/ecommerce-worker + - https://github.com/openedx/frontend-app-payment + - https://github.com/openedx/frontend-app-ecommerce + - https://github.com/openedx/ecommerce-scripts + Developer Experience ******************** +- With the launch of the new Content Libraries feature, many new or updated APIs are now ready for developers to start using (though some are in beta and may change). This includes the entire `Learning Core API `_ (Components, Contents, Publishing, Collections), `Content Tagging API `_, `Content Libraries API `_, and `Learning Core XBlock API `_. Most of these APIs (other than tagging) are only useful in content libraries at the moment, but when courseware is eventually moved to Learning Core as well, the Learning Core APIs will be recommended way to work with all learning content in the platform, and the modulestore APIs will be deprecated. + Researcher & Data Experiences ***************************** +Upgrading Aspects to v1.3.1 will get you the latest Aspects functionality with Sumac. `See the upgrade instructions here `_. Known Issues ************