Skip to content

v0.8.0

Choose a tag to compare

@Almouro Almouro released this 28 Jun 10:24
· 220 commits to main since this release

0.8.0 (2023-06-28)

This PR introduces the new flashlight measure command

flashlight.measure.mp4

Breaking changes

If you're using measurePerformance to measure performance programmatically, the typing has changed for the options:
Signature is now:

const measurePerformance = async (
  bundleId: string,
  testCase: TestCase,
  options?: PerformanceTesterOptions
)

export interface PerformanceTesterOptions {
  iterationCount: number;
  maxRetries: number;
  recordOptions: {
    record: boolean;
    size?: string;
    bitRate?: number;
  };
  resultsFileOptions: {
    path: string;
    title: string;
  };
}

Features

  • measure: measure in webapp without need for flipper (#121) (6f68b55)
  • report add danger and safe zone to charts (#111) (da0d803)
  • aws: ensure report gets deployed even for failed tests (#126) (53ebba8)

Bug Fixes

  • measure: ensure we have only one socket connection between web and cli (#130) (4b59cd1)
  • report fix dropdown menu color (#115) (fd45757)