Skip to content

Commit e979d82

Browse files
authored
Merge branch 'master' into features/yara
2 parents fcc39a0 + 9787ab0 commit e979d82

14 files changed

+661
-51
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
All major and minor version changes will be documented in this file. Details of patch-level version changes can be found in [commit messages](https://github.com/gchq/CyberChef/commits/master).
33

44

5+
### [8.22.0] - 2019-01-10
6+
- 'Subsection' operation added [@j433866] | [#467]
7+
8+
### [8.21.0] - 2019-01-10
9+
- 'To Case Insensitive Regex' and 'From Case Insensitive Regex' operations added [@masq] | [#461]
10+
11+
### [8.20.0] - 2019-01-09
12+
- 'Generate Lorem Ipsum' operation added [@klaxon1] | [#455]
13+
514
### [8.19.0] - 2018-12-30
615
- UI test suite added to confirm that the app loads correctly in a reasonable time and that various operations from each module can be run [@n1474335] | [#458]
716

@@ -88,6 +97,9 @@ All major and minor version changes will be documented in this file. Details of
8897

8998

9099

100+
[8.22.0]: https://github.com/gchq/CyberChef/releases/tag/v8.22.0
101+
[8.21.0]: https://github.com/gchq/CyberChef/releases/tag/v8.21.0
102+
[8.20.0]: https://github.com/gchq/CyberChef/releases/tag/v8.20.0
91103
[8.19.0]: https://github.com/gchq/CyberChef/releases/tag/v8.19.0
92104
[8.18.0]: https://github.com/gchq/CyberChef/releases/tag/v8.18.0
93105
[8.17.0]: https://github.com/gchq/CyberChef/releases/tag/v8.17.0
@@ -130,6 +142,7 @@ All major and minor version changes will be documented in this file. Details of
130142
[@tcode2k16]: https://github.com/tcode2k16
131143
[@Cynser]: https://github.com/Cynser
132144
[@anthony-arnold]: https://github.com/anthony-arnold
145+
[@masq]: https://github.com/masq
133146

134147
[#95]: https://github.com/gchq/CyberChef/pull/299
135148
[#173]: https://github.com/gchq/CyberChef/pull/173
@@ -159,4 +172,7 @@ All major and minor version changes will be documented in this file. Details of
159172
[#446]: https://github.com/gchq/CyberChef/pull/446
160173
[#448]: https://github.com/gchq/CyberChef/pull/448
161174
[#449]: https://github.com/gchq/CyberChef/pull/449
175+
[#455]: https://github.com/gchq/CyberChef/pull/455
162176
[#458]: https://github.com/gchq/CyberChef/pull/458
177+
[#461]: https://github.com/gchq/CyberChef/pull/461
178+
[#467]: https://github.com/gchq/CyberChef/pull/467

package-lock.json

+30-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cyberchef",
3-
"version": "8.19.5",
3+
"version": "8.22.0",
44
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
55
"author": "n1474335 <[email protected]>",
66
"homepage": "https://gchq.github.io/CyberChef",

src/core/config/Categories.json

+4
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@
189189
"Remove null bytes",
190190
"To Upper case",
191191
"To Lower case",
192+
"To Case Insensitive Regex",
193+
"From Case Insensitive Regex",
192194
"Add line numbers",
193195
"Remove line numbers",
194196
"To Table",
@@ -374,6 +376,7 @@
374376
"Generate QR Code",
375377
"Parse QR Code",
376378
"Haversine distance",
379+
"Generate Lorem Ipsum",
377380
"Numberwang",
378381
"XKCD Random Number"
379382
]
@@ -383,6 +386,7 @@
383386
"ops": [
384387
"Magic",
385388
"Fork",
389+
"Subsection",
386390
"Merge",
387391
"Register",
388392
"Label",

0 commit comments

Comments
 (0)