Skip to content

Commit b6a4b8b

Browse files
authored
Add dec2024 newsletter (#683)
1 parent 7b62d7d commit b6a4b8b

7 files changed

+123
-0
lines changed

client/www/_emails/html/dec2024.html

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<p><img
2+
src="https://www.instantdb.com/img/emails/dec2024/s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png" /></p>
3+
<p>Hey crew! It’s time for another edition of Instant News 🙂 Here’s a
4+
slice of what happened in December!</p>
5+
<p><strong>Order by attributes</strong></p>
6+
<p><img
7+
src="https://www.instantdb.com/img/emails/dec2024/s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735626509971_image.png" /></p>
8+
<p>Previously, you could order by <code>serverCreatedAt</code>, but not
9+
much else. This is because we didn’t have a way to make
10+
<code>order</code> queries fast.</p>
11+
<p>Once we introduced type checked attributes, suddenly the path for
12+
fast order queries opened up. Starting from <code>0.17.0</code>, you can
13+
use <code>order</code> on type-checked and indexed attributes.</p>
14+
<p>To learn more about how to use order, <a
15+
href="https://www.instantdb.com/docs/instaql#ordering">check out the
16+
docs</a>.</p>
17+
<p><strong>Sign in with Apple</strong></p>
18+
<p><img
19+
src="https://www.instantdb.com/img/emails/dec2024/s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735626771452_image.png" /></p>
20+
<p>We’ve had sign in with magic codes, Google, Clerk, and custom auth
21+
flows via the admin SDK. Well now Instant provides support for signing
22+
in with Apple too! We support a popup flow, a web redirect, and a
23+
dedicated React Native flow! <a
24+
href="https://www.instantdb.com/docs/auth/apple?method=web-popup">Learn
25+
more in the docs</a></p>
26+
<p><strong>Type-safe init by default!</strong> We launched type
27+
enforcement on the backend last month and this month we made type-safe
28+
<code>init</code> the default. Previously to get type-safety on the
29+
frontend you had to use a separate <code>init_experimental</code> flow.
30+
Now you can just import your schema and pass it to <code>init</code></p>
31+
<p><img
32+
src="https://www.instantdb.com/img/emails/dec2024/s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735627523303_image.png" /></p>
33+
<p>We made sure to do this in a backwards compatible way, so upgrading
34+
to the latest version shouldn’t cause any headaches. To learn more about
35+
backwards compatibility check out our announcement on <a
36+
href="https://discord.com/channels/1031957483243188235/1148279464132890714/1319055607776546918">discord</a>.
37+
And to learn more about how to leverage type-safety <a
38+
href="https://www.instantdb.com/docs/modeling-data">check out our
39+
docs.</a></p>
40+
<p><strong>What’s next?</strong></p>
41+
<p>It’s been an awesome year for us at Instant, the platform has grown
42+
so much thanks to all your feedback. Instant is on completely different
43+
level compared to <a
44+
href="https://discord.com/channels/1031957483243188235/1148279464132890714/1187861605959074014">our
45+
mvp from one year ago</a>. So excited to make another magnitude jump in
46+
2025 and make Instant the new default for folks who want to ship the
47+
best applications fast!</p>
48+
<p>Hope you had a wonderful holidays and looking forward to hacking
49+
together in 2025!</p>
50+
<p><strong>P.S. We’re hiring!</strong></p>
51+
<p>If you’re interested in working on some of the hardest problems for
52+
modern app development drop us a line at [email protected] with a
53+
resume and a side project you’ve worked on (including a Github is a huge
54+
plus!)</p>
55+
<p><img
56+
src="https://pbs.twimg.com/media/GZd_xO0akAETvju?format=jpg&amp;name=large" /></p>
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
![](https://www.instantdb.com/img/emails/dec2024/s_DF8F10A9009F2A236BC7D07C4EC05DDA50E4FB82F40AA98593D3B98A1A7EA3DC_1730238267270_instant_header.png)
2+
3+
Hey crew! It’s time for another edition of Instant News 🙂 Here’s a slice of what happened in December!
4+
5+
**Order by attributes**
6+
7+
![](https://www.instantdb.com/img/emails/dec2024/s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735626509971_image.png)
8+
9+
Previously, you could order by `serverCreatedAt`, but not much else. This is because we didn’t have a way to make `order` queries fast.
10+
11+
Once we introduced type checked attributes, suddenly the path for fast order queries opened up. Starting from `0.17.0`, you can use `order` on type-checked and indexed attributes.
12+
13+
To learn more about how to use order, [check out the docs](https://www.instantdb.com/docs/instaql#ordering).
14+
15+
**Sign in with Apple**
16+
17+
![](https://www.instantdb.com/img/emails/dec2024/s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735626771452_image.png)
18+
19+
We’ve had sign in with magic codes, Google, Clerk, and custom auth flows via the admin SDK. Well now Instant provides support for signing in with Apple too! We support a popup flow, a web redirect, and a dedicated React Native flow! [Learn more in the docs](https://www.instantdb.com/docs/auth/apple?method=web-popup)
20+
21+
**Type-safe init by default!**
22+
We launched type enforcement on the backend last month and this month we made type-safe `init` the default. Previously to get type-safety on the frontend you had to use a separate `init_experimental` flow. Now you can just import your schema and pass it to `init`
23+
24+
![](https://www.instantdb.com/img/emails/dec2024/s_A91D86B3D6F04CFEA63084B83C6E816ADC42104A6822CC9C6258E9D560CDF5F3_1735627523303_image.png)
25+
26+
We made sure to do this in a backwards compatible way, so upgrading to the latest version shouldn’t cause any headaches. To learn more about backwards compatibility check out our announcement on [discord](https://discord.com/channels/1031957483243188235/1148279464132890714/1319055607776546918). And to learn more about how to leverage type-safety [check out our docs.](https://www.instantdb.com/docs/modeling-data)
27+
28+
**What’s next?**
29+
30+
It's been an awesome year for us at Instant, the platform has grown so much thanks to all your feedback. Instant is on completely different level compared to [our mvp from one year ago](https://discord.com/channels/1031957483243188235/1148279464132890714/1187861605959074014). So excited to make another magnitude jump in 2025 and make Instant the new default for folks who want to ship the best applications fast!
31+
32+
Hope you had a wonderful holidays and looking forward to hacking together in 2025!
33+
34+
**P.S. We’re hiring!**
35+
36+
If you’re interested in working on some of the hardest problems for modern app development drop us a line at [email protected] with a resume and a side project you’ve worked on (including a Github is a huge plus!)
37+
38+
![](https://pbs.twimg.com/media/GZd_xO0akAETvju?format=jpg\&name=large)

client/www/_emails/txt/dec2024.txt

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
Hey crew! It’s time for another edition of Instant News 🙂 Here’s a slice of what happened in December!
3+
4+
**Order by attributes**
5+
6+
Previously, you could order by `serverCreatedAt`, but not much else. This is because we didn’t have a way to make `order` queries fast.
7+
8+
Once we introduced type checked attributes, suddenly the path for fast order queries opened up. Starting from `0.17.0`, you can use `order` on type-checked and indexed attributes.
9+
10+
To learn more about how to use order, [check out the docs](https://www.instantdb.com/docs/instaql#ordering).
11+
12+
**Sign in with Apple**
13+
14+
We’ve had sign in with magic codes, Google, Clerk, and custom auth flows via the admin SDK. Well now Instant provides support for signing in with Apple too! We support a popup flow, a web redirect, and a dedicated React Native flow! [Learn more in the docs](https://www.instantdb.com/docs/auth/apple?method=web-popup)
15+
16+
**Type-safe init by default!**
17+
We launched type enforcement on the backend last month and this month we made type-safe `init` the default. Previously to get type-safety on the frontend you had to use a separate `init_experimental` flow. Now you can just import your schema and pass it to `init`
18+
19+
We made sure to do this in a backwards compatible way, so upgrading to the latest version shouldn’t cause any headaches. To learn more about backwards compatibility check out our announcement on [discord](https://discord.com/channels/1031957483243188235/1148279464132890714/1319055607776546918). And to learn more about how to leverage type-safety [check out our docs.](https://www.instantdb.com/docs/modeling-data)
20+
21+
**What’s next?**
22+
23+
It's been an awesome year for us at Instant, the platform has grown so much thanks to all your feedback. Instant is on completely different level compared to [our mvp from one year ago](https://discord.com/channels/1031957483243188235/1148279464132890714/1187861605959074014). So excited to make another magnitude jump in 2025 and make Instant the new default for folks who want to ship the best applications fast!
24+
25+
Hope you had a wonderful holidays and looking forward to hacking together in 2025!
26+
27+
**P.S. We’re hiring!**
28+
29+
If you’re interested in working on some of the hardest problems for modern app development drop us a line at [email protected] with a resume and a side project you’ve worked on (including a Github is a huge plus!)

0 commit comments

Comments
 (0)