diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f8df94..95cfcaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [4.8.1] - 2024-11-25 + +### Update + +- Bump `@angular/core` dependencies to v19.0.0. + ## [4.8.0] - 2024-11-21 ### Update diff --git a/README.md b/README.md index fddf6b8..f0a4d7b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Make sure you're using the proper corresponding version of socket.io on the server. | Package Version | Socket-io Server Version | Angular version | -|-----------------|--------------------------|-----------------| +| --------------- | ------------------------ | --------------- | | v3.4.0 | v2.2.0 | | | v4.1.0 | v4.0.0 | 12.x | | 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 | v4.5.0 | v4.5.1 | 16.x | | v4.6.1 | v4.7.2 | 17.x | | v4.7.0 | v4.7.2 | 18.x | -| v4.8.0 | v4.8.1 | 19.x | +| v4.8.1 | v4.8.1 | 19.x | ## How to use @@ -59,9 +59,7 @@ import { SocketIoModule, SocketIoConfig } from 'ngx-socket-io'; const config: SocketIoConfig = { url: 'http://localhost:8988', options: {} }; export const appConfig: ApplicationConfig = { - providers: [ - importProvidersFrom(SocketIoModule.forRoot(config)) - ] + providers: [importProvidersFrom(SocketIoModule.forRoot(config))], }; ``` diff --git a/package-lock.json b/package-lock.json index 0abb90f..d839051 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-socket-io", - "version": "4.8.0", + "version": "4.8.1", "lockfileVersion": 3, "requires": true, "packages": { @@ -31,7 +31,7 @@ }, "peerDependencies": { "@angular/common": "^19.0.0", - "@angular/core": "^18.0.0", + "@angular/core": "^19.0.0", "rxjs": "^7.0.0" } }, diff --git a/package.json b/package.json index a56dd22..c298e54 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-socket-io", - "version": "4.8.0", + "version": "4.8.1", "description": "Socket.IO module for Angular", "main": "index.ts", "scripts": { @@ -32,7 +32,7 @@ }, "peerDependencies": { "@angular/common": "^19.0.0", - "@angular/core": "^18.0.0", + "@angular/core": "^19.0.0", "rxjs": "^7.0.0" }, "devDependencies": {