Skip to content

Commit

Permalink
Merge branch 'master' into feat-domain-fetcher-circuit-breaker
Browse files Browse the repository at this point in the history
  • Loading branch information
jordevo committed May 31, 2024
2 parents 0c54b7a + b1b8f63 commit 84b55c4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
19 changes: 15 additions & 4 deletions packages/sui-react-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# CHANGELOG

# 1.17.0 (2024-05-29)


### Bug Fixes

* fix command ([51972e7](https://github.com/SUI-Components/sui/commit/51972e78ca10c9236e8a0f6853bc34ad4b0af14e))


### Features

* export context ([976998d](https://github.com/SUI-Components/sui/commit/976998d8a631e36eea1bf3e54011279b1a0f2770))



# 1.16.0 (2023-11-06)


Expand Down Expand Up @@ -206,7 +220,4 @@
### Performance Improvements

* **sui-react-router:** avoid re-renderer of consumers because creating new object on every render o ([4a67f35](https://github.com/SUI-Components/sui/commit/4a67f35a31c50262d7006c0a55af5043c3d9b592))
* **sui-react-router:** load from history only what is needed ([6f0e12c](https://github.com/SUI-Components/sui/commit/6f0e12c6f654892a980f449b777dd4fed92cc959))



* **sui-react-router:** load from history only what is needed ([6f0e12c](https://github.com/SUI-Components/sui/commit/6f0e12c6f654892a980f449b777dd4fed92cc959))
5 changes: 3 additions & 2 deletions packages/sui-react-router/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@s-ui/react-router",
"version": "1.16.0",
"version": "1.17.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"lib": "babel --presets sui ./src --out-dir ./lib",
"lib": "sui-js-compiler",
"prepublishOnly": "npm run lib",
"test": "npm run test:server && npm run test:browser",
"test:browser": "NODE_ENV=test sui-test browser -P 'test/browser/*Spec.js'",
Expand All @@ -25,6 +25,7 @@
"hoist-non-react-statics": "3.3.2"
},
"devDependencies": {
"@s-ui/js-compiler": "1",
"@testing-library/react": "11.1.0",
"react": "17",
"react-dom": "17",
Expand Down
3 changes: 3 additions & 0 deletions packages/sui-react-router/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@ export {default as match} from './match.js'
/* histories */
export {default as browserHistory} from './browserHistory.js'

/* context */
export {default as RouterContext} from './internal/Context.js'

/* hooks */
export {useLocation, useParams, useRouter} from './hooks.js'

0 comments on commit 84b55c4

Please sign in to comment.