Skip to content

Commit 9c65cea

Browse files
"release v1.2.0"
1 parent 31c2e80 commit 9c65cea

File tree

10 files changed

+256
-107
lines changed

10 files changed

+256
-107
lines changed

dist/ref-parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.$RefParser = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
22
/**!
3-
* JSON Schema $Ref Parser v1.1.0
3+
* JSON Schema $Ref Parser v1.2.0
44
*
55
* @link https://github.com/BigstickCarpet/json-schema-ref-parser
66
* @license MIT

dist/ref-parser.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ref-parser.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ref-parser.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* JSON Schema $Ref Parser v1.1.0
2+
* JSON Schema $Ref Parser v1.2.0
33
*
44
* @link https://github.com/BigstickCarpet/json-schema-ref-parser
55
* @license MIT

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-schema-ref-parser",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
55
"keywords": [
66
"json",
@@ -38,12 +38,12 @@
3838
},
3939
"devDependencies": {
4040
"bower": "^1.5.2",
41-
"chai": "^3.2.0",
41+
"chai": "^3.3.0",
4242
"coveralls": "^2.11.4",
4343
"istanbul": "^0.3.20",
4444
"jscs": "^2.1.1",
4545
"jshint": "^2.8.0",
46-
"karma": "^0.13.9",
46+
"karma": "^0.13.10",
4747
"karma-chrome-launcher": "^0.2.0",
4848
"karma-cli": "0.1.0",
4949
"karma-coverage": "^0.5.2",
@@ -54,7 +54,7 @@
5454
"karma-phantomjs-launcher": "^0.2.1",
5555
"karma-safari-launcher": "^0.1.1",
5656
"karma-sauce-launcher": "^0.2.14",
57-
"mocha": "^2.3.2",
57+
"mocha": "^2.3.3",
5858
"npm-check-updates": "^2.2.3",
5959
"phantomjs": "^1.9.18",
6060
"simplifyify": "^1.4.1",

tests/bower_components/mocha/.bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
"tap"
4444
],
4545
"license": "MIT",
46-
"version": "2.3.2",
47-
"_release": "2.3.2",
46+
"version": "2.3.3",
47+
"_release": "2.3.3",
4848
"_resolution": {
4949
"type": "version",
50-
"tag": "v2.3.2",
51-
"commit": "0f8f831f8373b9c6ca4c74304cbfee608339b829"
50+
"tag": "v2.3.3",
51+
"commit": "69a193eaf82d3410da03190f32fc27e28fa1b4b0"
5252
},
5353
"_source": "git://github.com/mochajs/mocha.git",
5454
"_target": "*",

tests/bower_components/mocha/HISTORY.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,35 @@
1+
2.3.3 / 2015-09-19
2+
==================
3+
4+
* [#1875] - Fix Markdown reporter exceeds maximum call stack size ([@danielstjules])
5+
* [#1864] - Fix xunit missing output with --reporter-options output ([@danielstjules])
6+
* [#1846] - Support all harmony flags ([@danielstjules])
7+
* Fix fragile xunit reporter spec ([@danielstjules])
8+
* [#1669] - Fix catch uncaught errors outside test suite execution ([@danielstjules])
9+
* [#1868] - Revert jade to support npm < v1.3.7 ([@danielstjules])
10+
* [#1766] - Don't remove modules/components from stack trace in the browser ([@danielstjules])
11+
* [#1798] - Fix correctly attribute mutiple done err with hooks ([@danielstjules])
12+
* Fix use utils.reduce for IE8 compatibility ([@wsw0108])
13+
* Some linting errors fixed by [@danielstjules]
14+
* Call the inspect() function if message is not set ([@kevinburke])
15+
16+
[#1875]: https://github.com/mochajs/mocha/issues/1875
17+
[#1864]: https://github.com/mochajs/mocha/issues/1864
18+
[#1846]: https://github.com/mochajs/mocha/issues/1846
19+
[#1669]: https://github.com/mochajs/mocha/issues/1669
20+
[#1868]: https://github.com/mochajs/mocha/issues/1868
21+
[#1766]: https://github.com/mochajs/mocha/issues/1766
22+
[#1798]: https://github.com/mochajs/mocha/issues/1798
23+
[@danielstjules]: https://github.com/danielstjules
24+
[@wsw0108]: https://github.com/wsw0108
25+
[@kevinburke]: https://github.com/kevinburke
26+
127
2.3.2 / 2015-09-07
228
==================
329
* [#1868] - Fix compatibility with older versions of NPM ([@boneskull])
430

531
[#1868]: https://github.com/mochajs/mocha/issues/1868
6-
32+
733
2.3.1 / 2015-09-06
834
==================
935

@@ -23,7 +49,7 @@
2349
* [#1230] - More descriptive beforeEach/afterEach messages ([@duncanbeevers])
2450
* [#1787] - Scope loading behaviour instead of using early return ([@aryeguy])
2551
* [#1789] - Fix: html-runner crashing ([@sunesimonsen])
26-
* [#1749] - Fix maximum call stack error on large amount of tests ([@tinganho])
52+
* [#1749] - Fix maximum call stack error on large amount of tests ([@tinganho])
2753
* [#1230] - Decorate failed hook titles with test title ([@duncanbeevers])
2854
* [#1260] - Build using Browserify ([@ndhoule])
2955
* [#1728] - Don't use `__proto__` ([@ndhoule])
@@ -32,7 +58,7 @@
3258
* [#1766] - Fix overly aggressive stack suppression ([@moll])
3359
* [#1752] - Avoid potential infinite loop ([@gsilk])
3460
* [#1761] - Fix problems running under PhantomJS ([@chromakode])
35-
* [#1700] - Fix more problems running under PhantomJS ([@jbnicolai])
61+
* [#1700] - Fix more problems running under PhantomJS ([@jbnicolai])
3662
* [#1774] - Support escaped spaces in CLI options ([@adamgruber])
3763
* [#1687] - Fix HTML reporter links with special chars ([@benvinegar])
3864
* [#1359] - Adopt code style and enforce it using ESLint ([@ndhoule] w/ assist from [@jbnicolai] & [@boneskull])

0 commit comments

Comments
 (0)