wuespace / telestion-rocketsound-psc

Telestion Project-Specific Client for the Rocketsound project. Public => Signed CLA required for contribution!
https://telestion.wuespace.de
MIT License
3 stars 1 forks source link

chore(deps): Bump @wuespace/telestion-client-core from 0.11.2 to 0.12.0 #110

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps @wuespace/telestion-client-core from 0.11.2 to 0.12.0.

Release notes

Sourced from @​wuespace/telestion-client-core's releases.

v0.12.0

0.12.0 (2021-04-08)

Please see the migration guide for v0.12 for an in-depth explanation of the changes in this release.

⚠ BREAKING CHANGES

  • event-bus: Numerous changes, please see https://github.com/TelestionTeam/telestion-client/wiki/v0.12-Migration-Guide
  • types: The error message is no longer addressable.
  • The minimum required node version for all packages is now Node v14!
  • mock-server: The listen function now requires an object as argument which contains the port and hostname as properties.
  • mock-server: The event bus and http server instance properties are now marked private. Please use the provided abstractions and hooks instead. (see onInit, send, handle, register, etc.)
  • common: The loading indicator gives the children function the current dependencies which are always defined:
const [position, setPosition] = useState<Position>();
const [height, setHeight] = useState<number>();

return ( <LoadingIndicator dependencies={[position, height]}> {(currentPos, currentHeight) => ( <p>{currentPos} - {currentHeight}</p> )} </LoadingIndicator> );

  • common: The useDependencyTimeout now returns true if all dependencies are defined and false if not all dependencies are defined yet. Before the return value was inverted. The type guard makes the hook useful as a condition in if-statements, for example:
const [position, setPosition] = useState<Position>();

// throws if no position received after 5 seconds if (useDependencyTimeout(5000, [position])) { // type guarded - "position" is always defined return <p>Latest position: {position}</p>; }

return <p>Waiting for incoming data</p>;

  • deps: Moving forward, testing is done with React Spectrum v3.9. Consider all previous versions unsupported.
  • deps: <ActionButton>s for header actions now require a isQuiet={true} attribute to work properly with React Spectrum 3.9

Features

  • common: Enhance loading indicator component (#350) (82d07f1)
  • event-bus: Implement basic event bus as first part of the refactoring process (d8ccc73)
  • event-bus: Rewrite Vert.x Event Bus (8d83dec)
  • mock-server: Add close function (3e0b5a8)
  • mock-server: Add logger option to constructor and clean up some internals (cefceae)
  • mock-server: First full implementation (7461df5)
  • types: The error message now extends from base message (a8f17dd)

... (truncated)

Changelog

Sourced from @​wuespace/telestion-client-core's changelog.

0.12.0 (2021-04-08)

⚠ BREAKING CHANGES

  • The minimum required node version for all packages is now Node v14!

Features

  • Specify minimum node version in all packages and update workflows to use npm v7 as default (b727223)

Bug Fixes

  • core: Fix breaking changes (b6551c3)
Commits
  • 1da5c5d chore(release): v0.12.0
  • b6551c3 fix(core): Fix breaking changes
  • b727223 feat!: Specify minimum node version in all packages and update workflows to u...
  • 4422865 refactor(core): Shorten imports
  • See full diff in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 3 years ago

Superseded by #114.