• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

nodecg / nodecg / 869
80%

Build:
DEFAULT BRANCH: master
Ran 06 May 2016 02:49PM UTC
Jobs 1
Files 24
Run time 3s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
869

push

travis-ci

Lange
refactor(replicants): use Proxy instead of Object.observe (#163)

BREAKING CHANGE: The order of Replicant `change` event arguments has been swapped. `newVal` is now the first argument, `oldVal` is the second argument. Be sure to update all of your `change` event handlers accordingly.

	To migrate, follow the example below:

	Before:

	```
	myRep.on('change', function (oldVal, newVal) {
		// do work
	});
	```

	After:

	```
	myRep.on('change', function (newVal, oldVal) {
		// do work
	});
	```

BREAKING CHANGE: The third Replicant `change` event argument has been changed. Previously it was `changes`, an array of Object.observe change records. It is now `operations`, an array of operation records in NodeCG's internal format. This format is likely to continue changing as we figure out what works best. Any further changes to this format will be considered breaking.

BREAKING CHANGE: WeakMap and Object.observe shims have been removed. This probably won't affect anyone, as any browser that supports Proxy also supports WeakMap, but be aware of it.

840 of 1240 relevant lines covered (67.74%)

4.81 hits per line

Jobs
ID Job ID Ran Files Coverage
1 869.1 06 May 2016 02:49PM UTC 0
67.74
Travis Job 869.1
Source Files on build 869
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #869
  • 05ec8911 on github
  • Prev Build on master (#831)
  • Next Build on master (#870)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc