Open greenkeeper[bot] opened 6 years ago
Update to this version instead π
Fixing
var map = new Map({ 0: "zero" });
canReflect.getKeyValue(map, 0);
and
var map = new Map({ 0: "zero" });
map.attr({ 1: "one" }, "true");
Update to this version instead π
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
Update to this version instead π
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;
Update to this version instead π
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().
Update to this version instead π
Makes sure that any props on the map are still added when their value is undefined
, whether during construction or set later. PR#122
dependency
can-map was updated from 3.6.1
to 4.3.4
.Update to this version instead π
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
dependency
can-map was updated from 3.6.1
to 4.3.5
.dependency
can-map was updated from 3.6.1
to 4.3.6
.dependency
can-map was updated from 3.6.1
to 4.3.7
.dependency
can-map was updated from 3.6.1
to 4.3.8
.dependency
can-map was updated from 3.6.1
to 4.3.9
.dependency
can-map was updated from 3.6.1
to 4.3.10
.dependency
can-map was updated from 3.6.1
to 4.3.11
.dependency
can-map was updated from 3.6.1
to 4.3.12
.
Version 4.0.0 of can-map was just published.
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.
ace5d1e
4.0.0
931aa4f
Merge pull request #88 from canjs/deps
261b832
Use all non-pre dependencies
adf898b
Merge pull request #87 from canjs/major
79675e1
4.0.0-pre.12
2bf1c42
Replace can-event-queue/map/legacy/legacy with can-event-queue/map/map
ffd667a
adding doctype
44a463f
4.0.0-pre.11
739ba42
Renaming .each to .forEach
7306f76
4.0.0-pre.10
d2fa03c
fixes tests
13fdcff
Merge branch 'master' into major
19a425a
4.0.0-pre.9
01dad5e
Use new module paths introduced in can-event-queue 0.9.0
6fdf30f
4.0.0-pre.8
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: