diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md
index c03a0ab9219b8c9b94947af47d339148cd6531a8..6f961960e7513f4c72c096acbe93e6ad3d1939d7 100644
--- a/docs/usage/configuration-options.md
+++ b/docs/usage/configuration-options.md
@@ -2122,7 +2122,9 @@ To restrict `aws-sdk` to only monthly updates, you could add this package rule:
 }
 ```
 
-Technical details: We mostly rely on the text parsing of the library [later](https://bunkat.github.io/later/parsers.html#text) but only its concepts of "days", "time_before", and "time_after" (Renovate does not support scheduled minutes or "at an exact time" granularity).
+Technical details: We mostly rely on the text parsing of the library [@breejs/later](https://github.com/breejs/later) but only its concepts of "days", "time_before", and "time_after".
+Read the parser documentation at [breejs.github.io/later/parsers.html#text](https://breejs.github.io/later/parsers.html#text).
+Renovate does not support scheduled minutes or "at an exact time" granularity.
 
 ## semanticCommitScope
 
diff --git a/docs/usage/faq.md b/docs/usage/faq.md
index 6a2d16037f0f78392b40c75f8fb8169bfa043547..350a28fc623557cf97cf7b188be7139fe796faa8 100644
--- a/docs/usage/faq.md
+++ b/docs/usage/faq.md
@@ -72,8 +72,10 @@ You can set a specific time zone in your local config file as well:
 The timezone must be a valid [IANA time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
 
 With the timezone set, you can define days of week or hours of the day in which Renovate will make changes.
-Renovate uses the [later](https://bunkat.github.io/later/parsers.html#text) library to parse the text.
-The _later_ library also handles the concepts of "days", time_before", and "time_after".
+Renovate uses the [@breejs/later](https://github.com/breejs/later) library to parse the text.
+Read the parser documentation at [breejs.github.io/later/parsers.html#text](https://breejs.github.io/later/parsers.html#text).
+The _@breejs/later_ library also handles the concepts of "days", time_before", and "time_after".
+Renovate does not support scheduled minutes or "at an exact time" granularity.
 
 Examples of the kind of schedules you can create:
 
diff --git a/docs/usage/noise-reduction.md b/docs/usage/noise-reduction.md
index 06c8d8855c2ec0a1d486d837d1d1fc709ed35f7d..c275d1158fcea27a4ccc9be055fd5cab13044428 100644
--- a/docs/usage/noise-reduction.md
+++ b/docs/usage/noise-reduction.md
@@ -98,8 +98,9 @@ Or perhaps at least weekly:
   ]
 ```
 
-If you're wondering what is supported and not, under the hood, the schedule is parsed using [later.js](https://bunkat.github.io/later/) using the `later.parse.text(scheduleString)` API.
-[This page](https://bunkat.github.io/later/parsers.html#text) explains the supported syntax or you can experiment on the [RunKit playground](https://npm.runkit.com/later).
+If you're wondering what is supported and not, under the hood, the schedule is parsed using [@breejs/later](https://github.com/breejs/later) using the `later.parse.text(scheduleString)` API.
+Read the parser documentation at [breejs.github.io/later/parsers.html#text](https://breejs.github.io/later/parsers.html#text).
+Renovate does not support scheduled minutes or "at an exact time" granularity.
 
 ## Automerging