From 5130011393b5edb3af86c226f090655db127db94 Mon Sep 17 00:00:00 2001 From: norareidy <nora.reidy@mongodb.com> Date: Fri, 30 Aug 2024 13:34:01 -0400 Subject: [PATCH 1/4] DOCSP-43172: Remove DatabaseTokenRepository class --- docs/upgrade.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/upgrade.txt b/docs/upgrade.txt index 5d8ca09a3..731d001ca 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -61,6 +61,17 @@ version releases that introduced them. When upgrading library versions, address all the breaking changes between your current version and the planned upgrade version. +.. _laravel-breaking-changes-v5.x: + +Version 5.x Breaking Changes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This library version introduces the following breaking changes: + +- Removes support for the ``Auth\DatabaseTokenRepository`` class. Instead, + use the ``Illuminate\Queue\Failed\DatabaseFailedJobProvider`` class and + specify a connection to MongoDB. + .. _laravel-breaking-changes-v4.x: Version 4.x Breaking Changes From f95ecc31b845bb0fc8d15c8f8293013e1076c9db Mon Sep 17 00:00:00 2001 From: norareidy <nora.reidy@mongodb.com> Date: Tue, 3 Sep 2024 16:10:03 -0400 Subject: [PATCH 2/4] JT feedback --- docs/upgrade.txt | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/upgrade.txt b/docs/upgrade.txt index 731d001ca..2b899a032 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -68,9 +68,15 @@ Version 5.x Breaking Changes This library version introduces the following breaking changes: -- Removes support for the ``Auth\DatabaseTokenRepository`` class. Instead, - use the ``Illuminate\Queue\Failed\DatabaseFailedJobProvider`` class and - specify a connection to MongoDB. +- Removes support for the following classes: + + - ``Auth\DatabaseTokenRepository``. Instead, use the + ``Illuminate\Queue\Failed\DatabaseFailedJobProvider`` class and + specify a connection to MongoDB. + + - ``MongoDB\Laravel\Queue\Failed\MongoFailedJobProvider``. Instead, + use the default ``Illuminate\Queue\Failed\DatabaseFailedJobProvider`` + class and specify a connection to MongoDB. .. _laravel-breaking-changes-v4.x: From fb1744f2bdcdb4d3158dc1519404b4f23a00e1e0 Mon Sep 17 00:00:00 2001 From: norareidy <nora.reidy@mongodb.com> Date: Tue, 3 Sep 2024 16:11:26 -0400 Subject: [PATCH 3/4] edit --- docs/upgrade.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrade.txt b/docs/upgrade.txt index 2b899a032..89642861c 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -70,7 +70,7 @@ This library version introduces the following breaking changes: - Removes support for the following classes: - - ``Auth\DatabaseTokenRepository``. Instead, use the + - ``Auth\DatabaseTokenRepository``. Instead, use the default ``Illuminate\Queue\Failed\DatabaseFailedJobProvider`` class and specify a connection to MongoDB. From 0af9fb369ca4dcf16d2f53b1e626d4a7b353b9c7 Mon Sep 17 00:00:00 2001 From: norareidy <nora.reidy@mongodb.com> Date: Wed, 4 Sep 2024 11:06:40 -0400 Subject: [PATCH 4/4] JT feedback 2 --- docs/upgrade.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrade.txt b/docs/upgrade.txt index 89642861c..507694ded 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -70,7 +70,7 @@ This library version introduces the following breaking changes: - Removes support for the following classes: - - ``Auth\DatabaseTokenRepository``. Instead, use the default + - ``MongoDB\Laravel\Auth\DatabaseTokenRepository``. Instead, use the default ``Illuminate\Queue\Failed\DatabaseFailedJobProvider`` class and specify a connection to MongoDB.