This is an automated email from the ASF dual-hosted git repository. jky pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/flagon-useralejs.git
from 4eec2ff Moved attributes and CSS to main package add 07faa66 Added websockets for sending logs if available add 7f710a0 Added e2e test for websockets new ea17796 Merge pull request #489 from rc10house/444-websocket-streaming The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .gitignore | 2 +- build/UserALEWebExtension/background.js | 85 +++++++++++----- build/UserALEWebExtension/content.js | 85 +++++++++++----- build/UserALEWebExtension/options.js | 85 +++++++++++----- build/configure.d.ts | 1 + build/main.d.ts | 1 + build/userale-2.4.0.js | 89 ++++++++++------ build/userale-2.4.0.js.map | 2 +- build/userale-2.4.0.min.js | 2 +- build/userale.d.ts | 1 + example/index.html | 2 +- example/server.js | 162 +++++++++++++++++++++--------- example/test-client.ts | 40 ++++++++ example/{index.html => ws-index.html} | 4 +- package-lock.json | 26 ++++- package.json | 4 +- src/configure.ts | 1 + src/main.ts | 27 ++++- src/sendLogs.ts | 104 ++++++++++--------- src/types.d.ts | 1 + test/e2e/playwright.config.ts | 27 +++-- test/e2e/spec/03-websocket.spec.ts | 39 +++++++ test/unit/jest.config.ts | 4 +- test/unit/spec/attachHandlers.spec.ts | 7 +- test/unit/spec/auth.spec.ts | 3 + test/unit/spec/configure.spec.ts | 3 + test/unit/spec/getInitialSettings.spec.ts | 1 + test/unit/spec/headers.spec.ts | 3 + test/unit/spec/main.spec.ts | 1 + test/unit/spec/packageLogs.spec.ts | 3 + test/unit/spec/sendLogs.spec.ts | 3 + 31 files changed, 590 insertions(+), 228 deletions(-) create mode 100644 example/test-client.ts copy example/{index.html => ws-index.html} (98%) create mode 100644 test/e2e/spec/03-websocket.spec.ts