Skip to content

v1.8.6

Compare
Choose a tag to compare
@github-actions github-actions released this 11 May 07:25
· 34 commits to main since this release
  • πŸ†• After disconnection, the SDK will exponentially retry establishing connection, with a maximum interval not exceeding (1.5 ** 4 * 2000)ms, see HuolalaTech/page-spy#78;
  • πŸ†• The SDK instantiation adds a new parameter useSecret, with a default value of false. When set to true, the SDK will generate a 6-digit random password for the room. The debugging terminal needs to know the client password before entering the debugging room, see HuolalaTech/page-spy#78;
  • πŸ†• Support for dynamically updating the title / project parameters by using window.$pageSpy.updateRoomInfo({ title: 'xxx', project: 'xxx' }), see HuolalaTech/page-spy#78;
  • πŸ†• After dragging the floating ball rendered by the browser SDK to the top, bottom, left, or right side, it will automatically retract, see HuolalaTech/page-spy#80;
  • πŸ†• Support for get uploaded url, see HuolalaTech/page-spy#81:
    window.$harbor = new DataHarborPlugin()
    PageSpy.registerPlugin(window.$harbor)
    
    async function uploadLogManually() {
      const debugUrl = await window.$harbor.onOfflineLog('upload')
      console.log({ debugUrl })
    }
  • πŸ†• The page-spy-api no longer serializes data, resulting in a significant performance improvement;
  • πŸ› fix some problems, see: #172, HuolalaTech/page-spy#79;