Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

# 3.8.25 (March 2, 2026)

## Notes
- Golang: **v1.24**

### Enhancements

- [PR #416](https://github.com/zscaler/zscaler-sdk-go/pull/416) Added new attributes to ZIA struct `URLAdvancedPolicySettings`
- `EnableDeepSeekPrompt`
- `EnableWriterPrompt`
- `EnableGrokPrompt`
- `EnableMistralAIPrompt`
- `EnableClaudePrompt`
- `EnableGrammarlyPrompt`
- `ZveloDbLookupDisabled`
- `EnableCreativeCommonsSearchResults`

# 3.8.24 (February 27, 2026)

## Notes
Expand Down
19 changes: 18 additions & 1 deletion docs/guides/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,27 @@ Track all Zscaler SDK GO releases. New resources, features, and bug fixes will b

---

``Last updated: v3.8.24``
``Last updated: v3.8.25``

---

# 3.8.25 (March 2, 2026)

## Notes
- Golang: **v1.24**

### Enhancements

- [PR #416](https://github.com/zscaler/zscaler-sdk-go/pull/416) Added new attributes to ZIA struct `URLAdvancedPolicySettings`
- `EnableDeepSeekPrompt`
- `EnableWriterPrompt`
- `EnableGrokPrompt`
- `EnableMistralAIPrompt`
- `EnableClaudePrompt`
- `EnableGrammarlyPrompt`
- `ZveloDbLookupDisabled`
- `EnableCreativeCommonsSearchResults`

# 3.8.24 (February 27, 2026)

## Notes
Expand Down
24 changes: 24 additions & 0 deletions zscaler/zia/services/urlfilteringpolicies/urlfilteringpolicies.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,24 @@ type URLAdvancedPolicySettings struct {
// A Boolean value indicating if the use of generative AI prompts with Perplexity by users should be categorized and logged
EnablePerPlexityPrompt bool `json:"enablePerPlexityPrompt,omitempty"`

// A Boolean value indicating if the use of generative AI prompts with DeepSeek by users should be categorized and logged
EnableDeepSeekPrompt bool `json:"enableDeepSeekPrompt,omitempty"`

// A Boolean value indicating if the use of generative AI prompts with Writer by users should be categorized and logged
EnableWriterPrompt bool `json:"enableWriterPrompt,omitempty"`

// A Boolean value indicating if the use of generative AI prompts with Grok by users should be categorized and logged
EnableGrokPrompt bool `json:"enableGrokPrompt,omitempty"`

// A Boolean value indicating if the use of generative AI prompts with Mistral AI by users should be categorized and logged
EnableMistralAIPrompt bool `json:"enableMistralAIPrompt,omitempty"`

// A Boolean value indicating if the use of generative AI prompts with Claude by users should be categorized and logged
EnableClaudePrompt bool `json:"enableClaudePrompt,omitempty"`

// A Boolean value indicating if the use of generative AI prompts with Grammarly by users should be categorized and logged
EnableGrammarlyPrompt bool `json:"enableGrammarlyPrompt,omitempty"`

// A Boolean value indicating whether access to Skype is blocked or not.
BlockSkype bool `json:"blockSkype,omitempty"`

Expand All @@ -211,6 +229,12 @@ type URLAdvancedPolicySettings struct {
// list of applications for which the SafeSearch enforcement applies. You cannot modify this field when the enforceSafeSearch field is disabled.
// Supported Values: "ANY", "DAILYMOTION", "BING", "GOOGLE", "YAHOO", "AOL", "FLICKR", "YOUTUBE","DUCKDUCKGO"
SafeSearchApps []string `json:"safeSearchApps,omitempty"`

// A Boolean value indicating if Zvelo database lookup is disabled.
ZveloDbLookupDisabled bool `json:"zveloDbLookupDisabled,omitempty"`

// A Boolean value indicating if Creative Commons search results are enabled.
EnableCreativeCommonsSearchResults bool `json:"enableCreativeCommonsSearchResults,omitempty"`
}

func Get(ctx context.Context, service *zscaler.Service, ruleID int) (*URLFilteringRule, error) {
Expand Down
Loading