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

Upgrade to Node 18 + qs dependency fixes for Snyk #249

Merged
merged 20 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
f144ef4
fix: added npmrc to enforce node18. fixed dns resolution so we can us…
lostinauth0 Jun 16, 2023
0467426
fix: override qs package locks. added sample .env
lostinauth0 Jun 21, 2023
29949e7
chore: added a start-local target in package.json that sources .env
lostinauth0 Jun 21, 2023
138ace2
Update .env.vivaldi.sample
lostinauth0 Jun 21, 2023
b8f03cc
Update .npmrc
lostinauth0 Jun 21, 2023
e3336b9
revert package-lock.json
lostinauth0 Jun 21, 2023
6adc3f5
revert package-lock.json
lostinauth0 Jun 21, 2023
6807e45
fix: package-lock generated for qs overrides
lostinauth0 Jun 21, 2023
ec262fd
fix: replaced request with axios
lostinauth0 Jul 28, 2023
46f1e34
fix: removed connect-multiparty dependency. Using multer instead
lostinauth0 Jul 28, 2023
3db7bc7
fix: removing unnecessary overrides in package.json
lostinauth0 Jul 28, 2023
fa1711f
fix: removed dependency on custom nconf, moved to latest
lostinauth0 Aug 18, 2023
627b2af
fix: fixed 404 handling in connector-setup/index.js
lostinauth0 Aug 22, 2023
db0a752
fix: fixed some error handling around reponse status codes.
lostinauth0 Aug 25, 2023
567dbb3
fix: updated nvmrc to use 18+
lostinauth0 Aug 25, 2023
ebea21c
remove requirement for node18
lostinauth0 Aug 25, 2023
c2b1921
added mock LDAP server. Small code changes to make connector work in …
lostinauth0 Oct 17, 2023
0d2267c
fix: bumping minor release
lostinauth0 Jan 3, 2024
881c90a
fix: fixed dependencies for snyk vulnerabilities
lostinauth0 Jan 4, 2024
ea47a78
fix: more package updates
lostinauth0 Jan 4, 2024
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: 12 additions & 0 deletions .env.local.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export PROVISIONING_TICKET='<provisioning ticket>'
lostinauth0 marked this conversation as resolved.
Show resolved Hide resolved
export NODE_TLS_REJECT_UNAUTHORIZED='0'
export LDAP_URL='ldap://openldap'
export LDAP_BASE='DC=example,DC=org'
export LDAP_BIND_USER='cn=admin,dc=example,dc=org'
export LDAP_BIND_PASSWORD=admin
export LDAP_SEARCH_QUERY='(&(objectCategory=person)(anr={0}))'
// export LDAP_SEARCH_QUERY='(&(objectClass=inetOrgPerson)(|(cn={0})(givenName={0})(sn={0})(uid={0})))'
export LDAP_SEARCH_ALL_QUERY='(objectClass=inetOrgPerson)'
export LDAP_SEARCH_GROUPS='(&(objectClass=posixGroup)(memberUid={0}))'
export LDAP_USER_BY_NAME='(cn={0})'
export ENABLE_WRITE_BACK=true
28 changes: 28 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true,
},
extends: 'eslint:recommended',
overrides: [
{
env: {
node: true,
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
sourceType: 'script',
},
},
],
parserOptions: {
ecmaVersion: 'latest',
},
rules: {
indent: ['error', 2],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
semi: ['error', 'always'],
},
};
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org/
Loading