Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
3d3842d
Made same changes from PR #109
sylido Aug 2, 2017
d956fb8
Merging in pull request 74
sylido Aug 2, 2017
c9b3004
Fixing index.js
sylido Aug 4, 2017
53f302a
Allow multiple authentication statements
sylido Aug 8, 2018
dd59d37
Added some logging
sylido Aug 8, 2018
7a1f427
Made some changes that add a new test for the case of having multiple…
Aug 9, 2018
bf4d5e7
Merge remote-tracking branch 'remotes/Clever-origin/master' into Clev…
danailgabenski Feb 9, 2022
aedc897
Update saml2.coffee
darioackermann Aug 11, 2022
55fc0c9
Update package.json
darioackermann Aug 11, 2022
da8e801
Merge pull request #1 from darioackermann/update-dependencies-and-vul…
darioackermann Aug 11, 2022
3678222
Update README.md
darioackermann Aug 11, 2022
88fb4f9
Create dependabot.yml
darioackermann Aug 12, 2022
7814bc5
Bump @xmldom/xmldom from 0.7.5 to 0.8.2
dependabot[bot] Aug 12, 2022
acac5ba
Bump mocha from 8.4.0 to 10.0.0
dependabot[bot] Aug 12, 2022
3b9582b
Create codeql-analysis.yml
darioackermann Aug 12, 2022
c4739b0
Merge pull request #2 from darioackermann/dependabot/npm_and_yarn/xml…
darioackermann Aug 12, 2022
ce667d5
Bump xmlbuilder2 from 2.4.1 to 3.0.2
dependabot[bot] Aug 12, 2022
11e280e
Merge pull request #4 from darioackermann/dependabot/npm_and_yarn/xml…
darioackermann Aug 12, 2022
740c8f4
Merge pull request #3 from darioackermann/dependabot/npm_and_yarn/moc…
darioackermann Aug 12, 2022
544fd9b
Update package.json
darioackermann Aug 12, 2022
a5d9711
Change npmignore, package.json
Aug 12, 2022
ea89e07
Merge pull request #5 from darioackermann/prepare-npm-publish
darioackermann Aug 12, 2022
51fe067
package.json and README hiccup
Aug 12, 2022
24e532f
Update Docu in regard of changed namespace
Aug 12, 2022
f42d69e
Merge branch 'Clever:master' into Clever-master-2-9-2022
sylido Oct 14, 2022
4d922cd
Bump xml-crypto from 2.1.4 to 3.0.0
dependabot[bot] Oct 17, 2022
e6f423f
Merge remote-tracking branch 'remotes/dario/master' into dario-master…
danailgabenski Oct 17, 2022
751fcc1
Merge remote-tracking branch 'remotes/dario/dependabot/npm_and_yarn/x…
danailgabenski Oct 17, 2022
d8a84a7
Cleaned up code - formatting, spacing, aligned by = or :
danailgabenski Oct 18, 2022
dd0f84d
Added log for testing.
danailgabenski Oct 19, 2022
2861284
Merge remote-tracking branch 'remotes/Clever/master' into dario-maste…
danailgabenski Oct 19, 2022
6c57a1a
Misformatted try catch.
danailgabenski Oct 19, 2022
67a858d
Correcting package versions.
danailgabenski Oct 19, 2022
e1aa3ad
Formatted both saml2.coffee files - one that is the library and the o…
danailgabenski Oct 24, 2022
262a078
Added a new option to require the onetimeuse element in the condition…
danailgabenski Oct 26, 2022
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
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
72 changes: 72 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '33 4 * * 6'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
coverage
node_modules
lib
test
*.html
.circleci/
.github/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Any library alternatives and suggestions can be filed under an issue.

# SAML2-js

[![CircleCI](https://circleci.com/gh/Clever/saml2/tree/master.svg?style=svg)](https://circleci.com/gh/Clever/saml2/tree/master)
## Important

`saml2-js` is a node module that abstracts away the complexities of the SAML protocol behind an easy to use interface. It achieves this this by helping you implement a service provider for the SAML protocol. It currently does not implement the features to act as an identity provider.

Expand Down
Loading