Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 17, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pulumi ==1.14.1 -> ==2.21.2 age adoption passing confidence
pulumi ==1.14.1 -> ==2.21.2 age adoption passing confidence

Release Notes

pulumi/pulumi

v2.21.2

Compare Source

Improvements
  • [cli] Disable permalinks to the update details page when using self-managed backends (S3, Azure, GCS). Should the user
    want to get permalinks when using a self backend, they can pass a flag:
    pulumi up --suppress-permalink false.
    Permalinks for these self-managed backends will be suppressed on update, preview, destroy, import and refresh
    operations.
    #​6251

  • [cli] Added commands config set-all and config rm-all to set and remove multiple configuration keys.
    #​6373

  • [automation/*] Consume config set-all and config rm-all from automation API.
    #​6388

  • [sdk/dotnet] C# Automation API.
    #​5761

  • [sdk/dotnet] F# API to specify stack options.
    #​5077

Bug Fixes
  • [sdk/nodejs] Don't error when loading multiple copies of the same version of a Node.js
    component package. #​6387

  • [cli] Skip unnecessary state file writes to address performance regression introduced in 2.16.2.
    #​6396

v2.21.1

Compare Source

Bug Fixes
  • [sdk/python] Fixed a change to Output.all() that raised an error if no inputs are passed in.
    #​6381

v2.21.0

Compare Source

Improvements
  • [cli] Added pagination options to pulumi stack history #​6292
    This is used as follows:
    pulumi stack history --page-size=20 --page=1

  • [automation/*] Added pagination options for stack history in Automation API SDKs to improve
    performance of stack updates. #​6257
    This is used similar to the following example in go:

  func ExampleStack_History() {
	ctx := context.Background()
	stackName := FullyQualifiedStackName("org", "project", "stack")
	stack, _ := SelectStackLocalSource(ctx, stackName, filepath.Join(".", "program"))
	pageSize := 0
	page := 0
	hist, _ := stack.History(ctx, pageSize, page)
	fmt.Println(hist[0].StartTime)
  }
  • [pkg/testing/integration] Changed the default behavior for Python test projects to use UseAutomaticVirtualEnv by
    default. UsePipenv is now the way to use pipenv with tests.
    #​6318
Bug Fixes
  • [automation/go] Exposed the version in the UpdateSummary for use in understanding the version of a stack update
    #​6339

  • [cli] Changed the behavior for Python on Windows to look for python binary first instead of python3.
    #​6317

  • [sdk/python] Gracefully handle monitor shutdown in the python runtime without exiting the process.
    #​6249

  • [sdk/python] Fixed a bug in contains_unknowns where outputs with a property named "values" failed with a TypeError.
    #​6264

  • [sdk/python] Allowed keyword args in Output.all() to create a dict.
    #​6269

  • [sdk/python] Defined __all__ in modules for better IDE autocomplete.
    #​6351

  • [automation/python] Fixed a bug in nested configuration parsing.
    #​6349

v2.20.0

Compare Source

  • [sdk/python] Fix Output.from_input to unwrap nested output values in input types (args classes), which addresses
    an issue that was preventing passing instances of args classes with nested output values to Provider resources.
    #​6221

v2.19.0

Compare Source

  • [sdk/nodejs] Always read and write NodeJS runtime options from the environment.
    #​6076

  • [sdk/go] Take a breaking change to remove unidiomatic numerical types and drastically improve build performance (binary size and compilation time).
    #​6143

  • [cli] Ensure pulumi stack change-secrets-provider allows rotating the key from hashivault to passphrase provider
    #​6210

v2.18.2

Compare Source

  • [CLI] Fix malformed resource value bug.
    #​6164

  • [sdk/dotnet] Fix RegisterResourceOutputs to serialize resources as resource references
    only when the monitor reports that resource references are supported.
    #​6172

  • [CLI] Avoid panic for diffs with invalid property paths.
    #​6159

  • Enable resource reference feature by default.
    #​6202

v2.18.1

Compare Source

  • Revert #​6125 as it caused a which introduced a bug with serializing resource IDs

v2.18.0

Compare Source

  • [CLI] Add the ability to log out of all Pulumi backends at once.
    #​6101

  • [sdk/go] Added pulumi.Unsecret which will take an existing secret output and
    create a non-secret variant with an unwrapped secret value. Also adds,
    pulumi.IsSecret which will take an existing output and
    determine if an output has a secret within the output.
    #​6085

v2.17.2

Compare Source

  • .NET: Allow IMock.NewResourceAsync to return a null ID for component resources.
    Note that this may require mocks written in C# to be updated to account for the
    change in nullability.
    #​6104

  • [automation/go] Add debug logging settings for common automation API operations
    #​6095

  • [automation/go] Set DryRun on previews so unknowns are identified correctly.
    #​6099

  • [sdk/python] Fix python 3.6 support by removing annotations import.
    #​6109

  • [sdk/nodejs] Added pulumi.unsecret which will take an existing secret output and
    create a non-secret variant with an unwrapped secret value. Also adds,
    pulumi.isSecret which will take an existing output and
    determine if an output has a secret within the output.
    #​6086

  • [sdk/python] Added pulumi.unsecret which will take an existing secret output and
    create a non-secret variant with an unwrapped secret value. Also adds,
    pulumi.is_secret which will take an existing output and
    determine if an output has a secret within the output.
    #​6111

v2.17.1

Compare Source

  • Fix an issue with go sdk generation where optional strict enum values
    could not be omitted. Note - this is a breaking change to go sdk's enum
    values. However we currently only support strict enums in the azure-nextgen provider's schema.
    #​6069

  • Fix an issue where python debug messages print unexpectedly.
    #​6967

  • [CLI] Add version to the stack history output to be able to
    correlate events back to the Pulumi SaaS
    #​6063

  • Fix a typo in the unit testing mocks to get the outputs
    while registering them
    #​6040

  • [sdk/dotnet] Moved urn value retrieval into if statement
    for MockMonitor
    #​6081

  • [sdk/dotnet] Added Pulumi.Output.Unsecret which will
    take an existing secret output and
    create a non-secret variant with an unwrapped secret value.
    #​6092

  • [sdk/dotnet] Added Pulumi.Output.IsSecretAsync which will
    take an existing output and
    determine if an output has a secret within the output.
    #​6092

  • [sdk/dotnet] Fix looking up empty version in
    ResourcePackages.TryGetResourceType.
    #​6084

  • Python Automation API.
    #​5979

  • Support recovery workflow (import/export/cancel) in Python Automation API.
    #​6037

v2.17.0

Compare Source

  • Respect the version resource option for provider resources.
    #​6055

  • Allow serializeFunction to capture secrets.
    #​6013

  • [CLI] Allow pulumi console to accept a stack name
    #​6031

  • Support recovery workflow (import/export/cancel) in NodeJS Automation API.
    #​6038

  • [CLI] Add a confirmation prompt when using pulumi policy rm
    #​6034

  • [CLI] Ensure errors with the Pulumi credentials file
    give the user some information on how to resolve the problem
    #​6044

  • [sdk/go] Support maps in Invoke outputs and Read inputs
    #​6014

v2.16.2

Compare Source

  • Fix a bug in the core engine that could cause previews to fail if a resource with changes had
    unknown output property values.
    #​6006

v2.16.1

Compare Source

  • Fix a panic due to unsafe concurrent map access.
    #​5995

  • Fix regression in venv creation for python policy packs.
    #​5992

v2.16.0

Compare Source

  • Do not read plugins and policy packs into memory prior to extraction, as doing so can exhaust
    the available memory on lower-end systems.
    #​5983

  • Fix a bug in the core engine where deleting/renaming a resource would panic on update + refresh.
    #​5980

  • Fix a bug in the core engine that caused ignoreChanges to fail for resources being imported.
    #​5976

  • Fix a bug in the core engine that could cause resources references to marshal improperly
    during preview.
    #​5960

  • [sdk/dotnet] Add collection initializers for smooth support of Union<T, U> as element type
    #​5938

  • Fix a bug in the core engine where ComponentResource state would be accessed before initialization.
    #​5949

  • Prevent a panic by not attempting to show progress for zero width/height terminals.
    #​5957

v2.15.6

Compare Source

  • Fix a bug in the Go SDK that could result in dropped resource dependencies.
    #​5930

  • Temporarily disable resource ref feature.
    #​5932

v2.15.5

Compare Source

  • Re-apply fix for running multiple pulumi processes concurrently.
    #​5893

  • [cli] Prevent a panic when using pulumi import with local filesystems
    #​5906

  • [sdk/nodejs] Fix issue that would cause unit tests using mocks to fail with unhandled errors when
    a resource references another resources that's been registered with registerResourceModule.
    #​5914

  • Enable resource reference feature by default.
    #​5905

  • [codegen/go] Fix Input/Output methods for Go resources.
    #​5916

  • [sdk/python] Implement getResource in the mock monitor.
    #​5919

  • [sdk/dotnet] Implement getResource in the mock monitor and fix some issues around
    deserializing resources.
    #​5921

v2.15.4

Compare Source

  • Fix a problem where pulumi import could panic on an import error due to missing error message.
    #​5884

  • Correct the system name detected for Jenkins CI. #​5891

  • Fix python execution for users running Python installed through the Windows App Store
    on Windows 10 #​5874

v2.15.3

Compare Source

  • Fix errors when running pulumi in Windows-based CI environments.
    #​5879

v2.15.2

Compare Source

  • Fix a problem where pulumi import could panic on importing arrays and sets, due to
    incorrect array resizing logic. #​5872.

v2.15.1

Compare Source

  • Address potential issues when running multiple pulumi processes concurrently.
    #​5857

  • Automatically install missing Python dependencies.
    #​5787

  • [cli] Ensure pulumi stack change-secrets-provider allows rotating the key for a passphrase provider
    #​5865

v2.15.0

Compare Source

  • [sdk/python] Add deserialization support for enums.
    #​5615

  • Correctly rename Pulumi.*.yaml stack files during a rename that includes an
    organization in its name #​5812.

  • Respect PULUMI_PYTHON_CMD in scripts.
    #​5782

  • Add PULUMI_BACKEND_URL environment variable to configure the state backend.
    #​5789

  • [sdk/dotnet] Add support for dependency injection into TStack instance by adding an overload to Deployment.RunAsync. The overload accepts an IServiceProvider that is used to create the instance of TStack. Also added a new method Deployment.TestWithServiceProviderAsync for testing stacks that use dependency injection.
    #​5723

  • [cli] Ensure pulumi stack change-secrets-provider allows rotating the key in Azure KeyVault
    #​5842

v2.14.0

Compare Source

  • Propagate secretness of provider configuration through to the statefile. This ensures
    that any configuration values marked as secret (i.e. values set with
    pulumi config set --secret) that are used as inputs to providers are encrypted
    before they are stored.
    #​5742

  • Fix a bug that could prevent pulumi import from succeeding.
    #​5730

  • [Docs] Add support for the generation of Import documentation in the resource docs.
    This documentation will only be available if the resource is importable.
    #​5667

  • [codegen/go] Add support for ResourceType and isComponent to enable multi-language
    components in Go. This change also generates Input/Output types for all resources
    in downstream Go SDKs.
    #​5497

  • Support python 3.9 on Windows.
    #​5739

  • pulumi-language-go and pulumi new now explicitly requires Go 1.14.0 or greater.
    #​5741

  • Update .NET Grpc libraries to 2.33.1 and Protobuf to 3.13.0 (forked to increase
    the recursion limit) #​5757

  • Fix plugin install failures on Windows.
    #​5759

  • .NET: Report plugin install errors during pulumi new.
    #​5760

  • Correct error message on KeyNotFoundException against StackReference.
    #​5740

  • [cli] Small UX change on the policy violations output to render as type: name
    #​5773

v2.13.2

Compare Source

  • Fix a bug that was causing errors when (de)serializing custom resources.
    #​5709

v2.13.1

Compare Source

  • [cli] Ensure pulumi history annotes when secrets are unable to be decrypted
    #​5701

  • Fix a bug in the Python SDK that caused incompatibilities with versions of the CLI prior to
    2.13.0.
    #​5702

v2.13.0

Compare Source

  • Add internal scaffolding for using cross-language components from Go.
    #​5558

  • Support python 3.9.
    #​5669

  • [cli] Ensure that the CLI doesn't panic when using pulumi watch and using ComponentResources with non-standard naming
    #​5675

  • [cli] Ensure that the CLI doesn't panic when trying to assemble a graph on a stack that has no snapshot available
    #​5678

  • Add boolean values to Go SDK
    #​5687

v2.12.1

Compare Source

  • [cli] Ensure that the CLI doesn't panic when using pulumi watch and policies are enabled
    #​5569

  • [cli] Ensure that the CLI doesn't panic when using the JSON output as part of previews
    and policies are enabled
    #​5610

v2.12.0

Compare Source

  • NodeJS Automation API.
    #​5347

  • Improve the accuracy of previews by allowing providers to participate in determining what
    the impact of a change will be on output properties. Previously, Pulumi previews
    conservatively assumed that any output-only properties changed their values when an update
    occurred. For many properties, this was guaranteed to not be the case (because those
    properties are immutable, for example), and by suggesting the value might change, this could
    lead to the preview suggesting additional transitive updates of even replaces that would not
    actually happen during an update. Pulumi now allows the provider to specify the details of
    what properties will change during a preview, allowing them to expose more accurate
    provider-specific knowledge. This change is less conservative than the previous behavior,
    and so in case it causes preview results which are not deemed correct in some case - the
    PULUMI_DISABLE_PROVIDER_PREVIEW flag can be set to a truthy value (e.g. 1) to enable the
    previous and more conservative behavior for previews.
    #​5443.

  • Add an import command to the Pulumi CLI. This command can be used to import existing resources
    into a Pulumi stack.
    #​4765

  • [cli] Remove eternal loop if a configured passphrase is invalid.
    #​5507

  • Correctly validate project names during 'pulumi new'
    #​5504

  • Fixing gzip compression for alternative backends.
    #​5484

  • Add internal scaffolding for using cross-language components from .NET.
    #​5485

  • Support self-contained executables as binary option for .NET programs.
    #​5519

  • [cli] Ensure old secret provider variables are cleaned up when changing between secret providers
    #​5545

  • [cli] Respect logging verbosity as part of pulumi plugin install commands
    #​5549

  • [cli] Accept -f as a shorthand for --skip-preview on pulumi up, pulumi refresh and pulumi destroy operations
    #​5556

  • [cli] Validate cloudUrl formats before pulumi login and throw an error if incorrect format specified
    #​5550

  • [automation api] Add support for passing a private ssh key for git authentication that doesn't rely on a file path
    #​5557

  • [cli] Improve user experience when pulumi plugin rm --all finds no plugins
    to remove. The previous behaviour was an error and should not be so.
    #​5547

  • [sdk/python] Fix ResourceOptions annotations and doc strings.
    #​5559

  • [sdk/dotnet] Fix HashSet concurrency issue.
    #​5563

v2.11.2

Compare Source

  • feat(autoapi): expose EnvVars LocalWorkspaceOption to set in ctor
    #​5499

  • [sdk/python] Fix secret regression: ensure unwrapped secrets during deserialization
    are rewrapped before being returned.
    #​5496

v2.11.1

Compare Source

  • Add internal scaffolding for using cross-language components from Python.
    #​5375

v2.11.0

Compare Source

  • Do not oversimplify types for display when running an update or preview.
    #​5440

  • Pulumi Windows CLI now uploads all VCS information to console
    (fixes #​5014)
    #​5406

  • .NET SDK: Support Output<object> for resource output properties
    (fixes #​5446)
    #​5465

v2.10.2

Compare Source

  • [sdk/go] Add missing Version field to invokeOptions
    #​5401

  • Add pulumi console command which opens the currently selected stack in the Pulumi console.
    #​5368

  • Python SDK: Cast numbers intended to be integers to int.
    #​5419

v2.10.1

Compare Source

  • feat(autoapi): add GetPermalink for operation result
    #​5363

  • Relax stack name validations for Automation API #​5337

  • Allow Pulumi to read a passphrase file, via PULUMI_CONFIG_PASSPHRASE_FILE to interact
    with the passphrase secrets provider. Pulumi will first try and use the PULUMI_CONFIG_PASSPHRASE
    to get the passphrase then will check PULUMI_CONFIG_PASSPHRASE_FILE and then all through to
    asking interactively as the final option.
    #​5327

  • feat(autoapi): Add support for working with private Git repos. Either SSHPrivateKeyPath,
    PersonalAccessToken or UserName and Password can be pushed to the auto.GitRepo struct
    when interacting with a private repo
    #​5333

  • Revise the design for connecting an existing language runtime to a CLI invocation.
    Note that this is a protocol breaking change for the Automation API, so both the
    API and the CLI must be updated together.
    #​5317

  • Automation API - support streaming output for Up/Refresh/Destroy operations.
    #​5367

  • Automation API - add recovery APIs (cancel/export/import)
    #​5369

v2.10.0

Compare Source

  • feat(autoapi): add Upsert methods for stacks
    #​5316

  • Add IsSelectStack404Error and IsCreateStack409Error
    #​5314

  • Add internal scaffolding for cross-language components.
    #​5280

  • feat(autoapi): add workspace scoped envvars to LocalWorkspace and Stack
    #​5275

  • refactor(autoapi-gitrepo): use Workspace in SetupFn callback
    #​5279

  • Fix Go SDK plugin acquisition for programs with vendored dependencies
    #​5286

  • Python SDK: Add support for Sequence[T] for array types
    #​5282

  • feat(autoapi): Add support for non default secret providers in local workspaces
    #​5320

  • .NET SDK: Prevent a task completion race condition
    #​5324

v2.9.2

Compare Source

  • Alpha version of the Automation API for Go
    #​4977

  • Python SDK: Avoid raising an error when internal properties don't match the
    expected type.
    #​5251

  • Added --suppress-permalink option to suppress the permalink output
    (fixes #​4103)
    #​5191

v2.9.1

Compare Source

  • Python SDK: Avoid raising an error when an output has a type annotation of Any
    and the value is a list or dict.
    #​5238

v2.9.0

Compare Source

  • Fix support for CheckFailures in Python Dynamic Providers
    #​5138

  • Upgrade version of gocloud.dev. This ensures that 'AWSKMS' secrets
    providers can now be used with full ARNs rather than just Aliases
    #​5138

  • Ensure the 'history' command is a subcommand of 'stack'.
    This means that pulumi history has been deprecated in favour
    of pulumi stack history.
    #​5158

  • Add support for extracting jar files in archive resources
    #​5150

  • SDK changes to support Python input/output classes
    #​5033

v2.8.2

Compare Source

  • Add nuget badge to README #​5117

  • Support publishing and consuming Policy Packs using any runtime
    #​5102

  • Fix regression where any CLI integration for any stack with a default
    secrets provider would sort the config alphabetically and new stacks created
    would get created with an empty map {} in the config file
    #​5132

v2.8.1

Compare Source

  • Fix a bug where passphrase managers were not being
    recognised correctly when getting the configuration
    for the current stack.
    Please Note:
    This specific bug may have caused the stack config
    file to remove the password encryption salt.
    #​5110

v2.8.0

Compare Source

  • Add missing MapMap and ArrayArray types to Go SDK
    #​5092

  • Switch os/user package with luser drop in replacement
    #​5065

  • Update pip/setuptools/wheel in virtual environment before installing dependencies
    #​5042

  • Add ability to change a secrets provider for the current stack
    #​5031

  • Add ability to create a stack based on the config from an existing stack
    #​5062

  • Python: Improved error message when virtualenv doesn't exist
    #​5069

  • Enable pushing to Artifact Registry in actions
    #​5075

v2.7.1

Compare Source

  • Fix logic to parse pulumi venv on github action
    5038

v2.7.0

Compare Source

  • Add pluginDownloadURL field to package definition
    #​4947

  • Add support for streamInvoke during update
    #​4990

  • Add ability to copy configuration values between stacks
    #​4971

  • Add logic to parse pulumi venv on github action
    #​4994

  • Better performance for stacks with many resources using the .NET SDK
    #​5015

  • Output PDB files and enable SourceLink integration for .NET assemblies
    #​4967

v2.6.1

Compare Source

  • Fix a panic in the display during CLI operations
    #​4987

v2.6.0

Compare Source

  • Go program gen: Improved handling for pulumi.Map types
    #​4914

  • Go SDK: Input type interfaces should declare pointer type impls where appropriate
    #​4911

  • Fixes issue where base64-encoded GOOGLE_CREDENTIALS causes problems with other commands
    #​4972

v2.5.0

Compare Source

  • Go program gen: prompt array conversion, unused range vars, id handling
    #​4884

  • Go program gen handling for prompt optional primitives
    #​4875

  • Go program gen All().Apply rewriter
    #​4858

  • Go program gen improvements (multiline strings, get/lookup disambiguation, invoke improvements)
    #​4850

  • Go program gen improvements (splat, all, index, traversal, range)
    #​4831

  • Go program gen improvements (resource range, readDir, fileArchive)
    #​4818

  • Set default config namespace for Get/Try/Require methods in Go SDK.
    #​4802

  • Handle invalid UTF-8 characters before RPC calls
    #​4816

  • Improve typing for Go SDK secret config values
    #​4800

  • Fix panic on pulumi up prompt after preview when filtering and hitting arrow keys.
    #​4808

  • Ensure GitHub Action authenticates to GCR when $GOOGLE_CREDENTIALS specified
    #​4812

  • Fix pylint(no-member) when accessing resource.id.
    #​4813

  • Fix GitHub Actions environment detection for PRs.
    #​4817

  • Adding language sdk specific docker containers.
    #​4837

  • Workaround bug in grcpio v1.30.0 by excluding this version from required dependencies.
    #​4883

v2.4.0

Compare Source

  • Turn program generation NYIs into diagnostic errors
    #​4794

  • Improve dev version detection logic
    #​4732

  • Export CustomTimeouts in the Python SDK
    #​4747

  • Add GitHub Actions CI detection
    #​4758

  • Allow users to specify base64 encoded strings as GOOGLE_CREDENTIALS
    #​4773

  • Install and use dependencies automatically for new Python projects.
    #​4775

v2.3.0

Compare Source

  • Add F# operators for InputUnion.
    #​4699

  • Add support for untagged outputs in Go SDK.
    #​4640

  • Update go-cloud to support all Azure regions
    #​4643

  • Fix a Regression in .NET unit testing.
    #​4656

  • Allow pulumi.export calls from Python unit tests.
    #​4670

  • Add support for publishing Python policy packs.
    #​4644

  • Improve download perf by fetching plugins from a CDN.
    #​4692

v2.2.1

Compare Source

  • Add new brew target to fix homebrew builds
    #​4633

v2.2.0

Compare Source

  • Fixed ResourceOptions issue with stack references in Python SDK
    #​4553

  • Add runTask to F# Deployment module
    #​3858

  • Add support for generating Fish completions
    #​4401

  • Support map-typed inputs in RegisterResource for Go SDK
    #​4522

  • Don't call IMocks.NewResourceAsync for the root stack resource
    #​4527

  • Add ResourceOutput type to Go SDK
    #​4575

  • Allow secrets to be decrypted when exporting a stack
    #​4046

  • Commands checking for a confirmation or requiring a --yes flag can now be
    skipped by setting PULUMI_SKIP_CONFIRMATIONS to 1 or true.
    #​4477

v2.1.1

Compare Source

  • Add retry support when writing to state buckets
    #​4494

v2.1.0

Compare Source

  • Fix infinite recursion bug for Go SDK
    #​4516

  • Order secretOutputNames when used in stack references
    #​4489

  • Add support for a PULUMI_CONSOLE_DOMAIN environment variable to override the
    behavior for how URLs to the Pulumi Console are generated.
    #​4410

  • Protect against panic when unprotecting non-existant resources
    #​4441

  • Add flag to pulumi stack to output only the stack name
    #​4450

  • Ensure Go accessor methods correctly support nested fields of optional outputs
    #​4456

  • Improve ResourceOptions.merge type in Python SDK
    #​4484

  • Ensure generated Python module names are keyword-safe.
    #​4473

  • Explicitly set XDG_CONFIG_HOME and XDG_CACHE_HOME env vars for helm in the
    pulumi docker image
    #​4474

  • Increase the MaxCallRecvMsgSize for all RPC calls.
    #​4455

v2.0.0

Compare Source

  • CLI behavior change. Commands in non-interactive mode (i.e. when pulumi has its output piped to
    another process or running on CI) will not default to assuming that --yes was passed in. --yes is now
    explicitly required to proceed in non-interactive scenarios. This affects:

    • pulumi destroy
    • pulumi new
    • pulumi refresh
    • pulumi up
  • Fixed crashes and hangs introduced by usage of
    another library.

  • @​pulumi/pulumi now requires Node.js version >=10.10.0.

  • All data-source invocations are now asynchronous (Promise-returning) by default.

  • C# code generation switched to schema.

  • .NET API: replace IDeployment interface with DeploymentInstance class.

  • Fix Go SDK secret propagation for Resource inputs/outputs.
    #​4387

  • Fix Go codegen to emit config packages
    #​4388

  • Treat config values set with --path that start with '0' as strings rather than numbers.
    #​4393

  • Switch .NET projects to .NET Core 3.1
    #​4400

  • Avoid unexpected replace on resource with import applied on second update.
    #​4403


Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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


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

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate
Copy link
Author

renovate bot commented Apr 17, 2020

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you check the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Pipfile.lock
Command failed: docker run --rm --name=renovate_python --label=renovate_child -v "/mnt/renovate/gh/jonashackt/pulumi-python-aws-ansible":"/mnt/renovate/gh/jonashackt/pulumi-python-aws-ansible" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/renovate-cache/others/pipenv":"/tmp/renovate-cache/others/pipenv" -e PIPENV_CACHE_DIR -w "/mnt/renovate/gh/jonashackt/pulumi-python-aws-ansible" docker.io/renovate/python:3.9.2 bash -l -c "pip install --user pipenv && pipenv lock"
Creating a virtualenv for this project...
Pipfile: /mnt/renovate/gh/jonashackt/pulumi-python-aws-ansible/Pipfile
Using /usr/local/python/3.9.2/bin/python3.9 (3.9.2) to create virtualenv...

⠋ Creating virtual environment...�
⠙ Creating virtual environment...�
⠹ Creating virtual environment...�
⠸ Creating virtual environment...�
⠼ Creating virtual environment...�
⠴ Creating virtual environment...�
⠦ Creating virtual environment...�
⠧ Creating virtual environment...�
⠇ Creating virtual environment...�
⠏ Creating virtual environment...�
⠋ Creating virtual environment...�
⠙ Creating virtual environment...�
⠹ Creating virtual environment...�
⠸ Creating virtual environment...�
⠼ Creating virtual environment...�
⠴ Creating virtual environment...�
⠦ Creating virtual environment...�
⠧ Creating virtual environment...�
⠇ Creating virtual environment...�
⠏ Creating virtual environment...�
⠋ Creating virtual environment...�
⠙ Creating virtual environment...�
⠹ Creating virtual environment...�
⠸ Creating virtual environment...�
⠼ Creating virtual environment...�
⠴ Creating virtual environment...�
⠦ Creating virtual environment...�
⠧ Creating virtual environment...�
⠇ Creating virtual environment...�
⠏ Creating virtual environment...�
⠋ Creating virtual environment...�
⠙ Creating virtual environment...�
⠹ Creating virtual environment...�
⠸ Creating virtual environment...�
⠼ Creating virtual environment...�
⠴ Creating virtual environment...�
⠦ Creating virtual environment...�
⠧ Creating virtual environment...�
⠇ Creating virtual environment...�
⠏ Creating virtual environment...created virtual environment CPython3.9.2.final.0-64 in 2766ms
  creator CPython3Posix(dest=/home/ubuntu/.local/share/virtualenvs/pulumi-python-aws-ansible-JUPIKU-s, clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/ubuntu/.local/share/virtualenv)
    added seed packages: pip==21.0.1, setuptools==52.0.0, wheel==0.36.2
  activators BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator

�✔ Successfully created virtual environment! 
Virtualenv location: /home/ubuntu/.local/share/virtualenvs/pulumi-python-aws-ansible-JUPIKU-s
Locking [dev-packages] dependencies...
Locking [packages] dependencies...

⠋ Locking...
Building requirements...
�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...
�
⠦ Locking...Resolving dependencies...
�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�
⠏ Locking...�
⠋ Locking...�
⠙ Locking...�
⠹ Locking...�
⠸ Locking...�
⠼ Locking...�
⠴ Locking...�
⠦ Locking...�
⠧ Locking...�
⠇ Locking...�✘ Locking Failed! 
[ResolutionFailure]:   File "/home/ubuntu/.local/lib/python3.9/site-packages/pipenv/resolver.py", line 741, in _main
[ResolutionFailure]:       resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages, dev)
[ResolutionFailure]:   File "/home/ubuntu/.local/lib/python3.9/site-packages/pipenv/resolver.py", line 702, in resolve_packages
[ResolutionFailure]:       results, resolver = resolve(
[ResolutionFailure]:   File "/home/ubuntu/.local/lib/python3.9/site-packages/pipenv/resolver.py", line 684, in resolve
[ResolutionFailure]:       return resolve_deps(
[ResolutionFailure]:   File "/home/ubuntu/.local/lib/python3.9/site-packages/pipenv/utils.py", line 1395, in resolve_deps
[ResolutionFailure]:       results, hashes, markers_lookup, resolver, skipped = actually_resolve_deps(
[ResolutionFailure]:   File "/home/ubuntu/.local/lib/python3.9/site-packages/pipenv/utils.py", line 1108, in actually_resolve_deps
[ResolutionFailure]:       resolver.resolve()
[ResolutionFailure]:   File "/home/ubuntu/.local/lib/python3.9/site-packages/pipenv/utils.py", line 833, in resolve
[ResolutionFailure]:       raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
 Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
  Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: Could not find a version that matches pulumi<2.0.0,==2.21.2,>=1.0.0 (from -r /tmp/pipenvjzt8h4vrrequirements/pipenv-ug24sznp-constraints.txt (line 6))
Tried: 0.0.0, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.14.0, 0.14.1, 0.14.2, 0.14.3, 0.15.0, 0.15.1, 0.15.2, 0.15.3, 0.15.4, 0.16.0, 0.16.1, 0.16.2, 0.16.3, 0.16.4, 0.16.5, 0.16.6, 0.16.7, 0.16.8, 0.16.9, 0.16.10, 0.16.11, 0.16.12, 0.16.13, 0.16.14, 0.16.15, 0.16.16, 0.16.17, 0.16.18, 0.16.19, 0.17.0, 0.17.1, 0.17.2, 0.17.3, 0.17.4, 0.17.5, 0.17.6, 0.17.7, 0.17.8, 0.17.9, 0.17.10, 0.17.11, 0.17.12, 0.17.13, 0.17.14, 0.17.15, 0.17.16, 0.17.17, 0.17.18, 0.17.19, 0.17.20, 0.17.21, 0.17.22, 0.17.23, 0.17.24, 0.17.25, 0.17.26, 0.17.27, 0.17.28, 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.3.4, 1.4.0, 1.4.1, 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1, 1.7.0, 1.7.1, 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.11.0, 1.11.1, 1.12.0, 1.12.1, 1.13.0, 1.14.0, 1.14.1, 2.0.0, 2.1.0, 2.1.1, 2.2.0, 2.2.1, 2.3.0, 2.4.0, 2.5.0, 2.6.0, 2.6.1, 2.7.0, 2.7.1, 2.8.0, 2.8.1, 2.8.2, 2.9.0, 2.9.1, 2.9.2, 2.10.0, 2.10.1, 2.10.2, 2.11.0, 2.11.1, 2.11.2, 2.12.0, 2.12.1, 2.13.0, 2.13.1, 2.13.2, 2.14.0, 2.15.0, 2.15.1, 2.15.2, 2.15.3, 2.15.4, 2.15.5, 2.15.6, 2.16.0, 2.16.1, 2.16.2, 2.17.0, 2.17.1, 2.17.2, 2.18.0, 2.18.1, 2.18.2, 2.19.0, 2.20.0, 2.21.0, 2.21.1, 2.21.2
Skipped pre-versions: 0.12.4.dev1528816254, 0.12.4.dev1528818369, 0.12.4.dev1528823023, 0.12.4.dev1528827785, 0.14.0rc1, 0.14.1.dev1529086344, 0.14.1.dev1529086353, 0.14.1.dev1529092071, 0.14.1.dev1529094831, 0.14.1.dev1529095047, 0.14.1.dev1529259303, 0.14.1.dev1529298555, 0.14.1.dev1529302174, 0.14.1.dev1529302618, 0.14.1.dev1529323238, 0.14.1.dev1529324996, 0.14.1.dev1529345297, 0.14.1.dev1529363006, 0.14.1.dev1529524677, 0.14.1.dev1529604414, 0.14.1.dev1529629283, 0.14.1.dev1529689703, 0.14.1.dev1529691869, 0.14.1.dev1529960936, 0.14.1.dev1529969189, 0.14.1.dev1529973091, 0.14.1.dev1529976626, 0.14.1.dev1530036843, 0.14.1.dev1530207239, 0.14.2.dev1530207239, 0.14.2.dev1530306538, 0.14.2.dev1530373642, 0.14.2.dev1530383860, 0.14.2.dev1530384519, 0.14.2.dev1530556951, 0.14.2.dev1530568350, 0.14.2.dev1530568503, 0.14.2.dev1530635140, 0.14.3.dev1530635140, 0.14.3.dev1530826235, 0.14.3.dev1530926734, 0.14.3.dev1530937800, 0.14.3.dev1530939988, 0.14.3.dev1531169310, 0.14.3.dev1531255458, 0.14.3.dev1531262531, 0.14.3.dev1531266116, 0.14.3.dev1531325813, 0.14.3.dev1531346640, 0.14.3.dev1531359233, 0.14.3.dev1531430678, 0.14.3.dev1531531182, 0.14.3.dev1531688744, 0.14.3.dev1531694880, 0.14.3.dev1531782536, 0.14.3.dev1531857610, 0.14.3.dev1531945498, 0.14.3.dev1531954135, 0.14.4.dev1532118701, 0.14.4.dev1532134746, 0.14.4.dev1532459229, 0.14.4.dev1532473813, 0.14.4.dev1532486450, 0.14.4.dev1532562920, 0.14.4.dev1532566788, 0.14.4.dev1532567180, 0.14.4.dev1532645352, 0.14.4.dev1532732891, 0.14.4.dev1532742277, 0.14.4.dev1532971294, 0.14.4.dev1532979226, 0.14.4.dev1533017968, 0.14.4.dev1533047077, 0.14.4.dev1533047448, 0.14.4.dev1533047507, 0.14.4.dev1533047608, 0.14.4.dev1533051466, 0.14.4.dev1533057736, 0.14.4.dev1533071466, 0.14.4.dev1533073795, 0.14.4.dev1533096587, 0.14.4.dev1533098287, 0.14.4.dev1533101301, 0.14.4.dev1533103699, 0.14.4.dev1533146448, 0.14.4.dev1533159129, 0.14.4.dev1533184349, 0.14.4.dev1533185294, 0.14.4.dev1533208456, 0.14.4.dev1533221715, 0.14.4.dev1533240813, 0.14.4.dev1533241549, 0.14.4.dev1533265992, 0.14.4.dev1533328279, 0.14.4.dev1533330360, 0.14.4.dev1533439823, 0.14.4.dev1533579139, 0.14.4.dev1533581886, 0.14.4.dev1533584706, 0.14.4.dev1533591293, 0.14.4.dev1533599177, 0.14.4.dev1533603029, 0.14.4.dev1533663798, 0.14.4.dev1533664868, 0.14.4.dev1533668572, 0.14.4.dev1533672856, 0.14.4.dev1533688022, 0.14.4.dev1533690634, 0.14.4.dev1533705030, 0.14.4.dev1533755180, 0.14.4.dev1533758442, 0.14.4.dev1533761148, 0.14.4.dev1533762767, 0.14.4.dev1533762980, 0.14.4.dev1533763535, 0.14.4.dev1533781611, 0.14.4.dev1533786662, 0.14.4.dev1533786685, 0.15.0rc1, 0.15.0rc2, 0.15.0rc3, 0.15.0rc4, 0.15.1.dev1533843939, 0.15.1.dev1533851139, 0.15.1.dev1533867000, 0.15.1.dev1533935819, 0.15.1.dev1533941860, 0.15.1.dev1533943101, 0.15.1.dev1533949696, 0.15.1.dev1533962399, 0.15.1.dev1534007351, 0.15.1.dev1534037607, 0.15.1.dev1534182860, 0.15.1.dev1534191482, 0.15.1.dev1534192861, 0.15.1.dev1534200308, 0.15.1.dev1534221790, 0.15.1.dev1534285943, 0.15.1.dev1534359803, 0.15.1.dev1534398295, 0.15.1.dev1534441314, 0.15.1.dev1534450376, 0.15.1.dev1534786421, 0.15.1.dev1534793578, 0.15.1.dev1534798069, 0.15.1.dev1534799320, 0.15.1.dev1534799690, 0.15.1.dev1534804779, 0.15.1.dev1534808467, 0.15.1.dev1534879770, 0.15.1.dev1534880632, 0.15.1.dev1534885500, 0.15.1.dev1534890937, 0.15.1.dev1534905239, 0.15.1.dev1534966381, 0.15.1.dev1534977174, 0.15.1.dev1534981306, 0.15.1.dev1534985566, 0.15.1.dev1535150215, 0.15.1.dev1535154609, 0.15.1.dev1535382366, 0.15.1.dev1535401726, 0.15.1.dev1535405137, 0.15.1.dev1535413280, 0.15.1.dev1535492621, 0.15.1.dev1535504435, 0.15.1.dev1535518654, 0.15.1.dev1535567358, 0.15.1.dev1535579000, 0.15.1.dev1535592535, 0.15.1.dev1535645299, 0.15.1.dev1535666173, 0.15.1.dev1535674640, 0.15.1.dev1535733266, 0.15.1.dev1535756213, 0.15.1.dev1535758719, 0.15.1.dev1535903346, 0.15.1.dev1535914730, 0.15.1.dev1535921408, 0.15.1.dev1536041640, 0.15.1.dev1536075659, 0.15.1.dev1536083848, 0.15.1.dev1536096463, 0.15.1.dev1536096509, 0.15.1.dev1536132675, 0.15.1.dev1536159657, 0.15.1.dev1536177268, 0.15.1.dev1536177626, 0.15.1.dev1536181228, 0.15.1.dev1536185289, 0.15.1.dev1536189511, 0.15.1.dev1536195048, 0.15.1.dev1536210441, 0.15.1.dev1536256325, 0.15.1rc1, 0.15.1rc2, 0.15.2.dev1536263156, 0.15.2.dev1536267312, 0.15.2.dev1536276914, 0.15.2.dev1536276924, 0.15.2.dev1536338539, 0.15.2.dev1536345054, 0.15.2.dev1536358202, 0.15.2.dev1536358758, 0.15.2.dev1536617905, 0.15.2.dev1536621391, 0.15.2.dev1536622942, 0.15.2.dev1536623294, 0.15.2.dev1536703165, 0.15.2.dev1536705915, 0.15.2.dev1536710440, 0.15.2.dev1536711298, 0.15.3.dev1536719925, 0.15.3.dev1536725872, 0.15.3.dev1536727776, 0.15.3.dev1536846352, 0.15.3.dev1536855379, 0.15.3.dev1536862686, 0.15.3.dev1536892560, 0.15.3.dev1536897282, 0.15.3.dev1536980346, 0.15.3.dev1537005541, 0.15.3.dev1537206611, 0.15.3.dev1537221786, 0.15.3.dev1537222591, 0.15.3.dev1537289429, 0.15.3.dev1537296454, 0.15.3.dev1537309950, 0.15.3.dev1537346403, 0.15.3.dev1537392556, 0.15.3.dev1537395753, 0.15.4.dev1537395753, 0.15.4.dev1537474109, 0.15.4.dev1537481838, 0.15.4.dev1537541894, 0.15.4.dev1537554545, 0.15.4.dev1537556019, 0.15.4.dev1537556338, 0.15.4.dev1537648471, 0.15.4.dev1537681489, 0.15.4.dev1537795516, 0.15.4.dev1537821736, 0.15.4.dev1537829483, 0.15.4.dev1537833440, 0.15.4.dev1537833555, 0.15.4.dev1537844791, 0.15.4.dev1537898302, 0.15.4.dev1538010557, 0.15.4.dev1538023759, 0.15.4.dev1538088548, 0.15.4.dev1538143408, 0.15.4.dev1538160403, 0.15.4.dev1538161850, 0.15.5.dev1538170220, 0.15.5.dev1538240278, 0.15.5.dev1538245808, 0.15.5.dev1538265575, 0.15.5.dev1538407027, 0.15.5.dev1538412528, 0.15.5.dev1538448582, 0.15.5.dev1538502581, 0.15.5.dev1538513283, 0.15.5.dev1538521683, 0.15.5.dev1538593615, 0.15.5.dev1538597180, 0.15.5.dev1538695201, 0.15.5.dev1538769810, 0.15.5.dev1538860382, 0.15.5.dev1539018306, 0.15.5.dev1539022401, 0.15.5.dev1539043244, 0.15.5.dev1539043444, 0.15.5.dev1539109171, 0.15.5.dev1539190917, 0.15.5.dev1539209921, 0.16.0rc1, 0.16.0rc1.post1539295041, 0.16.0rc1.post1539363026, 0.16.1.dev1539365619, 0.16.1.dev1539367749, 0.16.1.dev1539622375, 0.16.1.dev1539638908, 0.16.1.dev1539729422, 0.16.1.dev1539756505, 0.16.1.dev1539794084, 0.16.1.dev1539815606, 0.16.1.dev1539886236, 0.16.1.dev1539886907, 0.16.1.dev1539905941, 0.16.1.dev1539979379, 0.16.1.dev1539994970, 0.16.2.dev1539994970, 0.16.2.dev1540246995, 0.16.2.dev1540253670, 0.16.2.dev1540256478, 0.16.2.dev1540256955, 0.16.2.dev1540303285, 0.16.2.dev1540315408, 0.16.2.dev1540322315, 0.16.2.dev1540323892, 0.16.2.dev1540328979, 0.16.2.dev1540329100, 0.16.2.dev1540331632, 0.16.2.dev1540331970, 0.16.2.dev1540414001, 0.16.2.dev1540414235, 0.16.2.dev1540414314, 0.16.2.dev1540417515, 0.16.2.dev1540490147, 0.16.2.dev1540504838, 0.16.2.dev1540519624, 0.16.2.dev1540577145, 0.16.2.dev1540584830, 0.16.2.dev1540590750, 0.16.2.dev1540593689, 0.16.2.dev1540602238, 0.16.2.dev1540622817, 0.16.2.dev1540626172, 0.16.2.dev1540680082, 0.16.2.dev1540713708, 0.16.2.dev1540756924, 0.16.2.dev1540756945, 0.16.2.dev1540756957, 0.16.2.dev1540841223, 0.16.3.dev1540842232, 0.16.3.dev1540908796, 0.16.3.dev1540932591, 0.16.3.dev1540939353, 0.16.3.dev1540946523, 0.16.3.dev1540946782, 0.16.3.dev1540946935, 0.16.3.dev1540957630, 0.16.3.dev1540961858, 0.16.3.dev1541007180, 0.16.3.dev1541018131, 0.16.3.dev1541086091, 0.16.3.dev1541093147, 0.16.3.dev1541096431, 0.16.3.dev1541102325, 0.16.3.dev1541107746, 0.16.3.dev1541112381, 0.16.3.dev1541132855, 0.16.3.dev1541202610, 0.16.3.dev1541212326, 0.16.3.dev1541445265, 0.16.3.dev1541447364, 0.16.3.dev1541449631, 0.16.3.dev1541450273, 0.16.3.dev1541454757, 0.16.3.dev1541529526, 0.16.3.dev1541532751, 0.16.3rc1, 0.16.3rc2, 0.16.4.dev1541529526, 0.16.4.dev1541651056, 0.16.4.dev1541696909, 0.16.4.dev1541699074, 0.16.4.dev1541702520, 0.16.4.dev1541702546, 0.16.4.dev1541702590, 0.16.4.dev1541707660, 0.16.4.dev1541707750, 0.16.4.dev1541707761, 0.16.4.dev1541727951, 0.16.4.dev1541730373, 0.16.4.dev1541783059, 0.16.4.dev1541786489, 0.16.4.dev1541790665, 0.16.4.dev1541796910, 0.16.4.dev1541802430, 0.16.4.dev1541802798, 0.16.4.dev1541802856, 0.16.4.dev1541899934, 0.16.4.dev1542043591, 0.16.4.dev1542047597, 0.16.4.dev1542131000, 0.16.5.dev1542138596, 0.16.5.dev1542138612, 0.16.5.dev1542158007, 0.16.5.dev1542231215, 0.16.5.dev1542325808, 0.16.5.dev1542330927, 0.16.5.dev1542420265, 0.16.6.dev1542644575, 0.16.6.dev1542655943, 0.16.6.dev1542668064, 0.16.6.dev1542668341, 0.16.6.dev1542676338, 0.16.6.dev1542708324, 0.16.6.dev1542744156, 0.16.6.dev1542752077, 0.16.6.dev1542829389, 0.16.6.dev1542839904, 0.16.6.dev1542841317, 0.16.6.dev1542844340, 0.16.6.dev1542848009, 0.16.6.dev1542849043, 0.16.6.dev1543000962, 0.16.6.dev1543114637, 0.16.6.dev1543212148, 0.16.6.dev1543252904, 0.16.6.dev1543268064, 0.16.6.dev1543332884, 0.16.6.dev1543422448, 0.16.7.dev1543434370, 0.16.7.dev1543440813, 0.16.7.dev1543516049, 0.16.7.dev1543524845, 0.16.7.dev1543738927, 0.16.7.dev1543808690, 0.16.7.dev1543854358, 0.16.7.dev1543884051, 0.16.7.dev1543963592, 0.16.7.dev1543971512, 0.16.7.dev1544042119, 0.16.7.dev1544046306, 0.16.8.dev1544133841, 0.16.8.dev1544465443, 0.16.8.dev1544481114, 0.16.8.dev1544564569, 0.16.8.dev1544649892, 0.16.8.dev1544759906, 0.16.8.dev1544916739, 0.16.8.dev1544936693, 0.16.8.dev1544998603, 0.16.9.dev1545073195, 0.16.9.dev1545091231, 0.16.9.dev1545168124, 0.16.9.dev1545168352, 0.16.9.dev1545179593, 0.16.9.dev1545254396, 0.16.9.dev1545344966, 0.16.9.dev1545348870, 0.16.9.dev1545674191, 0.16.9.dev1545675812, 0.16.10.dev1545712904, 0.16.10.dev1546038363, 0.16.10.dev1546456747, 0.16.10.dev1546538591, 0.16.10.dev1546560381, 0.16.10.dev1546573207, 0.16.10.dev1546637027, 0.16.10.dev1546645467, 0.16.10.dev1546761491, 0.16.10.dev1546883969, 0.16.10.dev1546894388, 0.16.10.dev1547153953, 0.16.10.dev1547154899, 0.16.10.dev1547484689, 0.16.10.dev1547485278, 0.16.10.dev1547490046, 0.16.10.dev1547508098, 0.16.11.dev1547494041, 0.16.11.dev1547507911, 0.16.11.dev1547514350, 0.16.11.dev1547518764, 0.16.11.dev1547577748, 0.16.11.dev1547579062, 0.16.11.dev1547593909, 0.16.11.dev1547665405, 0.16.11.dev1547668781, 0.16.11.dev1547669177, 0.16.11.dev1547674599, 0.16.11.dev1547675526, 0.16.11.dev1547686073, 0.16.12.dev1547745262, 0.16.12.dev1547757713, 0.16.12.dev1547836536, 0.16.12.dev1547848777, 0.16.12.dev1547859612, 0.16.12.dev1548126717, 0.16.12.dev1548182377, 0.16.12.dev1548203152, 0.16.12.dev1548262668, 0.16.12.dev1548264779, 0.16.12.dev1548279205, 0.16.12.dev1548352334, 0.16.12.dev1548358985, 0.16.12.dev1548452628, 0.16.13.dev1548462877, 0.16.13.dev1548554351, 0.16.13.dev1548697590, 0.16.13.dev1548725896, 0.16.13.dev1548911379, 0.16.14.dev1548959763, 0.16.14.dev1548963775, 0.16.14.dev1548964247, 0.16.15.dev1548967161, 0.16.15.dev1548971324, 0.16.15.dev1548972591, 0.16.15.dev1548973673, 0.16.15.dev1548974882, 0.16.15.dev1548975301, 0.16.15.dev1548979917, 0.16.15.dev1548983464, 0.16.15.dev1548986357, 0.16.15.dev1548986897, 0.16.15.dev1548987388, 0.16.15.dev1549049269, 0.16.15.dev1549064976, 0.16.15.dev1549234281, 0.16.15.dev1549314945, 0.16.15.dev1549319442, 0.16.15.dev1549321584, 0.16.15.dev1549360184, 0.16.15.dev1549401287, 0.16.15.dev1549403931, 0.16.15.dev1549581902, 0.16.15.dev1549641933, 0.16.15.dev1549682038, 0.16.15.dev1549927697, 0.16.15.dev1550011783, 0.16.15.dev1550095529, 0.16.15.dev1550185082, 0.16.15.dev1550253319, 0.16.15.dev1550260923, 0.16.15.dev1550621277, 0.16.15.dev1550622800, 0.16.15.dev1550622944, 0.16.15.dev1550623008, 0.16.15.dev1550623652, 0.16.15.dev1550623846, 0.16.15.dev1550624095, 0.16.15.dev1550683201, 0.16.15.dev1550725228, 0.16.15.dev1550729385, 0.16.15.dev1550729538, 0.16.15.dev1550777338, 0.16.15.dev1550780260, 0.16.15.dev1550783395, 0.16.15.dev1550785804, 0.16.15.dev1550788562, 0.16.15.dev1550793540, 0.16.15.dev1550799428, 0.16.15.dev1550800434, 0.16.15.dev1550809109, 0.16.15.dev1550809158, 0.16.15.dev1550809247, 0.16.15.dev1550810656, 0.16.16.dev1550826000, 0.16.16.dev1550859542, 0.16.16.dev1550860139, 0.16.16.dev1550865772, 0.16.16.dev1550871588, 0.16.16.dev1550876681, 0.16.16.dev1550877278, 0.16.16.dev1550972989, 0.16.16.dev1550975400, 0.16.16.dev1550979668, 0.16.16.dev1550980468, 0.16.16.dev1551039256, 0.16.17.dev1551040663, 0.16.17.dev1551075715, 0.16.17.dev1551128512, 0.16.17.dev1551204546, 0.16.17.dev1551217173, 0.16.17.dev1551219163, 0.16.17.dev1551237861, 0.16.17.dev1551260726, 0.16.17.dev1551262536, 0.16.17.dev1551300104, 0.16.18.dev1551301177, 0.16.18.dev1551308036, 0.16.18.dev1551312054, 0.16.18.dev1551381103, 0.16.18.dev1551394595, 0.16.18.dev1551395508, 0.16.18.dev1551395670, 0.16.18.dev1551395753, 0.16.18.dev1551396018, 0.16.18.dev1551396568, 0.16.18.dev1551396575, 0.16.18.dev1551399481, 0.16.18.dev1551470510, 0.16.18.dev1551483758, 0.16.18.dev1551491006, 0.16.19.dev1551495372, 0.16.19.dev1551553449, 0.16.19.dev1551729798, 0.16.19.dev1551729995, 0.16.20.dev1551742427, 0.16.20.dev1551742574, 0.16.20.dev1551742725, 0.16.20.dev1551744692, 0.16.20.dev1551745004, 0.16.20.dev1551811764, 0.16.20.dev1551819449, 0.16.20.dev1551823867, 0.16.20.dev1551824169, 0.16.20.dev1551824408, 0.16.20.dev1551828120, 0.16.20.dev1551831833, 0.16.20.dev1551832717, 0.17.1.dev1551835793, 0.17.1.dev1551846891, 0.17.2.dev1551869888, 0.17.2.dev1551898604, 0.17.2.dev1551903444, 0.17.2.dev1551905838, 0.17.2.dev1551919279, 0.17.2.dev1551941155, 0.17.2.dev1551991643, 0.17.2.dev1552337400, 0.17.2.dev1552340655, 0.17.2.dev1552342621, 0.17.2.dev1552352508, 0.17.2.dev1552422930, 0.17.2.dev1552431403, 0.17.2.dev1552494285, 0.17.2.dev1552504893, 0.17.2.dev1552509793, 0.17.2.dev1552509824, 0.17.2.dev1552510801, 0.17.2.dev1552521737, 0.17.2.dev1552524770, 0.17.2.dev1552525249, 0.17.2.dev1552687297, 0.17.3.dev1552954152, 0.17.3.dev1552966903, 0.17.3.dev1553018673, 0.17.3.dev1553020517, 0.17.3.dev1553024410, 0.17.3.dev1553037710, 0.17.3.dev1553107964, 0.17.3.dev1553108072, 0.17.3.dev1553118972, 0.17.3.dev1553133103, 0.17.3.dev1553153374, 0.17.3.dev1553199826, 0.17.3.dev1553294017, 0.17.3.dev1553298518, 0.17.3.dev1553616255, 0.17.3.dev1553619592, 0.17.3.dev1553632174, 0.17.4.dev1553638638, 0.17.5.dev1553644417, 0.17.5.dev1553714258, 0.17.5.dev1553722829, 0.17.5.dev1553797354, 0.17.5.dev1553804767, 0.17.5.dev1553810647, 0.17.5.dev1553813034, 0.17.5.dev1553819271, 0.17.5.dev1553823063, 0.17.5.dev1553881877, 0.17.5.dev1553887662, 0.17.5.dev1553888823, 0.17.5.dev1553889157, 0.17.5.dev1553906056, 0.17.5.dev1553979932, 0.17.5.dev1553980259, 0.17.5.dev1554337375, 0.17.5.dev1554422101, 0.17.5.dev1554741845, 0.17.6.dev1554747661, 0.17.6.dev1554872119, 0.17.6.dev1554939813, 0.17.7.dev1555020628, 0.17.7.dev1555434403, 0.17.7.dev1555478401, 0.17.7.dev1555546345, 0.17.8.dev1555525502, 0.17.8.dev1555626739, 0.17.8.dev1555966356, 0.17.8.dev1555966488, 0.17.8.dev1556025681, 0.17.8.dev1556038424, 0.17.8.dev1556042571, 0.17.8.dev1556050916, 0.17.9.dev1556072646, 0.17.9.dev1556164539, 0.17.9.dev1556242717, 0.17.9.dev1556296793, 0.17.9.dev1556399003, 0.17.9.dev1556559969, 0.17.9.dev1556569935, 0.17.9.dev1556647318, 0.17.10.dev1556727473, 0.17.10.dev1556739558, 0.17.10.dev1556817900, 0.17.10.dev1556818447, 0.17.10.dev1556841120, 0.17.10.dev1556841215, 0.17.11.dev1556845688, 0.17.11.dev1557032297, 0.17.11.dev1557176418, 0.17.11.dev1557254953, 0.17.11.dev1557332759, 0.17.11.dev1557460755, 0.17.11.dev1557532509, 0.17.11.dev1557542158, 0.17.11.dev1557770015, 0.17.11.dev1557787508, 0.17.12.dev1557865658, 0.17.12.dev1557937923, 0.17.12.dev1557952879, 0.17.12.dev1557962425, 0.17.13.dev1558136549, 0.17.13.dev1558377782, 0.17.13.dev1558377960, 0.17.13.dev1558405162, 0.17.13.dev1558453677, 0.17.13.dev1558458803, 0.17.13.dev1558483914, 0.17.13.dev1558487504, 0.17.13.dev1558491618, 0.17.14.dev1558529872, 0.17.14.dev1558552960, 0.17.14.dev1558611671, 0.17.14.dev1558633030, 0.17.14.dev1558636007, 0.17.14.dev1558739542, 0.17.14.dev1558779038, 0.17.14.dev1559066096, 0.17.15.dev1559089901, 0.17.15.dev1559154179, 0.17.15.dev1559237762, 0.17.15.dev1559239487, 0.17.15.dev1559250757, 0.17.15.dev1559262941, 0.17.15.dev1559263680, 0.17.15.dev1559340882, 0.17.15.dev1559350373, 0.17.15.dev1559368861, 0.17.15.dev1559581139, 0.17.15.dev1559589391, 0.17.15.dev1559599009, 0.17.15.dev1559669273, 0.17.16.dev1559777246, 0.17.16.dev1559854144, 0.17.16.dev1559859071, 0.17.16.dev1559860827, 0.17.16.dev1559863212, 0.17.17.dev1559897244, 0.17.17.dev1559929026, 0.17.17.dev1560200795, 0.17.17.dev1560283109, 0.17.17.dev1560297457, 0.17.18.dev1560379637, 0.17.18.dev1560467053, 0.17.18.dev1560472770, 0.17.18.dev1560526288, 0.17.18.dev1560799556, 0.17.18.dev1560803278, 0.17.18.dev1560880109, 0.17.18.dev1560880454, 0.17.18.dev1560881333, 0.17.18.dev1560894281, 0.17.18.dev1560897025, 0.17.18.dev1560897512, 0.17.18.dev1560973384, 0.17.18.dev1560987722, 0.17.19.dev1561101381, 0.17.19.dev1561140019, 0.17.19.dev1561167252, 0.17.19.dev1561176624, 0.17.19.dev1561254038, 0.17.19.dev1561270150, 0.17.19.dev1561270212, 0.17.19.dev1561271503, 0.17.19.dev1561277079, 0.17.20.dev1561334169, 0.17.21.dev1561402480, 0.17.21.dev1561496777, 0.17.21.dev1561581960, 0.17.21.dev1561587367, 0.17.22.dev1561651131, 0.17.22.dev1561740021, 0.17.22.dev1561747579, 0.17.22.dev1561848680, 0.17.22.dev1562009659, 0.17.22.dev1562015064, 0.17.22.dev1562017255, 0.17.22.dev1562093464, 0.17.22.dev1562111312, 0.17.22.dev1562258197, 0.17.22.dev1562628801, 0.17.22.dev1562708393, 0.17.22.dev1562712516, 0.17.22.dev1562718155, 0.17.23.dev1562886982, 0.17.23.dev1562952759, 0.17.23.dev1562955121, 0.17.23.dev1562962205, 0.17.23.dev1562975923, 0.17.23.dev1563225988, 0.17.23.dev1563263913, 0.17.23.dev1563285293, 0.17.24.dev1563300926, 0.17.24.dev1563304341, 0.17.24.dev1563312721, 0.17.24.dev1563383513, 0.17.24.dev1563495581, 0.17.24.dev1563556705, 0.17.25.dev1563560071, 0.17.25.dev1563560768, 0.17.25.dev1563563295, 0.17.25.dev1563564216, 0.17.25.dev1563565788, 0.17.25.dev1563568300, 0.17.26.dev1563578404, 0.17.26.dev1563579960, 0.17.26.dev1563631458, 0.17.26.dev1563815546, 0.17.26.dev1563840575, 0.17.26.dev1563853337, 0.17.26.dev1563914361, 0.17.26.dev1564012611, 0.17.26.dev1564057342, 0.17.26.dev1564066699, 0.17.26.dev1564073892, 0.17.26.dev1564078720, 0.17.26.dev1564078866, 0.17.26.dev1564088655, 0.17.26.dev1564089823, 0.17.26.dev1564091035, 0.17.26.dev1564091081, 0.17.26.dev1564093267, 0.17.26.dev1564119608, 0.17.26.dev1564156493, 0.17.26.dev1564187757, 0.17.26.dev1564192579, 0.17.26.dev1564192705, 0.17.26.dev1564194206, 0.17.26.dev1564195038, 0.17.26.dev1564197190, 0.17.26.dev1564197320, 0.17.26.dev1564325613, 0.17.26.dev1564430305, 0.17.26.dev1564500913, 0.17.27.dev1564166180, 0.17.27.dev1564194787, 0.17.27.dev1564422843, 0.17.27.dev1564426870, 0.17.28.dev1564429871, 0.17.28.dev1564511556, 0.17.28.dev1564527104, 0.17.28.dev1564591147, 0.17.28.dev1564597413, 0.17.28.dev1564597740, 0.17.28.dev1564598105, 0.17.28.dev1564620179, 0.17.28.dev1564620266, 0.17.28.dev1564629364, 0.17.28.dev1564680107, 0.17.28.dev1564680832, 0.17.28.dev1564684052, 0.17.28.dev1564714807, 0.17.28.dev1564765191, 0.17.28.dev1564780796, 0.17.28.dev1564789976, 0.17.28.dev1564853359, 0.17.28.dev1565030811, 0.17.29.dev1565031355, 0.17.29.dev1565034244, 0.17.29.dev1565038663, 0.17.29.dev1565039660, 0.17.29.dev1565067219, 0.17.29.dev1565133393, 0.17.29.dev1565134325, 0.17.29.dev1565136573, 0.17.29.dev1565138152, 0.17.29.dev1565138374, 0.17.29.dev1565203360, 0.17.29.dev1565208769, 0.17.29.dev1565222817, 0.17.29.dev1565280876, 0.17.29.dev1565319071, 0.17.29.dev1565380431, 0.17.29.dev1565394508, 0.17.29.dev1565634815, 0.17.29.dev1565639148, 0.17.29.dev1565650820, 1.0.0b1, 1.0.0b2, 1.0.0b3, 1.0.0b4, 1.0.0rc1, 1.0.1a1565725696, 1.0.1a1565725809, 1.0.1a1565802230, 1.0.1a1565805244, 1.0.1a1565821618, 1.0.1a1565823303, 1.0.1a1565898171, 1.0.1a1565978562, 1.0.1a1565978643, 1.0.1a1565985152, 1.0.1a1565985182, 1.0.1a1565987974, 1.0.1a1566196114, 1.0.1a1566199262, 1.0.1a1566237044, 1.0.1a1566245956, 1.0.1a1566288489, 1.0.1a1566312145, 1.0.1a1566328728, 1.0.1a1566333332, 1.0.1a1566337428, 1.0.1a1566338487, 1.0.1a1566341462, 1.0.1a1566346193, 1.0.1a1566407342, 1.0.1a1566507403, 1.0.1a1566542431, 1.0.1a1566544194, 1.0.1a1566564329, 1.0.1a1566580137, 1.0.1a1566595600, 1.0.1a1566597624, 1.0.1a1566608286, 1.0.1a1566857954, 1.0.1a1566870553, 1.0.1a1566876240, 1.0.1a1566919676, 1.0.1a1566921661, 1.0.1a1566951575, 1.0.1a1566953809, 1.0.1a1567100951, 1.0.1a1567223199, 1.0.1a1567441785, 1.0.1a1567711248, 1.0.1a1567716258, 1.0.1a1567802997, 1.0.1a1567803187, 1.0.1a1567810324, 1.0.1a1567814874, 1.0.1a1567833034, 1.0.1a1568052942, 1.0.1a1568053914, 1.0.1a1568058852, 1.0.1a1568059895, 1.0.1a1568066980, 1.0.1a1568143792, 1.0.1a1568147070, 1.0.1a1568147157, 1.0.1a1568147292, 1.0.1a1568157552, 1.0.1a1568158243, 1.0.1a1568213878, 1.0.1a1568220004, 1.0.1a1568224484, 1.2.0a1568237507, 1.2.0a1568244095, 1.2.0a1568314231, 1.2.0a1568328106, 1.2.0a1568401103, 1.2.0a1568668603, 1.2.0a1568709726, 1.2.0a1568769250, 1.2.0a1568842028, 1.2.0a1568842122, 1.2.0a1568847500, 1.2.0a1568946494, 1.2.0a1569027044, 1.2.0a1569339067, 1.2.0a1569370546, 1.2.0a1569445380, 1.2.0a1569447673, 1.2.0a1569458736, 1.2.0a1569526057, 1.3.0a1569536589, 1.3.0a1569623173, 1.3.0a1569781657, 1.3.0a1569857627, 1.3.0a1569866638, 1.3.0a1569880161, 1.3.0a1569912116, 1.3.0a1569957126, 1.3.0a1569962082, 1.3.0a1570057498, 1.3.0a1570084138, 1.3.0a1570084449, 1.3.0a1570119193, 1.3.0a1570446696, 1.3.0a1570570960, 1.3.0a1570571400, 1.3.0a1570572106, 1.3.0a1570572423, 1.4.0a1570654228, 1.4.0a1570654270, 1.4.0a1570658762, 1.4.0a1570659171, 1.4.0a1570677376, 1.4.0a1570727751, 1.4.0a1570736199, 1.4.0a1570738297, 1.4.0a1570739589, 1.4.0a1570739630, 1.4.0a1570739690, 1.4.0a1570740618, 1.4.0a1570747820, 1.4.0a1570748008, 1.4.0a1570748572, 1.4.0a1570749060, 1.4.0a1570756027, 1.4.0a1570756164, 1.4.0a1570756217, 1.4.0a1570762305, 1.4.0a1570767328, 1.4.0a1570767707, 1.4.0a1570767786, 1.4.0a1570768084, 1.4.0a1570831407, 1.4.0a1570900028, 1.4.0a1570913637, 1.4.0a1570916695, 1.4.0a1570918664, 1.4.0a1570919493, 1.4.0a1570919688, 1.4.0a1570921562, 1.4.0a1570926133, 1.4.0a1570929710, 1.4.0a1570933793, 1.4.0a1570957629, 1.4.0a1570960944, 1.4.0a1571004183, 1.4.0a1571075989, 1.4.0a1571077695, 1.4.0a1571078010, 1.4.0a1571088642, 1.4.0a1571099193, 1.4.0a1571099700, 1.4.0a1571116086, 1.4.0a1571158911, 1.4.0a1571168319, 1.4.0a1571168590, 1.4.0a1571168903, 1.4.0a1571170102, 1.4.0a1571170194, 1.4.0a1571170603, 1.4.0a1571171372, 1.4.0a1571173738, 1.4.0a1571176312, 1.4.0a1571176382, 1.4.0a1571176671, 1.4.0a1571179077, 1.4.0a1571179660, 1.4.0a1571183049, 1.4.0a1571183925, 1.4.0a1571250230, 1.4.0a1571252291, 1.4.0a1571254777, 1.4.0a1571264383, 1.4.0a1571278684, 1.4.0a1571357565, 1.4.0a1571428973, 1.4.0a1571434319, 1.4.0a1571710179, 1.4.0a1571757097, 1.4.0a1571778787, 1.4.0a1571863080, 1.4.0a1571868896, 1.5.0a1571937468, 1.5.0a1571946704, 1.5.0a1571947445, 1.5.0a1571950226, 1.5.0a1571952201, 1.5.0a1571952977, 1.5.0a1571953216, 1.5.0a1571953566, 1.5.0a1571954676, 1.5.0a1571958356, 1.5.0a1571963613, 1.5.0a1571998015, 1.5.0a1572009709, 1.5.0a1572017342, 1.5.0a1572025693, 1.5.0a1572025718, 1.5.0a1572027457, 1.5.0a1572030194, 1.5.0a1572032014, 1.5.0a1572033621, 1.5.0a1572038792, 1.5.0a1572040038, 1.5.0a1572041908, 1.5.0a1572047990, 1.5.0a1572124662, 1.5.0a1572159976, 1.5.0a1572287992, 1.5.0a1572288103, 1.5.0a1572296496, 1.5.0a1572371730, 1.5.0a1572385721, 1.5.0a1572386095, 1.5.0a1572392835, 1.6.0a1573673699, 1.6.0a1573710357, 1.6.0a1573742921, 1.6.0a1573752355, 1.6.0a1573843993, 1.6.0a1573941340, 1.6.0a1574091091, 1.6.0a1574101752, 1.6.0a1574124439, 1.6.0a1574132007, 1.6.0a1574137705, 1.6.0a1574179103, 1.6.0a1574187546, 1.6.0a1574189153, 1.6.0a1574189267, 1.6.0a1574193386, 1.6.0a1574193689, 1.6.0a1574196674, 1.6.0a1574198993, 1.6.0a1574205788, 1.6.0a1574207123, 1.6.0a1574218107, 1.6.0a1574226651, 1.7.0a1574276876, 1.7.0a1574283177, 1.7.0a1574314838, 1.7.0a1574365905, 1.7.0a1574369988, 1.7.0a1574370075, 1.7.0a1574372774, 1.7.0a1574373939, 1.7.0a1574377110, 1.7.0a1574379361, 1.7.0a1574443475, 1.7.0a1574449382, 1.7.0a1574699853, 1.7.0a1574719806, 1.7.0a1574724672, 1.7.0a1574743805, 1.7.0a1574803414, 1.7.0a1575327018, 1.7.0a1575327295, 1.7.0a1575336393, 1.7.0a1575357752, 1.7.0a1575388145, 1.7.0a1575453723, 1.7.0a1575484720, 1.7.0a1575548199, 1.7.0a1575838501, 1.7.0a1575919700, 1.7.0a1575931734, 1.7.0a1575933382, 1.7.0a1575942133, 1.7.0a1575967228, 1.7.0a1575976814, 1.8.0a1576088549, 1.8.0a1576170806, 1.8.0a1576189556, 1.8.0a1576189587, 1.8.0a1576264699, 1.8.0a1576518451, 1.8.0a1576519074, 1.8.0a1576524207, 1.8.0a1576546056, 1.8.0a1576609245, 1.8.0a1576609519, 1.8.0a1576618272, 1.8.0a1576620705, 1.8.0a1576625670, 1.8.0a1576638249, 1.8.0a1576644331, 1.8.0a1576658208, 1.8.0a1576659513, 1.8.0a1576662389, 1.8.0a1576698383, 1.8.0a1576793874, 1.9.0a1576874938, 1.9.0a1576880278, 1.9.0a1576939902, 1.9.0a1577043607, 1.9.0a1577044189, 1.9.0a1577086272, 1.9.0a1577730288, 1.9.0a1578001443, 1.9.0a1578089799, 1.9.0a1578185806, 1.9.0a1578327795, 1.9.0a1578421822, 1.9.0a1578428310, 1.9.0a1578429815, 1.9.0a1578430940, 1.9.0a1578430995, 1.9.0a1578509960, 1.9.0a1578521367, 1.9.0a1578676726, 1.9.0a1578949336, 1.9.0a1578957465, 1.9.0a1578963341, 1.9.0a1578963677, 1.9.0a1579031353, 1.9.0a1579031921, 1.9.0a1579038399, 1.9.0a1579043060, 1.9.0a1579127845, 1.9.0a1579128120, 1.9.0a1579131850, 1.9.0a1579132036, 1.9.0a1579135362, 1.9.0a1579135712, 1.9.0a1579136894, 1.9.0a1579138752, 1.9.0a1579147939, 1.9.0a1579203036, 1.9.0a1579205091, 1.9.0a1579215552, 1.9.0a1579286869, 1.9.0a1579294804, 1.9.0a1579301108, 1.9.0a1579302096, 1.9.0a1579302307, 1.9.0a1579303601, 1.9.0a1579360117, 1.9.0a1579418714, 1.9.0a1579543196, 1.9.0a1579552990, 1.9.0a1579555679, 1.9.0a1579595264, 1.9.0a1579629177, 1.9.0a1579637005, 1.9.0a1579642066, 1.9.0a1579646748, 1.9.0a1579647954, 1.9.0a1579677131, 1.9.0a1579736120, 1.10.0a1579735020, 1.10.0a1579802438, 1.10.0a1579804958, 1.10.0a1579813667, 1.10.0a1579887407, 1.10.0a1579889914, 1.10.0a1579896492, 1.10.0a1579898233, 1.10.0a1579920553, 1.10.0a1579983540, 1.10.0a1580058395, 1.10.0a1580073553, 1.10.0a1580145263, 1.10.0a1580149352, 1.10.0a1580150134, 1.10.0a1580154387, 1.10.0a1580154864, 1.10.0a1580304762, 1.10.0a1580324013, 1.10.0a1580327865, 1.10.0a1580342564, 1.10.0a1580342649, 1.10.0a1580365172, 1.10.0a1580367947, 1.10.0a1580411451, 1.10.0a1580416111, 1.10.0a1580419901, 1.10.0a1580767915, 1.10.0a1580816471, 1.10.0a1580871384, 1.10.0a1580872897, 1.10.0a1580934150, 1.11.0a1581010088, 1.11.0a1581010146, 1.11.0a1581010353, 1.11.0a1581012046, 1.11.0a1581017645, 1.11.0a1581019333, 1.11.0a1581020706, 1.11.0a1581031781, 1.11.0a1581097400, 1.11.0a1581106259, 1.11.0a1581107783, 1.11.0a1581108262, 1.11.0a1581120694, 1.11.0a1581361451, 1.11.0a1581373842, 1.11.0a1581374623, 1.11.0a1581375377, 1.11.0a1581375451, 1.11.0a1581375497, 1.11.0a1581380237, 1.11.0a1581417614, 1.11.0a1581460462, 1.11.0a1581529736, 1.11.0a1581531205, 1.11.0a1581619256, 1.11.0a1581625557, 1.11.0a1581635806, 1.11.0a1581662292, 1.11.0a1581731767, 1.11.0a1581964846, 1.11.0a1582132863, 1.11.0a1582135571, 1.12.0a1582273492, 1.12.0a1582296093, 1.12.0a1582318527, 1.12.0a1582321890, 1.12.0a1582428726, 1.12.0a1582556675, 1.12.0a1582590023, 1.12.0a1582593116, 1.12.0a1582652338, 1.12.0a1582666003, 1.12.0a1582681536, 1.12.0a1582738751, 1.12.0a1582739139, 1.12.0a1582758529, 1.12.0a1582826674, 1.12.0a1582836555, 1.12.0a1582848647, 1.12.0a1582849453, 1.12.0a1582912895, 1.12.0a1582922933, 1.12.0a1582939370, 1.12.0a1582980406, 1.12.0a1583102506, 1.12.0a1583166781, 1.12.0a1583182110, 1.12.0a1583183063, 1.12.0a1583186351, 1.12.0a1583187820, 1.12.0a1583192454, 1.12.0a1583255226, 1.12.0a1583296375, 1.13.0a1583422891, 1.13.0a1583425337, 1.13.0a1583521281, 1.13.0a1583545818, 1.13.0a1583598875, 1.13.0a1583701915, 1.13.0a1583728094, 1.13.0a1583773158, 1.13.0a1583775320, 1.13.0a1583793851, 1.13.0a1583813203, 1.13.0a1583830378, 1.13.0a1583894425, 1.13.0a1583913336, 1.13.0a1583964601, 1.13.0a1583966535, 1.13.0a1583974692, 1.13.0a1584028192, 1.13.0a1584037204, 1.13.0a1584044168, 1.13.0a1584054059, 1.13.0a1584072587, 1.13.0a1584074634, 1.13.0a1584131405, 1.13.0a1584311768, 1.13.0a1584376852, 1.13.0a1584398702, 1.13.0a1584412868, 1.13.0a1584473733, 1.13.0a1584475783, 1.13.0a1584477460, 1.13.0a1584556753, 1.13.0a1584560505, 1.13.0a1584562474, 1.13.0a1584564685, 1.13.0a1584565045, 1.13.0a1584569895, 1.13.0a1584570310, 1.13.0a1584573357, 1.14.0a1584575870, 1.14.0a1584579278, 1.14.0a1584601202, 1.14.0a1584631960, 1.14.0a1584632503, 1.14.0a1584632596, 1.14.0a1584645498, 1.14.0a1584717478, 1.14.0a1584730885, 1.14.0a1584739852, 1.14.0a1584741552, 1.14.0a1584748293, 1.14.0a1584819462, 1.14.0a1584906523, 1.14.0a1584998234, 1.14.0a1585000623, 1.14.0a1585004865, 1.14.0a1585070301, 1.14.0a1585081836, 1.14.0a1585112365, 1.14.0a1585154141, 1.14.0a1585165023, 1.14.0a1585175302, 1.14.0a1585662774, 1.14.0a1585668298, 1.14.0a1585675576, 1.14.0a1585678514, 1.14.0a1585689489, 1.14.0a1585720835, 1.14.0a1585739455, 1.14.0a1585751960, 1.15.0a1585769028, 1.15.0a1585773098, 1.15.0a1585773468, 1.15.0a1585786943, 1.15.0a1585787941, 1.15.0a1585851971, 1.15.0a1585853621, 1.15.0a1585857689, 1.15.0a1585867500, 1.15.0a1585882748, 1.15.0a1585882874, 1.15.0a1585885627, 1.15.0a1585887792, 1.15.0a1585891732, 1.15.0a1585892173, 1.15.0a1585895225, 1.15.0a1585895345, 1.15.0a1585895620, 1.15.0a1585950773, 1.15.0a1586201440, 1.15.0a1586209852, 1.15.0a1586217693, 1.15.0a1586227396, 1.15.0a1586276750, 1.15.0a1586285465, 1.15.0a1586287332, 1.15.0a1586287655, 1.15.0a1586294373, 1.15.0a1586300000, 1.15.0a1586363581, 1.15.0a1586443423, 1.15.0a1586443954, 1.15.0a1586450618, 1.15.0a1586459766, 1.15.0a1586460086, 1.15.0a1586466796, 1.15.0a1586473037, 1.15.0a1586474170, 1.15.0a1586475472, 1.15.0a1586489367, 1.15.0a1586534472, 1.15.0a1586543012, 1.15.0a1586543158, 1.15.0a1586552872, 1.15.0a1586560325, 1.15.0a1586568494, 1.15.0a1586668803, 1.15.0a1586706248, 1.15.0a1586720090, 1.15.0a1586726327, 1.15.0a1586811737, 1.15.0a1586814428, 1.15.0a1586818116, 1.15.0a1586824058, 1.15.0a1586830316, 1.15.0a1586843316, 1.15.0a1586852672, 1.15.0a1586854518, 1.15.0a1586859459, 1.15.0a1586869329, 1.15.0a1586890423, 1.15.0a1586893222, 1.15.0a1586896493, 1.15.0a1586897963, 1.15.0a1586961078, 1.15.0a1586969296, 1.15.0a1586973542, 1.15.0a1586977088, 1.15.0a1586980588, 1.15.0a1587001960, 1.15.0a1587015980, 1.15.0a1587021042, 1.15.0a1587052574, 1.15.0a1587053126, 2.0.0b2, 2.0.0b3, 2.1.0a1585943256, 2.1.0a1586362871, 2.1.0a1586443510, 2.1.0a1586464205, 2.1.0a1586726365, 2.1.0a1587080674, 2.1.0a1587137084, 2.1.0a1587148759, 2.1.0a1587149106, 2.1.0a1587149162, 2.1.0a1587149400, 2.1.0a1587157263, 2.1.0a1587167327, 2.1.0a1587203147, 2.1.0a1587216074, 2.1.0a1587228685, 2.1.0a1587240403, 2.1.0a1587240439, 2.1.0a1587244628, 2.1.0a1587411452, 2.1.0a1587415401, 2.1.0a1587417950, 2.1.0a1587422622, 2.1.0a1587425765, 2.1.0a1587468524, 2.1.0a1587474541, 2.1.0a1587489882, 2.1.0a1587490766, 2.1.0a1587501218, 2.1.0a1587508528, 2.1.0a1587575615, 2.1.0a1587576319, 2.1.0a1587595351, 2.1.0a1587599397, 2.1.0a1587687509, 2.1.0a1587743126, 2.1.0a1587743572, 2.1.0a1587765998, 2.1.0a1587775511, 2.1.0a1587780169, 2.1.0a1587791064, 2.1.0a1588004101, 2.1.0a1588005389, 2.1.0a1588019398, 2.1.0a1588034617, 2.1.0a1588034821, 2.1.0a1588119007, 2.1.0a1588122140, 2.1.0a1588179800, 2.2.0a1588193361, 2.2.0a1588257957, 2.2.0a1588268328, 2.2.0a1588273007, 2.2.0a1588276325, 2.2.0a1588278144, 2.2.0a1588279445, 2.2.0a1588279472, 2.2.0a1588283558, 2.2.0a1588289665, 2.2.0a1588353110, 2.2.0a1588355527, 2.2.0a1588358552, 2.2.0a1588367422, 2.2.0a1588378436, 2.2.0a1588454251, 2.2.0a1588548453, 2.2.0a1588611004, 2.2.0a1588627612, 2.2.0a1588629875, 2.2.0a1588703447, 2.2.0a1588713749, 2.2.0a1588716590, 2.2.0a1588734838, 2.2.0a1588740713, 2.2.0a1588784960, 2.2.0a1588792291, 2.2.0a1588867920, 2.2.0a1588878940, 2.2.0a1588893806, 2.2.0a1588961601, 2.2.0a1588961743, 2.2.0a1588964519, 2.2.0a1588984168, 2.2.0a1588985828, 2.2.0a1589217716, 2.2.0a1589220990, 2.2.0a1589221056, 2.2.0a1589231753, 2.2.0a1589323057, 2.2.0a1589366252, 2.2.0a1589372682, 2.2.0a1589374862, 2.2.0a1589383526, 2.2.0a1589383853, 2.2.0a1589392537, 2.2.0a1589394756, 2.3.0a1589415179, 2.3.0a1589428104, 2.3.0a1589470992, 2.3.0a1589475959, 2.3.0a1589476750, 2.3.0a1589488557, 2.3.0a1589488996, 2.3.0a1589489000, 2.3.0a1589491035, 2.3.0a1589491786, 2.3.0a1589561484, 2.3.0a1589563087, 2.3.0a1589589236, 2.3.0a1589812928, 2.3.0a1589813021, 2.3.0a1589815092, 2.3.0a1589848511, 2.3.0a1589876318, 2.3.0a1589879518, 2.3.0a1589881266, 2.3.0a1589915184, 2.3.0a1589932286, 2.3.0a1589940935, 2.3.0a1589993680, 2.3.0a1589993709, 2.3.0a1590081813, 2.3.0a1590096450, 2.3.0a1590129985, 2.3.0a1590140854, 2.3.0a1590184414, 2.3.0a1590184875, 2.3.0a1590413780, 2.3.0a1590423417, 2.3.0a1590495536, 2.3.0a1590509142, 2.3.0a1590513176, 2.3.0a1590567278, 2.3.0a1590589933, 2.3.0a1590595107, 2.4.0a1590611388, 2.4.0a1590663693, 2.4.0a1590698869, 2.4.0a1590705459, 2.4.0a1590708170, 2.4.0a1590708288, 2.4.0a1590748733, 2.4.0a1590772212, 2.4.0a1590780976, 2.4.0a1590789565, 2.4.0a1590791742, 2.4.0a1591037410, 2.4.0a1591053861, 2.4.0a1591124435, 2.4.0a1591146921, 2.4.0a1591223804, 2.4.0a1591266563, 2.4.0a1591307481, 2.4.0a1591377078, 2.4.0a1591396867, 2.4.0a1591408320, 2.4.0a1591546869, 2.4.0a1591634188, 2.4.0a1591645497, 2.4.0a1591646876, 2.4.0a1591662252, 2.4.0a1591738382, 2.4.0a1591746173, 2.4.0a1591809713, 2.5.0a1591822510, 2.5.0a1591827119, 2.5.0a1591838645, 2.5.0a1591891853, 2.5.0a1591901546, 2.5.0a1591904055, 2.5.0a1591914699, 2.5.0a1591990916, 2.5.0a1592004906, 2.5.0a1592250549, 2.5.0a1592263025, 2.5.0a1592287202, 2.5.0a1592360826, 2.5.0a1592414816, 2.5.0a1592422259, 2.5.0a1592427765, 2.5.0a1592436927, 2.5.0a1592439579, 2.5.0a1592466146, 2.5.0a1592508735, 2.5.0a1592510962, 2.5.0a1592515031, 2.5.0a1592524675, 2.5.0a1592526772, 2.5.0a1592840300, 2.5.0a1592844574, 2.5.0a1592848693, 2.5.0a1592854856, 2.5.0a1592935220, 2.5.0a1592942542, 2.5.0a1592953913, 2.5.0a1593011465, 2.5.0a1593022046, 2.5.0a1593024063, 2.5.0a1593031998, 2.6.0a1593104340, 2.6.0a1593111085, 2.6.0a1593111117, 2.6.0a1593187536, 2.6.0a1593195953, 2.6.0a1593197233, 2.6.0a1593205311, 2.6.0a1593469781, 2.6.0a1593479434, 2.6.0a1593508785, 2.6.0a1593542124, 2.6.0a1593555561, 2.6.0a1593632866, 2.6.0a1593633026, 2.6.0a1593634669, 2.6.0a1593642770, 2.6.0a1593718210, 2.6.0a1594045491, 2.6.0a1594146768, 2.6.0a1594148092, 2.6.0a1594149601, 2.6.0a1594158336, 2.6.0a1594167847, 2.7.0a1594252246, 2.7.0a1594258499, 2.7.0a1594260757, 2.7.0a1594304352, 2.7.0a1594400195, 2.7.0a1594668420, 2.7.0a1594728241, 2.7.0a1594742139, 2.7.0a1594749509, 2.7.0a1594753664, 2.7.0a1594843852, 2.7.0a1594854697, 2.7.0a1594920370, 2.7.0a1594968751, 2.7.0a1594980850, 2.7.0a1595007987, 2.7.0a1595321414, 2.7.0a1595343308, 2.7.0a1595350444, 2.7.0a1595358189, 2.8.0a1595450161, 2.8.0a1595536389, 2.8.0a1595869698, 2.8.0a1595875833, 2.8.0a1595886504, 2.8.0a1595959525, 2.8.0a1595968094, 2.8.0a1596119376, 2.8.0a1596225034, 2.8.0a1596479848, 2.9.0a1596586783, 2.9.0a1596644136, 2.9.0a1596647332, 2.9.0a1596657054, 2.9.0a1596660575, 2.9.0a1596670037, 2.9.0a1596673823, 2.9.0a1596684693, 2.9.0a1596744747, 2.9.0a1596751763, 2.9.0a1596756839, 2.9.0a1596766158, 2.9.0a1596804007, 2.9.0a1596814302, 2.9.0a1596817807, 2.9.0a1596832341, 2.9.0a1597076905, 2.9.0a1597080110, 2.9.0a1597144344, 2.9.0a1597152912, 2.9.0a1597164536, 2.9.0a1597168037, 2.9.0a1597171436, 2.9.0a1597251506, 2.9.0a1597259763, 2.9.0a1597259794, 2.9.0a1597364996, 2.9.0a1597707895, 2.9.0a1597710965, 2.9.0a1597765844, 2.9.0a1597822162, 2.9.0a1597824956, 2.9.0a1597825007, 2.9.0a1597841859, 2.9.0a1597851246, 2.9.0a1597861314, 2.10.0a1597870693, 2.10.0a1597946829, 2.10.0a1597981892, 2.10.0a1598035293, 2.10.0a1598049297, 2.10.0a1598053202, 2.10.0a1598133621, 2.10.0a1598378842, 2.10.0a1598382428, 2.10.0a1598555986, 2.10.0a1598565034, 2.10.0a1598630102, 2.10.0a1598633877, 2.10.0a1598645290, 2.10.0a1598647068, 2.10.0a1598656112, 2.10.0a1598664376, 2.10.0a1598671519, 2.10.0a1598889523, 2.10.0a1598890079, 2.10.0a1598930923, 2.10.0a1598979567, 2.10.0a1598999823, 2.10.0a1599004598, 2.10.0a1599028126, 2.10.0a1599059381, 2.10.0a1599063075, 2.10.0a1599089119, 2.10.0a1599099340, 2.10.0a1599148941, 2.10.0a1599149718, 2.10.0a1599152243, 2.10.0a1599611504, 2.10.0a1599628955, 2.10.0a1599678525, 2.10.0a1599683823, 2.10.0a1599686574, 2.10.0a1599696830, 2.10.0a1599747129, 2.10.0a1599762347, 2.11.0a1599774867, 2.11.0a1599827683, 2.11.0a1599859547, 2.11.0a1599859656, 2.11.0a1599861389, 2.11.0a1600098121, 2.11.0a1600104547, 2.11.0a1600111497, 2.11.0a1600116866, 2.11.0a1600130417, 2.11.0a1600130707, 2.11.0a1600169079, 2.11.0a1600171018, 2.11.0a1600173906, 2.11.0a1600192142, 2.11.0a1600204858, 2.11.0a1600206117, 2.11.0a1600207064, 2.11.0a1600207388, 2.11.0a1600207450, 2.11.0a1600209888, 2.11.0a1600210333, 2.11.0a1600212027, 2.11.0a1600212159, 2.11.0a1600212172, 2.11.0a1600212558, 2.11.0a1600248514, 2.11.0a1600279916, 2.11.0a1600289260, 2.11.0a1600292307, 2.11.0a1600354124, 2.11.0a1600359834, 2.11.0a1600366910, 2.11.0a1600369047, 2.11.0a1600457911, 2.11.0a1600458438, 2.11.0a1600470973, 2.11.0a1600475361, 2.11.0a1600574993, 2.11.0a1600628212, 2.11.0a1600716184, 2.11.0a1600730405, 2.11.0a1600889965, 2.11.0a1600907026, 2.11.0a1601032625, 2.11.0a1601042658, 2.11.0a1601062527, 2.11.0a1601235210, 2.11.0a1601308802, 2.11.0a1601420403, 2.11.0a1601482585, 2.11.0a1601484247, 2.11.0a1601485789, 2.12.0a1601498512, 2.12.0a1601505317, 2.12.0a1601506012, 2.12.0a1601539279, 2.12.0a1601589471, 2.12.0a1601593915, 2.12.0a1601654488, 2.12.0a1601672974, 2.12.0a1601906268, 2.12.0a1601920251, 2.12.0a1601930424, 2.12.0a1601942880, 2.12.0a1602004762, 2.12.0a1602028481, 2.12.0a1602063984, 2.12.0a1602088320, 2.12.0a1602102325, 2.12.0a1602119590, 2.12.0a1602142211, 2.12.0a1602184741, 2.12.0a1602264716, 2.12.0a1602274435, 2.12.0a1602335447, 2.12.0a1602353047, 2.12.0a1602362843, 2.12.0a1602520522, 2.12.0a1602522732, 2.12.0a1602523915, 2.12.0a1602528686, 2.12.0a1602583859, 2.12.0a1602586270, 2.12.0a1602590969, 2.12.0a1602591495, 2.12.0a1602610137, 2.12.0a1602614002, 2.12.0a1602615739, 2.12.0a1602676313, 2.12.0a1602692697, 2.13.0a1602783309, 2.13.0a1602966556, 2.13.0a1603300907, 2.13.0a1603389209, 2.13.0a1603394919, 2.13.0a1603398305, 2.13.0a1603406569, 2.13.0a1603481137, 2.13.0a1603818732, 2.13.0a1604009597, 2.13.0a1604014872, 2.13.0a1604060039, 2.13.0a1604088512, 2.13.0a1604352972, 2.13.0a1604449725, 2.13.0a1604452483, 2.13.0a1604453144, 2.13.0a1604456415, 2.14.0a1604608300, 2.14.0a1604612038, 2.14.0a1604682063, 2.14.0a1604683789, 2.14.0a1604692404, 2.14.0a1604692473, 2.14.0a1604717783, 2.14.0a1604772481, 2.14.0a1604890385, 2.14.0a1604931178, 2.14.0a1604932108, 2.14.0a1604940499, 2.14.0a1604946071, 2.14.0a1604948153, 2.14.0a1604950402, 2.14.0a1604962829, 2.14.0a1605042199, 2.14.0a1605046222, 2.14.0a1605071490, 2.14.0a1605117027, 2.14.0a1605120128, 2.14.0a1605132479, 2.14.0a1605211127, 2.14.0a1605212292, 2.14.0a1605224457, 2.14.0a1605261581, 2.14.0a1605313233, 2.14.0a1605360338, 2.14.0a1605575128, 2.14.0a1605592573, 2.14.0a1605639536, 2.14.0a1605647668, 2.15.0a1605721672, 2.15.0a1605722651, 2.15.0a1605723162, 2.15.0a1605724686, 2.15.0a1605726990, 2.15.0a1605729270, 2.15.0a1605755321, 2.15.0a1605809819, 2.15.0a1605819388, 2.15.0a1605892605, 2.15.0a1605906803, 2.15.0a1606087679, 2.15.0a1606149582, 2.15.0a1606153677, 2.15.0a1606158910, 2.15.0a1606161303, 2.15.0a1606163280, 2.15.0a1606184485, 2.15.0a1606186149, 2.15.0a1606213225, 2.15.0a1606238049, 2.15.0a1606250603, 2.15.0a1606266911, 2.15.0a1606266937, 2.15.0a1606283012, 2.15.0a1606329826, 2.15.0a1606750998, 2.15.0a1606761663, 2.15.0a1606836383, 2.15.0a1606845827, 2.15.0a1606849095, 2.15.0a1606849388, 2.15.0a1606858786, 2.15.0a1606867129, 2.15.0a1606869330, 2.15.0a1606870548, 2.15.0a1606927161, 2.16.0a1606945525, 2.16.0a1607036875, 2.16.0a1607052136, 2.16.0a1607095311, 2.16.0a1607097498, 2.16.0a1607289830, 2.16.0a1607364401, 2.16.0a1607369344, 2.16.0a1607452591, 2.16.0a1607468676, 2.16.0a1607470205, 2.16.0a1607477939, 2.16.0a1607484118, 2.16.0a1607545211, 2.16.0a1607552938, 2.16.0a1607566714, 2.16.0a1607607105, 2.16.0a1607619205, 2.16.0a1607621434, 2.16.0a1607624465, 2.16.0a1607627514, 2.16.0a1607629141, 2.16.0a1607631507, 2.16.0a1607642580, 2.16.0a1607669888, 2.16.0a1607716910, 2.16.0a1607803365, 2.16.0a1607974433, 2.16.0a1607985614, 2.16.0a1608004605, 2.16.0a1608064887, 2.16.0a1608071086, 2.16.0a1608083802, 2.16.0a1608137922, 2.16.0a1608151511, 2.16.0a1608151635, 2.16.0a1608163259, 2.16.0a1608182106, 2.16.0a1608230697, 2.16.0a1608230962, 2.16.0a1608245118, 2.16.0a1608245210, 2.16.0a1608327952, 2.16.0a1608334695, 2.16.0a1608361368, 2.16.0a1608361420, 2.16.0a1608497651, 2.17.0a1608601616, 2.17.0a1608663889, 2.17.0a1608669788, 2.17.0a1608670396, 2.17.0a1608757841, 2.17.0a1608758748, 2.17.0a1608766029, 2.17.0a1609285222, 2.17.0a1609285870, 2.17.0a1609328761, 2.17.0a1609365454, 2.17.0a1609369338, 2.17.0a1609375532, 2.17.0a1609756645, 2.17.0a1609784893, 2.17.0a1609792563, 2.17.0a1609796058, 2.17.0a1609797380, 2.17.0a1609799866, 2.17.0a1609799935, 2.17.0a1609799961, 2.17.0a1609807557, 2.17.0a1609841620, 2.17.0a1609891031, 2.17.0a1609907713, 2.18.0a1610048655, 2.18.0a1610061803, 2.18.0a1610388479, 2.18.0a1610393726, 2.18.0a1610470432, 2.18.0a1610470756, 2.18.0a1610476853, 2.18.0a1610477379, 2.18.0a1610486893, 2.18.0a1610499359, 2.18.0a1610508441, 2.18.0a1610562266, 2.18.0a1610567471, 2.18.0a1610571936, 2.18.0a1610656625, 2.18.0a1610717938, 2.18.0a1610730237, 2.18.0a1610735032, 2.18.0a1610743788, 2.18.0a1611057694, 2.18.0a1611083925, 2.18.0a1611086803, 2.18.0a1611090677, 2.18.0a1611100791, 2.19.0a1611172424, 2.19.0a1611174908, 2.19.0a1611258128, 2.19.0a1611272427, 2.19.0a1611277461, 2.19.0a1611278742, 2.19.0a1611289136, 2.19.0a1611313244, 2.19.0a1611353561, 2.19.0a1611372371, 2.19.0a1611372481, 2.19.0a1611580888, 2.19.0a1611602537, 2.19.0a1611687129, 2.19.0a1611687754, 2.19.0a1611701972, 2.19.0a1611774847, 2.19.0a1611778045, 2.19.0a1611782726, 2.20.0a1611862093, 2.20.0a1611963840, 2.20.0a1611967920, 2.20.0a1612208273, 2.20.0a1612224046, 2.20.0a1612305423, 2.20.0a1612376992, 2.21.0a1612391664, 2.21.0a1612450664, 2.21.0a1612495719, 2.21.0a1612570573, 2.21.0a1612726265, 2.21.0a1612726562, 2.21.0a1613003721, 2.21.0a1613060510, 2.21.0a1613060524, 2.21.0a1613072047, 2.21.0a1613096167, 2.21.0a1613153459, 2.21.0a1613174059, 2.21.0a1613433369, 2.21.0a1613493992, 2.22.0a1613609807, 2.22.0a1613653407, 2.22.0a1613659719, 2.22.0a1613671873, 2.22.0a1613676545, 2.22.0a1613684196, 2.22.0a1613762957, 2.22.0a1613775992, 2.22.0a1613778935, 2.22.0a1613804358, 2.22.0a1614011596, 2.22.0a1614031497, 2.22.0a1614069950, 2.22.0a1614075642, 2.22.0a1614110399, 2.22.0a1614119381, 2.22.0a1614119451, 2.22.0a1614128836, 2.22.0a1614130708, 2.22.0a1614216084, 2.22.0a1614216503
There are incompatible versions in the resolved dependencies:
  pulumi==2.21.2 (from -r /tmp/pipenvjzt8h4vrrequirements/pipenv-ug24sznp-constraints.txt (line 6))
  pulumi<2.0.0,>=1.0.0 (from pulumi-aws==1.31.0->-r /tmp/pipenvjzt8h4vrrequirements/pipenv-ug24sznp-constraints.txt (line 2))


@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from d10e906 to 7fd3750 Compare April 21, 2020 00:37
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from 7fd3750 to 42a2eb8 Compare April 29, 2020 21:52
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 3 times, most recently from 2f91971 to 693b26d Compare May 14, 2020 05:40
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from 693b26d to d04e73d Compare May 27, 2020 20:30
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from d04e73d to e03f6de Compare June 10, 2020 20:42
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from e03f6de to 116a6ef Compare June 25, 2020 10:44
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 2 times, most recently from 74e25a5 to f1610c4 Compare July 9, 2020 17:00
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 2 times, most recently from 3d4f130 to 5015192 Compare July 22, 2020 22:11
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 2 times, most recently from 3dc503f to 25562e0 Compare August 5, 2020 22:28
@renovate renovate bot changed the title Update dependency pulumi to v2 Update dependency pulumi Aug 5, 2020
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from 25562e0 to 82734f9 Compare August 5, 2020 23:48
@renovate renovate bot changed the title Update dependency pulumi Update dependency pulumi to v2 Aug 5, 2020
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from 82734f9 to 5a88cfc Compare August 7, 2020 23:28
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 3 times, most recently from 8e26576 to ec22e46 Compare August 31, 2020 18:32
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 2 times, most recently from f2480f4 to 6367219 Compare September 16, 2020 17:37
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from 6367219 to 8c1fa68 Compare September 21, 2020 22:55
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 3 times, most recently from 8bc3f9f to f4da760 Compare October 2, 2020 01:19
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from f4da760 to fb2fa69 Compare October 14, 2020 18:58
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from fb2fa69 to 2f12eb1 Compare October 23, 2020 14:39
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 3 times, most recently from ed6b63f to 5e30e53 Compare November 7, 2020 11:57
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from 5e30e53 to 3000b24 Compare November 18, 2020 18:45
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 5 times, most recently from b52079c to 5923c92 Compare December 8, 2020 17:46
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 2 times, most recently from 04bad89 to 0161c9a Compare December 12, 2020 23:14
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 3 times, most recently from deb84fd to 12b6533 Compare December 23, 2020 23:43
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 2 times, most recently from f97a3da to dc968b9 Compare January 13, 2021 16:27
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 3 times, most recently from 205a108 to 28546e2 Compare January 21, 2021 23:35
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch 2 times, most recently from f75d462 to d62f90a Compare January 28, 2021 04:40
@renovate renovate bot force-pushed the renovate/pulumi-2.x branch from d62f90a to fd20651 Compare February 3, 2021 22:47
@jonashackt jonashackt closed this Feb 25, 2021
@jonashackt jonashackt deleted the renovate/pulumi-2.x branch February 25, 2021 08:22
@renovate
Copy link
Author

renovate bot commented Feb 25, 2021

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will ignore this upgrade and you will not receive PRs for any future 2.x releases. However, if you upgrade to 2.x manually then Renovate will then reenable updates for minor and patch updates automatically.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.

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.

2 participants