canjs / can-define-validate-validatejs

ValidateJS plugin for can-define
https://canjs.com/doc/can-define-validate-validatejs.html
MIT License
2 stars 0 forks source link

An in-range update of can-compute is breaking the build 🚨 #20

Closed greenkeeper[bot] closed 7 years ago

greenkeeper[bot] commented 7 years ago

Version 3.0.11 of can-compute just got published.

Branch Build failing 🚨
Dependency can-compute
Current Version 3.0.10
Type devDependency

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

As can-compute is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this :muscle:

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/canjs/can-define-validate-validatejs/builds/245091650?utm_source=github_status&utm_medium=notification)

Release Notes 3.0.11

This fixes a bug with compute setters tied to html elements:

var input = document.createElement("input");
var comp = compute(input, "value", "input");

comp("foo");
ok(input.value === "foo");

Pull Requests

Commits

The new version differs by 3 commits.

  • 432b4db Update dist for release
  • 20337f3 Merge pull request #85 from canjs/inp
  • fae3cea Properly handle setting element computes

See the full diff

Not sure how things should work exactly? There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 7 years ago

After pinning to 3.0.10 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.

greenkeeper[bot] commented 7 years ago

Version 3.2.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 3 commits.

  • a8ecbe2 Update dist for release
  • a9278b4 changing postversion script back
  • d0d529f implements much of the reflected API for can-compute (not ready) (#69)

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.3.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 3 commits.

  • f88f65a Update dist for release
  • 05d3c2d Merge pull request #86 from canjs/updateDeep
  • 111b742 getting compute to work with can-stache-key

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.3.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.3.2 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes Updating can-stache-key

#95

Commits

The new version differs by 16 commits.

  • 6f98069 Update dist for release
  • 8d255ab Merge pull request #95 from canjs/landscaper/bump-can-stache-key
  • 3a87145 Update to latest can-stache-key
  • db6da37 Adding missing license.
  • 4e4c641 Merge pull request #93 from canjs/greenkeeper/can-event-3.6.0
  • 1e85065 Merge pull request #80 from canjs/greenkeeper/initial
  • d6f4c70 Merge branch 'master' into greenkeeper/initial
  • f4bbdca chore(package): update can-event to version 3.6.0
  • 6244bc4 Merge pull request #92 from canjs/greenkeeper/testee-0.7.0
  • abb2617 chore(package): update testee to version 0.7.0
  • 441dd9d Merge pull request #91 from canjs/greenkeeper/can-observation-3.3.1
  • a67acfa chore(package): update can-observation to version 3.3.1
  • 637ba88 Merge pull request #90 from canjs/greenkeeper/can-reflect-1.2.1
  • 81d1d51 chore(package): update can-reflect to version 1.2.1
  • 8d190aa docs(readme): add Greenkeeper badge

There are 16 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.3.3 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes Use typeof to check for console

Using if(console) {...} will silently fail in IE 9. Replaced it with if(typeof console !== 'undefined') {...}.

Commits

The new version differs by 5 commits.

  • 22a7f5c Update dist for release
  • c796643 Merge pull request #102 from canjs/no-console
  • 7305319 Used typeof to check for console for IE9
  • a545623 Merge pull request #101 from canjs/greenkeeper/can-stache-key-0.1.0
  • 2b87962 fix(package): update can-stache-key to version 0.1.0

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.3.4 just got published.

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

Release Notes Remove pre-release package references

The post-can-reflect releases from CanJS 3.9 are all stable, so packages shouldn't be depending on pre-releases now.

Commits

The new version differs by 4 commits.

  • 19723d9 Update dist for release
  • d2729f5 Merge pull request #103 from canjs/remove-prerelease-packages
  • 88dedd2 Remove all prerelease package refs (canjs/canjs#3500)
  • c4d1407 Remove generated API docs from the README

See the full diff

Macrofig commented 7 years ago

Updated with PR #30