Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.11.0"
".": "2.12.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 41
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-b0c72d2fe5911c9ce155275b954198bf2152e915a7e5b9f719aad50e222b9ef8.yml
openapi_spec_hash: 5cf943ea5718059b7975417b012cee28
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-d4c568ebc1a0f853b02c55ba800c7d7b66189bc6dd22c3cb565a81361c832e2b.yml
openapi_spec_hash: 9a0ecdc06874eee29a3a58a699923405
config_hash: 0fb0ceca5946298c416cec0cca5260c7
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 2.12.0 (2026-08-19)

Full Changelog: [v2.11.0...v2.12.0](https://github.com/context-dot-dev/context-go-sdk/compare/v2.11.0...v2.12.0)

### Features

* **api:** api update ([38af1ba](https://github.com/context-dot-dev/context-go-sdk/commit/38af1ba1e07bd6ca04baf4269cf8940d8facfe94))
* **api:** api update ([bf5cbe1](https://github.com/context-dot-dev/context-go-sdk/commit/bf5cbe15abd1593fb321ae5cfa99c2403f583aae))

## 2.11.0 (2026-08-18)

Full Changelog: [v2.10.0...v2.11.0](https://github.com/context-dot-dev/context-go-sdk/compare/v2.10.0...v2.11.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/context-dot-dev/context-go-sdk@v2.11.0'
go get -u 'github.com/context-dot-dev/context-go-sdk@v2.12.0'
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "2.11.0" // x-release-please-version
const PackageVersion = "2.12.0" // x-release-please-version
5 changes: 3 additions & 2 deletions news.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,9 @@ type NewsSearchParamsFilterBy struct {
Date NewsSearchParamsFilterByDate `json:"date,omitzero"`
// Publisher countries to include, as lowercase ISO 3166-1 alpha-2 codes. Up to 3.
//
// Any of "ae", "ar", "au", "ca", "cg", "ch", "cl", "de", "fi", "fr", "gb", "hk",
// "il", "in", "jp", "kr", "mx", "ng", "nl", "qa", "sa", "se", "sg", "us", "za".
// Any of "ae", "ar", "au", "ca", "cg", "ch", "cl", "cz", "de", "fi", "fr", "gb",
// "hk", "il", "in", "jp", "kr", "mx", "ng", "nl", "qa", "sa", "se", "sg", "us",
// "za".
SourceCountry []string `json:"sourceCountry,omitzero"`
// Publisher domains to include. Up to 3.
SourceDomain []string `json:"sourceDomain,omitzero"`
Expand Down
8 changes: 5 additions & 3 deletions web.go
Original file line number Diff line number Diff line change
Expand Up @@ -3511,13 +3511,15 @@ type WebWebCrawlMdParams struct {
// than this value, it will be aborted with a 408 status code. Maximum allowed
// value is 300000ms (5 minutes).
TimeoutMs param.Opt[int64] `json:"timeoutMS,omitzero"`
// Regex pattern. Only URLs matching this pattern will be followed and scraped.
// Regex pattern. Only URLs matching this pattern will be followed and scraped. An
// automatic prefix scope in the form ^<starting URL> follows a redirect of the
// starting page.
URLRegex param.Opt[string] `json:"urlRegex,omitzero"`
// Extract only the main content, stripping headers, footers, sidebars, and
// navigation
UseMainContentOnly param.Opt[bool] `json:"useMainContentOnly,omitzero"`
// Optional browser wait time in milliseconds after initial page load for each
// crawled page. Min: 0. Max: 30000 (30 seconds).
// Browser wait time in milliseconds after initial page load for each crawled page.
// Defaults to 3500 (3.5 seconds). Min: 0. Max: 30000 (30 seconds).
WaitForMs param.Opt[int64] `json:"waitForMs,omitzero"`
// Fetch the target page through a residential proxy in this country (ISO 3166-1
// alpha-2).
Expand Down
Loading