@times-components/ssr 2.52.42-alpha.4 → 2.52.42-alpha.9
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 +32 -0
- package/__tests__/helpers/article-helper.js +10 -1
- package/dist/article.react.bundle.js +4 -4
- package/dist/article.react.bundle.js.map +1 -1
- package/dist/author-profile.react.bundle.js +1 -1
- package/dist/common.react.bundle.js +10 -10
- package/dist/common.react.bundle.js.map +1 -1
- package/dist/topic.react.bundle.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.52.45](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.52.44...@times-components/ssr@2.52.45) (2024-03-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @times-components/ssr
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.52.44](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.52.43...@times-components/ssr@2.52.44) (2024-03-19)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @times-components/ssr
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [2.52.43](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.52.42...@times-components/ssr@2.52.43) (2024-03-18)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @times-components/ssr
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [2.52.42](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.52.41...@times-components/ssr@2.52.42) (2024-03-15)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @times-components/ssr
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [2.52.41](https://github.com/newsuk/times-components/compare/@times-components/ssr@2.52.40...@times-components/ssr@2.52.41) (2024-03-12)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @times-components/ssr
|
|
@@ -51,7 +51,12 @@ const articleTemplateTest = (template, options = {}) => {
|
|
|
51
51
|
cy.get("@raImages").each(item => {
|
|
52
52
|
const url = new URL(item.attr("src"));
|
|
53
53
|
const initialResize = "100";
|
|
54
|
-
|
|
54
|
+
const resize = url.searchParams.get("resize");
|
|
55
|
+
if (resize) {
|
|
56
|
+
expect(url.searchParams.get("resize")).to.not.equal(
|
|
57
|
+
initialResize
|
|
58
|
+
);
|
|
59
|
+
}
|
|
55
60
|
});
|
|
56
61
|
}));
|
|
57
62
|
|
|
@@ -174,6 +179,10 @@ const articleTemplateTest = (template, options = {}) => {
|
|
|
174
179
|
{
|
|
175
180
|
id: "region",
|
|
176
181
|
enabled: false
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: "duplicate-id",
|
|
185
|
+
enabled: false
|
|
177
186
|
}
|
|
178
187
|
]
|
|
179
188
|
})
|