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: 4.0.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: 4.0.2
Choose a head ref
  • 4 commits
  • 53 files changed
  • 1 contributor

Commits on Apr 22, 2021

  1. Verified

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

Commits on May 6, 2021

  1. fix: properly export the Socket class

    Before this change, `require("socket.io").Socket` would return
    "undefined".
    
    Note: having access to the Socket class allows users to modify its
    prototype.
    
    Related: #3726
    darrachequesne committed May 6, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    d65b6ee 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
    b81ce4c View commit details
  3. chore(release): 4.0.2

    darrachequesne committed May 6, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    9fff034 View commit details
Showing with 2,162 additions and 36 deletions.
  1. +9 −0 CHANGELOG.md
  2. +13 −13 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. +19 −0 examples/basic-crud-application/README.md
  9. +17 −0 examples/basic-crud-application/angular-client/.browserslistrc
  10. +16 −0 examples/basic-crud-application/angular-client/.editorconfig
  11. +46 −0 examples/basic-crud-application/angular-client/.gitignore
  12. +31 −0 examples/basic-crud-application/angular-client/README.md
  13. +128 −0 examples/basic-crud-application/angular-client/angular.json
  14. BIN examples/basic-crud-application/angular-client/assets/demo.gif
  15. +37 −0 examples/basic-crud-application/angular-client/e2e/protractor.conf.js
  16. +23 −0 examples/basic-crud-application/angular-client/e2e/src/app.e2e-spec.ts
  17. +11 −0 examples/basic-crud-application/angular-client/e2e/src/app.po.ts
  18. +13 −0 examples/basic-crud-application/angular-client/e2e/tsconfig.json
  19. +44 −0 examples/basic-crud-application/angular-client/karma.conf.js
  20. +46 −0 examples/basic-crud-application/angular-client/package.json
  21. 0 examples/basic-crud-application/angular-client/src/app/app.component.css
  22. +23 −0 examples/basic-crud-application/angular-client/src/app/app.component.html
  23. +31 −0 examples/basic-crud-application/angular-client/src/app/app.component.spec.ts
  24. +59 −0 examples/basic-crud-application/angular-client/src/app/app.component.ts
  25. +19 −0 examples/basic-crud-application/angular-client/src/app/app.module.ts
  26. +140 −0 examples/basic-crud-application/angular-client/src/app/store.ts
  27. 0 examples/basic-crud-application/angular-client/src/assets/.gitkeep
  28. +4 −0 examples/basic-crud-application/angular-client/src/environments/environment.prod.ts
  29. +17 −0 examples/basic-crud-application/angular-client/src/environments/environment.ts
  30. BIN examples/basic-crud-application/angular-client/src/favicon.ico
  31. +13 −0 examples/basic-crud-application/angular-client/src/index.html
  32. +12 −0 examples/basic-crud-application/angular-client/src/main.ts
  33. +63 −0 examples/basic-crud-application/angular-client/src/polyfills.ts
  34. +381 −0 examples/basic-crud-application/angular-client/src/styles.css
  35. +25 −0 examples/basic-crud-application/angular-client/src/test.ts
  36. +15 −0 examples/basic-crud-application/angular-client/tsconfig.app.json
  37. +29 −0 examples/basic-crud-application/angular-client/tsconfig.json
  38. +18 −0 examples/basic-crud-application/angular-client/tsconfig.spec.json
  39. +152 −0 examples/basic-crud-application/angular-client/tslint.json
  40. +35 −0 examples/basic-crud-application/server/lib/app.ts
  41. +37 −0 examples/basic-crud-application/server/lib/events.ts
  42. +19 −0 examples/basic-crud-application/server/lib/index.ts
  43. +159 −0 examples/basic-crud-application/server/lib/todo-management/todo.handlers.ts
  44. +49 −0 examples/basic-crud-application/server/lib/todo-management/todo.repository.ts
  45. +24 −0 examples/basic-crud-application/server/lib/util.ts
  46. +36 −0 examples/basic-crud-application/server/package.json
  47. +309 −0 examples/basic-crud-application/server/test/todo-management/todo.tests.ts
  48. +11 −0 examples/basic-crud-application/server/tsconfig.json
  49. +2 −1 lib/client.ts
  50. +13 −1 lib/index.ts
  51. +4 −4 package-lock.json
  52. +2 −2 package.json
  53. +1 −8 test/socket.io.ts
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [4.0.2](https://github.com/socketio/socket.io/compare/4.0.1...4.0.2) (2021-05-06)


### Bug Fixes

* **typings:** make "engine" attribute public ([b81ce4c](https://github.com/socketio/socket.io/commit/b81ce4c9d0b00666361498e2ba5e0d007d5860b8))
* properly export the Socket class ([d65b6ee](https://github.com/socketio/socket.io/commit/d65b6ee84c8e91deb61c3c1385eb19afa196a909))


## [4.0.1](https://github.com/socketio/socket.io/compare/4.0.0...4.0.1) (2021-03-31)


26 changes: 13 additions & 13 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