Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

An in-range update of can-map is breaking the build 🚨 #77

Open
greenkeeper bot opened this issue Jul 4, 2018 · 16 comments
Open

An in-range update of can-map is breaking the build 🚨 #77

greenkeeper bot opened this issue Jul 4, 2018 · 16 comments

Comments

@greenkeeper
Copy link
Contributor

greenkeeper bot commented Jul 4, 2018

Version 4.1.0 of can-map was just published.

Branch Build failing 🚨
Dependency can-map
Current Version 4.0.2
Type dependency

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

can-map is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v4.1.0
  • Add compatibility with how webpack builds for production #101
  • Add "use strict" #100
Commits

The new version differs by 12 commits.

  • 9c254c3 4.1.0
  • b1a0524 Merge pull request #100 from canjs/landscaper/4217-use-strict
  • 683a3e9 Merge pull request #102 from canjs/can-util-removal
  • c364b7e add deps to package.json
  • f29a064 Merge pull request #98 from canjs/greenkeeper/testee-0.8.0
  • 87de322 remove can-util from package.json
  • 9e6adc9 fix can-reflect use
  • 14fec0d get rid of can-util
  • 86d34a0 Merge pull request #101 from canjs/fix-webpack-debug-style
  • f441961 fix dev code for webpack compatibility
  • 3de0d54 Adds use strict. Fixes canjs/canjs#4217
  • 2303ec8 chore(package): update testee to version 0.8.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jul 4, 2018

After pinning to 4.0.2 your tests are passing again. Downgrade this dependency 📌.

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jul 5, 2018

Version 4.1.1 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes v4.1.1

Remove remaining uses of can-util #104

Commits

The new version differs by 3 commits.

  • c1dca96 4.1.1
  • f9152e7 Merge pull request #104 from canjs/can-util
  • 27b6ae4 Remove remaining uses of can-util

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jul 19, 2018

Version 4.1.2 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes not binding on __keys during setup

#107

Commits

The new version differs by 6 commits.

  • dcc672c 4.1.2
  • b8d18d9 Merge pull request #107 from canjs/setup-triggers-keys
  • 9bdf7ae not binding on __keys during setup
  • c1dca96 4.1.1
  • f9152e7 Merge pull request #104 from canjs/can-util
  • 27b6ae4 Remove remaining uses of can-util

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 11, 2018

Version 4.2.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Adds Map.prototype._legacyAttrBehavior

#115

Adds a _legacyAttrBehavior property, which when set to true, keeps can-map compatible with how it worked before can-reflect ( https://github.com/canjs/can-map/releases/tag/v3.2.0 ).

To use it, you can either:

// Sets the legacy behavior for all Maps
can.Map.prototype._legacyAttrBehavior = true
// Sets the legacy behavior for an individual map type
Type = can.Map.extend({ _legacyAttrBehavior: true}})
// Sets the legacy behavior for a single map instance
var map = new can.Map();
map._legacyAttrBehavior = true;
Commits

The new version differs by 9 commits.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 13, 2018

Version 4.3.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Commits

The new version differs by 12 commits.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 14, 2018

Version 4.3.1 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Makes deep assigns and updates work with _legacyAttrBehavior

When using _legacyAttrBehavior: true to enable the legacy attr
behavior you still want to interop with other map types. For this to
work:

map.attr({
  prop: new DefineMap()
})

This works with both assign and update forms of attr().

Commits

The new version differs by 15 commits.

  • 5da9b98 4.3.1
  • 72a2fac Merge pull request #121 from canjs/map-attrs2
  • 8674382 Makes deep assigns and updates work with _legacyAttrBehavior
  • cddc888 4.3.0
  • 9ed2c54 Merge pull request #117 from canjs/leg-attr
  • bc84aeb Makes _legacyAttrBehavior work for serialize()
  • 90766c8 4.2.0
  • 2f5997a Merge pull request #115 from ivospinheiro/ISSUE_114
  • 34483cb Add _legacyAttrBehavior to [email protected] #114
  • dcc672c 4.1.2
  • b8d18d9 Merge pull request #107 from canjs/setup-triggers-keys
  • 9bdf7ae not binding on __keys during setup
  • c1dca96 4.1.1
  • f9152e7 Merge pull request #104 from canjs/can-util
  • 27b6ae4 Remove remaining uses of can-util

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 14, 2018

Version 4.3.3 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes Handles props with undefined values

Makes sure that any props on the map are still added when their value is undefined, whether during construction or set later. PR#122

Commits

The new version differs by 18 commits.

There are 18 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 9, 2019

  • The dependency can-map was updated from 4.3.3 to 4.3.4.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for Cleanup can-types.isMapLike(obj)

Replace usage of can-types.isMapLike(obj) by canReflect.isObservableLike(obj) && canReflect.isMapLike(obj)

Commits

The new version differs by 28 commits.

  • 4fd23a3 4.3.4
  • b3cce40 Merge pull request #132 from ivospinheiro/fix-issue-129
  • a3b72da Fix can-types.isMapLike(obj) deprecated warning
  • 147aea3 Merge pull request #128 from canjs/landscaper/update-default-repos
  • cd1b310 Update readme.md
  • b232a17 Update README generated by DoneJS
  • bfd60c6 Merge pull request #123 from canjs/greenkeeper/steal-tools-2.0.4
  • 1bc41c9 Merge pull request #124 from canjs/greenkeeper/steal-2.1.3
  • bcc00f1 chore(package): update steal to version 2.1.3
  • 3e760e2 chore(package): update steal-tools to version 2.0.4
  • a78d735 4.3.3
  • 6d829b8 4.3.2
  • 1094c44 84 dropping keys (#122)
  • 5da9b98 4.3.1
  • 72a2fac Merge pull request #121 from canjs/map-attrs2

There are 28 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 26, 2019

  • The dependency can-map was updated from 4.3.4 to 4.3.5.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for Use Symbol to replace __inSetup property

Replace __inSetup property checks with Symbol.

canjs/canjs#4705

Commits

The new version differs by 34 commits.

  • f2083ca 4.3.5
  • ca6e9ae Merge pull request #134 from canjs/remove-usage-of-insetup-property
  • 9d6006c Cache the symbol and update can-construct package
  • dbe845e Use Symbol to replace __inSetup property
  • 669facc Merge pull request #127 from canjs/greenkeeper/testee-0.9.0
  • 4fd23a3 4.3.4
  • b3cce40 Merge pull request #132 from ivospinheiro/fix-issue-129
  • a3b72da Fix can-types.isMapLike(obj) deprecated warning
  • 147aea3 Merge pull request #128 from canjs/landscaper/update-default-repos
  • cd1b310 Update readme.md
  • b232a17 Update README generated by DoneJS
  • 8122959 chore(package): update testee to version 0.9.0
  • bfd60c6 Merge pull request #123 from canjs/greenkeeper/steal-tools-2.0.4
  • 1bc41c9 Merge pull request #124 from canjs/greenkeeper/steal-2.1.3
  • bcc00f1 chore(package): update steal to version 2.1.3

There are 34 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented May 24, 2019

  • The dependency can-map was updated from 4.3.5 to 4.3.6.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Commits

The new version differs by 38 commits.

  • 1835269 4.3.6
  • 22b6c0d Merge pull request #135 from canjs/landscaper/qunit2
  • 52cae49 Fix tests for QUnit 2
  • 72b4d50 Landscaper: QUnit2 upgrade
  • f2083ca 4.3.5
  • ca6e9ae Merge pull request #134 from canjs/remove-usage-of-insetup-property
  • 9d6006c Cache the symbol and update can-construct package
  • dbe845e Use Symbol to replace __inSetup property
  • 669facc Merge pull request #127 from canjs/greenkeeper/testee-0.9.0
  • 4fd23a3 4.3.4
  • b3cce40 Merge pull request #132 from ivospinheiro/fix-issue-129
  • a3b72da Fix can-types.isMapLike(obj) deprecated warning
  • 147aea3 Merge pull request #128 from canjs/landscaper/update-default-repos
  • cd1b310 Update readme.md
  • b232a17 Update README generated by DoneJS

There are 38 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented May 31, 2019

  • The dependency can-map was updated from 4.3.6 to 4.3.7.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Commits

The new version differs by 45 commits.

  • c574aad 4.3.7
  • e57c4b5 Merge pull request #137 from canjs/safe-mutation-check
  • fb282b6 Update mutation warning tests to use QUnit 2
  • 804b09f Merge branch 'master' into safe-mutation-check
  • 26c7b42 Fix removeEventListener looking at wrong queue by default; make better warning messages; use computes in unsafe mutation tests rather than observations
  • 1835269 4.3.6
  • 22b6c0d Merge pull request #135 from canjs/landscaper/qunit2
  • 35c09ad Improve messaging for unsafe mutation warning; Use best available deps
  • 52cae49 Fix tests for QUnit 2
  • c7984b3 Use canSafelyMutate to generate a dev warning when setting during an observation
  • 72b4d50 Landscaper: QUnit2 upgrade
  • f2083ca 4.3.5
  • ca6e9ae Merge pull request #134 from canjs/remove-usage-of-insetup-property
  • 9d6006c Cache the symbol and update can-construct package
  • dbe845e Use Symbol to replace __inSetup property

There are 45 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jun 5, 2019

  • The dependency can-map was updated from 4.3.7 to 4.3.8.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for Tests using canReflect.getName in assertions fail in IE11

Test failed due to canReflect.getName returning a certain value fail in IE11 because of how we name functions differently in IE11. With this fix, the tests use regular expressions to make the assertions less strict.

Issue #141

Commits

The new version differs by 49 commits.

  • 83aabc7 4.3.8
  • 21f7831 Merge pull request #142 from canjs/461-failing-test-ie11
  • 638fd7f readded steal.js file
  • 4951db8 fixed ie11 test with regEX
  • c574aad 4.3.7
  • e57c4b5 Merge pull request #137 from canjs/safe-mutation-check
  • fb282b6 Update mutation warning tests to use QUnit 2
  • 804b09f Merge branch 'master' into safe-mutation-check
  • 26c7b42 Fix removeEventListener looking at wrong queue by default; make better warning messages; use computes in unsafe mutation tests rather than observations
  • 1835269 4.3.6
  • 22b6c0d Merge pull request #135 from canjs/landscaper/qunit2
  • 35c09ad Improve messaging for unsafe mutation warning; Use best available deps
  • 52cae49 Fix tests for QUnit 2
  • c7984b3 Use canSafelyMutate to generate a dev warning when setting during an observation
  • 72b4d50 Landscaper: QUnit2 upgrade

There are 49 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 9, 2019

  • The dependency can-map was updated from 4.3.8 to 4.3.9.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Commits

The new version differs by 56 commits.

  • 2f72c0f 4.3.9
  • b9b4323 Upgrade can-reflect-tests
  • 6fbdc84 Merge pull request #144 from canjs/remove-each-docs
  • c49aff8 convert to missing forEach docs
  • 93f27cd update docs to remove deleted each(...) method
  • ddf0bc2 Merge pull request #143 from canjs/landscaper/travis-xenial
  • b3cd74d Migrate to xenial in travis
  • 83aabc7 4.3.8
  • 21f7831 Merge pull request #142 from canjs/461-failing-test-ie11
  • 638fd7f readded steal.js file
  • 4951db8 fixed ie11 test with regEX
  • c574aad 4.3.7
  • e57c4b5 Merge pull request #137 from canjs/safe-mutation-check
  • fb282b6 Update mutation warning tests to use QUnit 2
  • 804b09f Merge branch 'master' into safe-mutation-check

There are 56 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 16, 2019

  • The dependency can-map was updated from 4.3.9 to 4.3.10.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for Prevent bubble parent with children functions

This fixes bubbling the parent map with children functions as properties, for example:

var map = new CanMap({
    fn: function() {}
});

bubble.childrenOf(map, "change");

bubble.events(map.fn, "change"); // -> undefined

#146

Commits

The new version differs by 61 commits.

  • 40ff8f4 4.3.10
  • 70fb037 Merge pull request #146 from canjs/no-function-children-parent-bubbling
  • 582f631 Use canReflect to check that an object is a map
  • 7f73fbb Use canReflect for better checks
  • c1d5384 Children don't bubble parent with functions
  • 2f72c0f 4.3.9
  • b9b4323 Upgrade can-reflect-tests
  • 6fbdc84 Merge pull request #144 from canjs/remove-each-docs
  • c49aff8 convert to missing forEach docs
  • 93f27cd update docs to remove deleted each(...) method
  • ddf0bc2 Merge pull request #143 from canjs/landscaper/travis-xenial
  • b3cd74d Migrate to xenial in travis
  • 83aabc7 4.3.8
  • 21f7831 Merge pull request #142 from canjs/461-failing-test-ie11
  • 638fd7f readded steal.js file

There are 61 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Oct 8, 2019

  • The dependency can-map was updated from 4.3.10 to 4.3.11.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for Prevent bubble parent with children arrays

Children array properties should not bubble parent:

var map = new CanMap({
     foo: ['item']
});

bubble.childrenOf(map, "change");
bubble.events(map.attr("foo") // -> undefined

Commits

The new version differs by 64 commits.

  • b11c397 4.3.11
  • 3c4f296 Merge pull request #148 from canjs/fix-bubbling-with-type-function
  • fa40a00 Fix array bubbling
  • 40ff8f4 4.3.10
  • 70fb037 Merge pull request #146 from canjs/no-function-children-parent-bubbling
  • 582f631 Use canReflect to check that an object is a map
  • 7f73fbb Use canReflect for better checks
  • c1d5384 Children don't bubble parent with functions
  • 2f72c0f 4.3.9
  • b9b4323 Upgrade can-reflect-tests
  • 6fbdc84 Merge pull request #144 from canjs/remove-each-docs
  • c49aff8 convert to missing forEach docs
  • 93f27cd update docs to remove deleted each(...) method
  • ddf0bc2 Merge pull request #143 from canjs/landscaper/travis-xenial
  • b3cd74d Migrate to xenial in travis

There are 64 commits in total.

See the full diff

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Dec 18, 2019

  • The dependency can-map was updated from 4.3.11 to 4.3.12.

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Commits

The new version differs by 68 commits.

  • 7aee0b7 4.3.12
  • 0f739ef Merge pull request #150 from canjs/only-bubble-observable-children
  • d08d517 Refactor bubbling to also handle events reporting
  • 3d28ca7 Only set up bubble bindings when children are observable
  • b11c397 4.3.11
  • 3c4f296 Merge pull request #148 from canjs/fix-bubbling-with-type-function
  • fa40a00 Fix array bubbling
  • 40ff8f4 4.3.10
  • 70fb037 Merge pull request #146 from canjs/no-function-children-parent-bubbling
  • 582f631 Use canReflect to check that an object is a map
  • 7f73fbb Use canReflect for better checks
  • c1d5384 Children don't bubble parent with functions
  • 2f72c0f 4.3.9
  • b9b4323 Upgrade can-reflect-tests
  • 6fbdc84 Merge pull request #144 from canjs/remove-each-docs

There are 68 commits in total.

See the full diff

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

0 participants