Bump version to 1.3.1 and update release notes with SWR integration and progress bar implementation
parent
52af1ef10b
commit
a664a4ade9
|
@ -1,7 +1,7 @@
|
|||
<Project>
|
||||
<Import Project="dependencies.props" />
|
||||
<PropertyGroup>
|
||||
<Version>1.3.0</Version>
|
||||
<Version>1.3.1</Version>
|
||||
<Authors>Tudor Stanciu</Authors>
|
||||
<Company>STA</Company>
|
||||
<PackageTags>NetworkResurrector</PackageTags>
|
||||
|
|
|
@ -209,7 +209,19 @@
|
|||
• Unified repository structure - The backend and frontend codebases have been consolidated into a single repository, improving code management and cross-component consistency.
|
||||
• Frontend Upgrades - The frontend has been upgraded to leverage TypeScript, React 18, and Material UI 5, enhancing code quality, UI consistency, and leveraging the latest features of these technologies.
|
||||
• Build process overhaul - I've switched from react-scripts to react-app-rewired. This gives me more control to tweak the webpack configuration as I need. Plus, it's now set up to handle CommonJS (CJS) modules.
|
||||
• TypeScript refactoring - Several components have been rewritten in TypeScript, improving type safety and predictability in our codebase.
|
||||
• TypeScript refactoring - Several components have been rewritten in TypeScript, improving type safety and predictability in the codebase.
|
||||
</Content>
|
||||
</Note>
|
||||
<Note>
|
||||
<Version>1.3.1</Version>
|
||||
<Date>2024-11-16 02:28</Date>
|
||||
<Content>
|
||||
SWR integration and progress bar implementation
|
||||
• SWR has been integrated into the application to handle data fetching, caching, and revalidation. This will help improve the performance of the application by reducing the number of network requests and ensuring that the data is always up to date.
|
||||
• In this process, the application has been refactored to use SWR hooks for data fetching and caching, replacing the previous custom methods.
|
||||
• Also, several components have been updated to use TypeScript to continue the migration process started in the previous release.
|
||||
• A progress bar has been implemented to provide visual feedback to users when data is being fetched or processed.
|
||||
• The progress bar is displayed at the top of the page and shows the loading status of the application.
|
||||
</Content>
|
||||
</Note>
|
||||
</ReleaseNotes>
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "network-resurrector-frontend",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "network-resurrector-frontend",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.11.1",
|
||||
"@emotion/styled": "^11.11.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "network-resurrector-frontend",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"description": "Frontend component of Network resurrector system",
|
||||
"author": {
|
||||
"name": "Tudor Stanciu",
|
||||
|
|
Loading…
Reference in New Issue