canjs / can-stream-kefir

Stream values into and out of computes
https://canjs.com/doc/can-stream-kefir.html
MIT License
3 stars 2 forks source link

An in-range update of can-event is breaking the build 🚨 #26

Closed greenkeeper[bot] closed 7 years ago

greenkeeper[bot] commented 7 years ago

Version 3.3.0 of can-event just got published.

Branch Build failing 🚨
Dependency can-event
Current Version 3.2.0
Type dependency

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

As can-event is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them. I recommend you give this issue a very 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-stream-kefir/builds/221743779)
Commits

The new version differs by 4 commits .

  • 2391226 Update dist for release
  • 3ac021b Update dist for release
  • df07300 Merge pull request #45 from canjs/nest-lifecycle-binding-count
  • 4446fde Push _bindings count into __bindEvents object (now called _lifecycleBindings for clarity)

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

Version 3.3.1 just got published.

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

Release Notes Dispatch warnings

#29

Commits

The new version differs by 5 commits0.

  • c47fe0d Update dist for release
  • 447e846 Merge pull request #49 from canjs/29-dispatch-arguments
  • ba49d2b dispatch checks arguments length and type (fixes #29)
  • 339dcb2 Merge pull request #47 from canjs/35-cleanup
  • 4c3fad4 clean up batch + getHandler; fixes #35

false

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.3.2 just got published.

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

Release Notes v3.3.2

skipping dev test in production

Commits

The new version differs by 8 commits0.

  • 0bb5d38 Update dist for release
  • db8ed36 Merge pull request #53 from canjs/skip-dev-test
  • a946e7c removing dev warning test in production
  • c47fe0d Update dist for release
  • 447e846 Merge pull request #49 from canjs/29-dispatch-arguments
  • ba49d2b dispatch checks arguments length and type (fixes #29)
  • 339dcb2 Merge pull request #47 from canjs/35-cleanup
  • 4c3fad4 clean up batch + getHandler; fixes #35

false

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.4.0 just got published.

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

Release Notes 3.4.0

Add delegated mouse/pointer enter and leave events:

obj.delegate('.child', 'mouseenter', function() {...})

Commits

The new version differs by 11 commits0.

  • 67a2bac Update dist for release
  • 86ff0ed Merge pull request #51 from canjs/add-delegate-mouseenter
  • 0bb5d38 Update dist for release
  • db8ed36 Merge pull request #53 from canjs/skip-dev-test
  • a946e7c removing dev warning test in production
  • 4c0461f Update to enable delegated enter/leave events
  • c47fe0d Update dist for release
  • 447e846 Merge pull request #49 from canjs/29-dispatch-arguments
  • ba49d2b dispatch checks arguments length and type (fixes #29)
  • 339dcb2 Merge pull request #47 from canjs/35-cleanup
  • 4c3fad4 clean up batch + getHandler; fixes #35

false

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.5.0 just got published.

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

Commits

The new version differs by 14 commits.

  • 8a37dd8 Update dist for release
  • d4f5f74 fixing postversion script
  • 7c28fce Do Not Merge - can-reflect (#56)
  • 67a2bac Update dist for release
  • 86ff0ed Merge pull request #51 from canjs/add-delegate-mouseenter
  • 0bb5d38 Update dist for release
  • db8ed36 Merge pull request #53 from canjs/skip-dev-test
  • a946e7c removing dev warning test in production
  • 4c0461f Update to enable delegated enter/leave events
  • c47fe0d Update dist for release
  • 447e846 Merge pull request #49 from canjs/29-dispatch-arguments
  • ba49d2b dispatch checks arguments length and type (fixes #29)
  • 339dcb2 Merge pull request #47 from canjs/35-cleanup
  • 4c3fad4 clean up batch + getHandler; fixes #35

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.6.0 just got published.

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

Release Notes Add canBatch.debounce

Adds canBatch.debounce(fn), which provides an event listener which runs only once per batch.

Example

obj.on("event", canBatch.debounce(function() {
  // only runs once per batch
}));

canBatch.start();
obj.dispatch("event");
obj.dispatch("event");
canBatch.stop();
Commits

The new version differs by 8 commits.

  • 36bc1c1 Update dist for release
  • a7ed0ca Merge pull request #50 from canjs/3-debounce
  • 300495b Merge pull request #57 from canjs/greenkeeper/testee-0.7.0
  • a6de567 chore(package): update testee to version 0.7.0
  • 0a9ee94 batch.debounce removes batchEnd listener
  • 3d7ca0c document batch.debounce
  • a14b802 make batch-dispatch non-enumerable
  • e38e0d9 add batch-debounce

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.6.1 just got published.

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

Commits

The new version differs by 11 commits.

  • 5932569 Update dist for release
  • 6f27c0b Merge pull request #58 from canjs/fix-batch-bug
  • ef3c553 fix issue with debounce removing all batchEnd events
  • 36bc1c1 Update dist for release
  • a7ed0ca Merge pull request #50 from canjs/3-debounce
  • 300495b Merge pull request #57 from canjs/greenkeeper/testee-0.7.0
  • a6de567 chore(package): update testee to version 0.7.0
  • 0a9ee94 batch.debounce removes batchEnd listener
  • 3d7ca0c document batch.debounce
  • a14b802 make batch-dispatch non-enumerable
  • e38e0d9 add batch-debounce

See the full diff