Skip to content

Release v11.9.0

Compare
Choose a tag to compare
@InstabugCI InstabugCI released this 20 Feb 15:26
· 376 commits to master since this release
  • Bumps Instabug Android SDK to v11.9.0.
  • Bumps Instabug iOS SDK to v11.9.0.
  • Adds the new Instabug.init API to start the SDK as follows:
    Instabug.init({
      token: '<APP_TOKEN>',
      invocationEvents: [InvocationEvent.floatingButton],
      debugLogsLevel: LogLevel.verbose,
    });
  • Adds monorepo support for source maps automatic upload scripts.
  • Adds gradle and ruby files to integrate native SDKs within exiting native apps. See #919 for more info.
  • Deprecates all module-enums (e.g. Instabug.invocationEvent) in favour of standalone-enums (e.g. InvocationEvent). See #914 for more info and the detailed list of Enums.
  • Deprecates Instabug.start in favour of Instabug.init.
  • Deprecates Instabug.setDebugEnabled, Instabug.setSdkDebugLogsLevel, and APM.setLogLevel in favour of debugLogsLevel property of Instabug.init.
  • Deprecates Instabug.isRunningLive API.
  • Fixes external global error handlers not being called after initializing Instabug.
  • Fixes BugReporting.setDidSelectPromptOptionHandler on iOS.
  • Exports native Android SDK using api instead of implementation.