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

Example usage of new internal utils api #17

Merged
merged 68 commits into from Feb 28, 2017
Merged
Show file tree
Hide file tree
Changes from 63 commits
Commits
Show all changes
68 commits
Select commit Hold shift + click to select a range
fd8731a
Example usage of new internal utils api
michaloo Feb 20, 2017
8649cea
Adds docs readme to document the ideas/problems
michaloo Feb 20, 2017
97fc2c6
Updates readme
michaloo Feb 20, 2017
f03969c
Updates readme
michaloo Feb 20, 2017
5bd1222
Iterate over the API
michaloo Feb 21, 2017
f24efbd
Major refactor to match the new API
michaloo Feb 21, 2017
04e10ca
Basic lint
michaloo Feb 21, 2017
c9328c0
Fix build task
michaloo Feb 21, 2017
4bd6c11
Add service middleware
michaloo Feb 21, 2017
4885eeb
Adds more docs and simplify the API
michaloo Feb 21, 2017
d78bf30
Organize the docs
michaloo Feb 21, 2017
800bc1a
Updates the main docs
michaloo Feb 21, 2017
eb02258
Adds more docs and remove `sudo` param
michaloo Feb 21, 2017
c6ba1ec
Improve docs
michaloo Feb 21, 2017
7ce28f9
Update docs and improve functions consistency
michaloo Feb 21, 2017
81aa11b
Major lint
michaloo Feb 21, 2017
69ba3d1
Moved the files outside ship directory, created HullApp
michaloo Feb 22, 2017
18a6b5c
Revert deleted code
michaloo Feb 22, 2017
d0051a7
Initial tests
michaloo Feb 22, 2017
3ce745f
Rename agent to helpers
michaloo Feb 22, 2017
973b336
Adds example of process splitting
michaloo Feb 22, 2017
d7ae359
Enhance docs and memory queue
michaloo Feb 22, 2017
58264a4
Enhance defaults
michaloo Feb 22, 2017
2ef88a7
Migrate tests from hull-ship-base
michaloo Feb 22, 2017
685688d
Switch batcher from req to ctx dependency
michaloo Feb 22, 2017
3931d38
Adds token middleware into the HullApp, changes the signature of noti…
michaloo Feb 22, 2017
7ebfbc5
Updates changelog and version
michaloo Feb 22, 2017
452e1cc
Adds more docs and adjusts the ctx api
michaloo Feb 22, 2017
aee88f3
Fixes relative paths in markdown
michaloo Feb 22, 2017
667d4c6
Split notif-handler into notif-middleware so other parts of the syste…
michaloo Feb 22, 2017
852b214
Minor API adjustments
michaloo Feb 22, 2017
213d0af
Added batcher and 2 new handlers
michaloo Feb 22, 2017
f190239
Added an initial batcher support in notif handler
michaloo Feb 22, 2017
7ef14c8
Major lint and batcher in notif
michaloo Feb 23, 2017
542d8b8
Lint fix
michaloo Feb 23, 2017
f671d13
Makes simplify notifHandler, other smaller fixes
michaloo Feb 23, 2017
f84267d
Fixes the oauth handler body parsing
michaloo Feb 23, 2017
1b0fbfd
Update docs
michaloo Feb 23, 2017
2f709c9
Adds optional groupTrait feature to the notifHandler and batchHandler
michaloo Feb 23, 2017
3bb6f6d
Changes batcher signature and update docs
michaloo Feb 23, 2017
b852ea5
Update docs
michaloo Feb 23, 2017
35fa371
Update docs
michaloo Feb 23, 2017
79bfa0f
Update docs
michaloo Feb 23, 2017
2dd5b20
Update docs
michaloo Feb 23, 2017
32d2c6a
Update docs
michaloo Feb 23, 2017
6dcd701
Update docs
michaloo Feb 23, 2017
f104dfb
Update docs
michaloo Feb 23, 2017
5e6a5cb
Update examples
michaloo Feb 23, 2017
2debf31
Temporary - add postinstall
michaloo Feb 23, 2017
8fbc56c
Temporary - add postinstall
michaloo Feb 23, 2017
7b7eb76
Temporary - add postinstall
michaloo Feb 23, 2017
8c75af7
Temporary - add postinstall
michaloo Feb 23, 2017
a811a7a
Update docs
michaloo Feb 23, 2017
b66f65e
Temporary - add postinstall
michaloo Feb 23, 2017
fdfd8db
Make notify middleware more loose
michaloo Feb 23, 2017
6bacb2b
Make the token middleware catch the oauth token
michaloo Feb 23, 2017
bd45ad0
Prepare code of different passport strategies signatures
michaloo Feb 24, 2017
7a7b23f
Prepare code of different passport strategies signatures
michaloo Feb 24, 2017
536969f
Prepare code of different passport strategies signatures
michaloo Feb 24, 2017
21c6e51
Adds server for existing express and middleware method
michaloo Feb 24, 2017
87cf142
Fix docs and examples
michaloo Feb 24, 2017
7192f20
Remove temporary build scripts and mark new version
michaloo Feb 24, 2017
7874962
Merge branch 'master' of github.com:hull/hull-node into feature/ship-…
michaloo Feb 24, 2017
f460ca1
Rename Hull.App to Hull.Connector and adjust the API to alter the exp…
michaloo Feb 27, 2017
fec4e08
Update examples and fix middleware calls
michaloo Feb 28, 2017
cd41111
Fix exit handler
michaloo Feb 28, 2017
5d8bb89
Fix examples and cache testing
michaloo Feb 28, 2017
fa12849
Merge branch 'master' of github.com:hull/hull-node into feature/ship-…
michaloo Feb 28, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
# 0.11.0-beta.1

* Adds `/app` with `Hull.App`, `Server` and `Worker`
* Adds `/helpers` with functions being added to the `req.hull.client` after being initiated by the `Hull.Middleware`
* Adds `/infra` with `Instrumentation`, `Queue`, `Cache` and `Batcher` services
* Adds `/utils` with `handlers`, `middlewares` and `routers` used as a building blocks of the `HullApp` and to be used by the ship/connector directly
* BREAKING - changed the callback signature in `NotifHandler`

# 0.10.7

* Add optional `tokenInUrl` argument in `OAuthHandler` allowing to force static urls
Expand Down