Skip to content

Commit 22fc02e

Browse files
authored
Merge pull request #540 from kmpeeduwee/update-deprecated-documentation-urls
fix: update broken documentation URLs in deprecation warnings
1 parent 49c9c3a commit 22fc02e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/core/src/attach/attach.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export function attachOperation<
107107
}
108108
) {
109109
console.error(
110-
'attachOperation is deprecated since 0.12, please read the migration guide: https://farfetched.pages.dev/adr/attach_operation_deprecation.html'
110+
'attachOperation is deprecated since 0.12, please read the migration guide: https://ff.effector.dev/adr/attach_operation_deprecation.html'
111111
);
112112

113113
const { source, mapParams } = config ?? {};

packages/core/src/mutation/create_json_mutation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export function createJsonMutation(config: any): Mutation<any, any, any> {
271271
/* TODO: in future releases we will remove this code and make concurrency a separate function */
272272
if (config.concurrency) {
273273
console.error(
274-
'concurrency field in createJsonMutation is deprecated, please use concurrency operator instead: https://farfetched.pages.dev/adr/concurrency'
274+
'concurrency field in createJsonMutation is deprecated, please use concurrency operator instead: https://ff.effector.dev/adr/concurrency.html'
275275
);
276276

277277
op.__.meta.flags.concurrencyFieldUsed = true;

packages/core/src/query/create_json_query.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ export function createJsonQuery(config: any) {
399399
/* TODO: in future releases we will remove this code and make concurrency a separate function */
400400
if (config.concurrency) {
401401
console.error(
402-
'concurrency field in createJsonQuery is deprecated, please use concurrency operator instead: https://farfetched.pages.dev/adr/concurrency'
402+
'concurrency field in createJsonQuery is deprecated, please use concurrency operator instead: https://ff.effector.dev/adr/concurrency.html'
403403
);
404404

405405
op.__.meta.flags.concurrencyFieldUsed = true;
@@ -408,7 +408,7 @@ export function createJsonQuery(config: any) {
408408
setTimeout(() => {
409409
if (!op.__.meta.flags.concurrencyOperatorUsed) {
410410
console.error(
411-
'Please apply concurrency operator to the query, read more: https://farfetched.pages.dev/adr/concurrency'
411+
'Please apply concurrency operator to the query, read more: https://ff.effector.dev/adr/concurrency.html'
412412
);
413413

414414
concurrency(op, {

0 commit comments

Comments
 (0)