🐛 Bug fix
- [Framework] Fix err.stderr not defined in quickstart (#4269) @alexandrebodin
Tag Name: v3.0.0-beta.17.1
Release Date: 10/16/2019
StrapiOpen-source headless CMS built with Node.js. Provides developers with complete freedom in choosing their favorite tools and frameworks for frontend development.
Strapi v3.0.0-beta.17.1 fixes a critical bug in the quickstart command where err.stderr was not defined, causing potential errors when initializing new Strapi projects. This patch ensures the quickstart command works properly for developers setting up new Strapi instances.
err.stderr was not properly definedNo migration is required for this release. This is a patch release that fixes a bug without introducing any breaking changes or requiring any action from users to update their existing projects.
Simply update your Strapi version to v3.0.0-beta.17.1 to benefit from the bug fix:
npm install [email protected]
# or
yarn add [email protected]
We recommend all users to upgrade to v3.0.0-beta.17.1, especially if you are:
This is a minor patch release with minimal changes focused on fixing a specific bug, so the upgrade should be straightforward with no breaking changes.
To upgrade:
npm install [email protected]
# or
yarn add [email protected]
err.stderr undefined error in quickstart commandThis release addresses an issue in the Strapi framework where the quickstart command would encounter an error due to err.stderr being undefined. The bug occurred during the project initialization process and could prevent users from successfully creating new Strapi projects using the quickstart feature.
The fix properly handles the error object during the quickstart process, ensuring that stderr is properly accessed and preventing the undefined property error from occurring.
PR: #4269
No new features were added in this release. This is strictly a bug fix release focused on resolving the err.stderr undefined error in the quickstart command.
No security fixes were included in this release. The changes were focused on fixing a functional bug rather than addressing security vulnerabilities.
No specific performance improvements were included in this release. The focus was solely on fixing the err.stderr undefined bug in the quickstart command.
This release has a low to moderate impact, primarily affecting the project initialization process. The fix resolves an issue where the quickstart command would fail due to an undefined err.stderr property, which could prevent new users from successfully creating Strapi projects.
The bug fix improves the reliability of the Strapi setup process, particularly for new users and developers who frequently create new Strapi instances. Existing projects that are already running will not be affected by this change, as it only impacts the initialization process.
The patch is small in scope (affecting 38 files with 178 changes total) but important for maintaining a smooth developer experience, especially for those new to the Strapi ecosystem.