Skip to content

Bump @devrev/ts-adaas from 1.15.2 to 1.16.0 in /code#72

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/code/devrev/ts-adaas-1.16.0
Open

Bump @devrev/ts-adaas from 1.15.2 to 1.16.0 in /code#72
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/code/devrev/ts-adaas-1.16.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 4, 2026

Bumps @devrev/ts-adaas from 1.15.2 to 1.16.0.

Release notes

Sourced from @​devrev/ts-adaas's releases.

v1.16.0

What's Changed

Full Changelog: devrev/adaas-sdk@v1.15.2...v1.16.0


Migration guide — Timeout handling (v1.16.0)

SDK now prevents task and onTimeout from running concurrently. Previously, when a timeout occurred, the SDK would execute onTimeout immediately while task was still running - meaning both could access state, repos, and emit events at the same time, leading to potential bugs. Now, onTimeout only runs after task has finished.

This means you must check adapter.isTimeout in your extraction loops and return from task when it's true.

Before (task and onTimeout ran concurrently)

processTask({
  task: async ({ adapter }) => {
    adapter.initializeRepos(repos);
    const projects = await httpClient.getProjects();
for (const project of projects) {
  const todos = await httpClient.getTodos(project.id);
  await adapter.getRepo('todos')?.push(todos);
for (const todo of todos) {
const comments = await httpClient.getComments(todo.id);
await adapter.getRepo('comments')?.push(comments);
}
}
await adapter.emit(ExtractorEventType.DataExtractionDone);

},
onTimeout: async ({ adapter }) => {
await adapter.emit(ExtractorEventType.DataExtractionProgress);
},
});

... (truncated)

Commits
  • 40ec101 chore: release v1.16.0
  • 4b207ba Revert minimatch override (#153)
  • 1873272 Fix minimatch vulnerability coming from @​microsoft/api-extractor (#152)
  • f71d7f8 chore: release v1.15.3-beta.5
  • d4631be Fix sending large messages to SQS queue (#86)
  • 18110e9 Fix attachment streaming errors and add observability for failed attachments ...
  • d97636b chore: release v1.15.3-beta.4
  • 33ac0d4 chore: release v1.15.3-beta.3
  • 39720c9 Remove npm tokens in release workflows for the sake of trusted publishing (#148)
  • 4a3d841 chore: release v1.15.3-beta.2
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​devrev/ts-adaas since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary

Dependabot: DevRev SDK update

*the issue number is there just to pass the CI check. it does not link to any existing issue.

Connected Issues

ISS-123456789123456789

Bumps [@devrev/ts-adaas](https://github.com/devrev/adaas-sdk) from 1.15.2 to 1.16.0.
- [Release notes](https://github.com/devrev/adaas-sdk/releases)
- [Commits](devrev/adaas-sdk@v1.15.2...v1.16.0)

---
updated-dependencies:
- dependency-name: "@devrev/ts-adaas"
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 4, 2026
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 4, 2026

Labels

The following labels could not be found: marketplace-submission. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants