This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 99101dc  Merge pull request #2657 from apache/cookie-domain-delete
     add 9a671b6  Initial commit
     add 2c3f968  Initial commit
     add f2e1085  validate nbf
     add 3888d18  Moar Functional
     add 5f93661  unused var
     add 02ecf5b  add more tests
     add 5b9dad7  Add JKWS cache
     add d7bd8d1  Make typ and alg optional
     add 8077258  use public url
     add 3cb8b7d  98% coverage
     add e60fa50  kid belongs in the header
     add a18a2e5  some documentation
     add 69e1ce2  Add stats, don't wipe cache on error
     add 25bfdc3  make jwks simpler, caching can happen elsewhere
     add 31999f4  allow iss to be optional
     add acbaa37  slightly improve readme
     add bf7a2ed  expand algorithm support
     add 61f47b3  support P-256 in JWKS
     add 373a367  update alg list
     add ae0e0f4  return a public key tuple
     add e0d61d0  test EC
     add e180555  fix test
     add e80c3d1  add tests for HS384 and HS512
     add 6cc182d  IAT validation requires it to be a number, any number
     add e083b22  provide caching of JWKS keys
     add 9d60fa2  add ibrowse as dep
     add ceeb019  require alg+kid for key lookup
     add 5b31b0d  Improve pubkey not found error handling (#4)
     add 80d4a64  Improve restart strategy
     add 094489f  Merge pull request #5 from jaydoane/improve-restart-strategy
     add b396a1d  Generate rsa private keys and keypairs
     add d9a718b  Support JWT encoding
     add 280376f  Merge pull request #6 from cloudant/implement-encode
     add 382229e  Ensure error reason is convertable to JSON
     add 768732a  Return error from update_cache
     add a3b6661  move error wrapping to decode function
     add f9c1f33  throw errors that chttpd:error_info can understand
     add 8100be3  remove dependency on openssl commands
     add c6e58c4  get_keyset needs ssl started
     add 53c254f  Remove unnecessary props
     add a01cb0f  Make time explicitly in future
     add 845226c  Merge pull request #3 from jaydoane/simplify-tests
     add bb1744e  Suppress compiler warnings
     add 3d6c294  Move key cache to epep application
     add d4f4aee  Merge pull request #10 from cloudant/move-key-cache
     add 8e937f2  Separate tests into dedicated module
     add b4abcda  Merge pull request #11 from cloudant/separate-test-module
     add 640e39c  Create LICENSE
     add b00814e  Enable code coverage
     add 1794e14  Handle malformed tokens with jiffy 1.x
     add 588eade  Merge pull request #12 from cloudant/handle-malformed-token
     add 087f727  merged jwtf into src/jwtf
     add 919f75c  add jwtf to release
     new b14ec65  Merge pull request #2658 from apache/import-jwtf

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:
 rebar.config.script                                |   1 +
 rel/reltool.config                                 |   2 +
 src/jwtf/.gitignore                                |   4 +
 src/{mango/LICENSE.txt => jwtf/LICENSE}            |  26 --
 src/jwtf/README.md                                 |  18 ++
 src/{rexi => jwtf}/rebar.config                    |   0
 .../src/fabric.app.src => jwtf/src/jwtf.app.src}   |  21 +-
 src/jwtf/src/jwtf.erl                              | 316 +++++++++++++++++++++
 src/jwtf/test/jwtf_tests.erl                       | 305 ++++++++++++++++++++
 9 files changed, 658 insertions(+), 35 deletions(-)
 create mode 100644 src/jwtf/.gitignore
 copy src/{mango/LICENSE.txt => jwtf/LICENSE} (89%)
 create mode 100644 src/jwtf/README.md
 copy src/{rexi => jwtf}/rebar.config (100%)
 copy src/{fabric/src/fabric.app.src => jwtf/src/jwtf.app.src} (73%)
 create mode 100644 src/jwtf/src/jwtf.erl
 create mode 100644 src/jwtf/test/jwtf_tests.erl

Reply via email to