Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 10 additions & 1 deletion .pubignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
.agents/
.cursor/
example/
build/
/pubspec.lock
example/*
!example/lib/
example/lib/*
!example/lib/main.dart
test/
pigeons/
!**/TalsecRuntime.xcframework/
!**/TalsecRuntime.xcframework/**
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [8.2.1] - 2026-08-10

- Android SDK version: 19.2.1
- iOS SDK version: 7.1.2

### Flutter

#### Fixed

- Fixed published package contents so required iOS framework artifacts are included
- Included the example entrypoint for pub.dev; the full demo app remains in the repository only
- Excluded non-essential development files (tests, codegen inputs, build outputs) from the published package

### Android

#### Fixed

- Moved `-flattenpackagehierarchy` out of consumer ProGuard rules to restore AGP 8+ compatibility

## [8.2.0] - 2026-08-05

- Android SDK version: 19.2.1
Expand Down
7 changes: 6 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ android {

defaultConfig {
minSdkVersion 23
consumerProguardFiles 'consumer-rules.pro'
}

buildTypes {
release {
proguardFiles 'proguard-rules.pro'
}
}

lintOptions {
Expand Down
1 change: 0 additions & 1 deletion android/consumer-rules.pro

This file was deleted.

1 change: 1 addition & 0 deletions android/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-flattenpackagehierarchy
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: freerasp
description: Flutter library for improving app security and threat monitoring on Android and iOS mobile devices. Learn more about provided features on the freeRASP's homepage first.
version: 8.2.0
version: 8.2.1
homepage: https://www.talsec.app/freerasp-in-app-protection-security-talsec
repository: https://github.com/talsec/Free-RASP-Flutter

Expand Down