Skip to content

Releases: franzliedke/studio

0.16.0

12 Oct 10:37
0.16.0
1255eb4
Compare
Choose a tag to compare

This update includes several BC adaptions and fixes, that occurred with new releases of Composer 2.x. Also we improved compatibility with PHP 8.1 (and also test for it now, too).

What's Changed

New Contributors

Full Changelog: 0.15.0...0.16.0

0.15.0

18 Dec 11:42
d9502a5
Compare
Choose a tag to compare

Hello again. With this release, Studio is finally compatible with Composer 2.

Also, please welcome @apfelbox as an additional maintainer! 🙌

Summary

[BETA] Stop touching the lockfile

02 Dec 20:40
d4e19eb
Compare
Choose a tag to compare
Pre-release

This is a fundamental rewrite of the Composer integration. Now, instead of adding the loaded paths to Composer's search path (by creating path repositories for them), we replace the packages downloaded by Composer that can be found in the loaded paths by symlinks to the local paths.

All of this should hopefully fix several issues, e.g. #52, #58, #65, and #72.

Back on the release track

01 Dec 18:02
4c8784d
Compare
Choose a tag to compare

Time to get things moving again. This release updates Symfony version constraints to allow people to install Studio together with other projects using Symfony v4.

Summary

  • Allow installation with Symfony 4.0 (#81 by @emodric).
  • Use "proper" way to reference PHPUnit classes in the stubs (#79 by @simonhunt).

Small update

15 Sep 11:42
4f1cbbf
Compare
Choose a tag to compare

Long time, no see. Finally, a new update. More changes are coming soon!

Summary

  • Use more recent versions when starting a new project with PhpUnit and PhpSpec (#76).

Be more forgiving with namespace names

25 Nov 17:33
c1359ff
Compare
Choose a tag to compare

A small patch release with a minor suggested improvement.

Summary

  • Small refactorings.
  • Replace slashes with backslashes when asking for namespaces (#70).

New unload command

19 Nov 11:36
76d65d2
Compare
Choose a tag to compare

Another patch release with a small community-contributed feature: the unload command.

Summary

  • unload command: Reverse operation of the load command: This will remove the given entry from the studio.json file, resulting in Composer no longer finding the packages in that path, unless they are available from Packagist (#67, implemented by @rask in #68).

Wildcard paths

06 Apr 13:40
b25a2c3
Compare
Choose a tag to compare

Another minor release, caused by changes to the config file format and slightly different semantics for the load command.

Summary

  • Path wildcards: Similar to Composer's path repositories, Studio now allows for paths to contain wildcards. This makes it super easy to load multiple packages at once in a workbench-like environment (#54).
  • Changes:
    • The format of studio.json has changed - it only stores paths (and wildcards) to load, no more mapping from packages to paths.
    • The load command now accepts glob paths - these can contain wildcards.

More changes are in the pipeline, that will deal with some problems introduced in the 0.10 revamp.

Complete revamp - path repositories FTW

22 Mar 11:48
Compare
Choose a tag to compare

Almost ready for a 1.0 release now.

Revamp under the hood

This release marks the culmination of a lot of work, diving into Composer's innards and even sending a pull request to Composer. Thus, to enjoy this release to its fullest, make sure you're running an up-to-date version of Composer. (You can do so by running composer self-update.)

Most importantly, Studio now makes use of Composer's path repositories instead of manipulating the generated autoloader files. The benefit: Studio-managed packages are symlinked directly into the vendor directory, and version conflicts are handled completely by Composer. Let Composer do what it dos best.

Thus, besides giving you a helping hand in kickstarting new Composer packages, Studio now primarily provides a nice interface to working with path repositories. The benefit over doing it by hand: no manipulation of the composer.json file, which is shared in the repository. Instead, a local studio.json files describes your development setup and can be ignored by other maintainers or contributors of your project.

I have successfully used this approach for a while now in developing Flarum - in a setup with various core libraries and more than ten extension packages. It works really well!

Summary

  • Path repositories: As described above, this also takes care of duplicate dependencies (#14, #33, #42, #45).
  • Autoloading files: With these changes, file autoloaders now work well, too (#29).
  • composer update will now also affect managed packages' dependencies (#26).
  • Studio now works well Composer's custom installers (#36).
  • Allow creating packages as Git submodules (#31).
  • Changes:
    • Compatibility with Symfony 3.x (#20, #40, #44, #47).
    • Updates for Composer's plugin API versioning (#43, #46).
    • Clearly ask for confirmation when scrapping packages (#39).
  • Bug fixes:
    • More error checking when running studio create (#12).
    • scrap command could not handle symlinks (#23).
    • Don't crash when trying to load locations that don't exist (#38).

Thanks for your patience and to all the people who made this release possible - from issues and fruitful discussion to pull requests. 🎉

Fix autoloading

25 Mar 13:56
Compare
Choose a tag to compare

Autoloading was basically useless up to this release, sorry.

  • Bug fix:
    • Autoload files from Studio-managed projects are now properly included in Composer's autoload.php file.