FullScreenShenanigans / TouchPassr

Adds touch controls on top of InputWritr.
MIT License
1 stars 0 forks source link

An in-range update of tsutils is breaking the build 🚨 #61

Open greenkeeper[bot] opened 5 years ago

greenkeeper[bot] commented 5 years ago

The devDependency tsutils was updated from 3.9.0 to 3.9.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tsutils is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details - ❌ **continuous-integration/travis-ci/push:** The Travis CI build failed ([Details](https://travis-ci.org/FullScreenShenanigans/TouchPassr/builds/505522566?utm_source=github_status&utm_medium=notification)).

Release Notes for v3.9.1

Bugfixes:

  • reverted invalid deprecation of canHaveJsdoc
  • fixed condition in parseJsdocOfNode
Commits

The new version differs by 1 commits.

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 5 years ago

After pinning to 3.9.0 your tests are passing again. Downgrade this dependency πŸ“Œ.

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.10.0

Features:

  • isCompilerOptionEnabled: incremental is implicitly enabled by composite

Bugfixes:

  • collectVariableUsage/getUsageDomain: no longer treat as const as type usage
Commits

The new version differs by 8 commits.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.11.0

Features:

  • typeguards: isNumericOrStringLikeLiteral, isTupleTypeReference
  • intersectionTypeParts as counterpart to unionTypeParts
  • someTypePart to execute a callback for each union or intersection constituent until the callback returns true
  • getPropertyOfType looks up a property by its escaped name
  • isPropertyReadonlyInType determines whether a property in a given type cannot be written to
  • symbolHasReadonlyDeclaration determines if a Symbol has any readonly or constant declaration
  • isNumericPropertyName determines whether a property name would match an index signature
  • isBindableObjectDefinePropertyCall returns true for statically analyzable forms of Object.defineProperty(o, 'p', {value, writable})
  • isReadonlyAssignmentDeclaration determines whether an Object.defineProperty call is known to result in a readonly property
  • getLateBoundPropertyNames returns all known property names of an expression
  • getPropertyNameFromType extracts the property name of literal types
  • isWellKnownSymbolLiterally to recognize expressions in the form of Symbol.<name>
  • getPropertyNameOfWellKnownSymbol returns the escaped name for a well known symbol literal
  • unwrapParentheses returns the first child expression that is not a ParenthesizedExpression
Commits

The new version differs by 20 commits.

There are 20 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.12.0

Features:

  • getLateBoundPropertyNamesOfPropertyName returns all statically analyzable names of a property, method, ...
  • getSingleLateBoundPropertyNameOfPropertyName returns the literal name of a property, method, ... if statically analyzable

Bugfixes:

  • fixed circular import
Commits

The new version differs by 15 commits.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.13.0

Features:

  • getAccessKind determines whether an expression is read from, written to or both
  • optimized getPropertyOfType for unambiguous property names to partially work around microsoft/TypeScript#31565

Bugfixes:

  • isReassignmentTarget no longer returns true for DeleteExpression as it doesn't assign a value to the operand
Commits

The new version differs by 19 commits.

There are 19 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.14.0

Features:

  • added getInstanceTypeOfClassLikeDeclaration and getConstructorTypeOfClassLikeDeclaration
  • added AccessKind.Delete to getAccessKind: getAccessKind(node) & AccessKind.Modification can now be used to restore the old behavior of isReassignmentTarget(node)
Commits

The new version differs by 22 commits.

  • eae53d0 v3.14.0
  • 959a0b3 add AccessKind.Delete
  • 68e18f7 get{Constructor,Instance}TypeOfClassLikeDeclaration
  • 16ed984 3.13.0
  • d0ca733 remove DeleteExpresson from isReassignmentTarget
  • be93147 add getAccessKind utility
  • d9fa6d7 optimize getPropertyOfType for unambiguous names
  • 1151630 v3.12.0
  • 5bd211f add utilities to get late bound names from property name
  • 0167ec8 fix circular import
  • bdd34de v3.11.0
  • e263f86 add utilities to detect readonly-ness of symbols (#102)
  • 4526bcd add isBooleanLiteralType utility
  • 49d0d31 allow typescript@3.5 nightly builds
  • e4020d5 v3.10.0

There are 22 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.14.1

Bugfixes:

  • findImports: fixed crash on nested namespaces
Commits

The new version differs by 24 commits.

  • 5ee2bd9 v3.14.1
  • 1a472b7 findImports: fix crash on nested namespaces
  • eae53d0 v3.14.0
  • 959a0b3 add AccessKind.Delete
  • 68e18f7 get{Constructor,Instance}TypeOfClassLikeDeclaration
  • 16ed984 3.13.0
  • d0ca733 remove DeleteExpresson from isReassignmentTarget
  • be93147 add getAccessKind utility
  • d9fa6d7 optimize getPropertyOfType for unambiguous names
  • 1151630 v3.12.0
  • 5bd211f add utilities to get late bound names from property name
  • 0167ec8 fix circular import
  • bdd34de v3.11.0
  • e263f86 add utilities to detect readonly-ness of symbols (#102)
  • 4526bcd add isBooleanLiteralType utility

There are 24 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.15.0

Features:

  • isValidIdentifier, isValidPropertyName, isValidPropertyAccess, isValidNumericLiteral added an optional parameter to specify the target ECMAScript version

Bugfixes:

  • isValidPropertyName, isValidPropertyAccess now handle astral plane characters
Commits

The new version differs by 26 commits.

There are 26 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.16.0

Features:

  • added getIteratorYieldResultFromIteratorResult to extract the yielded type from IteratorResult<TYield, TReturn, TNext>
Commits

The new version differs by 28 commits.

  • 9f88a36 v3.16.0
  • ffc3c3e add getIteratorYieldResultFromIteratorResult
  • 10f2a2b v3.15.0
  • b066f4b handle astral plane characters
  • 5ee2bd9 v3.14.1
  • 1a472b7 findImports: fix crash on nested namespaces
  • eae53d0 v3.14.0
  • 959a0b3 add AccessKind.Delete
  • 68e18f7 get{Constructor,Instance}TypeOfClassLikeDeclaration
  • 16ed984 3.13.0
  • d0ca733 remove DeleteExpresson from isReassignmentTarget
  • be93147 add getAccessKind utility
  • d9fa6d7 optimize getPropertyOfType for unambiguous names
  • 1151630 v3.12.0
  • 5bd211f add utilities to get late bound names from property name

There are 28 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v3.17.1

Bugfixes:

  • isValidJsxIdentifier, isValidPropertyAccess, isValidPropertyName: fix unicode character width handling
Commits

The new version differs by 32 commits.

There are 32 commits in total.

See the full diff