dradis-projects 4.2.0 → 4.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a948d2f65162d64285169d7f6107ee635f18a16b2d3b7d48b7cc27cd3f1bbf0a
4
- data.tar.gz: 9bbffaebfc9dc1e2d7eddd85ec2182ee2fe621185ce03b67783c6113a078be43
3
+ metadata.gz: 5302b0657a98e1e3daff0c705b75e95195c7dd7bd4945746b69d8a6508509131
4
+ data.tar.gz: 2a7f749204f1e6287373333ef160c0d73e3949d217fff8461bf112e032ebe10c
5
5
  SHA512:
6
- metadata.gz: 0a1557060a75f871e08733097f109712ca2f0998180dd89c8a93b3f94dba4e054991d3b71ba8f6be616a17717070df2ffef363a78e5cb5d8c5faee4b26abb42a
7
- data.tar.gz: f4368d8b867ad79c931977866278e48db0833d50490030da00c67740732afa68ffaac0d24dd7f3439c66649680e40706a41cd7606a8a576ecc38cf71b6a072ca
6
+ metadata.gz: afb964e1cfafadaa8ec4fe0e4cd5a07eeddfd2db7426ee18c5a2c141287acfb9b051a268ea0c704fc0648558386eaaa4a7f790cf8512d0303c2cfb88c6def987
7
+ data.tar.gz: 3c1595f8b1dbff28c77b54b190e66359a33aba8de53e01692a9dfbfe36260b024f43723bc81cf416305c63a2372a58b443e7703f673644fc47ae560594b5e037
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ v4.5.0 (August 2022)
2
+ - No changes
3
+
4
+ v4.4.0 (June 2022)
5
+ - Provide plugin template mappings (no mappings)
6
+
7
+ v4.3.0 (April 2022)
8
+ - No changes
9
+
1
10
  v4.2.0 (February 2022)
2
11
  - Bugs fixes:
3
12
  - Fix missing nodes for attachments during template and package imports
@@ -8,7 +8,7 @@ module Dradis
8
8
 
9
9
  module VERSION
10
10
  MAJOR = 4
11
- MINOR = 2
11
+ MINOR = 5
12
12
  TINY = 0
13
13
  PRE = nil
14
14
 
@@ -12,6 +12,9 @@ module Dradis::Plugins::Projects::Upload
12
12
  # In this module you will find the implementation details that enable you to
13
13
  # upload a project archive (generated using ProjectExport::Processor::full_project)
14
14
  class Importer < Dradis::Plugins::Upload::Importer
15
+ def self.templates
16
+ { }
17
+ end
15
18
 
16
19
  def import(params={})
17
20
  package = params[:file]
@@ -12,6 +12,10 @@ module Dradis::Plugins::Projects::Upload
12
12
  class Importer < Dradis::Plugins::Upload::Importer
13
13
  attr_accessor :lookup_table, :template_version
14
14
 
15
+ def self.templates
16
+ { }
17
+ end
18
+
15
19
  # The import method is invoked by the framework to process a template file
16
20
  # that has just been uploaded using the 'Import from file...' dialog.
17
21
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dradis-projects
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Martin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-14 00:00:00.000000000 Z
11
+ date: 2022-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
159
  - !ruby/object:Gem::Version
160
160
  version: '0'
161
161
  requirements: []
162
- rubygems_version: 3.1.4
162
+ rubygems_version: 3.2.28
163
163
  signing_key:
164
164
  specification_version: 4
165
165
  summary: Project export/upload for the Dradis Framework.