Skip to content

Commit

Permalink
Merge pull request #773 from swaschkut/main
Browse files Browse the repository at this point in the history
version 2.1.14
  • Loading branch information
swaschkut authored Aug 29, 2023
2 parents c1ce790 + 2c96b43 commit 45990f4
Show file tree
Hide file tree
Showing 12 changed files with 2,325 additions and 193 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
CHANGELOG

2.1.13
2.1.14
UTIL:
type=rule actions=display | introduction of argument actions=display:hitcount,ApplicationSeen

BUGFIX:
* type=vendor-migration | general bugfix to use correct baseconfig file if no argument in= is defined
* class AddressGroup | bugfix for missing function type() - related to type=address actions=move
* type=rule location=DG1 'actions=move:DG2,pre' - no rulename change
* class AddressCommon | bugfix if rule is already deleted - AddressRuleContainer is NULL => type=rule actions=removeWhereUsed
* type=rule | bugfix for actions=exporttoexcel - to correctly display columns

GENERAL:
* update to App-ID version: 8748-8241


2.1.13 (20230810)
UTIL:
* type=address | introduction of actions=upload-address-2cloudmanager:panorama.xml,DGname && actions=upload-addressgroup-2cloudmanager:panorama.xml,DGname
* type=address actions=upload-address-2cloudmanager | extend validation if object name is already available
Expand Down
2 changes: 1 addition & 1 deletion lib/misc-classes/PH.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function __construct($argv, $argc)

private static $library_version_major = 2;
private static $library_version_sub = 1;
private static $library_version_bugfix = 13;
private static $library_version_bugfix = 14;

//BASIC AUTH PAN-OS 7.1
public static $softwareupdate_key = "658d787f293e631196dac9fb29490f1cc1bb3827";
Expand Down
7 changes: 7 additions & 0 deletions lib/object-classes/AddressGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -1292,6 +1292,13 @@ public function replaceByMembersAndDelete($context, $isAPI = FALSE, $rewriteXml
}
}

/**
* @return string ie: 'ip-netmask' 'ip-range'
*/
public function type()
{
return "address-group";
}

static protected $templatexml = '<entry name="**temporarynamechangeme**"></entry>';
static protected $templatexml_v6 = '<entry name="**temporarynamechangeme**"><static></static></entry>';
Expand Down
Loading

0 comments on commit 45990f4

Please sign in to comment.