@tinacms/app 2.5.6 → 2.5.8

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 DELETED
@@ -1,1556 +0,0 @@
1
- # @tinacms/app
2
-
3
- ## 2.5.6
4
-
5
- ### Patch Changes
6
-
7
- - [#7056](https://github.com/tinacms/tinacms/pull/7056) [`c491fc5`](https://github.com/tinacms/tinacms/commit/c491fc55e612725f5d775eeb1fdf3f8ba82314fa) Thanks [@Aibono1225](https://github.com/Aibono1225)! - Harden cross-window message handling and rich-text URL sanitization.
8
-
9
- Adds stricter origin/source checks for trusted message flows, use explicit target origins for preview iframe message, and applies URL sanitization to slatejson rich-text parsing and default rich-text link/image rendering.
10
-
11
- - Updated dependencies [[`42760d8`](https://github.com/tinacms/tinacms/commit/42760d8f5afd201107e27e274308af37f96ba8d0), [`c491fc5`](https://github.com/tinacms/tinacms/commit/c491fc55e612725f5d775eeb1fdf3f8ba82314fa)]:
12
- - tinacms@3.9.3
13
- - @tinacms/mdx@2.1.7
14
-
15
- ## 2.5.5
16
-
17
- ### Patch Changes
18
-
19
- - [#6681](https://github.com/tinacms/tinacms/pull/6681) [`95b7523`](https://github.com/tinacms/tinacms/commit/95b75237cb91ec3dc5dac9ce52359f9786072502) Thanks [@isaaclombardssw](https://github.com/isaaclombardssw)! - Fix click-to-edit for fields in connection query results (e.g. ruleConnection)
20
-
21
- - Updated dependencies []:
22
- - tinacms@3.9.2
23
-
24
- ## 2.5.4
25
-
26
- ### Patch Changes
27
-
28
- - Updated dependencies [[`7b539b8`](https://github.com/tinacms/tinacms/commit/7b539b8e7d7d9f4451b5fd36a04d26b734f7d78e)]:
29
- - tinacms@3.9.1
30
-
31
- ## 2.5.3
32
-
33
- ### Patch Changes
34
-
35
- - Updated dependencies [[`a8dd9af`](https://github.com/tinacms/tinacms/commit/a8dd9af056b17a8faeaa621bbf7722a62b396cf8), [`916bd43`](https://github.com/tinacms/tinacms/commit/916bd43de1b563854fac65a74ecf04f946ebda56), [`b9d561f`](https://github.com/tinacms/tinacms/commit/b9d561fcea56185f0f146d2bdb1b510caab180d3)]:
36
- - tinacms@3.9.0
37
-
38
- ## 2.5.2
39
-
40
- ### Patch Changes
41
-
42
- - Updated dependencies [[`c7b366c`](https://github.com/tinacms/tinacms/commit/c7b366c5de66b1a3f086c1f11954225e55430324)]:
43
- - tinacms@3.8.4
44
- - @tinacms/mdx@2.1.6
45
-
46
- ## 2.5.1
47
-
48
- ### Patch Changes
49
-
50
- - [#6947](https://github.com/tinacms/tinacms/pull/6947) [`7be8175`](https://github.com/tinacms/tinacms/commit/7be81751a6b93f785d347e759e91f024bb12c452) Thanks [@MirkaJuliet34](https://github.com/MirkaJuliet34)! - Aligned rich text editor typography class names with the actual font used and updated related references.
51
-
52
- - Updated dependencies [[`7be8175`](https://github.com/tinacms/tinacms/commit/7be81751a6b93f785d347e759e91f024bb12c452)]:
53
- - tinacms@3.8.3
54
-
55
- ## 2.5.0
56
-
57
- ### Minor Changes
58
-
59
- - [#6843](https://github.com/tinacms/tinacms/pull/6843) [`0509095`](https://github.com/tinacms/tinacms/commit/0509095601fedc87f05a622e219e6414ef51a6b6) Thanks [@wicksipedia](https://github.com/wicksipedia)! - Support TinaCMS visual editing on statically-built Astro pages.
60
-
61
- Wrap editable regions in `<TinaIsland>` and visual editing now works under `output: 'static'` (and mixed static/SSR), provided the adapter can serve the one on-demand route `/tina-island/[name]`. Highlights:
62
-
63
- - **Static page support.** `<TinaIsland>` emits a tiny in-iframe bootstrap that fetches `/admin/bridge.js`; on init the bridge "primes" any page with island markers but no server-injected form payloads by calling the island endpoints, which now return the page's form payloads alongside region HTML.
64
- - **Bridge served as a static asset.** Dropped the injected `/_tina/bridge.js` route (some adapters 404'd it) in favour of serving `/admin/bridge.js` from a dev-only Vite plugin and emitting the bundle into the build client output — no source-tree writes. The `@tinacms/astro/bridge-route` subpath export is removed.
65
- - **Re-prime on soft navigation.** `refreshForms` now re-primes when it sees island markers without server-injected payloads, so Astro `ClientRouter` swaps work without a hard reload.
66
- - **Primary-form selection.** Mark the page's main form via `requestWithMetadata(..., { priority: 'primary' })` (SSR) or the `primary` prop on `<TinaIsland>` (static); the admin reducer routes around its default selection so multi-form pages no longer land on "Referenced Files".
67
- - **Prerender-safe middleware.** `tina()` now short-circuits on `context.isPrerendered`, fixing the `Astro.request.headers` warnings that fired on every prerendered route during `astro build`.
68
- - **New `tinaAdminDevRedirect` Vite plugin** at `@tinacms/astro/vite` — redirects `/admin` and `/admin/` to `/admin/index.html` during `astro dev` so a bare `/admin` request lands on the SPA.
69
-
70
- ### Patch Changes
71
-
72
- - [#6938](https://github.com/tinacms/tinacms/pull/6938) [`4757225`](https://github.com/tinacms/tinacms/commit/475722599ff350b45bfdb4f7a6af2e37d33c81c3) Thanks [@isaaclombardssw](https://github.com/isaaclombardssw)! - chore(deps): upgrade react-router-dom from 6.3.0 to ^6.30.3 to resolve GHSA-9jcx-v3wj-wh4m (unexpected external redirect via untrusted paths)
73
-
74
- - Updated dependencies [[`33feeac`](https://github.com/tinacms/tinacms/commit/33feeacf6585be2736a0a14c5a800c1b6db34e44), [`8ac0776`](https://github.com/tinacms/tinacms/commit/8ac0776dea0c0650a5e5098c143b24c17fc25b8e), [`df50cbf`](https://github.com/tinacms/tinacms/commit/df50cbf35536bf2028a742832aebd57701dc3bb6), [`b9eaf61`](https://github.com/tinacms/tinacms/commit/b9eaf61c28c25814ae65b5fbe72d5b33df0b3596), [`cf73a11`](https://github.com/tinacms/tinacms/commit/cf73a115c3a58fac26e2518734dd3cb49133260d), [`4757225`](https://github.com/tinacms/tinacms/commit/475722599ff350b45bfdb4f7a6af2e37d33c81c3)]:
75
- - tinacms@3.8.2
76
- - @tinacms/mdx@2.1.5
77
-
78
- ## 2.4.8
79
-
80
- ### Patch Changes
81
-
82
- - Updated dependencies []:
83
- - tinacms@3.8.1
84
-
85
- ## 2.4.7
86
-
87
- ### Patch Changes
88
-
89
- - Updated dependencies [[`723632b`](https://github.com/tinacms/tinacms/commit/723632b050b1e9502c46215fd6e8e548cc108ac0), [`95758a0`](https://github.com/tinacms/tinacms/commit/95758a0ad31ec96aa652f247211a769e82a37cbb), [`9e7eba9`](https://github.com/tinacms/tinacms/commit/9e7eba9f290c935cd56569421de88b5adfac65d8)]:
90
- - tinacms@3.8.0
91
-
92
- ## 2.4.6
93
-
94
- ### Patch Changes
95
-
96
- - Updated dependencies [[`3e4dcc7`](https://github.com/tinacms/tinacms/commit/3e4dcc76d5fb89ec900b778cb7e82f3aa3ed6501), [`3da4588`](https://github.com/tinacms/tinacms/commit/3da45887c23da552a4bd994154eeaaf8990065f7), [`b37187d`](https://github.com/tinacms/tinacms/commit/b37187d46b6e1a274db7ab79372f02aaa2ef992d), [`84ec7ad`](https://github.com/tinacms/tinacms/commit/84ec7adea7a1d8015cf1430fe804886493c5ae21), [`28b869a`](https://github.com/tinacms/tinacms/commit/28b869a0d2c9b2a608e1076b6dea24bd3e01ac31)]:
97
- - tinacms@3.7.6
98
- - @tinacms/mdx@2.1.4
99
-
100
- ## 2.4.5
101
-
102
- ### Patch Changes
103
-
104
- - Updated dependencies []:
105
- - @tinacms/mdx@2.1.3
106
- - tinacms@3.7.5
107
-
108
- ## 2.4.4
109
-
110
- ### Patch Changes
111
-
112
- - [#6687](https://github.com/tinacms/tinacms/pull/6687) [`a526f9f`](https://github.com/tinacms/tinacms/commit/a526f9f4c37a0aaefb572c9dcc562d89aa9e5c7e) Thanks [@brookjeynes-ssw](https://github.com/brookjeynes-ssw)! - feat: simplify errors shown to users
113
-
114
- - Updated dependencies [[`4672251`](https://github.com/tinacms/tinacms/commit/4672251c813e51f4471f025943008d2dea700aca), [`ca725ac`](https://github.com/tinacms/tinacms/commit/ca725acb42be499c146d76b12982e05a8127f81e), [`a526f9f`](https://github.com/tinacms/tinacms/commit/a526f9f4c37a0aaefb572c9dcc562d89aa9e5c7e), [`b260b5e`](https://github.com/tinacms/tinacms/commit/b260b5ed4beb5d678b9605357b99a8667fddc8de), [`b56dad4`](https://github.com/tinacms/tinacms/commit/b56dad42d2216ac9c8f90f19b78a4951ca97a61f)]:
115
- - tinacms@3.7.4
116
-
117
- ## 2.4.3
118
-
119
- ### Patch Changes
120
-
121
- - Updated dependencies [[`cd262b3`](https://github.com/tinacms/tinacms/commit/cd262b311c218ea4e5b5bb8abbbe54fcff3b8054), [`55dae8e`](https://github.com/tinacms/tinacms/commit/55dae8eef898f49f827c00bc72297863d0d69be1), [`217bfb4`](https://github.com/tinacms/tinacms/commit/217bfb4ff2c1a61fa7b6df3ea460b192b5179bb7), [`5feb18d`](https://github.com/tinacms/tinacms/commit/5feb18d0d3032bbcd6a5aad678208c0dde19bf81), [`32e145d`](https://github.com/tinacms/tinacms/commit/32e145d4859cbc710a222f2a01c55ca7b29a080b), [`d998884`](https://github.com/tinacms/tinacms/commit/d9988849ad67fb5e9d7e233c1ccca0cb0c031c3e), [`c75d871`](https://github.com/tinacms/tinacms/commit/c75d87121224f91dc4e5e2aa8af60b0881b87a5b)]:
122
- - tinacms@3.7.3
123
- - @tinacms/mdx@2.1.2
124
-
125
- ## 2.4.2
126
-
127
- ### Patch Changes
128
-
129
- - Updated dependencies [[`3569c95`](https://github.com/tinacms/tinacms/commit/3569c95c124138013b36cd30bfef4d0b02f5c57b), [`4315d73`](https://github.com/tinacms/tinacms/commit/4315d731e729857713d5f3fc6cdef2b30abd9384), [`ff1cd6f`](https://github.com/tinacms/tinacms/commit/ff1cd6fb50edc24b34f81166d7dedbfec6d22b32), [`d1ad86e`](https://github.com/tinacms/tinacms/commit/d1ad86e204e19bf5bb4811658d40d172635da3af), [`e146e92`](https://github.com/tinacms/tinacms/commit/e146e922b40cb5376c7a3adf81b44ad4cf8f1867), [`246ee27`](https://github.com/tinacms/tinacms/commit/246ee27a8e0b74baf241c6a70a1699013fc59299)]:
130
- - tinacms@3.7.2
131
- - @tinacms/mdx@2.1.1
132
-
133
- ## 2.4.1
134
-
135
- ### Patch Changes
136
-
137
- - Updated dependencies [[`a40f52a`](https://github.com/tinacms/tinacms/commit/a40f52ae01fa2ef059fb983efd22aad42913b351), [`a7ebbe1`](https://github.com/tinacms/tinacms/commit/a7ebbe18a77b05c567564f8b507f76c2a2bb135e), [`519a4c2`](https://github.com/tinacms/tinacms/commit/519a4c2ca8a78274fe88549d41adbe52f7c6258b), [`6e374e5`](https://github.com/tinacms/tinacms/commit/6e374e5975ff240807d59bfd06b3ab22264e91b1), [`039e605`](https://github.com/tinacms/tinacms/commit/039e6052a77e4cd0ae1460e33076a0fad1864019), [`d1f094b`](https://github.com/tinacms/tinacms/commit/d1f094b2d1a62e9c0580a56b8a788bc0e7a0af98)]:
138
- - tinacms@3.7.1
139
-
140
- ## 2.4.0
141
-
142
- ### Minor Changes
143
-
144
- - [#6510](https://github.com/tinacms/tinacms/pull/6510) [`059f480`](https://github.com/tinacms/tinacms/commit/059f480697ae1af813c165df3cc8954443737488) Thanks [@Aibono1225](https://github.com/Aibono1225)! - support highlight feature in rich text editor
145
-
146
- ⚠️ `mark` is now a reserved MDX component name used internally for the highlight feature — custom MDX templates named `mark` will conflict with highlight and produce unexpected behavior.
147
-
148
- ### Patch Changes
149
-
150
- - Updated dependencies [[`5a8ec36`](https://github.com/tinacms/tinacms/commit/5a8ec366d35e33bea17740a1f80f81fe152680e3), [`32d0471`](https://github.com/tinacms/tinacms/commit/32d0471356945ed9fa7b4b8b4da0937e1fafcacc), [`059f480`](https://github.com/tinacms/tinacms/commit/059f480697ae1af813c165df3cc8954443737488), [`74f12fd`](https://github.com/tinacms/tinacms/commit/74f12fda610711bd76f43c7f6d4dc890427d3b50), [`7e34861`](https://github.com/tinacms/tinacms/commit/7e34861197af6ec3488277bdfafe8297f51e1c3d)]:
151
- - tinacms@3.7.0
152
- - @tinacms/mdx@2.1.0
153
-
154
- ## 2.3.30
155
-
156
- ### Patch Changes
157
-
158
- - [#6524](https://github.com/tinacms/tinacms/pull/6524) [`3c45642`](https://github.com/tinacms/tinacms/commit/3c45642650e1a9e9fd340c62c9a5372d10f0bee7) Thanks [@joshbermanssw](https://github.com/joshbermanssw)! - Fix broken cross-package relative import for posthog in @tinacms/app that caused consumer build failures
159
-
160
- - Updated dependencies [[`3c45642`](https://github.com/tinacms/tinacms/commit/3c45642650e1a9e9fd340c62c9a5372d10f0bee7)]:
161
- - tinacms@3.6.3
162
-
163
- ## 2.3.29
164
-
165
- ### Patch Changes
166
-
167
- - [#6495](https://github.com/tinacms/tinacms/pull/6495) [`0a1049d`](https://github.com/tinacms/tinacms/commit/0a1049d4cc205af64e566cd86a00260a20fc7036) Thanks [@joshbermanssw](https://github.com/joshbermanssw)! - 🐖 Telemetry - Adding Telemetry to see when users switch between rich-text and markdown mode in the rich-text editor
168
-
169
- - [#6480](https://github.com/tinacms/tinacms/pull/6480) [`ebaa246`](https://github.com/tinacms/tinacms/commit/ebaa24655a590eef25f856e98a4bbdae7d26b2a0) Thanks [@joshbermanssw](https://github.com/joshbermanssw)! - 🦙 Add favicon when using TinaCMS editor
170
-
171
- - Updated dependencies [[`3b44e6a`](https://github.com/tinacms/tinacms/commit/3b44e6ad9bd2ff336aa8147b016de8b9bbb6f90d), [`35385f1`](https://github.com/tinacms/tinacms/commit/35385f16fe9e4cb386021445c8e1cb817a03dcd3), [`0a1049d`](https://github.com/tinacms/tinacms/commit/0a1049d4cc205af64e566cd86a00260a20fc7036), [`960181a`](https://github.com/tinacms/tinacms/commit/960181a4fd351eabdb69d5580a3ca79b0a905fcf), [`7d544d2`](https://github.com/tinacms/tinacms/commit/7d544d22ce17fe616010c6aba63bd43c12725806), [`83ed83f`](https://github.com/tinacms/tinacms/commit/83ed83f27624134feffa0473f02b0f6f3318441b), [`8f08f49`](https://github.com/tinacms/tinacms/commit/8f08f49638edcecaf703681538fa46bbc53df982), [`13e953a`](https://github.com/tinacms/tinacms/commit/13e953a92eebcbfe2a86e12a9161ac6fe52e9236), [`168c283`](https://github.com/tinacms/tinacms/commit/168c283f0f43d601ef5ecec36062463fb5f106bf), [`c439e75`](https://github.com/tinacms/tinacms/commit/c439e759250e418c47a33eee7c9986d3b89131bf), [`9bc4f3c`](https://github.com/tinacms/tinacms/commit/9bc4f3cccb1ab88cfefcc59da7ad228d250f03d3)]:
172
- - tinacms@3.6.2
173
-
174
- ## 2.3.28
175
-
176
- ### Patch Changes
177
-
178
- - Updated dependencies []:
179
- - tinacms@3.6.1
180
-
181
- ## 2.3.27
182
-
183
- ### Patch Changes
184
-
185
- - Updated dependencies [[`f23c2a6`](https://github.com/tinacms/tinacms/commit/f23c2a6742373271531bee46ca3cca8b208c3476), [`d782ca2`](https://github.com/tinacms/tinacms/commit/d782ca209ff98ee2143c7fd83f0b793563b6de60), [`60510bb`](https://github.com/tinacms/tinacms/commit/60510bbf8d1b78cad901722d4f9003665412d71e)]:
186
- - tinacms@3.6.0
187
- - @tinacms/mdx@2.0.7
188
-
189
- ## 2.3.26
190
-
191
- ### Patch Changes
192
-
193
- - Updated dependencies [[`2738749`](https://github.com/tinacms/tinacms/commit/2738749bac08c02214fdf208f96bbcc4906ef442), [`dfb4ce8`](https://github.com/tinacms/tinacms/commit/dfb4ce8da7b82b638337109cc7859125e112a0a9)]:
194
- - tinacms@3.5.1
195
-
196
- ## 2.3.25
197
-
198
- ### Patch Changes
199
-
200
- - Updated dependencies [[`da837f7`](https://github.com/tinacms/tinacms/commit/da837f7b17f0540cd47025afd2c45140706d595d), [`f90d47b`](https://github.com/tinacms/tinacms/commit/f90d47b746b000e65324da430aacc8fd623f5065), [`c806e41`](https://github.com/tinacms/tinacms/commit/c806e41232e0204a13539d6236358cb58cbc7692), [`89aee8a`](https://github.com/tinacms/tinacms/commit/89aee8ae3d6867e5793e4df7ff9c700dfd8a48c9)]:
201
- - tinacms@3.5.0
202
- - @tinacms/mdx@2.0.6
203
-
204
- ## 2.3.24
205
-
206
- ### Patch Changes
207
-
208
- - Updated dependencies []:
209
- - @tinacms/mdx@2.0.5
210
- - tinacms@3.4.1
211
-
212
- ## 2.3.23
213
-
214
- ### Patch Changes
215
-
216
- - Updated dependencies [[`155654c`](https://github.com/tinacms/tinacms/commit/155654ce515ab68a0483cd7e797e9df0a4157431), [`414dc87`](https://github.com/tinacms/tinacms/commit/414dc87ea0e63702d12ec7a3d3e9f4e5527eaa56)]:
217
- - tinacms@3.4.0
218
-
219
- ## 2.3.22
220
-
221
- ### Patch Changes
222
-
223
- - Updated dependencies [[`6647240`](https://github.com/tinacms/tinacms/commit/6647240db6cfffcf1efb4fa9799e9c039b929389)]:
224
- - tinacms@3.3.2
225
- - @tinacms/mdx@2.0.4
226
-
227
- ## 2.3.21
228
-
229
- ### Patch Changes
230
-
231
- - [#6346](https://github.com/tinacms/tinacms/pull/6346) [`3fa216c`](https://github.com/tinacms/tinacms/commit/3fa216c110af6417e6b835c49a275b08981e028b) Thanks [@JackDevAU](https://github.com/JackDevAU)! - Revert "✨ Visual element highlighting between iframe and form (#6211)"
232
-
233
- - Updated dependencies [[`3fa216c`](https://github.com/tinacms/tinacms/commit/3fa216c110af6417e6b835c49a275b08981e028b), [`7352c96`](https://github.com/tinacms/tinacms/commit/7352c9660869d413a0f48d3fbb003d4c4c0e3d85)]:
234
- - tinacms@3.3.1
235
-
236
- ## 2.3.20
237
-
238
- ### Patch Changes
239
-
240
- - Updated dependencies [[`6c2c48a`](https://github.com/tinacms/tinacms/commit/6c2c48a9d869cb98e78fc656b986ecc244a5dafd)]:
241
- - tinacms@3.3.0
242
- - @tinacms/mdx@2.0.3
243
-
244
- ## 2.3.19
245
-
246
- ### Patch Changes
247
-
248
- - Updated dependencies [[`a63401a`](https://github.com/tinacms/tinacms/commit/a63401a3dd8271258bc6bfb4cc22593c19e94c7d)]:
249
- - tinacms@3.2.0
250
- - @tinacms/mdx@2.0.2
251
-
252
- ## 2.3.18
253
-
254
- ### Patch Changes
255
-
256
- - [#6211](https://github.com/tinacms/tinacms/pull/6211) [`790c860`](https://github.com/tinacms/tinacms/commit/790c860ae85c3bdcb7d3c07321ed4032ebbb7b49) Thanks [@Pat-Stuart](https://github.com/Pat-Stuart)! - ✨ Visual element highlighting between iframe and form
257
-
258
- - Updated dependencies [[`790c860`](https://github.com/tinacms/tinacms/commit/790c860ae85c3bdcb7d3c07321ed4032ebbb7b49), [`60814a3`](https://github.com/tinacms/tinacms/commit/60814a3b56f99843211ef144576109857ad6ba86), [`b0f55b5`](https://github.com/tinacms/tinacms/commit/b0f55b511426ebf772d9f06645804f2319f9f9a2)]:
259
- - tinacms@3.1.3
260
-
261
- ## 2.3.17
262
-
263
- ### Patch Changes
264
-
265
- - Updated dependencies [[`8335218`](https://github.com/tinacms/tinacms/commit/833521832f91c98ff3cb48535eecb3824cb0f7bd)]:
266
- - tinacms@3.1.2
267
-
268
- ## 2.3.16
269
-
270
- ### Patch Changes
271
-
272
- - Updated dependencies [[`3a12a39`](https://github.com/tinacms/tinacms/commit/3a12a392d5a8eb9bba5a5be65d080f24afa08de3)]:
273
- - tinacms@3.1.1
274
-
275
- ## 2.3.15
276
-
277
- ### Patch Changes
278
-
279
- - Updated dependencies [[`998975c`](https://github.com/tinacms/tinacms/commit/998975cc8e3c71489f3ed6cbf9ca0a5a7619c18b), [`a125472`](https://github.com/tinacms/tinacms/commit/a125472d3278c140cb416dba5cd1478fb5dfe320), [`3097535`](https://github.com/tinacms/tinacms/commit/3097535275e813db907a592ee96bd8481f0eacc5), [`9fb397d`](https://github.com/tinacms/tinacms/commit/9fb397da515468f72b01f5a7cf881187a9c33d6e)]:
280
- - tinacms@3.1.0
281
- - @tinacms/mdx@2.0.1
282
-
283
- ## 2.3.14
284
-
285
- ### Patch Changes
286
-
287
- - Updated dependencies [[`5c1e891`](https://github.com/tinacms/tinacms/commit/5c1e89181f595d392ad6cb56ca5fc0b6d9e60a23), [`f717193`](https://github.com/tinacms/tinacms/commit/f717193aa4a1d3205df42d120fd1f6192b5e41e5), [`ac59522`](https://github.com/tinacms/tinacms/commit/ac59522053c71c713057c4c2b6ce610617bce85e)]:
288
- - tinacms@3.0.2
289
- - @tinacms/mdx@2.0.0
290
-
291
- ## 2.3.13
292
-
293
- ### Patch Changes
294
-
295
- - Updated dependencies [[`50fa9f4`](https://github.com/tinacms/tinacms/commit/50fa9f4bf932a3dc45b88d245e35917efe8d3423), [`428ec7e`](https://github.com/tinacms/tinacms/commit/428ec7eca20603e2cb666d562fd4cc16dda4cbed), [`6946476`](https://github.com/tinacms/tinacms/commit/69464767d339a5df3c6c530ece94ef80049e534f), [`f99bbbc`](https://github.com/tinacms/tinacms/commit/f99bbbc221eead8d714b3791348d415dd8fcd063)]:
296
- - tinacms@3.0.1
297
-
298
- ## 2.3.12
299
-
300
- ### Patch Changes
301
-
302
- - Updated dependencies [[`2e1535d`](https://github.com/tinacms/tinacms/commit/2e1535dd5495dc390902f2db6ef1f26afb072396), [`ed6025e`](https://github.com/tinacms/tinacms/commit/ed6025ee87ebe051957fc93e987ba8de8b003995), [`3bf79e1`](https://github.com/tinacms/tinacms/commit/3bf79e19c005dca745a8ddd46546190741b322a5), [`bb1ad6a`](https://github.com/tinacms/tinacms/commit/bb1ad6a11d10976074453ed218b178935ec96fd3)]:
303
- - @tinacms/mdx@2.0.0
304
- - tinacms@3.0.0
305
-
306
- ## 2.3.11
307
-
308
- ### Patch Changes
309
-
310
- - Updated dependencies [[`a76fdb6`](https://github.com/tinacms/tinacms/commit/a76fdb639b94cfefa169ebbd184f55d62e4a8a76), [`dd2089d`](https://github.com/tinacms/tinacms/commit/dd2089dbde4a7b1a0116cce096f50a97fdca9d81)]:
311
- - tinacms@2.10.1
312
- - @tinacms/mdx@1.8.3
313
-
314
- ## 2.3.10
315
-
316
- ### Patch Changes
317
-
318
- - [#5822](https://github.com/tinacms/tinacms/pull/5822) [`4b824be`](https://github.com/tinacms/tinacms/commit/4b824be53572f9231753ebd3b5f14fd778fd73d6) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Migrate from react-beautiful-dnd to dnd-kit to fix deprecation error.
319
-
320
- - Updated dependencies [[`f2577b9`](https://github.com/tinacms/tinacms/commit/f2577b911a97ecc1c3f53a98ae8218cc33bc9867), [`3ffa092`](https://github.com/tinacms/tinacms/commit/3ffa0929e4964f17d5ffa05e0d4cbbff5d9ef4d9), [`38920ce`](https://github.com/tinacms/tinacms/commit/38920ce29a9b63c54b04f39537f19beab62d2c86), [`d1bd1a1`](https://github.com/tinacms/tinacms/commit/d1bd1a1312fa910e237ec06608e7c11830c78346), [`67e1a3d`](https://github.com/tinacms/tinacms/commit/67e1a3d4c52e0acdab0a8dc53956e39f2e3075fa), [`9fb1402`](https://github.com/tinacms/tinacms/commit/9fb1402491f52d16e763c875ee550f7d879c83c8), [`3fa1098`](https://github.com/tinacms/tinacms/commit/3fa109849f552406dd0059041afe0bf09edadb25), [`ccab7a5`](https://github.com/tinacms/tinacms/commit/ccab7a5d0fd1f4167e8f72306e9d32e8750ed9bf), [`4b824be`](https://github.com/tinacms/tinacms/commit/4b824be53572f9231753ebd3b5f14fd778fd73d6), [`d9487bf`](https://github.com/tinacms/tinacms/commit/d9487bff276ba20a84b76944c5a7a333666f4984)]:
321
- - tinacms@2.10.0
322
- - @tinacms/mdx@1.8.2
323
-
324
- ## 2.3.9
325
-
326
- ### Patch Changes
327
-
328
- - Updated dependencies [[`d900f4e`](https://github.com/tinacms/tinacms/commit/d900f4e6c6f0a86c94bba5f0925bbaa54eeb90db)]:
329
- - tinacms@2.9.5
330
-
331
- ## 2.3.8
332
-
333
- ### Patch Changes
334
-
335
- - Updated dependencies [[`e1b6d05`](https://github.com/tinacms/tinacms/commit/e1b6d05c6b31c5c0928633064a065ddd331667ca), [`4ee0dd9`](https://github.com/tinacms/tinacms/commit/4ee0dd95913392b0da12dd5c9344909e5292e911), [`27e5ca9`](https://github.com/tinacms/tinacms/commit/27e5ca9b18a90f13f92425ebb2628b143d6a81be)]:
336
- - tinacms@2.9.4
337
-
338
- ## 2.3.7
339
-
340
- ### Patch Changes
341
-
342
- - Updated dependencies [[`9e8bc37`](https://github.com/tinacms/tinacms/commit/9e8bc37402c8aa4d408c38e00d4402d596b0d896), [`0f265aa`](https://github.com/tinacms/tinacms/commit/0f265aadf918ae6f5b789e298fc2c406a6df0b16), [`32bd9b2`](https://github.com/tinacms/tinacms/commit/32bd9b21b54462be3e83b2d3e4b4237a48758bb1), [`ce1414c`](https://github.com/tinacms/tinacms/commit/ce1414ce1b82e6755a96c9c12949cd469b43e283)]:
343
- - tinacms@2.9.3
344
-
345
- ## 2.3.6
346
-
347
- ### Patch Changes
348
-
349
- - [#6087](https://github.com/tinacms/tinacms/pull/6087) [`1286e87`](https://github.com/tinacms/tinacms/commit/1286e87323694dc819edc56360613dc654f3d3ca) Thanks [@kulesy](https://github.com/kulesy)! - feat: Enhance branch creation modal with improved UI/UX and dropdown button component
350
-
351
- - [#6098](https://github.com/tinacms/tinacms/pull/6098) [`a2d983e`](https://github.com/tinacms/tinacms/commit/a2d983ed886f66db2c133e902eacaa8d07e88bdb) Thanks [@Pat-Stuart](https://github.com/Pat-Stuart)! - Change from blue accent coloring to orange
352
-
353
- - Updated dependencies [[`1286e87`](https://github.com/tinacms/tinacms/commit/1286e87323694dc819edc56360613dc654f3d3ca), [`4416a28`](https://github.com/tinacms/tinacms/commit/4416a283ac1cfea5e9c4890cd71f2edf3b704344), [`6cba118`](https://github.com/tinacms/tinacms/commit/6cba118c90f7c7ab6356c0ef83fca18526e47f8d), [`572fb28`](https://github.com/tinacms/tinacms/commit/572fb28236b56db4ede5fe53b177b80323ae7284), [`f224124`](https://github.com/tinacms/tinacms/commit/f224124220811fb44749122d46eb7100af89ee77), [`a2d983e`](https://github.com/tinacms/tinacms/commit/a2d983ed886f66db2c133e902eacaa8d07e88bdb), [`bc35474`](https://github.com/tinacms/tinacms/commit/bc354740d0cb359c372ba287974e7e9db3c5119c)]:
354
- - tinacms@2.9.2
355
-
356
- ## 2.3.5
357
-
358
- ### Patch Changes
359
-
360
- - Updated dependencies [[`003e348`](https://github.com/tinacms/tinacms/commit/003e348472ddc08eee63d78190038097542b6311), [`5527e8a`](https://github.com/tinacms/tinacms/commit/5527e8ab5821c8613fcfd1b0b8bc6d93291a6d03), [`5ffd60e`](https://github.com/tinacms/tinacms/commit/5ffd60e7b07b19cde6fab36a911503276c83715f), [`b23aa0c`](https://github.com/tinacms/tinacms/commit/b23aa0c5defc51b8f9fe00a59dd87e1d2f8b9f0b), [`5d13c0d`](https://github.com/tinacms/tinacms/commit/5d13c0d023373692233c8be2127ae6e3d7d68b47)]:
361
- - tinacms@2.9.1
362
-
363
- ## 2.3.4
364
-
365
- ### Patch Changes
366
-
367
- - Updated dependencies [[`0bbe080`](https://github.com/tinacms/tinacms/commit/0bbe0804e334238850a4f8f33be5cd123ff68ab3), [`98fbc94`](https://github.com/tinacms/tinacms/commit/98fbc941a07fbc52edafaeb43b49b5ea30ea4172), [`ced9076`](https://github.com/tinacms/tinacms/commit/ced9076d25d7177bd8d9ae3c6133d0560366511c)]:
368
- - tinacms@2.9.0
369
-
370
- ## 2.3.3
371
-
372
- ### Patch Changes
373
-
374
- - Updated dependencies [[`ea917dd`](https://github.com/tinacms/tinacms/commit/ea917dd2840c955d462b66b58009d2a16da39377), [`b012b6c`](https://github.com/tinacms/tinacms/commit/b012b6c7fae2674c613fd4c54e1819a86c6d2c3e), [`39e5b05`](https://github.com/tinacms/tinacms/commit/39e5b0562af7bca1e2923fc94b7c8119e12a0133), [`55e018b`](https://github.com/tinacms/tinacms/commit/55e018b9826a540005bbadf8fd51e9bac456d531)]:
375
- - tinacms@2.8.3
376
-
377
- ## 2.3.2
378
-
379
- ### Patch Changes
380
-
381
- - Updated dependencies [[`eaa6ed5`](https://github.com/tinacms/tinacms/commit/eaa6ed551c76349c5849cd1e19a8066ecbbe205c), [`60a15d5`](https://github.com/tinacms/tinacms/commit/60a15d533b85a0c3f9f483f6f0f0b6824616284b), [`2fb1c4e`](https://github.com/tinacms/tinacms/commit/2fb1c4e79d1cae5ab29c3f93b0867214e193f59c)]:
382
- - tinacms@2.8.2
383
- - @tinacms/mdx@1.8.1
384
-
385
- ## 2.3.1
386
-
387
- ### Patch Changes
388
-
389
- - Updated dependencies [[`41359ed`](https://github.com/tinacms/tinacms/commit/41359edaf08def7a5e26969ec114155038c09752), [`b20a2c4`](https://github.com/tinacms/tinacms/commit/b20a2c4fd64fa2d06711850db63fb317302ee361), [`41359ed`](https://github.com/tinacms/tinacms/commit/41359edaf08def7a5e26969ec114155038c09752)]:
390
- - tinacms@2.8.1
391
-
392
- ## 2.3.0
393
-
394
- ### Minor Changes
395
-
396
- - [#5744](https://github.com/tinacms/tinacms/pull/5744) [`98a61e2`](https://github.com/tinacms/tinacms/commit/98a61e2d263978a7096cc23ac7e94aa0039981be) Thanks [@Ben0189](https://github.com/Ben0189)! - Upgrade Plate editor to v48 beta, integrating latest features and improvements.
397
-
398
- ### Patch Changes
399
-
400
- - Updated dependencies [[`98a61e2`](https://github.com/tinacms/tinacms/commit/98a61e2d263978a7096cc23ac7e94aa0039981be)]:
401
- - @tinacms/mdx@1.8.0
402
- - tinacms@2.8.0
403
-
404
- ## 2.2.10
405
-
406
- ### Patch Changes
407
-
408
- - [#5833](https://github.com/tinacms/tinacms/pull/5833) [`5269d65`](https://github.com/tinacms/tinacms/commit/5269d6578d361c55326f39375eaa175707342d51) Thanks [@JackDevAU](https://github.com/JackDevAU)! - 🐛 FIX - Visual Editor Webpack HMR loading issue
409
-
410
- - Updated dependencies [[`5269d65`](https://github.com/tinacms/tinacms/commit/5269d6578d361c55326f39375eaa175707342d51), [`3026a2b`](https://github.com/tinacms/tinacms/commit/3026a2b492113a53c036e43d5d85837cea4a6de3), [`28a94a6`](https://github.com/tinacms/tinacms/commit/28a94a602186f48b528b91236007839e5d02a9de)]:
411
- - tinacms@2.7.10
412
-
413
- ## 2.2.9
414
-
415
- ### Patch Changes
416
-
417
- - [#5741](https://github.com/tinacms/tinacms/pull/5741) [`0e9de37`](https://github.com/tinacms/tinacms/commit/0e9de379dab2970206b9b60eb014808662f67287) Thanks [@wicksipedia](https://github.com/wicksipedia)! - CMS admin UI - Refactor Sidebar and Branch Button Components
418
- Forms header - Adds breadcrumb navigation
419
-
420
- - [#5784](https://github.com/tinacms/tinacms/pull/5784) [`b25c5f0`](https://github.com/tinacms/tinacms/commit/b25c5f0b0e1d3f37870b780230b41dbc56bef1ab) Thanks [@JackDevAU](https://github.com/JackDevAU)! - - Fixed padding issues in FormLists
421
-
422
- - Fixed Visual Editing's "Edit" button (Reference Fields)
423
-
424
- - [#5789](https://github.com/tinacms/tinacms/pull/5789) [`5040a6a`](https://github.com/tinacms/tinacms/commit/5040a6aa24e62166d942c47b61a3f18585caded6) Thanks [@JackDevAU](https://github.com/JackDevAU)! - ✨ Adds click to focus for nested objects
425
-
426
- - Updated dependencies [[`2a3ed6c`](https://github.com/tinacms/tinacms/commit/2a3ed6c3ec3233fd90fd94f3dd3d0243aaad079a), [`bc47f93`](https://github.com/tinacms/tinacms/commit/bc47f938431c400714808613f633b05659a87be1), [`0e9de37`](https://github.com/tinacms/tinacms/commit/0e9de379dab2970206b9b60eb014808662f67287), [`468f0ee`](https://github.com/tinacms/tinacms/commit/468f0eefc0a15a9a9a23737d29ea9a5cb5c6aef6), [`e27c017`](https://github.com/tinacms/tinacms/commit/e27c0172005797af93b908152d51b2966c0cf059), [`b25c5f0`](https://github.com/tinacms/tinacms/commit/b25c5f0b0e1d3f37870b780230b41dbc56bef1ab), [`5040a6a`](https://github.com/tinacms/tinacms/commit/5040a6aa24e62166d942c47b61a3f18585caded6), [`dbef36f`](https://github.com/tinacms/tinacms/commit/dbef36f594b949024d5525184b6a9e1b9085b759), [`3ba6d78`](https://github.com/tinacms/tinacms/commit/3ba6d78f35f817d55bfc3d12b750e54b7e0d11f2)]:
427
- - tinacms@2.7.9
428
- - @tinacms/mdx@1.7.0
429
-
430
- ## 2.2.8
431
-
432
- ### Patch Changes
433
-
434
- - Updated dependencies [[`5e36123`](https://github.com/tinacms/tinacms/commit/5e361239a372e21dda624d17b4ff274bab23ce90), [`856e07a`](https://github.com/tinacms/tinacms/commit/856e07a0b8d742ee78d5eba565623cf081a61534), [`4d9c8ab`](https://github.com/tinacms/tinacms/commit/4d9c8abf6badd1bcc833bda432ab22dace4925ae), [`7346dc9`](https://github.com/tinacms/tinacms/commit/7346dc996fd81ecb395b62f373976512e8224c21)]:
435
- - tinacms@2.7.8
436
- - @tinacms/mdx@1.6.3
437
-
438
- ## 2.2.7
439
-
440
- ### Patch Changes
441
-
442
- - [#5607](https://github.com/tinacms/tinacms/pull/5607) [`1965236`](https://github.com/tinacms/tinacms/commit/19652363784e48b065ec1924a9cd9611c8e79cae) Thanks [@jeffsee55](https://github.com/jeffsee55)! - Specify react and react-dom as peer deps
443
-
444
- - Updated dependencies [[`1965236`](https://github.com/tinacms/tinacms/commit/19652363784e48b065ec1924a9cd9611c8e79cae)]:
445
- - tinacms@2.7.7
446
-
447
- ## 2.2.6
448
-
449
- ### Patch Changes
450
-
451
- - Updated dependencies [[`65cee5d`](https://github.com/tinacms/tinacms/commit/65cee5d6ae16c7320a4a14f0d9a82dc5f9103e34)]:
452
- - tinacms@2.7.6
453
-
454
- ## 2.2.5
455
-
456
- ### Patch Changes
457
-
458
- - [#5602](https://github.com/tinacms/tinacms/pull/5602) [`ab43169`](https://github.com/tinacms/tinacms/commit/ab43169af5a95f31fa27bb0236623a031883a1fd) Thanks [@wicksipedia](https://github.com/wicksipedia)! - fix naming of TinaCloud
459
-
460
- - [#5588](https://github.com/tinacms/tinacms/pull/5588) [`fd664d8`](https://github.com/tinacms/tinacms/commit/fd664d8f4e83941ed1b1f234668ab6341a6178f8) Thanks [@JackDevAU](https://github.com/JackDevAU)! - - Fix server-side branch queries by storing the active branch in a cookie and passing it via the x-branch header.
461
- - Ensure GraphQL playground correctly updates when switching branches.
462
- - Updated dependencies [[`921f235`](https://github.com/tinacms/tinacms/commit/921f2356e4615d532d02eefa7103fdb70f83b97a), [`ab43169`](https://github.com/tinacms/tinacms/commit/ab43169af5a95f31fa27bb0236623a031883a1fd), [`b551232`](https://github.com/tinacms/tinacms/commit/b5512326ad0ad9855bc75e2073a3ab2a8ec4c064), [`ea204c9`](https://github.com/tinacms/tinacms/commit/ea204c9045451f3ebea04f503e6158d2016613e4), [`fd664d8`](https://github.com/tinacms/tinacms/commit/fd664d8f4e83941ed1b1f234668ab6341a6178f8)]:
463
- - tinacms@2.7.5
464
- - @tinacms/mdx@1.6.2
465
-
466
- ## 2.2.3
467
-
468
- ### Patch Changes
469
-
470
- - Updated dependencies [[`991db1f`](https://github.com/tinacms/tinacms/commit/991db1f10c1f9cf9211d7e82bd56658cdcce24c7)]:
471
- - tinacms@2.7.3
472
-
473
- ## 2.2.2
474
-
475
- ### Patch Changes
476
-
477
- - Updated dependencies [[`619e601`](https://github.com/tinacms/tinacms/commit/619e6010d6f95d893e980952bef64f747808c956), [`602b4d0`](https://github.com/tinacms/tinacms/commit/602b4d07f94de4c10d5bb059a5edc49546a2031c)]:
478
- - tinacms@2.7.2
479
- - @tinacms/mdx@1.6.1
480
-
481
- ## 2.2.1
482
-
483
- ### Patch Changes
484
-
485
- - Updated dependencies [[`74513b3`](https://github.com/tinacms/tinacms/commit/74513b357aa27165aa86f7b3218c697c663539e8), [`06c1716`](https://github.com/tinacms/tinacms/commit/06c17163b558a96275b0ef66c746b005a6f90d13)]:
486
- - tinacms@2.7.1
487
-
488
- ## 2.2.0
489
-
490
- ### Minor Changes
491
-
492
- - [#5503](https://github.com/tinacms/tinacms/pull/5503) [`99bb59f`](https://github.com/tinacms/tinacms/commit/99bb59ff7b9f3cf27a1382b91826eb81831ecb95) Thanks [@JackDevAU](https://github.com/JackDevAU)! - feat: add experimental user form select to the useTina hook
493
-
494
- ### Patch Changes
495
-
496
- - [#5486](https://github.com/tinacms/tinacms/pull/5486) [`d7c5ec1`](https://github.com/tinacms/tinacms/commit/d7c5ec1b174419dcc6ddba3cfb3684dd469da571) Thanks [@JackDevAU](https://github.com/JackDevAU)! - Update dependencies across packages
497
-
498
- - Updated dependencies [[`3974aa7`](https://github.com/tinacms/tinacms/commit/3974aa759192713140733b99ee0254a1a056e124), [`7541614`](https://github.com/tinacms/tinacms/commit/7541614527a02268ea453b23ce84637f978dcf2d), [`d7c5ec1`](https://github.com/tinacms/tinacms/commit/d7c5ec1b174419dcc6ddba3cfb3684dd469da571), [`99bb59f`](https://github.com/tinacms/tinacms/commit/99bb59ff7b9f3cf27a1382b91826eb81831ecb95)]:
499
- - tinacms@2.7.0
500
- - @tinacms/mdx@1.6.0
501
-
502
- ## 2.1.19
503
-
504
- ### Patch Changes
505
-
506
- - Updated dependencies []:
507
- - tinacms@2.6.4
508
-
509
- ## 2.1.18
510
-
511
- ### Patch Changes
512
-
513
- - Updated dependencies [[`05ba069`](https://github.com/tinacms/tinacms/commit/05ba0692a7e990fbb671177829562869d517e7c1), [`42daaf7`](https://github.com/tinacms/tinacms/commit/42daaf7af125da265d2c5998168e9c7345dc0a59), [`bc986dd`](https://github.com/tinacms/tinacms/commit/bc986dd48f9a7da264281b55926ec51ce1068bb7), [`3af2354`](https://github.com/tinacms/tinacms/commit/3af23542b984c10e138d0cf10a165d50b99bb0e9)]:
514
- - tinacms@2.6.3
515
-
516
- ## 2.1.17
517
-
518
- ### Patch Changes
519
-
520
- - Updated dependencies []:
521
- - tinacms@2.6.2
522
-
523
- ## 2.1.16
524
-
525
- ### Patch Changes
526
-
527
- - Updated dependencies [[`61c45f4`](https://github.com/tinacms/tinacms/commit/61c45f49a2abe82336b661dedbbe2a15d0f3da05)]:
528
- - tinacms@2.6.1
529
-
530
- ## 2.1.15
531
-
532
- ### Patch Changes
533
-
534
- - Updated dependencies [[`9931d5a`](https://github.com/tinacms/tinacms/commit/9931d5a0d7e5e9e5165170047cf5653041bddd7a), [`4aadf3e`](https://github.com/tinacms/tinacms/commit/4aadf3ee0b5e7ba6614baee9507a3b51abc92053), [`92b683b`](https://github.com/tinacms/tinacms/commit/92b683bd3d73b47271eee5b8ff648ed4dcde51e3), [`82b0039`](https://github.com/tinacms/tinacms/commit/82b00393da8bbcc2cf357fbbb546904f07e8d89c), [`877699d`](https://github.com/tinacms/tinacms/commit/877699d08b3e2c2470742a3acf25d02a95e440b3)]:
535
- - tinacms@2.6.0
536
- - @tinacms/mdx@1.5.4
537
-
538
- ## 2.1.14
539
-
540
- ### Patch Changes
541
-
542
- - Updated dependencies [[`b54b303`](https://github.com/tinacms/tinacms/commit/b54b303a8290528230dc83d8fb1b7535df7199f6), [`0345852`](https://github.com/tinacms/tinacms/commit/0345852e3a7568b61a1417cd037715ab0d0dca01)]:
543
- - tinacms@2.5.2
544
- - @tinacms/mdx@1.5.3
545
-
546
- ## 2.1.13
547
-
548
- ### Patch Changes
549
-
550
- - Updated dependencies [[`bbfd415`](https://github.com/tinacms/tinacms/commit/bbfd415762a8b2c62b7653b497b94d67aaa8501a), [`83a25cf`](https://github.com/tinacms/tinacms/commit/83a25cf61b736e1867d37bee37f7514d349e4427)]:
551
- - tinacms@2.5.1
552
-
553
- ## 2.1.12
554
-
555
- ### Patch Changes
556
-
557
- - [#5276](https://github.com/tinacms/tinacms/pull/5276) [`f90ef4d`](https://github.com/tinacms/tinacms/commit/f90ef4d92ae7b21c8c610d14af9510354a3969c6) Thanks [@Ben0189](https://github.com/Ben0189)! - Updates minor and patch dependencies
558
-
559
- - [#5218](https://github.com/tinacms/tinacms/pull/5218) [`03bb823`](https://github.com/tinacms/tinacms/commit/03bb8237df87dab9da503818b839d44209263a48) Thanks [@kldavis4](https://github.com/kldavis4)! - Adds referential integrity for renaming and deleting referenced documents.
560
-
561
- When a document is renamed, any documents which reference the document will be updated with the new document name. When a document is deleted, the user will be warned and any references to the document will be deleted.
562
-
563
- - Updated dependencies [[`f90ef4d`](https://github.com/tinacms/tinacms/commit/f90ef4d92ae7b21c8c610d14af9510354a3969c6), [`03bb823`](https://github.com/tinacms/tinacms/commit/03bb8237df87dab9da503818b839d44209263a48), [`60fb710`](https://github.com/tinacms/tinacms/commit/60fb710addd539860eb7ba39196e02f3bb5f08c1), [`f3aa146`](https://github.com/tinacms/tinacms/commit/f3aa1465423101520bd05939249228c8d8b2a0df)]:
564
- - @tinacms/mdx@1.5.2
565
- - tinacms@2.5.0
566
-
567
- ## 2.1.11
568
-
569
- ### Patch Changes
570
-
571
- - Updated dependencies [[`9bb408f`](https://github.com/tinacms/tinacms/commit/9bb408f1c45ecb1fd8e39faac652c4b342f74967), [`bbf2f81`](https://github.com/tinacms/tinacms/commit/bbf2f81143eb400faf8aa4dff33b8a58fa5059c8), [`bc59a81`](https://github.com/tinacms/tinacms/commit/bc59a819e1e68e48de027c4fac72551ca109185d)]:
572
- - tinacms@2.4.0
573
- - @tinacms/mdx@1.5.1
574
-
575
- ## 2.1.10
576
-
577
- ### Patch Changes
578
-
579
- - [#5004](https://github.com/tinacms/tinacms/pull/5004) [`74014ed`](https://github.com/tinacms/tinacms/commit/74014ed2df67e96e1a5fb2950e973528322671a3) Thanks [@Ben0189](https://github.com/Ben0189)! - Fix toolbar floating icon show up in different screen size
580
-
581
- - Updated dependencies [[`c5dad82`](https://github.com/tinacms/tinacms/commit/c5dad82a3f1fc4f7686f1503a7894dfacffa8c36), [`ecea7ac`](https://github.com/tinacms/tinacms/commit/ecea7ac5e1c087954eaaf873df3a563ca08f3e47), [`eb519f2`](https://github.com/tinacms/tinacms/commit/eb519f27a4c0fe1b05c361db2c1fe2337e6c4e12), [`00f6525`](https://github.com/tinacms/tinacms/commit/00f6525871c7c6bd40091424337df72c7bfcf783)]:
582
- - @tinacms/mdx@1.5.0
583
- - tinacms@2.3.0
584
-
585
- ## 2.1.9
586
-
587
- ### Patch Changes
588
-
589
- - Updated dependencies [[`31513bb`](https://github.com/tinacms/tinacms/commit/31513bb473cd1d349a3711ef7c5075cf9d03f121), [`3b2aba8`](https://github.com/tinacms/tinacms/commit/3b2aba80ac14a512592f67a04f9e1792667db9dd)]:
590
- - tinacms@2.2.9
591
- - @tinacms/mdx@1.4.5
592
-
593
- ## 2.1.8
594
-
595
- ### Patch Changes
596
-
597
- - [#4843](https://github.com/tinacms/tinacms/pull/4843) [`4753c9b`](https://github.com/tinacms/tinacms/commit/4753c9b53854d19212229f985bc445b2794fad9a) Thanks [@JackDevAU](https://github.com/JackDevAU)! - ⬆️ Update Minor & Patch Dependencies Versions
598
-
599
- - Updated dependencies [[`4753c9b`](https://github.com/tinacms/tinacms/commit/4753c9b53854d19212229f985bc445b2794fad9a)]:
600
- - tinacms@2.2.8
601
- - @tinacms/mdx@1.4.4
602
-
603
- ## 2.1.7
604
-
605
- ### Patch Changes
606
-
607
- - Updated dependencies [[`113f4db`](https://github.com/tinacms/tinacms/commit/113f4db4b5d5b7d4b95d612eca56f815f41b4f8c), [`f0994c8`](https://github.com/tinacms/tinacms/commit/f0994c8f49122cd9d784bf47171715c529d2528f)]:
608
- - tinacms@2.2.7
609
-
610
- ## 2.1.6
611
-
612
- ### Patch Changes
613
-
614
- - [#4818](https://github.com/tinacms/tinacms/pull/4818) [`96bdcb7`](https://github.com/tinacms/tinacms/commit/96bdcb79b30e96056c7b19614be260a6c3ef00da) Thanks [@JackDevAU](https://github.com/JackDevAU)! - lock headlessui to version 2.1.8
615
-
616
- - [#4804](https://github.com/tinacms/tinacms/pull/4804) [`d08053e`](https://github.com/tinacms/tinacms/commit/d08053e758b6910afa8ab8952a40984921cccbc4) Thanks [@dependabot](https://github.com/apps/dependabot)! - ⬆️ Updates Typescript to v5.5, @types/node to v22.x, next.js to latest version 14.x, and removes node-fetch
617
-
618
- - Updated dependencies [[`b64b046`](https://github.com/tinacms/tinacms/commit/b64b046dc67ae948513057f855b156ce0cf250d8), [`6cd3596`](https://github.com/tinacms/tinacms/commit/6cd35967ab0d34851be44199bc9821b128fcfc75), [`96bdcb7`](https://github.com/tinacms/tinacms/commit/96bdcb79b30e96056c7b19614be260a6c3ef00da), [`a6a7735`](https://github.com/tinacms/tinacms/commit/a6a77351b97589c60de69445a9eb2ea57beb4343), [`d08053e`](https://github.com/tinacms/tinacms/commit/d08053e758b6910afa8ab8952a40984921cccbc4)]:
619
- - tinacms@2.2.6
620
- - @tinacms/mdx@1.4.3
621
-
622
- ## 2.1.5
623
-
624
- ### Patch Changes
625
-
626
- - ba5f7a3: ⬆️ Update @headlessui/react from v1 to v2
627
- - Updated dependencies [cf1530d]
628
- - Updated dependencies [2762994]
629
- - Updated dependencies [ba5f7a3]
630
- - tinacms@2.2.5
631
-
632
- ## 2.1.4
633
-
634
- ### Patch Changes
635
-
636
- - Updated dependencies [75cf194]
637
- - Updated dependencies [198c280]
638
- - tinacms@2.2.4
639
-
640
- ## 2.1.3
641
-
642
- ### Patch Changes
643
-
644
- - Updated dependencies [367faed]
645
- - tinacms@2.2.3
646
-
647
- ## 2.1.2
648
-
649
- ### Patch Changes
650
-
651
- - Updated dependencies [6ccda6c]
652
- - Updated dependencies [33eaa81]
653
- - Updated dependencies [f59d67b]
654
- - Updated dependencies [daeeebf]
655
- - Updated dependencies [27bfe84]
656
- - tinacms@2.2.2
657
- - @tinacms/mdx@1.4.2
658
-
659
- ## 2.1.1
660
-
661
- ### Patch Changes
662
-
663
- - Updated dependencies [ae03e8e]
664
- - Updated dependencies [4c9f221]
665
- - tinacms@2.2.1
666
- - @tinacms/mdx@1.4.1
667
-
668
- ## 2.1.0
669
-
670
- ### Minor Changes
671
-
672
- - 324950a: Updates Plate Editor to latest version 36.
673
-
674
- - Upgrades all remaining packages `Typescript` to version `^5`
675
- - Adds Shadcn/ui styles/colours to our `tinatailwind` config (`packages/@tinacms/cli/src/next/vite/tailwind.ts`)
676
- - Replaces some `lodash` deps with either the specific function i.e. `lodash.set` or implements them in a utility file
677
- - Updates and removes old version of plate (`plate-headless`) for latest version `^36`
678
- - Starts removing and cleaning up some of the old Plate code.
679
-
680
- ### Patch Changes
681
-
682
- - Updated dependencies [324950a]
683
- - Updated dependencies [f378f11]
684
- - Updated dependencies [ceb0c07]
685
- - @tinacms/mdx@1.4.0
686
- - tinacms@2.2.0
687
-
688
- ## 2.0.3
689
-
690
- ### Patch Changes
691
-
692
- - d9b23fc: Improve reference field selector
693
- - Updated dependencies [c6e9afb]
694
- - Updated dependencies [d9b23fc]
695
- - Updated dependencies [1c69338]
696
- - Updated dependencies [a1a767d]
697
- - tinacms@2.1.1
698
-
699
- ## 2.0.2
700
-
701
- ### Patch Changes
702
-
703
- - 4128128: Fix markdown editor button styling
704
-
705
- ## 2.0.1
706
-
707
- ### Patch Changes
708
-
709
- - Updated dependencies [cb83dc2]
710
- - Updated dependencies [1b3584c]
711
- - tinacms@2.1.0
712
- - @tinacms/mdx@1.3.29
713
-
714
- ## 2.0.0
715
-
716
- ### Major Changes
717
-
718
- - 957fa26: Removed deprecated useTina hook
719
- This was deprecated as part of the v1 release and shouldn't have been in use by anyone
720
-
721
- ### Patch Changes
722
-
723
- - f567fc8: More React 18 upgrades and fixes
724
- - e58b951: update vulnerable packages so npm audit does not complain
725
- - 957fa26: update to React 18
726
- - 9076d09: update next js version from 12 to 14 in tinacms packages
727
- - Updated dependencies [f567fc8]
728
- - Updated dependencies [957fa26]
729
- - Updated dependencies [e58b951]
730
- - Updated dependencies [957fa26]
731
- - Updated dependencies [9076d09]
732
- - @tinacms/mdx@1.3.28
733
- - tinacms@2.0.0
734
-
735
- ## 1.2.45
736
-
737
- ### Patch Changes
738
-
739
- - 2940594: Add pnpm option to create-tina-app
740
- - Updated dependencies [82ab066]
741
- - tinacms@1.6.7
742
-
743
- ## 1.2.44
744
-
745
- ### Patch Changes
746
-
747
- - a9b461c: updated 'file has changes' indicator ui
748
- - Updated dependencies [a9b461c]
749
- - Updated dependencies [3034430]
750
- - Updated dependencies [171f5a5]
751
- - Updated dependencies [fd216f3]
752
- - Updated dependencies [d004af2]
753
- - Updated dependencies [20f972a]
754
- - Updated dependencies [2a36b65]
755
- - Updated dependencies [f26b40d]
756
- - tinacms@1.6.6
757
- - @tinacms/mdx@1.3.27
758
-
759
- ## 1.2.43
760
-
761
- ### Patch Changes
762
-
763
- - Updated dependencies [04f0bf3]
764
- - Updated dependencies [0503072]
765
- - Updated dependencies [1104006]
766
- - tinacms@1.6.5
767
- - @tinacms/mdx@1.3.26
768
-
769
- ## 1.2.42
770
-
771
- ### Patch Changes
772
-
773
- - Updated dependencies [2e3393ef5]
774
- - tinacms@1.6.4
775
- - @tinacms/mdx@1.3.25
776
-
777
- ## 1.2.41
778
-
779
- ### Patch Changes
780
-
781
- - Updated dependencies [66f7e2074]
782
- - Updated dependencies [b3ad50a62]
783
- - tinacms@1.6.3
784
- - @tinacms/mdx@1.3.24
785
-
786
- ## 1.2.40
787
-
788
- ### Patch Changes
789
-
790
- - Updated dependencies [141e78c04]
791
- - tinacms@1.6.2
792
-
793
- ## 1.2.39
794
-
795
- ### Patch Changes
796
-
797
- - Updated dependencies [216cfff0c]
798
- - tinacms@1.6.1
799
-
800
- ## 1.2.38
801
-
802
- ### Patch Changes
803
-
804
- - Updated dependencies [c8ceba4d8]
805
- - tinacms@1.6.0
806
-
807
- ## 1.2.37
808
-
809
- ### Patch Changes
810
-
811
- - Updated dependencies [04704e3dc]
812
- - tinacms@1.5.30
813
-
814
- ## 1.2.36
815
-
816
- ### Patch Changes
817
-
818
- - tinacms@1.5.29
819
-
820
- ## 1.2.35
821
-
822
- ### Patch Changes
823
-
824
- - tinacms@1.5.28
825
-
826
- ## 1.2.34
827
-
828
- ### Patch Changes
829
-
830
- - Updated dependencies [4202c1028]
831
- - Updated dependencies [64f8fa038]
832
- - Updated dependencies [548fe6d96]
833
- - Updated dependencies [50b20f809]
834
- - tinacms@1.5.27
835
- - @tinacms/mdx@1.3.23
836
-
837
- ## 1.2.33
838
-
839
- ### Patch Changes
840
-
841
- - Updated dependencies [9e1a22a53]
842
- - tinacms@1.5.26
843
-
844
- ## 1.2.32
845
-
846
- ### Patch Changes
847
-
848
- - tinacms@1.5.25
849
-
850
- ## 1.2.31
851
-
852
- ### Patch Changes
853
-
854
- - Updated dependencies [a65ca13f2]
855
- - @tinacms/mdx@1.3.22
856
- - tinacms@1.5.24
857
-
858
- ## 1.2.30
859
-
860
- ### Patch Changes
861
-
862
- - a937aabf0: Add support for build.basePath to be an environment variable
863
- - 661239b2a: update final form to fix peer deps issues
864
- - Updated dependencies [131b4dc55]
865
- - Updated dependencies [93bfc804a]
866
- - Updated dependencies [1fc2c4a99]
867
- - Updated dependencies [693cf5bd6]
868
- - Updated dependencies [afd1c7c97]
869
- - Updated dependencies [a937aabf0]
870
- - Updated dependencies [661239b2a]
871
- - Updated dependencies [630ab9436]
872
- - tinacms@1.5.23
873
- - @tinacms/mdx@1.3.21
874
-
875
- ## 1.2.29
876
-
877
- ### Patch Changes
878
-
879
- - Updated dependencies [b6fbab887]
880
- - Updated dependencies [4ae43fdde]
881
- - Updated dependencies [aec44a7dc]
882
- - @tinacms/mdx@1.3.20
883
- - tinacms@1.5.22
884
-
885
- ## 1.2.28
886
-
887
- ### Patch Changes
888
-
889
- - 841456237: Fix issue where an error would occur if the folder button was clicked in the playground
890
- - Updated dependencies [5040fc7cb]
891
- - Updated dependencies [177002715]
892
- - Updated dependencies [e69a3ef81]
893
- - Updated dependencies [c925786ef]
894
- - Updated dependencies [9f01550dd]
895
- - @tinacms/mdx@1.3.19
896
- - tinacms@1.5.21
897
-
898
- ## 1.2.27
899
-
900
- ### Patch Changes
901
-
902
- - 7e4de0b2a: Improvements to error handling with auth
903
- - 1144af060: Improve error messaging when onPut / onDelete hooks throw errors
904
- - Updated dependencies [7e4de0b2a]
905
- - Updated dependencies [1144af060]
906
- - tinacms@1.5.20
907
- - @tinacms/mdx@1.3.18
908
-
909
- ## 1.2.26
910
-
911
- ### Patch Changes
912
-
913
- - Updated dependencies [1563ce5b2]
914
- - Updated dependencies [0e94b2725]
915
- - Updated dependencies [e83ba8855]
916
- - tinacms@1.5.19
917
- - @tinacms/mdx@1.3.17
918
-
919
- ## 1.2.25
920
-
921
- ### Patch Changes
922
-
923
- - 121bd9fc4: Absorb @tinacms/toolkit into tinacms
924
-
925
- fix: Use clean page-sizes on media manager (to make pagination more obvious)
926
-
927
- Fix issue with uploading media in a folder with TinaCloud
928
-
929
- - Updated dependencies [9c27087fb]
930
- - Updated dependencies [65d0a701f]
931
- - Updated dependencies [133e97d5b]
932
- - Updated dependencies [f02b4368b]
933
- - Updated dependencies [37cf8bd40]
934
- - Updated dependencies [8aae69436]
935
- - Updated dependencies [a78c81f14]
936
- - Updated dependencies [ad22e0950]
937
- - Updated dependencies [8db979b9f]
938
- - Updated dependencies [7991e097e]
939
- - Updated dependencies [30c7eac58]
940
- - Updated dependencies [121bd9fc4]
941
- - tinacms@1.5.18
942
- - @tinacms/mdx@1.3.16
943
-
944
- ## 1.2.24
945
-
946
- ### Patch Changes
947
-
948
- - bc812441b: Use .mjs extension for ES modules
949
- - Updated dependencies [bc812441b]
950
- - @tinacms/toolkit@1.7.13
951
- - @tinacms/mdx@1.3.15
952
- - tinacms@1.5.17
953
-
954
- ## 1.2.23
955
-
956
- ### Patch Changes
957
-
958
- - Updated dependencies [1889422b0]
959
- - @tinacms/toolkit@1.7.12
960
- - tinacms@1.5.16
961
-
962
- ## 1.2.22
963
-
964
- ### Patch Changes
965
-
966
- - @tinacms/mdx@1.3.14
967
- - tinacms@1.5.15
968
- - @tinacms/toolkit@1.7.11
969
-
970
- ## 1.2.21
971
-
972
- ### Patch Changes
973
-
974
- - Updated dependencies [f1e8828c8]
975
- - Updated dependencies [304e23318]
976
- - Updated dependencies [a5d986477]
977
- - @tinacms/toolkit@1.7.10
978
- - tinacms@1.5.14
979
-
980
- ## 1.2.20
981
-
982
- ### Patch Changes
983
-
984
- - Updated dependencies [d73d03f8f]
985
- - Updated dependencies [745e30708]
986
- - Updated dependencies [495108725]
987
- - Updated dependencies [b0eba5d49]
988
- - Updated dependencies [7d6e6ff3d]
989
- - Updated dependencies [808d5cc6c]
990
- - @tinacms/toolkit@1.7.9
991
- - tinacms@1.5.13
992
-
993
- ## 1.2.19
994
-
995
- ### Patch Changes
996
-
997
- - Updated dependencies [f6efd498e]
998
- - @tinacms/toolkit@1.7.8
999
- - tinacms@1.5.12
1000
-
1001
- ## 1.2.18
1002
-
1003
- ### Patch Changes
1004
-
1005
- - 1176d569a: Ensure tinaField links to references land on the select field instead of the referenced form
1006
- - Updated dependencies [c7fa6ddc0]
1007
- - Updated dependencies [8710dec4b]
1008
- - Updated dependencies [6e192cc38]
1009
- - Updated dependencies [5aaae9902]
1010
- - tinacms@1.5.11
1011
- - @tinacms/toolkit@1.7.7
1012
- - @tinacms/mdx@1.3.13
1013
-
1014
- ## 1.2.17
1015
-
1016
- ### Patch Changes
1017
-
1018
- - @tinacms/toolkit@1.7.6
1019
- - tinacms@1.5.10
1020
- - @tinacms/mdx@1.3.12
1021
-
1022
- ## 1.2.16
1023
-
1024
- ### Patch Changes
1025
-
1026
- - Updated dependencies [c385b5615]
1027
- - Updated dependencies [d2ddfa5a6]
1028
- - Updated dependencies [9489d5d47]
1029
- - @tinacms/toolkit@1.7.5
1030
- - tinacms@1.5.9
1031
- - @tinacms/mdx@1.3.11
1032
-
1033
- ## 1.2.15
1034
-
1035
- ### Patch Changes
1036
-
1037
- - Updated dependencies [cc621f665]
1038
- - @tinacms/toolkit@1.7.4
1039
- - tinacms@1.5.8
1040
-
1041
- ## 1.2.14
1042
-
1043
- ### Patch Changes
1044
-
1045
- - 52b1762e2: Prevent unhandled promise rejection when not able to determine collection for file
1046
- - 16b0c8073: Fix issue where activeField search param would be called twice, resulting in the incorrect form being focused.
1047
- - Updated dependencies [70c74bb55]
1048
- - Updated dependencies [385c8a865]
1049
- - Updated dependencies [ccd928bc3]
1050
- - Updated dependencies [1aea2c6a4]
1051
- - @tinacms/toolkit@1.7.3
1052
- - tinacms@1.5.7
1053
-
1054
- ## 1.2.13
1055
-
1056
- ### Patch Changes
1057
-
1058
- - 7f95c1ce5: Reorganize the way fields are presented on the form to allow for deep-linking
1059
- - Updated dependencies [5a6018916]
1060
- - Updated dependencies [63dd98904]
1061
- - Updated dependencies [b3d98d159]
1062
- - Updated dependencies [7f95c1ce5]
1063
- - tinacms@1.5.6
1064
- - @tinacms/toolkit@1.7.2
1065
-
1066
- ## 1.2.12
1067
-
1068
- ### Patch Changes
1069
-
1070
- - 31c160cdf: Placeholder view for when assets fail to load
1071
- - @tinacms/mdx@1.3.10
1072
- - tinacms@1.5.5
1073
-
1074
- ## 1.2.11
1075
-
1076
- ### Patch Changes
1077
-
1078
- - Updated dependencies [f6e2ec5e9]
1079
- - tinacms@1.5.4
1080
-
1081
- ## 1.2.10
1082
-
1083
- ### Patch Changes
1084
-
1085
- - Updated dependencies [3532d07f3]
1086
- - Updated dependencies [6d1465fd8]
1087
- - tinacms@1.5.3
1088
-
1089
- ## 1.2.9
1090
-
1091
- ### Patch Changes
1092
-
1093
- - Updated dependencies [e7f4c0a96]
1094
- - Updated dependencies [ff8673515]
1095
- - tinacms@1.5.2
1096
-
1097
- ## 1.2.8
1098
-
1099
- ### Patch Changes
1100
-
1101
- - eba7e5e5e: Simplify formify logic
1102
- - Updated dependencies [790b1e1ae]
1103
- - Updated dependencies [eba7e5e5e]
1104
- - tinacms@1.5.1
1105
- - @tinacms/toolkit@1.7.1
1106
-
1107
- ## 1.2.7
1108
-
1109
- ### Patch Changes
1110
-
1111
- - Updated dependencies [675c4cfde]
1112
- - Updated dependencies [eeedcfd30]
1113
- - Updated dependencies [40dd5b7ef]
1114
- - Updated dependencies [0f90e9520]
1115
- - Updated dependencies [d9d773a24]
1116
- - Updated dependencies [63454fa1e]
1117
- - Updated dependencies [804639965]
1118
- - tinacms@1.5.0
1119
- - @tinacms/toolkit@1.7.0
1120
- - @tinacms/mdx@1.3.9
1121
-
1122
- ## 1.2.6
1123
-
1124
- ### Patch Changes
1125
-
1126
- - Updated dependencies [709b6f2ec]
1127
- - @tinacms/toolkit@1.6.4
1128
- - tinacms@1.4.6
1129
-
1130
- ## 1.2.5
1131
-
1132
- ### Patch Changes
1133
-
1134
- - Updated dependencies [75d5ed359]
1135
- - @tinacms/mdx@1.3.8
1136
- - tinacms@1.4.5
1137
-
1138
- ## 1.2.4
1139
-
1140
- ### Patch Changes
1141
-
1142
- - Updated dependencies [7c750e370]
1143
- - Updated dependencies [2a32a0b99]
1144
- - Updated dependencies [6f491f38c]
1145
- - tinacms@1.4.4
1146
- - @tinacms/toolkit@1.6.3
1147
-
1148
- ## 1.2.3
1149
-
1150
- ### Patch Changes
1151
-
1152
- - Updated dependencies [1370ebae6]
1153
- - @tinacms/toolkit@1.6.2
1154
- - tinacms@1.4.3
1155
-
1156
- ## 1.2.2
1157
-
1158
- ### Patch Changes
1159
-
1160
- - Updated dependencies [0626ba381]
1161
- - tinacms@1.4.2
1162
- - @tinacms/mdx@1.3.7
1163
-
1164
- ## 1.2.1
1165
-
1166
- ### Patch Changes
1167
-
1168
- - 5fcef561d: - Pin vite version
1169
- - Adds react plugin so that we no longer get a 404 on react /@react-refresh
1170
- - Adds transform ts and tsx files in build as well as dev
1171
- - 8fc99059f: Fix main export field for @tinacms/app
1172
- - c48326846: Move --skipSDK into config property: `client.skip = true`
1173
- - Updated dependencies [5fcef561d]
1174
- - Updated dependencies [9a8074889]
1175
- - Updated dependencies [d0c4801b7]
1176
- - @tinacms/mdx@1.3.6
1177
- - tinacms@1.4.1
1178
- - @tinacms/toolkit@1.6.1
1179
-
1180
- ## 1.2.0
1181
-
1182
- ### Minor Changes
1183
-
1184
- - 76c984bcc: Use new API endpoint in content api reqests
1185
- - 202cd714d: Internal updates to the CLI
1186
-
1187
- ### Patch Changes
1188
-
1189
- - 3a1edd50d: Bundle the MDX package with its dependencies so we can avoid awkward import issues related to the remark ecosystem modules
1190
- - Updated dependencies [9e86312d6]
1191
- - Updated dependencies [084a39d2c]
1192
- - Updated dependencies [76c984bcc]
1193
- - Updated dependencies [785748400]
1194
- - Updated dependencies [5d1e0e406]
1195
- - Updated dependencies [202cd714d]
1196
- - Updated dependencies [cbc1fb919]
1197
- - @tinacms/mdx@1.3.5
1198
- - @tinacms/toolkit@1.6.0
1199
- - tinacms@1.4.0
1200
-
1201
- ## 1.1.2
1202
-
1203
- ### Patch Changes
1204
-
1205
- - 9c277e179: fix: make rich text errors scrollable
1206
-
1207
- ## 1.1.1
1208
-
1209
- ### Patch Changes
1210
-
1211
- - 3b1fe23ef: Remove rich-text sandbox app, fix issue with registering forms
1212
- - c97ffc20d: Add schema checks to ensure the local and server schema are the same.
1213
-
1214
- ## 1.1.0
1215
-
1216
- ### Minor Changes
1217
-
1218
- - 169147490: When markdown files fail to parse, fallback to the non-MDX parser
1219
-
1220
- ## 1.0.7
1221
-
1222
- ### Patch Changes
1223
-
1224
- - efd56e769: Remove license headers
1225
-
1226
- ## 1.0.6
1227
-
1228
- ### Patch Changes
1229
-
1230
- - 61f8c0e50: Fix issue where all env vars where send to the admin
1231
-
1232
- ## 1.0.5
1233
-
1234
- ### Patch Changes
1235
-
1236
- - c5a603c75: Fix bug where 2 versions of Graphql could be installed
1237
- - 23942cfcb: Add support for --rootPath argument in CLI commands
1238
- - e7c404bcf: Support remote path configuration for separate content repos
1239
-
1240
- Tina now supports serving content from a separate Git repo.
1241
-
1242
- ### Local development workflow
1243
-
1244
- To enable this during local development, point
1245
- this config at the root of the content repo.
1246
-
1247
- > NOTE: Relative paths are fine to use here, but make sure it's relative to the `.tina/config` file
1248
-
1249
- ```ts
1250
- localContentPath: process.env.REMOTE_ROOT_PATH; // eg. '../../my-content-repo'
1251
- ```
1252
-
1253
- ### Production workflow
1254
-
1255
- For production, your config should use the `clientId`, `branch`, and `token` values that are associated with your _content repo_.
1256
-
1257
- - e938b9d91: feat: Add line numbers to raw editor
1258
- feat: More visible error-display in raw editor
1259
- - 31dacc176: Only dedupe when using monorepo dev
1260
-
1261
- ## 1.0.4
1262
-
1263
- ### Patch Changes
1264
-
1265
- - 1a75e8c13: Update host: true in vite config
1266
-
1267
- ## 1.0.3
1268
-
1269
- ### Patch Changes
1270
-
1271
- - 66ed1452b: Updated so that `useEditState` does not require `useTina` to be called first.
1272
-
1273
- ## 1.0.2
1274
-
1275
- ### Patch Changes
1276
-
1277
- - f13878798: Fix a bug where meta data was added to the form values payload
1278
- - c62d2bad4: Fix issue where tailwind styles from within the user config weren't being picked up
1279
-
1280
- ## 1.0.1
1281
-
1282
- ### Patch Changes
1283
-
1284
- - 38438bad6: use env vars when building
1285
- - 78b9668b1: Fix issue with formify logic that returned undefined for falsy values like "" or 0
1286
- - 0b2164645: Simplifies preview markup
1287
- - 7c1425a82: - Add active field for iframe
1288
- - Introduce `tinaField` utility helper
1289
- - c1ac4bf10: Added a `onLogin` Callback function that is called when the user logs in.
1290
-
1291
- EX:
1292
-
1293
- ```ts
1294
- import { defineConfig } from "tinacms";
1295
-
1296
- export default defineConfig({
1297
- admin: {
1298
- auth: {
1299
- onLogin: () => {
1300
- console.log("On Log in!");
1301
- },
1302
- },
1303
- },
1304
- /// ...
1305
- });
1306
- ```
1307
-
1308
- - 9d4943a82: Fix issue resolving alias fields when passing through the `useTina` hook
1309
-
1310
- ## 1.0.0
1311
-
1312
- ### Major Changes
1313
-
1314
- - 958d10c82: Tina 1.0 Release
1315
-
1316
- Make sure you have updated to th "iframe" path: https://tina.io/blog/upgrading-to-iframe/
1317
-
1318
- ## 0.0.28
1319
-
1320
- ### Patch Changes
1321
-
1322
- - f4dcf3e27: Include dependencies as part of the build artifacts for @tinacms/app
1323
- - 231dcab2e: Remove favicon
1324
-
1325
- ## 0.0.27
1326
-
1327
- ### Patch Changes
1328
-
1329
- - d58401231: Simplify the way form values are resolved into the data payload on iframe
1330
- - 3370cefd8: Fix preview images in cloudinary
1331
- - e720590e1: Ensure complex queries with multiple fragments for the same node don't throw a console error
1332
-
1333
- ## 0.0.26
1334
-
1335
- ### Patch Changes
1336
-
1337
- - fd7e4f636: Don't restart vite server on every schema change when working locally.
1338
- - f7d3cf532: Add useEditState hook
1339
-
1340
- ## 0.0.25
1341
-
1342
- ### Patch Changes
1343
-
1344
- - 6d06e18a3: Pin vite to 3.1.8 as 3.2.0 introduces a bug
1345
-
1346
- ## 0.0.24
1347
-
1348
- ### Patch Changes
1349
-
1350
- - 15f7c18ef: Fixed issue where forms would sometimes not unmount when navigating away from a page.
1351
-
1352
- ## 0.0.23
1353
-
1354
- ### Patch Changes
1355
-
1356
- - 009fe3180: Reorganize @tinacms/app so that it runs a local install in the working directory to ensure consistent dependencies
1357
- - 2f6a3596d: Upgrade to Vite 3
1358
-
1359
- ## 0.0.22
1360
-
1361
- ### Patch Changes
1362
-
1363
- - 2422e505d: Removed styled-components as a dependency in tinacms.
1364
- Removed deprecated react-toolbar in @tinacms/toolkit.
1365
- - Updated dependencies [2422e505d]
1366
- - @tinacms/scripts@0.51.2
1367
- - tinacms@0.69.17
1368
- - @tinacms/schema-tools@0.1.8
1369
-
1370
- ## 0.0.21
1371
-
1372
- ### Patch Changes
1373
-
1374
- - Updated dependencies [005e1d699]
1375
- - @tinacms/schema-tools@0.1.8
1376
- - tinacms@0.69.16
1377
-
1378
- ## 0.0.20
1379
-
1380
- ### Patch Changes
1381
-
1382
- - Updated dependencies [b1a357f60]
1383
- - Updated dependencies [0c8c571d5]
1384
- - @tinacms/schema-tools@0.1.7
1385
- - tinacms@0.69.15
1386
-
1387
- ## 0.0.19
1388
-
1389
- ### Patch Changes
1390
-
1391
- - Updated dependencies [c6e3bd321]
1392
- - @tinacms/schema-tools@0.1.6
1393
- - tinacms@0.69.14
1394
-
1395
- ## 0.0.18
1396
-
1397
- ### Patch Changes
1398
-
1399
- - Updated dependencies [ea4a8e1b0]
1400
- - tinacms@0.69.13
1401
-
1402
- ## 0.0.17
1403
-
1404
- ### Patch Changes
1405
-
1406
- - Updated dependencies [183249b11]
1407
- - Updated dependencies [8060d0949]
1408
- - @tinacms/schema-tools@0.1.5
1409
- - tinacms@0.69.12
1410
-
1411
- ## 0.0.16
1412
-
1413
- ### Patch Changes
1414
-
1415
- - tinacms@0.69.11
1416
-
1417
- ## 0.0.15
1418
-
1419
- ### Patch Changes
1420
-
1421
- - tinacms@0.69.10
1422
-
1423
- ## 0.0.14
1424
-
1425
- ### Patch Changes
1426
-
1427
- - tinacms@0.69.9
1428
-
1429
- ## 0.0.13
1430
-
1431
- ### Patch Changes
1432
-
1433
- - e5da05a8c: Enable the dev server when using Tina standalone for faster builds
1434
- - Updated dependencies [f581f263d]
1435
- - Updated dependencies [0513ae416]
1436
- - Updated dependencies [64c40e6fc]
1437
- - Updated dependencies [7ae1b0697]
1438
- - Updated dependencies [f3439ea35]
1439
- - Updated dependencies [48032e2ba]
1440
- - Updated dependencies [112b7271d]
1441
- - Updated dependencies [8688dbff9]
1442
- - @tinacms/schema-tools@0.1.4
1443
- - tinacms@0.69.8
1444
-
1445
- ## 0.0.12
1446
-
1447
- ### Patch Changes
1448
-
1449
- - 9183157c4: This allows us to use a leaner `define` function for the standalone config. Right now we're balancing a lot on the `defineSchema/defineConfig` types and have a few overlapping things like `client`, which accepts both an optional object with `referenceDepth` config as well as the autogenerated http client.
1450
-
1451
- One thing it does that's a bit different is it uses the `apiUrl` from the client generation function and sends it through as a global constant to the Vite app, this avoids the need for the generated `client`.
1452
-
1453
- - 4adf12619: Add support for experimental iframe mode
1454
- - Updated dependencies [9183157c4]
1455
- - Updated dependencies [4adf12619]
1456
- - Updated dependencies [f8b89379c]
1457
- - @tinacms/schema-tools@0.1.3
1458
- - tinacms@0.69.7
1459
-
1460
- ## 0.0.11
1461
-
1462
- ### Patch Changes
1463
-
1464
- - tinacms@0.69.6
1465
-
1466
- ## 0.0.10
1467
-
1468
- ### Patch Changes
1469
-
1470
- - Updated dependencies [bf89a3720]
1471
- - Updated dependencies [fd4d8c8ff]
1472
- - Updated dependencies [e650bc571]
1473
- - tinacms@0.69.5
1474
-
1475
- ## 0.0.9
1476
-
1477
- ### Patch Changes
1478
-
1479
- - Updated dependencies [5029265ed]
1480
- - Updated dependencies [2b60a7bd8]
1481
- - tinacms@0.69.4
1482
-
1483
- ## 0.0.8
1484
-
1485
- ### Patch Changes
1486
-
1487
- - Updated dependencies [0ad8075aa]
1488
- - tinacms@0.69.3
1489
-
1490
- ## 0.0.7
1491
-
1492
- ### Patch Changes
1493
-
1494
- - Updated dependencies [b369d7238]
1495
- - Updated dependencies [541605aa8]
1496
- - Updated dependencies [2182dc2a6]
1497
- - tinacms@0.69.2
1498
-
1499
- ## 0.0.6
1500
-
1501
- ### Patch Changes
1502
-
1503
- - Updated dependencies [9fbb4e557]
1504
- - @tinacms/scripts@0.51.1
1505
- - tinacms@0.69.1
1506
-
1507
- ## 0.0.5
1508
-
1509
- ### Patch Changes
1510
-
1511
- - Updated dependencies [9ea28113e]
1512
- - tinacms@0.69.1
1513
-
1514
- ## 0.0.4
1515
-
1516
- ### Patch Changes
1517
-
1518
- - 8183b638c: ## Adds a new "Static" build option.
1519
-
1520
- This new option will build tina into a static `index.html` file. This will allow someone to use tina without having react as a dependency.
1521
-
1522
- ### How to update
1523
-
1524
- 1. Add a `.tina/config.{js,ts,tsx,jsx}` with the default export of define config.
1525
-
1526
- ```ts
1527
- // .tina/config.ts
1528
- import schema from "./schema";
1529
-
1530
- export default defineConfig({
1531
- schema: schema,
1532
- //.. Everything from define config in `schema.ts`
1533
- //.. Everything from `schema.config`
1534
- });
1535
- ```
1536
-
1537
- 2. Add Build config
1538
-
1539
- ```
1540
- .tina/config.ts
1541
-
1542
- export default defineConfig({
1543
- build: {
1544
- outputFolder: "admin",
1545
- publicFolder: "public",
1546
- },
1547
- //... other config
1548
- })
1549
- ```
1550
-
1551
- 3. Go to `http://localhost:3000/admin/index.html` and view the admin
1552
-
1553
- - Updated dependencies [7b0dda55e]
1554
- - Updated dependencies [8183b638c]
1555
- - @tinacms/scripts@0.51.0
1556
- - tinacms@0.69.0