You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DXE-2891 Merge pull request #189 from akamai/release/v7.1.0
## 7.1.0 (July 25, 2023)
### FEATURES/ENHANCEMENTS:
* APPSEC
* Added Bot Management API Support
* Challenge Injection Rules - read, update
* Add `CreateSecurityPolicyWithDefaultProtections` method to the `SecurityPolicy` interface to support creating a security policy with all available protections enabled.
* Update marshaling of PII learning setting
### Deprecations
* Challenge Interceptions Rules has been deprecated
* Deprecate the following interfaces used to maintain individual policy protections:
* `ApiConstraintsProtection`
* `IPGeoProtection`
* `MalwareProtection`
* `NetworkLayerProtection`
* `RateProtection`
* `ReputationProtection`
* `SlowPostProtection`
* `WAFProtection`
* Deprecate the `CreateSecurityPolicy` method of the `SecurityPolicy` interface.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,29 @@
1
1
# EDGEGRID GOLANG RELEASE NOTES
2
2
3
+
## 7.1.0 (July 25, 2023)
4
+
5
+
### FEATURES/ENHANCEMENTS:
6
+
7
+
* APPSEC
8
+
* Added Bot Management API Support
9
+
* Challenge Injection Rules - read, update
10
+
* Add `CreateSecurityPolicyWithDefaultProtections` method to the `SecurityPolicy` interface to support creating a security policy with all available protections enabled.
11
+
* Update marshaling of PII learning setting
12
+
13
+
### Deprecations
14
+
15
+
* Challenge Interceptions Rules has been deprecated
16
+
* Deprecate the following interfaces used to maintain individual policy protections:
17
+
*`ApiConstraintsProtection`
18
+
*`IPGeoProtection`
19
+
*`MalwareProtection`
20
+
*`NetworkLayerProtection`
21
+
*`RateProtection`
22
+
*`ReputationProtection`
23
+
*`SlowPostProtection`
24
+
*`WAFProtection`
25
+
* Deprecate the `CreateSecurityPolicy` method of the `SecurityPolicy` interface.
// UpdateAPIConstraintsProtection updates the API constraints protection setting for a configuration and policy.
22
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
// UpdateIPGeoProtection updates the IPGeo protection protection setting for a configuration and policy.
28
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
// UpdateMalwareProtection updates the malware protection setting for a configuration and policy.
22
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
// UpdateNetworkLayerProtection updates the network layer protection setting for a configuration and policy.
28
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
// RemoveNetworkLayerProtection removes network layer protection for a configuration and policy.
34
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
// UpdateRateProtection updates the rate protection setting for a configuration and policy.
28
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
// UpdateReputationProtection updates the reputation protection setting for a configuration and policy.
29
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
// RemoveReputationProtection removes reputation protection for a configuration and policy.
35
+
// Deprecated: this method will be removed in a future release. Use the CreateSecurityPolicyWithDefaultProtections method of the SecurityPolicy interface instead.
0 commit comments