Skip to content

Commit a6fed7f

Browse files
committed
Release 1.0.0-beta.7
1 parent 1bc0ca9 commit a6fed7f

File tree

95 files changed

+11775
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+11775
-1
lines changed

.gitignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# VSCode
6+
.vscode/
7+
jsconfig.json
8+
9+
# Xcode
10+
#
11+
build/
12+
*.pbxuser
13+
!default.pbxuser
14+
*.mode1v3
15+
!default.mode1v3
16+
*.mode2v3
17+
!default.mode2v3
18+
*.perspectivev3
19+
!default.perspectivev3
20+
xcuserdata
21+
*.xccheckout
22+
*.moved-aside
23+
DerivedData
24+
*.hmap
25+
*.ipa
26+
*.xcuserstate
27+
project.xcworkspace
28+
29+
# Android/IJ
30+
#
31+
.classpath
32+
.cxx
33+
.gradle
34+
.idea
35+
.project
36+
.settings
37+
local.properties
38+
android.iml
39+
android/app/libs
40+
android/keystores/debug.keystore
41+
42+
example/ios
43+
example/android
44+
45+
# Ruby
46+
example/vendor/
47+
48+
# node.js
49+
#
50+
node_modules/
51+
npm-debug.log
52+
yarn-debug.log
53+
yarn-error.log
54+
55+
# Expo
56+
.expo/*
57+
58+
**/google-services.json

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Changelog
2+
3+
All notable changes to this project 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+
## [1.0.0-beta.7] - 2025-05-21
9+
10+
### Removed
11+
- Removed the hardcoded kotlin version from the plugin to prevent issues in version updates.
12+
13+
## [1.0.0-beta.6] - 2025-05-02
14+
15+
### Changed
16+
- Fixed a data type mismatch issue in the `addSessionProperties` method for iOS build.
17+
18+
## [1.0.0-beta.5] - 2025-04-30
19+
20+
### Changed
21+
- Updated the `trackEvent`, `addSessionProperties`, `startTimer`, `endTimer` functions to accept plain objects instead of a map.
22+
23+
### Fixed
24+
- Fixed the crash in the `trackEvent` function due to a type casting issue.
25+
26+
## [1.0.0-beta.4] - 2025-04-03
27+
28+
### Changed
29+
- Improved the handling of custom fields in user, account and organization traits.
30+
31+
## [1.0.0-beta.1] - 2025-01-30
32+
33+
### Added
34+
- Introducing the Session Analytics feature. This feature allows you to monitor the health of your application and its components.
35+
- Added support for Push Notifications for the PLuG support chat.
36+
- Added support for on-demand (offline) sessions.
37+
- Added support to create new conversations in the PLuG support chat.
38+
- Added support for in-app link handling.

LICENSE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
All other components of this product are provided under the following license:
2+
3+
14
Apache License
25
Version 2.0, January 2004
36
http://www.apache.org/licenses/

0 commit comments

Comments
 (0)