gatsby-core-theme 35.1.0 → 35.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/package.json +1 -1
- package/src/helpers/processor/index.mjs +1 -1
- package/src/helpers/tracker.mjs +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [35.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.1.1...v35.1.2) (2024-08-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added new piguard attribute for tracking API ([c23cbca](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c23cbca25fb78e99102d3ba38d44e21e01b76e39))
|
|
7
|
+
|
|
8
|
+
## [35.1.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.1.0...v35.1.1) (2024-08-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* fix for author review error ([c9ca268](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c9ca2688362c6c7a236a32731fbd83ef065c6611))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
* Merge branch 'tm-4654-multiple-contributor' into 'master' ([36dc9d8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/36dc9d8e5214d2b6fcb6cba9b8c588bf5c1779a2))
|
|
17
|
+
|
|
1
18
|
# [35.1.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.0.10...v35.1.0) (2024-08-02)
|
|
2
19
|
|
|
3
20
|
|
package/package.json
CHANGED
|
@@ -323,7 +323,7 @@ export default {
|
|
|
323
323
|
const author = data.authors[author_id];
|
|
324
324
|
|
|
325
325
|
// check if author review per page per author is available
|
|
326
|
-
if (page.author_reviews[author_id]
|
|
326
|
+
if (page.author_reviews && page.author_reviews[author_id]?.length) {
|
|
327
327
|
author.author_review = page.author_reviews[author_id]
|
|
328
328
|
}
|
|
329
329
|
|
package/src/helpers/tracker.mjs
CHANGED
|
@@ -93,6 +93,7 @@ export async function getAffiliateLink(operator, path, page, headers, url) {
|
|
|
93
93
|
split_test_name: cookie ? cookie.split_test_name || null : null,
|
|
94
94
|
google_client_id: cookie ? cookie._ga || null : null,
|
|
95
95
|
split_test_variant: cookie ? cookie.split_test_variant || null : null,
|
|
96
|
+
pii_guard_id: cookie ? cookie._gi || null : null,
|
|
96
97
|
facebook_pixel_id: process.env.PIXEL_ID || null,
|
|
97
98
|
...(isJsonString(cookie.affObject) ? JSON.parse(cookie.affObject) : {}),
|
|
98
99
|
...(isJsonString(cookie.affObject) &&
|