@amazeelabs/silverback-gatsby 3.7.13

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.
Files changed (101) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/drupal/silverback_gatsby/.prettierignore +1 -0
  3. package/drupal/silverback_gatsby/CHANGELOG.md +1216 -0
  4. package/drupal/silverback_gatsby/README.md +297 -0
  5. package/drupal/silverback_gatsby/composer.json +15 -0
  6. package/drupal/silverback_gatsby/directives.gql +63 -0
  7. package/drupal/silverback_gatsby/directives.graphql +62 -0
  8. package/drupal/silverback_gatsby/drush.services.yml +9 -0
  9. package/drupal/silverback_gatsby/graphql/entity.directive.graphqls +2 -0
  10. package/drupal/silverback_gatsby/graphql/menu.directive.graphqls +17 -0
  11. package/drupal/silverback_gatsby/graphql/silverback_gatsby.base.graphqls +25 -0
  12. package/drupal/silverback_gatsby/graphql/silverback_gatsby.extension.graphqls +10 -0
  13. package/drupal/silverback_gatsby/graphql/stringTranslation.directive.graphqls +4 -0
  14. package/drupal/silverback_gatsby/graphql/translatableString.directive.graphqls +2 -0
  15. package/drupal/silverback_gatsby/modules/silverback_gatsby_example/directives.gql +6 -0
  16. package/drupal/silverback_gatsby/modules/silverback_gatsby_example/graphql/.graphqlrc.json +4 -0
  17. package/drupal/silverback_gatsby/modules/silverback_gatsby_example/graphql/silverback_gatsby_example.graphqls +39 -0
  18. package/drupal/silverback_gatsby/modules/silverback_gatsby_example/silverback_gatsby_example.info.yml +7 -0
  19. package/drupal/silverback_gatsby/modules/silverback_gatsby_example/silverback_gatsby_example.module +16 -0
  20. package/drupal/silverback_gatsby/modules/silverback_gatsby_example/src/Directives.php +24 -0
  21. package/drupal/silverback_gatsby/silverback_gatsby.info.yml +8 -0
  22. package/drupal/silverback_gatsby/silverback_gatsby.install +180 -0
  23. package/drupal/silverback_gatsby/silverback_gatsby.links.task.yml +6 -0
  24. package/drupal/silverback_gatsby/silverback_gatsby.module +119 -0
  25. package/drupal/silverback_gatsby/silverback_gatsby.permissions.yml +8 -0
  26. package/drupal/silverback_gatsby/silverback_gatsby.post_update.php +15 -0
  27. package/drupal/silverback_gatsby/silverback_gatsby.routing.yml +28 -0
  28. package/drupal/silverback_gatsby/silverback_gatsby.services.yml +50 -0
  29. package/drupal/silverback_gatsby/src/Annotation/GatsbyFeed.php +41 -0
  30. package/drupal/silverback_gatsby/src/Commands/SilverbackGatsbyCommands.php +102 -0
  31. package/drupal/silverback_gatsby/src/Controller/BuildController.php +45 -0
  32. package/drupal/silverback_gatsby/src/Controller/PublisherController.php +34 -0
  33. package/drupal/silverback_gatsby/src/Directives.php +51 -0
  34. package/drupal/silverback_gatsby/src/GatsbyBuildTrigger.php +230 -0
  35. package/drupal/silverback_gatsby/src/GatsbyBuildTriggerInterface.php +52 -0
  36. package/drupal/silverback_gatsby/src/GatsbyUpdate.php +38 -0
  37. package/drupal/silverback_gatsby/src/GatsbyUpdateHandler.php +181 -0
  38. package/drupal/silverback_gatsby/src/GatsbyUpdateTracker.php +98 -0
  39. package/drupal/silverback_gatsby/src/GatsbyUpdateTrackerInterface.php +59 -0
  40. package/drupal/silverback_gatsby/src/GatsbyUpdateTrigger.php +69 -0
  41. package/drupal/silverback_gatsby/src/GatsbyUpdateTriggerInterface.php +22 -0
  42. package/drupal/silverback_gatsby/src/GraphQL/Build.php +235 -0
  43. package/drupal/silverback_gatsby/src/GraphQL/ComposableSchema.php +73 -0
  44. package/drupal/silverback_gatsby/src/LocaleStorageDecorator.php +181 -0
  45. package/drupal/silverback_gatsby/src/MenuTreeStorageDecorator.php +139 -0
  46. package/drupal/silverback_gatsby/src/Plugin/FeedBase.php +121 -0
  47. package/drupal/silverback_gatsby/src/Plugin/FeedInterface.php +132 -0
  48. package/drupal/silverback_gatsby/src/Plugin/FeedPluginManager.php +39 -0
  49. package/drupal/silverback_gatsby/src/Plugin/Gatsby/Feed/EntityFeed.php +252 -0
  50. package/drupal/silverback_gatsby/src/Plugin/Gatsby/Feed/MenuFeed.php +292 -0
  51. package/drupal/silverback_gatsby/src/Plugin/Gatsby/Feed/StringTranslationFeed.php +171 -0
  52. package/drupal/silverback_gatsby/src/Plugin/Gatsby/Feed/TranslatableStringFeed.php +128 -0
  53. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/CurrentUserEntity.php +43 -0
  54. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/EntityQueryBase.php +40 -0
  55. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/FetchEntity.php +371 -0
  56. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/FetchString.php +64 -0
  57. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/FetchTranslatableString.php +74 -0
  58. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/FocalPoint.php +47 -0
  59. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/GatsbyBuildId.php +36 -0
  60. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/GatsbyExtractId.php +28 -0
  61. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/GatsbyExtractLangcode.php +28 -0
  62. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/ImageProps.php +149 -0
  63. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/ListEntities.php +88 -0
  64. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/ListStrings.php +87 -0
  65. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/StringId.php +37 -0
  66. package/drupal/silverback_gatsby/src/Plugin/GraphQL/DataProducer/StringTranslations.php +94 -0
  67. package/drupal/silverback_gatsby/src/Plugin/GraphQL/Directive/EntityFetch.php +51 -0
  68. package/drupal/silverback_gatsby/src/Plugin/GraphQL/Directive/EntityTranslationsWithDefault.php +30 -0
  69. package/drupal/silverback_gatsby/src/Plugin/GraphQL/Directive/FocalPoint.php +27 -0
  70. package/drupal/silverback_gatsby/src/Plugin/GraphQL/Directive/ImageProps.php +27 -0
  71. package/drupal/silverback_gatsby/src/Plugin/GraphQL/Directive/MenuLangcode.php +27 -0
  72. package/drupal/silverback_gatsby/src/Plugin/GraphQL/Directive/MenuTranslations.php +36 -0
  73. package/drupal/silverback_gatsby/src/Plugin/GraphQL/Directive/SilverbackGatsbyEntityId.php +39 -0
  74. package/drupal/silverback_gatsby/src/Plugin/GraphQL/SchemaExtension/SilverbackGatsbySchemaExtension.php +384 -0
  75. package/drupal/silverback_gatsby/src/SilverbackGatsbyServiceProvider.php +43 -0
  76. package/drupal/silverback_gatsby/src/SilverbackGatsbySessionConfiguration.php +30 -0
  77. package/drupal/silverback_gatsby/src/SilverbackReverseProxyMiddleware.php +49 -0
  78. package/drupal/silverback_gatsby/tests/queries/create-page-fields.gql +12 -0
  79. package/drupal/silverback_gatsby/tests/queries/current-user.gql +6 -0
  80. package/drupal/silverback_gatsby/tests/queries/feed_info.gql +12 -0
  81. package/drupal/silverback_gatsby/tests/queries/load-entity.gql +5 -0
  82. package/drupal/silverback_gatsby/tests/queries/menus.gql +31 -0
  83. package/drupal/silverback_gatsby/tests/queries/multilingual-menus.gql +11 -0
  84. package/drupal/silverback_gatsby/tests/queries/revisionable-translatable.gql +15 -0
  85. package/drupal/silverback_gatsby/tests/queries/revisionable.gql +8 -0
  86. package/drupal/silverback_gatsby/tests/queries/translatable.gql +14 -0
  87. package/drupal/silverback_gatsby/tests/queries/untranslatable.gql +10 -0
  88. package/drupal/silverback_gatsby/tests/schema/.graphqlrc.json +4 -0
  89. package/drupal/silverback_gatsby/tests/schema/translatable-strings.graphql +7 -0
  90. package/drupal/silverback_gatsby/tests/src/Kernel/CurrentUserTest.php +37 -0
  91. package/drupal/silverback_gatsby/tests/src/Kernel/EntityFeedTest.php +490 -0
  92. package/drupal/silverback_gatsby/tests/src/Kernel/EntityFeedTestBase.php +178 -0
  93. package/drupal/silverback_gatsby/tests/src/Kernel/GatsbyBuildTriggerTest.php +155 -0
  94. package/drupal/silverback_gatsby/tests/src/Kernel/GatsbyFeedInfoTest.php +319 -0
  95. package/drupal/silverback_gatsby/tests/src/Kernel/GatsbyUpdateHandlerTest.php +131 -0
  96. package/drupal/silverback_gatsby/tests/src/Kernel/GatsbyUpdateTrackerTest.php +196 -0
  97. package/drupal/silverback_gatsby/tests/src/Kernel/GatsbyUpdateTriggerTest.php +177 -0
  98. package/drupal/silverback_gatsby/tests/src/Kernel/MenuFeedTest.php +192 -0
  99. package/drupal/silverback_gatsby/tests/src/Kernel/TranslatableStringFeedTest.php +210 -0
  100. package/drupal/silverback_gatsby/tests/src/Traits/NotificationCheckTrait.php +43 -0
  101. package/package.json +15 -0
@@ -0,0 +1,1216 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [3.7.12](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.11...@-amazeelabs/silverback_gatsby@3.7.12) (2025-05-12)
7
+
8
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
9
+
10
+
11
+
12
+
13
+
14
+ ## [3.7.11](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.10...@-amazeelabs/silverback_gatsby@3.7.11) (2025-05-07)
15
+
16
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
17
+
18
+
19
+
20
+
21
+
22
+ ## [3.7.10](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.9...@-amazeelabs/silverback_gatsby@3.7.10) (2025-05-07)
23
+
24
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
25
+
26
+
27
+
28
+
29
+
30
+ ## [3.7.9](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.8...@-amazeelabs/silverback_gatsby@3.7.9) (2025-04-26)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * prettier ([4912fd7](https://github.com/AmazeeLabs/silverback-mono/commit/4912fd780734b71949abfe6dd63cfce580d888cd))
36
+
37
+
38
+
39
+
40
+
41
+ ## [3.7.8](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.7...@-amazeelabs/silverback_gatsby@3.7.8) (2025-04-24)
42
+
43
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
44
+
45
+
46
+
47
+
48
+
49
+ ## [3.7.7](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.6...@-amazeelabs/silverback_gatsby@3.7.7) (2025-03-25)
50
+
51
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
52
+
53
+
54
+
55
+
56
+
57
+ ## [3.7.6](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.5...@-amazeelabs/silverback_gatsby@3.7.6) (2025-03-18)
58
+
59
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
60
+
61
+
62
+
63
+
64
+
65
+ ## [3.7.5](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.4...@-amazeelabs/silverback_gatsby@3.7.5) (2025-03-17)
66
+
67
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
68
+
69
+
70
+
71
+
72
+
73
+ ## [3.7.4](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.3...@-amazeelabs/silverback_gatsby@3.7.4) (2025-03-09)
74
+
75
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
76
+
77
+
78
+
79
+
80
+
81
+ ## [3.7.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.2...@-amazeelabs/silverback_gatsby@3.7.3) (2025-03-04)
82
+
83
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
84
+
85
+
86
+
87
+
88
+
89
+ ## [3.7.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.1...@-amazeelabs/silverback_gatsby@3.7.2) (2025-01-27)
90
+
91
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
92
+
93
+
94
+
95
+
96
+
97
+ ## [3.7.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.7.0...@-amazeelabs/silverback_gatsby@3.7.1) (2024-10-21)
98
+
99
+
100
+ ### Bug Fixes
101
+
102
+ * avoid duplicates in the diff ([1836deb](https://github.com/AmazeeLabs/silverback-mono/commit/1836deb18901346043589e157904b3e6b3db41d6))
103
+
104
+
105
+
106
+
107
+
108
+ # [3.7.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.6.3...@-amazeelabs/silverback_gatsby@3.7.0) (2024-10-02)
109
+
110
+
111
+ ### Features
112
+
113
+ * add --force flag to drush silverback-gatsby:build command ([4c0c61a](https://github.com/AmazeeLabs/silverback-mono/commit/4c0c61ab2a8800bbca88e4fc19c4c7fc62e41c33))
114
+
115
+
116
+
117
+
118
+
119
+ ## [3.6.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.6.2...@-amazeelabs/silverback_gatsby@3.6.3) (2024-09-09)
120
+
121
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
122
+
123
+
124
+
125
+
126
+
127
+ ## [3.6.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.6.1...@-amazeelabs/silverback_gatsby@3.6.2) (2024-08-19)
128
+
129
+
130
+ ### Bug Fixes
131
+
132
+ * **#1560:** handle null/empty response in isFrontendLatestBuild ([#1561](https://github.com/AmazeeLabs/silverback-mono/issues/1561)) ([22c7d22](https://github.com/AmazeeLabs/silverback-mono/commit/22c7d229c72bb6a450d017522094153e15c748b9)), closes [#1560](https://github.com/AmazeeLabs/silverback-mono/issues/1560)
133
+
134
+
135
+
136
+
137
+
138
+ ## [3.6.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.6.0...@-amazeelabs/silverback_gatsby@3.6.1) (2024-07-18)
139
+
140
+
141
+ ### Bug Fixes
142
+
143
+ * **SLB-585:** add focalPoint directive manually to directives.graphql ([7e5b3d3](https://github.com/AmazeeLabs/silverback-mono/commit/7e5b3d3f813c7cbebbe915ca595b8df0dfe53440))
144
+
145
+
146
+
147
+
148
+
149
+ # [3.6.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.5.1...@-amazeelabs/silverback_gatsby@3.6.0) (2024-07-17)
150
+
151
+
152
+ ### Features
153
+
154
+ * **SLB-585:** add focal point GraphQL directive and data producer ([e317b5c](https://github.com/AmazeeLabs/silverback-mono/commit/e317b5cf1e75e80d6b4d5d376a62149f6fade98b))
155
+
156
+
157
+
158
+
159
+
160
+ ## [3.5.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.5.0...@-amazeelabs/silverback_gatsby@3.5.1) (2024-07-12)
161
+
162
+
163
+ ### Bug Fixes
164
+
165
+ * **SLB-416:** update fetchEntity arguments ([#1551](https://github.com/AmazeeLabs/silverback-mono/issues/1551)) ([aed75e8](https://github.com/AmazeeLabs/silverback-mono/commit/aed75e8d55d662099e1e8ec0882ffc0b51506609))
166
+
167
+
168
+
169
+
170
+
171
+ # [3.5.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.4.2...@-amazeelabs/silverback_gatsby@3.5.0) (2024-07-11)
172
+
173
+
174
+ ### Features
175
+
176
+ * **SLB-416:** preview link ([#1542](https://github.com/AmazeeLabs/silverback-mono/issues/1542)) ([bd9d312](https://github.com/AmazeeLabs/silverback-mono/commit/bd9d31276d0ffb4da45cbe475ec03386d66cc722)), closes [#1547](https://github.com/AmazeeLabs/silverback-mono/issues/1547)
177
+
178
+
179
+
180
+
181
+
182
+ ## [3.4.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.4.1...@-amazeelabs/silverback_gatsby@3.4.2) (2024-06-12)
183
+
184
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
185
+
186
+
187
+
188
+
189
+
190
+ ## [3.4.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.4.0...@-amazeelabs/silverback_gatsby@3.4.1) (2024-06-07)
191
+
192
+
193
+ ### Bug Fixes
194
+
195
+ * **SLB-426:** overwrite the build entity values with the submitted ones ([3ba0aaf](https://github.com/AmazeeLabs/silverback-mono/commit/3ba0aaf8c98931268ca1c38a141698519f4d1576))
196
+
197
+
198
+
199
+
200
+
201
+ # [3.4.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.3.2...@-amazeelabs/silverback_gatsby@3.4.0) (2024-05-29)
202
+
203
+
204
+ ### Features
205
+
206
+ * **SLB-409:** support Netlify's password protected URLs ([7dbb876](https://github.com/AmazeeLabs/silverback-mono/commit/7dbb8760eb481842e0e2a2b070ddd0956432521e))
207
+
208
+
209
+
210
+
211
+
212
+ ## [3.3.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.3.1...@-amazeelabs/silverback_gatsby@3.3.2) (2024-05-10)
213
+
214
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
215
+
216
+
217
+
218
+
219
+
220
+ ## [3.3.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.3.0...@-amazeelabs/silverback_gatsby@3.3.1) (2024-05-09)
221
+
222
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
223
+
224
+
225
+
226
+
227
+
228
+ # Change Log
229
+
230
+ All notable changes to this project will be documented in this file. See
231
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
232
+
233
+ # [3.3.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.2.0...@-amazeelabs/silverback_gatsby@3.3.0) (2024-04-25)
234
+
235
+ ### Features
236
+
237
+ - **slb-146:** code style update on directive
238
+ ([d7212b9](https://github.com/AmazeeLabs/silverback-mono/commit/d7212b97acc099aa42d710bb82c8bb7cef52fb46))
239
+ - **slb-146:** gutenberg autosave and live preview functionality
240
+ ([869d757](https://github.com/AmazeeLabs/silverback-mono/commit/869d757cae5b057fbfced015d6f16dc0d9c6e3f5))
241
+
242
+ # Change Log
243
+
244
+ All notable changes to this project will be documented in this file. See
245
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
246
+
247
+ # [3.2.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.1.2...@-amazeelabs/silverback_gatsby@3.2.0) (2024-03-25)
248
+
249
+ ### Features
250
+
251
+ - **silverback_gatsby:** default entity fetch operation
252
+ ([#1503](https://github.com/AmazeeLabs/silverback-mono/issues/1503))
253
+ ([94b27f0](https://github.com/AmazeeLabs/silverback-mono/commit/94b27f03f39fcfd8defbedbc2e44e834337e3230))
254
+
255
+ # Change Log
256
+
257
+ All notable changes to this project will be documented in this file. See
258
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
259
+
260
+ ## [3.1.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.1.1...@-amazeelabs/silverback_gatsby@3.1.2) (2024-02-28)
261
+
262
+ ### Bug Fixes
263
+
264
+ - only add language to translatable content
265
+ ([b698696](https://github.com/AmazeeLabs/silverback-mono/commit/b698696039ee16ef2429b5aa926094b741c0b2e3))
266
+
267
+ # Change Log
268
+
269
+ All notable changes to this project will be documented in this file. See
270
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
271
+
272
+ ## [3.1.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.1.0...@-amazeelabs/silverback_gatsby@3.1.1) (2024-02-16)
273
+
274
+ ### Bug Fixes
275
+
276
+ - **SLB-269:** missing directives definition in directives.graphql
277
+ ([5898a65](https://github.com/AmazeeLabs/silverback-mono/commit/5898a6504a642cf8b26aafc4973ad9312243c36a))
278
+
279
+ # Change Log
280
+
281
+ All notable changes to this project will be documented in this file. See
282
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
283
+
284
+ # [3.1.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.0.2...@-amazeelabs/silverback_gatsby@3.1.0) (2024-02-16)
285
+
286
+ ### Features
287
+
288
+ - **SLB-269:** implement [@translatable](https://github.com/translatable)String
289
+ directive
290
+ ([a091e26](https://github.com/AmazeeLabs/silverback-mono/commit/a091e26d02a1a876309d6186483b2628cb3f3602))
291
+
292
+ # Change Log
293
+
294
+ All notable changes to this project will be documented in this file. See
295
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
296
+
297
+ ## [3.0.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.0.1...@-amazeelabs/silverback_gatsby@3.0.2) (2024-02-16)
298
+
299
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
300
+
301
+ # Change Log
302
+
303
+ All notable changes to this project will be documented in this file. See
304
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
305
+
306
+ ## [3.0.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@3.0.0...@-amazeelabs/silverback_gatsby@3.0.1) (2023-11-10)
307
+
308
+ ### Bug Fixes
309
+
310
+ - **gatsby:** add missing directive declarations
311
+ ([971c4e0](https://github.com/AmazeeLabs/silverback-mono/commit/971c4e072235640935f39c81c6493d86ec68df86))
312
+
313
+ # Change Log
314
+
315
+ All notable changes to this project will be documented in this file. See
316
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
317
+
318
+ # [3.0.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.4.3...@-amazeelabs/silverback_gatsby@3.0.0) (2023-11-08)
319
+
320
+ ### Bug Fixes
321
+
322
+ - merge regression
323
+ ([2cecefe](https://github.com/AmazeeLabs/silverback-mono/commit/2cecefea69cc4a5c6d99de05a2a5240ac966a1b7))
324
+ - merge regression
325
+ ([d49770b](https://github.com/AmazeeLabs/silverback-mono/commit/d49770b0c284045cb449b87f67861bf881933288))
326
+
327
+ - refactor(gatsby)!: use UUID's in Drupal/Gatsby integration
328
+ ([cc56b4d](https://github.com/AmazeeLabs/silverback-mono/commit/cc56b4db69e68f7e7c324da31787b3251c8d476a))
329
+ - refactor(graphql)!: prefix and hide fields internally used by
330
+ silverback_gatsby
331
+ ([3dbd10c](https://github.com/AmazeeLabs/silverback-mono/commit/3dbd10c0b12113622b68cf5ca797480fa828f27d))
332
+
333
+ ### BREAKING CHANGES
334
+
335
+ - Gatsby uses UUID's instead of ID's when sourcing and updating entities from
336
+ Drupal.
337
+ - Fields used by silverback_gatsby and gatsby-source-silverback are hidden and
338
+ prefixed now.
339
+
340
+ # Change Log
341
+
342
+ All notable changes to this project will be documented in this file. See
343
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
344
+
345
+ ## [2.4.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.4.2...@-amazeelabs/silverback_gatsby@2.4.3) (2023-11-01)
346
+
347
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
348
+
349
+ # Change Log
350
+
351
+ All notable changes to this project will be documented in this file. See
352
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
353
+
354
+ ## [2.4.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.4.1...@-amazeelabs/silverback_gatsby@2.4.2) (2023-10-25)
355
+
356
+ ### Bug Fixes
357
+
358
+ - fix menu resolving with no language provided
359
+ ([a5cafad](https://github.com/AmazeeLabs/silverback-mono/commit/a5cafadd6a4bf8cbeabde1de6df73c2012de87af))
360
+
361
+ # Change Log
362
+
363
+ All notable changes to this project will be documented in this file. See
364
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
365
+
366
+ ## [2.4.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.4.0...@-amazeelabs/silverback_gatsby@2.4.1) (2023-10-18)
367
+
368
+ ### Bug Fixes
369
+
370
+ - move publisher consumer initialization to a deploy hook
371
+ ([#1442](https://github.com/AmazeeLabs/silverback-mono/issues/1442))
372
+ ([4b25787](https://github.com/AmazeeLabs/silverback-mono/commit/4b2578718fb75125d997918039a810e22172ebfb))
373
+
374
+ # Change Log
375
+
376
+ All notable changes to this project will be documented in this file. See
377
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
378
+
379
+ # [2.4.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.12...@-amazeelabs/silverback_gatsby@2.4.0) (2023-10-16)
380
+
381
+ ### Features
382
+
383
+ - **publisher:** create publisher consumer if it does not exist yet
384
+ ([#1439](https://github.com/AmazeeLabs/silverback-mono/issues/1439))
385
+ ([3a653b4](https://github.com/AmazeeLabs/silverback-mono/commit/3a653b4edd7749a4ce3de6aafbf5036436f6a003))
386
+
387
+ # Change Log
388
+
389
+ All notable changes to this project will be documented in this file. See
390
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
391
+
392
+ ## [2.3.12](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.11...@-amazeelabs/silverback_gatsby@2.3.12) (2023-10-12)
393
+
394
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
395
+
396
+ # Change Log
397
+
398
+ All notable changes to this project will be documented in this file. See
399
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
400
+
401
+ ## [2.3.11](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.10...@-amazeelabs/silverback_gatsby@2.3.11) (2023-10-10)
402
+
403
+ ### Bug Fixes
404
+
405
+ - use entity_usage to solve gatsby node reference issues
406
+ ([c53ca99](https://github.com/AmazeeLabs/silverback-mono/commit/c53ca990287f0dfb85f6c1f9ca873902be562d84))
407
+
408
+ # Change Log
409
+
410
+ All notable changes to this project will be documented in this file. See
411
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
412
+
413
+ ## [2.3.10](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.9...@-amazeelabs/silverback_gatsby@2.3.10) (2023-10-10)
414
+
415
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
416
+
417
+ # Change Log
418
+
419
+ All notable changes to this project will be documented in this file. See
420
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
421
+
422
+ ## [2.3.9](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.8...@-amazeelabs/silverback_gatsby@2.3.9) (2023-10-09)
423
+
424
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
425
+
426
+ # Change Log
427
+
428
+ All notable changes to this project will be documented in this file. See
429
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
430
+
431
+ ## [2.3.8](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.7...@-amazeelabs/silverback_gatsby@2.3.8) (2023-09-21)
432
+
433
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
434
+
435
+ # Change Log
436
+
437
+ All notable changes to this project will be documented in this file. See
438
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
439
+
440
+ ## [2.3.7](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.6...@-amazeelabs/silverback_gatsby@2.3.7) (2023-08-29)
441
+
442
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
443
+
444
+ # Change Log
445
+
446
+ All notable changes to this project will be documented in this file. See
447
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
448
+
449
+ ## [2.3.6](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.5...@-amazeelabs/silverback_gatsby@2.3.6) (2023-08-24)
450
+
451
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
452
+
453
+ # Change Log
454
+
455
+ All notable changes to this project will be documented in this file. See
456
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
457
+
458
+ ## [2.3.5](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.4...@-amazeelabs/silverback_gatsby@2.3.5) (2023-08-24)
459
+
460
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
461
+
462
+ # Change Log
463
+
464
+ All notable changes to this project will be documented in this file. See
465
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
466
+
467
+ ## [2.3.4](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.3...@-amazeelabs/silverback_gatsby@2.3.4) (2023-08-24)
468
+
469
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
470
+
471
+ # Change Log
472
+
473
+ All notable changes to this project will be documented in this file. See
474
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
475
+
476
+ ## [2.3.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.2...@-amazeelabs/silverback_gatsby@2.3.3) (2023-08-24)
477
+
478
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
479
+
480
+ # Change Log
481
+
482
+ All notable changes to this project will be documented in this file. See
483
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
484
+
485
+ ## [2.3.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.1...@-amazeelabs/silverback_gatsby@2.3.2) (2023-08-24)
486
+
487
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
488
+
489
+ # Change Log
490
+
491
+ All notable changes to this project will be documented in this file. See
492
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
493
+
494
+ ## [2.3.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.3.0...@-amazeelabs/silverback_gatsby@2.3.1) (2023-08-24)
495
+
496
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
497
+
498
+ # Change Log
499
+
500
+ All notable changes to this project will be documented in this file. See
501
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
502
+
503
+ # [2.3.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.2.0...@-amazeelabs/silverback_gatsby@2.3.0) (2023-06-27)
504
+
505
+ ### Features
506
+
507
+ - **publisher:** authenticate Publisher with Drupal
508
+ ([#1339](https://github.com/AmazeeLabs/silverback-mono/issues/1339))
509
+ ([1564f91](https://github.com/AmazeeLabs/silverback-mono/commit/1564f914fe7232047599a62a553bbd8b890395d2))
510
+
511
+ # Change Log
512
+
513
+ All notable changes to this project will be documented in this file. See
514
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
515
+
516
+ # [2.2.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.1.5...@-amazeelabs/silverback_gatsby@2.2.0) (2023-06-08)
517
+
518
+ ### Features
519
+
520
+ - **SLB-170:** publisher status button improvement
521
+ ([#1362](https://github.com/AmazeeLabs/silverback-mono/issues/1362))
522
+ ([182737c](https://github.com/AmazeeLabs/silverback-mono/commit/182737cf00651f39e0c12e2de913fcb64bc94d47))
523
+
524
+ # Change Log
525
+
526
+ All notable changes to this project will be documented in this file. See
527
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
528
+
529
+ ## [2.1.5](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.1.4...@-amazeelabs/silverback_gatsby@2.1.5) (2023-06-02)
530
+
531
+ ### Bug Fixes
532
+
533
+ - **gatsby:** ignore reverse proxy when generating session names
534
+ ([b106e55](https://github.com/AmazeeLabs/silverback-mono/commit/b106e55529eda056f1b4322d288e47c414c76fad))
535
+
536
+ # Change Log
537
+
538
+ All notable changes to this project will be documented in this file. See
539
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
540
+
541
+ ## [2.1.4](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.1.3...@-amazeelabs/silverback_gatsby@2.1.4) (2023-05-23)
542
+
543
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
544
+
545
+ # Change Log
546
+
547
+ All notable changes to this project will be documented in this file. See
548
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
549
+
550
+ ## [2.1.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.1.2...@-amazeelabs/silverback_gatsby@2.1.3) (2023-05-15)
551
+
552
+ ### Bug Fixes
553
+
554
+ - allow to use custom SLB-Forwarded-\* headers
555
+ ([8a45285](https://github.com/AmazeeLabs/silverback-mono/commit/8a45285b6c52d18367210cb8d2ffabeee20208d6))
556
+
557
+ # Change Log
558
+
559
+ All notable changes to this project will be documented in this file. See
560
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
561
+
562
+ ## [2.1.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.1.1...@-amazeelabs/silverback_gatsby@2.1.2) (2023-05-10)
563
+
564
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
565
+
566
+ # Change Log
567
+
568
+ All notable changes to this project will be documented in this file. See
569
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
570
+
571
+ ## [2.1.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.1.0...@-amazeelabs/silverback_gatsby@2.1.1) (2023-04-19)
572
+
573
+ ### Bug Fixes
574
+
575
+ - **cloudinary:** retain original image proportions
576
+ ([e166f29](https://github.com/AmazeeLabs/silverback-mono/commit/e166f29abd769a8ba41ac9c3ffefe04ba67964cd))
577
+
578
+ # Change Log
579
+
580
+ All notable changes to this project will be documented in this file. See
581
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
582
+
583
+ # [2.1.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.0.6...@-amazeelabs/silverback_gatsby@2.1.0) (2023-04-15)
584
+
585
+ ### Features
586
+
587
+ - **graphql:** directive for fetching an entity based on id, revision or route
588
+ ([07637e7](https://github.com/AmazeeLabs/silverback-mono/commit/07637e77be4d1c90e6bd00ddb8a23ea35ccdbb41))
589
+
590
+ # Change Log
591
+
592
+ All notable changes to this project will be documented in this file. See
593
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
594
+
595
+ ## [2.0.6](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.0.5...@-amazeelabs/silverback_gatsby@2.0.6) (2023-04-11)
596
+
597
+ ### Bug Fixes
598
+
599
+ - support schemas extending DirectableSchema directly
600
+ ([d338ea7](https://github.com/AmazeeLabs/silverback-mono/commit/d338ea78674886d903d03ae21936e6352e4d06f6))
601
+
602
+ # Change Log
603
+
604
+ All notable changes to this project will be documented in this file. See
605
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
606
+
607
+ ## [2.0.5](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.0.4...@-amazeelabs/silverback_gatsby@2.0.5) (2023-03-23)
608
+
609
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
610
+
611
+ # Change Log
612
+
613
+ All notable changes to this project will be documented in this file. See
614
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
615
+
616
+ ## [2.0.4](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.0.3...@-amazeelabs/silverback_gatsby@2.0.4) (2023-02-06)
617
+
618
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
619
+
620
+ # Change Log
621
+
622
+ All notable changes to this project will be documented in this file. See
623
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
624
+
625
+ ## [2.0.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.0.2...@-amazeelabs/silverback_gatsby@2.0.3) (2023-01-30)
626
+
627
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
628
+
629
+ # Change Log
630
+
631
+ All notable changes to this project will be documented in this file. See
632
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
633
+
634
+ ## [2.0.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.0.1...@-amazeelabs/silverback_gatsby@2.0.2) (2023-01-24)
635
+
636
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
637
+
638
+ # Change Log
639
+
640
+ All notable changes to this project will be documented in this file. See
641
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
642
+
643
+ ## [2.0.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@2.0.0...@-amazeelabs/silverback_gatsby@2.0.1) (2023-01-18)
644
+
645
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
646
+
647
+ # Change Log
648
+
649
+ All notable changes to this project will be documented in this file. See
650
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
651
+
652
+ # [2.0.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.28.1...@-amazeelabs/silverback_gatsby@2.0.0) (2023-01-06)
653
+
654
+ ### Bug Fixes
655
+
656
+ - **gatsby:** base silverback_gatsby off graphql_directives
657
+ ([f8006f0](https://github.com/AmazeeLabs/silverback-mono/commit/f8006f0a2b684b14fca4581dd1a3e6e7646d37f7))
658
+ - **graphql:** append extension document to printed schema
659
+ ([d0ec3ca](https://github.com/AmazeeLabs/silverback-mono/commit/d0ec3ca4b312fc5c9317ee3ccbd251b48873064b))
660
+ - **graphql:** avoid block comments on directive arguments
661
+ ([f38a8e9](https://github.com/AmazeeLabs/silverback-mono/commit/f38a8e9318c84edb2e504bb8a6f2ccf0dfacc95c))
662
+ - **graphql:** fix conflict resolution regression
663
+ ([8a88fbe](https://github.com/AmazeeLabs/silverback-mono/commit/8a88fbeebe79c676cf7090aafe3ddba379527266))
664
+ - **graphql:** remove remaining invocation of deprecated
665
+ "[@property](https://github.com/property)"
666
+ ([23fee18](https://github.com/AmazeeLabs/silverback-mono/commit/23fee1839e13cabdea3f8e0246be045797d7752c))
667
+ - **graphql:** remove wrong version restriction
668
+ ([20d62b3](https://github.com/AmazeeLabs/silverback-mono/commit/20d62b34bea30c7e439d0673183efe2813556908))
669
+ - **graphql:** schema export with directable schema
670
+ ([a79ba9d](https://github.com/AmazeeLabs/silverback-mono/commit/a79ba9df883cc05900ba9e9ad962f5b58b2330ce))
671
+
672
+ ### Code Refactoring
673
+
674
+ - **graphql:** deprecate ComposableSchema
675
+ ([e04d3eb](https://github.com/AmazeeLabs/silverback-mono/commit/e04d3eb0f3486215a5dd344bc5a22309606690e5))
676
+ - **graphql:** replace editor block directives with plugins
677
+ ([e40c941](https://github.com/AmazeeLabs/silverback-mono/commit/e40c941289286449d68035b283fa51cb0933cd42))
678
+ - **graphql:** streamline default value behaviour
679
+ ([81c9bff](https://github.com/AmazeeLabs/silverback-mono/commit/81c9bffebd6b6bdc4dd5a53b21387e462ebc44fc))
680
+
681
+ ### Features
682
+
683
+ - **graphql:** extract directive plugins for entity references
684
+ ([fdad8fd](https://github.com/AmazeeLabs/silverback-mono/commit/fdad8fde3678a43d4af3d87e62fc2a9ed23dcff3))
685
+
686
+ ### BREAKING CHANGES
687
+
688
+ - **graphql:** GraphQL field return types of custom types require either a
689
+ @default definition, or have to be nullable.
690
+ - **graphql:** gutenberg directives have changed
691
+ - **graphql:** composable schemas need a configured schema definition
692
+
693
+ # Change Log
694
+
695
+ All notable changes to this project will be documented in this file. See
696
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
697
+
698
+ ## [1.28.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.28.0...@-amazeelabs/silverback_gatsby@1.28.1) (2023-01-05)
699
+
700
+ ### Bug Fixes
701
+
702
+ - make user cookie live same time as drupal session
703
+ ([213f617](https://github.com/AmazeeLabs/silverback-mono/commit/213f6172ec681c0f6983fb1fe0fbd8e0b5ea5f2b))
704
+
705
+ # Change Log
706
+
707
+ All notable changes to this project will be documented in this file. See
708
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
709
+
710
+ # [1.28.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.27.0...@-amazeelabs/silverback_gatsby@1.28.0) (2022-10-24)
711
+
712
+ ### Features
713
+
714
+ - **gatsby:** write javascript-cookie for login status
715
+ ([a16ac67](https://github.com/AmazeeLabs/silverback-mono/commit/a16ac678d6abb42ad80b43b614816935749d00c8))
716
+
717
+ # Change Log
718
+
719
+ All notable changes to this project will be documented in this file. See
720
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
721
+
722
+ # [1.27.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.26.1...@-amazeelabs/silverback_gatsby@1.27.0) (2022-10-24)
723
+
724
+ ### Features
725
+
726
+ - **gatsby:** user login status
727
+ ([f436c1e](https://github.com/AmazeeLabs/silverback-mono/commit/f436c1e543a22d722909d1de41a263a6f20a491d))
728
+
729
+ ## [1.26.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.26.0...@-amazeelabs/silverback_gatsby@1.26.1) (2022-10-13)
730
+
731
+ ### Bug Fixes
732
+
733
+ - **gatsby:** distribute update hook notifications in any case
734
+ ([73862f8](https://github.com/AmazeeLabs/silverback-mono/commit/73862f81d2291faed4a034e4802d1d24f96e5f6a))
735
+
736
+ # [1.26.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.25.3...@-amazeelabs/silverback_gatsby@1.26.0) (2022-10-01)
737
+
738
+ ### Features
739
+
740
+ - **gatsby:** additional webhook configuration for realtime updates
741
+ ([8cdc30d](https://github.com/AmazeeLabs/silverback-mono/commit/8cdc30d4565f39cd8897b0dfa5d06821e6c2b562))
742
+ - **gatsby:** new update trigger service for realtime update notifications
743
+ ([f73e3a6](https://github.com/AmazeeLabs/silverback-mono/commit/f73e3a63c42023aef630a18052cd902c5dfd6c0b))
744
+
745
+ ## [1.25.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.25.2...@-amazeelabs/silverback_gatsby@1.25.3) (2022-09-22)
746
+
747
+ ### Bug Fixes
748
+
749
+ - **gatsby:** fix drupal "build" route title
750
+ ([5fb3352](https://github.com/AmazeeLabs/silverback-mono/commit/5fb3352c57a42511280c00d5c89788e0a2686eac))
751
+
752
+ ## [1.25.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.25.1...@-amazeelabs/silverback_gatsby@1.25.2) (2022-09-16)
753
+
754
+ ### Bug Fixes
755
+
756
+ - **gatsby:** add title context to the local task
757
+ ([d5a6baa](https://github.com/AmazeeLabs/silverback-mono/commit/d5a6baa4326224ee00c981af02eeaf4abd8466e7))
758
+
759
+ ## [1.25.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.25.0...@-amazeelabs/silverback_gatsby@1.25.1) (2022-09-01)
760
+
761
+ ### Bug Fixes
762
+
763
+ - process $entity->original in hook_entity_presave
764
+ ([a74e19f](https://github.com/AmazeeLabs/silverback-mono/commit/a74e19f10f0192cd038b072ce0789b957068c2a3))
765
+
766
+ # [1.25.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.24.0...@-amazeelabs/silverback_gatsby@1.25.0) (2022-08-26)
767
+
768
+ ### Features
769
+
770
+ - **gutenberg:** alterable gutenberg blocks output
771
+ ([28d626c](https://github.com/AmazeeLabs/silverback-mono/commit/28d626c9f57107feb304703088f2ab97c0026312))
772
+
773
+ # [1.24.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.7...@-amazeelabs/silverback_gatsby@1.24.0) (2022-08-18)
774
+
775
+ ### Features
776
+
777
+ - **gatsby:** load entities by path
778
+ ([2bd5dae](https://github.com/AmazeeLabs/silverback-mono/commit/2bd5dae1573a3e8601e14526d209dbc60fb4028d))
779
+
780
+ ## [1.23.7](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.6...@-amazeelabs/silverback_gatsby@1.23.7) (2022-08-16)
781
+
782
+ ### Bug Fixes
783
+
784
+ - exclude deactivated menu links
785
+ ([5dae1e1](https://github.com/AmazeeLabs/silverback-mono/commit/5dae1e1c878a1c09d06d201626151e850cc0ec17))
786
+
787
+ ## [1.23.6](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.5...@-amazeelabs/silverback_gatsby@1.23.6) (2022-08-10)
788
+
789
+ ### Bug Fixes
790
+
791
+ - remove quotes from paths
792
+ ([ecccf45](https://github.com/AmazeeLabs/silverback-mono/commit/ecccf4542ca27db8f745240eb283294911533e4e))
793
+
794
+ ## [1.23.5](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.4...@-amazeelabs/silverback_gatsby@1.23.5) (2022-08-10)
795
+
796
+ ### Bug Fixes
797
+
798
+ - remove dots-only path segments
799
+ ([6443f6c](https://github.com/AmazeeLabs/silverback-mono/commit/6443f6c7d6f12a78699fbd0cae056cb313e4672d))
800
+
801
+ ## [1.23.4](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.3...@-amazeelabs/silverback_gatsby@1.23.4) (2022-08-09)
802
+
803
+ ### Bug Fixes
804
+
805
+ - handle special characters in Gatsby page paths
806
+ ([d770aeb](https://github.com/AmazeeLabs/silverback-mono/commit/d770aeb95c60a7307664d857df2c14ba04135c17))
807
+
808
+ ## [1.23.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.2...@-amazeelabs/silverback_gatsby@1.23.3) (2022-08-04)
809
+
810
+ ### Bug Fixes
811
+
812
+ - add forgotten index to gatsby_update_log table
813
+ ([11dd8f2](https://github.com/AmazeeLabs/silverback-mono/commit/11dd8f253a67743be43390de0e88e2978a10a7a8))
814
+
815
+ ## [1.23.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.1...@-amazeelabs/silverback_gatsby@1.23.2) (2022-07-21)
816
+
817
+ ### Bug Fixes
818
+
819
+ - **gatsby:** properly resolve revisions and handle languages there
820
+ ([4c819ae](https://github.com/AmazeeLabs/silverback-mono/commit/4c819ae01bb3a38a8ba842db9f8ba44916c11a72))
821
+
822
+ ## [1.23.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.23.0...@-amazeelabs/silverback_gatsby@1.23.1) (2022-06-28)
823
+
824
+ ### Bug Fixes
825
+
826
+ - **gutenberg:** add default value for aggregated blocks
827
+ ([fac17ba](https://github.com/AmazeeLabs/silverback-mono/commit/fac17ba7f7362fe89ea185b3b689928c86b2632a))
828
+
829
+ # [1.23.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.22.0...@-amazeelabs/silverback_gatsby@1.23.0) (2022-06-23)
830
+
831
+ ### Bug Fixes
832
+
833
+ - **gutenberg:** fix language context document resolution
834
+ ([4c20a53](https://github.com/AmazeeLabs/silverback-mono/commit/4c20a5324effef6b991ef94d3741f70320617563))
835
+
836
+ ### Features
837
+
838
+ - **gutenberg:** aggregate multiple subsequent html blocks
839
+ ([1f6469e](https://github.com/AmazeeLabs/silverback-mono/commit/1f6469e74861b3016a1d2bb4c73f844fc3407342))
840
+
841
+ # [1.22.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.21.0...@-amazeelabs/silverback_gatsby@1.22.0) (2022-06-20)
842
+
843
+ ### Features
844
+
845
+ - **gatsby:** graphql fields for fetching entity revisions
846
+ ([7ebc6f7](https://github.com/AmazeeLabs/silverback-mono/commit/7ebc6f7fc5f4202a89f5d34e440ae214a067697d))
847
+
848
+ # [1.21.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.20.0...@-amazeelabs/silverback_gatsby@1.21.0) (2022-06-02)
849
+
850
+ ### Features
851
+
852
+ - **gatsby:** introduce `__original_typename` field on each graphql type
853
+ ([edbf247](https://github.com/AmazeeLabs/silverback-mono/commit/edbf2477c3c4de547e9600c6670d2175ced113c7))
854
+
855
+ # [1.20.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.19.5...@-amazeelabs/silverback_gatsby@1.20.0) (2022-05-27)
856
+
857
+ ### Bug Fixes
858
+
859
+ - better naming for trigger
860
+ ([9a78e52](https://github.com/AmazeeLabs/silverback-mono/commit/9a78e52a36687d737552b24fdda99c9dc255ecd8))
861
+
862
+ ### Features
863
+
864
+ - periodic build
865
+ ([3038e08](https://github.com/AmazeeLabs/silverback-mono/commit/3038e08bb1d3ed08a0c4d9886df870f30dbc7afb))
866
+
867
+ ## [1.19.5](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.19.4...@-amazeelabs/silverback_gatsby@1.19.5) (2022-05-12)
868
+
869
+ ### Bug Fixes
870
+
871
+ - **gatsby:** remove array index warning
872
+ ([e847cde](https://github.com/AmazeeLabs/silverback-mono/commit/e847cde878d34ca91f374c19430e828d221f2708))
873
+
874
+ ## [1.19.4](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.19.3...@-amazeelabs/silverback_gatsby@1.19.4) (2022-05-12)
875
+
876
+ ### Bug Fixes
877
+
878
+ - allow for special chars in gutenberg "plain text" fields
879
+ ([b0b7377](https://github.com/AmazeeLabs/silverback-mono/commit/b0b7377420b41329b440f6afcd7b9b5a1e464e2f))
880
+
881
+ ## [1.19.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.19.2...@-amazeelabs/silverback_gatsby@1.19.3) (2022-05-10)
882
+
883
+ ### Bug Fixes
884
+
885
+ - **gutenberg:** ignore blocks without a blockName
886
+ ([9c43d22](https://github.com/AmazeeLabs/silverback-mono/commit/9c43d22bd6f0c48edb199fd40b2e02387d82a72a))
887
+
888
+ ## [1.19.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.19.1...@-amazeelabs/silverback_gatsby@1.19.2) (2022-05-10)
889
+
890
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
891
+
892
+ ## [1.19.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.19.0...@-amazeelabs/silverback_gatsby@1.19.1) (2022-05-10)
893
+
894
+ ### Bug Fixes
895
+
896
+ - disable access check when fetching entity ID by its UUID
897
+ ([8c01028](https://github.com/AmazeeLabs/silverback-mono/commit/8c01028e3a6e308dcaa4eec118120fcee3001f48))
898
+
899
+ # [1.19.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.18.2...@-amazeelabs/silverback_gatsby@1.19.0) (2022-05-09)
900
+
901
+ ### Features
902
+
903
+ - **gatsby:** graphql directives for gutenberg documents
904
+ ([f925058](https://github.com/AmazeeLabs/silverback-mono/commit/f92505861e2bf66d2cf960ca7deec2be7741a945))
905
+ - **gutenberg:** add option to ignore blocks in graphql
906
+ ([bb0cffd](https://github.com/AmazeeLabs/silverback-mono/commit/bb0cffd0a83fb39bfeae9d86ba3f1f143487a71c))
907
+
908
+ ## [1.18.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.18.1...@-amazeelabs/silverback_gatsby@1.18.2) (2022-05-04)
909
+
910
+ ### Bug Fixes
911
+
912
+ - **gatsby:** if menu items are translatable, trigger updates in all languages
913
+ ([f50a76b](https://github.com/AmazeeLabs/silverback-mono/commit/f50a76b6c4cc8f6f3fd94552aa0626f93fec7cfe))
914
+
915
+ ## [1.18.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.18.0...@-amazeelabs/silverback_gatsby@1.18.1) (2022-04-29)
916
+
917
+ ### Bug Fixes
918
+
919
+ - **gatsby:** inconsistent access checks in menu GraphQL API
920
+ ([56945a2](https://github.com/AmazeeLabs/silverback-mono/commit/56945a2bcf3204c43d7731be9a330f1364ef3a61))
921
+
922
+ # [1.18.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.17.0...@-amazeelabs/silverback_gatsby@1.18.0) (2022-04-28)
923
+
924
+ ### Features
925
+
926
+ - **gatsby:** more flexible and explicit [@menu](https://github.com/menu)
927
+ directives
928
+ ([14c5027](https://github.com/AmazeeLabs/silverback-mono/commit/14c502748a5141ed3d9027ccbe3d4ca3b380fcfe))
929
+
930
+ # [1.17.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.16.3...@-amazeelabs/silverback_gatsby@1.17.0) (2022-04-28)
931
+
932
+ ### Bug Fixes
933
+
934
+ - **gatsby:** all the things I would have forgotten without @Leksat
935
+ ([a42d366](https://github.com/AmazeeLabs/silverback-mono/commit/a42d3663c8931264feed2dc503c27b05267936ac))
936
+
937
+ ### Features
938
+
939
+ - **gatsby:** menu negotiation
940
+ ([60e3210](https://github.com/AmazeeLabs/silverback-mono/commit/60e321063bde3f6f01930b9db78d1c181d01fac9))
941
+
942
+ ## [1.16.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.16.2...@-amazeelabs/silverback_gatsby@1.16.3) (2022-04-27)
943
+
944
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
945
+
946
+ ## [1.16.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.16.1...@-amazeelabs/silverback_gatsby@1.16.2) (2022-03-08)
947
+
948
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
949
+
950
+ ## [1.16.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.16.0...@-amazeelabs/silverback_gatsby@1.16.1) (2022-03-07)
951
+
952
+ ### Bug Fixes
953
+
954
+ - remove basic_auth from dependencies
955
+ ([122381b](https://github.com/AmazeeLabs/silverback-mono/commit/122381b86aad8e7c761915997a2c1a3a768c7b19))
956
+
957
+ # [1.16.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.15.0...@-amazeelabs/silverback_gatsby@1.16.0) (2022-01-26)
958
+
959
+ ### Features
960
+
961
+ - link servers to users, not roles
962
+ ([cda4436](https://github.com/AmazeeLabs/silverback-mono/commit/cda443623af848f7262fed835554e8d9c7d108b6))
963
+
964
+ # [1.15.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.14.2...@-amazeelabs/silverback_gatsby@1.15.0) (2022-01-25)
965
+
966
+ ### Features
967
+
968
+ - introduce new directives and rename existing ones
969
+ ([c9255ca](https://github.com/AmazeeLabs/silverback-mono/commit/c9255ca6c3bdd8ad954be00013c6f2f0faae4eaf))
970
+
971
+ ## [1.14.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.14.1...@-amazeelabs/silverback_gatsby@1.14.2) (2022-01-19)
972
+
973
+ ### Bug Fixes
974
+
975
+ - keep not translatable menu links
976
+ ([b2fa801](https://github.com/AmazeeLabs/silverback-mono/commit/b2fa8014f4191bcf251d0e1b2cd28ecab4eaae58))
977
+ - rely on the negotiated language instead of the default one
978
+ ([d6388e8](https://github.com/AmazeeLabs/silverback-mono/commit/d6388e883af056402e895ca954cdcb7320f39682))
979
+
980
+ ## [1.14.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.14.0...@-amazeelabs/silverback_gatsby@1.14.1) (2022-01-19)
981
+
982
+ ### Bug Fixes
983
+
984
+ - fix regex
985
+ ([5c964db](https://github.com/AmazeeLabs/silverback-mono/commit/5c964dbcfcb0d0ed6a23e63cbe5826fc4f99eb96))
986
+ - restore tests in multiple packages
987
+ ([92c2e00](https://github.com/AmazeeLabs/silverback-mono/commit/92c2e003e162d991e5cc7fee511e75c7339f0049))
988
+ - support projects with content_translation module disabled
989
+ ([a8bf062](https://github.com/AmazeeLabs/silverback-mono/commit/a8bf0625d19bde6f18d6491cad3d67e5b39ead5e))
990
+
991
+ # [1.14.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.13.3...@-amazeelabs/silverback_gatsby@1.14.0) (2022-01-05)
992
+
993
+ ### Features
994
+
995
+ - allow loading entities by UUID
996
+ ([6da1055](https://github.com/AmazeeLabs/silverback-mono/commit/6da10551ab53fb4e93c3fbd29a58e1d6d9456a7c))
997
+
998
+ ## [1.13.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.13.2...@-amazeelabs/silverback_gatsby@1.13.3) (2022-01-03)
999
+
1000
+ ### Bug Fixes
1001
+
1002
+ - fix schema export
1003
+ ([eb81e00](https://github.com/AmazeeLabs/silverback-mono/commit/eb81e00266d4f6648babc84cef3aa09184d7b5e3))
1004
+
1005
+ ## [1.13.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.13.1...@-amazeelabs/silverback_gatsby@1.13.2) (2021-12-27)
1006
+
1007
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
1008
+
1009
+ ## [1.13.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.13.0...@-amazeelabs/silverback_gatsby@1.13.1) (2021-12-23)
1010
+
1011
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
1012
+
1013
+ # [1.13.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.12.0...@-amazeelabs/silverback_gatsby@1.13.0) (2021-12-10)
1014
+
1015
+ ### Bug Fixes
1016
+
1017
+ - **gatsby:** fall back to first published translation if the source is not
1018
+ accessible in listings
1019
+ ([db8897c](https://github.com/AmazeeLabs/silverback-mono/commit/db8897cf28744c8c22f36e08318780c940e54988)),
1020
+ closes [#882](https://github.com/AmazeeLabs/silverback-mono/issues/882)
1021
+
1022
+ ### Features
1023
+
1024
+ - **gatsby:** make limit and offset in list queries optional
1025
+ ([70cd820](https://github.com/AmazeeLabs/silverback-mono/commit/70cd8209e60da0cbc6167a78510b84d3d9b4ca31)),
1026
+ closes [#849](https://github.com/AmazeeLabs/silverback-mono/issues/849)
1027
+
1028
+ # [1.12.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.11.4...@-amazeelabs/silverback_gatsby@1.12.0) (2021-12-03)
1029
+
1030
+ ### Bug Fixes
1031
+
1032
+ - **gatsby:** inconsistent usage of build_hook and build_webhook
1033
+ ([fd47201](https://github.com/AmazeeLabs/silverback-mono/commit/fd47201898fdfc32510a4d2db369e66e525dfb4c))
1034
+ - **gatsby:** reset access control handler cache between investigating old and
1035
+ updated entities
1036
+ ([7c37490](https://github.com/AmazeeLabs/silverback-mono/commit/7c37490eb20b7bce7d0c642da50667f250c83c86))
1037
+ - **gatsby:** set all current test nodes to "unpublished"
1038
+ ([63779a9](https://github.com/AmazeeLabs/silverback-mono/commit/63779a977e98e2c100a433df175dfb99d6bb30c9))
1039
+
1040
+ ### Features
1041
+
1042
+ - **gatsby:** configuration forms for gatsby build webhooks and roles
1043
+ ([6201ddc](https://github.com/AmazeeLabs/silverback-mono/commit/6201ddcf2db4edc112a9c7d35595d5768eb92582))
1044
+ - **gatsby:** inspect original entites on update to detect transitions over
1045
+ permission borders
1046
+ ([13a7d94](https://github.com/AmazeeLabs/silverback-mono/commit/13a7d9489dd03ee7dbed29e3d11f91a49b5ec882))
1047
+ - **gatsby:** only send updates to server if they are relevant for the selected
1048
+ role
1049
+ ([9290820](https://github.com/AmazeeLabs/silverback-mono/commit/92908204e711a7713debbf149905a5e067f5e69f))
1050
+ - **gatsby:** pass artificial account into feed update investigation
1051
+ ([eb7294b](https://github.com/AmazeeLabs/silverback-mono/commit/eb7294bd59e9f35a6004110904f2a89124e81677))
1052
+ - **gatsby:** use update webhooks from graphql schema configuration
1053
+ ([d9760b1](https://github.com/AmazeeLabs/silverback-mono/commit/d9760b173c3525f9347a5b2d75e71d120353590e))
1054
+
1055
+ ## [1.11.4](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.11.3...@-amazeelabs/silverback_gatsby@1.11.4) (2021-10-11)
1056
+
1057
+ ### Bug Fixes
1058
+
1059
+ - unpublished translation bug
1060
+ ([f4a9ca4](https://github.com/AmazeeLabs/silverback-mono/commit/f4a9ca489ac495cae38cb4763165182cad8616df))
1061
+
1062
+ ## [1.11.3](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.11.2...@-amazeelabs/silverback_gatsby@1.11.3) (2021-10-11)
1063
+
1064
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
1065
+
1066
+ ## [1.11.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.11.1...@-amazeelabs/silverback_gatsby@1.11.2) (2021-09-15)
1067
+
1068
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
1069
+
1070
+ ## [1.11.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.11.0...@-amazeelabs/silverback_gatsby@1.11.1) (2021-09-06)
1071
+
1072
+ ### Bug Fixes
1073
+
1074
+ - adjust bundle type so that it meets [@entity](https://github.com/entity)
1075
+ directive definition
1076
+ ([6dd8a2b](https://github.com/AmazeeLabs/silverback-mono/commit/6dd8a2bbb516248dfb6d59a6631540da29132a8c))
1077
+
1078
+ # [1.11.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.10.0...@-amazeelabs/silverback_gatsby@1.11.0) (2021-08-09)
1079
+
1080
+ ### Bug Fixes
1081
+
1082
+ - **gatsby:** properly update gatsby on menu item deletion
1083
+ ([0d954f1](https://github.com/AmazeeLabs/silverback-mono/commit/0d954f13fb75bf7a2a1ae6c67f6e0af85017087d))
1084
+
1085
+ ### Features
1086
+
1087
+ - **gatsby:** add [@property](https://github.com/property) directive for GraphQL
1088
+ ([f5df6b9](https://github.com/AmazeeLabs/silverback-mono/commit/f5df6b90f7bec9a8d5df8edd13433e0175d43632))
1089
+
1090
+ # [1.10.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.9.1...@-amazeelabs/silverback_gatsby@1.10.0) (2021-07-29)
1091
+
1092
+ ### Features
1093
+
1094
+ - **gatsby:** create gatsby pages automatically
1095
+ ([2155aa7](https://github.com/AmazeeLabs/silverback-mono/commit/2155aa71b6b2a058030440e3ee71badf634fc9a8))
1096
+
1097
+ ## [1.9.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.9.0...@-amazeelabs/silverback_gatsby@1.9.1) (2021-07-08)
1098
+
1099
+ ### Bug Fixes
1100
+
1101
+ - **gatsby:** return null for missing translations
1102
+ ([0ec1cee](https://github.com/AmazeeLabs/silverback-mono/commit/0ec1cee738ee26dcbeba549879b6d5be33f92ccd))
1103
+
1104
+ # [1.9.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.8.2...@-amazeelabs/silverback_gatsby@1.9.0) (2021-07-01)
1105
+
1106
+ ### Features
1107
+
1108
+ - **gatsby:** nullify inaccessible entities instead of failing
1109
+ ([cf171d5](https://github.com/AmazeeLabs/silverback-mono/commit/cf171d5bb351cecdff6fd28a895ec8c9b3a227a0))
1110
+
1111
+ ## [1.8.2](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.8.1...@-amazeelabs/silverback_gatsby@1.8.2) (2021-06-30)
1112
+
1113
+ ### Bug Fixes
1114
+
1115
+ - **gatsby:** return translation list for untranslated entities
1116
+ ([668673b](https://github.com/AmazeeLabs/silverback-mono/commit/668673bcc16301ae69b6fec8c44c710d5d31c8cf))
1117
+
1118
+ ## [1.8.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.8.0...@-amazeelabs/silverback_gatsby@1.8.1) (2021-06-30)
1119
+
1120
+ ### Bug Fixes
1121
+
1122
+ - **gatsby:** sort feed plugins by id so directive definitions are ordered in
1123
+ export
1124
+ ([47495e4](https://github.com/AmazeeLabs/silverback-mono/commit/47495e444aa5e7527b5802b28ab20e0e22507fbd))
1125
+
1126
+ # [1.8.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.7.0...@-amazeelabs/silverback_gatsby@1.8.0) (2021-06-28)
1127
+
1128
+ ### Features
1129
+
1130
+ - **gatsby:** accept access flag in entity list producer
1131
+ ([2d36f46](https://github.com/AmazeeLabs/silverback-mono/commit/2d36f467f2494d8fd3e801418046d845cd4cc3fa))
1132
+
1133
+ # [1.7.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.6.1...@-amazeelabs/silverback_gatsby@1.7.0) (2021-06-28)
1134
+
1135
+ ### Features
1136
+
1137
+ - **gatsby:** allow to bypass access checks with entity directive
1138
+ ([3f5d23d](https://github.com/AmazeeLabs/silverback-mono/commit/3f5d23d11ead14d0c1c10a43d094f5660ac36c8c))
1139
+
1140
+ ## [1.6.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.6.0...@-amazeelabs/silverback_gatsby@1.6.1) (2021-06-25)
1141
+
1142
+ ### Bug Fixes
1143
+
1144
+ - **gatsby:** simplify base extension schema and add it to the composed
1145
+ definition
1146
+ ([94c7ec8](https://github.com/AmazeeLabs/silverback-mono/commit/94c7ec82c19975b867e46ccc41e084f0f1912d54))
1147
+
1148
+ # [1.6.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.5.0...@-amazeelabs/silverback_gatsby@1.6.0) (2021-06-25)
1149
+
1150
+ ### Bug Fixes
1151
+
1152
+ - **gatsby:** composed schema definition should also include extensions
1153
+ ([cf8566d](https://github.com/AmazeeLabs/silverback-mono/commit/cf8566d5c838bf31b02ec3cbdb1a3ae9e436ba35))
1154
+
1155
+ ### Features
1156
+
1157
+ - **gatsby:** write drupal schema definition to a specific path
1158
+ ([b768a24](https://github.com/AmazeeLabs/silverback-mono/commit/b768a24a63e2ee5151ade6917656d0b38e99b62c))
1159
+
1160
+ # [1.5.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.4.1...@-amazeelabs/silverback_gatsby@1.5.0) (2021-06-24)
1161
+
1162
+ ### Features
1163
+
1164
+ - **gatsby:** drush command to export full definition of composable schema
1165
+ ([63644f2](https://github.com/AmazeeLabs/silverback-mono/commit/63644f26376e5890054c91c41dc7464614009584))
1166
+
1167
+ ## [1.4.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.4.0...@-amazeelabs/silverback_gatsby@1.4.1) (2021-06-23)
1168
+
1169
+ ### Bug Fixes
1170
+
1171
+ - **gatsby:** improve access checks in list_entities producer
1172
+ ([92464b5](https://github.com/AmazeeLabs/silverback-mono/commit/92464b5d47f05aaba5af0bda5ed0979a43b328f4))
1173
+
1174
+ # [1.4.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.3.1...@-amazeelabs/silverback_gatsby@1.4.0) (2021-06-23)
1175
+
1176
+ ### Bug Fixes
1177
+
1178
+ - **gatsby:** respect language when loading a single menu
1179
+ ([96e1d37](https://github.com/AmazeeLabs/silverback-mono/commit/96e1d37cc6cfbb088c7ed0b7844d73699e880f45))
1180
+
1181
+ ### Features
1182
+
1183
+ - **gatsby:** menu handling for silverback_gatsby
1184
+ ([5b190f7](https://github.com/AmazeeLabs/silverback-mono/commit/5b190f7e4ecaacb693d6c81ab29081fa85e72257))
1185
+
1186
+ ## [1.3.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.3.0...@-amazeelabs/silverback_gatsby@1.3.1) (2021-06-22)
1187
+
1188
+ ### Bug Fixes
1189
+
1190
+ - **gatsby:** re-add build monitor state in update trigger
1191
+ ([8958dc5](https://github.com/AmazeeLabs/silverback-mono/commit/8958dc58580b566bb26edc70513b4aeb455d6108))
1192
+
1193
+ # [1.3.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.2.1...@-amazeelabs/silverback_gatsby@1.3.0) (2021-06-15)
1194
+
1195
+ ### Features
1196
+
1197
+ - **gatsby:** integrate silverback_gatsby with gatsby_build_monitor
1198
+ ([861df53](https://github.com/AmazeeLabs/silverback-mono/commit/861df534f8191051a2e9fa0a581056393fc4562b))
1199
+
1200
+ ## [1.2.1](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.2.0...@-amazeelabs/silverback_gatsby@1.2.1) (2021-06-11)
1201
+
1202
+ **Note:** Version bump only for package @-amazeelabs/silverback_gatsby
1203
+
1204
+ # [1.2.0](https://github.com/AmazeeLabs/silverback-mono/compare/@-amazeelabs/silverback_gatsby@1.1.0...@-amazeelabs/silverback_gatsby@1.2.0) (2021-06-09)
1205
+
1206
+ ### Features
1207
+
1208
+ - **gatsby:** provide a gatsby-level field for fetching a specific translation
1209
+ ([2745afc](https://github.com/AmazeeLabs/silverback-mono/commit/2745afc8412ba98750f6019b99e71498447d2903))
1210
+
1211
+ # 1.1.0 (2021-05-31)
1212
+
1213
+ ### Features
1214
+
1215
+ - **gatsby:** move silverback_gatsby into shared module space
1216
+ ([5fd1e78](https://github.com/AmazeeLabs/silverback-mono/commit/5fd1e787741ce57ff2818e9885a08b94bd39f961))