Skip to content

Commit 37e9251

Browse files
committed
chore: rename flexfun package
- FlexFunctions are now FlexConnect - We will discontinue the old gooddata-flexfun and instead use gooddata-flexconnect - Renamed everything accordingly - There should be no sight of FlexFun anywhere now JIRA: CQ-894 risk: low
1 parent 925e7db commit 37e9251

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+227
-228
lines changed

.envrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export PYTHONPATH="${PYTHONPATH}:${SCRIPT_DIR}/gooddata-api-client/"
99
export PYTHONPATH="${PYTHONPATH}:${SCRIPT_DIR}/gooddata-sdk/"
1010
export PYTHONPATH="${PYTHONPATH}:${SCRIPT_DIR}/gooddata-pandas/"
1111
export PYTHONPATH="${PYTHONPATH}:${SCRIPT_DIR}/gooddata-flight-server/"
12-
export PYTHONPATH="${PYTHONPATH}:${SCRIPT_DIR}/gooddata-flexfun/"
12+
export PYTHONPATH="${PYTHONPATH}:${SCRIPT_DIR}/gooddata-flexconnect/"
1313
export PYTHONPATH="${PYTHONPATH}:${SCRIPT_DIR}/gooddata-dbt/"
1414

1515
export PATH="${PATH}:${SCRIPT_DIR}/gooddata-sdk/bin"

.github/workflows/build-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- gooddata-sdk
3030
- gooddata-dbt
3131
- gooddata-flight-server
32-
- gooddata-flexfun
32+
- gooddata-flexconnect
3333
runs-on: ubuntu-latest
3434
steps:
3535
- uses: actions/checkout@v4
@@ -83,7 +83,7 @@ jobs:
8383
- gooddata-sdk
8484
- gooddata-dbt
8585
- gooddata-flight-server
86-
- gooddata-flexfun
86+
- gooddata-flexconnect
8787
steps:
8888
- name: Obtain ${{ matrix.component }} artifacts
8989
uses: actions/download-artifact@v4

.github/workflows/dev-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- gooddata-sdk
2222
- gooddata-dbt
2323
- gooddata-flight-server
24-
- gooddata-flexfun
24+
- gooddata-flexconnect
2525
steps:
2626
- name: Checkout Repository
2727
uses: actions/checkout@v4

.github/workflows/rw-collect-changes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
- 'gooddata-api-client/**'
4848
- 'gooddata-dbt/**'
4949
- 'gooddata-flight-server/**'
50-
- 'gooddata-flexfun/**'
50+
- 'gooddata-flexconnect/**'

.github/workflows/rw-python-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: ${{ matrix.python_version == 'py312' }}
2525
uses: codecov/codecov-action@v3
2626
with:
27-
files: ./gooddata-sdk/coverage.xml,./gooddata-pandas/coverage.xml,./gooddata-fdw/coverage.xml,./gooddata-flight-server/coverage.xml,./gooddata-flexfun/coverage.xml
27+
files: ./gooddata-sdk/coverage.xml,./gooddata-pandas/coverage.xml,./gooddata-fdw/coverage.xml,./gooddata-flight-server/coverage.xml,./gooddata-flexconnect/coverage.xml
2828
lint-and-format-check:
2929
runs-on: ubuntu-latest
3030
if: ${{inputs.changed-python-modules == 'true'}}

.sonar.settings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# (C) 2021 GoodData Corporation
2-
sonar.sources=gooddata-sdk,gooddata-fdw,gooddata-pandas,gooddata-flight-server,gooddata-flexfun
2+
sonar.sources=gooddata-sdk,gooddata-fdw,gooddata-pandas,gooddata-flight-server,gooddata-flexconnect
33
sonar.exclusions=gooddata-api-client/**/*
44
sonar.python.version=3.9, 3.10, 3.11, 3.12

.sonarcloud.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# (C) 2022 GoodData Corporation
2-
sonar.sources=gooddata-sdk,gooddata-fdw,gooddata-pandas,gooddata-flight-server,gooddata-flexfun
2+
sonar.sources=gooddata-sdk,gooddata-fdw,gooddata-pandas,gooddata-flight-server,gooddata-flexconnect
33
sonar.exclusions=gooddata-api-client/**/*
44
sonar.python.version=3.9, 3.10, 3.11, 3.12

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ The above copyright notice and this permission notice shall be included in all c
77
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
88
-----------------------
99

10-
This repository includes source code for gooddata-api-client, gooddata-fdw, gooddata-pandas, gooddata-sdk, gooddata-flight-server, gooddata-flexfun, and gooddata-dbt, each of which is licensed under the MIT license above. For additional licensing information related to open source packages included in each of these projects, please see the OSS LICENSES directory.
10+
This repository includes source code for gooddata-api-client, gooddata-fdw, gooddata-pandas, gooddata-sdk, gooddata-flight-server, gooddata-flexconnect, and gooddata-dbt, each of which is licensed under the MIT license above. For additional licensing information related to open source packages included in each of these projects, please see the OSS LICENSES directory.

dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ pre-commit~=3.8.0
1010
-r ./gooddata-fdw/requirements.txt
1111
-r ./gooddata-dbt/requirements.txt
1212
-r ./gooddata-flight-server/requirements.txt
13-
-r ./gooddata-flexfun/requirements.txt
13+
-r ./gooddata-flexconnect/requirements.txt
1414
-r ./gooddata-sdk/test-requirements.txt
1515
-r ./gooddata-pandas/test-requirements.txt
1616
-r ./gooddata-fdw/test-requirements.txt
1717
-r ./gooddata-dbt/test-requirements.txt
1818
-r ./gooddata-flight-server/test-requirements.txt
19-
-r ./gooddata-flexfun/test-requirements.txt
19+
-r ./gooddata-flexconnect/test-requirements.txt
2020
-r ./tests-support/requirements.txt
File renamed without changes.

0 commit comments

Comments
 (0)