Skip to content

Commit d8ae305

Browse files
committed
updated mdns
1 parent 963d4be commit d8ae305

7 files changed

Lines changed: 245 additions & 332 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.57.4] - 2026-02-17
9+
10+
### Changed
11+
- Added fetch of ipfs-cluster peerId
12+
813
## [1.57.3] - 2026-02-15
914

1015
### Changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
React Native bridge for the [Fula protocols](https://github.com/functionland/go-fula), providing blockchain operations, blox device management, plugin management, and AI interactions via go-fula/mobile.
44

5-
> **TODO:** The Android native dependency (`fula-build-aar`) is currently at **v1.57.3** while the iOS native dependency (`Fula` pod from go-fula/mobile) is at **~> 1.57.2**. These versions need to be aligned in a future release.
6-
75
## Architecture
86

97
```
@@ -263,8 +261,8 @@ The following methods still exist in the TypeScript layer (`src/protocols/blockc
263261

264262
| Platform | Dependency | Version | Source |
265263
| --- | --- | --- | --- |
266-
| Android | `com.github.functionland:fula-build-aar` | v1.57.3 | [JitPack](https://jitpack.io/#functionland/fula-build-aar) |
267-
| iOS | `Fula` (go-fula/mobile) | ~> 1.57.2 | [CocoaPods](https://cocoapods.org/) |
264+
| Android | `com.github.functionland:fula-build-aar` | v1.57.4 | [JitPack](https://jitpack.io/#functionland/fula-build-aar) |
265+
| iOS | `Fula` (go-fula/mobile) | ~> 1.57.4 | [CocoaPods](https://cocoapods.org/) |
268266

269267
## Development
270268

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ dependencies {
9898
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
9999
//noinspection GradleDynamicVersion
100100
implementation "com.facebook.react:react-android:+"
101-
implementation 'com.github.functionland:fula-build-aar:v1.57.3' // From jitpack.io
101+
implementation 'com.github.functionland:fula-build-aar:v1.57.4' // From jitpack.io
102102
// implementation files('mobile.aar')
103103
}
104104

example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ PODS:
6969
- FlipperKit/Core
7070
- FlipperKit/FlipperKitNetworkPlugin
7171
- fmt (6.2.1)
72-
- Fula (1.57.2)
72+
- Fula (1.57.4)
7373
- glog (0.3.5)
7474
- hermes-engine (0.72.3):
7575
- hermes-engine/Pre-built (= 0.72.3)
@@ -376,8 +376,8 @@ PODS:
376376
- React-jsinspector (0.72.3)
377377
- React-logger (0.72.3):
378378
- glog
379-
- react-native-fula (1.57.3):
380-
- Fula (~> 1.57.2)
379+
- react-native-fula (1.57.4):
380+
- Fula (~> 1.57.4)
381381
- RCT-Folly (= 2021.07.22.00)
382382
- React-Core
383383
- React-NativeModulesApple (0.72.3):

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@functionland/react-native-fula",
3-
"version": "1.57.3",
3+
"version": "1.57.4",
44
"description": "React Native bridge for Fula protocols - blockchain operations, device management, plugin management, and AI interactions via go-fula/mobile",
55
"type": "module",
66
"main": "lib/commonjs/index",

react-native-fula.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Pod::Spec.new do |s|
3838
s.dependency "ReactCommon/turbomodule/core"
3939
end
4040
end
41-
s.dependency 'Fula','~> 1.57.2'
41+
s.dependency 'Fula','~> 1.57.4'
4242
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
4343
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
4444

0 commit comments

Comments
 (0)