pwn 0.5.460 → 0.5.461
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/pwn/plugins/jira_server.rb +5 -1
- data/lib/pwn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb45913566f80b116f5e5417cc7bd0a8820f8b6b2f15502f7e56bd4ba02b497e
|
4
|
+
data.tar.gz: '075462589e7d596c8e92031e661b1e17ef8fb56120d34e370cf6d634e8f14593'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a73a34aa2f16dab1cfc7b64a694f1568e6e06fc43ce393359cbdc29cf23b4c7b0d4039793f56c44c88a09bf010eb72263e7fc25155e7c7852e0841f5691ee57f
|
7
|
+
data.tar.gz: 8e4016fe8fdb0d230fc406f0850a041746526c2a065a58fc737eacd44eb0e5ec8febdf3d52b772b8841e1be6fb229c4e72a3deeca02a8bf6199ea960d996ff5f
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ $ cd /opt/pwn
|
|
37
37
|
$ ./install.sh
|
38
38
|
$ ./install.sh ruby-gem
|
39
39
|
$ pwn
|
40
|
-
pwn[v0.5.
|
40
|
+
pwn[v0.5.461]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
@@ -52,7 +52,7 @@ $ rvm use ruby-3.4.4@pwn
|
|
52
52
|
$ gem uninstall --all --executables pwn
|
53
53
|
$ gem install --verbose pwn
|
54
54
|
$ pwn
|
55
|
-
pwn[v0.5.
|
55
|
+
pwn[v0.5.461]:001 >>> PWN.help
|
56
56
|
```
|
57
57
|
|
58
58
|
If you're using a multi-user install of RVM do:
|
@@ -62,7 +62,7 @@ $ rvm use ruby-3.4.4@pwn
|
|
62
62
|
$ rvmsudo gem uninstall --all --executables pwn
|
63
63
|
$ rvmsudo gem install --verbose pwn
|
64
64
|
$ pwn
|
65
|
-
pwn[v0.5.
|
65
|
+
pwn[v0.5.461]:001 >>> PWN.help
|
66
66
|
```
|
67
67
|
|
68
68
|
PWN periodically upgrades to the latest version of Ruby which is reflected in `/opt/pwn/.ruby-version`. The easiest way to upgrade to the latest version of Ruby from a previous PWN installation is to run the following script:
|
@@ -405,7 +405,11 @@ module PWN
|
|
405
405
|
epic_name = issue_data[:fields][epic_name_field_key.to_sym]
|
406
406
|
end
|
407
407
|
description = issue_data[:fields][:description]
|
408
|
-
|
408
|
+
# Filter out nil values from the additional fields
|
409
|
+
# which can be problematic during issue creation if
|
410
|
+
# custom fields aren't in the proper context.
|
411
|
+
filtered_fields = issue_data[:fields].compact
|
412
|
+
additional_fields = { fields: filtered_fields }
|
409
413
|
|
410
414
|
create_issue(
|
411
415
|
project_key: project_key,
|
data/lib/pwn/version.rb
CHANGED