Skip to content

Commit 38f2e69

Browse files
committed
Merge branch 'release' into beta
# Conflicts: # src/components/footer.jsx
2 parents 82181c5 + 0a276f8 commit 38f2e69

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactive-pepyatka",
3-
"version": "1.141.2",
3+
"version": "1.141.3",
44
"description": "",
55
"main": "index.js",
66
"dependencies": {

src/app.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

7075
const store = configureStore(undefined, { history });

src/components/footer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function Footer({ short }) {
77
return (
88
<footer className="footer">
99
<p role="navigation">
10-
&copy; FreeFeed 1.141.2-beta (Oct 25, 2025)
10+
&copy; FreeFeed 1.141.3-beta (Oct 28, 2025)
1111
<br />
1212
<Link to="/about">About</Link>
1313
{' | '}

0 commit comments

Comments
 (0)