TL;DR
Strapi v3.0.0-beta.15 brings several enhancements and bug fixes to improve the user experience. Key updates include more comprehensive user information on login, consistent documentation terminology, updated translations, and fixes for connection settings and the upload files interface. The release also removes outdated articles and redirects community links to the Strapi subreddit.
Highlight of the Release
- Enhanced user authentication with more comprehensive user information on login
- Fixed socketPath connection setting variable name for database connections
- Corrected display of the 'Updated' column in the uploaded files view
- Updated community links to direct users to the Strapi subreddit
- Improved documentation consistency by standardizing project naming conventions
Migration Guide
No migration steps are required for this beta release. Simply update your Strapi version to v3.0.0-beta.15 to benefit from the enhancements and bug fixes.
npm install [email protected]
Or if you're using Yarn:
yarn add [email protected]
Upgrade Recommendations
This release contains several important bug fixes and enhancements that improve the overall functionality and user experience of Strapi.
If you're currently using v3.0.0-beta.14 or earlier beta versions, upgrading to v3.0.0-beta.15 is recommended to benefit from the enhanced user authentication, fixed database connections, and improved upload interface.
As this is still a beta release, it's advisable to test thoroughly in a development environment before deploying to production.
Bug Fixes
Database Connection Fixes
Fixed an issue with the socketPath connection setting's variable name, ensuring proper database connections when using socket paths.
Upload Plugin Interface Fix
Resolved a display issue with the 'Updated' column in the uploaded files view (issue #3738), ensuring that file modification dates are correctly displayed.
Authentication Response Fix
Fixed an issue where the /auth/login endpoint was ignoring files and relations in the user object, now properly including this data in authentication responses.
New Features
Enhanced User Authentication
The /auth/login endpoint now returns more comprehensive user information, including files and relations. This enhancement provides a more complete user object upon authentication, eliminating the need for additional requests to fetch related user data.
Community Resources Update
The Reddit link in the admin panel has been updated to direct users to the official Strapi subreddit, providing a more focused community resource for Strapi users.
Improved Japanese Translations
The admin interface now features updated Japanese translations, making Strapi more accessible to Japanese-speaking users.
Security Updates
No security fixes were explicitly mentioned in this release.
Performance Improvements
No specific performance improvements were highlighted in this release. The changes were primarily focused on enhancing functionality, fixing bugs, and improving documentation.
Impact Summary
Strapi v3.0.0-beta.15 delivers several quality-of-life improvements for developers and content managers. The enhanced user authentication response now includes files and relations, reducing the need for additional API calls. Database connection handling is improved with the fixed socketPath variable name, and the upload plugin's interface now correctly displays file update timestamps.
Documentation consistency has been improved by standardizing project naming conventions from "my-app" to "my-project" throughout the documentation. Japanese users will benefit from updated translations in the admin interface.
The removal of outdated articles and the redirection of community links to the official Strapi subreddit ensures users have access to more current and relevant information.
While this release doesn't introduce major new features, the cumulative effect of these enhancements and bug fixes contributes to a more polished and reliable Strapi experience as it progresses through its beta phase.
Full Release Notes
💅 Enhancement
🐛 Bug fix
- [Framework] Fix socketPath connection setting's variable name (#3718) @tobi2424
- [Plugin] Fix the Updated column in the uploaded files view (#3746) @soupette