Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
015866a
added async container
robha141 Dec 17, 2024
250d052
added module registration
robha141 Dec 17, 2024
f76d19d
module registration is now static
robha141 Dec 17, 2024
f531742
added tests
robha141 Dec 19, 2024
481bda2
updated registration protocols
robha141 Dec 19, 2024
6690de5
[chore] fix comment typo
cejanen Dec 19, 2024
edd8abb
increased swift tools version
robha141 Jan 7, 2025
8726479
changed factory in async registration to async registration factory
robha141 Jan 7, 2025
6293bd4
chore: Merge branch 'feat/rob-async-init' of github.com:strvcom/ios-d…
robha141 Jan 7, 2025
36a4e9e
Update Sources/Container/AsyncContainer.swift
DanielCech Feb 6, 2025
e531377
Update Sources/Container/AsyncContainer.swift
DanielCech Feb 6, 2025
e4550be
feat: minor fixes
DanielCech Feb 6, 2025
0000e4e
Merge branch 'feat/rob-async-init' of github.com:strvcom/ios-dependen…
DanielCech Feb 6, 2025
66d1149
feat: sync/async folders
DanielCech Feb 6, 2025
984d223
feat: async init test
DanielCech Feb 6, 2025
5362b87
feat: bundler version
DanielCech Feb 10, 2025
5327c73
feat: bundler fix
DanielCech Feb 10, 2025
3ec35e0
feat: bundler fix
DanielCech Feb 10, 2025
5c542cd
feat: updated changelog
DanielCech Feb 10, 2025
5da88e2
fix: line ending
DanielCech Feb 12, 2025
dc8dd20
feat: bundler update
DanielCech Feb 18, 2025
812cb70
fix: comment
DanielCech Feb 18, 2025
04e8c9e
feat: bump fastlane version
DanielCech Feb 18, 2025
ce2133e
Update Sources/Container/Async/AsyncContainer.swift
DanielCech Feb 19, 2025
ea58ced
Update Sources/Container/Async/AsyncContainer.swift
DanielCech Feb 19, 2025
480b459
fix: last line
DanielCech Feb 19, 2025
bc3aabf
Merge branch 'feat/rob-async-init' of github.com:strvcom/ios-dependen…
DanielCech Feb 19, 2025
2716660
fix: tests
DanielCech Feb 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .bundler-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.6.3
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ __Sections__
- Container methods for registering and resolving dependencies were moved from extensions to the class body in order to make them overrideable
- 'APPLICATION_EXTENSION_API_ONLY' flag was added in order to get rid of warnings in app extensions

### Added
- Support for async dependency injection

## [1.0.2]

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# STRV

source 'https://rubygems.org'
gem 'bundler', '~> 2.1.0'
gem 'bundler', '~> 2.6.3'
gem 'danger', '~> 8.2.0'
gem 'fastlane', '~> 2.178.0'
gem 'fastlane', '~> 2.226.0'

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
Loading
Loading