Skip to content

Commit f1d2510

Browse files
chore: merged master into fix/menu
risk: low
1 parent 2423aeb commit f1d2510

9 files changed

Lines changed: 49 additions & 19 deletions

File tree

.github/workflows/build-release.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- gooddata-dbt
3131
- gooddata-flight-server
3232
- gooddata-flexconnect
33+
- gooddata-pipelines
3334
runs-on: ubuntu-latest
3435
steps:
3536
- uses: actions/checkout@v4
@@ -78,8 +79,8 @@ jobs:
7879
prerelease: false
7980
make_latest: true
8081
files: |
81-
dist/**/*.whl
82-
dist/**/*.tar.gz
82+
dist/**/*.whl
83+
dist/**/*.tar.gz
8384
publish:
8485
name: Publish components
8586
runs-on: ubuntu-latest
@@ -94,14 +95,15 @@ jobs:
9495
- gooddata-dbt
9596
- gooddata-flight-server
9697
- gooddata-flexconnect
98+
- gooddata-pipelines
9799
steps:
98100
- name: Obtain ${{ matrix.component }} artifacts
99101
uses: actions/download-artifact@v4
100102
with:
101103
name: artifacts_${{ matrix.component }}
102104
path: dist/${{ matrix.component }}
103105
- name: Push ${{ matrix.component}} to pypi
104-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
106+
uses: pypa/gh-action-pypi-publish@release/v1
105107
with:
106108
user: __token__
107109
password: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/dev-release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- gooddata-dbt
2323
- gooddata-flight-server
2424
- gooddata-flexconnect
25+
- gooddata-pipelines
2526
steps:
2627
- name: Checkout Repository
2728
uses: actions/checkout@v4
@@ -42,7 +43,7 @@ jobs:
4243
cd ${{ matrix.component }}
4344
python -m build
4445
- name: Push ${{ matrix.component}} to pypi
45-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
46+
uses: pypa/gh-action-pypi-publish@release/v1
4647
with:
4748
user: __token__
4849
password: ${{ secrets.PYPI_API_TOKEN }}

docs/assets/scss/menu.scss

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@
5151

5252
&__mobile-icon {
5353
position: fixed;
54-
top: $header-first-nav-height;
54+
top: 80px;
5555
display: flex;
5656
justify-content: center;
5757
align-items: center;
5858
width: 55px;
5959
height: $header-second-nav-height;
6060
left: 10px;
61-
z-index: 32;
61+
z-index: 36;
6262
transition: $transition;
6363

6464
&::before {
@@ -83,6 +83,25 @@
8383
}
8484
}
8585

86+
&__mobile-bg {
87+
position: fixed;
88+
top: $header-first-nav-height + 1px;
89+
left: -100%;
90+
bottom: 0;
91+
width: 100%;
92+
z-index: 32;
93+
background-color: rgba($color-deep-purple, 0.5);
94+
transition: $transition;
95+
96+
@include mq(medium) {
97+
display: none;
98+
}
99+
}
100+
&__mobile-trigger:checked ~ &,
101+
&__mobile-trigger:checked ~ &__mobile-bg {
102+
left: 0;
103+
}
104+
86105
&__mobile-trigger:checked ~ & {
87106
left: 0;
88107
}
@@ -144,11 +163,10 @@
144163
position: relative;
145164
display: inline-block;
146165
flex: 1 1 auto;
147-
margin: 2px 20px 2px 0; // orig values -> 8px 20px 3px 0;
166+
margin: 8px 20px 3px 0;
148167
padding: 0 0 5px;
149168
max-width: 100%;
150169
font-size: 15px;
151-
//font-family: "Lucida Console", "Courier New", monospace;
152170
line-height: 1.5;
153171

154172
&,

docs/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.20
44

55
require (
66
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 // indirect
7-
github.com/gooddata/gooddata-docs-theme v0.0.0-20250724141246-310dd7684e82 // indirect
7+
github.com/gooddata/gooddata-docs-theme v0.0.0-20250729102440-7a7e8c25d60b // indirect
88
github.com/google/docsy v0.7.1 // indirect
99
github.com/google/docsy/dependencies v0.7.1 // indirect
1010
github.com/twbs/bootstrap v5.3.1+incompatible // indirect

docs/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ github.com/gooddata/gooddata-docs-theme v0.0.0-20250724110042-81655c31f00b h1:w2
2828
github.com/gooddata/gooddata-docs-theme v0.0.0-20250724110042-81655c31f00b/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA=
2929
github.com/gooddata/gooddata-docs-theme v0.0.0-20250724141246-310dd7684e82 h1:vetjOF/JcH99uBeMDV22JvRoPB+5rps03c72na5LMi4=
3030
github.com/gooddata/gooddata-docs-theme v0.0.0-20250724141246-310dd7684e82/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA=
31+
github.com/gooddata/gooddata-docs-theme v0.0.0-20250729102440-7a7e8c25d60b h1:Tsi2R9UmdkJpEhdBPN870ybDU06RfEN2Hbq4+BiOzMA=
32+
github.com/gooddata/gooddata-docs-theme v0.0.0-20250729102440-7a7e8c25d60b/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA=
3133
github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY=
3234
github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc=
3335
github.com/google/docsy/dependencies v0.7.1 h1:NbzYKJYMin2q50xdWSUzR2c9gCp7zR/XHDBcxklEcTQ=

docs/layouts/partials/sidebar-tree.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!-- PETR: Menu assembled here -->
22
<input type="checkbox" id="gd-docs-menu__mobile-trigger" class="gd-docs-menu__mobile-trigger" />
33
<label for="gd-docs-menu__mobile-trigger" class="gd-docs-menu__mobile-icon"></label>
4+
<div class="gd-docs-menu__mobile-bg"></div>
45
<nav class="gd-docs-menu init">
56
{{ $additionalNavRoot := .Site.GetPage "/versions" }}
67
{{ $root := .Site.GetPage "/docs" }}

gooddata-pipelines/poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gooddata-pipelines/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# (C) 2025 GoodData Corporation
22
[project]
33
name = "gooddata-pipelines"
4-
version = "0.1.0"
4+
version = "1.47.0"
55
description = ""
66
authors = [{ name = "GoodData", email = "support@gooddata.com" }]
77
license = { text = "MIT" }
@@ -11,7 +11,7 @@ dependencies = [
1111
"pydantic (>=2.11.3,<3.0.0)",
1212
"requests (>=2.32.3,<3.0.0)",
1313
"types-requests (>=2.32.0,<3.0.0)",
14-
"gooddata-sdk (>=1.43.0,<2.0.0)",
14+
"gooddata-sdk~=1.47.0",
1515
"boto3 (>=1.39.3,<2.0.0)",
1616
"boto3-stubs (>=1.39.3,<2.0.0)",
1717
"types-pyyaml (>=6.0.12.20250326,<7.0.0)",

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,15 @@ src = "gooddata-flexconnect/setup.py"
186186
search = '"Documentation": "https://gooddata-flexconnect.readthedocs.io/en/v{current_version}"'
187187

188188
[[tool.tbump.file]]
189+
# gooddata-pipelines version
189190
src = "gooddata-pipelines/pyproject.toml"
190191
search = 'version = "{current_version}"'
191192

193+
[[tool.tbump.file]]
194+
# gooddata-sdk version in gooddata-pipelines dependencies
195+
src = "gooddata-pipelines/pyproject.toml"
196+
search = "gooddata-sdk~={current_version}"
197+
192198
# You can specify a list of commands to
193199
# run after the files have been patched
194200
# and before the git commit is made

0 commit comments

Comments
 (0)