This is an automated email from the ASF dual-hosted git repository.
jky pushed a change to branch test
in repository https://gitbox.apache.org/repos/asf/flagon-useralejs.git
from 8b07420 Merge pull request #398 from
EandrewJones/#397-Add-auth-header-callback-option
add 128ccc8 #400 follows strategy pattern to allow users to statically or
dynamically define custom headers
add 1da0f25 #400 add license header
add ccdb459 Merge pull request #401 from
EandrewJones/#400-Allow-users-to-add-custom-headers
No new revisions were added by this update.
Summary of changes:
build/UserALEWebExtension/background.js | 78 +++++++++---
build/UserALEWebExtension/content.js | 79 +++++++++---
build/userale-2.4.0.js | 81 +++++++++---
build/userale-2.4.0.min.js | 2 +-
package-lock.json | 10 ++
package.json | 1 +
src/getInitialSettings.js | 1 +
src/main.js | 2 +-
src/sendLogs.js | 12 +-
src/{auth.js => utils/auth/index.js} | 0
src/{auth.js => utils/headers/index.js} | 39 +++---
.../react-app-example/src => src/utils}/index.js | 26 ++--
test/auth_spec.js | 16 ++-
test/headers_spec.js | 141 +++++++++++++++++++++
test/main_spec.js | 1 +
test/sendLogs_spec.js | 48 ++++++-
16 files changed, 448 insertions(+), 89 deletions(-)
copy src/{auth.js => utils/auth/index.js} (100%)
rename src/{auth.js => utils/headers/index.js} (65%)
copy {example/react-app-example/src => src/utils}/index.js (70%)
create mode 100644 test/headers_spec.js