gatsby-core-theme 44.11.0 → 44.12.0
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 +10 -0
- package/package.json +1 -1
- package/src/constants/generators.mjs +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# [44.12.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.11.0...v44.12.0) (2026-01-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
* Merge branch 'EN-361/operator-header-states' into 'master' ([37f770f](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/37f770f2c4a66471b38a76f23189e4cba8e6475c))
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* add author name in placeholder object ([f9006d3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/f9006d319253ddb129007e1465dc9dd33d4cf119))
|
|
10
|
+
|
|
1
11
|
# [44.11.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.10.12...v44.11.0) (2026-01-06)
|
|
2
12
|
|
|
3
13
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { months } from "./common.mjs";
|
|
2
2
|
|
|
3
3
|
const generatorsPlaceholderRegex =
|
|
4
|
-
/\[MONTH\]|\[YEAR\]|\[currentyear\]|\[sitename\]|\[currentmonth\]|\[title\]|\[currentdate\]|\[operator_name]|\[link\]/gi;
|
|
4
|
+
/\[MONTH\]|\[YEAR\]|\[currentyear\]|\[sitename\]|\[currentmonth\]|\[title\]|\[currentdate\]|\[operator_name]|\[author_name]|\[link\]/gi;
|
|
5
5
|
|
|
6
6
|
const generatorsPlaceholderReplaceObject = (
|
|
7
7
|
data,
|
|
@@ -21,6 +21,7 @@ const generatorsPlaceholderReplaceObject = (
|
|
|
21
21
|
"[sitename]": (data && data.siteName) || "",
|
|
22
22
|
"[title]": (data && data.pageTitle) || "",
|
|
23
23
|
"[operator_name]": (data && data.name) || "",
|
|
24
|
+
"[author_name]": (data && data.author_name) || "",
|
|
24
25
|
"[link]": `<a href=${data?.url}>${
|
|
25
26
|
translations?.link_checkbox || data?.text
|
|
26
27
|
} </a>`,
|