tinybird-cli 3.0.0.dev4__py3-none-any.whl → 3.0.0.dev6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
tinybird/__cli__.py CHANGED
@@ -4,5 +4,5 @@ __description__ = 'Tinybird Command Line Tool'
4
4
  __url__ = 'https://docs.tinybird.co/cli.html'
5
5
  __author__ = 'Tinybird'
6
6
  __author_email__ = 'support@tinybird.co'
7
- __version__ = '3.0.0.dev4'
8
- __revision__ = '513d3db'
7
+ __version__ = '3.0.0.dev6'
8
+ __revision__ = 'd7baba6'
tinybird/datafile.py CHANGED
@@ -173,7 +173,7 @@ class ImportReplacements:
173
173
 
174
174
 
175
175
  class ExportReplacements:
176
- SERVICES = ("gcs_hmac", "s3")
176
+ SERVICES = ("gcs_hmac", "s3", "s3_iamrole")
177
177
  NODE_TYPES = PipeNodeTypes.DATA_SINK
178
178
  _REPLACEMENTS = (
179
179
  ("export_service", "service", None),
@@ -240,6 +240,7 @@ fi
240
240
 
241
241
  APPEND_FIXTURES_SH = """
242
242
  #!/usr/bin/env bash
243
+ set -e
243
244
 
244
245
  VERSION=$1
245
246
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tinybird-cli
3
- Version: 3.0.0.dev4
3
+ Version: 3.0.0.dev6
4
4
  Summary: Tinybird Command Line Tool
5
5
  Home-page: https://docs.tinybird.co/cli.html
6
6
  Author: Tinybird
@@ -8,7 +8,7 @@ Author-email: support@tinybird.co
8
8
  Requires-Python: >=3.8, <3.12
9
9
  Description-Content-Type: text/x-rst
10
10
  Requires-Dist: click (<8.2,>=8.1.6)
11
- Requires-Dist: clickhouse-toolset (==0.28.dev0)
11
+ Requires-Dist: clickhouse-toolset (==0.29.dev0)
12
12
  Requires-Dist: colorama (==0.4.6)
13
13
  Requires-Dist: cryptography (>=3.4.8)
14
14
  Requires-Dist: croniter (==1.3.8)
@@ -52,10 +52,21 @@ Changelog
52
52
 
53
53
  ---------
54
54
 
55
+ 3.0.0.dev6
56
+ ************
57
+
58
+ - `Fixed` `append_fixtures.sh` script to exit with 1 when there's an error
59
+
60
+ 3.0.0.dev5
61
+ ************
62
+
63
+ - `Fixed` Error while pushing Sink Pipes using IAM Role Connector for S3
64
+
55
65
  3.0.0.dev4
56
66
  ************
57
67
 
58
68
  - `Changed` Unify generation of ci/cd script resources
69
+ - `Changed` Update clickhouse-toolset to 0.29.dev0
59
70
 
60
71
  3.0.0.dev3
61
72
  ************
@@ -105,7 +116,7 @@ Changelog
105
116
 
106
117
  - `Changed` `tb init --git` update to get ready to use cicd with releases
107
118
  - `Changed` Use `tb branch` instead of `tb env`. `tb env` is still usable but deprecated and will be removed in the next version.
108
- - `Fixed` command `tb pipe regression-tests` to handle the edge case when all the requests to the endpoint that we want to check fails as the value returned is no what we expect.
119
+ - `Fixed` command `tb pipe regression-tests` to handle the edge case when all the requests to the endpoint that we want to check fails as the value returned is no what we expect.
109
120
  - `Fixed` `tb deploy` fixes to work with `--dry-run` and push changes of new and modified files
110
121
  - `Fixed` `tb check` doesn't exit with error when checking a `.incl` file.
111
122
  - `Fixed` `tb fmt` adds empty quoted strings in .datasource connection section.
@@ -149,7 +160,7 @@ Released new version 2.0.0 with all these changes:
149
160
  Released new version 1.3.0 with all these changes:
150
161
 
151
162
  - `Added` Support for Copy pipes in `tb fmt`
152
- - `Added` Support for `.datasource.incl` files in `tb fmt`
163
+ - `Added` Support for `.datasource.incl` files in `tb fmt`
153
164
  - `Fixed` `tb auth use` to move between regions saved in the config file
154
165
  - `Fixed` Skip `regression.yaml` in `tb test run` since it's reserved for regression tests
155
166
  - `Fixed` Skip replacing `.incl` files in `tb fmt`
@@ -172,7 +183,7 @@ Released new version 1.2.0 with all these changes:
172
183
 
173
184
  Released new version 1.1.0 with all these changes:
174
185
 
175
- - `Added` Support `skip` individual regression tests through the regression.yaml configuration file. CI/CD guide at https://www.tinybird.co/docs/guides/continuous-integration.html
186
+ - `Added` Support `skip` individual regression tests through the regression.yaml configuration file. CI/CD guide at https://www.tinybird.co/docs/guides/continuous-integration.html
176
187
  - `Added` Fail `tb env regression-tests` if no tests are run for any pipe, use `skip` to avoid the error
177
188
  - `Added` Skip POST requests by default in `tb env regression-tests` until it's supported
178
189
  - `Added` Support append `--fixtures` to shared Data Sources in Environments
@@ -185,7 +196,7 @@ Released new version 1.1.0 with all these changes:
185
196
  - `Changed` Expose resources and ids when removing releases `tb release rm`
186
197
  - `Changed` `--override-commit` option to not require needing to pass the `--git` option as well. Now, running `tb init --override-commit` should work as expected.
187
198
  - `Changed` Copy and Sink on-demand jobs now return the job URL.
188
- - `Changed` allow Workspace admin tokens for CI/CD workflows. Previously, you were asked for user admin token. You can update your TB_ADMIN_TOKEN to be the Workspace admin token instead the admin token from a specific user. CI/CD guide at https://www.tinybird.co/docs/guides/continuous-integration.html
199
+ - `Changed` allow Workspace admin tokens for CI/CD workflows. Previously, you were asked for user admin token. You can update your TB_ADMIN_TOKEN to be the Workspace admin token instead the admin token from a specific user. CI/CD guide at https://www.tinybird.co/docs/guides/continuous-integration.html
189
200
  - `Changed` Improve CI/CD output. Added warning hint in custom deployments.
190
201
  - `Fixed` `tb deploy` raises an error if it detects resources renamed in git
191
202
  - `Fixed` On `tb push --force --yes` a BigQuery Data Source, it updates both the `SCHEMA` and connector settings.
@@ -511,7 +522,7 @@ Released new version 1.0.1 with all these changes:
511
522
  1.0.0b393
512
523
  *********
513
524
 
514
- - `Changed` Upgrade version of generated cicd templates
525
+ - `Changed` Upgrade version of generated cicd templates
515
526
 
516
527
  1.0.0b393
517
528
  *********
@@ -1,11 +1,11 @@
1
- tinybird/__cli__.py,sha256=SUNDeWzPpKr6dgPRo2Cu5CG1uDIO9Ad285RfH3TBwYs,237
1
+ tinybird/__cli__.py,sha256=rI0iHRaqw1Ty-cBV6UXOOTKx4Ww7bAhzHb5c40diT_g,237
2
2
  tinybird/check_pypi.py,sha256=_4NkharLyR_ELrAdit-ftqIWvOf7jZNPt3i76frlo9g,975
3
3
  tinybird/client.py,sha256=lSVGM_7JE7GA6v8gonT6rBbIgVDDeZH9NfS1C5UClNU,45947
4
4
  tinybird/config.py,sha256=ckNiJhDbRm1IGNz_0V712fgiv2XBhDxujUH0EvwYVm4,1962
5
5
  tinybird/connector_settings.py,sha256=xqbRcBbjVGgN5ReG4h1V2PsTL76KdGfLLSgWbQUjyP8,3788
6
6
  tinybird/connectors.py,sha256=lkpVSUmSuViEZBa4QjTK7YmPHUop0a5UFoTrSmlVq6k,15244
7
7
  tinybird/context.py,sha256=Wp2vcP_qN2PYQh6hYnTwI_XcqUCt_3pZORjSTRnpZz4,802
8
- tinybird/datafile.py,sha256=Ui7cCbAk6uY4DySl0SqtzTE-IH8ekeodz3syEp13JB4,189943
8
+ tinybird/datafile.py,sha256=FX_zDBB03MzKPlKB17RiHf-NTk_iehutFEGmQDnmP4o,189957
9
9
  tinybird/datatypes.py,sha256=adYOQBTyfeBGVINIlaRex_81gTQQuqF2M9VTQpzq1H0,7060
10
10
  tinybird/feedback_manager.py,sha256=ug6jVVi8FzThtv1Echa0_gv1VzFMov4xgVd1EGTdxF8,52302
11
11
  tinybird/git_settings.py,sha256=pveuovRo-EvygrqoLSP3Rm4fN0pW0OPOcg65whiznpk,3835
@@ -20,7 +20,7 @@ tinybird/ch_utils/constants.py,sha256=QtaTrpYsmxnlogsC57YEnkrbw22t9hx6ueCvl6qD9f
20
20
  tinybird/ch_utils/engine.py,sha256=LzQxPraFN7tTl6YP-xwd3Z2o3BjjD4VNqWDrreC4koI,37634
21
21
  tinybird/tb_cli_modules/auth.py,sha256=joR1uS821o2bPTpgDyMCYed9Kw7MutR0aa-YvmIb4zA,8561
22
22
  tinybird/tb_cli_modules/branch.py,sha256=DQp21ewTC3ylROFML5vEmleV-ZixGNzW9ORlbhzvaQk,37590
23
- tinybird/tb_cli_modules/cicd.py,sha256=cUiA7UXIAA89VNYDaBJSVHJe1saVdAOjKMc0KBGNbXM,12079
23
+ tinybird/tb_cli_modules/cicd.py,sha256=Nw_VPByvo_EqeZLW-2gfTDGk7gTA4fDPNS48PqRboEw,12086
24
24
  tinybird/tb_cli_modules/cli.py,sha256=URTkaDmBxl9y4_dAyu3jD8PYCqDXeptsnQ8Ll8R49Ws,59270
25
25
  tinybird/tb_cli_modules/common.py,sha256=PN5qAsevNHMTYZW45WSHQywb4o71VgX4ZNlKSTCErCM,74967
26
26
  tinybird/tb_cli_modules/config.py,sha256=6NTgIdwf0X132A1j6G_YrdPep87ymZ9b5pABabKLzh4,11484
@@ -37,8 +37,8 @@ tinybird/tb_cli_modules/workspace.py,sha256=NDHINzW3SBo8FcWH8Bx-DCeUXQ8YUJX6FW8c
37
37
  tinybird/tb_cli_modules/workspace_members.py,sha256=6oZM7oJQPxDMycL95TPtALriL5WRI2DhNlQWD8MP8JU,8205
38
38
  tinybird/tb_cli_modules/tinyunit/tinyunit.py,sha256=0dYYmZMMJVubxSPls2e_a-fqtUYvgLfu2B0xwLfkbHw,11667
39
39
  tinybird/tb_cli_modules/tinyunit/tinyunit_lib.py,sha256=j92za8QbXrv4eIPjKBZPn9ghR-nYQ2wZZ88MeXyMWXE,1868
40
- tinybird_cli-3.0.0.dev4.dist-info/METADATA,sha256=toAowBbx_4kAI5xD1ScSH0JHHQa_qDBOaYAGpdYzWVQ,62453
41
- tinybird_cli-3.0.0.dev4.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
42
- tinybird_cli-3.0.0.dev4.dist-info/entry_points.txt,sha256=PKPKuPmA4IfJYnCFHHUiw-aAWZuBomFvwCklv1OyCjE,43
43
- tinybird_cli-3.0.0.dev4.dist-info/top_level.txt,sha256=8TRt5snq9vZpx4rBBc9EWpj76Er6IAdfnx_Eq6cNBk8,45
44
- tinybird_cli-3.0.0.dev4.dist-info/RECORD,,
40
+ tinybird_cli-3.0.0.dev6.dist-info/METADATA,sha256=-XHAr4b-VgxCmVD-iaCJPNe8C82vmO3axbjcWhNS2Xg,62699
41
+ tinybird_cli-3.0.0.dev6.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
42
+ tinybird_cli-3.0.0.dev6.dist-info/entry_points.txt,sha256=PKPKuPmA4IfJYnCFHHUiw-aAWZuBomFvwCklv1OyCjE,43
43
+ tinybird_cli-3.0.0.dev6.dist-info/top_level.txt,sha256=8TRt5snq9vZpx4rBBc9EWpj76Er6IAdfnx_Eq6cNBk8,45
44
+ tinybird_cli-3.0.0.dev6.dist-info/RECORD,,