Skip to content

Commit 259abf9

Browse files
rahulbawaneAbishekh-S-KamathchetanshanbagBV
authored
🔖 Release 1.11.4
* Add sonarqube scan worflow * Pd 177323 cdv filter (#13) * Implemented CDV filter for reviews.json * Pd 177925 seccondary ratings filter (#14) * Implemented Secondaryratings filters for reviews.json * Implemented Additional field filter for reviews.json (#15) * Implemented tag dimensions filter for reviews.json * Pd 178797 add value label cdv response (#18) Mapped "ValueLabel" response object for context data values * Pd 178686 tag statistics (#19) Implemented tagstats reuest param for reviews.json and products.json * Mapped secondary averages response objects * Implemented Secondary Rating Distribution * Refactoring keyword filter classes to maintain the parity * Allow dynamic array or variadic parameters to be passed to filter function * Release 1.10.0 * Implemented Custom Sort, Relavancy Sort, Xcode 14 fix * Update Sonarscan workflow * Q&A statistics changes for statistics.json * Release 1.11.0 * Fix for configuration errors with test case changes * Release 1.11.1 * 🐛 fixed transaction monitoring issue by adding clientId in BVAnalyticsEventTransaction (#35) * Revert ":bug: fixed transaction monitoring issue by adding clientId in BVAnalyticsEventTransaction (#35)" (#37) This reverts commit ba52da0e2d2209afe443df00ace8230bdbe8b498. * Pd 215869 bv pixel transaction event not recorded on monitoring tool (#38) * 🐛 fixed transaction monitoring issue by adding clientId in BVAnalyticsEventTransaction * 🐛 fix transaction monitoring issue by checking client key in whitelist and blacklist dictionary ✅ add separate test cases for nonPII and PII transactions event * ⚰️ removing unused code * Release 1.11.2 * Pd 217873 upgrade ios minimum deployment target (#42) * 🐛 fixed transaction monitoring issue by adding clientId in BVAnalyticsEventTransaction * 🐛 fix transaction monitoring issue by checking client key in whitelist and blacklist dictionary ✅ add separate test cases for nonPII and PII transactions event * ⚰️ removing unused code * ⚡ update minimum iOS deployment target * 🔖 Release 1.11.3 * 🐛 remove escaping for unsafe parameters value (#45) * 🔖 Release 1.11.4 --------- Co-authored-by: Rahul Bawane <[email protected]> Co-authored-by: Abishekh S Kamath <[email protected]> Co-authored-by: chetan shanbag <[email protected]>
1 parent d0b851b commit 259abf9

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

BVSwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'BVSwift'
11-
s.version = '1.11.3'
11+
s.version = '1.11.4'
1212
s.summary = 'Simple Swift based iOS SDK to interact with the Bazaarvoice platform API.'
1313
s.description = 'The Bazaarvoice Software Development Kit (SDK) is a Swift iOS library that provides an easy way to generate REST calls to the Bazaarvoice Developer API. Using this SDK, mobile developers can quickly integrate Bazaarvoice content into their native iOS apps for iPhone and iPad on iOS 8.0 or newer.'
1414

BVSwift/BVCommon/Configuration/BVConstants.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ internal struct BVConstants {
1818
static let appVersionField: String = "_appVersion"
1919
static let buildNumberField: String = "_buildNumber"
2020
static let sdkVersionField: String = "_bvIosSwiftSdkVersion"
21-
static let bvSwiftSDKVersion: String = "1.11.3"
22-
21+
static let bvSwiftSDKVersion: String = "1.11.4"
2322
}
2423

2524
internal extension Bundle {

BVSwift/BVCommon/Networking/BVURLParameter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ internal indirect enum BVURLParameter: BVParameter {
193193
case .stats(let stats, _):
194194
return stats.description.escaping()
195195
case .unsafe(_, let value, _):
196-
return value.description.escaping()
196+
return value.description
197197
case .customSort(let sort, let order, _):
198198
let separator = type(of: sort).sortValueSeparator
199199
return

BVSwift/Support/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.11.3</string>
20+
<string>1.11.4</string>
2121
<key>CFBundleVersion</key>
2222
<string>1</string>
2323
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)