Releases: altcha-org/altcha
Releases · altcha-org/altcha
v0.4.1
v0.4.0
Changes:
- Implemented detection of
expires
from the salt's URL-encoded parameters (provided as a Unix timestamp in seconds). TheExpires
HTTP header should now be used, however, it remains supported for backward compatibility purposes.
Example challenge with salt parameters:
{
"challenge": "...",
"salt": "xxxxxx?expires=1715523102"
}
The latest version of the altcha-lib
package (v0.3
) now fully accommodates the new salt parameters and expiration functionality. For detailed information, please refer to the documentation.
v0.3.2
v0.3.1
New features:
- Integration with ALTCHA's new API
- Spam Filter allowing you to check for spam content even before its submitted
Changes:
- The
auto
attribute now supportsonfocus
. The verification triggers on a focus inside the form element.
v0.2.3
v0.2.2
v0.2.1
v0.2.0
Changes:
- Introducing the
expire
attribute to specify challenge expiration. Upon expiration, the state is automatically updated toexpired
. - Implemented multithreading support and introduced a new attribute
workers
to specify the number of concurrent workers.
Migrating from 0.1.x:
- Multithreading is now enabled by default, resulting in significantly faster PoW (approximately 6-10x faster). If migrating from version 0.1.x, it is advisable to consider increasing the complexity (the maximum random number on the server).
- The default value of
maxnumber
is now1,000,000
(instead of 10 million).