Socket
Socket
Sign inDemoInstall

karma

Package Overview
Dependencies
Maintainers
1
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma - npm Package Compare versions

Comparing version 0.8.6 to 0.8.7

9

CHANGELOG.md

@@ -0,1 +1,10 @@

<a name="v0.8.7"></a>
### v0.8.7 (2013-07-18)
#### Bug Fixes
* **html2js:** handling of the backslash character ([0f0a0893](https://github.com/karma-runner/karma/commit/0f0a0893115c5b58cc6f5605cf33db5aea54a731), closes [#583](https://github.com/karma-runner/karma/issues/583))
* **watcher:** ignore fs.stat errors ([c07dd160](https://github.com/karma-runner/karma/commit/c07dd16052fd11bcc6ae501824fbc7eb4717976e))
<a name="v0.8.6"></a>

@@ -2,0 +11,0 @@ ### v0.8.6 (2013-06-16)

23

lib/file-list.js

@@ -186,13 +186,18 @@ var fs = require('fs');

fs.stat(path, function(error, stat) {
if (!stat.isDirectory()) {
// TODO(vojta): reuse file objects
var file = new File(path, stat.mtime);
if (error) {
log.debug('An error occured while reading "%s"', path);
finish();
} else {
if (!stat.isDirectory()) {
// TODO(vojta): reuse file objects
var file = new File(path, stat.mtime);
preprocess(file, function() {
buckets[i].push(file);
preprocess(file, function() {
buckets[i].push(file);
finish();
});
} else {
log.debug('Ignored directory "%s"', path);
finish();
});
} else {
log.debug('Ignored directory "%s"', path);
finish();
}
}

@@ -199,0 +204,0 @@ });

@@ -11,3 +11,3 @@ var util = require('util');

var escapeContent = function(content) {
return content.replace(/'/g, '\\\'').replace(/\r?\n/g, '\\n\' +\n \'');
return content.replace(/\\/g, '\\\\').replace(/'/g, '\\\'').replace(/\r?\n/g, '\\n\' +\n \'');
};

@@ -14,0 +14,0 @@

@@ -26,11 +26,24 @@ {

"Shyam Seshadri <shyamseshadri@gmail.com>",
"Iristyle <Iristyle@github>",
"Marcello Nuccio <marcello.nuccio@gmail.com>",
"Daniel Aleksandersen <code@daniel.priv.no>",
"Marcello Nuccio <marcello.nuccio@gmail.com>",
"Iristyle <Iristyle@github>",
"Ilya Volodin <ivolodin@vistaprint.com>",
"Igor Minar <igor@angularjs.org>",
"Bulat Shakirzyanov <mallluhuct@gmail.com>",
"Igor Minar <igor@angularjs.org>",
"Hugues Malphettes <hmalphettes@gmail.com>",
"Igor Minar <iiminar@gmail.com>",
"rdodev <rubenoz@gmail.com>",
"Fred Sauer <fredsa@google.com>",
"hrgdavor <hrgdavor@gmail.com>",
"Alexander Shtuchkin <ashtuchkin@gmail.com>",
"Andy Joslin <andytjoslin@gmail.com>",
"David Souther <davidsouther@gmail.com>",
"David Jensen <david@frode.(none)>",
"James Shore <jshore@jamesshore.com>",
"Julian Connor <julian.connor@venmo.com>",
"Kevin Ortman <kevin_ortman@msn.com>",
"Kim Joar Bekkelund <kjbekkelund@gmail.com>",
"Chris Dawson <xrdawson@gmail.com>",
"Lucas Galfasó <lgalfaso@gmail.com>",
"Chad Smith <chad@configit.com>",
"Marko Anastasov <marko@renderedtext.com>",

@@ -43,19 +56,11 @@ "Milan Aleksic <milanaleksic@gmail.com>",

"Pete Swan <pete@indabamusic.com>",
"Shane Osbourne <shane.osbourne8@gmail.com>",
"Brian Ford <btford@umich.edu>",
"Veronica Lynn <veronica.lynn@redjack.com>",
"AvnerCohen <israbirding@gmail.com>",
"Yi Wang <e@yi-wang.me>",
"ahaurw01 <ahaurwitz@gmail.com>",
"hrgdavor <hrgdavor@gmail.com>",
"James Shore <jshore@jamesshore.com>",
"Andy Joslin <andytjoslin@gmail.com>",
"AvnerCohen <israbirding@gmail.com>",
"Brian Ford <btford@umich.edu>",
"Chad Smith <chad@configit.com>",
"David Jensen <david@frode.(none)>",
"David Souther <davidsouther@gmail.com>",
"Ed Rooth <ed.rooth@rackspace.com>",
"Eldar Jafarov <djkojb@gmail.com>",
"Ethan J. Brown <ethan_j_brown@hotmail.com>",
"Fred Sauer <fredsa@google.com>",
"Alexander Shtuchkin <ashtuchkin@gmail.com>",
"Kevin Ortman <kevin_ortman@msn.com>",
"Kim Joar Bekkelund <kjbekkelund@gmail.com>"
"Ed Rooth <ed.rooth@rackspace.com>"
],

@@ -110,3 +115,3 @@ "dependencies": {

},
"version": "0.8.6"
"version": "0.8.7"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc