Skip to content
Closed
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [4.0.6](https://github.com/newrelic/video-agent-iOS/compare/v4.0.5...v4.0.6) (2026-03-03)

### Bug Fixes

* improve error handling and retry logic in CocoaPods publish workflow ([00e4e46](https://github.com/newrelic/video-agent-iOS/commit/00e4e462fd68e738288d92d20f239ac9b01639b3))

## [4.0.5](https://github.com/newrelic/video-agent-iOS/compare/v4.0.4...v4.0.5) (2026-02-17)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion NRAVPlayerTracker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'NRAVPlayerTracker'
s.version = '4.0.5'
s.version = '4.0.6'
s.summary = 'New Relic Video Agent, AVPlayer Tracker.'

# This description is used to generate tags and improve search results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ - (NSString *)getTrackerSrc {


- (NSString *)getTrackerVersion {
return @"4.0.5";
return @"4.0.6";
}

- (NSString *)getPlayerVersion {
Expand Down
2 changes: 1 addition & 1 deletion NRIMATracker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'NRIMATracker'
s.version = '4.0.5'
s.version = '4.0.6'
s.summary = 'New Relic Video Agent, Google IMA Ads Tracker.'

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion NRIMATracker/NRIMATracker/Tracker/NRTrackerIMA.m
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ - (NSString *)getTrackerSrc {
}

- (NSString *)getTrackerVersion {
return @"4.0.5";
return @"4.0.6";
}

- (NSNumber *)getPlayhead {
Expand Down
2 changes: 1 addition & 1 deletion NewRelicVideoAgent.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'NewRelicVideoAgent'
s.version = '4.0.5'
s.version = '4.0.6'
s.summary = 'New Relic Video Agent for iOS'

# This description is used to generate tags and improve search results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ - (NSArray *)buildTokenRequestPayload {
NSString *osVersion = [[UIDevice currentDevice] systemVersion];
NSString *architecture = [self getArchitecture];
NSString *agentName = @"NewRelic-VideoAgent-iOS";
NSString *agentVersion = @"4.0.5";
NSString *agentVersion = @"4.0.6";
NSString *deviceId = [NRVAUtils generateSessionId]; // Use session ID as device identifier
NSString *manufacturer = @"Apple";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ - (void)initializeDeviceInformation {
self.osBuild = [self getOSBuildVersion];
self.model = [[UIDevice currentDevice] model];
self.agentName = @"NewRelic-VideoAgent-iOS";
self.agentVersion = @"4.0.5"; // Should be pulled from build configuration
self.agentVersion = @"4.0.6"; // Should be pulled from build configuration
self.manufacturer = @"Apple";
self.deviceId = [self generatePersistentDeviceId];
self.architecture = [self getSystemArchitecture];
Expand Down Expand Up @@ -93,15 +93,15 @@ - (void)setDefaultValues {
self.osBuild = @"Unknown";
self.model = @"Unknown";
self.agentName = @"NewRelic-VideoAgent-iOS";
self.agentVersion = @"4.0.5";
self.agentVersion = @"4.0.6";
self.manufacturer = @"Apple";
self.deviceId = [[NSUUID UUID] UUIDString];
self.architecture = @"unknown";
self.runTime = @"unknown";
self.size = @""; // Empty string for now
self.applicationFramework = @"Native iOS";
self.applicationFrameworkVersion = @"Unknown";
self.userAgent = @"NewRelic-VideoAgent-iOS/4.0.5";
self.userAgent = @"NewRelic-VideoAgent-iOS/4.0.6";
self.isTV = NO;
self.isLowMemoryDevice = NO;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ - (NSArray *)buildCompletePayload:(NSArray<NSNumber *> *)appToken events:(NSArra
NSString *osVersion = [[UIDevice currentDevice] systemVersion];
NSString *architecture = [self getArchitecture];
NSString *agentName = @"NewRelic-VideoAgent-iOS";
NSString *agentVersion = @"4.0.5";
NSString *agentVersion = @"4.0.6";
NSString *deviceId = [NRVAUtils generateSessionId];
NSString *manufacturer = @"Apple";

Expand Down
2 changes: 1 addition & 1 deletion NewRelicVideoCore/NewRelicVideoCore/NRVideoDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef NRVideoDefs_h
#define NRVideoDefs_h

#define NRVIDEO_CORE_VERSION @"4.0.5"
#define NRVIDEO_CORE_VERSION @"4.0.6"

#define NR_VIDEO_EVENT @"VideoAction"
#define NR_VIDEO_AD_EVENT @"VideoAdAction"
Expand Down