@tinacms/app 2.5.5 → 2.5.7
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/package.json +18 -4
- package/src/lib/graphql-reducer.ts +58 -22
- package/src/lib/preview-origin.test.ts +147 -0
- package/src/lib/preview-origin.ts +61 -0
- package/CHANGELOG.md +0 -1544
package/CHANGELOG.md
DELETED
|
@@ -1,1544 +0,0 @@
|
|
|
1
|
-
# @tinacms/app
|
|
2
|
-
|
|
3
|
-
## 2.5.5
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [#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)
|
|
8
|
-
|
|
9
|
-
- Updated dependencies []:
|
|
10
|
-
- tinacms@3.9.2
|
|
11
|
-
|
|
12
|
-
## 2.5.4
|
|
13
|
-
|
|
14
|
-
### Patch Changes
|
|
15
|
-
|
|
16
|
-
- Updated dependencies [[`7b539b8`](https://github.com/tinacms/tinacms/commit/7b539b8e7d7d9f4451b5fd36a04d26b734f7d78e)]:
|
|
17
|
-
- tinacms@3.9.1
|
|
18
|
-
|
|
19
|
-
## 2.5.3
|
|
20
|
-
|
|
21
|
-
### Patch Changes
|
|
22
|
-
|
|
23
|
-
- 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)]:
|
|
24
|
-
- tinacms@3.9.0
|
|
25
|
-
|
|
26
|
-
## 2.5.2
|
|
27
|
-
|
|
28
|
-
### Patch Changes
|
|
29
|
-
|
|
30
|
-
- Updated dependencies [[`c7b366c`](https://github.com/tinacms/tinacms/commit/c7b366c5de66b1a3f086c1f11954225e55430324)]:
|
|
31
|
-
- tinacms@3.8.4
|
|
32
|
-
- @tinacms/mdx@2.1.6
|
|
33
|
-
|
|
34
|
-
## 2.5.1
|
|
35
|
-
|
|
36
|
-
### Patch Changes
|
|
37
|
-
|
|
38
|
-
- [#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.
|
|
39
|
-
|
|
40
|
-
- Updated dependencies [[`7be8175`](https://github.com/tinacms/tinacms/commit/7be81751a6b93f785d347e759e91f024bb12c452)]:
|
|
41
|
-
- tinacms@3.8.3
|
|
42
|
-
|
|
43
|
-
## 2.5.0
|
|
44
|
-
|
|
45
|
-
### Minor Changes
|
|
46
|
-
|
|
47
|
-
- [#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.
|
|
48
|
-
|
|
49
|
-
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:
|
|
50
|
-
|
|
51
|
-
- **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.
|
|
52
|
-
- **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.
|
|
53
|
-
- **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.
|
|
54
|
-
- **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".
|
|
55
|
-
- **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`.
|
|
56
|
-
- **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.
|
|
57
|
-
|
|
58
|
-
### Patch Changes
|
|
59
|
-
|
|
60
|
-
- [#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)
|
|
61
|
-
|
|
62
|
-
- 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)]:
|
|
63
|
-
- tinacms@3.8.2
|
|
64
|
-
- @tinacms/mdx@2.1.5
|
|
65
|
-
|
|
66
|
-
## 2.4.8
|
|
67
|
-
|
|
68
|
-
### Patch Changes
|
|
69
|
-
|
|
70
|
-
- Updated dependencies []:
|
|
71
|
-
- tinacms@3.8.1
|
|
72
|
-
|
|
73
|
-
## 2.4.7
|
|
74
|
-
|
|
75
|
-
### Patch Changes
|
|
76
|
-
|
|
77
|
-
- 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)]:
|
|
78
|
-
- tinacms@3.8.0
|
|
79
|
-
|
|
80
|
-
## 2.4.6
|
|
81
|
-
|
|
82
|
-
### Patch Changes
|
|
83
|
-
|
|
84
|
-
- 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)]:
|
|
85
|
-
- tinacms@3.7.6
|
|
86
|
-
- @tinacms/mdx@2.1.4
|
|
87
|
-
|
|
88
|
-
## 2.4.5
|
|
89
|
-
|
|
90
|
-
### Patch Changes
|
|
91
|
-
|
|
92
|
-
- Updated dependencies []:
|
|
93
|
-
- @tinacms/mdx@2.1.3
|
|
94
|
-
- tinacms@3.7.5
|
|
95
|
-
|
|
96
|
-
## 2.4.4
|
|
97
|
-
|
|
98
|
-
### Patch Changes
|
|
99
|
-
|
|
100
|
-
- [#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
|
|
101
|
-
|
|
102
|
-
- 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)]:
|
|
103
|
-
- tinacms@3.7.4
|
|
104
|
-
|
|
105
|
-
## 2.4.3
|
|
106
|
-
|
|
107
|
-
### Patch Changes
|
|
108
|
-
|
|
109
|
-
- 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)]:
|
|
110
|
-
- tinacms@3.7.3
|
|
111
|
-
- @tinacms/mdx@2.1.2
|
|
112
|
-
|
|
113
|
-
## 2.4.2
|
|
114
|
-
|
|
115
|
-
### Patch Changes
|
|
116
|
-
|
|
117
|
-
- 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)]:
|
|
118
|
-
- tinacms@3.7.2
|
|
119
|
-
- @tinacms/mdx@2.1.1
|
|
120
|
-
|
|
121
|
-
## 2.4.1
|
|
122
|
-
|
|
123
|
-
### Patch Changes
|
|
124
|
-
|
|
125
|
-
- 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)]:
|
|
126
|
-
- tinacms@3.7.1
|
|
127
|
-
|
|
128
|
-
## 2.4.0
|
|
129
|
-
|
|
130
|
-
### Minor Changes
|
|
131
|
-
|
|
132
|
-
- [#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
|
|
133
|
-
|
|
134
|
-
⚠️ `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.
|
|
135
|
-
|
|
136
|
-
### Patch Changes
|
|
137
|
-
|
|
138
|
-
- 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)]:
|
|
139
|
-
- tinacms@3.7.0
|
|
140
|
-
- @tinacms/mdx@2.1.0
|
|
141
|
-
|
|
142
|
-
## 2.3.30
|
|
143
|
-
|
|
144
|
-
### Patch Changes
|
|
145
|
-
|
|
146
|
-
- [#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
|
|
147
|
-
|
|
148
|
-
- Updated dependencies [[`3c45642`](https://github.com/tinacms/tinacms/commit/3c45642650e1a9e9fd340c62c9a5372d10f0bee7)]:
|
|
149
|
-
- tinacms@3.6.3
|
|
150
|
-
|
|
151
|
-
## 2.3.29
|
|
152
|
-
|
|
153
|
-
### Patch Changes
|
|
154
|
-
|
|
155
|
-
- [#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
|
|
156
|
-
|
|
157
|
-
- [#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
|
|
158
|
-
|
|
159
|
-
- 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)]:
|
|
160
|
-
- tinacms@3.6.2
|
|
161
|
-
|
|
162
|
-
## 2.3.28
|
|
163
|
-
|
|
164
|
-
### Patch Changes
|
|
165
|
-
|
|
166
|
-
- Updated dependencies []:
|
|
167
|
-
- tinacms@3.6.1
|
|
168
|
-
|
|
169
|
-
## 2.3.27
|
|
170
|
-
|
|
171
|
-
### Patch Changes
|
|
172
|
-
|
|
173
|
-
- 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)]:
|
|
174
|
-
- tinacms@3.6.0
|
|
175
|
-
- @tinacms/mdx@2.0.7
|
|
176
|
-
|
|
177
|
-
## 2.3.26
|
|
178
|
-
|
|
179
|
-
### Patch Changes
|
|
180
|
-
|
|
181
|
-
- Updated dependencies [[`2738749`](https://github.com/tinacms/tinacms/commit/2738749bac08c02214fdf208f96bbcc4906ef442), [`dfb4ce8`](https://github.com/tinacms/tinacms/commit/dfb4ce8da7b82b638337109cc7859125e112a0a9)]:
|
|
182
|
-
- tinacms@3.5.1
|
|
183
|
-
|
|
184
|
-
## 2.3.25
|
|
185
|
-
|
|
186
|
-
### Patch Changes
|
|
187
|
-
|
|
188
|
-
- 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)]:
|
|
189
|
-
- tinacms@3.5.0
|
|
190
|
-
- @tinacms/mdx@2.0.6
|
|
191
|
-
|
|
192
|
-
## 2.3.24
|
|
193
|
-
|
|
194
|
-
### Patch Changes
|
|
195
|
-
|
|
196
|
-
- Updated dependencies []:
|
|
197
|
-
- @tinacms/mdx@2.0.5
|
|
198
|
-
- tinacms@3.4.1
|
|
199
|
-
|
|
200
|
-
## 2.3.23
|
|
201
|
-
|
|
202
|
-
### Patch Changes
|
|
203
|
-
|
|
204
|
-
- Updated dependencies [[`155654c`](https://github.com/tinacms/tinacms/commit/155654ce515ab68a0483cd7e797e9df0a4157431), [`414dc87`](https://github.com/tinacms/tinacms/commit/414dc87ea0e63702d12ec7a3d3e9f4e5527eaa56)]:
|
|
205
|
-
- tinacms@3.4.0
|
|
206
|
-
|
|
207
|
-
## 2.3.22
|
|
208
|
-
|
|
209
|
-
### Patch Changes
|
|
210
|
-
|
|
211
|
-
- Updated dependencies [[`6647240`](https://github.com/tinacms/tinacms/commit/6647240db6cfffcf1efb4fa9799e9c039b929389)]:
|
|
212
|
-
- tinacms@3.3.2
|
|
213
|
-
- @tinacms/mdx@2.0.4
|
|
214
|
-
|
|
215
|
-
## 2.3.21
|
|
216
|
-
|
|
217
|
-
### Patch Changes
|
|
218
|
-
|
|
219
|
-
- [#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)"
|
|
220
|
-
|
|
221
|
-
- Updated dependencies [[`3fa216c`](https://github.com/tinacms/tinacms/commit/3fa216c110af6417e6b835c49a275b08981e028b), [`7352c96`](https://github.com/tinacms/tinacms/commit/7352c9660869d413a0f48d3fbb003d4c4c0e3d85)]:
|
|
222
|
-
- tinacms@3.3.1
|
|
223
|
-
|
|
224
|
-
## 2.3.20
|
|
225
|
-
|
|
226
|
-
### Patch Changes
|
|
227
|
-
|
|
228
|
-
- Updated dependencies [[`6c2c48a`](https://github.com/tinacms/tinacms/commit/6c2c48a9d869cb98e78fc656b986ecc244a5dafd)]:
|
|
229
|
-
- tinacms@3.3.0
|
|
230
|
-
- @tinacms/mdx@2.0.3
|
|
231
|
-
|
|
232
|
-
## 2.3.19
|
|
233
|
-
|
|
234
|
-
### Patch Changes
|
|
235
|
-
|
|
236
|
-
- Updated dependencies [[`a63401a`](https://github.com/tinacms/tinacms/commit/a63401a3dd8271258bc6bfb4cc22593c19e94c7d)]:
|
|
237
|
-
- tinacms@3.2.0
|
|
238
|
-
- @tinacms/mdx@2.0.2
|
|
239
|
-
|
|
240
|
-
## 2.3.18
|
|
241
|
-
|
|
242
|
-
### Patch Changes
|
|
243
|
-
|
|
244
|
-
- [#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
|
|
245
|
-
|
|
246
|
-
- 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)]:
|
|
247
|
-
- tinacms@3.1.3
|
|
248
|
-
|
|
249
|
-
## 2.3.17
|
|
250
|
-
|
|
251
|
-
### Patch Changes
|
|
252
|
-
|
|
253
|
-
- Updated dependencies [[`8335218`](https://github.com/tinacms/tinacms/commit/833521832f91c98ff3cb48535eecb3824cb0f7bd)]:
|
|
254
|
-
- tinacms@3.1.2
|
|
255
|
-
|
|
256
|
-
## 2.3.16
|
|
257
|
-
|
|
258
|
-
### Patch Changes
|
|
259
|
-
|
|
260
|
-
- Updated dependencies [[`3a12a39`](https://github.com/tinacms/tinacms/commit/3a12a392d5a8eb9bba5a5be65d080f24afa08de3)]:
|
|
261
|
-
- tinacms@3.1.1
|
|
262
|
-
|
|
263
|
-
## 2.3.15
|
|
264
|
-
|
|
265
|
-
### Patch Changes
|
|
266
|
-
|
|
267
|
-
- 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)]:
|
|
268
|
-
- tinacms@3.1.0
|
|
269
|
-
- @tinacms/mdx@2.0.1
|
|
270
|
-
|
|
271
|
-
## 2.3.14
|
|
272
|
-
|
|
273
|
-
### Patch Changes
|
|
274
|
-
|
|
275
|
-
- 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)]:
|
|
276
|
-
- tinacms@3.0.2
|
|
277
|
-
- @tinacms/mdx@2.0.0
|
|
278
|
-
|
|
279
|
-
## 2.3.13
|
|
280
|
-
|
|
281
|
-
### Patch Changes
|
|
282
|
-
|
|
283
|
-
- 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)]:
|
|
284
|
-
- tinacms@3.0.1
|
|
285
|
-
|
|
286
|
-
## 2.3.12
|
|
287
|
-
|
|
288
|
-
### Patch Changes
|
|
289
|
-
|
|
290
|
-
- 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)]:
|
|
291
|
-
- @tinacms/mdx@2.0.0
|
|
292
|
-
- tinacms@3.0.0
|
|
293
|
-
|
|
294
|
-
## 2.3.11
|
|
295
|
-
|
|
296
|
-
### Patch Changes
|
|
297
|
-
|
|
298
|
-
- Updated dependencies [[`a76fdb6`](https://github.com/tinacms/tinacms/commit/a76fdb639b94cfefa169ebbd184f55d62e4a8a76), [`dd2089d`](https://github.com/tinacms/tinacms/commit/dd2089dbde4a7b1a0116cce096f50a97fdca9d81)]:
|
|
299
|
-
- tinacms@2.10.1
|
|
300
|
-
- @tinacms/mdx@1.8.3
|
|
301
|
-
|
|
302
|
-
## 2.3.10
|
|
303
|
-
|
|
304
|
-
### Patch Changes
|
|
305
|
-
|
|
306
|
-
- [#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.
|
|
307
|
-
|
|
308
|
-
- 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)]:
|
|
309
|
-
- tinacms@2.10.0
|
|
310
|
-
- @tinacms/mdx@1.8.2
|
|
311
|
-
|
|
312
|
-
## 2.3.9
|
|
313
|
-
|
|
314
|
-
### Patch Changes
|
|
315
|
-
|
|
316
|
-
- Updated dependencies [[`d900f4e`](https://github.com/tinacms/tinacms/commit/d900f4e6c6f0a86c94bba5f0925bbaa54eeb90db)]:
|
|
317
|
-
- tinacms@2.9.5
|
|
318
|
-
|
|
319
|
-
## 2.3.8
|
|
320
|
-
|
|
321
|
-
### Patch Changes
|
|
322
|
-
|
|
323
|
-
- 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)]:
|
|
324
|
-
- tinacms@2.9.4
|
|
325
|
-
|
|
326
|
-
## 2.3.7
|
|
327
|
-
|
|
328
|
-
### Patch Changes
|
|
329
|
-
|
|
330
|
-
- 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)]:
|
|
331
|
-
- tinacms@2.9.3
|
|
332
|
-
|
|
333
|
-
## 2.3.6
|
|
334
|
-
|
|
335
|
-
### Patch Changes
|
|
336
|
-
|
|
337
|
-
- [#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
|
|
338
|
-
|
|
339
|
-
- [#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
|
|
340
|
-
|
|
341
|
-
- 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)]:
|
|
342
|
-
- tinacms@2.9.2
|
|
343
|
-
|
|
344
|
-
## 2.3.5
|
|
345
|
-
|
|
346
|
-
### Patch Changes
|
|
347
|
-
|
|
348
|
-
- 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)]:
|
|
349
|
-
- tinacms@2.9.1
|
|
350
|
-
|
|
351
|
-
## 2.3.4
|
|
352
|
-
|
|
353
|
-
### Patch Changes
|
|
354
|
-
|
|
355
|
-
- 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)]:
|
|
356
|
-
- tinacms@2.9.0
|
|
357
|
-
|
|
358
|
-
## 2.3.3
|
|
359
|
-
|
|
360
|
-
### Patch Changes
|
|
361
|
-
|
|
362
|
-
- 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)]:
|
|
363
|
-
- tinacms@2.8.3
|
|
364
|
-
|
|
365
|
-
## 2.3.2
|
|
366
|
-
|
|
367
|
-
### Patch Changes
|
|
368
|
-
|
|
369
|
-
- 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)]:
|
|
370
|
-
- tinacms@2.8.2
|
|
371
|
-
- @tinacms/mdx@1.8.1
|
|
372
|
-
|
|
373
|
-
## 2.3.1
|
|
374
|
-
|
|
375
|
-
### Patch Changes
|
|
376
|
-
|
|
377
|
-
- 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)]:
|
|
378
|
-
- tinacms@2.8.1
|
|
379
|
-
|
|
380
|
-
## 2.3.0
|
|
381
|
-
|
|
382
|
-
### Minor Changes
|
|
383
|
-
|
|
384
|
-
- [#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.
|
|
385
|
-
|
|
386
|
-
### Patch Changes
|
|
387
|
-
|
|
388
|
-
- Updated dependencies [[`98a61e2`](https://github.com/tinacms/tinacms/commit/98a61e2d263978a7096cc23ac7e94aa0039981be)]:
|
|
389
|
-
- @tinacms/mdx@1.8.0
|
|
390
|
-
- tinacms@2.8.0
|
|
391
|
-
|
|
392
|
-
## 2.2.10
|
|
393
|
-
|
|
394
|
-
### Patch Changes
|
|
395
|
-
|
|
396
|
-
- [#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
|
|
397
|
-
|
|
398
|
-
- 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)]:
|
|
399
|
-
- tinacms@2.7.10
|
|
400
|
-
|
|
401
|
-
## 2.2.9
|
|
402
|
-
|
|
403
|
-
### Patch Changes
|
|
404
|
-
|
|
405
|
-
- [#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
|
|
406
|
-
Forms header - Adds breadcrumb navigation
|
|
407
|
-
|
|
408
|
-
- [#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
|
|
409
|
-
|
|
410
|
-
- Fixed Visual Editing's "Edit" button (Reference Fields)
|
|
411
|
-
|
|
412
|
-
- [#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
|
|
413
|
-
|
|
414
|
-
- 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)]:
|
|
415
|
-
- tinacms@2.7.9
|
|
416
|
-
- @tinacms/mdx@1.7.0
|
|
417
|
-
|
|
418
|
-
## 2.2.8
|
|
419
|
-
|
|
420
|
-
### Patch Changes
|
|
421
|
-
|
|
422
|
-
- 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)]:
|
|
423
|
-
- tinacms@2.7.8
|
|
424
|
-
- @tinacms/mdx@1.6.3
|
|
425
|
-
|
|
426
|
-
## 2.2.7
|
|
427
|
-
|
|
428
|
-
### Patch Changes
|
|
429
|
-
|
|
430
|
-
- [#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
|
|
431
|
-
|
|
432
|
-
- Updated dependencies [[`1965236`](https://github.com/tinacms/tinacms/commit/19652363784e48b065ec1924a9cd9611c8e79cae)]:
|
|
433
|
-
- tinacms@2.7.7
|
|
434
|
-
|
|
435
|
-
## 2.2.6
|
|
436
|
-
|
|
437
|
-
### Patch Changes
|
|
438
|
-
|
|
439
|
-
- Updated dependencies [[`65cee5d`](https://github.com/tinacms/tinacms/commit/65cee5d6ae16c7320a4a14f0d9a82dc5f9103e34)]:
|
|
440
|
-
- tinacms@2.7.6
|
|
441
|
-
|
|
442
|
-
## 2.2.5
|
|
443
|
-
|
|
444
|
-
### Patch Changes
|
|
445
|
-
|
|
446
|
-
- [#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
|
|
447
|
-
|
|
448
|
-
- [#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.
|
|
449
|
-
- Ensure GraphQL playground correctly updates when switching branches.
|
|
450
|
-
- 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)]:
|
|
451
|
-
- tinacms@2.7.5
|
|
452
|
-
- @tinacms/mdx@1.6.2
|
|
453
|
-
|
|
454
|
-
## 2.2.3
|
|
455
|
-
|
|
456
|
-
### Patch Changes
|
|
457
|
-
|
|
458
|
-
- Updated dependencies [[`991db1f`](https://github.com/tinacms/tinacms/commit/991db1f10c1f9cf9211d7e82bd56658cdcce24c7)]:
|
|
459
|
-
- tinacms@2.7.3
|
|
460
|
-
|
|
461
|
-
## 2.2.2
|
|
462
|
-
|
|
463
|
-
### Patch Changes
|
|
464
|
-
|
|
465
|
-
- Updated dependencies [[`619e601`](https://github.com/tinacms/tinacms/commit/619e6010d6f95d893e980952bef64f747808c956), [`602b4d0`](https://github.com/tinacms/tinacms/commit/602b4d07f94de4c10d5bb059a5edc49546a2031c)]:
|
|
466
|
-
- tinacms@2.7.2
|
|
467
|
-
- @tinacms/mdx@1.6.1
|
|
468
|
-
|
|
469
|
-
## 2.2.1
|
|
470
|
-
|
|
471
|
-
### Patch Changes
|
|
472
|
-
|
|
473
|
-
- Updated dependencies [[`74513b3`](https://github.com/tinacms/tinacms/commit/74513b357aa27165aa86f7b3218c697c663539e8), [`06c1716`](https://github.com/tinacms/tinacms/commit/06c17163b558a96275b0ef66c746b005a6f90d13)]:
|
|
474
|
-
- tinacms@2.7.1
|
|
475
|
-
|
|
476
|
-
## 2.2.0
|
|
477
|
-
|
|
478
|
-
### Minor Changes
|
|
479
|
-
|
|
480
|
-
- [#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
|
|
481
|
-
|
|
482
|
-
### Patch Changes
|
|
483
|
-
|
|
484
|
-
- [#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
|
|
485
|
-
|
|
486
|
-
- 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)]:
|
|
487
|
-
- tinacms@2.7.0
|
|
488
|
-
- @tinacms/mdx@1.6.0
|
|
489
|
-
|
|
490
|
-
## 2.1.19
|
|
491
|
-
|
|
492
|
-
### Patch Changes
|
|
493
|
-
|
|
494
|
-
- Updated dependencies []:
|
|
495
|
-
- tinacms@2.6.4
|
|
496
|
-
|
|
497
|
-
## 2.1.18
|
|
498
|
-
|
|
499
|
-
### Patch Changes
|
|
500
|
-
|
|
501
|
-
- 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)]:
|
|
502
|
-
- tinacms@2.6.3
|
|
503
|
-
|
|
504
|
-
## 2.1.17
|
|
505
|
-
|
|
506
|
-
### Patch Changes
|
|
507
|
-
|
|
508
|
-
- Updated dependencies []:
|
|
509
|
-
- tinacms@2.6.2
|
|
510
|
-
|
|
511
|
-
## 2.1.16
|
|
512
|
-
|
|
513
|
-
### Patch Changes
|
|
514
|
-
|
|
515
|
-
- Updated dependencies [[`61c45f4`](https://github.com/tinacms/tinacms/commit/61c45f49a2abe82336b661dedbbe2a15d0f3da05)]:
|
|
516
|
-
- tinacms@2.6.1
|
|
517
|
-
|
|
518
|
-
## 2.1.15
|
|
519
|
-
|
|
520
|
-
### Patch Changes
|
|
521
|
-
|
|
522
|
-
- 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)]:
|
|
523
|
-
- tinacms@2.6.0
|
|
524
|
-
- @tinacms/mdx@1.5.4
|
|
525
|
-
|
|
526
|
-
## 2.1.14
|
|
527
|
-
|
|
528
|
-
### Patch Changes
|
|
529
|
-
|
|
530
|
-
- Updated dependencies [[`b54b303`](https://github.com/tinacms/tinacms/commit/b54b303a8290528230dc83d8fb1b7535df7199f6), [`0345852`](https://github.com/tinacms/tinacms/commit/0345852e3a7568b61a1417cd037715ab0d0dca01)]:
|
|
531
|
-
- tinacms@2.5.2
|
|
532
|
-
- @tinacms/mdx@1.5.3
|
|
533
|
-
|
|
534
|
-
## 2.1.13
|
|
535
|
-
|
|
536
|
-
### Patch Changes
|
|
537
|
-
|
|
538
|
-
- Updated dependencies [[`bbfd415`](https://github.com/tinacms/tinacms/commit/bbfd415762a8b2c62b7653b497b94d67aaa8501a), [`83a25cf`](https://github.com/tinacms/tinacms/commit/83a25cf61b736e1867d37bee37f7514d349e4427)]:
|
|
539
|
-
- tinacms@2.5.1
|
|
540
|
-
|
|
541
|
-
## 2.1.12
|
|
542
|
-
|
|
543
|
-
### Patch Changes
|
|
544
|
-
|
|
545
|
-
- [#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
|
|
546
|
-
|
|
547
|
-
- [#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.
|
|
548
|
-
|
|
549
|
-
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.
|
|
550
|
-
|
|
551
|
-
- 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)]:
|
|
552
|
-
- @tinacms/mdx@1.5.2
|
|
553
|
-
- tinacms@2.5.0
|
|
554
|
-
|
|
555
|
-
## 2.1.11
|
|
556
|
-
|
|
557
|
-
### Patch Changes
|
|
558
|
-
|
|
559
|
-
- 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)]:
|
|
560
|
-
- tinacms@2.4.0
|
|
561
|
-
- @tinacms/mdx@1.5.1
|
|
562
|
-
|
|
563
|
-
## 2.1.10
|
|
564
|
-
|
|
565
|
-
### Patch Changes
|
|
566
|
-
|
|
567
|
-
- [#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
|
|
568
|
-
|
|
569
|
-
- 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)]:
|
|
570
|
-
- @tinacms/mdx@1.5.0
|
|
571
|
-
- tinacms@2.3.0
|
|
572
|
-
|
|
573
|
-
## 2.1.9
|
|
574
|
-
|
|
575
|
-
### Patch Changes
|
|
576
|
-
|
|
577
|
-
- Updated dependencies [[`31513bb`](https://github.com/tinacms/tinacms/commit/31513bb473cd1d349a3711ef7c5075cf9d03f121), [`3b2aba8`](https://github.com/tinacms/tinacms/commit/3b2aba80ac14a512592f67a04f9e1792667db9dd)]:
|
|
578
|
-
- tinacms@2.2.9
|
|
579
|
-
- @tinacms/mdx@1.4.5
|
|
580
|
-
|
|
581
|
-
## 2.1.8
|
|
582
|
-
|
|
583
|
-
### Patch Changes
|
|
584
|
-
|
|
585
|
-
- [#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
|
|
586
|
-
|
|
587
|
-
- Updated dependencies [[`4753c9b`](https://github.com/tinacms/tinacms/commit/4753c9b53854d19212229f985bc445b2794fad9a)]:
|
|
588
|
-
- tinacms@2.2.8
|
|
589
|
-
- @tinacms/mdx@1.4.4
|
|
590
|
-
|
|
591
|
-
## 2.1.7
|
|
592
|
-
|
|
593
|
-
### Patch Changes
|
|
594
|
-
|
|
595
|
-
- Updated dependencies [[`113f4db`](https://github.com/tinacms/tinacms/commit/113f4db4b5d5b7d4b95d612eca56f815f41b4f8c), [`f0994c8`](https://github.com/tinacms/tinacms/commit/f0994c8f49122cd9d784bf47171715c529d2528f)]:
|
|
596
|
-
- tinacms@2.2.7
|
|
597
|
-
|
|
598
|
-
## 2.1.6
|
|
599
|
-
|
|
600
|
-
### Patch Changes
|
|
601
|
-
|
|
602
|
-
- [#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
|
|
603
|
-
|
|
604
|
-
- [#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
|
|
605
|
-
|
|
606
|
-
- 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)]:
|
|
607
|
-
- tinacms@2.2.6
|
|
608
|
-
- @tinacms/mdx@1.4.3
|
|
609
|
-
|
|
610
|
-
## 2.1.5
|
|
611
|
-
|
|
612
|
-
### Patch Changes
|
|
613
|
-
|
|
614
|
-
- ba5f7a3: ⬆️ Update @headlessui/react from v1 to v2
|
|
615
|
-
- Updated dependencies [cf1530d]
|
|
616
|
-
- Updated dependencies [2762994]
|
|
617
|
-
- Updated dependencies [ba5f7a3]
|
|
618
|
-
- tinacms@2.2.5
|
|
619
|
-
|
|
620
|
-
## 2.1.4
|
|
621
|
-
|
|
622
|
-
### Patch Changes
|
|
623
|
-
|
|
624
|
-
- Updated dependencies [75cf194]
|
|
625
|
-
- Updated dependencies [198c280]
|
|
626
|
-
- tinacms@2.2.4
|
|
627
|
-
|
|
628
|
-
## 2.1.3
|
|
629
|
-
|
|
630
|
-
### Patch Changes
|
|
631
|
-
|
|
632
|
-
- Updated dependencies [367faed]
|
|
633
|
-
- tinacms@2.2.3
|
|
634
|
-
|
|
635
|
-
## 2.1.2
|
|
636
|
-
|
|
637
|
-
### Patch Changes
|
|
638
|
-
|
|
639
|
-
- Updated dependencies [6ccda6c]
|
|
640
|
-
- Updated dependencies [33eaa81]
|
|
641
|
-
- Updated dependencies [f59d67b]
|
|
642
|
-
- Updated dependencies [daeeebf]
|
|
643
|
-
- Updated dependencies [27bfe84]
|
|
644
|
-
- tinacms@2.2.2
|
|
645
|
-
- @tinacms/mdx@1.4.2
|
|
646
|
-
|
|
647
|
-
## 2.1.1
|
|
648
|
-
|
|
649
|
-
### Patch Changes
|
|
650
|
-
|
|
651
|
-
- Updated dependencies [ae03e8e]
|
|
652
|
-
- Updated dependencies [4c9f221]
|
|
653
|
-
- tinacms@2.2.1
|
|
654
|
-
- @tinacms/mdx@1.4.1
|
|
655
|
-
|
|
656
|
-
## 2.1.0
|
|
657
|
-
|
|
658
|
-
### Minor Changes
|
|
659
|
-
|
|
660
|
-
- 324950a: Updates Plate Editor to latest version 36.
|
|
661
|
-
|
|
662
|
-
- Upgrades all remaining packages `Typescript` to version `^5`
|
|
663
|
-
- Adds Shadcn/ui styles/colours to our `tinatailwind` config (`packages/@tinacms/cli/src/next/vite/tailwind.ts`)
|
|
664
|
-
- Replaces some `lodash` deps with either the specific function i.e. `lodash.set` or implements them in a utility file
|
|
665
|
-
- Updates and removes old version of plate (`plate-headless`) for latest version `^36`
|
|
666
|
-
- Starts removing and cleaning up some of the old Plate code.
|
|
667
|
-
|
|
668
|
-
### Patch Changes
|
|
669
|
-
|
|
670
|
-
- Updated dependencies [324950a]
|
|
671
|
-
- Updated dependencies [f378f11]
|
|
672
|
-
- Updated dependencies [ceb0c07]
|
|
673
|
-
- @tinacms/mdx@1.4.0
|
|
674
|
-
- tinacms@2.2.0
|
|
675
|
-
|
|
676
|
-
## 2.0.3
|
|
677
|
-
|
|
678
|
-
### Patch Changes
|
|
679
|
-
|
|
680
|
-
- d9b23fc: Improve reference field selector
|
|
681
|
-
- Updated dependencies [c6e9afb]
|
|
682
|
-
- Updated dependencies [d9b23fc]
|
|
683
|
-
- Updated dependencies [1c69338]
|
|
684
|
-
- Updated dependencies [a1a767d]
|
|
685
|
-
- tinacms@2.1.1
|
|
686
|
-
|
|
687
|
-
## 2.0.2
|
|
688
|
-
|
|
689
|
-
### Patch Changes
|
|
690
|
-
|
|
691
|
-
- 4128128: Fix markdown editor button styling
|
|
692
|
-
|
|
693
|
-
## 2.0.1
|
|
694
|
-
|
|
695
|
-
### Patch Changes
|
|
696
|
-
|
|
697
|
-
- Updated dependencies [cb83dc2]
|
|
698
|
-
- Updated dependencies [1b3584c]
|
|
699
|
-
- tinacms@2.1.0
|
|
700
|
-
- @tinacms/mdx@1.3.29
|
|
701
|
-
|
|
702
|
-
## 2.0.0
|
|
703
|
-
|
|
704
|
-
### Major Changes
|
|
705
|
-
|
|
706
|
-
- 957fa26: Removed deprecated useTina hook
|
|
707
|
-
This was deprecated as part of the v1 release and shouldn't have been in use by anyone
|
|
708
|
-
|
|
709
|
-
### Patch Changes
|
|
710
|
-
|
|
711
|
-
- f567fc8: More React 18 upgrades and fixes
|
|
712
|
-
- e58b951: update vulnerable packages so npm audit does not complain
|
|
713
|
-
- 957fa26: update to React 18
|
|
714
|
-
- 9076d09: update next js version from 12 to 14 in tinacms packages
|
|
715
|
-
- Updated dependencies [f567fc8]
|
|
716
|
-
- Updated dependencies [957fa26]
|
|
717
|
-
- Updated dependencies [e58b951]
|
|
718
|
-
- Updated dependencies [957fa26]
|
|
719
|
-
- Updated dependencies [9076d09]
|
|
720
|
-
- @tinacms/mdx@1.3.28
|
|
721
|
-
- tinacms@2.0.0
|
|
722
|
-
|
|
723
|
-
## 1.2.45
|
|
724
|
-
|
|
725
|
-
### Patch Changes
|
|
726
|
-
|
|
727
|
-
- 2940594: Add pnpm option to create-tina-app
|
|
728
|
-
- Updated dependencies [82ab066]
|
|
729
|
-
- tinacms@1.6.7
|
|
730
|
-
|
|
731
|
-
## 1.2.44
|
|
732
|
-
|
|
733
|
-
### Patch Changes
|
|
734
|
-
|
|
735
|
-
- a9b461c: updated 'file has changes' indicator ui
|
|
736
|
-
- Updated dependencies [a9b461c]
|
|
737
|
-
- Updated dependencies [3034430]
|
|
738
|
-
- Updated dependencies [171f5a5]
|
|
739
|
-
- Updated dependencies [fd216f3]
|
|
740
|
-
- Updated dependencies [d004af2]
|
|
741
|
-
- Updated dependencies [20f972a]
|
|
742
|
-
- Updated dependencies [2a36b65]
|
|
743
|
-
- Updated dependencies [f26b40d]
|
|
744
|
-
- tinacms@1.6.6
|
|
745
|
-
- @tinacms/mdx@1.3.27
|
|
746
|
-
|
|
747
|
-
## 1.2.43
|
|
748
|
-
|
|
749
|
-
### Patch Changes
|
|
750
|
-
|
|
751
|
-
- Updated dependencies [04f0bf3]
|
|
752
|
-
- Updated dependencies [0503072]
|
|
753
|
-
- Updated dependencies [1104006]
|
|
754
|
-
- tinacms@1.6.5
|
|
755
|
-
- @tinacms/mdx@1.3.26
|
|
756
|
-
|
|
757
|
-
## 1.2.42
|
|
758
|
-
|
|
759
|
-
### Patch Changes
|
|
760
|
-
|
|
761
|
-
- Updated dependencies [2e3393ef5]
|
|
762
|
-
- tinacms@1.6.4
|
|
763
|
-
- @tinacms/mdx@1.3.25
|
|
764
|
-
|
|
765
|
-
## 1.2.41
|
|
766
|
-
|
|
767
|
-
### Patch Changes
|
|
768
|
-
|
|
769
|
-
- Updated dependencies [66f7e2074]
|
|
770
|
-
- Updated dependencies [b3ad50a62]
|
|
771
|
-
- tinacms@1.6.3
|
|
772
|
-
- @tinacms/mdx@1.3.24
|
|
773
|
-
|
|
774
|
-
## 1.2.40
|
|
775
|
-
|
|
776
|
-
### Patch Changes
|
|
777
|
-
|
|
778
|
-
- Updated dependencies [141e78c04]
|
|
779
|
-
- tinacms@1.6.2
|
|
780
|
-
|
|
781
|
-
## 1.2.39
|
|
782
|
-
|
|
783
|
-
### Patch Changes
|
|
784
|
-
|
|
785
|
-
- Updated dependencies [216cfff0c]
|
|
786
|
-
- tinacms@1.6.1
|
|
787
|
-
|
|
788
|
-
## 1.2.38
|
|
789
|
-
|
|
790
|
-
### Patch Changes
|
|
791
|
-
|
|
792
|
-
- Updated dependencies [c8ceba4d8]
|
|
793
|
-
- tinacms@1.6.0
|
|
794
|
-
|
|
795
|
-
## 1.2.37
|
|
796
|
-
|
|
797
|
-
### Patch Changes
|
|
798
|
-
|
|
799
|
-
- Updated dependencies [04704e3dc]
|
|
800
|
-
- tinacms@1.5.30
|
|
801
|
-
|
|
802
|
-
## 1.2.36
|
|
803
|
-
|
|
804
|
-
### Patch Changes
|
|
805
|
-
|
|
806
|
-
- tinacms@1.5.29
|
|
807
|
-
|
|
808
|
-
## 1.2.35
|
|
809
|
-
|
|
810
|
-
### Patch Changes
|
|
811
|
-
|
|
812
|
-
- tinacms@1.5.28
|
|
813
|
-
|
|
814
|
-
## 1.2.34
|
|
815
|
-
|
|
816
|
-
### Patch Changes
|
|
817
|
-
|
|
818
|
-
- Updated dependencies [4202c1028]
|
|
819
|
-
- Updated dependencies [64f8fa038]
|
|
820
|
-
- Updated dependencies [548fe6d96]
|
|
821
|
-
- Updated dependencies [50b20f809]
|
|
822
|
-
- tinacms@1.5.27
|
|
823
|
-
- @tinacms/mdx@1.3.23
|
|
824
|
-
|
|
825
|
-
## 1.2.33
|
|
826
|
-
|
|
827
|
-
### Patch Changes
|
|
828
|
-
|
|
829
|
-
- Updated dependencies [9e1a22a53]
|
|
830
|
-
- tinacms@1.5.26
|
|
831
|
-
|
|
832
|
-
## 1.2.32
|
|
833
|
-
|
|
834
|
-
### Patch Changes
|
|
835
|
-
|
|
836
|
-
- tinacms@1.5.25
|
|
837
|
-
|
|
838
|
-
## 1.2.31
|
|
839
|
-
|
|
840
|
-
### Patch Changes
|
|
841
|
-
|
|
842
|
-
- Updated dependencies [a65ca13f2]
|
|
843
|
-
- @tinacms/mdx@1.3.22
|
|
844
|
-
- tinacms@1.5.24
|
|
845
|
-
|
|
846
|
-
## 1.2.30
|
|
847
|
-
|
|
848
|
-
### Patch Changes
|
|
849
|
-
|
|
850
|
-
- a937aabf0: Add support for build.basePath to be an environment variable
|
|
851
|
-
- 661239b2a: update final form to fix peer deps issues
|
|
852
|
-
- Updated dependencies [131b4dc55]
|
|
853
|
-
- Updated dependencies [93bfc804a]
|
|
854
|
-
- Updated dependencies [1fc2c4a99]
|
|
855
|
-
- Updated dependencies [693cf5bd6]
|
|
856
|
-
- Updated dependencies [afd1c7c97]
|
|
857
|
-
- Updated dependencies [a937aabf0]
|
|
858
|
-
- Updated dependencies [661239b2a]
|
|
859
|
-
- Updated dependencies [630ab9436]
|
|
860
|
-
- tinacms@1.5.23
|
|
861
|
-
- @tinacms/mdx@1.3.21
|
|
862
|
-
|
|
863
|
-
## 1.2.29
|
|
864
|
-
|
|
865
|
-
### Patch Changes
|
|
866
|
-
|
|
867
|
-
- Updated dependencies [b6fbab887]
|
|
868
|
-
- Updated dependencies [4ae43fdde]
|
|
869
|
-
- Updated dependencies [aec44a7dc]
|
|
870
|
-
- @tinacms/mdx@1.3.20
|
|
871
|
-
- tinacms@1.5.22
|
|
872
|
-
|
|
873
|
-
## 1.2.28
|
|
874
|
-
|
|
875
|
-
### Patch Changes
|
|
876
|
-
|
|
877
|
-
- 841456237: Fix issue where an error would occur if the folder button was clicked in the playground
|
|
878
|
-
- Updated dependencies [5040fc7cb]
|
|
879
|
-
- Updated dependencies [177002715]
|
|
880
|
-
- Updated dependencies [e69a3ef81]
|
|
881
|
-
- Updated dependencies [c925786ef]
|
|
882
|
-
- Updated dependencies [9f01550dd]
|
|
883
|
-
- @tinacms/mdx@1.3.19
|
|
884
|
-
- tinacms@1.5.21
|
|
885
|
-
|
|
886
|
-
## 1.2.27
|
|
887
|
-
|
|
888
|
-
### Patch Changes
|
|
889
|
-
|
|
890
|
-
- 7e4de0b2a: Improvements to error handling with auth
|
|
891
|
-
- 1144af060: Improve error messaging when onPut / onDelete hooks throw errors
|
|
892
|
-
- Updated dependencies [7e4de0b2a]
|
|
893
|
-
- Updated dependencies [1144af060]
|
|
894
|
-
- tinacms@1.5.20
|
|
895
|
-
- @tinacms/mdx@1.3.18
|
|
896
|
-
|
|
897
|
-
## 1.2.26
|
|
898
|
-
|
|
899
|
-
### Patch Changes
|
|
900
|
-
|
|
901
|
-
- Updated dependencies [1563ce5b2]
|
|
902
|
-
- Updated dependencies [0e94b2725]
|
|
903
|
-
- Updated dependencies [e83ba8855]
|
|
904
|
-
- tinacms@1.5.19
|
|
905
|
-
- @tinacms/mdx@1.3.17
|
|
906
|
-
|
|
907
|
-
## 1.2.25
|
|
908
|
-
|
|
909
|
-
### Patch Changes
|
|
910
|
-
|
|
911
|
-
- 121bd9fc4: Absorb @tinacms/toolkit into tinacms
|
|
912
|
-
|
|
913
|
-
fix: Use clean page-sizes on media manager (to make pagination more obvious)
|
|
914
|
-
|
|
915
|
-
Fix issue with uploading media in a folder with TinaCloud
|
|
916
|
-
|
|
917
|
-
- Updated dependencies [9c27087fb]
|
|
918
|
-
- Updated dependencies [65d0a701f]
|
|
919
|
-
- Updated dependencies [133e97d5b]
|
|
920
|
-
- Updated dependencies [f02b4368b]
|
|
921
|
-
- Updated dependencies [37cf8bd40]
|
|
922
|
-
- Updated dependencies [8aae69436]
|
|
923
|
-
- Updated dependencies [a78c81f14]
|
|
924
|
-
- Updated dependencies [ad22e0950]
|
|
925
|
-
- Updated dependencies [8db979b9f]
|
|
926
|
-
- Updated dependencies [7991e097e]
|
|
927
|
-
- Updated dependencies [30c7eac58]
|
|
928
|
-
- Updated dependencies [121bd9fc4]
|
|
929
|
-
- tinacms@1.5.18
|
|
930
|
-
- @tinacms/mdx@1.3.16
|
|
931
|
-
|
|
932
|
-
## 1.2.24
|
|
933
|
-
|
|
934
|
-
### Patch Changes
|
|
935
|
-
|
|
936
|
-
- bc812441b: Use .mjs extension for ES modules
|
|
937
|
-
- Updated dependencies [bc812441b]
|
|
938
|
-
- @tinacms/toolkit@1.7.13
|
|
939
|
-
- @tinacms/mdx@1.3.15
|
|
940
|
-
- tinacms@1.5.17
|
|
941
|
-
|
|
942
|
-
## 1.2.23
|
|
943
|
-
|
|
944
|
-
### Patch Changes
|
|
945
|
-
|
|
946
|
-
- Updated dependencies [1889422b0]
|
|
947
|
-
- @tinacms/toolkit@1.7.12
|
|
948
|
-
- tinacms@1.5.16
|
|
949
|
-
|
|
950
|
-
## 1.2.22
|
|
951
|
-
|
|
952
|
-
### Patch Changes
|
|
953
|
-
|
|
954
|
-
- @tinacms/mdx@1.3.14
|
|
955
|
-
- tinacms@1.5.15
|
|
956
|
-
- @tinacms/toolkit@1.7.11
|
|
957
|
-
|
|
958
|
-
## 1.2.21
|
|
959
|
-
|
|
960
|
-
### Patch Changes
|
|
961
|
-
|
|
962
|
-
- Updated dependencies [f1e8828c8]
|
|
963
|
-
- Updated dependencies [304e23318]
|
|
964
|
-
- Updated dependencies [a5d986477]
|
|
965
|
-
- @tinacms/toolkit@1.7.10
|
|
966
|
-
- tinacms@1.5.14
|
|
967
|
-
|
|
968
|
-
## 1.2.20
|
|
969
|
-
|
|
970
|
-
### Patch Changes
|
|
971
|
-
|
|
972
|
-
- Updated dependencies [d73d03f8f]
|
|
973
|
-
- Updated dependencies [745e30708]
|
|
974
|
-
- Updated dependencies [495108725]
|
|
975
|
-
- Updated dependencies [b0eba5d49]
|
|
976
|
-
- Updated dependencies [7d6e6ff3d]
|
|
977
|
-
- Updated dependencies [808d5cc6c]
|
|
978
|
-
- @tinacms/toolkit@1.7.9
|
|
979
|
-
- tinacms@1.5.13
|
|
980
|
-
|
|
981
|
-
## 1.2.19
|
|
982
|
-
|
|
983
|
-
### Patch Changes
|
|
984
|
-
|
|
985
|
-
- Updated dependencies [f6efd498e]
|
|
986
|
-
- @tinacms/toolkit@1.7.8
|
|
987
|
-
- tinacms@1.5.12
|
|
988
|
-
|
|
989
|
-
## 1.2.18
|
|
990
|
-
|
|
991
|
-
### Patch Changes
|
|
992
|
-
|
|
993
|
-
- 1176d569a: Ensure tinaField links to references land on the select field instead of the referenced form
|
|
994
|
-
- Updated dependencies [c7fa6ddc0]
|
|
995
|
-
- Updated dependencies [8710dec4b]
|
|
996
|
-
- Updated dependencies [6e192cc38]
|
|
997
|
-
- Updated dependencies [5aaae9902]
|
|
998
|
-
- tinacms@1.5.11
|
|
999
|
-
- @tinacms/toolkit@1.7.7
|
|
1000
|
-
- @tinacms/mdx@1.3.13
|
|
1001
|
-
|
|
1002
|
-
## 1.2.17
|
|
1003
|
-
|
|
1004
|
-
### Patch Changes
|
|
1005
|
-
|
|
1006
|
-
- @tinacms/toolkit@1.7.6
|
|
1007
|
-
- tinacms@1.5.10
|
|
1008
|
-
- @tinacms/mdx@1.3.12
|
|
1009
|
-
|
|
1010
|
-
## 1.2.16
|
|
1011
|
-
|
|
1012
|
-
### Patch Changes
|
|
1013
|
-
|
|
1014
|
-
- Updated dependencies [c385b5615]
|
|
1015
|
-
- Updated dependencies [d2ddfa5a6]
|
|
1016
|
-
- Updated dependencies [9489d5d47]
|
|
1017
|
-
- @tinacms/toolkit@1.7.5
|
|
1018
|
-
- tinacms@1.5.9
|
|
1019
|
-
- @tinacms/mdx@1.3.11
|
|
1020
|
-
|
|
1021
|
-
## 1.2.15
|
|
1022
|
-
|
|
1023
|
-
### Patch Changes
|
|
1024
|
-
|
|
1025
|
-
- Updated dependencies [cc621f665]
|
|
1026
|
-
- @tinacms/toolkit@1.7.4
|
|
1027
|
-
- tinacms@1.5.8
|
|
1028
|
-
|
|
1029
|
-
## 1.2.14
|
|
1030
|
-
|
|
1031
|
-
### Patch Changes
|
|
1032
|
-
|
|
1033
|
-
- 52b1762e2: Prevent unhandled promise rejection when not able to determine collection for file
|
|
1034
|
-
- 16b0c8073: Fix issue where activeField search param would be called twice, resulting in the incorrect form being focused.
|
|
1035
|
-
- Updated dependencies [70c74bb55]
|
|
1036
|
-
- Updated dependencies [385c8a865]
|
|
1037
|
-
- Updated dependencies [ccd928bc3]
|
|
1038
|
-
- Updated dependencies [1aea2c6a4]
|
|
1039
|
-
- @tinacms/toolkit@1.7.3
|
|
1040
|
-
- tinacms@1.5.7
|
|
1041
|
-
|
|
1042
|
-
## 1.2.13
|
|
1043
|
-
|
|
1044
|
-
### Patch Changes
|
|
1045
|
-
|
|
1046
|
-
- 7f95c1ce5: Reorganize the way fields are presented on the form to allow for deep-linking
|
|
1047
|
-
- Updated dependencies [5a6018916]
|
|
1048
|
-
- Updated dependencies [63dd98904]
|
|
1049
|
-
- Updated dependencies [b3d98d159]
|
|
1050
|
-
- Updated dependencies [7f95c1ce5]
|
|
1051
|
-
- tinacms@1.5.6
|
|
1052
|
-
- @tinacms/toolkit@1.7.2
|
|
1053
|
-
|
|
1054
|
-
## 1.2.12
|
|
1055
|
-
|
|
1056
|
-
### Patch Changes
|
|
1057
|
-
|
|
1058
|
-
- 31c160cdf: Placeholder view for when assets fail to load
|
|
1059
|
-
- @tinacms/mdx@1.3.10
|
|
1060
|
-
- tinacms@1.5.5
|
|
1061
|
-
|
|
1062
|
-
## 1.2.11
|
|
1063
|
-
|
|
1064
|
-
### Patch Changes
|
|
1065
|
-
|
|
1066
|
-
- Updated dependencies [f6e2ec5e9]
|
|
1067
|
-
- tinacms@1.5.4
|
|
1068
|
-
|
|
1069
|
-
## 1.2.10
|
|
1070
|
-
|
|
1071
|
-
### Patch Changes
|
|
1072
|
-
|
|
1073
|
-
- Updated dependencies [3532d07f3]
|
|
1074
|
-
- Updated dependencies [6d1465fd8]
|
|
1075
|
-
- tinacms@1.5.3
|
|
1076
|
-
|
|
1077
|
-
## 1.2.9
|
|
1078
|
-
|
|
1079
|
-
### Patch Changes
|
|
1080
|
-
|
|
1081
|
-
- Updated dependencies [e7f4c0a96]
|
|
1082
|
-
- Updated dependencies [ff8673515]
|
|
1083
|
-
- tinacms@1.5.2
|
|
1084
|
-
|
|
1085
|
-
## 1.2.8
|
|
1086
|
-
|
|
1087
|
-
### Patch Changes
|
|
1088
|
-
|
|
1089
|
-
- eba7e5e5e: Simplify formify logic
|
|
1090
|
-
- Updated dependencies [790b1e1ae]
|
|
1091
|
-
- Updated dependencies [eba7e5e5e]
|
|
1092
|
-
- tinacms@1.5.1
|
|
1093
|
-
- @tinacms/toolkit@1.7.1
|
|
1094
|
-
|
|
1095
|
-
## 1.2.7
|
|
1096
|
-
|
|
1097
|
-
### Patch Changes
|
|
1098
|
-
|
|
1099
|
-
- Updated dependencies [675c4cfde]
|
|
1100
|
-
- Updated dependencies [eeedcfd30]
|
|
1101
|
-
- Updated dependencies [40dd5b7ef]
|
|
1102
|
-
- Updated dependencies [0f90e9520]
|
|
1103
|
-
- Updated dependencies [d9d773a24]
|
|
1104
|
-
- Updated dependencies [63454fa1e]
|
|
1105
|
-
- Updated dependencies [804639965]
|
|
1106
|
-
- tinacms@1.5.0
|
|
1107
|
-
- @tinacms/toolkit@1.7.0
|
|
1108
|
-
- @tinacms/mdx@1.3.9
|
|
1109
|
-
|
|
1110
|
-
## 1.2.6
|
|
1111
|
-
|
|
1112
|
-
### Patch Changes
|
|
1113
|
-
|
|
1114
|
-
- Updated dependencies [709b6f2ec]
|
|
1115
|
-
- @tinacms/toolkit@1.6.4
|
|
1116
|
-
- tinacms@1.4.6
|
|
1117
|
-
|
|
1118
|
-
## 1.2.5
|
|
1119
|
-
|
|
1120
|
-
### Patch Changes
|
|
1121
|
-
|
|
1122
|
-
- Updated dependencies [75d5ed359]
|
|
1123
|
-
- @tinacms/mdx@1.3.8
|
|
1124
|
-
- tinacms@1.4.5
|
|
1125
|
-
|
|
1126
|
-
## 1.2.4
|
|
1127
|
-
|
|
1128
|
-
### Patch Changes
|
|
1129
|
-
|
|
1130
|
-
- Updated dependencies [7c750e370]
|
|
1131
|
-
- Updated dependencies [2a32a0b99]
|
|
1132
|
-
- Updated dependencies [6f491f38c]
|
|
1133
|
-
- tinacms@1.4.4
|
|
1134
|
-
- @tinacms/toolkit@1.6.3
|
|
1135
|
-
|
|
1136
|
-
## 1.2.3
|
|
1137
|
-
|
|
1138
|
-
### Patch Changes
|
|
1139
|
-
|
|
1140
|
-
- Updated dependencies [1370ebae6]
|
|
1141
|
-
- @tinacms/toolkit@1.6.2
|
|
1142
|
-
- tinacms@1.4.3
|
|
1143
|
-
|
|
1144
|
-
## 1.2.2
|
|
1145
|
-
|
|
1146
|
-
### Patch Changes
|
|
1147
|
-
|
|
1148
|
-
- Updated dependencies [0626ba381]
|
|
1149
|
-
- tinacms@1.4.2
|
|
1150
|
-
- @tinacms/mdx@1.3.7
|
|
1151
|
-
|
|
1152
|
-
## 1.2.1
|
|
1153
|
-
|
|
1154
|
-
### Patch Changes
|
|
1155
|
-
|
|
1156
|
-
- 5fcef561d: - Pin vite version
|
|
1157
|
-
- Adds react plugin so that we no longer get a 404 on react /@react-refresh
|
|
1158
|
-
- Adds transform ts and tsx files in build as well as dev
|
|
1159
|
-
- 8fc99059f: Fix main export field for @tinacms/app
|
|
1160
|
-
- c48326846: Move --skipSDK into config property: `client.skip = true`
|
|
1161
|
-
- Updated dependencies [5fcef561d]
|
|
1162
|
-
- Updated dependencies [9a8074889]
|
|
1163
|
-
- Updated dependencies [d0c4801b7]
|
|
1164
|
-
- @tinacms/mdx@1.3.6
|
|
1165
|
-
- tinacms@1.4.1
|
|
1166
|
-
- @tinacms/toolkit@1.6.1
|
|
1167
|
-
|
|
1168
|
-
## 1.2.0
|
|
1169
|
-
|
|
1170
|
-
### Minor Changes
|
|
1171
|
-
|
|
1172
|
-
- 76c984bcc: Use new API endpoint in content api reqests
|
|
1173
|
-
- 202cd714d: Internal updates to the CLI
|
|
1174
|
-
|
|
1175
|
-
### Patch Changes
|
|
1176
|
-
|
|
1177
|
-
- 3a1edd50d: Bundle the MDX package with its dependencies so we can avoid awkward import issues related to the remark ecosystem modules
|
|
1178
|
-
- Updated dependencies [9e86312d6]
|
|
1179
|
-
- Updated dependencies [084a39d2c]
|
|
1180
|
-
- Updated dependencies [76c984bcc]
|
|
1181
|
-
- Updated dependencies [785748400]
|
|
1182
|
-
- Updated dependencies [5d1e0e406]
|
|
1183
|
-
- Updated dependencies [202cd714d]
|
|
1184
|
-
- Updated dependencies [cbc1fb919]
|
|
1185
|
-
- @tinacms/mdx@1.3.5
|
|
1186
|
-
- @tinacms/toolkit@1.6.0
|
|
1187
|
-
- tinacms@1.4.0
|
|
1188
|
-
|
|
1189
|
-
## 1.1.2
|
|
1190
|
-
|
|
1191
|
-
### Patch Changes
|
|
1192
|
-
|
|
1193
|
-
- 9c277e179: fix: make rich text errors scrollable
|
|
1194
|
-
|
|
1195
|
-
## 1.1.1
|
|
1196
|
-
|
|
1197
|
-
### Patch Changes
|
|
1198
|
-
|
|
1199
|
-
- 3b1fe23ef: Remove rich-text sandbox app, fix issue with registering forms
|
|
1200
|
-
- c97ffc20d: Add schema checks to ensure the local and server schema are the same.
|
|
1201
|
-
|
|
1202
|
-
## 1.1.0
|
|
1203
|
-
|
|
1204
|
-
### Minor Changes
|
|
1205
|
-
|
|
1206
|
-
- 169147490: When markdown files fail to parse, fallback to the non-MDX parser
|
|
1207
|
-
|
|
1208
|
-
## 1.0.7
|
|
1209
|
-
|
|
1210
|
-
### Patch Changes
|
|
1211
|
-
|
|
1212
|
-
- efd56e769: Remove license headers
|
|
1213
|
-
|
|
1214
|
-
## 1.0.6
|
|
1215
|
-
|
|
1216
|
-
### Patch Changes
|
|
1217
|
-
|
|
1218
|
-
- 61f8c0e50: Fix issue where all env vars where send to the admin
|
|
1219
|
-
|
|
1220
|
-
## 1.0.5
|
|
1221
|
-
|
|
1222
|
-
### Patch Changes
|
|
1223
|
-
|
|
1224
|
-
- c5a603c75: Fix bug where 2 versions of Graphql could be installed
|
|
1225
|
-
- 23942cfcb: Add support for --rootPath argument in CLI commands
|
|
1226
|
-
- e7c404bcf: Support remote path configuration for separate content repos
|
|
1227
|
-
|
|
1228
|
-
Tina now supports serving content from a separate Git repo.
|
|
1229
|
-
|
|
1230
|
-
### Local development workflow
|
|
1231
|
-
|
|
1232
|
-
To enable this during local development, point
|
|
1233
|
-
this config at the root of the content repo.
|
|
1234
|
-
|
|
1235
|
-
> NOTE: Relative paths are fine to use here, but make sure it's relative to the `.tina/config` file
|
|
1236
|
-
|
|
1237
|
-
```ts
|
|
1238
|
-
localContentPath: process.env.REMOTE_ROOT_PATH; // eg. '../../my-content-repo'
|
|
1239
|
-
```
|
|
1240
|
-
|
|
1241
|
-
### Production workflow
|
|
1242
|
-
|
|
1243
|
-
For production, your config should use the `clientId`, `branch`, and `token` values that are associated with your _content repo_.
|
|
1244
|
-
|
|
1245
|
-
- e938b9d91: feat: Add line numbers to raw editor
|
|
1246
|
-
feat: More visible error-display in raw editor
|
|
1247
|
-
- 31dacc176: Only dedupe when using monorepo dev
|
|
1248
|
-
|
|
1249
|
-
## 1.0.4
|
|
1250
|
-
|
|
1251
|
-
### Patch Changes
|
|
1252
|
-
|
|
1253
|
-
- 1a75e8c13: Update host: true in vite config
|
|
1254
|
-
|
|
1255
|
-
## 1.0.3
|
|
1256
|
-
|
|
1257
|
-
### Patch Changes
|
|
1258
|
-
|
|
1259
|
-
- 66ed1452b: Updated so that `useEditState` does not require `useTina` to be called first.
|
|
1260
|
-
|
|
1261
|
-
## 1.0.2
|
|
1262
|
-
|
|
1263
|
-
### Patch Changes
|
|
1264
|
-
|
|
1265
|
-
- f13878798: Fix a bug where meta data was added to the form values payload
|
|
1266
|
-
- c62d2bad4: Fix issue where tailwind styles from within the user config weren't being picked up
|
|
1267
|
-
|
|
1268
|
-
## 1.0.1
|
|
1269
|
-
|
|
1270
|
-
### Patch Changes
|
|
1271
|
-
|
|
1272
|
-
- 38438bad6: use env vars when building
|
|
1273
|
-
- 78b9668b1: Fix issue with formify logic that returned undefined for falsy values like "" or 0
|
|
1274
|
-
- 0b2164645: Simplifies preview markup
|
|
1275
|
-
- 7c1425a82: - Add active field for iframe
|
|
1276
|
-
- Introduce `tinaField` utility helper
|
|
1277
|
-
- c1ac4bf10: Added a `onLogin` Callback function that is called when the user logs in.
|
|
1278
|
-
|
|
1279
|
-
EX:
|
|
1280
|
-
|
|
1281
|
-
```ts
|
|
1282
|
-
import { defineConfig } from "tinacms";
|
|
1283
|
-
|
|
1284
|
-
export default defineConfig({
|
|
1285
|
-
admin: {
|
|
1286
|
-
auth: {
|
|
1287
|
-
onLogin: () => {
|
|
1288
|
-
console.log("On Log in!");
|
|
1289
|
-
},
|
|
1290
|
-
},
|
|
1291
|
-
},
|
|
1292
|
-
/// ...
|
|
1293
|
-
});
|
|
1294
|
-
```
|
|
1295
|
-
|
|
1296
|
-
- 9d4943a82: Fix issue resolving alias fields when passing through the `useTina` hook
|
|
1297
|
-
|
|
1298
|
-
## 1.0.0
|
|
1299
|
-
|
|
1300
|
-
### Major Changes
|
|
1301
|
-
|
|
1302
|
-
- 958d10c82: Tina 1.0 Release
|
|
1303
|
-
|
|
1304
|
-
Make sure you have updated to th "iframe" path: https://tina.io/blog/upgrading-to-iframe/
|
|
1305
|
-
|
|
1306
|
-
## 0.0.28
|
|
1307
|
-
|
|
1308
|
-
### Patch Changes
|
|
1309
|
-
|
|
1310
|
-
- f4dcf3e27: Include dependencies as part of the build artifacts for @tinacms/app
|
|
1311
|
-
- 231dcab2e: Remove favicon
|
|
1312
|
-
|
|
1313
|
-
## 0.0.27
|
|
1314
|
-
|
|
1315
|
-
### Patch Changes
|
|
1316
|
-
|
|
1317
|
-
- d58401231: Simplify the way form values are resolved into the data payload on iframe
|
|
1318
|
-
- 3370cefd8: Fix preview images in cloudinary
|
|
1319
|
-
- e720590e1: Ensure complex queries with multiple fragments for the same node don't throw a console error
|
|
1320
|
-
|
|
1321
|
-
## 0.0.26
|
|
1322
|
-
|
|
1323
|
-
### Patch Changes
|
|
1324
|
-
|
|
1325
|
-
- fd7e4f636: Don't restart vite server on every schema change when working locally.
|
|
1326
|
-
- f7d3cf532: Add useEditState hook
|
|
1327
|
-
|
|
1328
|
-
## 0.0.25
|
|
1329
|
-
|
|
1330
|
-
### Patch Changes
|
|
1331
|
-
|
|
1332
|
-
- 6d06e18a3: Pin vite to 3.1.8 as 3.2.0 introduces a bug
|
|
1333
|
-
|
|
1334
|
-
## 0.0.24
|
|
1335
|
-
|
|
1336
|
-
### Patch Changes
|
|
1337
|
-
|
|
1338
|
-
- 15f7c18ef: Fixed issue where forms would sometimes not unmount when navigating away from a page.
|
|
1339
|
-
|
|
1340
|
-
## 0.0.23
|
|
1341
|
-
|
|
1342
|
-
### Patch Changes
|
|
1343
|
-
|
|
1344
|
-
- 009fe3180: Reorganize @tinacms/app so that it runs a local install in the working directory to ensure consistent dependencies
|
|
1345
|
-
- 2f6a3596d: Upgrade to Vite 3
|
|
1346
|
-
|
|
1347
|
-
## 0.0.22
|
|
1348
|
-
|
|
1349
|
-
### Patch Changes
|
|
1350
|
-
|
|
1351
|
-
- 2422e505d: Removed styled-components as a dependency in tinacms.
|
|
1352
|
-
Removed deprecated react-toolbar in @tinacms/toolkit.
|
|
1353
|
-
- Updated dependencies [2422e505d]
|
|
1354
|
-
- @tinacms/scripts@0.51.2
|
|
1355
|
-
- tinacms@0.69.17
|
|
1356
|
-
- @tinacms/schema-tools@0.1.8
|
|
1357
|
-
|
|
1358
|
-
## 0.0.21
|
|
1359
|
-
|
|
1360
|
-
### Patch Changes
|
|
1361
|
-
|
|
1362
|
-
- Updated dependencies [005e1d699]
|
|
1363
|
-
- @tinacms/schema-tools@0.1.8
|
|
1364
|
-
- tinacms@0.69.16
|
|
1365
|
-
|
|
1366
|
-
## 0.0.20
|
|
1367
|
-
|
|
1368
|
-
### Patch Changes
|
|
1369
|
-
|
|
1370
|
-
- Updated dependencies [b1a357f60]
|
|
1371
|
-
- Updated dependencies [0c8c571d5]
|
|
1372
|
-
- @tinacms/schema-tools@0.1.7
|
|
1373
|
-
- tinacms@0.69.15
|
|
1374
|
-
|
|
1375
|
-
## 0.0.19
|
|
1376
|
-
|
|
1377
|
-
### Patch Changes
|
|
1378
|
-
|
|
1379
|
-
- Updated dependencies [c6e3bd321]
|
|
1380
|
-
- @tinacms/schema-tools@0.1.6
|
|
1381
|
-
- tinacms@0.69.14
|
|
1382
|
-
|
|
1383
|
-
## 0.0.18
|
|
1384
|
-
|
|
1385
|
-
### Patch Changes
|
|
1386
|
-
|
|
1387
|
-
- Updated dependencies [ea4a8e1b0]
|
|
1388
|
-
- tinacms@0.69.13
|
|
1389
|
-
|
|
1390
|
-
## 0.0.17
|
|
1391
|
-
|
|
1392
|
-
### Patch Changes
|
|
1393
|
-
|
|
1394
|
-
- Updated dependencies [183249b11]
|
|
1395
|
-
- Updated dependencies [8060d0949]
|
|
1396
|
-
- @tinacms/schema-tools@0.1.5
|
|
1397
|
-
- tinacms@0.69.12
|
|
1398
|
-
|
|
1399
|
-
## 0.0.16
|
|
1400
|
-
|
|
1401
|
-
### Patch Changes
|
|
1402
|
-
|
|
1403
|
-
- tinacms@0.69.11
|
|
1404
|
-
|
|
1405
|
-
## 0.0.15
|
|
1406
|
-
|
|
1407
|
-
### Patch Changes
|
|
1408
|
-
|
|
1409
|
-
- tinacms@0.69.10
|
|
1410
|
-
|
|
1411
|
-
## 0.0.14
|
|
1412
|
-
|
|
1413
|
-
### Patch Changes
|
|
1414
|
-
|
|
1415
|
-
- tinacms@0.69.9
|
|
1416
|
-
|
|
1417
|
-
## 0.0.13
|
|
1418
|
-
|
|
1419
|
-
### Patch Changes
|
|
1420
|
-
|
|
1421
|
-
- e5da05a8c: Enable the dev server when using Tina standalone for faster builds
|
|
1422
|
-
- Updated dependencies [f581f263d]
|
|
1423
|
-
- Updated dependencies [0513ae416]
|
|
1424
|
-
- Updated dependencies [64c40e6fc]
|
|
1425
|
-
- Updated dependencies [7ae1b0697]
|
|
1426
|
-
- Updated dependencies [f3439ea35]
|
|
1427
|
-
- Updated dependencies [48032e2ba]
|
|
1428
|
-
- Updated dependencies [112b7271d]
|
|
1429
|
-
- Updated dependencies [8688dbff9]
|
|
1430
|
-
- @tinacms/schema-tools@0.1.4
|
|
1431
|
-
- tinacms@0.69.8
|
|
1432
|
-
|
|
1433
|
-
## 0.0.12
|
|
1434
|
-
|
|
1435
|
-
### Patch Changes
|
|
1436
|
-
|
|
1437
|
-
- 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.
|
|
1438
|
-
|
|
1439
|
-
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`.
|
|
1440
|
-
|
|
1441
|
-
- 4adf12619: Add support for experimental iframe mode
|
|
1442
|
-
- Updated dependencies [9183157c4]
|
|
1443
|
-
- Updated dependencies [4adf12619]
|
|
1444
|
-
- Updated dependencies [f8b89379c]
|
|
1445
|
-
- @tinacms/schema-tools@0.1.3
|
|
1446
|
-
- tinacms@0.69.7
|
|
1447
|
-
|
|
1448
|
-
## 0.0.11
|
|
1449
|
-
|
|
1450
|
-
### Patch Changes
|
|
1451
|
-
|
|
1452
|
-
- tinacms@0.69.6
|
|
1453
|
-
|
|
1454
|
-
## 0.0.10
|
|
1455
|
-
|
|
1456
|
-
### Patch Changes
|
|
1457
|
-
|
|
1458
|
-
- Updated dependencies [bf89a3720]
|
|
1459
|
-
- Updated dependencies [fd4d8c8ff]
|
|
1460
|
-
- Updated dependencies [e650bc571]
|
|
1461
|
-
- tinacms@0.69.5
|
|
1462
|
-
|
|
1463
|
-
## 0.0.9
|
|
1464
|
-
|
|
1465
|
-
### Patch Changes
|
|
1466
|
-
|
|
1467
|
-
- Updated dependencies [5029265ed]
|
|
1468
|
-
- Updated dependencies [2b60a7bd8]
|
|
1469
|
-
- tinacms@0.69.4
|
|
1470
|
-
|
|
1471
|
-
## 0.0.8
|
|
1472
|
-
|
|
1473
|
-
### Patch Changes
|
|
1474
|
-
|
|
1475
|
-
- Updated dependencies [0ad8075aa]
|
|
1476
|
-
- tinacms@0.69.3
|
|
1477
|
-
|
|
1478
|
-
## 0.0.7
|
|
1479
|
-
|
|
1480
|
-
### Patch Changes
|
|
1481
|
-
|
|
1482
|
-
- Updated dependencies [b369d7238]
|
|
1483
|
-
- Updated dependencies [541605aa8]
|
|
1484
|
-
- Updated dependencies [2182dc2a6]
|
|
1485
|
-
- tinacms@0.69.2
|
|
1486
|
-
|
|
1487
|
-
## 0.0.6
|
|
1488
|
-
|
|
1489
|
-
### Patch Changes
|
|
1490
|
-
|
|
1491
|
-
- Updated dependencies [9fbb4e557]
|
|
1492
|
-
- @tinacms/scripts@0.51.1
|
|
1493
|
-
- tinacms@0.69.1
|
|
1494
|
-
|
|
1495
|
-
## 0.0.5
|
|
1496
|
-
|
|
1497
|
-
### Patch Changes
|
|
1498
|
-
|
|
1499
|
-
- Updated dependencies [9ea28113e]
|
|
1500
|
-
- tinacms@0.69.1
|
|
1501
|
-
|
|
1502
|
-
## 0.0.4
|
|
1503
|
-
|
|
1504
|
-
### Patch Changes
|
|
1505
|
-
|
|
1506
|
-
- 8183b638c: ## Adds a new "Static" build option.
|
|
1507
|
-
|
|
1508
|
-
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.
|
|
1509
|
-
|
|
1510
|
-
### How to update
|
|
1511
|
-
|
|
1512
|
-
1. Add a `.tina/config.{js,ts,tsx,jsx}` with the default export of define config.
|
|
1513
|
-
|
|
1514
|
-
```ts
|
|
1515
|
-
// .tina/config.ts
|
|
1516
|
-
import schema from "./schema";
|
|
1517
|
-
|
|
1518
|
-
export default defineConfig({
|
|
1519
|
-
schema: schema,
|
|
1520
|
-
//.. Everything from define config in `schema.ts`
|
|
1521
|
-
//.. Everything from `schema.config`
|
|
1522
|
-
});
|
|
1523
|
-
```
|
|
1524
|
-
|
|
1525
|
-
2. Add Build config
|
|
1526
|
-
|
|
1527
|
-
```
|
|
1528
|
-
.tina/config.ts
|
|
1529
|
-
|
|
1530
|
-
export default defineConfig({
|
|
1531
|
-
build: {
|
|
1532
|
-
outputFolder: "admin",
|
|
1533
|
-
publicFolder: "public",
|
|
1534
|
-
},
|
|
1535
|
-
//... other config
|
|
1536
|
-
})
|
|
1537
|
-
```
|
|
1538
|
-
|
|
1539
|
-
3. Go to `http://localhost:3000/admin/index.html` and view the admin
|
|
1540
|
-
|
|
1541
|
-
- Updated dependencies [7b0dda55e]
|
|
1542
|
-
- Updated dependencies [8183b638c]
|
|
1543
|
-
- @tinacms/scripts@0.51.0
|
|
1544
|
-
- tinacms@0.69.0
|