Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency react-router-dom to v5.3.0 #1607

Merged
merged 1 commit into from Sep 16, 2021

Conversation

relativeci-bot
Copy link
Collaborator

@relativeci-bot relativeci-bot commented Sep 15, 2021

This PR contains the following updates:

Package Type Update Change
react-router-dom devDependencies minor 5.2.0 -> 5.3.0

Release Notes

ReactTraining/react-router

v5.3.0

Compare Source

This release of react-router-dom adds support for passing a function to either the className or style props to conditionally apply values based on the link's active state.

This provides similar functionality as the existing activeClassName and activeStyle props, but is a bit more powerful. For example, you can now easily apply styles exclusively to an inactive NavLink as well. This offers a nicer experience for folks who use utility class-based CSS tools such as Tailwind.

function Comp() {
  return (
    <NavLink
      to="/"
      className={isActive =>
        `px-3 py-2 ${isActive ? 'text-gray-200' : 'text-gray-800'}`
      }
    >
      Home
    </NavLink>
  );
}

Note that as of v6.0.0-beta.3, the activeClassName and activeStyle props are removed completely. Adding support for functional className and style props to both v5 and v6 will give v5 users an easier upgrade path.

Thanks to @​tim-phillips for raising the issue that inspired the change! 🥳

v5.2.1

Compare Source

This release fixes a bug with <Link> so that, when the to location is the same as the current, the history state entry is replaced instead of pushed to the stack. See remix-run/react-router#5362 for details. 🥳

Thanks to @​guidobouman for the PR and for everyone else who weighed in for the fix!


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Enabled.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by Renovate Bot.

@relativeci
Copy link

relativeci bot commented Sep 15, 2021

Job #3964: Bundle Size — 417.34KB (+0.31%).

a794dc7 vs bfa4bd9

Changed metrics (5/8)
Metric Current Baseline
Initial JS 385.84KB(+0.34%) 384.55KB
Cache Invalidation 92.43% 0%
Modules 799(+0.38%) 796
Packages 60(+1.69%) 59
Duplicate Packages 2(+100%) 1
Changed assets by type (1/7)
            Current     Baseline
JS 385.84KB (+0.34%) 384.55KB

View Job #3964 report on app.relative-ci.com

@vio vio merged commit 4f06c4c into update-dependencies Sep 16, 2021
@vio vio deleted the renovate/reactrouter-monorepo branch September 16, 2021 23:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants