Skip to content

Releases: hypothesis/client

v1.1540.0

13 Nov 10:59
Compare
Choose a tag to compare
v1.1540.0 Pre-release
Pre-release
Add group type icons to groups menu

v1.1539.0

12 Nov 13:56
Compare
Choose a tag to compare
v1.1539.0 Pre-release
Pre-release
Adjust styles for new Lockicon

v1.1538.0

11 Nov 14:02
Compare
Choose a tag to compare
v1.1538.0 Pre-release
Pre-release
Make sure Selects are opening before querying options

v1.1537.0

06 Nov 17:00
Compare
Choose a tag to compare
v1.1537.0 Pre-release
Pre-release
Fix sidebar container initialization when "clean" theme is used

When the "clean" theme is used, the sidebar's toggle button is not created and
constructing the `DragHandler` failed because it was passed a `null` target.
Update the types in `ToolbarController.sidebarToggleButton` to reflect that the
value can be null and handle this in `Sidebar` by not initializing
`_dragResizeHandler` in this case.

v1.1536.0

06 Nov 14:21
Compare
Choose a tag to compare
v1.1536.0 Pre-release
Pre-release
Update browser baseline for boot script

The client's boot script supports older browsers than the rest of the client so
it can log a warning if it can't start in "somewhat" older browsers.

Update the boot script's supported officially browsers from ~2013 (IE 11) to
~2017 (Safari 11), although the code will probably still run in older browsers.
This allows dropping an async/await Babel plugin, although async is not actually
used in the current boot script.

v1.1535.0

06 Nov 09:48
Compare
Choose a tag to compare
v1.1535.0 Pre-release
Pre-release
Replace hammer.js with local code

Hammer.js is used to facilitate resizing the sidebar by dragging the sidebar
button. For this use case, we can avoid a dependency which is not actively
maintained, get more visibility into what the code is doing and make testing
easier by using a small amount of our own code.

In the process the tests for drag resizing in the sidebar were refactored to
avoid referencing private fields of `Sidebar` and mocking `getComputedStyle`.

The user-facing behavior should be unchanged.

v1.1534.0

05 Nov 09:33
Compare
Choose a tag to compare
v1.1534.0 Pre-release
Pre-release
Avoid export format descriptions cropping

v1.1533.0

04 Nov 14:20
Compare
Choose a tag to compare
v1.1533.0 Pre-release
Pre-release
Ignore "fake" window unload events in PortRPC

In VitalSource custom/synthetic "unload" events are dispatched at the book's
container frame when switching chapters. Make sure these don't trigger the code
in the `PortRPC` class that is meant to be called when the window is unloaded.

These synthetic events were triggered after every chapter navigation. In Safari
<= 15 the second and subsequent events would cause an error in the
`currentWindow.parent.postMessage` call because the port had already been
transferred after the first event was handled.

v1.1532.0

04 Nov 13:43
Compare
Choose a tag to compare
v1.1532.0 Pre-release
Pre-release
Bump the sentry group with 2 updates

Bumps the sentry group with 2 updates: [@sentry/browser](https://github.com/getsentry/sentry-javascript) and [@sentry/cli](https://github.com/getsentry/sentry-cli).


Updates `@sentry/browser` from 8.35.0 to 8.36.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-javascript/compare/8.35.0...8.36.0)

Updates `@sentry/cli` from 2.38.0 to 2.38.1
- [Release notes](https://github.com/getsentry/sentry-cli/releases)
- [Changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-cli/compare/2.38.0...2.38.1)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: sentry
- dependency-name: "@sentry/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: sentry
...

Signed-off-by: dependabot[bot] <[email protected]>

v1.1531.0

30 Oct 14:50
Compare
Choose a tag to compare
v1.1531.0 Pre-release
Pre-release
Show "Leave group" option for open and restricted groups that user is…