Skip to content

Commit 0eab8ba

Browse files
chore(docs): doc changes for next release (automated) (#14981)
* [create-pull-request] automated change * chore(docs): automated documentation update for 6442b32 * chore(docs): automated documentation update for 6442b32 * chore(docs): automated documentation update for f04adb1 * Update www/apps/resources/app/infrastructure-modules/locking/redis/page.mdx * Update www/apps/user-guide/app/orders/manage/page.mdx --------- Co-authored-by: shahednasser <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f04adb1 commit 0eab8ba

File tree

11 files changed

+5491
-5384
lines changed

11 files changed

+5491
-5384
lines changed

output.txt

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

www/apps/book/app/learn/fundamentals/events-and-subscribers/emit-event/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const criticalWorkflow = createWorkflow(
148148
eventName: "payment.processed",
149149
data: { id: "123" },
150150
options: {
151-
priority: EventPriority.CRITICAL
151+
priority: EventPriority.CRITICAL,
152152
},
153153
})
154154
}

www/apps/book/app/learn/fundamentals/events-and-subscribers/event-priority/page.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ export const handlePaymentWorkflow = createWorkflow(
121121
emitEventStep({
122122
eventName: "payment.processed",
123123
data: {
124-
id: input.paymentId
124+
id: input.paymentId,
125125
},
126126
options: {
127-
priority: EventPriority.CRITICAL
128-
}
127+
priority: EventPriority.CRITICAL,
128+
},
129129
})
130130

131131
return new WorkflowResponse({ success: true })

www/apps/book/app/learn/fundamentals/workflows/locks/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ In this example, the `chargeCustomerStep` step acquires a lock on the order usin
122122

123123
<Note title="Tip">
124124

125-
The step will wait until the lock is acquired based on the configured Locking Module Provider's options. For example, the [Redis Locking Module Provider](!resources!/infrastructure-modules/locking/redis) will wait five seconds before timing out.
125+
The step will wait until the lock is acquired based on the configured Locking Module Provider's options. For example, the [Redis Locking Module Provider](!resources!/infrastructure-modules/locking/redis) will wait five seconds before timing out by default, with exponential backoff retry intervals.
126126

127127
</Note>
128128

www/apps/book/generated/edit-dates.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export const generatedEditDates = {
131131
"app/learn/fundamentals/scheduled-jobs/interval/page.mdx": "2025-09-02T08:36:12.714Z",
132132
"app/learn/debugging-and-testing/feature-flags/create/page.mdx": "2025-09-02T08:36:12.714Z",
133133
"app/learn/debugging-and-testing/feature-flags/page.mdx": "2025-09-02T08:36:12.714Z",
134-
"app/learn/fundamentals/workflows/locks/page.mdx": "2025-12-09T11:20:25.011Z",
134+
"app/learn/fundamentals/workflows/locks/page.mdx": "2026-04-03T09:29:55.646Z",
135135
"app/learn/codemods/page.mdx": "2025-09-29T15:40:03.620Z",
136136
"app/learn/codemods/replace-imports/page.mdx": "2025-10-09T11:37:44.754Z",
137137
"app/learn/fundamentals/admin/translations/page.mdx": "2025-12-16T13:56:21.400Z",

www/apps/book/public/llms-full.txt

Lines changed: 5375 additions & 5372 deletions
Large diffs are not rendered by default.

www/apps/resources/app/how-to-tutorials/tutorials/product-reviews/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ Start by adding the necessary imports at the top of `src/admin/routes/reviews/pa
13511351
import {
13521352
createDataTableCommandHelper,
13531353
DataTableRowSelectionState,
1354-
toast
1354+
toast,
13551355
} from "@medusajs/ui"
13561356
```
13571357

www/apps/resources/app/infrastructure-modules/locking/redis/page.mdx

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ The default Redis URL in a local environment is `redis://localhost:6379`.
190190
</Table.Cell>
191191
<Table.Cell>
192192

193-
`5`
193+
`20` (changed from `5` in v2.13.6+)
194194

195195
</Table.Cell>
196196
</Table.Row>
@@ -212,7 +212,29 @@ The default Redis URL in a local environment is `redis://localhost:6379`.
212212
</Table.Cell>
213213
<Table.Cell>
214214

215-
`200`
215+
`1000` (changed from `200` in v2.13.6+)
216+
217+
</Table.Cell>
218+
</Table.Row>
219+
<Table.Row>
220+
<Table.Cell>
221+
222+
`backoffFactor` (v2.13.6+)
223+
224+
</Table.Cell>
225+
<Table.Cell>
226+
227+
A number indicating the multiplier used for exponential backoff when retrying to acquire a lock. Each retry will wait longer than the previous one by this factor.
228+
229+
</Table.Cell>
230+
<Table.Cell>
231+
232+
No
233+
234+
</Table.Cell>
235+
<Table.Cell>
236+
237+
`2`
216238

217239
</Table.Cell>
218240
</Table.Row>

www/apps/resources/generated/edit-dates.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6012,7 +6012,7 @@ export const generatedEditDates = {
60126012
"app/references-overview/page.mdx": "2025-03-10T12:55:49.803Z",
60136013
"app/infrastructure-modules/locking/page.mdx": "2025-11-26T11:45:10.290Z",
60146014
"app/infrastructure-modules/locking/postgres/page.mdx": "2026-01-12T12:25:40.540Z",
6015-
"app/infrastructure-modules/locking/redis/page.mdx": "2025-06-24T08:50:10.115Z",
6015+
"app/infrastructure-modules/locking/redis/page.mdx": "2026-04-03T09:30:23.470Z",
60166016
"references/locking/interfaces/locking.ILockingModule/page.mdx": "2025-10-21T08:10:48.921Z",
60176017
"references/locking/interfaces/locking.ILockingProvider/page.mdx": "2025-10-21T08:10:48.914Z",
60186018
"references/modules/locking/page.mdx": "2025-03-12T12:28:30.419Z",

www/apps/user-guide/app/orders/manage/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The Customer section includes the customer’s details, including their contact
4646

4747
### Activity Section
4848

49-
The Activity section of the order details page shows a summary of the changes made on the order. That includes payments captured, returned items, shipped items, and more. Use this section to get a quick overview of the orders history and actions taken on it.
49+
The Activity section of the order details page shows a summary of the changes made on the order. That includes payments captured, returned items, shipped items, and more. Use this section to get a quick overview of the order's history and actions taken on it.
5050

5151
![Activity Section](https://res.cloudinary.com/dza7lstvk/image/upload/v1739543897/User%20Guide/Screenshot_2025-02-14_at_4.37.58_PM_dcl0lw.png)
5252

0 commit comments

Comments
 (0)