canjs / can-list-sort

Live-bound list sorting
MIT License
1 stars 0 forks source link

Update can-map to the latest version πŸš€ #25

Open greenkeeper[bot] opened 6 years ago

greenkeeper[bot] commented 6 years ago

Version 4.0.0 of can-map was just published.

Dependency can-map
Current Version 3.4.2
Type dependency

The version 4.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of can-map.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Commits

The new version differs by 34 commits.

There are 34 commits in total.

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper bot :palm_tree:

greenkeeper[bot] commented 6 years ago

Version 4.0.1 just got published.

Update to this version instead πŸš€

Commits

The new version differs by 5 commits.

  • ac24cbe 4.0.1
  • cb08f33 Merge pull request #90 from canjs/set-value
  • ecf35de Merge pull request #92 from canjs/prodefaults
  • 4182fae Use prototype properties as defaults
  • 7adf875 Use setValue instead of setKeyValue with a compute

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.0.2 just got published.

Update to this version instead πŸš€

Release Notes Bug fixes

Fixing

var map = new Map({ 0: "zero" });
canReflect.getKeyValue(map, 0);

and

var map = new Map({ 0: "zero" });
map.attr({ 1: "one" }, "true");

#97

Commits

The new version differs by 4 commits.

  • ef92689 4.0.2
  • fb640a2 Merge pull request #97 from canjs/get-number-value
  • d52558f fixing .attr({ ... }, "true") work
  • 403facb making canReflect.getKeyValue/onKeyValue/offKeyValue work with numbers

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.1.0 just got published.

Update to this version instead πŸš€

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

greenkeeper[bot] commented 6 years ago

Version 4.1.1 just got published.

Update to this version instead πŸš€

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[bot] commented 6 years ago

Version 4.1.2 just got published.

Update to this version instead πŸš€

Commits

The new version differs by 3 commits.

  • dcc672c 4.1.2
  • b8d18d9 Merge pull request #107 from canjs/setup-triggers-keys
  • 9bdf7ae not binding on __keys during setup

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.2.0 just got published.

Update to this version instead πŸš€

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 3 commits.

  • 90766c8 4.2.0
  • 2f5997a Merge pull request #115 from ivospinheiro/ISSUE_114
  • 34483cb Add _legacyAttrBehavior to can-map@4.0 #114

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.3.0 just got published.

Update to this version instead πŸš€

Commits

The new version differs by 3 commits.

  • cddc888 4.3.0
  • 9ed2c54 Merge pull request #117 from canjs/leg-attr
  • bc84aeb Makes _legacyAttrBehavior work for serialize()

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.3.1 just got published.

Update to this version instead πŸš€

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 3 commits.

  • 5da9b98 4.3.1
  • 72a2fac Merge pull request #121 from canjs/map-attrs2
  • 8674382 Makes deep assigns and updates work with _legacyAttrBehavior

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.3.3 just got published.

Update to this version instead πŸš€

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 3 commits.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Commits

The new version differs by 10 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

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€