Skip to content

v4.0.0

Compare
Choose a tag to compare
@fraxken fraxken released this 30 Jun 21:50
· 25 commits to main since this release

What's Changed

  • chore: use dependabot groups by @fraxken in #136
  • chore(deps-dev): bump the development-dependencies group with 4 updates by @dependabot in #144
  • chore(deps): bump the github-actions group with 2 updates by @dependabot in #142
  • feat: implement User-Agent header by @fraxken in #145
  • chore: update @myunisoft/httpie (3.0.3 to 4.0.1) by @fraxken in #146
  • chore(deps-dev): bump the development-dependencies group across 1 directory with 6 updates by @dependabot in #159
  • chore(deps): bump the github-actions group across 1 directory with 5 updates by @dependabot in #156
  • chore: update @myunisoft/httpie (4.0.1 to 5.0.0) by @fraxken in #163
  • docs: add reverse-proxy requirement by @fraxken in #164
  • feat: add queryRangeMatrix & add missing Unix timestamp by @fraxken in #167

🚨 Breaking changes

QueryRangeStream now return the Unix timestamp + the log

interface QueryRangeStreamResponse<T extends LokiPatternType> {
  logs: LokiStreamResult<LokiLiteralPattern<T>>[];
  timerange: TimeRange | null;
}

interface LokiStreamResult<T> {
  stream: Record<string, string>;
  values: [unixEpoch: number, value: T][];
}

We also upgraded httpie to the latest V5 (which include a recent version of undici).

Full Changelog: v3.0.1...v4.0.0