Skip to content

Commit 7c13bec

Browse files
refactor(directline): update rxjs to v6, use rxjs pipeable operators, update webpack to v4
chore(npm): update dependencies, add tslint fix(directline): add missing commits post rebase docs(changelog): add message to change log, bump npm version fix(directline.interface): fix tslint errors fix(directline): add new changes from master refactor(app): remove dist directory chore(npm): update dependencies refactor(directline): remove unused imports chore(npm): update dependencies fix(directline): add new changes from master fix(changelog): remove duplicate entries fix(directline): add new changes from master test(directline): update failing tests to use rxjs v6 chore(npm): update dependencies fix(directline): remove unused files chore(npm): update dependencies fix(directline): add new changes from master chore(npm): update dependencies refactor(directline): update deprecated rxjs functions with new equivalent, fix failing tests fix(readme): correct typo fix(.gitignore): add missing newline at EOF fix(directline-mock): correct function, variables order fix(directline-streaming): import explicit named import from bfse refactor(directline): disable directline streaming export until Node.js packages are removed from botframework-streaming package chore(npm): update dependencies fix(webpack): replace deprecated webpack Visualizer plugin with BundleAnalyzerPlugin docs(directline): update streaming package comment fix(package): correct version, name chore(npm): update dependencies fix(tests): add directline streaming package back to fix failing tests chore(jsdom): update package feat(Activity): add adaptive card InvokeActivity type refactor(directline): add new changes from master chore(npm): update dependencies
1 parent 2056970 commit 7c13bec

24 files changed

Lines changed: 14388 additions & 8021 deletions

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1616

1717
## [Unreleased]
1818

19+
- Update DirectLine to rxjs v6 pipeable operators, PR [#102](https://github.com/microsoft/BotFramework-DirectLineJS/pull/102/files)
1920
## [0.15.1] - 2022-02-09
20-
2121
### Changed
2222

2323
- Bumped dependencies, by [@compulim](https://github.com/compulim), in PR [#351](https://github.com/microsoft/BotFramework-DirectLineJS/pull/351) and PR [#366](https://github.com/microsoft/BotFramework-DirectLineJS/pull/366)
@@ -233,4 +233,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
233233
### Added
234234
- OAuthCard and `getSessionId` in PR #67
235235
- Add OAuthCard ([`c7b8af7`](https://github.com/microsoft/BotFramework-DirectLineJS/commit/c7b8af7be35685c220f2d777daa96f52d757f53f))
236-
- Add `getSessionId` ([`9c87aa3`](https://github.com/microsoft/BotFramework-DirectLineJS/commit/9c87aa3f54947ea2fee836b41eec8ec45297a57a), [`9a2b2d8`](https://github.com/microsoft/BotFramework-DirectLineJS/commit/9a2b2d889af48e558f563758aa01d498b2b2cf49), [`df84d00`](df84d0054f784ae5eb36784ef07a2aa38ca6c95b), [`92cc331`](92cc33138dfbdd533b4d14f6be275d1c86ef8db4))
236+
- Add `getSessionId` ([`9c87aa3`](https://github.com/microsoft/BotFramework-DirectLineJS/commit/9c87aa3f54947ea2fee836b41eec8ec45297a57a), [`9a2b2d8`](https://github.com/microsoft/BotFramework-DirectLineJS/commit/9a2b2d889af48e558f563758aa01d498b2b2cf49), [`df84d00`](df84d0054f784ae5eb36784ef07a2aa38ca6c95b), [`92cc331`](92cc33138dfbdd533b4d14f6be275d1c86ef8db4))

__tests__/happy.uploadAttachmentStreams.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ describe('Happy path', () => {
7676
]);
7777
});
7878
});
79-
});
79+
});

__tests__/happy.uploadAttachments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ describe('Happy path', () => {
110110
]);
111111
});
112112
});
113-
});
113+
});

__tests__/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ test('createServer setup correctly', async () => {
2424

2525
test('test environment has Web Cryptography API', () => {
2626
expect(typeof global.crypto.getRandomValues).toBe('function');
27-
});
27+
});

__tests__/setup/createDirectLineForwarder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ export default async function createDirectLineForwarder(
3232
domain: `http://localhost:${port}/v3/directline`,
3333
unsubscribe: promisify(proxyServer.close.bind(proxyServer))
3434
};
35-
}
35+
}

__tests__/setup/createServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ export default async function (options: CreateServerOptions): Promise<CreateServ
119119
}
120120
})
121121
};
122-
}
122+
}

__tests__/setup/jsdomEnvironmentWithProxy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ class JSDOMEnvironmentWithProxy extends JSDOMEnvironment {
2020
}
2121
}
2222

23-
module.exports = JSDOMEnvironmentWithProxy;
23+
module.exports = JSDOMEnvironmentWithProxy;

__tests__/setup/setupCrypto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ global.crypto = {
2222

2323
return crypto.randomFillSync(array);
2424
}
25-
};
25+
};

__tests__/unhappy.brokenWebSocket.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@ describe('Unhappy path', () => {
129129
expect(numReconnections).toBeLessThanOrEqual(200);
130130
});
131131
});
132-
});
132+
});

__tests__/unhappy.postActivityFatalAfterConnect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ describe('Unhappy path', () => {
104104
// expect(lastConnectionStatus).not.toBe(2);
105105
});
106106
});
107-
});
107+
});

0 commit comments

Comments
 (0)