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

Update can-map-define to the latest version 🚀 #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Feb 28, 2018

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 4.0.0 of can-map-define was just published.

Dependency can-map-define
Current Version 3.1.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-define.

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

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 bot added a commit that referenced this pull request May 9, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 9, 2018

Version 4.1.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 42f0255 Update dist for release
  • 5ce4e2b Merge pull request #65 from canjs/has-key
  • d0b4fba implementing can.hasKey Symbol

See the full diff

greenkeeper bot added a commit that referenced this pull request May 10, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 10, 2018

Version 4.1.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 099abc7 Update dist for release
  • 75c4c1e Merge pull request #66 from canjs/has-key-for-functions
  • b27747a making hasKey work for functions

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 4, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 4, 2018

Version 4.2.0 just got published.

Update to this version instead 🚀

Release Notes v4.2.0
  • Add compatibility with how webpack builds for production #74
  • Add "use strict" #73
  • Remove uses of can-util #75
Commits

The new version differs by 10 commits.

  • 8195d72 Update dist for release
  • 867d366 Merge pull request #75 from canjs/can-util-removal
  • 67c69dc Merge branch 'master' into can-util-removal
  • 4b210dd Merge pull request #73 from canjs/landscaper/4217-use-strict
  • b21a365 get rid of can-util
  • b1860d2 Merge pull request #72 from canjs/greenkeeper/testee-0.8.0
  • ad3d20c Merge pull request #74 from canjs/fix-webpack-debug-style
  • 6a68f3b fix dev code for webpack compatibility
  • 3903c64 Adds use strict. Fixes canjs/canjs#4217
  • 03fd013 chore(package): update testee to version 0.8.0

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 31, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 31, 2018

Version 4.3.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 6 commits.

  • 140ce78 Update dist for release
  • 41d9dff Merge pull request #80 from canjs/79-implement-getOwnEnumerableKeys
  • 13848c1 remove can-symbol dependency and clean up spacing
  • f665c3e handle when define is undefined
  • e5f0513 handle keys in _data and observable updates
  • b9ac95f basic test passing

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 31, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 31, 2018

Version 4.3.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 61f1aa6 Update dist for release
  • 2e486ac Merge pull request #82 from canjs/keys-no-define
  • 292316a fixing getOwnEnumerableKeys when there is no define object

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 31, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 31, 2018

Version 4.3.2 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • e0fdd00 Update dist for release
  • 32bd127 Merge pull request #84 from canjs/reflect-tests
  • 5cf5722 adding can-reflect-tests and fixing issue with non-enumerable properties

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 31, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 31, 2018

Version 4.3.3 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • e2ed171 Update dist for release
  • 4377d4a Merge pull request #86 from canjs/null-keys
  • 108e93e using Object.keys to get keys for _data

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 29, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 29, 2018

Version 4.3.4 just got published.

Update to this version instead 🚀

Release Notes v4.3.4

getOwnEnumerableKeys accounts for default behavior values

This patch release fixes an issue with getOwnEnumerableKeys ignoring the default behavior values:

var VM = CanMap.extend({
  define: {
    "*": {
      serialize: false
    },
    notEnumerable: {
      value: "no"
    },
    enumerableProp: {
      serialize: true,
      value: "yes"
    },
    notEnumerable2: {
      serialize: false,
      value: "maybe"
    }
  }
});

That meant, calling canReflect.getOwnEnumerableKeys with instances of VM will return all keys but notEnumerable2. This release fixes that, so default behavior values are used first but any local property value can override the default.

Commits

The new version differs by 3 commits.

  • ac082e0 4.3.4
  • 7e79eee Merge pull request #89 from canjs/default-behavior
  • 7e3224d getOwnEnumerableKeys should account for default behavior values

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 26, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 26, 2019

Update to this version instead 🚀

Release Notes for Update to use Symbol instead of `__inSetup` property

Installed latest can-map and using Symbol to replace __inSetup property check.

Ref - canjs/canjs#4705

Commits

The new version differs by 12 commits.

  • 40af82d Update dist for release
  • f0f3889 Merge pull request #99 from canjs/remove-usage-of-insetup-property
  • e00e786 Require latest version of can-map
  • d1aa902 Don't change the semver version for can-map
  • 15249f3 Update to use Symbol instead of __inSetup property
  • d63d174 Merge pull request #94 from canjs/greenkeeper/testee-0.9.0
  • 8838dc5 Merge pull request #95 from canjs/landscaper/update-default-repos
  • e251806 Update readme.md
  • 53e010c Update README generated by DoneJS
  • 25f6899 chore(package): update testee to version 0.9.0
  • 62a0a49 Merge pull request #93 from canjs/greenkeeper/done-serve-3.0.0
  • dd48aa4 chore(package): update done-serve to version 3.0.0

See the full diff

greenkeeper bot added a commit that referenced this pull request May 8, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented May 8, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request May 26, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented May 26, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Aug 9, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 9, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Aug 21, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 21, 2019

Update to this version instead 🚀

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

Successfully merging this pull request may close these issues.

0 participants