Skip to content

Releases: canjs/can-connect

check if props exist before running connection.id

06 Jul 22:04
Compare
Choose a tag to compare

this patch fixes an issue with constructor-hydrate behaviors when a Map type is instantiated without a props object passed to it.

See #516

Move packages as devDependencies

04 Mar 18:06
Compare
Choose a tag to compare

move can-observable-* packages to development dependencies (devDependencies)

#512

Fix the production build for non-steal bundlers for 3.x versions

12 Dec 18:28
Compare
Choose a tag to compare

Fix the production build for non-steal bundlers

04 Oct 14:40
Compare
Choose a tag to compare

Removal of can-connect/tag/

04 Oct 17:19
Compare
Choose a tag to compare

This is a breaking release that moves can-connect/tag/ to its own repo, can-connect-tag.

Fix highlighting in the docs & tests in IE11

16 Sep 15:38
Compare
Choose a tag to compare
  • Adding javascript parsing for #499 7ff6cf2
  • Fix the tests so all of them can run in IE #501

Bump the semver range for can-type

05 Sep 12:55
Compare
Choose a tag to compare
  • Bump the semver range for can-type #497
  • Fix JSHint and linting errors #498

Remove can-util

01 Sep 22:07
Compare
Choose a tag to compare
  • Remove can-util usage
  • Fix can-connect/can/map/map with can-observable-object test

#492

Remove npm version dependency

17 Jul 22:34
Compare
Choose a tag to compare

This removes the dependency of npm version in package.json which caused error during installation.

#487

Mutiple entries support

08 Jul 18:26
Compare
Choose a tag to compare

This fixes the ability to add multiple entries:

var set = new WeakReferenceSet();

var item1 = {};
var item2 = {};
var item3 = {};

set.addReference(item1);
set.addReference(item2);
set.addReference(item3);

set.get(item1) // => item1
set.get(item2) // => item2
set.get(item3) // => item3

#486