10.15.0
This commit is contained in:
parent
dc8c185c39
commit
b5959c6f01
18
CHANGELOG.md
18
CHANGELOG.md
@ -13,6 +13,14 @@ All major and minor version changes will be documented in this file. Details of
|
|||||||
|
|
||||||
## Details
|
## Details
|
||||||
|
|
||||||
|
### [10.15.0] - 2024-04-02
|
||||||
|
- Fix Ciphersaber2 key concatenation [@zb3] | [#1765]
|
||||||
|
- Fix DeriveEVPKey's array parsing [@zb3] | [#1767]
|
||||||
|
- Fix JWT operations [@a3957273] | [#1769]
|
||||||
|
- Added 'Parse Certificate Signing Request' operation [@jkataja] | [#1504]
|
||||||
|
- Added 'Extract Hash Values' operation [@MShwed] | [#512]
|
||||||
|
- Added 'DateTime Delta' operation [@tomgond] | [#1732]
|
||||||
|
|
||||||
### [10.14.0] - 2024-03-31
|
### [10.14.0] - 2024-03-31
|
||||||
- Added 'To Float' and 'From Float' operations [@tcode2k16] | [#1762]
|
- Added 'To Float' and 'From Float' operations [@tcode2k16] | [#1762]
|
||||||
- Fix ChaCha raw export option [@joostrijneveld] | [#1606]
|
- Fix ChaCha raw export option [@joostrijneveld] | [#1606]
|
||||||
@ -410,6 +418,7 @@ All major and minor version changes will be documented in this file. Details of
|
|||||||
## [4.0.0] - 2016-11-28
|
## [4.0.0] - 2016-11-28
|
||||||
- Initial open source commit [@n1474335] | [b1d73a72](https://github.com/gchq/CyberChef/commit/b1d73a725dc7ab9fb7eb789296efd2b7e4b08306)
|
- Initial open source commit [@n1474335] | [b1d73a72](https://github.com/gchq/CyberChef/commit/b1d73a725dc7ab9fb7eb789296efd2b7e4b08306)
|
||||||
|
|
||||||
|
[10.14.0]: https://github.com/gchq/CyberChef/releases/tag/v10.14.0
|
||||||
[10.14.0]: https://github.com/gchq/CyberChef/releases/tag/v10.14.0
|
[10.14.0]: https://github.com/gchq/CyberChef/releases/tag/v10.14.0
|
||||||
[10.13.0]: https://github.com/gchq/CyberChef/releases/tag/v10.13.0
|
[10.13.0]: https://github.com/gchq/CyberChef/releases/tag/v10.13.0
|
||||||
[10.12.0]: https://github.com/gchq/CyberChef/releases/tag/v10.12.0
|
[10.12.0]: https://github.com/gchq/CyberChef/releases/tag/v10.12.0
|
||||||
@ -586,6 +595,9 @@ All major and minor version changes will be documented in this file. Details of
|
|||||||
[@breakersall]: https://github.com/breakersall
|
[@breakersall]: https://github.com/breakersall
|
||||||
[@evanreichard]: https://github.com/evanreichard
|
[@evanreichard]: https://github.com/evanreichard
|
||||||
[@devcydo]: https://github.com/devcydo
|
[@devcydo]: https://github.com/devcydo
|
||||||
|
[@zb3]: https://github.com/zb3
|
||||||
|
[@jkataja]: https://github.com/jkataja
|
||||||
|
[@tomgond]: https://github.com/tomgond
|
||||||
|
|
||||||
|
|
||||||
[8ad18b]: https://github.com/gchq/CyberChef/commit/8ad18bc7db6d9ff184ba3518686293a7685bf7b7
|
[8ad18b]: https://github.com/gchq/CyberChef/commit/8ad18bc7db6d9ff184ba3518686293a7685bf7b7
|
||||||
@ -725,3 +737,9 @@ All major and minor version changes will be documented in this file. Details of
|
|||||||
[#1197]: https://github.com/gchq/CyberChef/issues/1197
|
[#1197]: https://github.com/gchq/CyberChef/issues/1197
|
||||||
[#933]: https://github.com/gchq/CyberChef/issues/933
|
[#933]: https://github.com/gchq/CyberChef/issues/933
|
||||||
[#1361]: https://github.com/gchq/CyberChef/issues/1361
|
[#1361]: https://github.com/gchq/CyberChef/issues/1361
|
||||||
|
[#1765]: https://github.com/gchq/CyberChef/issues/1765
|
||||||
|
[#1767]: https://github.com/gchq/CyberChef/issues/1767
|
||||||
|
[#1769]: https://github.com/gchq/CyberChef/issues/1769
|
||||||
|
[#1504]: https://github.com/gchq/CyberChef/issues/1504
|
||||||
|
[#512]: https://github.com/gchq/CyberChef/issues/512
|
||||||
|
[#1732]: https://github.com/gchq/CyberChef/issues/1732
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "cyberchef",
|
"name": "cyberchef",
|
||||||
"version": "10.14.0",
|
"version": "10.15.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "cyberchef",
|
"name": "cyberchef",
|
||||||
"version": "10.14.0",
|
"version": "10.15.0",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cyberchef",
|
"name": "cyberchef",
|
||||||
"version": "10.14.0",
|
"version": "10.15.0",
|
||||||
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
|
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
|
||||||
"author": "n1474335 <n1474335@gmail.com>",
|
"author": "n1474335 <n1474335@gmail.com>",
|
||||||
"homepage": "https://gchq.github.io/CyberChef",
|
"homepage": "https://gchq.github.io/CyberChef",
|
||||||
|
Loading…
Reference in New Issue
Block a user