author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
580,240 | 08.01.2018 16:37:18 | 21,600 | 4212a0530b74ed4d97050b0b11fc9b72f23bd2f3 | feat(router5-helpers): Add type definitions | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "packages/router5-helpers/index.d.ts",
"diff": "+declare module 'router5-helpers' {\n+ import { ActivationFnFactory, Params, State } from 'router5'\n+\n+ export type ApplySegmentFn = (segment: string) => boolean\n+ export type RedirectToFn = (\n+... | TypeScript | MIT License | router5/router5 | feat(router5-helpers): Add type definitions |
580,249 | 09.01.2018 09:12:37 | 0 | 33c6ac5a614e157dc2a8fc00cc97fdac1df050e2 | chore: link typings | [
{
"change_type": "MODIFY",
"old_path": "packages/router5-helpers/package.json",
"new_path": "packages/router5-helpers/package.json",
"diff": "\"bugs\": {\n\"url\": \"https://github.com/router5/router5/issues\"\n},\n- \"homepage\": \"https://router5.github.io\"\n+ \"homepage\": \"https://router5.gith... | TypeScript | MIT License | router5/router5 | chore: link typings |
580,249 | 26.12.2017 11:52:01 | 0 | 8af7a6ed1dbfa291dd214f0cc8caf6b5efd65660 | fix: fix clone function to include route specific config like forwardTo | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/clone.js",
"new_path": "packages/router5/modules/core/clone.js",
"diff": "@@ -17,6 +17,7 @@ export default function withCloning(router, createRouter) {\nclonedRouter.useMiddleware(...router.getMiddlewareFactories())\nclonedRouter.... | TypeScript | MIT License | router5/router5 | fix: fix clone function to include route specific config like forwardTo |
580,249 | 24.01.2018 21:02:45 | 0 | 092c44a012ecb76260a7dbce38c11b1e17fba678 | feat: add support for routing state params encoders and decoders | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/utils.js",
"new_path": "packages/router5/modules/core/utils.js",
"diff": "@@ -97,7 +97,11 @@ export default function withUtils(router) {\n}\nconst { useTrailingSlash, strictQueryParams } = options\n- return router.rootNode.buildPa... | TypeScript | MIT License | router5/router5 | feat: add support for routing state params encoders and decoders |
580,249 | 24.01.2018 21:47:38 | 0 | 64fd71b31f41a056c45cea7f1b1b209e5870d805 | feat: add support for route default params | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/navigation.js",
"new_path": "packages/router5/modules/core/navigation.js",
"diff": "@@ -75,7 +75,7 @@ export default function withNavigation(router) {\nconst toState = router.makeState(\nroute.name,\nroute.params,\n- router.buildP... | TypeScript | MIT License | router5/router5 | feat: add support for route default params |
580,249 | 25.01.2018 20:30:40 | 0 | 724126a27591459d9f7fb0bb912570c7834ebe1f | refactor: use default params on match after decoding | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/utils.js",
"new_path": "packages/router5/modules/core/utils.js",
"diff": "@@ -135,15 +135,19 @@ export default function withUtils(router) {\nconst decodedParams = router.config.decoders[name]\n? router.config.decoders[name](params... | TypeScript | MIT License | router5/router5 | refactor: use default params on match after decoding |
580,256 | 08.02.2018 08:50:53 | -25,200 | 38cc67ef83529413b0f17773be46994e4a2fc877 | fix: Fixed state ID generation to not duplicate on rehydration | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/create-router.js",
"new_path": "packages/router5/modules/create-router.js",
"diff": "@@ -186,6 +186,10 @@ function createRouter(routes, opts = {}, deps = {}) {\n*/\nfunction setState(state) {\nrouterState = state\n+\n+ if(state && stat... | TypeScript | MIT License | router5/router5 | fix: Fixed state ID generation to not duplicate on rehydration |
580,249 | 13.02.2018 23:10:10 | 0 | b14647543ab6dd356bc812cd070f8f9222fe8103 | fix: when forwarding, apply default params from initial and final routes | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/navigation.js",
"new_path": "packages/router5/modules/core/navigation.js",
"diff": "@@ -47,7 +47,7 @@ export default function withNavigation(router) {\n* @return {Function} A cancel function\n*/\nfunction navigate(...args) {\n- co... | TypeScript | MIT License | router5/router5 | fix: when forwarding, apply default params from initial and final routes |
580,249 | 13.02.2018 23:17:14 | 0 | 4c4f9fb2a097ec13249897f2827142772dd7586e | test: update forwarding with default params test | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/test/core/navigation.js",
"new_path": "packages/router5/test/core/navigation.js",
"diff": "@@ -182,29 +182,28 @@ describe('core/navigation', function() {\n})\n})\n- it('should forward a route to another route on start', done => {\n+ it('should... | TypeScript | MIT License | router5/router5 | test: update forwarding with default params test |
580,249 | 05.03.2018 09:22:02 | 0 | 38b9426b298d17fe51f1e6fe697b4cc73eb0fa8f | fix: update route-node to latest version (5.0.3) | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/package.json",
"new_path": "packages/router5/package.json",
"diff": "},\n\"homepage\": \"http://router5.github.io\",\n\"dependencies\": {\n- \"route-node\": \"2.0.2\",\n+ \"route-node\": \"2.0.3\",\n\"router5-transition-path\": \"^5.1.1\"\n},\... | TypeScript | MIT License | router5/router5 | fix: update route-node to latest version (5.0.3) |
580,249 | 05.03.2018 10:08:38 | 0 | d35c4d0463c7620ed809d77849c20695a5056ee2 | chore: update router5 version | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/package.json",
"new_path": "packages/router5/package.json",
"diff": "{\n\"name\": \"router5\",\n- \"version\": \"5.8.2\",\n+ \"version\": \"5.8.3\",\n\"description\": \"A simple, powerful, view-agnostic, modular and extensible router\",\n\"mai... | TypeScript | MIT License | router5/router5 | chore: update router5 version |
580,249 | 05.03.2018 10:10:33 | 0 | 2b22ccaafdf533da995b9b7dfde8bcb842497cc4 | chore: revert version bump (will be done by lerna) | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/package.json",
"new_path": "packages/router5/package.json",
"diff": "{\n\"name\": \"router5\",\n- \"version\": \"5.8.3\",\n+ \"version\": \"5.8.2\",\n\"description\": \"A simple, powerful, view-agnostic, modular and extensible router\",\n\"mai... | TypeScript | MIT License | router5/router5 | chore: revert version bump (will be done by lerna) |
580,249 | 06.03.2018 14:03:51 | 0 | a1ec3c13b15b59dc387f32945a67ce5ab8afe4e9 | feat: add successCallback and errorCallback props to React links | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/BaseLink.js",
"new_path": "packages/react-router5/modules/BaseLink.js",
"diff": "@@ -15,6 +15,7 @@ class BaseLink extends Component {\nthis.isActive = this.isActive.bind(this)\nthis.clickHandler = this.clickHandler.bind(this)\n+ ... | TypeScript | MIT License | router5/router5 | feat: add successCallback and errorCallback props to React links |
580,249 | 06.03.2018 14:20:10 | 0 | f6371a888d6a2143b548f0a7838c90b2c3d409a2 | fix: don't pass new callback prorps to underlying hyperlink | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/BaseLink.js",
"new_path": "packages/react-router5/modules/BaseLink.js",
"diff": "@@ -83,6 +83,8 @@ class BaseLink extends Component {\nrouter,\nchildren,\nonClick,\n+ successCallback,\n+ errorCallback,\n...linkProps\n} = this.pro... | TypeScript | MIT License | router5/router5 | fix: don't pass new callback prorps to underlying hyperlink |
580,240 | 06.03.2018 17:03:33 | 21,600 | ec55c14f898cd3b0e02a11a6d7daf05d46994879 | feat(react-router5): Update type definitions
This adds the `successCallback` and `errorCallback` properties to
`BaseLink`. | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/index.d.ts",
"new_path": "packages/react-router5/index.d.ts",
"diff": "@@ -29,6 +29,8 @@ declare module 'react-router5' {\nactiveStrict?: boolean\nonClick?: MouseEventHandler<HTMLAnchorElement>\nonMouseOver?: MouseEventHandler<HTMLAnchor... | TypeScript | MIT License | router5/router5 | feat(react-router5): Update type definitions
This adds the `successCallback` and `errorCallback` properties to
`BaseLink`. |
580,249 | 14.03.2018 17:46:34 | 0 | 692bc375333bb28fed7f21bd879df4a91fb83d1b | refactor: change makeState signature
BREAKING CHANGE: private method router.makeState signature has changed | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/navigation.js",
"new_path": "packages/router5/modules/core/navigation.js",
"diff": "@@ -76,7 +76,7 @@ export default function withNavigation(router) {\nroute.name,\nroute.params,\nrouter.buildPath(route.name, route.params),\n- rou... | TypeScript | MIT License | router5/router5 | refactor: change makeState signature
BREAKING CHANGE: private method router.makeState signature has changed |
580,249 | 15.03.2018 13:55:59 | 0 | 418c09e5236c054f46bbdb387cb64aebd07c56df | feat: add navigation options to state meta | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/navigation.js",
"new_path": "packages/router5/modules/core/navigation.js",
"diff": "@@ -76,7 +76,7 @@ export default function withNavigation(router) {\nroute.name,\nroute.params,\nrouter.buildPath(route.name, route.params),\n- { p... | TypeScript | MIT License | router5/router5 | feat: add navigation options to state meta |
580,249 | 15.03.2018 14:25:56 | 0 | 2d3dc1d22cf1b5517030e4ed3a95a947d40f50b2 | fix: support URL changes in IE11 when 'useHash' is true | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/plugins/browser/browser.js",
"new_path": "packages/router5/modules/plugins/browser/browser.js",
"diff": "@@ -16,15 +16,30 @@ const isBrowser = typeof window !== 'undefined' && window.history\n*/\nconst getBase = () => window.location.p... | TypeScript | MIT License | router5/router5 | fix: support URL changes in IE11 when 'useHash' is true |
580,249 | 15.03.2018 22:05:29 | 0 | 98e553e4a18819be698f1a9ca36730aa0a9c0347 | test: add middleware chaining tests | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/transition/resolve.js",
"new_path": "packages/router5/modules/transition/resolve.js",
"diff": "@@ -42,7 +42,7 @@ export default function resolve(\n_done(null, state)\n}\n}\n- const res = stepFn.call(null, toState, fromState, done)\n+ c... | TypeScript | MIT License | router5/router5 | test: add middleware chaining tests |
580,249 | 15.03.2018 22:21:41 | 0 | e2e09b4056ea29d3211473be1c643a38cbfb981d | refacto: update doc blocks | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/create-router.js",
"new_path": "packages/router5/modules/create-router.js",
"diff": "@@ -130,8 +130,7 @@ function createRouter(routes, opts = {}, deps = {}) {\n* @param {String} name The state name\n* @param {Object} params The state p... | TypeScript | MIT License | router5/router5 | refacto: update doc blocks |
580,249 | 03.04.2018 20:52:21 | -3,600 | 39ef295be6f8b0b322a7fa404ac88a4bd2972cf1 | refactor: update to route-node v3 | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/index.d.ts",
"new_path": "packages/router5/index.d.ts",
"diff": "@@ -97,6 +97,11 @@ declare module 'router5/constants' {\ndeclare module 'router5/create-router' {\nimport { ActivationFnFactory } from 'router5/core/route-lifecycle'\nimport { Op... | TypeScript | MIT License | router5/router5 | refactor: update to route-node v3 |
580,249 | 04.04.2018 22:54:25 | -3,600 | 0ced8e32f7e570b31869c720786b726d2b67e235 | feat: add RouteProvider and Route components, using React's new context API | [
{
"change_type": "MODIFY",
"old_path": ".eslintrc",
"new_path": ".eslintrc",
"diff": "{\n- \"extends\": \"eslint:recommended\",\n+ \"extends\": [\n+ \"eslint:recommended\"\n+ ],\n// Parser\n\"parser\": \"babel-eslint\",\n+ \"plugins\": [\n+ \"react\"\n+ ],\n// ECMA Features\n\"parserOptions\": {\n\"... | TypeScript | MIT License | router5/router5 | feat: add RouteProvider and Route components, using React's new context API |
580,249 | 04.04.2018 23:29:53 | -3,600 | 35d9a98729309a43ec066354dbbfc34cc5f9b602 | refactor: use old context APi in RouteProvider to keep compatibility with links | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/RouteProvider.js",
"new_path": "packages/react-router5/modules/RouteProvider.js",
"diff": "@@ -47,6 +47,10 @@ class RouteProvider extends React.PureComponent {\nthis.router.removeListener(this.listener)\n}\n+ getChildContext() {\... | TypeScript | MIT License | router5/router5 | refactor: use old context APi in RouteProvider to keep compatibility with links |
580,249 | 07.04.2018 16:42:57 | -3,600 | 58af72e1c176a89cdc5027f080667465dd0baba4 | feat: add RouteNode component, using React new context API | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/RouteProvider.js",
"new_path": "packages/react-router5/modules/RouteProvider.js",
"diff": "@@ -7,12 +7,10 @@ const emptyCreateContext = () => ({\nProvider: _ => _,\nConsumer: () => null\n})\n+\nconst createContext = React.createC... | TypeScript | MIT License | router5/router5 | feat: add RouteNode component, using React new context API |
580,249 | 09.04.2018 10:19:18 | -3,600 | df291f7c8120fed10c198f05d9d7988eab0da2da | chore: use now npm deploys | [
{
"change_type": "DELETE",
"old_path": "packages/docs/Dockerfile",
"new_path": null,
"diff": "-FROM node:8\n-\n-WORKDIR /app\n-\n-COPY package.json .\n-COPY yarn.lock .\n-\n-COPY server .\n-\n-RUN yarn\n-\n-EXPOSE 8081\n-CMD [ \"npm\", \"start\" ]\n"
},
{
"change_type": "MODIFY",
"old_pa... | TypeScript | MIT License | router5/router5 | chore: use now npm deploys |
580,249 | 15.04.2018 21:12:41 | -3,600 | 3219b827933984acbe924617391b2d10f67d868b | docs: update react-router5 docs | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/README.md",
"new_path": "packages/react-router5/README.md",
"diff": "> Higher-order components and components for React when using [router5](https://github.com/router5/router5).\n-\n### Installation\n```sh\n@@ -18,95 +17,95 @@ npm instal... | TypeScript | MIT License | router5/router5 | docs: update react-router5 docs |
580,249 | 18.04.2018 21:16:58 | -3,600 | 2dc9bec3b9799c8ea80642ca9967f61eb2060b50 | refactor: correct type definitions | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/index.d.ts",
"new_path": "packages/router5/index.d.ts",
"diff": "@@ -23,10 +23,6 @@ declare module 'router5' {\nActivationFn,\nActivationFnFactory\n} from 'router5/core/route-lifecycle'\n- import {\n- ActivationFn as RouterActivationHandler,\n... | TypeScript | MIT License | router5/router5 | refactor: correct type definitions |
580,249 | 19.04.2018 09:28:58 | -3,600 | a2880188e2154ed36c388f2f658217655a284bcd | feat: add caseSensitive option | [
{
"change_type": "MODIFY",
"old_path": "CHANGELOG.md",
"new_path": "CHANGELOG.md",
"diff": "-## router5@6.0.0 (2018-04-18)\n+## router5@6.0.0 (2018-04-19)\n#### Feature\n* `router5`\n* Navigation options are now added to state objects (in `meta`)\n* You can now specify your custom navigation options... | TypeScript | MIT License | router5/router5 | feat: add caseSensitive option |
580,249 | 19.04.2018 15:11:19 | -3,600 | 6f822607a332026fbe6bd097a83afcb317f36726 | chore: add homepage links | [
{
"change_type": "MODIFY",
"old_path": "packages/deku-router5/package.json",
"new_path": "packages/deku-router5/package.json",
"diff": "\"bugs\": {\n\"url\": \"https://github.com/router5/router5/issues\"\n},\n- \"homepage\": \"http://router5.github.com\",\n+ \"homepage\": \"https://github.com/router... | TypeScript | MIT License | router5/router5 | chore: add homepage links |
580,249 | 19.04.2018 23:19:32 | -3,600 | f5289bab13572b29cb55f932dfe4fd8d473db720 | feat: add shouldUpdateNode function | [
{
"change_type": "MODIFY",
"old_path": "packages/router5-transition-path/index.d.ts",
"new_path": "packages/router5-transition-path/index.d.ts",
"diff": "@@ -9,6 +9,10 @@ declare module 'router5-transition-path' {\ntoActivate: string[]\n}\n+ export function shouldUpdateNode(\n+ nodeName: string\n+ )... | TypeScript | MIT License | router5/router5 | feat: add shouldUpdateNode function |
580,249 | 20.04.2018 10:52:40 | -3,600 | ad72bc5058102599af3f72bb4b1e6ee4afc2a291 | feat: add subscribe function and observable compatibility, without the need to add a plugin | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/index.d.ts",
"new_path": "packages/router5/index.d.ts",
"diff": "@@ -17,6 +17,7 @@ declare module 'router5' {\nCancelFn,\nOptions as NavigationOptions\n} from 'router5/core/navigation'\n+ import { SubscribeFn, SubscribeState } from 'router5/co... | TypeScript | MIT License | router5/router5 | feat: add subscribe function and observable compatibility, without the need to add a plugin |
580,249 | 20.04.2018 11:12:34 | -3,600 | 8447a9cb53a0dcf4ec524096ab4d5c921d1fd5d7 | chore: use observable | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/create-router.js",
"new_path": "packages/router5/modules/create-router.js",
"diff": "@@ -3,6 +3,7 @@ import withUtils from './core/utils'\nimport withRouterLifecycle from './core/router-lifecycle'\nimport withNavigation from './core/na... | TypeScript | MIT License | router5/router5 | chore: use observable |
580,249 | 20.04.2018 11:11:46 | -3,600 | 4d40fe55f850c951b35ede279ccdbd7eb2b09d90 | feat: remove need for listeners plugin with React, smarter route node update | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/RouteProvider.js",
"new_path": "packages/react-router5/modules/RouteProvider.js",
"diff": "import React from 'react'\nimport PropTypes from 'prop-types'\n-import transitionPath from 'router5-transition-path'\n-import { ifNot } fr... | TypeScript | MIT License | router5/router5 | feat: remove need for listeners plugin with React, smarter route node update |
580,249 | 20.04.2018 11:26:15 | -3,600 | 7a39976b993f4995775f08430e447ef74a8d06d9 | fix: don't removing trailing slash from pathname when using hash | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/plugins/browser/browser.js",
"new_path": "packages/router5/modules/plugins/browser/browser.js",
"diff": "@@ -14,7 +14,7 @@ const isBrowser = typeof window !== 'undefined' && window.history\n/**\n* Browser functions needed by router5\n*... | TypeScript | MIT License | router5/router5 | fix: don't removing trailing slash from pathname when using hash |
580,249 | 20.04.2018 11:35:17 | -3,600 | 5ea5ab10ad00b94f139e255ae79962e342d8c74e | feat: smarter route node selector updates | [
{
"change_type": "MODIFY",
"old_path": "packages/redux-router5/modules/lib/routeNodeSelector.js",
"new_path": "packages/redux-router5/modules/lib/routeNodeSelector.js",
"diff": "-import transitionPath from 'router5-transition-path'\n+import { shouldUpdateNode } from 'router5-transition-path'\nfuncti... | TypeScript | MIT License | router5/router5 | feat: smarter route node selector updates |
580,249 | 20.04.2018 13:51:13 | -3,600 | 6b20007314ead420bbdf2575fbf870cd77c250b0 | chore: update dependency mapping prior to releasing | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/package.json",
"new_path": "packages/react-router5/package.json",
"diff": "\"homepage\": \"https://github.com/router5/router5/tree/master/packages/react-router5\",\n\"peerDependencies\": {\n\"react\": \"^0.14.0 || ^15.0.0 || ^16.0.0\",\n... | TypeScript | MIT License | router5/router5 | chore: update dependency mapping prior to releasing |
580,249 | 20.04.2018 15:25:10 | -3,600 | 92933d430e7149b29543e5e972d8461ba5552763 | docs: copy readme | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/README.md",
"new_path": "packages/router5/README.md",
"diff": "router5 is a **framework and view library agnostic router**.\n* **view / state separation**: router5 processes routing **instructions** and outputs **state** updates.\n-* **univser... | TypeScript | MIT License | router5/router5 | docs: copy readme |
580,249 | 20.04.2018 20:27:50 | -3,600 | 434e70d35a6f9be038f47f13ed387185e2fd460b | chore: update react-router5 peer dependency | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/package.json",
"new_path": "packages/react-router5/package.json",
"diff": "\"homepage\": \"https://github.com/router5/router5/tree/master/packages/react-router5\",\n\"peerDependencies\": {\n\"react\": \"^0.14.0 || ^15.0.0 || ^16.0.0\",\n... | TypeScript | MIT License | router5/router5 | chore: update react-router5 peer dependency |
580,249 | 01.05.2018 10:52:47 | -3,600 | a580f1431da686c3876cd617f850c80fc9346aeb | fix: update route-node to latest version | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/package.json",
"new_path": "packages/router5/package.json",
"diff": "},\n\"homepage\": \"http://router5.github.io\",\n\"dependencies\": {\n- \"route-node\": \"3.1.0\",\n+ \"route-node\": \"3.1.1\",\n\"router5-transition-path\": \"^5.3.0\",\n\"... | TypeScript | MIT License | router5/router5 | fix: update route-node to latest version |
580,249 | 01.05.2018 11:00:28 | -3,600 | edc6926efad076eea4c27153a66d71ff8bb05574 | fix: upgrade router5 transition path in yarn lock file | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/yarn.lock",
"new_path": "packages/react-router5/yarn.lock",
"diff": "@@ -226,9 +226,9 @@ react-test-renderer@^16.0.0-0:\nprop-types \"^15.6.0\"\nreact-is \"^16.3.1\"\n-router5-transition-path@^5.0.0:\n- version \"5.1.1\"\n- resolved \"ht... | TypeScript | MIT License | router5/router5 | fix: upgrade router5 transition path in yarn lock file |
580,249 | 01.05.2018 15:46:58 | -3,600 | 1a2f5fd184116b2aa1f895947ba4fb0dd01b3f47 | refactor: add hashchange event on IE11 only if useHash is true | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/plugins/browser/browser.js",
"new_path": "packages/router5/modules/plugins/browser/browser.js",
"diff": "@@ -25,21 +25,24 @@ const pushState = (state, title, path) =>\nconst replaceState = (state, title, path) =>\nwindow.history.replac... | TypeScript | MIT License | router5/router5 | refactor: add hashchange event on IE11 only if useHash is true |
580,249 | 12.05.2018 21:26:07 | -3,600 | 9bd943580692b567019383193b25a351f775edec | refactor: enhance stream library compatibility | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "\"lint-staged\": \"~3.6.1\",\n\"mocha\": \"~3.4.2\",\n\"mocha-lcov-reporter\": \"~1.3.0\",\n+ \"most\": \"~1.7.3\",\n\"prettier\": \"~1.10.2\",\n\"react\": \"~16.3.0\",\n\"react-addons-test-utils\": \"~15.6.2... | TypeScript | MIT License | router5/router5 | refactor: enhance stream library compatibility |
580,249 | 12.05.2018 21:37:22 | -3,600 | 0c402b0bcb67f4bf1cc2620bb9f45fe3f2a4e8d6 | test: add unsubscribe handler tests | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/core/observable.js",
"new_path": "packages/router5/modules/core/observable.js",
"diff": "@@ -15,7 +15,7 @@ function observerPlugin(router) {\nlisteners = listeners.concat(finalListener)\n- const unsubscribeHandler = unsubscribe(finalLi... | TypeScript | MIT License | router5/router5 | test: add unsubscribe handler tests |
580,249 | 14.05.2018 10:05:42 | -3,600 | 627f8c69c419d291d29f1ffe0809694d18c70e17 | fix: make sure pipe characters are encoded (Firefox issue) | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/plugins/browser/browser.js",
"new_path": "packages/router5/modules/plugins/browser/browser.js",
"diff": "@@ -48,7 +48,11 @@ const getLocation = opts => {\nconst path = opts.useHash\n? window.location.hash.replace(new RegExp('^#' + opts... | TypeScript | MIT License | router5/router5 | fix: make sure pipe characters are encoded (Firefox issue) |
580,249 | 14.05.2018 12:29:52 | -3,600 | 2e8d553d8a5cb0a28bf46c437ac83d2531085677 | chore: update route-node to latest patch | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/package.json",
"new_path": "packages/router5/package.json",
"diff": "},\n\"homepage\": \"http://router5.github.io\",\n\"dependencies\": {\n- \"route-node\": \"3.1.1\",\n+ \"route-node\": \"3.2.0\",\n\"router5-transition-path\": \"^5.3.0\",\n\"... | TypeScript | MIT License | router5/router5 | chore: update route-node to latest patch |
580,249 | 16.05.2018 11:35:39 | -3,600 | c4c4ea0e1da4a6141c147b972e2f0306efdf9825 | fix: fix subscribe method typings | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/index.d.ts",
"new_path": "packages/router5/index.d.ts",
"diff": "@@ -17,7 +17,11 @@ declare module 'router5' {\nCancelFn,\nOptions as NavigationOptions\n} from 'router5/core/navigation'\n- import { SubscribeFn, SubscribeState } from 'router5/c... | TypeScript | MIT License | router5/router5 | fix: fix subscribe method typings |
580,249 | 20.05.2018 17:56:28 | -3,600 | 8fdd8e1e41acd930107ea7b4a2347ae8db4f816a | docs: add why router5 | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "docs/introduction/why-router5.md",
"diff": "+# Why router5?\n+\n+`router5` is part of a new generation of routers: instead of rendering \"views\" or \"pages\", router5 outputs its state. The main idea behind router5 is to treat routing state lik... | TypeScript | MIT License | router5/router5 | docs: add why router5 |
580,249 | 20.05.2018 19:10:55 | -3,600 | d2e1c94ac9fc64bd6439d7481292d29dd3b57959 | docs: correctly add youtube video link | [
{
"change_type": "MODIFY",
"old_path": "docs/introduction/why-router5.md",
"new_path": "docs/introduction/why-router5.md",
"diff": "\"Traditional\" routing has been heavily influenced by server-side routing, which is stateless, while client-side routing is stateful. Watch my talk at ReactiveConf 201... | TypeScript | MIT License | router5/router5 | docs: correctly add youtube video link |
580,249 | 21.05.2018 12:16:08 | -3,600 | 1a6a16987910a1665673fac655d6964eba6c81a1 | docs: add ohter introductory pages | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "docs/SUMMARY.md",
"diff": "+# Table of Contents\n+\n+* [Read Me](../README.md)\n+* [Introduction](introduction/README.md)\n+ * [Why router5?](introduction/why-router5.md)\n+ * [Getting Started](introduction/getting-started.md)\n+ * [Ecosystem](i... | TypeScript | MIT License | router5/router5 | docs: add ohter introductory pages |
580,249 | 21.05.2018 12:26:43 | -3,600 | 605d56c202dd15ec112a6a35e58a4a90f8a3fbbb | docs: add migration pages | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "# Table of Contents\n* [Read Me](../README.md)\n-* [Introduction](introduction/README.md)\n+* Introduction\n* [Why router5?](introduction/why-router5.md)\n* [Getting Started](introduction/getting-starte... | TypeScript | MIT License | router5/router5 | docs: add migration pages |
580,249 | 21.05.2018 12:45:39 | -3,600 | e6482b3c0a94aeed02d2add1b244aa963dda2d68 | docs: add overview section | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "# Table of Contents\n-* [Read Me](../README.md)\n* Introduction\n* [Why router5?](introduction/why-router5.md)\n* [Getting Started](introduction/getting-started.md)\n* [Ecosystem](introduction/ecosystem... | TypeScript | MIT License | router5/router5 | docs: add overview section |
580,249 | 21.05.2018 12:55:14 | -3,600 | aadf734e5f0598b8a65f4ce9148b79ddb2116e6c | docs: add defining routes and router options pages | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "# Table of Contents\n+* [Read Me](../README.md)\n* Introduction\n* [Why router5?](introduction/why-router5.md)\n* [Getting Started](introduction/getting-started.md)\n* Overview\n* [Core concepts](overvi... | TypeScript | MIT License | router5/router5 | docs: add defining routes and router options pages |
580,249 | 21.05.2018 13:04:53 | -3,600 | ff1744e3f68ee47813555cf5296eae92692c0335 | docs: update defining routes | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Transition phase](overview/transition.md)\n* Guides\n* [Defining routes](guides/defining-routes.md)\n+ * [Path Syntax](guides/path-syntax.md)\n* [Router options](guides/router-options.md)\n* Migratio... | TypeScript | MIT License | router5/router5 | docs: update defining routes |
580,249 | 21.05.2018 13:10:04 | -3,600 | b3baeed6ec7337c485b02cac5c533756306b7f10 | docs: add path syntax doc | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "docs/guides/path-syntax.md",
"diff": "+# Path syntax\n+\n+{% hint %}\n+_router5_ uses [path-parser](https://github.com/troch/path-parser) for parsing, matching and generating URLs\n+{% endhint %}\n+\n+## Defining parameters\n+\n+Four parameter t... | TypeScript | MIT License | router5/router5 | docs: add path syntax doc |
580,249 | 21.05.2018 13:15:12 | -3,600 | 67987516cca533615b6a46268d5fa093eca4714f | docs: add navigatiing guide | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Defining routes](guides/defining-routes.md)\n* [Path Syntax](guides/path-syntax.md)\n* [Router options](guides/router-options.md)\n+ * [Navigating](guides/navigating.md)\n* Migration\n* [Migrating fr... | TypeScript | MIT License | router5/router5 | docs: add navigatiing guide |
580,249 | 21.05.2018 13:22:11 | -3,600 | 2b91d117f4661b5dfdff190bd70a3a3ddc97711d | docs: add observability page | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Path Syntax](guides/path-syntax.md)\n* [Router options](guides/router-options.md)\n* [Navigating](guides/navigating.md)\n+ * [Observability](guides/observability.md)\n* Migration\n* [Migrating from 5... | TypeScript | MIT License | router5/router5 | docs: add observability page |
580,249 | 21.05.2018 13:24:10 | -3,600 | 4707390ceafe457355df7f059fb9a6f462206ed6 | docs: add browser plugin page | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Router options](guides/router-options.md)\n* [Navigating](guides/navigating.md)\n* [Observability](guides/observability.md)\n+ * [In the browser](guides/browser.md)\n* Migration\n* [Migrating from 5.... | TypeScript | MIT License | router5/router5 | docs: add browser plugin page |
580,249 | 21.05.2018 13:28:33 | -3,600 | d08b473baee10e3d1cc9bc3ec7db094642398646 | docs: update observability state change | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Path Syntax](guides/path-syntax.md)\n* [Router options](guides/router-options.md)\n* [Navigating](guides/navigating.md)\n- * [Observability](guides/observability.md)\n* [In the browser](guides/browse... | TypeScript | MIT License | router5/router5 | docs: update observability state change |
580,249 | 21.05.2018 15:01:57 | -3,600 | 1fe65f8ec7bfc42e9ea56a4ac9a358fe0b1da007 | docs: add prevent navigation and redirecting pages | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Navigating](guides/navigating.md)\n* [In the browser](guides/browser.md)\n* [Observing state](guides/observability.md)\n+* Advanced\n+ * [Preventing navigation](advanced/preventing-navigation.md)\n+ ... | TypeScript | MIT License | router5/router5 | docs: add prevent navigation and redirecting pages |
580,249 | 21.05.2018 16:09:58 | -3,600 | 5403d2c983cfa9ab18315ac34ad5d5591d278390 | docs: add async data doc | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* Advanced\n* [Preventing navigation](advanced/preventing-navigation.md)\n* [Errors and redirections](advanced/errors-redirections.md)\n+ * [Loading async data](advanced/async-data.md)\n* Migration\n* [... | TypeScript | MIT License | router5/router5 | docs: add async data doc |
580,249 | 21.05.2018 16:23:39 | -3,600 | cafd5beedcf6b8c96237dca33d34921035c0ceb1 | docs: add universal routing doc | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Preventing navigation](advanced/preventing-navigation.md)\n* [Errors and redirections](advanced/errors-redirections.md)\n* [Loading async data](advanced/async-data.md)\n+ * [Universal routing](advanc... | TypeScript | MIT License | router5/router5 | docs: add universal routing doc |
580,249 | 21.05.2018 16:28:32 | -3,600 | 7b334caee338d77f02e29897ed5a5f4698da1278 | docs: add middleware and plugins pages | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [In the browser](guides/browser.md)\n* [Observing state](guides/observability.md)\n* Advanced\n+ * [Plugins](advanced/plugins.md)\n+ * [Middleware](advanced/middleware.md)\n* [Preventing navigation](a... | TypeScript | MIT License | router5/router5 | docs: add middleware and plugins pages |
580,249 | 21.05.2018 16:30:00 | -3,600 | 09c45a98eb25146c3f585ea1e6f208e3e2fda985 | docs: add dependency injection docs | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Middleware](advanced/middleware.md)\n* [Preventing navigation](advanced/preventing-navigation.md)\n* [Errors and redirections](advanced/errors-redirections.md)\n+ * [Dependency injection](advanced/de... | TypeScript | MIT License | router5/router5 | docs: add dependency injection docs |
580,249 | 21.05.2018 16:35:55 | -3,600 | a4b4dac75e65a8dfe93df6eebe7a05a9a2c0400b | docs: add with React and with Redux pages | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Navigating](guides/navigating.md)\n* [In the browser](guides/browser.md)\n* [Observing state](guides/observability.md)\n+ * [With React](guides/with-react.md)\n+ * [With Redux](guides/with-redux.md)\... | TypeScript | MIT License | router5/router5 | docs: add with React and with Redux pages |
580,249 | 21.05.2018 16:38:40 | -3,600 | 984711113952d2f4bb6ce2315134440c545f7de3 | docs: move overview into introduction | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Why router5?](introduction/why-router5.md)\n* [Getting Started](introduction/getting-started.md)\n* [Ecosystem](introduction/ecosystem.md)\n-* Overview\n- * [Core concepts](overview/core-concepts.md)... | TypeScript | MIT License | router5/router5 | docs: move overview into introduction |
580,249 | 21.05.2018 21:06:12 | -3,600 | 98d5be429999fd2d8b8a9404be8acf9092a662e0 | docs: add with redux docs and redux-router5 readme | [
{
"change_type": "MODIFY",
"old_path": "docs/guides/with-redux.md",
"new_path": "docs/guides/with-redux.md",
"diff": "# With Redux\n+\n+\n+## Demo and example with Redux\n+\n+* [https://stackblitz.com/edit/react-redux-router5](https://stackblitz.com/edit/react-redux-router5)\n+\n+\n+## How to use\n+... | TypeScript | MIT License | router5/router5 | docs: add with redux docs and redux-router5 readme |
580,249 | 21.05.2018 21:10:29 | -3,600 | 105bc8209894a49ad12428082acb5f97be8962fe | docs: move react and redux section | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Navigating](guides/navigating.md)\n* [In the browser](guides/browser.md)\n* [Observing state](guides/observability.md)\n- * [With React](guides/with-react.md)\n- * [With Redux](guides/with-redux.md)\... | TypeScript | MIT License | router5/router5 | docs: move react and redux section |
580,249 | 21.05.2018 22:15:27 | -3,600 | 9ba861970979f87a74509bf330c1de4b1ac55e3e | docs: add listeners plugin page | [
{
"change_type": "MODIFY",
"old_path": "docs/SUMMARY.md",
"new_path": "docs/SUMMARY.md",
"diff": "* [Dependency injection](advanced/dependency-injection.md)\n* [Loading async data](advanced/async-data.md)\n* [Universal routing](advanced/universal-routing.md)\n+ * [Listeners plugin](advanced/listener... | TypeScript | MIT License | router5/router5 | docs: add listeners plugin page |
580,249 | 21.05.2018 22:25:30 | -3,600 | 370752c7aeaa1c1b0f60d5741b6b3691fe27485e | docs: update router5 docs URL | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "[](https://gitter.im/router5/router5?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[ integration with react\n-- [redux-router5](https://github.com/ro... | TypeScript | MIT License | router5/router5 | chore: delete capitalised md file (Ecosystem) |
580,249 | 02.06.2018 08:58:53 | -3,600 | e2cda75f2486ac3216395cd7406a7f8bf84186c7 | chore: improve middleware TS definition | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/index.d.ts",
"new_path": "packages/router5/index.d.ts",
"diff": "@@ -202,7 +202,7 @@ declare module 'router5/core/middleware' {\ntoState: State,\nfromState: State,\ndone: DoneFn\n- ) => boolean | Promise<boolean> | void\n+ ) => boolean | Promi... | TypeScript | MIT License | router5/router5 | chore: improve middleware TS definition |
580,249 | 02.06.2018 09:13:53 | -3,600 | 9d3428f9853be2ae5ded1b5e9eeeedb7ac4cf50d | chore: add license badge, remove FOSSA | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "# Read Me\n-[](http://badge.fury.io/js/router5) [](https://travis-ci.org/router5/router5) [: integration with MobX\n* [react-mobx-router5](https://github.com/LeonardoGentile/react-mobx-router5): int... | TypeScript | MIT License | router5/router5 | docs: add link to marko integration |
580,249 | 19.08.2018 12:57:19 | -7,200 | a090c2ad7b31ec6e9ae0e052ec459ce8a8f44ce5 | fix: force all nodes to update if reload transition option is true | [
{
"change_type": "MODIFY",
"old_path": "packages/router5-transition-path/modules/shouldUpdateNode.js",
"new_path": "packages/router5-transition-path/modules/shouldUpdateNode.js",
"diff": "@@ -10,6 +10,10 @@ export default function shouldUpdateNode(nodeName) {\nconst toDeactivate = [...toDeactivateRe... | TypeScript | MIT License | router5/router5 | fix: force all nodes to update if reload transition option is true |
580,249 | 21.08.2018 09:31:55 | -7,200 | 77cbf3ea5e6b781afe3208a09d64c1e09b791d75 | fix: move route change subscription to constructor (new context) | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/RouteProvider.js",
"new_path": "packages/react-router5/modules/RouteProvider.js",
"diff": "@@ -22,9 +22,8 @@ class RouteProvider extends React.PureComponent {\npreviousRoute: null,\nrouter\n}\n- }\n- componentDidMount() {\n+ if (... | TypeScript | MIT License | router5/router5 | fix: move route change subscription to constructor (new context) |
580,249 | 21.08.2018 10:00:50 | -7,200 | b1523167cd3a8a6f4cce3eacb965090a2b94a510 | fix: move route change subscription to constructor (old context) | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/routeNode.js",
"new_path": "packages/react-router5/modules/routeNode.js",
"diff": "@@ -13,9 +13,8 @@ function routeNode(nodeName) {\npreviousRoute: null,\nroute: this.router.getState()\n}\n- }\n- componentDidMount() {\n+ if (type... | TypeScript | MIT License | router5/router5 | fix: move route change subscription to constructor (old context) |
580,249 | 22.08.2018 15:57:21 | -7,200 | 455cfcf0c72a1ae9c8364036f37a157a5deb8e7b | fix: fix listeners not registering | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/modules/routeNode.js",
"new_path": "packages/react-router5/modules/routeNode.js",
"diff": "@@ -14,7 +14,7 @@ function routeNode(nodeName) {\nroute: this.router.getState()\n}\n- if (typeof window === 'undefined') {\n+ if (typeof window !=... | TypeScript | MIT License | router5/router5 | fix: fix listeners not registering |
580,249 | 22.08.2018 21:57:07 | -7,200 | 108ee2fa084e7ffcd2febe0573f9c4d02ea3f82a | chore: fix redux example | [
{
"change_type": "MODIFY",
"old_path": "examples/react-redux/src/components/App.js",
"new_path": "examples/react-redux/src/components/App.js",
"diff": "@@ -3,7 +3,7 @@ import { connect } from 'react-redux'\nimport Nav from './Nav'\nimport Main from './Main'\n-export default function App({ emails }) ... | TypeScript | MIT License | router5/router5 | chore: fix redux example |
580,237 | 24.08.2018 15:45:35 | -25,200 | abc1ad2c6c99a946105d4ca397778671c0dc8421 | Update router-options.md
looks like a typo there | [
{
"change_type": "MODIFY",
"old_path": "docs/guides/router-options.md",
"new_path": "docs/guides/router-options.md",
"diff": "@@ -81,7 +81,7 @@ Option `trailingSlashMode` can take the following values:\n## Strict trailing slash\n-By default, the router is not in \"strict match\" mode. If you want tr... | TypeScript | MIT License | router5/router5 | Update router-options.md
looks like a typo there |
580,267 | 25.08.2018 11:08:33 | -10,800 | e53bc074bd36552eeb1baa6d962404b6e22d7896 | Fix code example in loading-async-data.md
Code does not actually call functions with promises.
Promise.all receives array of functions, and simply returns its, without calling. | [
{
"change_type": "MODIFY",
"old_path": "docs/advanced/loading-async-data.md",
"new_path": "docs/advanced/loading-async-data.md",
"diff": "@@ -57,7 +57,7 @@ const dataMiddlewareFactory = (routes) => (router) => (toState, fromState) => {\n.filter(Boolean)\nreturn Promise\n- .all(onActivateHandlers)\n+... | TypeScript | MIT License | router5/router5 | Fix code example in loading-async-data.md
Code does not actually call functions with promises.
Promise.all receives array of functions, and simply returns its, without calling. |
580,250 | 03.09.2018 16:23:10 | -7,200 | 766da878ac02f9b7b862ed3165af2c07010fe092 | Check if state has meta params before extracting segment params | [
{
"change_type": "MODIFY",
"old_path": "packages/router5-transition-path/modules/transitionPath.js",
"new_path": "packages/router5-transition-path/modules/transitionPath.js",
"diff": "@@ -13,7 +13,7 @@ function hasMetaParams(state) {\n}\nfunction extractSegmentParams(name, state) {\n- if (!exists(st... | TypeScript | MIT License | router5/router5 | Check if state has meta params before extracting segment params |
580,250 | 04.09.2018 10:13:20 | -7,200 | c5e93acaa316f4634f4556c6b5e95dcddbac9258 | Fix state set in router.replaceHistoryState | [
{
"change_type": "MODIFY",
"old_path": "packages/router5/modules/plugins/browser/index.js",
"new_path": "packages/router5/modules/plugins/browser/index.js",
"diff": "@@ -38,7 +38,13 @@ function browserPluginFactory(opts = {}, browser = safeBrowser) {\n}\nrouter.replaceHistoryState = function(name, p... | TypeScript | MIT License | router5/router5 | Fix state set in router.replaceHistoryState |
580,239 | 04.09.2018 16:31:06 | -25,200 | 553c388205e7d676c17975cf09ca93b39999197b | update broken links in examples/README.md | [
{
"change_type": "MODIFY",
"old_path": "examples/README.md",
"new_path": "examples/README.md",
"diff": "# Examples\n-* With React: [`code`](./examples/react) | [`live`](https://stackblitz.com/github/router5/router5/tree/master/examples/react)\n-* With React new context API: [`code`](./examples/react... | TypeScript | MIT License | router5/router5 | update broken links in examples/README.md |
580,239 | 05.09.2018 12:19:26 | -25,200 | 7a88a212cefcd3fe8f5b5e77b9b3d0992954d133 | upgrade prop-types in react-router5 to v15.6 | [
{
"change_type": "MODIFY",
"old_path": "packages/react-router5/package.json",
"new_path": "packages/react-router5/package.json",
"diff": "\"router5\": \">= 6.1.0 < 7.0.0\"\n},\n\"dependencies\": {\n- \"prop-types\": \"~15.5.10\",\n+ \"prop-types\": \"^15.6.0\",\n\"router5-transition-path\": \"^5.3.1... | TypeScript | MIT License | router5/router5 | upgrade prop-types in react-router5 to v15.6 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.