Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
vendor: Upgrade rxjs to 7 and typescript to 4 (#60)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Kim <[email protected]>
  • Loading branch information
jooskim authored Sep 8, 2021
1 parent 4484550 commit 1275f37
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 95 deletions.
13 changes: 12 additions & 1 deletion build/npm/transport.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"url": "[email protected]:vmware/transport-typescript.git"
},
"peerDependencies": {
"rxjs": "^6.4.0"
"rxjs": "6 - 7",
"typescript": ">= 4.2"
},
//@exclude
"scripts": {
Expand All @@ -27,6 +28,16 @@
],
"license": "BSD-2-Clause",
"changelogHistory": [
{
"date": "9/8/21",
"version": "1.3.5",
"notes": [
{
"description": "Upgrade rxjs to 7 and typescript to 4",
"review_uri": "https://github.com/vmware/transport-typescript/pull/60"
}
]
},
{
"date": "9/3/21",
"version": "1.3.4",
Expand Down
162 changes: 75 additions & 87 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@vmw/transport",
"version": "1.3.4",
"version": "1.3.5",
"private": false,
"license": "BSD-2-Clause",
"repository": "[email protected]:vmware/transport-typescript.git",
"dependencies": {
"karma-jasmine-html-reporter": "^1.5.4",
"rxjs": "^6.6.3"
"rxjs": "^7.3.0"
},
"devDependencies": {
"@types/fetch-mock": "^7.3.3",
Expand Down Expand Up @@ -45,8 +45,8 @@
"systemjs-builder": "^0.16.13",
"ts-loader": "^6.2.2",
"tslint": "5.11.0",
"typedoc": "^0.20.24",
"typescript": "^3.9.7",
"typedoc": "^0.21.9",
"typescript": "^4.4.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-rxjs-externals": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/bus.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { BrokerConnector } from './bridge';
export declare type NgZoneRef = any;

// current version
const version = '1.3.4';
const version = '1.3.5';

export type ChannelName = string;
export type SentFrom = string;
Expand Down
4 changes: 2 additions & 2 deletions src/bus/bus.lowlevel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ export class EventBusLowLevelApiImpl implements EventBusLowApi {
private sendSubscribedMonitorMessage(uuid: UUID, channelName: ChannelName, from?: SentFrom): void {
this.monitorStream.send(
new Message().request(
new MonitorObject().build(MonitorType.MonitorObserverSubscribedChannel, channelName, name,
new MonitorObject().build(MonitorType.MonitorObserverSubscribedChannel, channelName, from,
{id: uuid, from: from})
)
);
Expand All @@ -508,7 +508,7 @@ export class EventBusLowLevelApiImpl implements EventBusLowApi {
private sendUnsubscribedMonitorMessage(uuid: UUID, channelName: ChannelName, from?: SentFrom): void {
this.monitorStream.send(
new Message().request(
new MonitorObject().build(MonitorType.MonitorObserverUnsubscribedChannel, channelName, name,
new MonitorObject().build(MonitorType.MonitorObserverUnsubscribedChannel, channelName, from,
{id: uuid, from: from})
)
);
Expand Down

0 comments on commit 1275f37

Please sign in to comment.