Proposed zend-expressive-router changes include:
-
Adding a
$path
parameter toRouteResult::fromRouteMatch()
.What if instead we were to add a new static method,
RouteResult::fromRoute()
, and a new instance method,RouteResult::getRoute()
? (as I have suggested in zendframework/zend-expressive#398)? This would allow consumers to then pull the path from theRoute
instead, and provide access to the path, name, allowed methods, options, etc. (e.g.,$result->getRoute()->getPath()
)This could even be done in a new 1.3.0 minor release; users who depend on that new feature would need to update their project to pin to the new minor release or later; otherwise, everything continues working as normal.
-
Removal of
RouteResultObserverInterface
andRouteResultSubjectInterface
.These definitely require a major version bump.
-
Changes to
RouterInterface::generateUri()
signature.This also definitely requires a major version bump.
What's interesting about these last two features, however, is that zend-expressive does not use them, which means that technically, it could pin to ^1.3 || ^2.0
safely. Additionally, because the router and template implementations are installed at the project level, users who update would not get the 2.0 version unless they also update the constraints for their given router and template implementations. In other words, there's no breakage.
This is true of the zend-expressive-helpers package as well; it's required by the project, which means that if the developer attempts to update their router and/or template implementation without also updating the zend-expressive-helpers library, Composer will either do nothing, or report the constraint conflict. If you run composer update
, nothing happens. If you want the new versions of these, you either edit the composer.json
to update constraints, or you do something like composer update "zendframework/zend-expressive-helpers:^3.0" "zendframework/zend-expressive-router:^2.0" "zendframework/zend-expressive-fastroute:^2.0" "zendframework/zend-expressive-platesrenderer:^2.0"
. This is something we can easily document in the migration guide.
As such, I think if we were to follow my recommendation about a new RouteResult::fromRoute()
method, we could do the following:
-
A 1.3.0 release of zend-expressive-router with the
RouteResult
change, as well as the other changes suggested in zendframework/zend-expressive#398. -
A 2.0.0 release of zend-expressive-router with the removal of the
RouteResult*Interface
s, and theRouterInterface::generateUri()
signature changes. -
New minor releases of each router implementation that pin to the zend-expressive-router 1.3.0 release (so we can make use of the stored
Route
in theRouteResult
instance). -
New major releases of each router implementation that pin to the zend-expressive-router 2.0.0 release (so we can update the
generateUri()
signatures). -
New major release of zend-expressive-helpers pinning to zend-expressive-router's 2.0.0 release, so that we can update
UrlHelper::__invoke()
and make use of the newgenerateUri()
signature. -
New major releases of zend-expressive-(twig|plates|zendview)renderer packages that pin to the new zend-expressive-helpers major release, so that they may update their own helpers.
Expressive 1.1 can then pin to zend-expressive-router ^1.3 || ^2.0
, and pin each of the routers listed in the dev requirements to their latest v1 minor releases OR 2.0 series (e.g., "zendframework/zend-expressive-fastroute": "^1.3 || ^2.0"
; as the functionality tested in zend-expressive is unrelated to the BC changes they introduce, we can do this). We would also update the skeleton to prefer the latest versions of each.
How does this sound?
I get comment notifications via https://giscus.co/, so feel free to comment here if desired. Once we reach consensus, we can start opening issues and updating the Expressive 1.1 project.
I didn't get a Giscus notification for that initial mention, so feel free to ping me via e-mail or Twitter if I don't respond to any followups for too long.
Adding a $path parameter to RouteResult::fromRouteMatch().
This make sense to me. I think it'd be a good idea as well to have the new
::fromRoute(...)
method set whatever additional properties are going to be unique to it, and then proxy to::fromRouteMatch(...)
to do the rest in order to minimize the copy-pasta.Should
::fromRouteMatch(...)
be deprecated as well for removal in the next major release (whenever that may be), since it's going to end up being a subset of what::fromRoute(...)
does, or should we leave it alone?Removal of
RouteResultObserverInterface
andRouteResultSubjectInterface
+Changes to RouterInterface::generateUri() signature.
This is true but technically,
Zend\Expressive\Application
does implementRouter\RouteResultSubjectInterface
and has the various attach/detach methods, so if someone is using them, it would be a BC break. I'd be 100% OK with it if we were emitting deprecation warnings for them already, but it looks like we've only got phpDoc annotations for them (which makes me only 99% OK with it). The annotations do say it will all go away in1.1
, so anybody who has looked at the source code or has a decent IDE knows this, but, again, it's technically a BC break. As such, I want to flag that explicitly before going ahead with that approach. Yeah, they shouldn't be using it, but we can't guarantee it.Being the uncompromising advocate of CI and automated testing that I am, however, I'm totally OK with taking the
1.1
approach if you both agree with it after reading the above. The most basic of unit tests would catch all that, after all. :)I am behind on issue participation but will take a look at that one when I've got a good chunk of time, since it looks long. If the changes don't break BC, then I'm π once I make the
RouteResult
changes.Those all make sense to me, and it's nice that we'll be able to make the
RouteResult
change available in a minor release.Sounds good to me! π
Now that we've got a bit more of a focused plan and the release quandary is more clear, it should be easier to make some progress. I'll work on the items in the original comment as time arises for me, and hold off on the additional open issues that @xtreamwayz cited so we don't double up on the work.