Skip to content

chore(deps-dev): bump @dakera-ai/dakera from 0.11.54 to 0.11.96#41

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dakera-ai/dakera-0.11.96
Closed

chore(deps-dev): bump @dakera-ai/dakera from 0.11.54 to 0.11.96#41
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dakera-ai/dakera-0.11.96

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 17, 2026

Copy link
Copy Markdown

Bumps @dakera-ai/dakera from 0.11.54 to 0.11.96.

Release notes

Sourced from @​dakera-ai/dakera's releases.

v0.11.96

What's Changed

Full Changelog: Dakera-AI/dakera-js@v0.11.95...v0.11.96

Release v0.11.95

What's Changed

Fixed

  • TealTiger subpath exportimport { DakeraCostStorage } from '@dakera-ai/dakera/integrations/tealtiger' now resolves correctly. Added ./integrations/tealtiger to package.json exports and updated the build script to bundle src/integrations/tealtiger.ts as a separate entry point, producing dist/integrations/tealtiger.{js,mjs,d.ts}. (DAK-6819, #170)

Full Changelog: Dakera-AI/dakera-js@v0.11.94...v0.11.95

v0.11.94

What's New

TealTiger Governance Middleware Integration

  • Added DakeraCostStorage implementing the full CostStorage interface for TealTiger's governance middleware
  • New integration module at src/integrations/tealtiger.ts
  • Enables persistent governance state storage (cost tracking, policy enforcement, audit trails) backed by Dakera's memory layer
  • Full test coverage and usage example included

Details

v0.11.93

What's Changed

Added

  • adminReembedStaticCount() — new DakeraClient method for GET /v1/admin/reembed/static-count (DAK-6781, #166). Returns a StaticCountResponse with static_count — count of static vectors pending ONNX upgrade.

  • Playground quickstartexamples/playground/quickstart.ts demonstrates store, recall, search, and knowledge-graph link against the public sandbox. (DAK-6737, #161)

Fixed

  • Admin URL correctionsadminIndexStats(), rebuildIndexes(), and restoreBackup() used incorrect URL patterns causing 404s. (DAK-6775, #165)

  • Playground HTTPS endpoint — quickstart now uses https://5-75-177-31.sslip.io (valid TLS) instead of bare HTTP IP. (DAK-6743, #162)

  • Sandbox KG-link restriction — knowledge-graph link step now handles 403 from the sandbox gracefully instead of throwing. (DAK-6749, #163)

Testing

... (truncated)

Changelog

Sourced from @​dakera-ai/dakera's changelog.

[0.11.96] - 2026-06-16

Added

  • ChatMemorySession — new convenience helper class for the LLM chat comparison pattern used by the playground (DAK-6846, #172). Wraps startSession / storeMemory / recall / endSession into a clean async API:

    import { DakeraClient, ChatMemorySession } from '@dakera-ai/dakera';
    const client = new DakeraClient({ baseUrl: url, apiKey: key });
    const session = await ChatMemorySession.create(client, 'my-agent');
    try {
    await session.store('user', 'My name is Alice.');
    const context = await session.recall('who am I', { topK: 5 });
    // pass context to your LLM — or omit for the baseline arm
    } finally {
    await session.close();
    }

    Key methods: ChatMemorySession.create(), .store(), .recall(), .close(). Properties: .sessionId, .agentId. Also exported: StoreOptions, RecallOptions interfaces.

  • Playground chat comparison exampleexamples/playground/chat_comparison.ts shows the full side-by-side pattern: seed turns, open a comparison session, recall context, call an LLM with and without memory, and display a diff.

[0.11.95] - 2026-06-16

Fixed

  • TealTiger subpath exportimport { DakeraCostStorage } from '@dakera-ai/dakera/integrations/tealtiger' now resolves correctly. Added ./integrations/tealtiger to package.json exports and updated the build script to bundle src/integrations/tealtiger.ts as a separate entry point, producing dist/integrations/tealtiger.{js,mjs,d.ts}. (DAK-6819, #170)

[0.11.94] - 2026-06-16

Added

  • TealTiger governance middleware — new @dakera-ai/dakera/integrations/tealtiger subpath exports three adapter classes for the TealTiger

... (truncated)

Commits
  • 4448e31 feat(session): add ChatMemorySession helper for playground LLM comparison (DA...
  • 1719fce docs(DAK-6840): add missing CHANGELOG entry for v0.11.94 (TealTiger)
  • 485834d fix(exports): add ./integrations/tealtiger subpath export (DAK-6819) (#170)
  • 4b1702c fix(examples): add X-Playground-Session header to playground quickstart (DAK-...
  • 6e4af78 chore(release): bump version to v0.11.94
  • b4933c4 feat: TealTiger governance middleware integration (DAK-6701)
  • 0ff38e2 chore(release): bump version to 0.11.93 (DAK-6792)
  • 30c7597 feat(admin): add adminReembedStaticCount() — GET /v1/admin/reembed/static-cou...
  • eed9205 fix(admin): correct adminIndexStats, rebuildIndexes, and restoreBackup URLs (...
  • ceea63d test(integration): add playground scenario integration tests (DAK-6752) (#164)
  • Additional commits viewable in compare view

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)

Bumps [@dakera-ai/dakera](https://github.com/dakera-ai/dakera-js) from 0.11.54 to 0.11.96.
- [Release notes](https://github.com/dakera-ai/dakera-js/releases)
- [Changelog](https://github.com/Dakera-AI/dakera-js/blob/main/CHANGELOG.md)
- [Commits](Dakera-AI/dakera-js@v0.11.54...v0.11.96)

---
updated-dependencies:
- dependency-name: "@dakera-ai/dakera"
  dependency-version: 0.11.96
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 17, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 24, 2026

Copy link
Copy Markdown
Author

Superseded by #45.

@dependabot dependabot Bot closed this Jun 24, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/dakera-ai/dakera-0.11.96 branch June 24, 2026 16:14
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants