Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1645ff8
fix: error message copy and more secure recording
arifBurakDemiray Sep 23, 2025
f5cd11b
feat: new performance tests
arifBurakDemiray Sep 25, 2025
c9f9f20
feat: added ability to record reserved events
arifBurakDemiray Sep 25, 2025
a9efe2f
feat: change default log level to verbose
arifBurakDemiray Sep 25, 2025
17a6b3a
refactor: logs to be more readbale
arifBurakDemiray Sep 25, 2025
2b72f07
feat: add more logging hc, contents
arifBurakDemiray Sep 25, 2025
9b65544
Remove color formatting from deprecated log messages
arifBurakDemiray Sep 25, 2025
d0f5541
Merge pull request #412 from Countly/fix_hc_counter
turtledreams Sep 25, 2025
f202848
Merge branch 'staging' into reserved_event
turtledreams Sep 25, 2025
9fd07ea
Merge pull request #413 from Countly/reserved_event
turtledreams Sep 25, 2025
a63b490
Merge branch 'staging' into improve_logging
arifBurakDemiray Sep 26, 2025
052e5ce
Merge pull request #414 from Countly/improve_logging
turtledreams Sep 26, 2025
af2c79b
feat: newer build targets
arifBurakDemiray Sep 26, 2025
f60ee77
feat: 25.4.6
arifBurakDemiray Sep 26, 2025
ad45d08
feat: update macos version
arifBurakDemiray Sep 26, 2025
58e53d0
feat: update macos version
arifBurakDemiray Sep 26, 2025
f0da14b
feat: update macos version
arifBurakDemiray Sep 26, 2025
f3683ef
Merge pull request #415 from Countly/newer_build_targets
turtledreams Sep 26, 2025
83337c9
Merge pull request #416 from Countly/2546
turtledreams Sep 26, 2025
3b10a03
refactor: change queue name
arifBurakDemiray Sep 26, 2025
d8a1136
Merge pull request #417 from Countly/rename_queue
turtledreams Sep 26, 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
30 changes: 15 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ jobs:
matrix:
env:
[
{os_version: 14, sdk: "macosx14.5"},
{os_version: 14, sdk: "iphoneos17.5"},
{os_version: 14, sdk: "appletvos17.5"},
{os_version: 14, sdk: "watchos10.5"},
{os_version: 14, sdk: "xros1.2"},
{os_version: 12, sdk: "iphoneos16.2"},
{os_version: 12, sdk: "macosx13.1"},
{os_version: 12, sdk: "appletvos16.1"},
{os_version: 12, sdk: "watchos9.1"},
{os_version: 13, sdk: "iphoneos17.2"},
{os_version: 13, sdk: "macosx14.2"},
{os_version: 13, sdk: "appletvos17.2"},
{os_version: 13, sdk: "watchos10.2"},
{os_version: 13, sdk: "xros1.0"},
{os_version: 15, sdk: "xros2.0"}
{ os_version: 14, sdk: "macosx14.5" },
{ os_version: 14, sdk: "iphoneos17.5" },
{ os_version: 14, sdk: "appletvos17.5" },
{ os_version: 14, sdk: "watchos10.5" },
{ os_version: 14, sdk: "xros1.2" },
{ os_version: 13, sdk: "iphoneos17.2" },
{ os_version: 13, sdk: "macosx14.2" },
{ os_version: 13, sdk: "appletvos17.2" },
{ os_version: 13, sdk: "watchos10.2" },
{ os_version: 13, sdk: "xros1.0" },
{ os_version: 15, sdk: "macosx15.5" },
{ os_version: 15, sdk: "iphoneos18.5" },
{ os_version: 15, sdk: "appletvos18.5" },
{ os_version: 15, sdk: "watchos11.5" },
{ os_version: 15, sdk: "xros2.5" },
]
steps:
# To check the github context
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 25.4.6
* Added the ability to record reserved events.
* Changed default log level from "CLYInternalLogLevelDebug" to "CLYInternalLogLevelVerbose".

* Mitigated a possible Health Check network log recording issue.

## 25.4.5
* Added "requestTimeoutDuration" init config parameter to change request timeout duration in seconds.
* Added a new function "sendMetricsRequest: metricsOverride" to send a manual metrics request, accessible through the instance.
Expand Down
2 changes: 1 addition & 1 deletion Countly-PL.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Countly-PL'
s.version = '25.4.5'
s.version = '25.4.6'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
s.homepage = 'https://github.com/Countly/countly-sdk-ios'
Expand Down
3 changes: 2 additions & 1 deletion Countly.h
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,8 @@ NS_ASSUME_NONNULL_BEGIN
- (void)halt;
- (void)halt:(BOOL) clearStorage;

/* Combine all events in event queue into a request and attempt to process stored requests on demand
/**
* Combine all events in event queue into a request and attempt to process stored requests on demand
*/
- (void)attemptToSendStoredRequests;

Expand Down
Loading