Skip to content

chore(deps): update dependency flow-bin to v0.331.0 - #291

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/flow-bin-0.x
Open

chore(deps): update dependency flow-bin to v0.331.0#291
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/flow-bin-0.x

Conversation

@renovate

@renovate renovate Bot commented Jun 22, 2018

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
flow-bin (changelog) 0.74.00.331.0 age confidence

Release Notes

facebook/flow (flow-bin)

v0.331.0

Compare Source

Likely to cause new Flow errors:

  • Fixed unsound subtyping of instances against indexer in interfaces (example).
  • Flow will no longer emit method-unbinding errors and instead perform stricter this-type checking (example).

IDE:

  • Improve the primary type displayed by hover
  • Show a single type in type-at-pos and hover
  • Truncate oversized hover types and their reference lists

Library Definitions:

  • React.ReactElement now matches latest type in @types/react. Added missing React.JSX.Element that makes the type in @types/react .

v0.330.0

Compare Source

Likely to cause new Flow errors:

  • Flow will now restrict the allowed syntax forms of .call/apply/bind calls. Only expressions of the form <expr>.m.call(<expr>, ...), <expr>.m.apply(<expr>, ...) and <expr>.m.bind(<expr>, ...) are allowed.
  • [untyped] section of flowconfig will use the glob system. See https://flow.org/en/docs/config/untyped/

Notable bug fixes:

  • Fixed #​9407.
  • Support instanceof refinement of constructor objects.
  • Operations like Partial no longer strip readonly-ness of dictionaries. (example)

v0.329.0

Compare Source

Likely to cause new Flow errors:

  • More subtyping errors will print the types that are incompatible. Some errors might have new locations.
  • A unique symbol annotation is now an error unless it is the type of a const variable, of a readonly object type or interface property, or of a static readonly class field.
  • Flow will error on legacy variance syntax in library definition files

New Features:

  • We have released flow-parser and flow-eslint packages that are drop-in replacement for hermes-parser and hermes-eslint. Babel docs and ESLint docs have been updated.
  • Object properties, class fields, methods, and the members of an interface or declare class imported from another module, can be keyed by a unique symbol.

Notable bug fixes:

  • Prevent a race that can leave server hanging
  • Support TypeScript constructor objects in Flow class positions.
  • keyof over a symbol index signature is now symbol rather than string.
  • A class can extend a value with a construct signature.
  • x !== undefined no longer stops refining after a call that passes undefined as an argument: (e.g. try-Flow)

Library Definitions:

  • Well-known symbols on Symbol are typed as unique symbol, and Symbol.metadata is now available.

v0.328.0

Compare Source

Breaking changes:

New Features:

  • this type guards can now be used on non-static methods of regular classes, not just declare class and interface methods. The method body is checked for consistency against the guard type.

Notable bug fixes:

  • Prevent cached IDE results from blocking rechecks.

Library Definitions:

  • Allow symbols to be used as WeakMap keys

v0.327.0

Compare Source

New Features:

  • In an object type, a bracketed key written as a string or number literal, or as the name of a value, is now a computed key naming a single property rather than an index signature, so several such keys can coexist. A key written as a type-only name is unchanged, and the labeled form [label: K] keeps index-signature semantics. Breaking: a key headed by a value binding is read as a computed key. Thus a class or enum key such as {[C]: V} is now an error, and a qualified type exposed through a class/namespace merge, as in {[C.K]: V}, must use the labeled form {[key: C.K]: V} to remain an index signature.
  • In an interface or a declare class body, a bracketed key written as a string or number literal, or as the name of a value, is now a computed key naming a single property rather than an index signature, so several such keys can coexist, and static puts the property on the static side. A key written as a type-only name is unchanged, and the labeled form [label: K] keeps index-signature semantics. Breaking: a key headed by a value binding is read as a computed key, so a class or enum key such as interface I {[C]: V} is now an error and must use [key: C] to remain an index signature.
  • A computed method key [expr](): T that resolves to a single literal string or safe-integer number is now accepted in interface, declare class, and object type bodies (previously a parse error outside .d.ts files) and reads as a named method.
  • A bracketed access on an array with a string-literal key (for example arr['map'] or arr[Symbol.iterator]) now reads the corresponding named member instead of erroring that the key is not an array index, and a string key holding a safe integer (arr['0']) indexes the array like the equivalent numeric key.

Notable bug fixes:

  • keyof any now evaluates to any as expected. Spurious errors related to the bug will no longer fire.
  • Fix a server crash ("thread 'flow-tokio-runtime' has overflowed its stack") when rechecking a file with an attached LSP client

Parser:

  • Parse component and hook type annotations as the declaration of declare export default

Library Definitions:

  • Add ES2026 Map methods

v0.326.0

Compare Source

Breaking changes:

  • The following flags are removed since they no longer change anything
    • experimental.channel_mode
    • experimental.channel_mode.windows
    • experimental.long_lived_workers
    • experimental.long_lived_workers.windows
    • gc.worker.custom_major_ratio
    • gc.worker.custom_minor_max_size
    • gc.worker.custom_minor_ratio
    • gc.worker.major_heap_increment
    • gc.worker.minor_heap_size
    • gc.worker.space_overhead
    • gc.worker.window_size
    • sharedmemory.hash_table_pow
    • sharedmemory.heap_size

Likely to cause new Flow errors:

  • General subtyping errors will print the types that are incompatible. Some errors might have new locations.

v0.325.0

Compare Source

No behavioral changes in this release

v0.324.0

Compare Source

New Features:

  • .flowconfig's [include] and [ignore] sections can now be configured using globs, in addition to the current regex based system. Right now, glob items must be specified with glob: prefix. Globs do not support <PROJECT_ROOT>, since they are assumed to start from the project root.
  • Class fields and methods whose computed key resolves to a literal string or number are now supported and type-checked as named members.

v0.323.0

Compare Source

No behavioral changes in this release

v0.322.0

Compare Source

Notable bug fixes:

  • Fixed #​9448
  • Fixed a crash in pattern matching. (example)
  • Refining a union by instanceof no longer leaks any from members that cannot match the guard (e.g. Foo<string> | Bar<number> refined by instanceof Foo now yields Foo<string> instead of Foo<string> | Foo<any>). This may surface real errors that were previously masked.

v0.321.0

Compare Source

Parser:

  • flow-parser is now backed by the Rust port parser. It will have public API similar to that of hermes-parser.

v0.320.0

Compare Source

Likely to cause new Flow errors:

  • Object operations on class instance types now produce plain object types instead of preserving the class instance's nominal identity. This affects object type spreads and utilities such as Partial, Required, Readonly, Pick, and Omit. Example

v0.319.0

Compare Source

Likely to cause new Flow errors:

  • The config for casting_syntax is removed. The as casting syntax is the only supported casting syntax. See Modernizing legacy syntax for migration guidance.
  • Flow will now error on T: B in favor of T extends B in type parameters, and error on +/- in favor of readonly/writeonly . See Modernizing legacy syntax for migration guidance.

New Features:

  • Support the global NaN as a match pattern

Notable bug fixes:

  • Fixed negative bigint literal patterns in match being treated as their positive counterpart
  • ConstructorParameters and InstanceType now work on Class<C>, not just typeof C
  • match instance patterns whose constructor is a subclass of the scrutinee type are no longer incorrectly reported as unused.

v0.318.0

Compare Source

Likely to cause new Flow errors:

v0.317.0

Compare Source

New Features:

  • Allow -? (optionality removal) in mapped types.
  • Adds support for utility types ConstructorParameters and InstanceType

Misc:

  • The .flowconfig options component_syntax, enums, and pattern_matching now default to true. To keep the previous behavior, set the corresponding option to =false in your .flowconfig.

v0.316.0

Compare Source

Likely to cause new Flow errors:

  • deprecated-type and deprecated-type-bool errors are now always on (the lints were on by default already). Update any references of the type bool to boolean, and delete references to the lints in your .flowconfig and flowlint comments — the setting is a no-op for this release and will be removed in a future release.

v0.315.0

Compare Source

Misc:

  • Variance keywords (readonly, writeonly, in, out) on type parameters and object/class properties are now enabled by default. The experimental.allow_variance_keywords is no longer needed to opt in.
  • The deprecated variance sigils error message now suggests the contextually correct keyword (readonly/writeonly for property positions, out/in for type parameter positions) instead of listing both alternatives.

v0.314.0

Compare Source

Likely to cause new Flow errors:

  • Deleted the implicit-inexact-object lint, it no longer does anything since exact_by_default=false was deprecated.
  • exact_by_default=false is now deprecated in .flowconfig. Read this blog post on how to migrate, and our docs on objects for more. exact_by_default=true is the default (since 2023) so simply delete the option when migrating.

Notable bug fixes:

  • Fixed incorrect enum cast suggestion when using an enum as a type argument

v0.313.0

Compare Source

Likely to cause new Flow errors:

  • Flow has changed its casting syntax from (x: T) to x as T. The default value of the option casting_syntax is now as, and Flow will error on the old syntax. If you want to preserve the old defualt value, add casting_syntax=both to your .flowconfig. You can use the npm package flow-upgrade to upgade: yarn run flow-codemod typeCastToAsExpression. Read the docs for more.

New Features:

  • Exported class setters no longer require an explicit type annotation: void is used if omitted

Parser:

  • The flow-parser estree output now aligns more with hermes-parser: ArrayExpression gains a trailingComma field, optional chaining is wrapped in a ChainExpression, AssertNonnull (expr!) emits a NonNullExpression instead of an optional node, type-position this emits ThisTypeAnnotation, and TypeParameter.bound is now a bare type node without the TypeAnnotation wrapper.

v0.312.1

Compare Source

  • Fix in saved state checks after a rebase

v0.312.0

Compare Source

Likely to cause new Flow errors:

  • Flow will now error on variance modifiers (+T, -T, in T, out T) on interface method type parameters, matching the existing rejection on class methods and function types

New Features:

  • Declaration merging between declare class and interface of the same name in the same scope.
  • Flow now separates value namespace and type namespace, so code like const A = 1; interface A {} is now accepted.

v0.311.0

Compare Source

New Features:

  • Added support for string and number literal properties in declare class and interface

Library Definitions:

  • Change the Record<K, T> utility type's key bound from K: string to K: PropertyKey, allowing number and symbol keys in addition to string
  • Added some TS built-in types that were missing from Flow's core lib

Parser:

  • Added support for writeonly property variance keyword

Misc:

  • When experimental.allow_variance_keywords is set to true, we support the keywords in / out / readonly / writeonly along with +/- for variance

v0.310.0

Compare Source

New Features:

  • Support constructor type signatures (new (...) => Type) in interfaces and declare class

Misc:

  • When allow_variance_keywords is set to true, Flow stops erroring for in / out / readonly

v0.309.0

Compare Source

No significant changes.

v0.308.0

Compare Source

Parser:

  • The 5 enum body ESTree node types (EnumBooleanBody, EnumNumberBody, EnumStringBody, EnumSymbolBody, EnumBigIntBody) have been replaced with a single EnumBody node. Its members property is a flat array of per-type member nodes (EnumBooleanMember, EnumNumberMember, EnumStringMember, EnumBigIntMember, EnumDefaultedMember). The explicitType property is now a string ("boolean", "number", "string", "symbol", "bigint") or null (previously a boolean). hasUnknownMembers remains a boolean. Several enum validation errors are no longer reported by the parser and are instead reported by the type checker.

Library Definitions:

  • Add type definition for RegExp.escape()

v0.307.1

Compare Source

  • Misc: Store exports index in saved state

v0.307.0

Compare Source

Notable bug fixes:

  • Support numeric literal object keys when importing/exporting object literals
  • Allow type keywords like infer to appear as member names in qualified type access (e.g. type S = O.infer;).
  • Allow type keywords (readonly, keyof, infer, etc.) as function type parameter names

Parser:

  • It is now a parse error to have a ? optional modifier in various places this does not make sense, e.g. const x? = 1;

Misc:

  • API change: flow check becomes an alias of flow status. You can use flow full-check to trigger a full foreground check of a Flow root.

v0.306.1

Compare Source

  • Fix in Meta-internal saved state logic

v0.306.0

Compare Source

New Features:

  • Support for using well-known symbols as property names in types - the form should be exactly Symbol.iterator.

Notable bug fixes:

  • Report prop-missing errors for unbound module properties in explicit type args used with implicit instantiation (e.g. try-Flow)

Library Definitions:

  • Updated core.js library definitions to accept readonly tuples in Map constructor

v0.305.1

Compare Source

  • Fix in saved state on projects including files outside the project root.

v0.305.0

Compare Source

Misc:

  • Add autofix for colon-style type parameter bounds to extends-style type parameter bounds

v0.304.0

Compare Source

Notable bug fixes:

  • Fixed analysis of number literal keys in object destructuring rest type computation

v0.303.0

Compare Source

New Features:

  • Adds a new stylex_shorthand_prop flowconfig option that enables syntactic sugar for StyleX on lowercase (intrinsic) JSX elements. When set to a prop name (e.g. stylex_shorthand_prop=sx), <div sx={[styles.foo, styles.bar]} /> desugars to <div {...stylex.props(styles.foo, styles.bar)} />.

v0.302.0

Compare Source

Notable bug fixes:

Misc:

  • Flow no longer errors on colon-style extends and now supports extends by default, previously gated by the ts_syntax option.
  • Add format, and test commands to LLM rules

IDE:

v0.301.0

Compare Source

IDE:

  • For React autoimport, it will now always be in the form of import * as React from 'react'

v0.300.0

Compare Source

Misc:

  • Minor changes to the flow-upgrade script

v0.299.0

Compare Source

Parser:

  • Support export declare, like declare export
  • For component in implicit declare context, the ast we produce will include implicitDeclare: true

v0.298.0

Compare Source

Likely to cause new Flow errors:

  • Imported functions that conform to hook naming conventions will always be treated like hooks. As a result, new errors might be surfaced. e.g. conditional hook call

Parser:

  • flow_parser.js now allows you to pass in filename in the option object

v0.297.0

Compare Source

New Features:

  • declare keyword can be omitted for declare function under declaration context (.flow file, declare module, declare namespace)

v0.296.1

Compare Source

Parser:

  • Fix parsing of experimental record expressions that are multiline

v0.296.0

Compare Source

Declarations:

  • The declare keyword can be omitted for declare const/let/var variable: type and declare component under a declaration context (libdef file, .js.flow file, declare module, declare namespace)
  • declare component now requires the rest props to be named - matching normal component declarations

Misc:

  • The Omit<O, K> utility type will no longer enforce that the provided keys K need to be part of O

v0.295.0

Compare Source

New Features:

  • Support 4 well-known symbols (Symbol.iterator, Symbol.asyncIterator, Symbol.dispose, Symbol.asyncDispose) in class methods. For now, the computed method name needs to be exactly in the form of Symbol.iterator (or other 3 names) to be recognized.

Notable bug fixes:

  • Flow will now error when a function parameter appears in the default expression for the same binding. (e.g. try-Flow)

Misc:

  • Introduced a codemod for migrating legacy utility types to modern equivalents (yarn run flow-codemod convertLegacyUtilityTypes)

Parser:

  • Flow now parses import attributes. For now, we don't do any semantic validation yet

v0.294.0

Compare Source

Parser:

  • Support second argument of import expressions

Bug Fixes:

v0.293.0

Compare Source

Config:

  • use_mixed_in_catch_variables option was renamed use_unknown_in_catch_variables because mixed is being renamed to unknown

v0.292.0

Compare Source

Likely to cause new Flow errors:

  • Flow will start to validate variance for declare classes.

Parser:

  • Rename ClassDeclaration property 'superTypeParameters' to 'superTypeArguments'

v0.291.0

Compare Source

IDE:

  • Flow now provides a code action to fix all invalid-type-cast-syntax errors in the file.

v0.290.0

Compare Source

Likely to cause new Flow errors:

  • flow will now validate variance in interface declarations
  • Bad cyclic object types are now banned. e.g. type O_loop = { p: 0, __proto__: O_loop } will cause an error.
  • Flow is now stricter with generic mapped type. example

Notable bug fixes:

  • We improved the refinement system of match. Some code that previously gets a general type will now get a refined type. example
  • allow opaque types to be used as keys to computed object properties
  • autocomplete on import { | } from 'a'; will only suggest values, not types.
  • flow-dev-tools now properly detects unused suppressions

IDE:

  • Flow now provide auto-import code actions for all unbound names, even through they might resolve to a global. It can be helpful when the global is not what you want.

Library Definitions:

  • Add bigint functions to DataView

v0.289.0

Compare Source

Likely to cause new Flow errors:

  • For a poorly bounded generic indexed access types, we will no longer generate an error for it when it's being first subtyped against. Instead, we will make it opaque so that when it's being subtyped against, it will error. example
  • Flow will error when you are trying to redefine the following reserved types: $NonMaybeType, NonNullable, $ReadOnly, Readonly, $Keys, $Values, Values, $ReadOnlyMap, ReadonlyMap, $ReadOnlySet, ReadonlySet.

Notable bug fixes:

  • We no longer incorrectly report conditional hook call for loops with a break. example
  • Fixed a potential crash when evaluating a conditional type. example
  • Flow will now allow computed keys of type StringPrefix/StringSuffix to be included in object initializers with other non-overlapping keys (example try-Flow)

Library Definitions:

  • Update React API types from recent releases
    Added

v0.288.0

Compare Source

Likely to cause new Flow errors:

  • React.ElementProps is removed. You should use React.ElementConfig instead.
  • For a function named as a hook but not annotated as a hook, it will no longer be treated like a hook when you try to use it from property access or property destructuring in component syntax components and hook syntax hooks. They will now cause react-rule-hook-non-hook-syntax errors. To fix, annotate them with hook annotation. example
  • Calling functions passed to function and component with hook like name but not annotated as hook will now error. example.
  • React$RefSetter<...> and and React$Context are removed. It continues to be available in the form of React.RefSetter<...> and React.Context<...>, regardless of whether you have imported React.
  • React$ElementRef<...> was removed. It continues to be available in the form of React.ElementRef<...>, regardless of whether you have imported React.

Breaking Changes:

  • The config option max_literal_length was removed. Flow will always decide whether to infer a specific or general type of string literal based on the natural inference algorithm.

Notable bug fixes:

  • You can now use @@dispose and @@asyncDispose in your library typings. You can access the respective properties with obj[Symbol.dispose] and obj[Symbol.asyncDispose].
  • Allow comparisons of bigint singletons

Library Definitions:

  • The second type argument of ExactReactElement will be populated by React.ElementConfig<C> instead of React.ElementProps<C>. Most of the code that doesn't depend on exact react element types won't be affected.

v0.287.0

Compare Source

Breaking Changes:

  • We will stop publishing new versions of flow-parser-bin. If you want to parse flow code with native-like performance, you should use hermes-parser package, which is running on wasm.

Likely to cause new Flow errors:

  • The deprecated React$Element type is now removed. You should use React.Node or React.MixedElement in most cases. If you really want exact react elements, you can use ExactReactElement_DEPRECATED

New Features:

  • Flow has full React 19 ref-as-prop support. Since this version, you are allowed to spread ref prop in component syntax components.

IDE:

  • We now provide a rewrite refactor to convert arrays, map, set, and object types into their readonly forms.

v0.286.0

Compare Source

Breaking Changes:

  • Starting from this version, flow-bin will only contain ARM64 binaries for macOS.

Likely to cause new Flow errors:

  • Flow now errors on constant conditions and invalid comparisons. example (D830142 samzhou19815)
  • Flow will no longer infer an unsound type for array and object literals passed to a general function. example
  • React.ElementConfig<...> and React.PropsOf<...> will now always include the ref prop in the props object type.
  • The config option for an earlier mode react.ref_as_prop=partial_support is removed, and Flow now has better support for React 19's ref-as-prop behavior:
    1. All the ref prop in component syntax components must be made optional
    2. You might need to rewrite some of your higher order components. e.g. previously an identity HOC must be written as
declare function id<Props: {...}, Ref>(c: component(ref?: Ref, ...Props)): component(ref?: Ref...Props)

now it must be written as

declare function id<Props: {...}>(c: component(...Props)): component(...Props)

v0.285.0

Compare Source

Library Definitions:

Bug fixes:

  • Fixed a bug that when experimental.ts_utility_syntax=true, imported Readonly, ReadonlyArray, NonNullable, ReadonlyMap, ReadonlySet types are considered any.

v0.284.0

Compare Source

Likely to cause new Flow errors:

  • Flow now strictly enforces that Array.includes, .indexOf, and .lastIndexOf take only values that could potentially be present in the array -- it is now an error to check if arrays include values whose types are unrelated to the array's element type. This catches many cases where developers accidentally test the wrong thing, which may lead to errors at runtime.
  • Flow will infer general types for react jsx elements. The new behavior is described in the docs.

v0.283.0

Compare Source

Likely to cause new Flow errors:

  • Invalid suppressions like // $FlowFixMe[incompatible will now cause an error on the suppression

v0.282.0

Compare Source

Likely to cause new Flow errors:

  • Multiple object property invariant subtyping errors on the same object will be combined into one error. Some error locations might be moved.

Notable bug fixes:

  • Fixes crash happening on exported functions with signatures of the form <X>(x: X, y: typeof x): T

IDE:

  • We now provide a best effort quickfix for some invariant subtyping errors.

Library Definitions:

  • Array.find can now return a more precise value if the predicate is inferred to be a type guard. example

v0.281.0

Compare Source

Breaking Changes:

  • Support for the casting_syntax=colon is removed. This means that the as casting syntax is always enabled.
  • experimental.error_code_migration config option is removed. In the previously version, the only allowed value was new.

Likely to cause new Flow errors:

  • We have fixed more source of object literal unsoundness. More errors will be exposed. (example)
  • For most of the common invariant subtyping errors (arrays, objects with mutable fields), we will now emit a single subtyping error with explanation how to fix. Error locations might change. See https://flow.org/en/docs/lang/variance/#toc-invariance to learn more about variance of types
  • Suppressions without error code will now be an error instead of a warning.
  • Suppressions without error code will no longer apply. You can download and use this script to automatically migrate most of the suppressions.
  • Only $FlowFixMe and $FlowExpectedError are supported suppression comments. Existing $FlowIgnore and $FlowIssue will no longer suppress anything.

New Features:

  • Added a Flow lint require-explicit-enum-checks which works like require-explicit-enum-switch-cases but for match.

Notable bug fixes:

  • Various codemods will now insert parentheses around expressions in class extends if they are changed. Previously, it might result in invalid code like class Foo extends myExpr() as Bar
  • Fixes an inconsistency in recording the this-type guard on a regular (non-declare) method in the same vs different files.

IDE:

  • Added a quickfix to convert type to value imports on type-as-value errors.

v0.280.0

Compare Source

Likely to cause new Flow errors:

  • Accessing missing exports on namespaced import will now trigger missing-export error instead of prop-missing error. (example)
  • The only supported suppress_type $FlowFixMe is now just a type alias of any. For most of the code, there will be no functional differences. However, you might see new errors if you have any local definitions of $FlowFixMe, or you used the undocumented $FlowFixMe<arbitrary type arguments>.
  • Support for suppress_type config has been removed. The only supported supress_type now is $FlowFixMe. If you want other variants, you can add
type MySuppressType = any

in your global library definitions.

  • Many subtyping type errors' error codes have been standardized into incompatible-type, so some previously suppressed errors will reappear until you change the suppression error code into incompatible-type. The change was announced in the previous version, with option to enable it via experimental.error_code_migration=new. Now the only valid option to experimental.error_code_migration is new. You can run flow codemod error-code-migration --write . with the previous version of Flow to help migrate, since the codemod is removed in this version.

v0.279.0

Compare Source

New Features:

  • In the next release (0.280.0) of Flow, we intend to standardize the error code for various subtyping errors into incompatible-type. You can add experimental.error_code_migration=new in your flowconfig to enable the new behavior now. We also provide a codemod flow codemod error-code-migration --write . that you can run over your codebase to automatically change the error code. Both the flowconfig option and the codemod will be removed in the next version.

Notable bug fixes:

  • Improved precision of error messages when inferred primitive types are checked against other incompatible primitive types (e.g. try-Flow)

Misc:

v0.278.0

Compare Source

Likely to cause new Flow errors:

  • Hooks calls inside normal functions in component or hooks as conditional calls. They will get react-rule-hook-conditional error instead of react-rule-hook error.
  • Array literals that cannot be contextually typed will be inferred as an actual array type. It might cause additional errors. [ex

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Jun 22, 2018

Copy link
Copy Markdown
Contributor Author

Branch automerge failure

This PR was configured for branch automerge, however this is not possible so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.75.0 chore(deps): update dependency flow-bin to v0.76.0 Jul 6, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from a8c6009 to 17ff3fb Compare July 6, 2018 20:09
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.76.0 chore(deps): update dependency flow-bin to v0.77.0 Jul 21, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 17ff3fb to 2964870 Compare July 21, 2018 01:34
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 2964870 to 7fff34d Compare August 4, 2018 00:55
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.77.0 chore(deps): update dependency flow-bin to v0.78.0 Aug 4, 2018
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.78.0 chore(deps): update dependency flow-bin to v0.79.0 Aug 16, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch 2 times, most recently from 4746d8c to 5d28cd5 Compare August 18, 2018 00:37
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.79.0 chore(deps): update dependency flow-bin to v0.79.1 Aug 18, 2018
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.79.1 chore(deps): update dependency flow-bin to v0.80.0 Aug 31, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 5d28cd5 to 1a352c7 Compare August 31, 2018 17:48
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.80.0 chore(deps): update dependency flow-bin to v0.81.0 Sep 14, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 1a352c7 to 146c42c Compare September 14, 2018 19:51
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.81.0 chore(deps): update dependency flow-bin to v0.82.0 Oct 1, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 146c42c to 0debb7a Compare October 1, 2018 21:18
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.82.0 chore(deps): update dependency flow-bin to v0.83.0 Oct 11, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 0debb7a to c7e26cb Compare October 11, 2018 17:01
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from c7e26cb to d1885fc Compare October 25, 2018 08:50
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.83.0 chore(deps): update dependency flow-bin to v0.84.0 Oct 25, 2018
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.84.0 chore(deps): update dependency flow-bin to v0.85.0 Oct 30, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from d1885fc to db795eb Compare October 30, 2018 04:54
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.85.0 chore(deps): update dependency flow-bin to v0.86.0 Nov 9, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from db795eb to 07c0490 Compare November 9, 2018 02:34
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 07c0490 to fd58475 Compare November 28, 2018 00:19
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.86.0 chore(deps): update dependency flow-bin to v0.87.0 Nov 28, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from fd58475 to 182ff63 Compare December 10, 2018 20:47
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.87.0 chore(deps): update dependency flow-bin to v0.88.0 Dec 10, 2018
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 182ff63 to 839f0b9 Compare December 13, 2018 16:07
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.93.0 chore(deps): update dependency flow-bin to v0.94.0 Mar 1, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from e77b08d to 82ba6b0 Compare March 15, 2019 14:32
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.94.0 chore(deps): update dependency flow-bin to v0.95.0 Mar 15, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 82ba6b0 to da58109 Compare March 15, 2019 16:24
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.95.0 chore(deps): update dependency flow-bin to v0.95.1 Mar 15, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from da58109 to 02f4d8d Compare April 2, 2019 02:26
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.95.1 chore(deps): update dependency flow-bin to v0.96.0 Apr 2, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 02f4d8d to e734dcf Compare April 23, 2019 10:52
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.96.0 chore(deps): update dependency flow-bin to v0.97.0 Apr 23, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from e734dcf to 2ea1d48 Compare May 4, 2019 16:53
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.97.0 chore(deps): update dependency flow-bin to v0.98.0 May 4, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 2ea1d48 to b61df7a Compare May 12, 2019 08:52
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.98.0 chore(deps): update dependency flow-bin to v0.98.1 May 12, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from b61df7a to a69c02e Compare June 1, 2019 09:59
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.98.1 chore(deps): update dependency flow-bin to v0.100.0 Jun 1, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from a69c02e to b29f539 Compare July 13, 2019 11:57
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.100.0 chore(deps): update dependency flow-bin to v0.102.0 Jul 13, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from b29f539 to 8c32e8b Compare August 10, 2019 08:59
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.102.0 chore(deps): update dependency flow-bin to v0.105.0 Aug 10, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 8c32e8b to 5faba5d Compare August 20, 2019 19:43
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.105.0 chore(deps): update dependency flow-bin to v0.105.2 Aug 20, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 5faba5d to 1fd8274 Compare September 4, 2019 23:58
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.105.2 chore(deps): update dependency flow-bin to v0.106.3 Sep 4, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 1fd8274 to cda321e Compare September 7, 2019 15:58
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.106.3 chore(deps): update dependency flow-bin to v0.107.0 Sep 7, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from cda321e to 6c380d8 Compare October 4, 2019 09:55
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.107.0 chore(deps): update dependency flow-bin to v0.109.0 Oct 4, 2019
@renovate
renovate Bot force-pushed the renovate/flow-bin-0.x branch from 6c380d8 to 919ffc5 Compare November 12, 2019 10:00
@renovate renovate Bot changed the title chore(deps): update dependency flow-bin to v0.109.0 chore(deps): update dependency flow-bin to v0.111.3 Nov 12, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants