Skip to content

Commit 3be0c73

Browse files
committed
[dist] 1.1.0
1 parent 783d1fe commit 3be0c73

File tree

10 files changed

+188
-97
lines changed

10 files changed

+188
-97
lines changed

Changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.1.0
2+
==
3+
4+
* Fix IE7/8 usage of `console.log` which does not have `apply` - #279
5+
* Remove `dbg` global variable - #282
6+
* Bump `faye-websocket` version to `0.11.0` - #267
7+
* Optimize `arguments` usage - #263
8+
* Add sourcemap file to dist folder - #237
9+
* Add way to transparently pass transport-specific options - #272
10+
111
1.0.3
212
==
313

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ First, you need to load the SockJS JavaScript library. For example, you can
8282
put that in your HTML head:
8383

8484
```html
85-
<script src="//cdn.jsdelivr.net/sockjs/1.0.3/sockjs.min.js"></script>
85+
<script src="//cdn.jsdelivr.net/sockjs/1/sockjs.min.js"></script>
8686
```
8787

8888
After the script is loaded you can establish a connection with the
@@ -258,7 +258,7 @@ You should use a version of sockjs-client
258258
that supports the protocol used by your server. For example:
259259

260260
```html
261-
<script src="//cdn.jsdelivr.net/sockjs/1.0.3/sockjs.min.js"></script>
261+
<script src="//cdn.jsdelivr.net/sockjs/1/sockjs.min.js"></script>
262262
```
263263

264264

dist/sockjs-1.0.3.min.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

dist/sockjs-1.0.3.js renamed to dist/sockjs-1.1.0.js

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

dist/sockjs-1.1.0.min.js

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

dist/sockjs.js

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

dist/sockjs.js.map

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

dist/sockjs.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.

lib/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = '1.0.3';
1+
module.exports = '1.1.0';

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sockjs-client",
33
"description": "SockJS-client is a browser JavaScript library that provides a WebSocket-like object. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.",
4-
"version": "1.0.3",
4+
"version": "1.1.0",
55
"author": "Bryce Kahle",
66
"browser": {
77
"./lib/transport/driver/websocket.js": "./lib/transport/browser/websocket.js",
@@ -45,7 +45,7 @@
4545
"mocha": "^1.21.5",
4646
"node-static": "^0.7.6",
4747
"proxyquire": "~1.0.1",
48-
"sockjs": "^0.3.11",
48+
"sockjs": "^0.3.17",
4949
"vinyl-buffer": "~1.0.0",
5050
"vinyl-source-stream": "^1.0.0",
5151
"zuul": "git://github.com/brycekahle/zuul#ngrok"

0 commit comments

Comments
 (0)