Skip to content

Releases: HugoRCD/evlog

evlog@2.3.0

06 Mar 08:50
5931999

Choose a tag to compare

What's Changed

Features 🚀

Documentation 📚

  • docs: make landing nuxt-studio compatible by @HugoRCD in #131

Dependency Updates 📦

  • chore(deps): update dependency happy-dom to ^20.7.2 by @renovate[bot] in #129
  • chore(deps): update dependency evlog to ^2.1.0 by @renovate[bot] in #130

Full Changelog: https://github.com/HugoRCD/evlog/compare/evlog@2.1.0...evlog@2.3.0

evlog@2.1.0

02 Mar 23:04
6fd5b61

Choose a tag to compare

What's Changed

Features 🚀

  • feat: add context-agnostic createLogger function by @HugoRCD in #124
  • feat: add console option for client-side log suppression by @HugoRCD in #126

Bug Fixes 🐞

  • fix(evlog): explicitly bundle evlog in nitro by @schplitt in #123

Build System 🛠

  • build(evlog): explicitly bundle 'ufo' via inlineOnly in nitro by @schplitt in #121

Dependency Updates 📦

  • chore(deps): update all non-major dependencies by @renovate[bot] in #116
  • chore(deps): update all non-major dependencies by @renovate[bot] in #118
  • chore(deps): update dependency motion-v to v2 by @renovate[bot] in #117
  • chore(deps): lock file maintenance by @renovate[bot] in #119
  • chore(deps): update dependency @ai-sdk/vue to ^3.0.107 by @renovate[bot] in #125
  • chore(deps): update dependency ai to ^6.0.107 by @renovate[bot] in #127

Full Changelog: https://github.com/HugoRCD/evlog/compare/@evlog/nuxthub@2.0.0...evlog@2.1.0

evlog@2.0.0

26 Feb 17:41

Choose a tag to compare

What's Changed

⚠️ Breaking Change: PostHog adapter now uses PostHog Logs (OTLP) by default

This only affects you if you use evlog/posthog. For all other adapters, this release is fully backward-compatible.

createPostHogDrain() now sends logs to PostHog Logs via OTLP instead of sending custom events via the /batch/ API. This is significantly cheaper and provides a dedicated log viewer in PostHog.

If you were using createPostHogDrain():

  • Your logs will now appear in PostHog Logs instead of Events
  • The eventName and distinctId options are no longer available on createPostHogDrain()
  • If you need the old custom events behavior, switch to createPostHogEventsDrain() from evlog/posthog

If you were using createPostHogLogsDrain():

  • This function has been removed — createPostHogDrain() now does the same thing

Migration:

- import { createPostHogDrain } from 'evlog/posthog'
+ import { createPostHogEventsDrain } from 'evlog/posthog'
- createPostHogDrain({ eventName: 'server_request', distinctId: 'my-service' })
+ createPostHogEventsDrain({ eventName: 'server_request', distinctId: 'my-service' })

Features 🚀

Bug Fixes 🐞

Dependency Updates 📦

  • chore(deps): update dependency next to v16 by @renovate[bot] in #104
  • chore(deps): update dependency zod to v4 by @renovate[bot] in #106
  • chore(deps): update dependency react to v19 by @renovate[bot] in #105
  • chore(deps): update all non-major dependencies by @renovate[bot] in #103
  • chore(deps): update all non-major dependencies by @renovate[bot] in #107

New Contributors

Full Changelog: https://github.com/HugoRCD/evlog/compare/evlog@1.11.0...evlog@2.0.0

@evlog/nuxthub@2.0.0

26 Feb 17:41

Choose a tag to compare

What's Changed

Features 🚀

Bug Fixes 🐞

Dependency Updates 📦

  • chore(deps): update dependency next to v16 by @renovate[bot] in #104
  • chore(deps): update dependency zod to v4 by @renovate[bot] in #106
  • chore(deps): update dependency react to v19 by @renovate[bot] in #105
  • chore(deps): update all non-major dependencies by @renovate[bot] in #103
  • chore(deps): update all non-major dependencies by @renovate[bot] in #107

New Contributors

Full Changelog: https://github.com/HugoRCD/evlog/compare/evlog@1.11.0...@evlog/nuxthub@2.0.0

evlog@1.11.0

21 Feb 16:40
c8647b3

Choose a tag to compare

What's Changed

Features 🚀

Bug Fixes 🐞

  • fix: await drain when waitUntil is unavailable by @HugoRCD in #100

Dependency Updates 📦

  • chore(deps): lock file maintenance by @renovate[bot] in #91

Full Changelog: https://github.com/HugoRCD/evlog/compare/@evlog/nuxthub@1.1.0...evlog@1.11.0

evlog@1.10.0

19 Feb 16:51
ec37e5d

Choose a tag to compare

What's Changed

Features 🚀

  • feat(evlog): add first-class support for next.js by @HugoRCD in #97

Bug Fixes 🐞

  • fix(nuxthub): add retry with backoff to drain insert by @HugoRCD in #95

Documentation 📚

Dependency Updates 📦

  • chore(deps): update all non-major dependencies by @renovate[bot] in #90

New Contributors

Full Changelog: https://github.com/HugoRCD/evlog/compare/@evlog/nuxthub@1.0.0...evlog@1.10.0

@evlog/nuxthub@1.1.0

19 Feb 16:51
ec37e5d

Choose a tag to compare

What's Changed

Features 🚀

  • feat(evlog): add first-class support for next.js by @HugoRCD in #97

Bug Fixes 🐞

  • fix(nuxthub): add retry with backoff to drain insert by @HugoRCD in #95

Documentation 📚

Dependency Updates 📦

  • chore(deps): update all non-major dependencies by @renovate[bot] in #90

New Contributors

Full Changelog: https://github.com/HugoRCD/evlog/compare/@evlog/nuxthub@1.0.0...@evlog/nuxthub@1.1.0

evlog@v1.8.0

15 Feb 10:41
81b8bf2

Choose a tag to compare

What's Changed

Features 🚀

  • feat: add support for nitro v3 by @schplitt and @HugoRCD in #8
  • feat: add PostHog Logs drain via OTLP by @HugoRCD in #79
  • feat: add enabled?: boolean config option to disable logger by @Pastequee in #69
  • feat: add request-scoped info() and warn() methods to logger by @HugoRCD in #70
  • feat: add standalone browser-to-server log transport by @HugoRCD in #77
  • feat: add client identity tracking and PostHog userId mapping by @HugoRCD in #78

Bug Fixes 🐞

  • fix: capture status/statusText from H3 v2+ errors by @HugoRCD in #80

Refactoring 🛠

  • refactor: extract shared utilities to reduce duplication by @HugoRCD in #85

Dependency Updates 📦

  • chore(deps): update dependency @nuxt/test-utils to v4 by @renovate[bot] in #59

New Contributors

  • @Pastequee made their first contribution in #69
  • @Copilot made their first contribution in #83
  • @schplitt made their first contribution in #8

Full Changelog: v1.7.0...v1.8.0

evlog@1.9.0

15 Feb 16:14

Choose a tag to compare

What's Changed

Features 🚀

Refactoring 🛠

  • refactor: replace scroll layout with sidebar navigation by @HugoRCD in #87

New Contributors

  • @github-actions[bot] made their first contribution in #89

Full Changelog: https://github.com/HugoRCD/evlog/compare/v1.8.0...evlog@1.9.0

@evlog/nuxthub@1.0.0

15 Feb 16:14

Choose a tag to compare

What's Changed

Features 🚀

Refactoring 🛠

  • refactor: replace scroll layout with sidebar navigation by @HugoRCD in #87

New Contributors

  • @github-actions[bot] made their first contribution in #89

Full Changelog: https://github.com/HugoRCD/evlog/compare/v1.8.0...@evlog/nuxthub@1.0.0