Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump project dependencies #784

Merged
merged 1 commit into from
Oct 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions functions/package-lock.json

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

10 changes: 5 additions & 5 deletions functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"start:emulators": "firebase emulators:start --only functions"
},
"dependencies": {
"@grpc/grpc-js": "1.9.7",
"@grpc/grpc-js": "1.9.8",
"@grpc/proto-loader": "0.7.10",
"@nestjs/apollo": "12.0.9",
"@nestjs/throttler": "5.0.0",
"@nestjs/throttler": "5.0.1",
"@nestjs/axios": "3.0.0",
"@nestjs/common": "10.2.7",
"@nestjs/config": "3.1.1",
Expand All @@ -28,17 +28,17 @@
"@nestjs/passport": "10.0.2",
"@nestjs/platform-express": "10.2.7",
"@nestjs/platform-ws": "10.2.7",
"@nestjs/swagger": "7.1.13",
"@nestjs/swagger": "7.1.14",
"@nestjs/websockets": "10.2.7",
"@nestjs/cache-manager": "2.1.0",
"cache-manager": "5.2.4",
"@types/compression": "1.7.4",
"@types/express": "4.17.20",
"@types/graphql-upload": "16.0.4",
"@types/node": "20.8.7",
"@types/node": "20.8.9",
"@types/websocket": "1.0.8",
"@types/ws": "8.5.8",
"@apollo/server": "4.9.4",
"@apollo/server": "4.9.5",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"compression": "1.7.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
WsResponse,
} from '@nestjs/websockets';
import { Subscription, tap, timer } from 'rxjs';
import WebSocket, { Server } from 'ws';
import { Server, WebSocket } from 'ws';

import { dianosticEventsGatewayPort, IUserCountEvent, TDiagData } from '../interfaces/diagnostics.interface';
import { AppDiagnosticsService } from '../services/diagnostics.service';
Expand All @@ -32,7 +32,7 @@ export class AppDiagnosticsGateway implements OnGatewayConnection, OnGatewayDisc
* @param client web socket client
* @param data stringified event data
*/
public sendEvent(client: WebSocket.WebSocket, data: string) {
public sendEvent(client: WebSocket, data: string) {
client.send(data);
}

Expand Down
6 changes: 3 additions & 3 deletions libs/client-d3-charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rfprodz/client-d3-charts",
"version": "1.4.6",
"version": "1.4.7",
"description": "Angular chart components based on D3JS (https://d3js.org).",
"keywords": [
"angular-charts",
Expand All @@ -24,8 +24,8 @@
"tslib": "2.6.2"
},
"peerDependencies": {
"@angular/common": "16.2.10",
"@angular/core": "16.2.10",
"@angular/common": "16.2.11",
"@angular/core": "16.2.11",
"@types/d3": "7.4.2",
"d3": "7.8.5"
}
Expand Down
10 changes: 5 additions & 5 deletions libs/client-pwa-offline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rfprodz/client-pwa-offline",
"version": "1.0.17",
"version": "1.0.18",
"description": "PWA offline feature for Angular clients.",
"keywords": [
"angular-module",
Expand All @@ -21,9 +21,9 @@
"tslib": "2.6.2"
},
"peerDependencies": {
"@angular/common": "16.2.10",
"@angular/core": "16.2.10",
"@angular/material": "16.2.9",
"@angular/router": "16.2.10"
"@angular/common": "16.2.11",
"@angular/core": "16.2.11",
"@angular/material": "16.2.10",
"@angular/router": "16.2.11"
}
}
4 changes: 2 additions & 2 deletions libs/client-util-eliza/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rfprodz/client-util-eliza",
"version": "1.3.18",
"version": "1.3.19",
"description": "Angular chatbot logic based on Eliza (https://en.wikipedia.org/wiki/ELIZA).",
"keywords": [
"angular-chatbot",
Expand All @@ -23,6 +23,6 @@
"tslib": "2.6.2"
},
"peerDependencies": {
"@angular/core": "16.2.10"
"@angular/core": "16.2.11"
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FactoryProvider } from '@angular/core';
import { TestBed } from '@angular/core/testing';
import { testingEnvironment } from '@app/client-testing-unit';
import * as Sentry from '@sentry/angular-ivy';
import * as sentry from '@sentry/angular-ivy';

import { AppSentryService, initializeSentry, sentryProviders } from './sentry.service';

Expand All @@ -12,13 +12,13 @@ describe('AppSentryService', () => {
await TestBed.configureTestingModule({
providers: [
{
provide: Sentry.TraceService,
provide: sentry.TraceService,
useValue: {},
},
{
provide: AppSentryService,
useFactory: (trace: Sentry.TraceService) => new AppSentryService(trace),
deps: [Sentry.TraceService],
useFactory: (trace: sentry.TraceService) => new AppSentryService(trace),
deps: [sentry.TraceService],
},
],
}).compileComponents();
Expand All @@ -37,7 +37,6 @@ describe('AppSentryService', () => {
});

it('should not initialize Sentry for unit testing and development environments', () => {
const sentry = Sentry;
const initSpy = jest.spyOn(sentry, 'init');
expect(env.sentry.env).toEqual('unit-testing');
initializeSentry(env, env.meta.version);
Expand All @@ -49,7 +48,6 @@ describe('AppSentryService', () => {
});

it('should initialize Sentry for the production environment', () => {
const sentry = Sentry;
const initSpy = jest.spyOn(sentry, 'init');
env.sentry.env = 'production';
initializeSentry(env, env.meta.version);
Expand Down
Loading