Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release into master #5424

Merged
merged 11 commits into from
Oct 3, 2024
10 changes: 5 additions & 5 deletions docs/config/public/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@
# on every patch release of respective branch

[[versions]]
version = "10.10"
version = "10.11"
dirpath = "latest"
url = "/latest/"
[[versions]]
version = "10.10"
dirpath = "10.10"
url = "/10.10/"
[[versions]]
version = "10.9"
dirpath = "10.9"
Expand All @@ -19,10 +23,6 @@
version = "10.8"
dirpath = "10.8"
url = "/10.8/"
[[versions]]
version = "10.7"
dirpath = "10.7"
url = "/10.7/"
[[versions]]
version = "Older"
url = "https://sdk.gooddata.com/gooddata-ui/versions.html"
5 changes: 3 additions & 2 deletions docs/layouts/index.redir
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Redirects
/ {{ .Site.BaseURL }}/latest/ 301!
/docs/ {{ .Site.BaseURL }}/latest/ 301!
/10.10/ {{ .Site.BaseURL }}/latest/ 301!
/10.10.0/ {{ .Site.BaseURL }}/latest/ 301!
/10.11/ {{ .Site.BaseURL }}/latest/ 301!
/10.11.0/ {{ .Site.BaseURL }}/latest/ 301!
/10.10.0/ {{ .Site.BaseURL }}/10.10/ 301!
/10.9.0/ {{ .Site.BaseURL }}/10.9/ 301!
/10.8.0/ {{ .Site.BaseURL }}/10.8/ 301!
/10.7.0/ {{ .Site.BaseURL }}/10.7/ 301!
Expand Down
1 change: 0 additions & 1 deletion libs/sdk-backend-tiger/src/backend/features/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ export class TigerFeaturesService {
return {
...DefaultFeatureFlags,
...results,
// After conflict here when merge release->master, please remove hardcoded feature flags override
};
});
responseMap.set(getKeyFromContext(wsContext), response);
Expand Down
12 changes: 12 additions & 0 deletions libs/sdk-ui-all/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"name": "@gooddata/sdk-ui-all",
"entries": [
{
"version": "10.11.0",
"tag": "@gooddata/sdk-ui-all_v10.11.0",
"date": "Thu, 03 Oct 2024 07:11:15 GMT",
"comments": {
"none": [
{
"comment": "Introduce support for saved filter views on dashboards. It allows to customize filter context for individual user and dashboard and save it for later use."
}
]
}
},
{
"version": "10.10.0",
"tag": "@gooddata/sdk-ui-all_v10.10.0",
Expand Down
9 changes: 8 additions & 1 deletion libs/sdk-ui-all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log - @gooddata/sdk-ui-all

This log was last generated on Thu, 19 Sep 2024 06:58:04 GMT and should not be manually modified.
This log was last generated on Thu, 03 Oct 2024 07:11:15 GMT and should not be manually modified.

## 10.11.0
Thu, 03 Oct 2024 07:11:15 GMT

### Updates

- Introduce support for saved filter views on dashboards. It allows to customize filter context for individual user and dashboard and save it for later use.

## 10.10.0
Thu, 19 Sep 2024 06:58:04 GMT
Expand Down