Skip to content

Commit 89309bc

Browse files
B4nanclaude
andauthored
fix: remove deprecation from RequestQueueV1 (apify#3341)
## Summary - Remove `@deprecated` JSDoc tag from `RequestQueueV1` class - This class remains a valid fallback for users encountering issues with the default `RequestQueue` (v2 with locking) - The deprecation notice was misleading as the class will continue to be supported ## Test plan - [x] Verified no other deprecation mentions exist for RequestQueueV1 in the codebase - [x] Documentation in `docs/experiments/request_locking.mdx` correctly describes RequestQueueV1 as a fallback option 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5f33f65 commit 89309bc

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

packages/core/src/storages/request_queue.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ const RECENTLY_HANDLED_CACHE_SIZE = 1000;
7272
* await queue.addRequest({ url: 'http://example.com/foo/bar' }, { forefront: true });
7373
* ```
7474
* @category Sources
75-
*
76-
* @deprecated RequestQueue v1 is deprecated and will be removed in the future. Please use {@apilink RequestQueue} instead.
7775
*/
7876
class RequestQueue extends RequestProvider {
7977
private queryQueueHeadPromise?: Promise<{

0 commit comments

Comments
 (0)