Is it possible to invoke shallow routing when using [with-url-object](https://nextjs.org/docs/api-reference/next/router#with-url-object)? I've tried using: ```js router.push( { pathname, query, shallow: router.pathname.includes(pathname), }, ) ``` Which always invokes `getInitalProps` If I use: ```js router.push( pathname, pathname, // TODO: expand query params here { shallow: router.pathname.includes(pathname), }, ) ``` Shallow routing works.