Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
360a837
docs: update v1.18 documentation
hwbrzzl Jun 9, 2026
607ccfc
optimize
hwbrzzl Jun 9, 2026
98e6215
optimize
hwbrzzl Jun 10, 2026
f3bca85
docs: update AI provider failover
hwbrzzl Jun 10, 2026
5222c2c
add telemetry docs
krishankumar01 Jun 12, 2026
7ec1987
docs: use complete in-project examples in telemetry docs
krishankumar01 Jun 12, 2026
07d009d
optimize
hwbrzzl Jun 13, 2026
3f3f96d
optimize
hwbrzzl Jun 13, 2026
fa015b2
optimize
hwbrzzl Jun 13, 2026
ba2f259
docs: document mail content breaking change
hwbrzzl Jun 13, 2026
26ab567
optimize
hwbrzzl Jun 14, 2026
c79854a
optimize
hwbrzzl Jun 19, 2026
74fe674
optimize
hwbrzzl Jun 20, 2026
bc7bdf5
optimize
hwbrzzl Jun 20, 2026
c5825c6
optimize
hwbrzzl Jun 20, 2026
00e3e6e
optimize
hwbrzzl Jun 21, 2026
a260ac5
optimize
hwbrzzl Jun 23, 2026
99117c1
docs: explain the Tracer/Meter instrumentation scope name
krishankumar01 Jun 26, 2026
f09f7e4
docs: add mock factory docs for AI, DB, Route, Schedule, Schema, Sess…
hwbrzzl Jun 27, 2026
dd8cfb8
optimize
hwbrzzl Jun 27, 2026
7551b2f
optimize
hwbrzzl Jun 28, 2026
991ebca
optimize
hwbrzzl Jun 28, 2026
a5934a1
docs: document automatic database instrumentation for telemetry
krishankumar01 Jun 28, 2026
073b820
docs: optimise database telemetry example to pass context directly
krishankumar01 Jun 28, 2026
7181529
optimize
hwbrzzl Jun 29, 2026
2465dbb
optimize
hwbrzzl Jun 29, 2026
c7491ce
optimize
hwbrzzl Jun 29, 2026
e757dd5
docs: pass context directly to telemetry instead of ctx.Context()
krishankumar01 Jun 29, 2026
39507b2
docs: drop redundant context.Context note in telemetry example
krishankumar01 Jun 30, 2026
24d21ff
docs: include database in v1.18 built-in instrumentation list
krishankumar01 Jun 30, 2026
b9f156c
optimize
hwbrzzl Jul 2, 2026
e3f45f8
optimize
hwbrzzl Jul 2, 2026
ea94977
optimize
hwbrzzl Jul 3, 2026
8716635
optimize
hwbrzzl Jul 4, 2026
2f58f2c
optimize
hwbrzzl Jul 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 26 additions & 4 deletions .vitepress/config/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ export const config = defineConfig({
base: '/digging-deeper/',
items: sidebarAdvanced()
},
{
text: 'AI',
base: '/ai/',
items: sidebarAI()
},
{
text: 'Security',
base: '/security/',
Expand Down Expand Up @@ -171,12 +176,12 @@ function sidebarPrologue(): DefaultTheme.SidebarItem[] {
function sidebarUpgrade(): DefaultTheme.SidebarItem[] {
return [
{
text: 'Upgrading To v1.17 From v1.16',
link: 'v1.17'
text: 'Upgrading To v1.18 From v1.17',
link: 'v1.18'
},
{
text: 'Upgrading To v1.16 From v1.15',
link: 'v1.16'
text: 'Upgrading To v1.17 From v1.16',
link: 'v1.17'
},
{
text: 'History',
Expand Down Expand Up @@ -301,6 +306,10 @@ function sidebarAdvanced(): DefaultTheme.SidebarItem[] {
text: 'Strings',
link: 'strings'
},
{
text: 'Collections',
link: 'collections'
},
{
text: 'Helpers',
link: 'helpers'
Expand All @@ -312,6 +321,19 @@ function sidebarAdvanced(): DefaultTheme.SidebarItem[] {
{
text: 'Pluralization',
link: 'pluralization'
},
{
text: 'Telemetry',
link: 'telemetry'
}
]
}

function sidebarAI(): DefaultTheme.SidebarItem[] {
return [
{
text: 'AI SDK',
link: 'sdk'
}
]
}
Expand Down
Loading