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

Many changes #31

Merged
merged 50 commits into from
May 29, 2014
Merged
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
88ec27c
fix xpath lookup
torra Aug 17, 2013
74f9647
fixes redirect initiation for targets that already have ...
Sep 16, 2013
4cee70b
XML parsing error is not ignored
Sep 16, 2013
db6a5ad
Forking to have validate{Post,Redirect}Response
Sep 16, 2013
fb401bf
use 'container' parameter, redirect uses req.query not .body
Sep 16, 2013
060ce03
correct method called; validateRedirectResponse impl'd
Sep 16, 2013
638ce6e
accepting redirect as well as post; redirect not verified
Sep 17, 2013
543edbe
attribute with multiple calues are put as array in profile
Sep 19, 2013
320b252
After successful logout, clear user and continue
Sep 17, 2013
97d953f
Merge branch 'success-after-logout'
Sep 22, 2013
229e94a
Merge branch 'array-for-multiple-attrs'
Sep 22, 2013
6763261
profile was global because var was missing
Sep 27, 2013
56e72bc
Option to tell authenticate what to do without SAMLRe... fields.
Sep 28, 2013
5ec1174
Merge branch 'fix-global' into newsl
Sep 29, 2013
968213e
Merge branch 'default-operation' into newsl
Sep 29, 2013
c540661
validation part of xml contents extracted to parameter
Sep 27, 2013
bc619a3
SAML accepting LogoutRequest, not responding correctly yet
Sep 28, 2013
6cc19a7
strategy prepared to have logout response functionality
Sep 28, 2013
011622a
requestToUrl additionalParameters, req/res
Sep 28, 2013
3f8daa3
Merge branch 'more-powerful-requesttourl' into newsl
Sep 29, 2013
9410033
generating LogoutResponse
Sep 28, 2013
10bcee1
using RelayState
Sep 28, 2013
230db7c
Generating passive AuthnRequest if options say so
Sep 28, 2013
958f5d8
Accepting NoPassive SAML Response
Sep 29, 2013
4b810ab
throwing if unknown operation
Sep 29, 2013
0efaabd
Merge branch 'passive-authentication'
Sep 29, 2013
bd415a7
Merge branch 'more-powerful-requesttourl'
Sep 29, 2013
79f2f98
Forking the name to upload it to npm.
Nov 3, 2013
7dbd833
Passing RelayState in all SAML operations.
Dec 30, 2013
38d8692
bump version 0.0.6
Dec 30, 2013
a293dc6
Treat a missing 'AttributeStatement' as just a lack of attributes ins…
ploer May 21, 2014
7086e3f
Check some extra namespaces needed to handle Okta assertions. (see h…
ploer May 27, 2014
3a9a8cb
Adding some basic tests.
ploer May 28, 2014
b4c0261
Update dependency versions.
ploer May 28, 2014
d7d2842
Updating xml2js to latest.
ploer May 28, 2014
8cd061a
Cleaning up jshint warning.
ploer May 28, 2014
1e0bd33
Take advantage of xml2js tagNameProcessors to simplify code.
ploer May 28, 2014
f96ce0d
Expand tests to cover requests.
ploer May 29, 2014
4f4bedd
Add some tests for generateLogoutRequest and generateLogoutResponse f…
ploer May 29, 2014
a11d76a
Use xmlbuilder to construct xml documents.
ploer May 29, 2014
67df1ba
Updating minimum engine version to 0.8, and updating travis CI engine…
ploer May 29, 2014
7c9d197
Remove some commented out code that got missed.
ploer May 29, 2014
5b90b1d
Jshint cleaning.
ploer May 29, 2014
c331df8
Travis config: drop 0.6 engine; run mocha.
ploer May 29, 2014
73712f6
Including mocha as devDependency, and rolling back express to 3.x to …
ploer May 29, 2014
0f2eb7a
More travis build fixing.
ploer May 29, 2014
aa674b3
Reverting npm name to 'passport-saml' & bumping version.
ploer May 29, 2014
6da8caa
Updating license link & contributors list.
ploer May 29, 2014
6f2087e
Remove redirect support from passport-saml-too branch, since it doesn…
ploer May 29, 2014
8817db5
Add repository tag to package.json.
ploer May 29, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
language: node_js
node_js:
- 0.6
- 0.8
- "0.8"
- "0.10"
- "0.11"

script: ./node_modules/.bin/jshint lib
before_install:
- npm install -g npm

script:
- npm test
- ./node_modules/.bin/jshint lib
Loading