|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to NativeAppTemplate 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 | +- SwiftFormat for code formatting (with `--maxwidth 120`) |
| 12 | +- `@preconcurrency import CoreNFC` and `nonisolated(unsafe)` for Sendable fixes |
| 13 | + |
| 14 | +### Changed |
| 15 | +- Moved `.swiftlint.yml` to repository root with updated rules |
| 16 | +- Applied SwiftFormat across all source files |
| 17 | +- Fixed all SwiftLint violations (line length, cyclomatic complexity, etc.) |
| 18 | + |
| 19 | +## [1.1.0] - 2025-07-26 |
| 20 | + |
| 21 | +### Changed |
| 22 | +- Updated for iOS 18 support |
| 23 | +- Bug fixes |
| 24 | + |
| 25 | +## [1.0.0] - 2024-10-30 |
| 26 | + |
| 27 | +### Added |
| 28 | +- Initial release of NativeAppTemplate |
| 29 | +- 100% Swift, 99% SwiftUI (UIKit only for email screen via MessageUI) |
| 30 | +- `@Observable` macro (iOS 17+) for state management |
| 31 | +- MVVM architecture with repository pattern |
| 32 | +- Onboarding flow |
| 33 | +- Sign Up / Sign In / Sign Out |
| 34 | +- Email Confirmation |
| 35 | +- Forgot Password |
| 36 | +- Input Validation |
| 37 | +- CRUD operations for Shops |
| 38 | +- URL path-based multitenancy |
| 39 | +- User invitation to organizations |
| 40 | +- Role-based permissions and access control |
| 41 | +- NFC tag reading and writing |
| 42 | +- SwiftLint integration |
| 43 | +- Swift Testing framework for unit tests |
| 44 | +- GitHub Actions CI for automated testing |
| 45 | + |
| 46 | +### Technical |
| 47 | +- Protocol-oriented repository pattern for testability |
| 48 | +- DataManager as central dependency injection container |
| 49 | +- Token-based authentication with automatic refresh |
| 50 | +- NavigationStack with path-based routing |
| 51 | +- JSON:API adapter layer |
0 commit comments