Skip to content

Commit

Permalink
Switched hashing impl, minor dep updates, bumped version to 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
milux committed Aug 27, 2023
1 parent 8dfca1c commit 49f4cfd
Show file tree
Hide file tree
Showing 6 changed files with 290 additions and 1,227 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 3.1.2
- Changed crypto algorithms to `@node-rs/{argon2,bcrypt}`
- Minor version updates

### 3.1.1
- Introduced CookieJar pools as workaround for ChurchTools HTTP 403 bugs
- Fixed default cache lifetime in `Dockerfile`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ctldap 3.1.1 - LDAP Wrapper for ChurchTools
# ctldap 3.1.2 - LDAP Wrapper for ChurchTools

This software acts as an LDAP server for ChurchTools 3

Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:

ldap:
ctldap:
build: .
image: milux/ctldap:latest
restart: unless-stopped
Expand Down
4 changes: 2 additions & 2 deletions ctldap-site.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*/
import ldapEscape from "ldap-escape";
import got from "got";
import bcrypt from "bcrypt";
import argon2 from "argon2";
import bcrypt from "@node-rs/bcrypt";
import argon2 from "@node-rs/argon2";
import { CtldapConfig } from "./ctldap-config.js"
import { CookieJar } from "tough-cookie";
import { logTrace, logWarn } from "./ctldap.js"
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
"name": "ctldap",
"license": "GPL-3.0",
"description": "LDAP Wrapper for ChurchTools",
"version": "3.1.1",
"version": "3.1.2",
"private": true,
"type": "module",
"dependencies": {
"@ldapjs/attribute": "^1.0.0",
"@ldapjs/dn": "^1.1.0",
"@ldapjs/filter": "^2.1.0",
"@ldapjs/messages": "^1.2.0",
"@ldapjs/filter": "^2.1.1",
"@ldapjs/messages": "^1.2.1",
"@ldapjs/protocol": "^1.2.1",
"argon2": "^0.30.3",
"bcrypt": "^5.1.0",
"@node-rs/argon2": "^1.5.2",
"@node-rs/bcrypt": "^1.7.3",
"got": "^13.0.0",
"ldap-escape": "^2.0.6",
"ldapjs": "^3.0.4",
"ldapjs": "^3.0.5",
"tough-cookie": "^4.1.3",
"yaml-env-defaults": "^2.0.5"
},
Expand Down
Loading

0 comments on commit 49f4cfd

Please sign in to comment.