Skip to content

Commit 5c08510

Browse files
committed
release/3.10.1: updated plugin to 3.10.1;
1 parent 30f3bfa commit 5c08510

5 files changed

Lines changed: 18 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 3.10.1
4+
5+
### Features
6+
7+
- **React Native 0.81.4 Support**: Added compatibility with React Native 0.81.4 by updating dependencies and resolving naming conflicts
8+
9+
### Fixes
10+
11+
- **Android Kotlin Naming Conflicts**: Fixed parameter naming conflicts in `RCTAppodealBannerView` and `RCTAppodealMrecView` by renaming `eventName` parameter to `eventNameParam` to avoid collision with `getEventName()` method ([#151](https://github.com/appodeal/react-native-appodeal/issues/151))
12+
13+
314
## 3.10.0
415

516
### Fixes

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Official Appodeal React Native Plugin for your React Native application.
44

5-
## Appodeal SDK 3.10.0
5+
## Appodeal SDK 3.10.1
66

77
- **Google CMP and TCF v2 Support**
88
- To enhance the relevance of ads for your users and comply with regulations like GDPR and CCPA,
@@ -37,10 +37,10 @@ Official Appodeal React Native Plugin for your React Native application.
3737
## Migration Guide
3838

3939
> [!IMPORTANT]
40-
> **Migrating from version 3.5.0 to 3.10.0** This is a major update with breaking changes.
40+
> **Migrating from version 3.5.0 to 3.10.1** This is a major update with breaking changes.
4141
> Please read our [Migration Guide](MIGRATION_GUIDE.md) carefully before updating.
4242
43-
**Key Changes in 3.10.0:**
43+
**Key Changes in 3.10.1:**
4444
- Updated to Appodeal SDK 3.10.0
4545
- Migrated to React Native Turbo Modules
4646
- New Architecture support (Fabric + TurboModules)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-appodeal",
3-
"version": "3.10.0",
3+
"version": "3.10.1",
44
"description": "React Native Module created to support Appodeal SDK for iOS and Android platforms",
55
"main": "./lib/module/index.js",
66
"types": "./lib/typescript/src/index.d.ts",

src/RNAppodeal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export interface Appodeal {
240240
/**
241241
* Plugin version constant
242242
*/
243-
const PLUGIN_VERSION = '3.10.0';
243+
const PLUGIN_VERSION = '3.10.1';
244244

245245
/**
246246
* Appodeal SDK implementation

src/__tests__/appodeal.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ describe('Appodeal SDK', () => {
240240
});
241241

242242
it('should return correct plugin version', () => {
243-
expect(Appodeal.getVersion()).toBe('3.10.0');
243+
expect(Appodeal.getVersion()).toBe('3.10.1');
244244
});
245245

246246
it('should handle consent methods correctly', async () => {
@@ -626,7 +626,7 @@ describe('Appodeal SDK', () => {
626626
expect(mockNativeAppodeal.initialize).toHaveBeenCalledWith(
627627
'test-key',
628628
combinedTypes,
629-
'3.10.0'
629+
'3.10.1'
630630
);
631631
expect(mockNativeAppodeal.cache).toHaveBeenCalledWith(combinedTypes);
632632
expect(mockNativeAppodeal.setAutoCache).toHaveBeenCalledWith(

0 commit comments

Comments
 (0)