|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to SVMSeek Wallet will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [Unreleased] |
| 9 | + |
| 10 | +### Added |
| 11 | +- Comprehensive CSS variables system for centralized theming |
| 12 | +- Enhanced TypeScript typing throughout the codebase |
| 13 | +- Route-level error boundaries for better error handling |
| 14 | +- Improved PWA installation prompt with proper state management |
| 15 | +- TODO comments for pending functionality implementation |
| 16 | +- Better import organization and cleanup |
| 17 | + |
| 18 | +### Changed |
| 19 | +- Migrated glassmorphism styles to use CSS variables globally |
| 20 | +- Improved WalletProviderContext with stricter TypeScript typing |
| 21 | +- Enhanced onboarding flow state management |
| 22 | +- Updated error boundaries to be more systematic and user-friendly |
| 23 | + |
| 24 | +### Fixed |
| 25 | +- Eliminated 'any' type usage in critical components |
| 26 | +- Improved route component prop passing |
| 27 | +- Enhanced PWA prompt dismissal and state reset logic |
| 28 | +- Fixed TypeScript compilation errors |
| 29 | + |
| 30 | +## [2.0.0] - 2024-01-15 |
| 31 | + |
| 32 | +### Added |
| 33 | +- **Complete rebranding from "Aldrin" to "SVMSeek"** |
| 34 | + - Updated all UI text, logos, and branding elements |
| 35 | + - Changed package name from `cryptocurrencies-ai-wallet` to `svmseek-wallet` |
| 36 | + - Updated URLs from `*.aldrin.com` to `svmseek.com` |
| 37 | + - Renamed logo assets (`Aldrin.svg` → `SVMSeek.svg`) |
| 38 | + - Updated PWA and extension manifests |
| 39 | + - Updated social links and README |
| 40 | + |
| 41 | +- **SVM-Pay Integration** (Cross-Network Payment Support) |
| 42 | + - Support for Solana, Sonic SVM, Eclipse, and S00N networks |
| 43 | + - Send payments across supported SVM networks |
| 44 | + - Generate payment requests with QR codes |
| 45 | + - Process payment URLs from external sources |
| 46 | + - Real-time network switching and configuration |
| 47 | + - Payment validation and error handling |
| 48 | + |
| 49 | +- **AEA Network Integration** (Autonomous Economic Agents) |
| 50 | + - Complete agent registry for browsing and discovering AEA agents |
| 51 | + - MCP server discovery and registration |
| 52 | + - Interactive search and filtering capabilities |
| 53 | + - Builder patterns for easy agent/server registration |
| 54 | + - Pagination support for large agent lists |
| 55 | + - URL validation and security features |
| 56 | + |
| 57 | +- **Mobile App Support** |
| 58 | + - Android APK build pipeline with GitHub Actions |
| 59 | + - Capacitor integration for native mobile app generation |
| 60 | + - Automated build workflow with debug and production variants |
| 61 | + - APK signing support for production releases |
| 62 | + - Mobile-optimized responsive design |
| 63 | + |
| 64 | +- **Web3 Browser Enhancement** |
| 65 | + - Full-featured dApp browser with navigation controls |
| 66 | + - Secure wallet injection for dApp interaction |
| 67 | + - History management and bookmark support |
| 68 | + - Address bar with URL validation |
| 69 | + - Iframe security and message passing |
| 70 | + |
| 71 | +- **Explorer Interface** |
| 72 | + - Real-time Solana blockchain data integration |
| 73 | + - Network statistics and performance metrics |
| 74 | + - Recent blocks and transactions display |
| 75 | + - Advanced search functionality (addresses, transactions, blocks) |
| 76 | + - Live data feeds replacing mock data |
| 77 | + |
| 78 | +- **Enhanced Security** |
| 79 | + - Scrypt and Argon2 encryption provider support |
| 80 | + - Future-proof encryption with version migration |
| 81 | + - Improved wallet seed encryption abstraction |
| 82 | + - Input validation utilities with security patterns |
| 83 | + - URL sanitization to prevent malicious inputs |
| 84 | + |
| 85 | +- **Developer Experience** |
| 86 | + - Comprehensive test coverage for all new components |
| 87 | + - Error boundaries with detailed error reporting |
| 88 | + - Centralized logging service for debugging |
| 89 | + - Animation constants for consistent UI timing |
| 90 | + - Glass morphism design system with utilities |
| 91 | + |
| 92 | +### Changed |
| 93 | +- **Major Dependency Upgrades** |
| 94 | + - React 16 → React 18 with new `createRoot` API |
| 95 | + - Material-UI v4 → MUI v6 with updated theme API |
| 96 | + - Node.js requirement updated from v14 to v20.18.0 |
| 97 | + - All dependencies updated to latest stable versions |
| 98 | + - Added Craco for webpack configuration overrides |
| 99 | + |
| 100 | +- **Breaking Changes Fixed** |
| 101 | + - Updated React 18 root rendering API in `src/index.tsx` |
| 102 | + - Fixed Material-UI theme API changes (`createMuiTheme` → `createTheme`, `type` → `mode`) |
| 103 | + - Added webpack polyfills for crypto, buffer, stream, and other Node.js modules |
| 104 | + - Fixed import paths and API changes for upgraded packages: |
| 105 | + - `bip32` v4: Updated to use `BIP32Factory` pattern |
| 106 | + - `qrcode.react` v4: Changed to named exports |
| 107 | + - `bs58`: Updated import patterns |
| 108 | + - Maintained React Router v5 compatibility to avoid extensive breaking changes |
| 109 | + |
| 110 | +- **UI/UX Improvements** |
| 111 | + - Glass morphism design language throughout the application |
| 112 | + - Smooth animations and micro-interactions |
| 113 | + - Responsive design for mobile and desktop |
| 114 | + - Dark/light theme support with system preference detection |
| 115 | + - Loading states and skeleton screens for better perceived performance |
| 116 | + |
| 117 | +### Technical Improvements |
| 118 | +- **Build System** |
| 119 | + - Added `craco.config.js` for webpack polyfill configuration |
| 120 | + - GitHub Actions workflow for automated APK builds |
| 121 | + - Gradle caching and build optimization |
| 122 | + - Environment-specific build configurations |
| 123 | + |
| 124 | +- **Code Quality** |
| 125 | + - TypeScript strict mode enabled |
| 126 | + - ESLint and Prettier configuration |
| 127 | + - Component testing with React Testing Library |
| 128 | + - Integration testing for critical user flows |
| 129 | + - Error boundary testing and validation |
| 130 | + |
| 131 | +- **Performance** |
| 132 | + - Code splitting and lazy loading for routes |
| 133 | + - Optimized bundle sizes with webpack analysis |
| 134 | + - Memory management improvements |
| 135 | + - Reduced animation overhead with `prefers-reduced-motion` support |
| 136 | + |
| 137 | +### Security |
| 138 | +- **Wallet Security** |
| 139 | + - Enhanced encryption methods (Scrypt, Argon2) |
| 140 | + - Secure key derivation with multiple algorithm support |
| 141 | + - Version migration for encryption upgrades |
| 142 | + - Input validation and sanitization |
| 143 | + |
| 144 | +- **Web3 Security** |
| 145 | + - Secure iframe communication patterns |
| 146 | + - Message validation for dApp interactions |
| 147 | + - URL sanitization to prevent XSS attacks |
| 148 | + - Content Security Policy implementation |
| 149 | + |
| 150 | +### Fixed |
| 151 | +- Webpack polyfill issues for browser compatibility |
| 152 | +- Material-UI deprecation warnings |
| 153 | +- React 18 compatibility issues |
| 154 | +- Mobile responsiveness on various screen sizes |
| 155 | +- Memory leaks in animation components |
| 156 | +- Build errors with latest Node.js versions |
| 157 | + |
| 158 | +### Known Issues |
| 159 | +- Some minor build warnings with deprecated Material-UI APIs (`makeStyles` → styled components) |
| 160 | +- Legacy `.js` files need TypeScript migration |
| 161 | +- Test coverage could be improved for edge cases |
| 162 | + |
| 163 | +### Migration Guide |
| 164 | +For users upgrading from Aldrin v1.x: |
| 165 | +1. All data and wallets are preserved during the rebrand |
| 166 | +2. Update bookmarks from `*.aldrin.com` to `svmseek.com` |
| 167 | +3. Re-install PWA if using the web app for updated branding |
| 168 | +4. Mobile users should download the new APK from releases |
| 169 | + |
| 170 | +### Dependencies |
| 171 | +- React: ^18.2.0 |
| 172 | +- MUI: ^6.0.0 |
| 173 | +- TypeScript: ^4.9.5 |
| 174 | +- Node.js: >=20.18.0 |
| 175 | +- @solana/web3.js: ^1.87.6 |
| 176 | +- svm-pay: ^1.0.0 |
| 177 | + |
| 178 | +## [1.0.0] - 2023-12-01 |
| 179 | + |
| 180 | +### Added |
| 181 | +- Initial release of Aldrin Wallet |
| 182 | +- Basic Solana wallet functionality |
| 183 | +- Token management and transfers |
| 184 | +- DEX integration |
| 185 | +- Material-UI based interface |
| 186 | + |
| 187 | +### Features |
| 188 | +- Seed phrase generation and import |
| 189 | +- Multi-token support |
| 190 | +- Transaction history |
| 191 | +- Basic security features |
| 192 | + |
| 193 | +--- |
| 194 | + |
| 195 | +## Versioning Strategy |
| 196 | + |
| 197 | +This project follows [Semantic Versioning](https://semver.org/): |
| 198 | + |
| 199 | +- **MAJOR** version when making incompatible API changes |
| 200 | +- **MINOR** version when adding functionality in a backwards compatible manner |
| 201 | +- **PATCH** version when making backwards compatible bug fixes |
| 202 | + |
| 203 | +## Support |
| 204 | + |
| 205 | +For questions about specific changes or migration help: |
| 206 | +- Open an issue on [GitHub](https://github.com/openSVM/svmseek/issues) |
| 207 | +- Visit our documentation at [docs.svmseek.com](https://docs.svmseek.com) |
| 208 | +- Join our community discussions |
0 commit comments