Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: socketio/socket.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.1.1
Choose a base ref
...
head repository: socketio/socket.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.1.2
Choose a head ref
  • 7 commits
  • 32 files changed
  • 1 contributor

Commits on Feb 9, 2021

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    8b404f4 View commit details

Commits on Feb 15, 2021

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    992c938 View commit details

Commits on Feb 16, 2021

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    7247b40 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    7467216 View commit details

Commits on Feb 25, 2021

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    67a61e3 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    494c64e View commit details

Commits on Feb 26, 2021

  1. chore(release): 3.1.2

    darrachequesne committed Feb 26, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    225ade0 View commit details
Showing with 998 additions and 33 deletions.
  1. +8 −0 CHANGELOG.md
  2. +18 −15 client-dist/socket.io.js
  3. +1 −1 client-dist/socket.io.js.map
  4. +2 −2 client-dist/socket.io.min.js
  5. +1 −1 client-dist/socket.io.min.js.map
  6. +2 −2 client-dist/socket.io.msgpack.min.js
  7. +1 −1 client-dist/socket.io.msgpack.min.js.map
  8. +24 −0 examples/private-messaging/.gitignore
  9. +23 −0 examples/private-messaging/README.md
  10. +5 −0 examples/private-messaging/babel.config.js
  11. +43 −0 examples/private-messaging/package.json
  12. BIN examples/private-messaging/public/favicon.ico
  13. BIN examples/private-messaging/public/fonts/Lato-Regular.ttf
  14. +17 −0 examples/private-messaging/public/index.html
  15. +31 −0 examples/private-messaging/server/cluster.js
  16. +7 −0 examples/private-messaging/server/docker-compose.yml
  17. +125 −0 examples/private-messaging/server/index.js
  18. +54 −0 examples/private-messaging/server/messageStore.js
  19. +17 −0 examples/private-messaging/server/package.json
  20. +89 −0 examples/private-messaging/server/sessionStore.js
  21. +78 −0 examples/private-messaging/src/App.vue
  22. +165 −0 examples/private-messaging/src/components/Chat.vue
  23. +101 −0 examples/private-messaging/src/components/MessagePanel.vue
  24. +36 −0 examples/private-messaging/src/components/SelectUsername.vue
  25. +27 −0 examples/private-messaging/src/components/StatusIcon.vue
  26. +63 −0 examples/private-messaging/src/components/User.vue
  27. +8 −0 examples/private-messaging/src/main.js
  28. +10 −0 examples/private-messaging/src/socket.js
  29. +5 −1 lib/socket.ts
  30. +7 −7 package-lock.json
  31. +3 −3 package.json
  32. +27 −0 test/socket.io.ts
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [3.1.2](https://github.com/socketio/socket.io/compare/3.1.1...3.1.2) (2021-02-26)


### Bug Fixes

* ignore packets received after disconnection ([494c64e](https://github.com/socketio/socket.io/commit/494c64e44f645cbd24c645f1186d203789e84af0))


## [3.1.1](https://github.com/socketio/socket.io/compare/3.1.0...3.1.1) (2021-02-03)


33 changes: 18 additions & 15 deletions client-dist/socket.io.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client-dist/socket.io.js.map

Large diffs are not rendered by default.

Loading