Skip to content

Commit 6ff0545

Browse files
committed
Bump @angular/core to v19
1 parent e7bdaa5 commit 6ff0545

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [4.8.1] - 2024-11-25
9+
10+
### Update
11+
12+
- Bump `@angular/core` dependencies to v19.0.0.
13+
814
## [4.8.0] - 2024-11-21
915

1016
### Update

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
Make sure you're using the proper corresponding version of socket.io on the server.
1616

1717
| Package Version | Socket-io Server Version | Angular version |
18-
|-----------------|--------------------------|-----------------|
18+
| --------------- | ------------------------ | --------------- |
1919
| v3.4.0 | v2.2.0 | |
2020
| v4.1.0 | v4.0.0 | 12.x |
2121
| v4.2.0 | v4.0.0 | 13.x |
@@ -24,7 +24,7 @@ Make sure you're using the proper corresponding version of socket.io on the serv
2424
| v4.5.0 | v4.5.1 | 16.x |
2525
| v4.6.1 | v4.7.2 | 17.x |
2626
| v4.7.0 | v4.7.2 | 18.x |
27-
| v4.8.0 | v4.8.1 | 19.x |
27+
| v4.8.1 | v4.8.1 | 19.x |
2828

2929
## How to use
3030

@@ -59,9 +59,7 @@ import { SocketIoModule, SocketIoConfig } from 'ngx-socket-io';
5959
const config: SocketIoConfig = { url: 'http://localhost:8988', options: {} };
6060

6161
export const appConfig: ApplicationConfig = {
62-
providers: [
63-
importProvidersFrom(SocketIoModule.forRoot(config))
64-
]
62+
providers: [importProvidersFrom(SocketIoModule.forRoot(config))],
6563
};
6664
```
6765

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-socket-io",
3-
"version": "4.8.0",
3+
"version": "4.8.1",
44
"description": "Socket.IO module for Angular",
55
"main": "index.ts",
66
"scripts": {
@@ -32,7 +32,7 @@
3232
},
3333
"peerDependencies": {
3434
"@angular/common": "^19.0.0",
35-
"@angular/core": "^18.0.0",
35+
"@angular/core": "^19.0.0",
3636
"rxjs": "^7.0.0"
3737
},
3838
"devDependencies": {

0 commit comments

Comments
 (0)