Re: [I] Content not from webpack is served from 'D:\tech_release\superset-fork\superset\static\assets' directory [superset]

2024-05-23 Thread via GitHub


duniang818 commented on issue #28632:
URL: https://github.com/apache/superset/issues/28632#issuecomment-2128596667

   1. i have checked the config file both webpack.config.js, 
webpack.proxy-config.js and superest_config.py, there everything is ok, i don't 
find something is wrong.
   2. the assets exist in the dir 
D:\tech_release\superset-fork\superset\static\assets.
   3. the structure is :
   D:\tech_release\superset-fork 
   D:\tech_release\superset-fork\superset
   `PS  D:\tech_release\superset-fork\superset  superset run -p 8088`
   D:\tech_release\superset-fork\superset\superset_config.py
   D:\tech_release\superset-fork\superset\static\assets
   D:\tech_release\superset-fork\superset-frontend
   `PS  D:\tech_release\superset-fork\superset-frontend  npm install && npm run 
dev-server`
   D:\tech_release\superset-fork\superset-frontend\webpack.config.js
   D:\tech_release\superset-fork\superset-frontend\webpack.proxy-config.js
   D:\tech_release\superset-fork\superset-frontend\package.json
   
   4. everything is above, but don't work now.
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [I] Content not from webpack is served from 'D:\tech_release\superset-fork\superset\static\assets' directory [superset]

2024-05-23 Thread via GitHub


duniang818 commented on issue #28632:
URL: https://github.com/apache/superset/issues/28632#issuecomment-2128595906

   1. i have checked the config file both webpack.config.js, 
webpack.proxy-config.js and superest_config.py, there everything is ok, i don't 
find something is wrong.
   2. the assets exist in the dir 
D:\tech_release\superset-fork\superset\static\assets.
   3. the structure is :
   D:\tech_release\superset-fork 
   D:\tech_release\superset-fork\superset
   `PS  D:\tech_release\superset-fork\superset  superset run -p 8088`
   D:\tech_release\superset-fork\superset\superset_config.py
   D:\tech_release\superset-fork\superset\static\assets
   D:\tech_release\superset-fork\superset-frontend
   `PS  D:\tech_release\superset-fork\superset-frontend  npm install && npm run 
dev-server`
   D:\tech_release\superset-fork\superset-frontend\webpack.config.js
   D:\tech_release\superset-fork\superset-frontend\webpack.proxy-config.js
   D:\tech_release\superset-fork\superset-frontend\package.json
   
   4. everything is above, but don't work now.
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [I] Superset ALERT & REPORTS not working [superset]

2024-05-23 Thread via GitHub


dosubot[bot] commented on issue #28686:
URL: https://github.com/apache/superset/issues/28686#issuecomment-2128525374

   
   To address the issue with the ALERT & REPORTS feature in your Superset 
project, follow these steps:
   
   1. **Check the `"ALERT_REPORTS"` Feature Flag**: Ensure it's enabled in your 
`superset_config.py`:
   ```python
   FEATURE_FLAGS = {
   "ALERT_REPORTS": True
   }
   ```
   
   2. **Update Celery Beat Schedule**: Ensure you have a schedule for 
`reports.scheduler` in your Celery configuration:
   ```python
   from celery.schedules import crontab
   
   class CeleryConfig:
   beat_schedule = {
   "reports.scheduler": {
   "task": "reports.scheduler",
   "schedule": crontab(minute="*", hour="*"),
   },
   "reports.prune_log": {
   "task": "reports.prune_log",
   "schedule": crontab(minute=0, hour=0),
   },
   }
   CELERY_CONFIG = CeleryConfig
   ```
   
   3. **Ensure Browser Installation for Screenshots**: Confirm a headless 
browser is installed. For Chrome:
   ```python
   WEBDRIVER_TYPE = "chrome"
   WEBDRIVER_OPTION_ARGS = [
   "--force-device-scale-factor=2.0",
   "--high-dpi-support=2.0",
   "--headless",
   "--disable-gpu",
   "--disable-dev-shm-usage",
   "--no-sandbox",
   "--disable-setuid-sandbox",
   "--disable-extensions",
   ]
   ```
   
   4. **SMTP or Slack Configuration**: Ensure your SMTP settings or 
`SLACK_API_TOKEN` are correctly configured:
   - **Slack**:
   ```python
   SLACK_API_TOKEN = "xoxb-your-slack-token"
   ```
   - **Email**:
   ```python
   SMTP_HOST = "smtp.sendgrid.net"
   SMTP_PORT = 2525
   SMTP_USER = "your_user"
   SMTP_PASSWORD = "your_password"
   SMTP_MAIL_FROM = "nore...@youremail.com"
   ```
   
   5. **Review Celery Worker and Beat Logs**: Examine the logs of your Celery 
worker and beat for additional insights.
   
   6. **Fix the "Failed to assign to property 'Path'" Error**: Ensure that the 
properties being assigned are correctly defined and used. For example:
   ```tsx
   const updateAlertState = (name: string, value: any) => {
 setCurrentAlert(currentAlertData => ({
   ...currentAlertData,
   [name]: value,
 }));
   };
   
   const onPathChange = (event: React.ChangeEvent) => {
 const { value } = event.target;
 updateAlertState('path', value);
   };
   ```
   
   Ensure all configurations, especially those related to Celery, the headless 
browser, and notification settings, are correct. For more detailed guidance, 
refer to the [Superset 
documentation](https://github.com/apache/superset/blob/master/docs/docs/configuration/alerts-reports.mdx)
 
[[1]](https://github.com/apache/superset/issues/28381)[[2]](https://github.com/apache/superset/issues/12794)[[3]](https://github.com/apache/superset/blob/master/docs/docs/configuration/alerts-reports.mdx).
   
   
   
   
   
   
    Details
   
   
   **About Dosu**
   This response is meant to be useful and save you time. It is **not meant to 
be a precise solution**, but rather a starting point for your own research.
   
   Help me be more useful! Please leave a  if this is helpful and  if it is 
irrelevant.
   
   
   *To continue the conversation, mention @dosu.*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[I] Superset ALERT & REPORTS not working [superset]

2024-05-23 Thread via GitHub


mujohiddin opened a new issue, #28686:
URL: https://github.com/apache/superset/issues/28686

   ### Bug description
   
   Hello there. my project is last september version but i have problem with 
ALERT & REPORTS how to fix it. I don't know how to fix it. help me
   
   ### How to reproduce the bug
   
   1
   
   ### Screenshots/recordings
   
   
![photo_2024-05-24_09-58-21](https://github.com/apache/superset/assets/69301931/6cd10e9b-aa50-456b-925e-bedd88f328df)
   
   Could this be the cause of the problem?
   
   ### Superset version
   
   master / latest-dev
   
   ### Python version
   
   3.9
   
   ### Node version
   
   16
   
   ### Browser
   
   Chrome
   
   ### Additional context
   
   1
   
   ### Checklist
   
   - [ ] I have searched Superset docs and Slack and didn't find a solution to 
my problem.
   - [ ] I have searched the GitHub issue tracker and didn't find a similar bug 
report.
   - [ ] I have checked Superset's logs for errors and if I found a relevant 
Python stacktrace, I included it here as text in the "additional context" 
section.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [I] BUG) Superset get wrong value of TIMESTAMP WITH TIME ZONE type field on Trino client [superset]

2024-05-23 Thread via GitHub


dosubot[bot] commented on issue #28685:
URL: https://github.com/apache/superset/issues/28685#issuecomment-2128457789

   
   Hey @okayhooni! I'm here to help you with any bugs, questions, or 
contributions you have for the project. Let's squash those bugs together! 
   
   
   The issue you're encountering with `TIMESTAMP WITH TIME ZONE` values from 
Trino in Apache Superset version 3.1.3 has been addressed in several pull 
requests, but the changes were later removed. Here are the key points and 
solutions:
   
   1. **PR 19263**: This pull request introduced changes to handle `TIMESTAMP 
WITH TIME ZONE` values correctly. It added a method to convert these values to 
a SQL expression in the `db_engine_specs/presto.py` file.
  
   2. **PR 21737**: This pull request also aimed to fix issues related to 
`TIMESTAMP WITH TIME ZONE` values from Trino, but specific changes related to 
this were not detailed in the provided context.
   
   3. **PR 22871**: This pull request removed the changes introduced in the 
previous pull requests, which might have reintroduced the issue.
   
   To fix the issue, you can manually reapply the changes from PR 19263 to your 
local `db_engine_specs/presto.py` file. Here is the relevant code snippet:
   
   ```python
   class PrestoBaseEngineSpec(BaseEngineSpec, metaclass=ABCMeta):
   """
   A base class that share common functions between Presto and Trino
   """
   
   supports_dynamic_schema = True
   supports_catalog = supports_dynamic_catalog = True
   
   column_type_mappings = (
   # ... other mappings ...
   (
   re.compile(r"^timestamp with time zone.*", re.IGNORECASE),
   types.TIMESTAMP(timezone=True),
   GenericDataType.TEMPORAL,
   ),
   # ... other mappings ...
   )
   
   @classmethod
   def convert_dttm(
   cls, target_type: str, dttm: datetime, db_extra: dict[str, Any] | 
None = None
   ) -> str | None:
   """
   Convert a Python `datetime` object to a SQL expression.
   :param target_type: The target type of expression
   :param dttm: The datetime object
   :param db_extra: The database extra object
   :return: The SQL expression
   Superset only defines time zone naive `datetime` objects, though 
this method
   handles both time zone naive and aware conversions.
   """
   sqla_type = cls.get_sqla_column_type(target_type)
   
   if isinstance(sqla_type, types.Date):
   return f"DATE '{dttm.date().isoformat()}'"
   if isinstance(sqla_type, types.TIMESTAMP):
   if dttm.tzinfo is not None:
   return f"""TIMESTAMP WITH TIME ZONE 
'{dttm.isoformat(timespec="microseconds", sep=" ")}'"""
   return f"""TIMESTAMP '{dttm.isoformat(timespec="microseconds", 
sep=" ")}'"""
   
   return None
   ```
   
   Additionally, ensure that both the Apache Superset backend and the database 
engine are configured to use the same timezone, preferably UTC, to avoid 
inconsistencies 
[[1]](https://github.com/apache/superset/blob/master/superset/db_engine_specs/presto.py)[[2]](https://github.com/apache/superset/blob/master/docs/docs/configuration/timezones.mdx)[[3]](https://github.com/apache/superset/blob/master/superset/result_set.py).
   
   For further details, you can refer to the pull requests:
   - [PR 19263](https://github.com/apache/superset/pull/19263)
   - [PR 21737](https://github.com/apache/superset/pull/21737)
   - [PR 22871](https://github.com/apache/superset/pull/22871)
   
   
   
   
   
   
    Details
   
   
   **About Dosu**
   This response is meant to be useful and save you time. It is **not meant to 
be a precise solution**, but rather a starting point for your own research.
   
   Help me be more useful! Please leave a  if this is helpful and  if it is 
irrelevant.
   
   
   *To continue the conversation, mention @dosu.*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[I] BUG) Superset get wrong value of TIMESTAMP WITH TIME ZONE type field on Trino client [superset]

2024-05-23 Thread via GitHub


okayhooni opened a new issue, #28685:
URL: https://github.com/apache/superset/issues/28685

   ### Bug description
   
   when get value with `TIMESTAMP WITH TIME ZONE` type from Trino, 
`db_engine_specs/presto.py` code of Superset cannot handle that value properly. 
(please see the screenshot below.)
   
   I found some issues and MR to fix this issue.
   - https://github.com/apache/superset/pull/19263
   - https://github.com/apache/superset/pull/21737
   
   But the modified codes with PR above, is removed on the PR below
   - https://github.com/apache/superset/pull/22871
   
   ### How to reproduce the bug
   
   just submit a query like below, to Trino.
   ```
   SELECT
   now() as server_time,
   now() at time zone 'UTC' as utc_time,
   now() at time zone 'Asia/Seoul' as seoul_time, -- wrong
   CAST(now() at time zone 'Asia/Seoul' as TIMESTAMP WITH TIME ZONE) as 
seoul_time_2, -- wrong
   CAST(now() at time zone 'Asia/Seoul' as TIMESTAMP) as seoul_time_3 -- valid
   ```
   
   ### Screenshots/recordings
   
   
![image](https://github.com/apache/superset/assets/81631424/b6508975-8be9-45b2-98a0-dcfe9de818a2)
   
   
   ### Superset version
   
   3.1.3
   
   ### Python version
   
   3.9
   
   ### Node version
   
   16
   
   ### Browser
   
   Chrome
   
   ### Additional context
   
   https://superset.apache.org/docs/configuration/timezones/
   
   ### Checklist
   
   - [X] I have searched Superset docs and Slack and didn't find a solution to 
my problem.
   - [X] I have searched the GitHub issue tracker and didn't find a similar bug 
report.
   - [X] I have checked Superset's logs for errors and if I found a relevant 
Python stacktrace, I included it here as text in the "additional context" 
section.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python requests 2.31.0 -> 2.32.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28684: chore(料): bump python requests 
2.31.0 -> 2.32.2
URL: https://github.com/apache/superset/pull/28684


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python requests 2.31.0 -> 2.32.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28684:
URL: https://github.com/apache/superset/pull/28684

   Updates the python "requests" library version from 2.31.0 to 2.32.2. 
   
   Generated by @supersetbot 料
   
   :
   ```
   requests
 requests-cache
   shillelagh
 shillelagh
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python kiwisolver 1.4.4 -> 1.4.5 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28683: chore(料): bump python 
kiwisolver 1.4.4 -> 1.4.5
URL: https://github.com/apache/superset/pull/28683


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python kiwisolver 1.4.4 -> 1.4.5 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28683:
URL: https://github.com/apache/superset/pull/28683

   Updates the python "kiwisolver" library version from 1.4.4 to 1.4.5. 
   
   Generated by @supersetbot 料
   
   :
   ```
   kiwisolver
 matplotlib
   prophet
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python requests-oauthlib 1.3.1 -> 2.0.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28681: chore(料): bump python 
requests-oauthlib 1.3.1 -> 2.0.0
URL: https://github.com/apache/superset/pull/28681


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python requests-oauthlib 1.3.1 -> 2.0.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28681:
URL: https://github.com/apache/superset/pull/28681

   Updates the python "requests-oauthlib" library version from 1.3.1 to 2.0.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   requests-oauthlib
 google-auth-oauthlib
   pandas-gbq
 apache-superset
   pydata-google-auth
 pandas-gbq
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pydruid 0.6.6 -> 0.6.9 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28682: chore(料): bump python pydruid 
0.6.6 -> 0.6.9
URL: https://github.com/apache/superset/pull/28682


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python pydruid 0.6.6 -> 0.6.9 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28682:
URL: https://github.com/apache/superset/pull/28682

   Updates the python "pydruid" library version from 0.6.6 to 0.6.9. 
   
   Generated by @supersetbot 料
   
   :
   ```
   pydruid
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python identify 2.5.24 -> 2.5.36 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28680:
URL: https://github.com/apache/superset/pull/28680

   Updates the python "identify" library version from 2.5.24 to 2.5.36. 
   
   Generated by @supersetbot 料
   
   :
   ```
   identify
 pre-commit
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python identify 2.5.24 -> 2.5.36 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28680: chore(料): bump python identify 
2.5.24 -> 2.5.36
URL: https://github.com/apache/superset/pull/28680


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python boto3 1.26.130 -> 1.34.112 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28679:
URL: https://github.com/apache/superset/pull/28679

   Updates the python "boto3" library version from 1.26.130 to 1.34.112. 
   
   Generated by @supersetbot 料
   
   :
   ```
   boto3
 dataflows-tabulator
   tableschema
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python boto3 1.26.130 -> 1.34.112 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28679: chore(料): bump python boto3 
1.26.130 -> 1.34.112
URL: https://github.com/apache/superset/pull/28679


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python matplotlib-inline 0.1.6 -> 0.1.7 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28678: chore(料): bump python 
matplotlib-inline 0.1.6 -> 0.1.7
URL: https://github.com/apache/superset/pull/28678


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python matplotlib-inline 0.1.6 -> 0.1.7 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28678:
URL: https://github.com/apache/superset/pull/28678

   Updates the python "matplotlib-inline" library version from 0.1.6 to 0.1.7. 
   
   Generated by @supersetbot 料
   
   :
   ```
   matplotlib-inline
 ipython
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python click-didyoumean 0.3.0 -> 0.3.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28677:
URL: https://github.com/apache/superset/pull/28677

   Updates the python "click-didyoumean" library version from 0.3.0 to 0.3.1. 
   
   Generated by @supersetbot 料
   
   :
   ```
   click-didyoumean
 celery
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python click-didyoumean 0.3.0 -> 0.3.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28677: chore(料): bump python 
click-didyoumean 0.3.0 -> 0.3.1
URL: https://github.com/apache/superset/pull/28677


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python kombu 5.3.4 -> 5.3.7 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28675: chore(料): bump python kombu 
5.3.4 -> 5.3.7
URL: https://github.com/apache/superset/pull/28675


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python cffi 1.15.1 -> 1.16.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28676: chore(料): bump python cffi 
1.15.1 -> 1.16.0
URL: https://github.com/apache/superset/pull/28676


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python cffi 1.15.1 -> 1.16.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28676:
URL: https://github.com/apache/superset/pull/28676

   Updates the python "cffi" library version from 1.15.1 to 1.16.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   cffi
 cryptography
   apache-superset
   paramiko
 apache-superset
 sshtunnel
   apache-superset
   pyopenssl
 shillelagh
 pynacl
   paramiko
 apache-superset
 sshtunnel
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python kombu 5.3.4 -> 5.3.7 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28675:
URL: https://github.com/apache/superset/pull/28675

   Updates the python "kombu" library version from 5.3.4 to 5.3.7. 
   
   Generated by @supersetbot 料
   
   :
   ```
   kombu
 celery
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python matplotlib 3.7.1 -> 3.9.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28674: chore(料): bump python 
matplotlib 3.7.1 -> 3.9.0
URL: https://github.com/apache/superset/pull/28674


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python matplotlib 3.7.1 -> 3.9.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28674:
URL: https://github.com/apache/superset/pull/28674

   Updates the python "matplotlib" library version from 3.7.1 to 3.9.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   matplotlib
 prophet
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python urllib3 1.26.18 -> 2.2.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28673:
URL: https://github.com/apache/superset/pull/28673

   Updates the python "urllib3" library version from 1.26.18 to 2.2.1. 
   
   Generated by @supersetbot 料
   
   :
   ```
   urllib3
 -r requirements/base.in
 requests
   requests-cache
 shillelagh
   shillelagh
 requests-cache
   shillelagh
 selenium
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python urllib3 1.26.18 -> 2.2.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28673: chore(料): bump python urllib3 
1.26.18 -> 2.2.1
URL: https://github.com/apache/superset/pull/28673


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pyproject-api 1.5.2 -> 1.6.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28672: chore(料): bump python 
pyproject-api 1.5.2 -> 1.6.1
URL: https://github.com/apache/superset/pull/28672


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python pyproject-api 1.5.2 -> 1.6.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28672:
URL: https://github.com/apache/superset/pull/28672

   Updates the python "pyproject-api" library version from 1.5.2 to 1.6.1. 
   
   Generated by @supersetbot 料
   
   :
   ```
   pyproject-api
 tox
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python click-repl 0.2.0 -> 0.3.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28671: chore(料): bump python 
click-repl 0.2.0 -> 0.3.0
URL: https://github.com/apache/superset/pull/28671


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python click-repl 0.2.0 -> 0.3.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28671:
URL: https://github.com/apache/superset/pull/28671

   Updates the python "click-repl" library version from 0.2.0 to 0.3.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   click-repl
 celery
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python flask-limiter 3.3.1 -> 3.7.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28670: chore(料): bump python 
flask-limiter 3.3.1 -> 3.7.0
URL: https://github.com/apache/superset/pull/28670


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python flask-limiter 3.3.1 -> 3.7.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28670:
URL: https://github.com/apache/superset/pull/28670

   Updates the python "flask-limiter" library version from 3.3.1 to 3.7.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   flask-limiter
 flask-appbuilder
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python ruff 0.4.4 -> 0.4.5 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28669:
URL: https://github.com/apache/superset/pull/28669

   Updates the python "ruff" library version from 0.4.4 to 0.4.5. 
   
   Generated by @supersetbot 料
   
   :
   ```
   ruff
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python ruff 0.4.4 -> 0.4.5 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28669: chore(料): bump python ruff 
0.4.4 -> 0.4.5
URL: https://github.com/apache/superset/pull/28669


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python babel 2.9.1 -> 2.15.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28668:
URL: https://github.com/apache/superset/pull/28668

   Updates the python "babel" library version from 2.9.1 to 2.15.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   babel
 flask-babel
   flask-appbuilder
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python babel 2.9.1 -> 2.15.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28668: chore(料): bump python babel 
2.9.1 -> 2.15.0
URL: https://github.com/apache/superset/pull/28668


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python freezegun 1.4.0 -> 1.5.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28666:
URL: https://github.com/apache/superset/pull/28666

   Updates the python "freezegun" library version from 1.4.0 to 1.5.1. 
   
   Generated by @supersetbot 料
   
   :
   ```
   freezegun
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python certifi 2023.7.22 -> 2024.2.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28667:
URL: https://github.com/apache/superset/pull/28667

   Updates the python "certifi" library version from 2023.7.22 to 2024.2.2. 
   
   Generated by @supersetbot 料
   
   :
   ```
   certifi
 requests
   requests-cache
 shillelagh
   shillelagh
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python certifi 2023.7.22 -> 2024.2.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28667: chore(料): bump python certifi 
2023.7.22 -> 2024.2.2
URL: https://github.com/apache/superset/pull/28667


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python freezegun 1.4.0 -> 1.5.1 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28666: chore(料): bump python freezegun 
1.4.0 -> 1.5.1
URL: https://github.com/apache/superset/pull/28666


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python traitlets 5.9.0 -> 5.14.3 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28665: chore(料): bump python traitlets 
5.9.0 -> 5.14.3
URL: https://github.com/apache/superset/pull/28665


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python traitlets 5.9.0 -> 5.14.3 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28665:
URL: https://github.com/apache/superset/pull/28665

   Updates the python "traitlets" library version from 5.9.0 to 5.14.3. 
   
   Generated by @supersetbot 料
   
   :
   ```
   traitlets
 ipython
   apache-superset
 matplotlib-inline
   ipython
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python platformdirs 3.8.1 -> 4.2.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28664:
URL: https://github.com/apache/superset/pull/28664

   Updates the python "platformdirs" library version from 3.8.1 to 4.2.2. 
   
   Generated by @supersetbot 料
   
   :
   ```
   platformdirs
 requests-cache
   shillelagh
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python platformdirs 3.8.1 -> 4.2.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28664: chore(料): bump python 
platformdirs 3.8.1 -> 4.2.2
URL: https://github.com/apache/superset/pull/28664


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python googleapis-common-protos 1.59.0 -> 1.63.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28663:
URL: https://github.com/apache/superset/pull/28663

   Updates the python "googleapis-common-protos" library version from 1.59.0 to 
1.63.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   googleapis-common-protos
 google-api-core
 grpcio-status
   google-api-core
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python googleapis-common-protos 1.59.0 -> 1.63.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28663: chore(料): bump python 
googleapis-common-protos 1.59.0 -> 1.63.0
URL: https://github.com/apache/superset/pull/28663


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python pexpect 4.8.0 -> 4.9.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28662:
URL: https://github.com/apache/superset/pull/28662

   Updates the python "pexpect" library version from 4.8.0 to 4.9.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   pexpect
 ipython
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pexpect 4.8.0 -> 4.9.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28662: chore(料): bump python pexpect 
4.8.0 -> 4.9.0
URL: https://github.com/apache/superset/pull/28662


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python stack-data 0.6.2 -> 0.6.3 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28661: chore(料): bump python 
stack-data 0.6.2 -> 0.6.3
URL: https://github.com/apache/superset/pull/28661


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python stack-data 0.6.2 -> 0.6.3 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28661:
URL: https://github.com/apache/superset/pull/28661

   Updates the python "stack-data" library version from 0.6.2 to 0.6.3. 
   
   Generated by @supersetbot 料
   
   :
   ```
   stack-data
 ipython
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python wheel 0.40.0 -> 0.43.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28660: chore(料): bump python wheel 
0.40.0 -> 0.43.0
URL: https://github.com/apache/superset/pull/28660


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python wheel 0.40.0 -> 0.43.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28660:
URL: https://github.com/apache/superset/pull/28660

   Updates the python "wheel" library version from 0.40.0 to 0.43.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   wheel
 pip-tools
   pip-compile-multi
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python typing-extensions 4.11.0 -> 4.12.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28659: chore(料): bump python 
typing-extensions 4.11.0 -> 4.12.0
URL: https://github.com/apache/superset/pull/28659


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python typing-extensions 4.11.0 -> 4.12.0 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28659:
URL: https://github.com/apache/superset/pull/28659

   Updates the python "typing-extensions" library version from 4.11.0 to 
4.12.0. 
   
   Generated by @supersetbot 料
   
   :
   ```
   typing-extensions
 alembic
   flask-migrate
 apache-superset
 apache-superset
 cattrs
   requests-cache
 shillelagh
 flask-limiter
   flask-appbuilder
 apache-superset
 limits
   flask-limiter
 flask-appbuilder
   apache-superset
 shillelagh
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python cattrs 23.2.1 -> 23.2.3 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28658: chore(料): bump python cattrs 
23.2.1 -> 23.2.3
URL: https://github.com/apache/superset/pull/28658


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python cattrs 23.2.1 -> 23.2.3 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28658:
URL: https://github.com/apache/superset/pull/28658

   Updates the python "cattrs" library version from 23.2.1 to 23.2.3. 
   
   Generated by @supersetbot 料
   
   :
   ```
   cattrs
 requests-cache
   shillelagh
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python bottleneck 1.3.7 -> 1.3.8 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28657: chore(料): bump python 
bottleneck 1.3.7 -> 1.3.8
URL: https://github.com/apache/superset/pull/28657


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python bottleneck 1.3.7 -> 1.3.8 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28657:
URL: https://github.com/apache/superset/pull/28657

   Updates the python "bottleneck" library version from 1.3.7 to 1.3.8. 
   
   Generated by @supersetbot 料
   
   :
   ```
   bottleneck
 pandas
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python virtualenv 20.23.1 -> 20.26.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28656: chore(料): bump python 
virtualenv 20.23.1 -> 20.26.2
URL: https://github.com/apache/superset/pull/28656


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python virtualenv 20.23.1 -> 20.26.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28656:
URL: https://github.com/apache/superset/pull/28656

   Updates the python "virtualenv" library version from 20.23.1 to 20.26.2. 
   
   Generated by @supersetbot 料
   
   :
   ```
   virtualenv
 pre-commit
   apache-superset
 tox
   apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



[PR] chore(料): bump python marshmallow 3.19.0 -> 3.21.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] opened a new pull request, #28655:
URL: https://github.com/apache/superset/pull/28655

   Updates the python "marshmallow" library version from 3.19.0 to 3.21.2. 
   
   Generated by @supersetbot 料
   
   :
   ```
   marshmallow
 flask-appbuilder
   apache-superset
 marshmallow-sqlalchemy
   flask-appbuilder
 apache-superset
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python marshmallow 3.19.0 -> 3.21.2 [superset]

2024-05-23 Thread via GitHub


github-actions[bot] closed pull request #28655: chore(料): bump python 
marshmallow 3.19.0 -> 3.21.2
URL: https://github.com/apache/superset/pull/28655


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python jsonlines 3.1.0 -> 4.0.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28527:
URL: https://github.com/apache/superset/pull/28527


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python flask-babel 1.0.0 -> 2.0.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28576:
URL: https://github.com/apache/superset/pull/28576


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python tqdm 4.65.0 -> 4.66.4 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28577:
URL: https://github.com/apache/superset/pull/28577


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python parso 0.8.3 -> 0.8.4 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28578:
URL: https://github.com/apache/superset/pull/28578


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python tzdata 2023.3 -> 2024.1 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28579:
URL: https://github.com/apache/superset/pull/28579


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python apsw 3.42.0.1 -> 3.45.3.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28582:
URL: https://github.com/apache/superset/pull/28582


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python ijson 3.2.0.post0 -> 3.2.3 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28581:
URL: https://github.com/apache/superset/pull/28581


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python distlib 0.3.6 -> 0.3.8 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28583:
URL: https://github.com/apache/superset/pull/28583


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pycparser 2.20 -> 2.22 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28585:
URL: https://github.com/apache/superset/pull/28585


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python idna 3.2 -> 3.7 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28589:
URL: https://github.com/apache/superset/pull/28589


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pre-commit 3.7.0 -> 3.7.1 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28586:
URL: https://github.com/apache/superset/pull/28586


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python sqlalchemy-bigquery 1.10.0 -> 1.11.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28587:
URL: https://github.com/apache/superset/pull/28587


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python google-resumable-media 2.5.0 -> 2.7.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28588:
URL: https://github.com/apache/superset/pull/28588


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python zipp 3.18.1 -> 3.18.2 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28591:
URL: https://github.com/apache/superset/pull/28591


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pip-tools 7.3.0 -> 7.4.1 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28593:
URL: https://github.com/apache/superset/pull/28593


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python ruff 0.4.0 -> 0.4.4 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28584:
URL: https://github.com/apache/superset/pull/28584


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python tomlkit 0.11.8 -> 0.12.5 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28540:
URL: https://github.com/apache/superset/pull/28540


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python db-dtypes 1.1.1 -> 1.2.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch merged PR #28541:
URL: https://github.com/apache/superset/pull/28541


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pip-tools 7.3.0 -> 7.4.1 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28593: chore(料): bump python pip-tools 7.3.0 
-> 7.4.1
URL: https://github.com/apache/superset/pull/28593


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python zipp 3.18.1 -> 3.18.2 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28591: chore(料): bump python zipp 3.18.1 -> 
3.18.2
URL: https://github.com/apache/superset/pull/28591


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python bcrypt 4.0.1 -> 4.1.3 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28590: chore(料): bump python bcrypt 4.0.1 -> 
4.1.3
URL: https://github.com/apache/superset/pull/28590


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python google-resumable-media 2.5.0 -> 2.7.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28588: chore(料): bump python 
google-resumable-media 2.5.0 -> 2.7.0
URL: https://github.com/apache/superset/pull/28588


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python idna 3.2 -> 3.7 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28589: chore(料): bump python idna 3.2 -> 3.7
URL: https://github.com/apache/superset/pull/28589


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pycparser 2.20 -> 2.22 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28585: chore(料): bump python pycparser 2.20 
-> 2.22
URL: https://github.com/apache/superset/pull/28585


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python sqlalchemy-bigquery 1.10.0 -> 1.11.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28587: chore(料): bump python 
sqlalchemy-bigquery 1.10.0 -> 1.11.0
URL: https://github.com/apache/superset/pull/28587


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python pre-commit 3.7.0 -> 3.7.1 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28586: chore(料): bump python pre-commit 3.7.0 
-> 3.7.1
URL: https://github.com/apache/superset/pull/28586


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python distlib 0.3.6 -> 0.3.8 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28583: chore(料): bump python distlib 0.3.6 -> 
0.3.8
URL: https://github.com/apache/superset/pull/28583


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python ruff 0.4.0 -> 0.4.4 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28584: chore(料): bump python ruff 0.4.0 -> 
0.4.4
URL: https://github.com/apache/superset/pull/28584


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python ijson 3.2.0.post0 -> 3.2.3 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28581: chore(料): bump python ijson 
3.2.0.post0 -> 3.2.3
URL: https://github.com/apache/superset/pull/28581


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python apsw 3.42.0.1 -> 3.45.3.0 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28582: chore(料): bump python apsw 3.42.0.1 -> 
3.45.3.0
URL: https://github.com/apache/superset/pull/28582


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python tzdata 2023.3 -> 2024.1 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28579: chore(料): bump python tzdata 2023.3 -> 
2024.1
URL: https://github.com/apache/superset/pull/28579


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python deprecated 1.2.13 -> 1.2.14 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28580: chore(料): bump python deprecated 
1.2.13 -> 1.2.14
URL: https://github.com/apache/superset/pull/28580


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python parso 0.8.3 -> 0.8.4 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28578: chore(料): bump python parso 0.8.3 -> 
0.8.4
URL: https://github.com/apache/superset/pull/28578


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



Re: [PR] chore(料): bump python tqdm 4.65.0 -> 4.66.4 [superset]

2024-05-23 Thread via GitHub


mistercrunch closed pull request #28577: chore(料): bump python tqdm 4.65.0 -> 
4.66.4
URL: https://github.com/apache/superset/pull/28577


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org



  1   2   >