File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.141.3] - 2025-10-28
9+ ### Fixed
10+ - Preserve query parameters and hash when initializing browser history.
11+
812## [ 1.141.0] - 2025-09-22
913### Changed
1014- Migrate to React 19.
Original file line number Diff line number Diff line change 11{
22 "name" : " reactive-pepyatka" ,
3- "version" : " 1.141.2 " ,
3+ "version" : " 1.141.3 " ,
44 "description" : " " ,
55 "main" : " index.js" ,
66 "dependencies" : {
Original file line number Diff line number Diff line change @@ -64,7 +64,12 @@ const history = createBrowserHistory();
6464 } ) ;
6565
6666 // Initialize history API (assign some key to the current location)
67- history . replace ( { } ) ;
67+ const loc = history . location ;
68+ history . replace ( {
69+ pathname : loc . pathname ,
70+ search : loc . search ,
71+ hash : loc . hash ,
72+ } ) ;
6873}
6974
7075const store = configureStore ( undefined , { history } ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export default function Footer({ short }) {
77 return (
88 < footer className = "footer" >
99 < p role = "navigation" >
10- © FreeFeed 1.141.2 -beta (Oct 25 , 2025)
10+ © FreeFeed 1.141.3 -beta (Oct 28 , 2025)
1111 < br />
1212 < Link to = "/about" > About</ Link >
1313 { ' | ' }
You can’t perform that action at this time.
0 commit comments