[PR] Add a containerized mode to the ECM service [linkis]
sjgllgh opened a new pull request, #5201: URL: https://github.com/apache/linkis/pull/5201 ### What is the purpose of the change Add a containerized mode to the ECM service, which allows assigning specific IPs and ports for communication with the outside world to particular engines in this mode. For instance, a Spark engine requires at least two ports: spark.driver.port and spark.driver.blockManager.port. ### Related issues/PRs Related issues: #5199 ### Checklist - [x] I have read the [Contributing Guidelines on pull requests](https://github.com/facebook/docusaurus/blob/main/CONTRIBUTING.md#pull-requests). - [x] I have explained the need for this PR and the problem it solves - [x] I have explained the changes or the new features added to this PR - [ ] I have added tests corresponding to this change - [ ] I have updated the documentation to reflect this change - [x] I have verified that this change is backward compatible (If not, please discuss on the [Linkis mailing list](https://linkis.apache.org/community/how-to-subscribe) first) - [ ] **If this is a code change**: I have written unit tests to fully verify the new behavior. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][ECM] ECM容器化后支持spark引擎driver端与集群之间的通信 [linkis]
peacewong commented on issue #5199: URL: https://github.com/apache/linkis/issues/5199#issuecomment-2469542728 Good features -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][spark] spark引擎增加对sparkmeasure的支持 [linkis]
peacewong commented on issue #5200: URL: https://github.com/apache/linkis/issues/5200#issuecomment-2469542913 Good features -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Add a containerized mode to the ECM service [linkis]
sjgllgh commented on code in PR #5201: URL: https://github.com/apache/linkis/pull/5201#discussion_r184949 ## .github/workflows/integration-test.yml: ## @@ -171,10 +171,13 @@ jobs: # Execute test by linkis-cli POD_NAME=`kubectl get pods -n linkis -l app.kubernetes.io/instance=linkis-demo-mg-gateway -o jsonpath='{.items[0].metadata.name}'` kubectl exec -it -n linkis ${POD_NAME} -- bash -c " \ - sh /opt/linkis/bin/linkis-cli -engineType shell-1 -codeType shell -code \"pwd\" "; - - kubectl exec -it -n linkis ${POD_NAME} -- bash -c " \ - sh /opt/linkis/bin/linkis-cli -engineType python-python2 -codeType python -code 'print(\"hello\")' " + sh /opt/linkis/bin/linkis-cli --async true -engineType shell-1 -codeType shell -code \"pwd\" "; Review Comment: I have rolled back this part of the code. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump org.apache.kafka:kafka-clients from 2.7.2 to 3.7.1 in /linkis-public-enhancements/linkis-datasource/linkis-datasource-manager/service/kafka [linkis]
dependabot[bot] opened a new pull request, #5203: URL: https://github.com/apache/linkis/pull/5203 Bumps org.apache.kafka:kafka-clients from 2.7.2 to 3.7.1. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts). -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Add a containerized mode to the ECM service [linkis]
peacewong commented on code in PR #5201: URL: https://github.com/apache/linkis/pull/5201#discussion_r1848190834 ## .github/workflows/integration-test.yml: ## @@ -171,10 +171,13 @@ jobs: # Execute test by linkis-cli POD_NAME=`kubectl get pods -n linkis -l app.kubernetes.io/instance=linkis-demo-mg-gateway -o jsonpath='{.items[0].metadata.name}'` kubectl exec -it -n linkis ${POD_NAME} -- bash -c " \ - sh /opt/linkis/bin/linkis-cli -engineType shell-1 -codeType shell -code \"pwd\" "; - - kubectl exec -it -n linkis ${POD_NAME} -- bash -c " \ - sh /opt/linkis/bin/linkis-cli -engineType python-python2 -codeType python -code 'print(\"hello\")' " + sh /opt/linkis/bin/linkis-cli --async true -engineType shell-1 -codeType shell -code \"pwd\" "; Review Comment: Asynchronous cannot be used and the task needs to be successful. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Add a containerized mode to the ECM service [linkis]
sjgllgh commented on PR #5201: URL: https://github.com/apache/linkis/pull/5201#issuecomment-2478446997 Why did my integration test fail when tested with linkis-cli? How can I check the failure logs? I have executed the integration test in my local environment and it passed. The specific execution command is as follows: ` 1. mvn install -Pdocker -Dmysql.connector.scope=compile -Dmaven.javadoc.skip=true -Dmaven.test.skip=true -Dlinkis.build.ldh=true 2. sh ./linkis-dist/helm/scripts/create-kind-cluster.sh 3. sh ./linkis-dist/helm/scripts/install-mysql.sh false 4. sh ./linkis-dist/helm/scripts/install-ldh.sh true 5. sh ./linkis-dist/helm/scripts/install-charts-with-ldh.sh linkis linkis-demo true 6. sh ./linkis-dist/helm/scripts/remote-proxy.sh start 7. sh scripts/login-pod.sh mg-gateway - sh /opt/linkis/bin/linkis-cli -engineType shell-1 -codeType shell -code "pwd" ` -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Add a containerized mode to the ECM service [linkis]
peacewong commented on code in PR #5201: URL: https://github.com/apache/linkis/pull/5201#discussion_r1841533763 ## linkis-engineconn-plugins/spark/src/main/scala/org/apache/linkis/engineplugin/spark/factory/SparkEngineConnFactory.scala: ## @@ -137,6 +137,17 @@ class SparkEngineConnFactory extends MultiExecutorEngineConnFactory with Logging sparkConfig.setQueue(LINKIS_QUEUE_NAME.getValue(options)) sparkConfig.setPyFiles(SPARK_PYTHON_FILES.getValue(options)) +val conf = new util.HashMap[String, String]() +addSparkConf(conf, SPARK_DRIVER_HOST.key, SPARK_DRIVER_HOST.getValue(options)) +addSparkConf(conf, SPARK_DRIVER_PORT.key, SPARK_DRIVER_PORT.getValue(options)) +addSparkConf(conf, SPARK_DRIVER_BIND_ADDRESS.key, SPARK_DRIVER_BIND_ADDRESS.getValue(options)) +addSparkConf( + conf, + SPARK_DRIVER_BLOCK_MANAGER_PORT.key, + SPARK_DRIVER_BLOCK_MANAGER_PORT.getValue(options) +) +sparkConfig.setConf(conf) Review Comment: This line needs to delete? -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Add a containerized mode to the ECM service [linkis]
peacewong merged PR #5201: URL: https://github.com/apache/linkis/pull/5201 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Fix linkis storage ss3 and oss [linkis]
sjgllgh commented on PR #5204: URL: https://github.com/apache/linkis/pull/5204#issuecomment-258542 1. org.apache.linkis.entrance.utils.CommonLogPathUtils.getRootFs Need to increase support for other file systems 2. org.apache.linkis.governance.common.utils.getResultParentPath The resPrefix should be retrieved from GovernanceCommonConf.RESULT_SET_STORE_PATH. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] feat: add support for sparkmeasure [linkis]
sjgllgh opened a new pull request, #5202: URL: https://github.com/apache/linkis/pull/5202 ### What is the purpose of the change Add support for SparkMeasure to the Spark engine for better monitoring of Spark's performance. ### Related issues/PRs Related issues: #5200 ### How to use 1. Here is an example of submitting parameters using RESTful API, with the specific parameters listed below: `{ "executionContent": { "code": "select * from test1.test1", "runType": "sql" }, "labels": { "engineType": "spark-3.2.1", "userCreator": "zhangyuyao-IDE" }, "params": { "configuration": { "runtime": { "linkis.sparkmeasure.aggregate.type": "stage" }, "startup": { "linkis.sparkmeasure.flight.recorder.type": "task" } } } }` 2. It is only valid for some DQLs, such as SELECT, INSERT, and CREATE AS SELECT. 3. Indicators can be categorized into aggregate indicators and detailed indicators, and each type of indicator can further be divided into two sub-categories: stage and task. 4. For aggregate indicators (using the parameter: linkis.sparkmeasure.aggregate.type), each eligible SQL query will have a separate file output. 5. For detailed indicators (using the parameter: linkis.sparkmeasure.flight.recorder.type), an engine will only output one file, and the file will be generated when the engine is shut down. It is recommended to only execute one SQL statement per engine when using this feature. 6. Due to the reuse mechanism of the Linkis engine, using linkis.sparkmeasure.flight.recorder.type does not necessarily result in the creation of a new engine. If an existing engine is reused, it may lead to no indicator file being output. 7. To ensure that the file is output to the correct path, you should add the following parameter to the Spark engine: linkis.sparkmeasure.output.prefix. 8. Currently, support is provided for writing files to both local and HDFS storage. 9. For a detailed introduction to sparkmeasure, please refer to [https://github.com/LucaCanali/sparkMeasure](SparkMeasure) ### Note 1. The files generated by SparkMeasure Flight Recorder can be relatively large. ### Checklist - [x] I have read the [Contributing Guidelines on pull requests](https://github.com/facebook/docusaurus/blob/main/CONTRIBUTING.md#pull-requests). - [x] I have explained the need for this PR and the problem it solves - [x] I have explained the changes or the new features added to this PR - [ ] I have added tests corresponding to this change - [ ] I have updated the documentation to reflect this change - [x] I have verified that this change is backward compatible (If not, please discuss on the [Linkis mailing list](https://linkis.apache.org/community/how-to-subscribe) first) - [ ] **If this is a code change**: I have written unit tests to fully verify the new behavior. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Add a containerized mode to the ECM service [linkis]
sjgllgh commented on code in PR #5201: URL: https://github.com/apache/linkis/pull/5201#discussion_r1841658962 ## linkis-engineconn-plugins/spark/src/main/scala/org/apache/linkis/engineplugin/spark/factory/SparkEngineConnFactory.scala: ## @@ -137,6 +137,17 @@ class SparkEngineConnFactory extends MultiExecutorEngineConnFactory with Logging sparkConfig.setQueue(LINKIS_QUEUE_NAME.getValue(options)) sparkConfig.setPyFiles(SPARK_PYTHON_FILES.getValue(options)) +val conf = new util.HashMap[String, String]() +addSparkConf(conf, SPARK_DRIVER_HOST.key, SPARK_DRIVER_HOST.getValue(options)) +addSparkConf(conf, SPARK_DRIVER_PORT.key, SPARK_DRIVER_PORT.getValue(options)) +addSparkConf(conf, SPARK_DRIVER_BIND_ADDRESS.key, SPARK_DRIVER_BIND_ADDRESS.getValue(options)) +addSparkConf( + conf, + SPARK_DRIVER_BLOCK_MANAGER_PORT.key, + SPARK_DRIVER_BLOCK_MANAGER_PORT.getValue(options) +) +sparkConfig.setConf(conf) Review Comment: This line is necessary because the sparkConf object does not have a directly available method to set parameters such as spark.driver.port. Instead, these parameters need to be assigned values through sparkConf.setConf -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] feat: add support for sparkmeasure [linkis]
peacewong merged PR #5202: URL: https://github.com/apache/linkis/pull/5202 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Fix linkis storage ss3 and oss [linkis]
peacewong opened a new pull request, #5204: URL: https://github.com/apache/linkis/pull/5204 Fix linkis storage ss3 and oss -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vue-i18n from 9.4.1 to 9.14.2 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5206: URL: https://github.com/apache/linkis/pull/5206 Bumps [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) from 9.4.1 to 9.14.2. Release notes Sourced from https://github.com/intlify/vue-i18n/releases";>vue-i18n's releases. v9.14.2 What's Changed 🔒 Security Fixes fix: XSS vulnerability with prototype pollution on AST: https://github.com/intlify/vue-i18n/security/advisories/GHSA-9r9m-ffp6-9x4v";>https://github.com/intlify/vue-i18n/security/advisories/GHSA-9r9m-ffp6-9x4v fix: prototype pollusion on deepCopy: https://github.com/intlify/vue-i18n/security/advisories/GHSA-hjwq-mjwj-4x6c";>https://github.com/intlify/vue-i18n/security/advisories/GHSA-hjwq-mjwj-4x6c Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.14.1...v9.14.2";>https://github.com/intlify/vue-i18n/compare/v9.14.1...v9.14.2 v9.14.1 What's Changed 🐛 Bug Fixes fix: messages deepCopy mutates src arguments by https://github.com/BobbieGoede";>@BobbieGoede in https://redirect.github.com/intlify/vue-i18n/pull/1975";>intlify/vue-i18n#1975 Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.14.0...v9.14.1";>https://github.com/intlify/vue-i18n/compare/v9.14.0...v9.14.1 v9.14.0 What's Changed ⚡ Improvement Features fix: vue-i18n type definition for vue package by https://github.com/BobbieGoede";>@BobbieGoede in https://redirect.github.com/intlify/vue-i18n/pull/1919";>intlify/vue-i18n#1919 Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.13.1...v9.14.0";>https://github.com/intlify/vue-i18n/compare/v9.13.1...v9.14.0 v9.13.1 What's Changed 🐛 Bug Fixes fix(message-compiler): cannot resolve none-identifier characters at linked key by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n-next/pull/1813";>intlify/vue-i18n-next#1813 Full Changelog: https://github.com/intlify/vue-i18n-next/compare/v9.13.0...v9.13.1";>https://github.com/intlify/vue-i18n-next/compare/v9.13.0...v9.13.1 v9.13.0 What's Changed ⚠️ Deprecated Features fix: EOL announcement warning for vue-i18n-bridge by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n-next/pull/1800";>intlify/vue-i18n-next#1800 ⚡ Improvement Features ... (truncated) Changelog Sourced from https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md";>vue-i18n's changelog. v11.0.0-beta.2 (2024-11-28T07:17:09Z) This changelog is generated by https://github.com/intlify/vue-i18n/releases/tag/v11.0.0-beta.2";>GitHub Releases What's Changed 🔒 Security Fixes fix: security vulnerability fix porting by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2034";>intlify/vue-i18n#2034 📝️ Documentations docs: fix wrong plural example by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2033";>intlify/vue-i18n#2033 Full Changelog: https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.1...v11.0.0-beta.2";>https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.1...v11.0.0-beta.2 v11.0.0-beta.1 (2024-11-17T14:18:05Z) This changelog is generated by https://github.com/intlify/vue-i18n/releases/tag/v11.0.0-beta.1";>GitHub Releases What's Changed 💥 Breaking Changes breaking: drop $tc and tc by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2017";>intlify/vue-i18n#2017 Full Changelog: https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.0...v11.0.0-beta.1";>https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.0...v11.0.0-beta.1 v11.0.0-beta.0 (2024-11-14T15:42:34Z) This changelog is generated by https://github.com/intlify/vue-i18n/releases/tag/v11.0.0-beta.0";>GitHub Releases What's Changed 💥 Breaking Changes feat!: deprecate Legacy API mode by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2016";>intlify/vue-i18n#2016 ⚡ Improvement Features fix: tm function should accept DefineLocaleMessage key type by https://github.com/BobbieGoede";>@BobbieGoede in https://redirect.github.com/intlify/vue-i18n/pull/2014";>intlify/vue-i18n#2014 📝️ Documentations ... (truncated) Commits https://github.com/intlify/vue-i18n/commit/5448139375d123c90019f372404de6138ff6b588";>5448139 release: v9.14.2 https://github.com/intlify/vue-i18n/commit/af67265181fa776dab006afbab85de6a47a34d66";>af67265 release: v9.14.1 https://github.com/intlify/vue-i18n/commit/8e9f6d5a6bb828708c5d8d059010251b51f5c7d2";>8e9f6d5 release: v9.14.0 https://github.com/intlify/vue-i18n/commit/b07a9a49c3a45a7c284763477b4232c3c3693711";>b07a9a4 fix: vue-i18n type definition for vue pa
[PR] Bump @intlify/core-base and vue-i18n in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5205: URL: https://github.com/apache/linkis/pull/5205 Bumps [@intlify/core-base](https://github.com/intlify/vue-i18n/tree/HEAD/packages/core) to 9.14.2 and updates ancestor dependency [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n). These dependencies need to be updated together. Updates `@intlify/core-base` from 9.4.1 to 9.14.2 Release notes Sourced from https://github.com/intlify/vue-i18n/releases";>@intlify/core-base's releases. v9.14.2 What's Changed 🔒 Security Fixes fix: XSS vulnerability with prototype pollution on AST: https://github.com/intlify/vue-i18n/security/advisories/GHSA-9r9m-ffp6-9x4v";>https://github.com/intlify/vue-i18n/security/advisories/GHSA-9r9m-ffp6-9x4v fix: prototype pollusion on deepCopy: https://github.com/intlify/vue-i18n/security/advisories/GHSA-hjwq-mjwj-4x6c";>https://github.com/intlify/vue-i18n/security/advisories/GHSA-hjwq-mjwj-4x6c Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.14.1...v9.14.2";>https://github.com/intlify/vue-i18n/compare/v9.14.1...v9.14.2 v9.14.1 What's Changed 🐛 Bug Fixes fix: messages deepCopy mutates src arguments by https://github.com/BobbieGoede";>@BobbieGoede in https://redirect.github.com/intlify/vue-i18n/pull/1975";>intlify/vue-i18n#1975 Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.14.0...v9.14.1";>https://github.com/intlify/vue-i18n/compare/v9.14.0...v9.14.1 v9.14.0 What's Changed ⚡ Improvement Features fix: vue-i18n type definition for vue package by https://github.com/BobbieGoede";>@BobbieGoede in https://redirect.github.com/intlify/vue-i18n/pull/1919";>intlify/vue-i18n#1919 Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.13.1...v9.14.0";>https://github.com/intlify/vue-i18n/compare/v9.13.1...v9.14.0 v9.13.1 What's Changed 🐛 Bug Fixes fix(message-compiler): cannot resolve none-identifier characters at linked key by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n-next/pull/1813";>intlify/vue-i18n-next#1813 Full Changelog: https://github.com/intlify/vue-i18n-next/compare/v9.13.0...v9.13.1";>https://github.com/intlify/vue-i18n-next/compare/v9.13.0...v9.13.1 v9.13.0 What's Changed ⚠️ Deprecated Features fix: EOL announcement warning for vue-i18n-bridge by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n-next/pull/1800";>intlify/vue-i18n-next#1800 ⚡ Improvement Features ... (truncated) Changelog Sourced from https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md";>@intlify/core-base's changelog. v11.0.0-beta.2 (2024-11-28T07:17:09Z) This changelog is generated by https://github.com/intlify/vue-i18n/releases/tag/v11.0.0-beta.2";>GitHub Releases What's Changed 🔒 Security Fixes fix: security vulnerability fix porting by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2034";>intlify/vue-i18n#2034 📝️ Documentations docs: fix wrong plural example by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2033";>intlify/vue-i18n#2033 Full Changelog: https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.1...v11.0.0-beta.2";>https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.1...v11.0.0-beta.2 v11.0.0-beta.1 (2024-11-17T14:18:05Z) This changelog is generated by https://github.com/intlify/vue-i18n/releases/tag/v11.0.0-beta.1";>GitHub Releases What's Changed 💥 Breaking Changes breaking: drop $tc and tc by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2017";>intlify/vue-i18n#2017 Full Changelog: https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.0...v11.0.0-beta.1";>https://github.com/intlify/vue-i18n/compare/v11.0.0-beta.0...v11.0.0-beta.1 v11.0.0-beta.0 (2024-11-14T15:42:34Z) This changelog is generated by https://github.com/intlify/vue-i18n/releases/tag/v11.0.0-beta.0";>GitHub Releases What's Changed 💥 Breaking Changes feat!: deprecate Legacy API mode by https://github.com/kazupon";>@kazupon in https://redirect.github.com/intlify/vue-i18n/pull/2016";>intlify/vue-i18n#2016 ⚡ Improvement Features fix: tm function should accept DefineLocaleMessage key type by https://github.com/BobbieGoede";>@BobbieGoede in https://redirect.github.com/intlify/vue-i18n/pull/2014";>intlify/vue-i18n#2014 📝️ Documentations ... (truncated) Commits https://github.com/intlify/vue-i18n/commit/5448139375d123c90019f372404de6138ff6b588";>5448139 release: v9.14.2 https://github.com/intlify/vue-i18n/commit/af67265181fa776dab006afbab85de6a47a34d66";>af67265 release: v9.14.1 https://github.com
Re: [PR] Fix linkis storage ss3 and oss [linkis]
sjgllgh merged PR #5204: URL: https://github.com/apache/linkis/pull/5204 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][linkis-storage][linkis-bml-server][linkis-pes-publicservice] Expand the scope of s3's usage in Linkis [linkis]
sjgllgh closed issue #5207: [Feature][linkis-storage][linkis-bml-server][linkis-pes-publicservice] Expand the scope of s3's usage in Linkis URL: https://github.com/apache/linkis/issues/5207 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Enhance the functionality of s3filesystem [linkis]
peacewong merged PR #5208: URL: https://github.com/apache/linkis/pull/5208 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[I] [Feature][linkis-storage][linkis-bml-server][linkis-pes-publicservice] Expand the scope of s3's usage in Linkis [linkis]
sjgllgh opened a new issue, #5207: URL: https://github.com/apache/linkis/issues/5207 ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/linkis/issues) and found no similar feature requirement. ### Problem Description 1. Enhance the functionality of s3filesystem to support multipart uploads. 2. Support the use of s3 storage for BML materials and workspaces. ### Description _No response_ ### Use case _No response_ ### Solutions _No response_ ### Anything else _No response_ ### Are you willing to submit a PR? - [X] Yes I am willing to submit a PR! -- 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: dev-unsubscr...@linkis.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][linkis-storage][linkis-bml-server][linkis-pes-publicservice] Expand the scope of s3's usage in Linkis [linkis]
github-actions[bot] commented on issue #5207: URL: https://github.com/apache/linkis/issues/5207#issuecomment-2516002465 ## :blush: Welcome to the Apache Linkis community!! We are glad that you are contributing by opening this issue. Please make sure to include all the relevant context. We will be here shortly. If you are interested in contributing to our website project, please let us know! You can check out our contributing guide on :point_right: [How to Participate in Project Contribution](https://linkis.apache.org/community/how-to-contribute). ### Community |WeChat Assistant|WeChat Public Account| |-|-| |https://linkis.apache.org/Images/wedatasphere_contact_01.png"; width="128"/>|https://linkis.apache.org/Images/gzh_01.png"; width="128"/>| ### Mailing Lists |Name|Description|Subscribe|Unsubscribe|Archive| |:-|:|:--|:---|:-| | [dev@linkis.apache.org](mailto:dev@linkis.apache.org) | community activity information | [subscribe](mailto:dev-subscr...@linkis.apache.org) | [unsubscribe](mailto:dev-unsubscr...@linkis.apache.org) | [archive](http://mail-archives.apache.org/mod_mbox/linkis-dev) | -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Enhance the functionality of s3filesystem [linkis]
sjgllgh opened a new pull request, #5208: URL: https://github.com/apache/linkis/pull/5208 ### What is the purpose of the change 1. Enhance the functionality of s3filesystem to support multipart uploads. 2. Support the use of s3 storage for BML materials and workspaces. ### Related issues/PRs Related issues: #5207 ### How to use 1. base configuration: #4435 2. workspace: - Set the wds.linkis.filesystem.root.path property in the conf/linkis.properties file. For example: wds.linkis.filesystem.root.path=s3:///workspace. 3. bml: - Configure the linkis.bml.filesystem.type and linkis.bml.prefix properties in the conf/linkis.properties file. - Example -- linkis.bml.filesystem.type=s3 -- linkis.bml.prefix =/bml 4. linkis.bml.filesystem.type Default Value: - The default value for linkis.bml.filesystem.type is determined by the wds.linkis.bml.is.hdfs property. If wds.linkis.bml.is.hdfs is true, the default is hdfs; otherwise, the default is file. 5. linkis.bml.prefix Default Value: - The default value for linkis.bml.prefix is determined based on the wds.linkis.bml.is.hdfs property. If wds.linkis.bml.is.hdfs is true, the default prefix is retrieved from the wds.linkis.bml.hdfs.prefix property; otherwise, the default prefix is retrieved from the wds.linkis.bml.local.prefix property. ### Checklist - [x] I have read the [Contributing Guidelines on pull requests](https://github.com/facebook/docusaurus/blob/main/CONTRIBUTING.md#pull-requests). - [x] I have explained the need for this PR and the problem it solves - [x] I have explained the changes or the new features added to this PR - [ ] I have added tests corresponding to this change - [ ] I have updated the documentation to reflect this change - [x] I have verified that this change is backward compatible (If not, please discuss on the [Linkis mailing list](https://linkis.apache.org/community/how-to-subscribe) first) - [ ] **If this is a code change**: I have written unit tests to fully verify the new behavior. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][linkis-website] Document outline optimization [linkis]
peacewong closed issue #4689: [Feature][linkis-website] Document outline optimization URL: https://github.com/apache/linkis/issues/4689 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Bug] LDH module yarn resourcemanager start failed [linkis]
peacewong closed issue #4604: [Bug] LDH module yarn resourcemanager start failed URL: https://github.com/apache/linkis/issues/4604 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][linkis-dist] Optimize the linkis config file [linkis]
peacewong closed issue #4628: [Feature][linkis-dist] Optimize the linkis config file URL: https://github.com/apache/linkis/issues/4628 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][Module Name] add sys function script [linkis]
peacewong closed issue #4688: [Feature][Module Name] add sys function script URL: https://github.com/apache/linkis/issues/4688 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][linkis-website] default version update for bug report [linkis]
peacewong closed issue #4706: [Feature][linkis-website] default version update for bug report URL: https://github.com/apache/linkis/issues/4706 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Bug] Stream closed whille starting dss-workflow-server dependencing linkis-mybatis [linkis]
peacewong closed issue #4620: [Bug] Stream closed whille starting dss-workflow-server dependencing linkis-mybatis URL: https://github.com/apache/linkis/issues/4620 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Bug] Workflow shell node viewing resource file, path usage error [linkis]
peacewong closed issue #4585: [Bug] Workflow shell node viewing resource file, path usage error URL: https://github.com/apache/linkis/issues/4585 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][CICD]Support git action integtation test [linkis]
peacewong closed issue #4600: [Feature][CICD]Support git action integtation test URL: https://github.com/apache/linkis/issues/4600 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][DataSource] linkis-datasource user permission control [linkis]
peacewong closed issue #4717: [Feature][DataSource] linkis-datasource user permission control URL: https://github.com/apache/linkis/issues/4717 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [WIP][Feature][linkis-website] Looking for bugs on the linkis website [linkis]
peacewong closed issue #4525: [WIP][Feature][linkis-website] Looking for bugs on the linkis website URL: https://github.com/apache/linkis/issues/4525 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Question]Symptom After linkis integrates jdbc, jdbc query errors are reported [linkis]
peacewong closed issue #4551: [Question]Symptom After linkis integrates jdbc, jdbc query errors are reported URL: https://github.com/apache/linkis/issues/4551 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Bug] Jdbc-driver UJESSQLStatement execute not throw SqlException if a database access error occurs [linkis]
peacewong closed issue #4367: [Bug] Jdbc-driver UJESSQLStatement execute not throw SqlException if a database access error occurs URL: https://github.com/apache/linkis/issues/4367 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Bug] resultsetToExcel interface, when the first row of downloaded data is null except the date, the data download error is reported [linkis]
peacewong closed issue #4364: [Bug] resultsetToExcel interface, when the first row of downloaded data is null except the date, the data download error is reported URL: https://github.com/apache/linkis/issues/4364 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] Sonar code detection problem repair [linkis]
peacewong closed issue #4360: Sonar code detection problem repair URL: https://github.com/apache/linkis/issues/4360 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Question]Symptom After linkis integrates jdbc, jdbc query errors are reported [linkis]
ly-yhq commented on issue #4551: URL: https://github.com/apache/linkis/issues/4551#issuecomment-2528021672 这是来自QQ邮箱的假期自动回复邮件。 您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Question]Sqoop use hcatalog executes tip Unable to instantiate org.apache.hive.hcatalog.com mon. $CacheableHiveMetaStoreClient HiveClientCache [linkis]
peacewong closed issue #4549: [Question]Sqoop use hcatalog executes tip Unable to instantiate org.apache.hive.hcatalog.com mon. $CacheableHiveMetaStoreClient HiveClientCache URL: https://github.com/apache/linkis/issues/4549 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 4.5.3 to 4.5.9 in /linkis-web-next [linkis]
SelfImpr001 commented on PR #5217: URL: https://github.com/apache/linkis/pull/5217#issuecomment-2638714657 这是来自QQ邮箱的假期自动回复邮件。 您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 4.5.3 to 4.5.9 in /linkis-web-next [linkis]
hhs1 commented on PR #5217: URL: https://github.com/apache/linkis/pull/5217#issuecomment-2638714779 无法注销账号 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 4.5.3 to 4.5.9 in /linkis-web-next [linkis]
peacewong merged PR #5217: URL: https://github.com/apache/linkis/pull/5217 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump nanoid from 3.3.6 to 3.3.8 in /linkis-web-next [linkis]
peacewong merged PR #5209: URL: https://github.com/apache/linkis/pull/5209 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump com.thoughtworks.xstream:xstream from 1.4.20 to 1.4.21 [linkis]
dependabot[bot] opened a new pull request, #5210: URL: https://github.com/apache/linkis/pull/5210 Bumps [com.thoughtworks.xstream:xstream](https://github.com/x-stream/xstream) from 1.4.20 to 1.4.21. Commits See full diff in https://github.com/x-stream/xstream/commits";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts). -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Preparing to release version 1.7.0. [linkis]
peacewong opened a new pull request, #5211: URL: https://github.com/apache/linkis/pull/5211 Preparing to release version 1.7.0. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Preparing to release version 1.7.0. [linkis]
casionone merged PR #5211: URL: https://github.com/apache/linkis/pull/5211 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump nanoid from 3.3.6 to 3.3.8 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5209: URL: https://github.com/apache/linkis/pull/5209 Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.6 to 3.3.8. Changelog Sourced from https://github.com/ai/nanoid/blob/main/CHANGELOG.md";>nanoid's changelog. 3.3.8 Fixed a way to break Nano ID by passing non-integer size (by https://github.com/myndzi";>@myndzi). 3.3.7 Fixed node16 TypeScript support (by Saadi Myftija). Commits https://github.com/ai/nanoid/commit/3044cd5e73f4cf31795f61f6e6b961c8c0a5c744";>3044cd5 Release 3.3.8 version https://github.com/ai/nanoid/commit/4fe34959c34e5b3573889ed4f24fe91d1d3e7231";>4fe3495 Update size limit https://github.com/ai/nanoid/commit/d643045f40d6dc8afa000a644d857da1436ed08c";>d643045 Fix pool pollution, infinite loop (https://redirect.github.com/ai/nanoid/issues/510";>#510) https://github.com/ai/nanoid/commit/89d82d2ce4b0411e73ac7ccfe57bc03e932416e2";>89d82d2 Release 3.3.7 version https://github.com/ai/nanoid/commit/5022c35acaaedd9da4b56cad37b02bbcb87635e1";>5022c35 Update dual-publish https://github.com/ai/nanoid/commit/3e7a8e557b9d93a582ef2c3bb9f7306fc339ef35";>3e7a8e5 Remove benchmark from CI for v3 https://github.com/ai/nanoid/commit/d3561446aee52fdf38325e1d30c905d989a8ccd2";>d356144 Fix CI for v3 https://github.com/ai/nanoid/commit/37b25dfac2edfd73d7bbc6e4c6067fac8619";>37b25df Move to pnpm 8 See full diff in https://github.com/ai/nanoid/compare/3.3.6...3.3.8";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts). -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump @intlify/core-base and vue-i18n in /linkis-web-next [linkis]
peacewong merged PR #5205: URL: https://github.com/apache/linkis/pull/5205 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][ECM] ECM容器化后支持spark引擎driver端与集群之间的通信 [linkis]
sjgllgh closed issue #5199: [Feature][ECM] ECM容器化后支持spark引擎driver端与集群之间的通信 URL: https://github.com/apache/linkis/issues/5199 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature][spark] spark引擎增加对sparkmeasure的支持 [linkis]
sjgllgh closed issue #5200: [Feature][spark] spark引擎增加对sparkmeasure的支持 URL: https://github.com/apache/linkis/issues/5200 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vue-i18n from 9.4.1 to 9.14.2 in /linkis-web-next [linkis]
peacewong merged PR #5206: URL: https://github.com/apache/linkis/pull/5206 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Optimize monitor module [linkis]
Liboyistu opened a new pull request, #5216: URL: https://github.com/apache/linkis/pull/5216 Optimize monitor module -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[I] [Bug] linkis on k8s is not successful [linkis]
waynecookie opened a new issue, #5215: URL: https://github.com/apache/linkis/issues/5215 ### Search before asking - [x] I searched the [issues](https://github.com/apache/linkis/issues) and found no similar issues. ### Linkis Component linkis-dist ### Steps to reproduce helm install linkis . -n test mg-eureka log ` 11:01:28.506 [qtp733693146-21] INFO org.springframework.cloud.config.client.ConfigServicePropertySourceLocator - Fetching config from server at : http://localhost: 11:01:28.510 [qtp733693146-21] INFO org.springframework.cloud.config.client.ConfigServicePropertySourceLocator - Connect Timeout Exception on Url - http://localhost:. Will be trying the next url if available 11:01:28.510 [qtp733693146-21] WARN org.springframework.cloud.config.client.ConfigServicePropertySourceLocator - Could not locate PropertySource: I/O error on GET request for "http://localhost:/linkis-mg-eureka/eureka": Connection refused (Connection refused); nested exception is java.net.ConnectException: Connection refused (Connection refused) 11:01:29.578 [Eureka-EvictionTimer] INFO com.netflix.eureka.registry.AbstractInstanceRegistry - Running the evict task with compensationTime 0ms ` mg-gateway log ` 10:42:23.427 [DiscoveryClient-InstanceInfoReplicator-0] INFO com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient - Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://linkis-mg-eureka-0.linkis-mg-eureka-headless.test.svc.cluster.local:20303/eureka/}, exception=java.net.UnknownHostException: linkis-mg-eureka-0.linkis-mg-eureka-headless.test.svc.cluster.local stacktrace=com.sun.jersey.api.client.ClientHandlerException: java.net.UnknownHostException: linkis-mg-eureka-0.linkis-mg-eureka-headless.test.svc.cluster.local at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:187) at com.sun.jersey.api.client.filter.GZIPContentEncodingFilter.handle(GZIPContentEncodingFilter.java:123) at com.netflix.discovery.EurekaIdentityHeaderFilter.handle(EurekaIdentityHeaderFilter.java:27) at com.sun.jersey.api.client.Client.handle(Client.java:652) at com.sun.jersey.api.client.WebResource.handle(WebResource.java:682) at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74) at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:570) at com.netflix.discovery.shared.transport.jersey.AbstractJerseyEurekaHttpClient.register(AbstractJerseyEurekaHttpClient.java:57) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$1.execute(EurekaHttpClientDecorator.java:59) at com.netflix.discovery.shared.transport.decorator.MetricsCollectingEurekaHttpClient.execute(MetricsCollectingEurekaHttpClient.java:73) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.register(EurekaHttpClientDecorator.java:56) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$1.execute(EurekaHttpClientDecorator.java:59) at com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient.executeOnNewServer(RedirectingEurekaHttpClient.java:121) at com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient.execute(RedirectingEurekaHttpClient.java:80) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.register(EurekaHttpClientDecorator.java:56) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$1.execute(EurekaHttpClientDecorator.java:59) at com.netflix.discovery.shared.transport.decorator.RetryableEurekaHttpClient.execute(RetryableEurekaHttpClient.java:120) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.register(EurekaHttpClientDecorator.java:56) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$1.execute(EurekaHttpClientDecorator.java:59) at com.netflix.discovery.shared.transport.decorator.SessionedEurekaHttpClient.execute(SessionedEurekaHttpClient.java:77) at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.register(EurekaHttpClientDecorator.java:56) at com.netflix.discovery.DiscoveryClient.register(DiscoveryClient.java:876) at com.netflix.discovery.InstanceInfoReplicator.run(InstanceInfoReplicator.java:121) at com.netflix.discovery.InstanceInfoReplicator$1.run(InstanceInfoReplicator.java:101) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(Sc
Re: [I] [Bug] linkis on k8s is not successful [linkis]
github-actions[bot] commented on issue #5215: URL: https://github.com/apache/linkis/issues/5215#issuecomment-2603781754 ## :blush: Welcome to the Apache Linkis community!! We are glad that you are contributing by opening this issue. Please make sure to include all the relevant context. We will be here shortly. If you are interested in contributing to our website project, please let us know! You can check out our contributing guide on :point_right: [How to Participate in Project Contribution](https://linkis.apache.org/community/how-to-contribute). ### Community |WeChat Assistant|WeChat Public Account| |-|-| |https://linkis.apache.org/Images/wedatasphere_contact_01.png"; width="128"/>|https://linkis.apache.org/Images/gzh_01.png"; width="128"/>| ### Mailing Lists |Name|Description|Subscribe|Unsubscribe|Archive| |:-|:|:--|:---|:-| | [dev@linkis.apache.org](mailto:dev@linkis.apache.org) | community activity information | [subscribe](mailto:dev-subscr...@linkis.apache.org) | [unsubscribe](mailto:dev-unsubscr...@linkis.apache.org) | [archive](http://mail-archives.apache.org/mod_mbox/linkis-dev) | -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vite from 4.5.3 to 4.5.9 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5217: URL: https://github.com/apache/linkis/pull/5217 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.5.3 to 4.5.9. Release notes Sourced from https://github.com/vitejs/vite/releases";>vite's releases. v4.5.9 Please refer to https://github.com/vitejs/vite/blob/v4.5.9/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v4.5.8 Please refer to https://github.com/vitejs/vite/blob/v4.5.8/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v4.5.7 Please refer to https://github.com/vitejs/vite/blob/v4.5.7/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v4.5.6 This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6";>https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details. Please refer to https://github.com/vitejs/vite/blob/v4.5.6/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v4.5.5 Please refer to https://github.com/vitejs/vite/blob/v4.5.5/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v4.5.4 Please refer to https://github.com/vitejs/vite/blob/v4.5.4/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. Changelog Sourced from https://github.com/vitejs/vite/blob/v4.5.9/packages/vite/CHANGELOG.md";>vite's changelog. 4.5.9 (2025-01-21) fix: preview.allowedHosts with specific values was not respected (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19246";>#19246) (https://github.com/vitejs/vite/commit/0bc52e0";>0bc52e0), closes https://redirect.github.com/vitejs/vite/issues/19246";>#19246 fix: allow CORS from loopback addresses by default (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19249";>#19249) (https://github.com/vitejs/vite/commit/8f63cd6";>8f63cd6), closes https://redirect.github.com/vitejs/vite/issues/19249";>#19249 4.5.8 (2025-01-20) fix: try parse server.origin URL (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19241";>#19241) (https://github.com/vitejs/vite/commit/3680bad";>3680bad), closes https://redirect.github.com/vitejs/vite/issues/19241";>#19241 4.5.7 (2025-01-20) fix: crypto.getRandomValues is not available in old Node versions (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19237";>#19237) (https://github.com/vitejs/vite/commit/f4d3c46";>f4d3c46), closes https://redirect.github.com/vitejs/vite/issues/19237";>#19237 4.5.6 (2025-01-20) fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (https://github.com/vitejs/vite/commit/ef1049d";>ef1049d) fix!: default server.cors: false to disallow fetching from untrusted origins (https://github.com/vitejs/vite/commit/07b36d5";>07b36d5) fix: verify token for HMR WebSocket connection (https://github.com/vitejs/vite/commit/c065a77";>c065a77) 4.5.5 (2024-09-16) 4.5.4 (2024-09-16) fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18115";>#18115) (https://github.com/vitejs/vite/commit/e812716";>e812716), closes https://redirect.github.com/vitejs/vite/issues/18115";>#18115 fix: backport https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18112";>#18112, fs raw query (https://github.com/vitejs/vite/commit/b901438";>b901438), closes https://redirect.github.com/vitejs/vite/issues/18112";>#18112 Commits https://github.com/vitejs/vite/commit/edad4d24955ffa9df853c893a9cfcaab8f1db128";>edad4d2 release: v4.5.9 https://github.com/vitejs/vite/commit/8f63cd66a2a46774b4f1a096e43a34b7233ac1ac";>8f63cd6 fix: allow CORS from loopback addresses by default (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19249";>#19249) https://github.com/vitejs/vite/commit/0bc52e019bc573f9b9f14e133883ea2235108dbc";>0bc52e0 fix: preview.allowedHosts with specific values was not respected (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19246";>#19246) https://github.com/vitejs/vite/commit/947f0c197e3c9111da3a87ef7096ba0b5c5a9389";>947f0c1 release: v4.5.8 https://github.com/vitejs/vite/commit/3680bad5b2f2c0551282867a0e4c6b181e181145";>3680bad fix: try parse server.origin URL (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19241";>#19241) https://github.com/vitejs/vite/commit/fe86acba80fc4e369e247eb7e5dec08cebc1d06d";>fe86acb release: v4.5.7 https://github.com/vitejs/vite/commit/f4d3c4645ff1acecb26ba2c98a421d6ed6c99644";>f4d3c46 fix: crypto.getRandomValues is not available in old Node versions (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19237";>#19237) https://github.com/vitejs/vite/commit/9e460f58f91f95972ff9683f664fa4df44b6d2af";>9e460f5 release: v4.5.6 https://github.com/vitejs/vite/commit/ef1049d
[I] [Question] Installing a stand-alone deployment document: An error occurred while performing the shell engine task for validation after installation [linkis]
JediZ90 opened a new issue, #5218: URL: https://github.com/apache/linkis/issues/5218 ### Before asking - [x] I have read the [How to ask for help](https://linkis.apache.org/community/how-to-ask-for-help) (我已阅读[如何寻求帮助](https://linkis.apache.org/zh-CN/community/how-to-ask-for-help)指引文档). ### Your environment - Linkis version used: 1.6.0 ### Describe your questions 执行验证命令,sh bin/linkis-cli -submitUser hadoop -engineType shell-1 -codeType shell -code "whoami" 错误信息如下: [root@bd01 linkis]# sh bin/linkis-cli -submitUser hadoop -engineType shell-1 -codeType shell -code "whoami" =Java Start Command= exec /usr/java/default/bin/java -server -Xms32m -Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/chaos_data/app/linkis/linkis/logs/linkis-cli -XX:ErrorFile=/chaos_data/app/linkis/linkis/logs/linkis-cli/ps_err_pid%p.log -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=80 -XX:+DisableExplicitGC-classpath /chaos_data/app/linkis/linkis/conf/linkis-cli:/chaos_data/app/linkis/linkis/lib/linkis-computation-governance/linkis-client/linkis-cli/*:/chaos_data/app/linkis/linkis/lib/linkis-commons/public-module/*: -Dconf.root=/chaos_data/app/linkis/linkis/conf/linkis-cli -Dconf.file=linkis-cli.properties -Dlog.path=/chaos_data/app/linkis/linkis/logs/linkis-cli -Dlog.file=linkis-client.root.log.20250122144208017324142 org.apache.linkis.cli.application.LinkisClientApplication '-submitUser hadoop -engineType shell-1 -codeType shell -code whoami' [INFO] LogFile path: /chaos_data/app/linkis/linkis/logs/linkis-cli/linkis-client.root.log.20250122144208017324142 [INFO] User does not provide usr-configuration file. Will use default config [INFO] user does not specify proxy-user, will use current submit-user "hadoop" by default. [INFO] connecting to linkis gateway:http://127.0.0.1:9011 JobId:5 TaskId:5 ExecId:exec_id018016linkis-cg-entrancebd01.hw.com:9104LINKISCLI_hadoop_shell_0 [INFO] Job is successfully submitted! 2025-01-22 14:42:09.042 INFO Program is substituting variables for you 2025-01-22 14:42:09.042 INFO Variables substitution ended successfully 2025-01-22 14:42:09.042 INFO You have submitted a new job, script code (after variable substitution) is SCRIPT CODE whoami SCRIPT CODE 2025-01-22 14:42:09.042 WARN The code you submit will not be limited by the limit 2025-01-22 14:42:09.042 INFO Job with jobId : 5 and execID : LINKISCLI_hadoop_shell_0 submitted 2025-01-22 14:42:09.042 INFO Your job is accepted, jobID is LINKISCLI_hadoop_shell_0 and jobReqId is 5 in ServiceInstance(linkis-cg-entrance, bd01.hw.com:9104, 0). Please wait it to be scheduled(您的任务已经提交,进入排队中,如果一直没有更新日志,是任务并发达到了限制,可以进行参数修改) 2025-01-22 14:42:09.042 INFO Your job is Scheduled. Please wait it to run.(您的任务已经调度运行中) 2025-01-22 14:42:09.042 INFO Your job is being scheduled by orchestrator. 2025-01-22 14:42:09.042 INFO Your job is Running now. Please wait it to complete.(您的任务已经在运行中) 2025-01-22 14:42:09.042 INFO JobRequest (5) was submitted to Orchestrator.(您的任务已经提交给Orchestrator进行编排执行) 2025-01-22 14:42:09.042 INFO Background is starting a new engine for you,execId TaskID_5_otJobId_astJob_4_codeExec_4 mark id is mark_4, it may take several seconds, please wait 2025-01-22 14:42:09.042 INFO Request LinkisManager:EngineAskAsyncResponse{id='bd01.hw.com:9101_4', managerInstance=ServiceInstance(linkis-cg-linkismanager, bd01.hw.com:9101, 0)} 2025-01-22 14:42:17.042 INFO Succeed to create new ec : ServiceInstance(linkis-cg-engineconn, bd01.hw.com:38890, 0) 2025-01-22 14:42:17.042 INFO Task submit to ec: ServiceInstance(linkis-cg-engineconn, bd01.hw.com:38890, 0) get engineConnExecId is: 1 bd01.hw.com:38890_0 >> whoami hadoop 2025-01-22 14:45:14.045 INFO Congratulations! Your job : LINKISCLI_hadoop_shell_0 executed with status succeed and 2 results. 2025-01-22 14:45:14.045 INFO Task time point information(任务时间节点信息): [Task creation time(任务创建时间)] :2025-01-22 14:42:09 [Task scheduling time(任务调度时间)]:2025-01-22 14:42:09 [Task start time(任务开始时间)] :2025-01-22 14:42:09 [Task end time(任务结束时间)] :2025-01-22 14:45:14 2025-01-22 14:45:14.045 INFO [Task submit to Orchestrator time]:2025-01-22 14:42:09 [Task request EngineConn time]:2025-01-22 14:42:09 [Task submit to EngineConn time] :2025-01-22 14:42:17 2025-01-22 14:45:14.045 INFO Your task jobId(您的任务) 5 The total time spent is(总耗时时间为): 3.1 m 2025-01-22 14:45:14.045 INFO Congratulations. Your job completed with status Success. execute failed!!! org.apache.linkis.cli.application.exception.LinkisClientExecutionException: EXE0022,Error occured during execution: Get resultSetArray failed. Retry exhausted. tas
Re: [I] [Question] Installing a stand-alone deployment document: An error occurred while performing the shell engine task for validation after installation [linkis]
github-actions[bot] commented on issue #5218: URL: https://github.com/apache/linkis/issues/5218#issuecomment-2606444624 ## :blush: Welcome to the Apache Linkis community!! We are glad that you are contributing by opening this issue. Please make sure to include all the relevant context. We will be here shortly. If you are interested in contributing to our website project, please let us know! You can check out our contributing guide on :point_right: [How to Participate in Project Contribution](https://linkis.apache.org/community/how-to-contribute). ### Community |WeChat Assistant|WeChat Public Account| |-|-| |https://linkis.apache.org/Images/wedatasphere_contact_01.png"; width="128"/>|https://linkis.apache.org/Images/gzh_01.png"; width="128"/>| ### Mailing Lists |Name|Description|Subscribe|Unsubscribe|Archive| |:-|:|:--|:---|:-| | [dev@linkis.apache.org](mailto:dev@linkis.apache.org) | community activity information | [subscribe](mailto:dev-subscr...@linkis.apache.org) | [unsubscribe](mailto:dev-unsubscr...@linkis.apache.org) | [archive](http://mail-archives.apache.org/mod_mbox/linkis-dev) | -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Question] linkis source package failed [linkis]
jackxu2011 commented on issue #4931: URL: https://github.com/apache/linkis/issues/4931#issuecomment-2561528600 > 1. 我使用的是1.6.0的版本,从GITHUB上CLONE下来的,也是报这个错误,折腾了一天没有搞好。 > 2. 我从[https://dlcdn.apache.org/linkis/1.6.0/下载下来的源码,执行编译是正常的。](https://dlcdn.apache.org/linkis/1.6.0/%E4%B8%8B%E8%BD%BD%E4%B8%8B%E6%9D%A5%E7%9A%84%E6%BA%90%E7%A0%81%EF%BC%8C%E6%89%A7%E8%A1%8C%E7%BC%96%E8%AF%91%E6%98%AF%E6%AD%A3%E5%B8%B8%E7%9A%84%E3%80%82) > 3. 什么原因,我目前还不清楚。 如果下载源码正常,clone下来不行。在windows下有可能是git把文件编码转成gbk编码了,可以找一下相关设置 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Question] linkis source package failed [linkis]
daochuanli commented on issue #4931: URL: https://github.com/apache/linkis/issues/4931#issuecomment-2559921369 1. 我使用的是1.6.0的版本,从GITHUB上CLONE下来的,也是报这个错误,折腾了一天没有搞好。 2. 我从https://dlcdn.apache.org/linkis/1.6.0/下载下来的源码,执行编译是正常的。 3. 什么原因,我目前还不清楚。 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Question] linkis source package failed [linkis]
daochuanli commented on issue #4931: URL: https://github.com/apache/linkis/issues/4931#issuecomment-2559925635 1. 我使用的是1.6.0的版本,从GITHUB上CLONE下来的,也是报这个错误,折腾了一天没有搞好。 2. 我从https://dlcdn.apache.org/linkis/1.6.0/下载下来的源码,执行编译是正常的。 3. 什么原因,我目前还不清楚。 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump org.apache.hive:hive-service from 3.1.3 to 4.0.0 [linkis]
dependabot[bot] opened a new pull request, #5212: URL: https://github.com/apache/linkis/pull/5212 Bumps org.apache.hive:hive-service from 3.1.3 to 4.0.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts). -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump com.thoughtworks.xstream:xstream from 1.4.20 to 1.4.21 [linkis]
peacewong merged PR #5210: URL: https://github.com/apache/linkis/pull/5210 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Update NOTICE year [linkis]
peacewong merged PR #5213: URL: https://github.com/apache/linkis/pull/5213 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] support azure [linkis]
v-kkhuang opened a new pull request, #5214: URL: https://github.com/apache/linkis/pull/5214 ### What is the purpose of the change EngineConn-Core defines the the abstractions and interfaces of the EngineConn core functions. The Engine Service in Linkis 0.x is refactored, EngineConn will handle the engine connection and session management. ### Related issues/PRs Related issues: close #590 close #591 Related pr:#591 ### Brief change log - Define the core abstraction and interfaces of the EngineConn Factory; - Define the core abstraction and interfaces of Executor Manager. ### Checklist - [x] I have read the [Contributing Guidelines on pull requests](https://github.com/facebook/docusaurus/blob/main/CONTRIBUTING.md#pull-requests). - [ ] I have explained the need for this PR and the problem it solves - [ ] I have explained the changes or the new features added to this PR - [ ] I have added tests corresponding to this change - [ ] I have updated the documentation to reflect this change - [ ] I have verified that this change is backward compatible (If not, please discuss on the [Linkis mailing list](https://linkis.apache.org/community/how-to-subscribe) first) - [ ] **If this is a code change**: I have written unit tests to fully verify the new behavior. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature] 1.8.0-requirements [linkis]
peacewong commented on issue #5174: URL: https://github.com/apache/linkis/issues/5174#issuecomment-2576879531  -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature] 1.8.0-requirements [linkis]
hhs1 commented on issue #5174: URL: https://github.com/apache/linkis/issues/5174#issuecomment-2576880438 无法注销账号 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Update NOTICE year [linkis]
pjfanning opened a new pull request, #5213: URL: https://github.com/apache/linkis/pull/5213 We should keep the NOTICE up to date -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Fix the problem of Sonar code scanning [linkis]
casionone closed pull request #4369: Fix the problem of Sonar code scanning URL: https://github.com/apache/linkis/pull/4369 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] [WIP]Enable customized and isolated python environment for Pyspark [linkis]
casionone closed pull request #3525: [WIP]Enable customized and isolated python environment for Pyspark URL: https://github.com/apache/linkis/pull/3525 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] [WIP]Enable customized and isolated python environment for Pyspark [linkis]
casionone commented on PR #3525: URL: https://github.com/apache/linkis/pull/3525#issuecomment-2750267039 linkis has support set python version by console manager -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] feat: linkis service distributed deployment. [linkis]
casionone closed pull request #4730: feat: linkis service distributed deployment. URL: https://github.com/apache/linkis/pull/4730 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump @babel/runtime from 7.22.11 to 7.27.0 in /linkis-web-next [linkis]
casionone merged PR #5227: URL: https://github.com/apache/linkis/pull/5227 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vite from 6.2.1 to 6.2.3 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5222: URL: https://github.com/apache/linkis/pull/5222 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.2.1 to 6.2.3. Release notes Sourced from https://github.com/vitejs/vite/releases";>vite's releases. v6.2.3 Please refer to https://github.com/vitejs/vite/blob/v6.2.3/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.2.2 Please refer to https://github.com/vitejs/vite/blob/v6.2.2/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. Changelog Sourced from https://github.com/vitejs/vite/blob/v6.2.3/packages/vite/CHANGELOG.md";>vite's changelog. 6.2.3 (2025-03-24) fix: fs raw query with query separators (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19702";>#19702) (https://github.com/vitejs/vite/commit/f234b5744d8b74c95535a7b82cc88ed2144263c1";>f234b57), closes https://redirect.github.com/vitejs/vite/issues/19702";>#19702 6.2.2 (2025-03-14) fix: await client buildStart on top level buildStart (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19624";>#19624) (https://github.com/vitejs/vite/commit/b31faab2a81b839e4b747baeb9c7a7cbb724f8d2";>b31faab), closes https://redirect.github.com/vitejs/vite/issues/19624";>#19624 fix(css): inline css correctly for double quote use strict (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19590";>#19590) (https://github.com/vitejs/vite/commit/d0aa833296668fc420a27a1ea88ecdbdeacdbce7";>d0aa833), closes https://redirect.github.com/vitejs/vite/issues/19590";>#19590 fix(deps): update all non-major dependencies (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19613";>#19613) (https://github.com/vitejs/vite/commit/363d691b4995d72f26a14eb59ed88a9483b1f931";>363d691), closes https://redirect.github.com/vitejs/vite/issues/19613";>#19613 fix(indexHtml): ensure correct URL when querying module graph (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19601";>#19601) (https://github.com/vitejs/vite/commit/dc5395a27e44066ef7725278c4057d9f1071a53f";>dc5395a), closes https://redirect.github.com/vitejs/vite/issues/19601";>#19601 fix(preview): use preview https config, not server (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19633";>#19633) (https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f1978e";>98b3160), closes https://redirect.github.com/vitejs/vite/issues/19633";>#19633 fix(ssr): use optional chaining to prevent "undefined is not an object" happening in `ssrRewriteStac (https://github.com/vitejs/vite/commit/43097550a1aa8ff633c39fb197b5f9ac1222119b";>4309755), closes https://redirect.github.com/vitejs/vite/issues/19612";>#19612 feat: show friendly error for malformed base (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19616";>#19616) (https://github.com/vitejs/vite/commit/2476391b2854aaa67d0ed317b6d0c462e68028f7";>2476391), closes https://redirect.github.com/vitejs/vite/issues/19616";>#19616 feat(worker): show asset filename conflict warning (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19591";>#19591) (https://github.com/vitejs/vite/commit/367d968fbf584e9f0e17192b816e92e8045c6217";>367d968), closes https://redirect.github.com/vitejs/vite/issues/19591";>#19591 chore: extend commit hash correctly when ambigious with a non-commit object (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19600";>#19600) (https://github.com/vitejs/vite/commit/89a62873243805518b672212db7e317989c5c197";>89a6287), closes https://redirect.github.com/vitejs/vite/issues/19600";>#19600 Commits https://github.com/vitejs/vite/commit/16869d7c9917eb58d9a0101e30064ab65e64fa91";>16869d7 release: v6.2.3 https://github.com/vitejs/vite/commit/f234b5744d8b74c95535a7b82cc88ed2144263c1";>f234b57 fix: fs raw query with query separators (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19702";>#19702) https://github.com/vitejs/vite/commit/b12911edba0cd9edbad170a0940d37bb1e16ef2c";>b12911e release: v6.2.2 https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f1978e";>98b3160 fix(preview): use preview https config, not server (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19633";>#19633) https://github.com/vitejs/vite/commit/b31faab2a81b839e4b747baeb9c7a7cbb724f8d2";>b31faab fix: await client buildStart on top level buildStart (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19624";>#19624) https://github.com/vitejs/vite/commit/dc5395a27e44066ef7725278c4057d9f1071a53f";>dc5395a fix(indexHtml): ensure correct URL when querying module graph (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19601";>#19601) https://github.com/vitejs/vite/commit/2476391b2854aaa67d0ed317b6d0c462e68028f7";>2476391 feat: show friendly error for malformed base (https://github.com
Re: [I] [Bug] upgrade to snakeyaml 2.0 due to cve [linkis]
casionone closed issue #4273: [Bug] upgrade to snakeyaml 2.0 due to cve URL: https://github.com/apache/linkis/issues/4273 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] 1.8.0 feature [linkis]
GLeXios opened a new pull request, #5223: URL: https://github.com/apache/linkis/pull/5223 ### What is the purpose of the change EngineConn-Core defines the the abstractions and interfaces of the EngineConn core functions. The Engine Service in Linkis 0.x is refactored, EngineConn will handle the engine connection and session management. ### Related issues/PRs Related issues: close #590 close #591 Related pr:#591 ### Brief change log - Define the core abstraction and interfaces of the EngineConn Factory; - Define the core abstraction and interfaces of Executor Manager. ### Checklist - [x] I have read the [Contributing Guidelines on pull requests](https://github.com/facebook/docusaurus/blob/main/CONTRIBUTING.md#pull-requests). - [ ] I have explained the need for this PR and the problem it solves - [ ] I have explained the changes or the new features added to this PR - [ ] I have added tests corresponding to this change - [ ] I have updated the documentation to reflect this change - [ ] I have verified that this change is backward compatible (If not, please discuss on the [Linkis mailing list](https://linkis.apache.org/community/how-to-subscribe) first) - [ ] **If this is a code change**: I have written unit tests to fully verify the new behavior. 添加https://github.com/WeDataSphere/linkis/tree/1.8.0-feature至linkis master -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump axios from 1.7.4 to 1.8.2 in /linkis-web-next [linkis]
casionone merged PR #5226: URL: https://github.com/apache/linkis/pull/5226 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 6.2.1 to 6.2.4 in /linkis-web-next [linkis]
casionone merged PR #5228: URL: https://github.com/apache/linkis/pull/5228 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 6.2.4 to 6.2.5 in /linkis-web-next [linkis]
dependabot[bot] closed pull request #5229: Bump vite from 6.2.4 to 6.2.5 in /linkis-web-next URL: https://github.com/apache/linkis/pull/5229 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vite from 6.2.4 to 6.2.6 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5230: URL: https://github.com/apache/linkis/pull/5230 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.2.4 to 6.2.6. Release notes Sourced from https://github.com/vitejs/vite/releases";>vite's releases. v6.2.6 Please refer to https://github.com/vitejs/vite/blob/v6.2.6/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.2.5 Please refer to https://github.com/vitejs/vite/blob/v6.2.5/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. Changelog Sourced from https://github.com/vitejs/vite/blob/v6.2.6/packages/vite/CHANGELOG.md";>vite's changelog. 6.2.6 (2025-04-10) fix: reject requests with # in request-target (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19830";>#19830) (https://github.com/vitejs/vite/commit/3bb0883d22d59cfd901ff18f338e8b4bf11395f7";>3bb0883), closes https://redirect.github.com/vitejs/vite/issues/19830";>#19830 6.2.5 (2025-04-03) fix: backport https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782";>#19782, fs check with svg and relative paths (https://github.com/vitejs/vite/commit/fdb196e9f8672dba32cf5156c81665c7e82ac581";>fdb196e), closes https://redirect.github.com/vitejs/vite/issues/19782";>#19782 Commits https://github.com/vitejs/vite/commit/d3dbf25fd5e21448f9ea6cec8fb5ac45d220037b";>d3dbf25 release: v6.2.6 https://github.com/vitejs/vite/commit/3bb0883d22d59cfd901ff18f338e8b4bf11395f7";>3bb0883 fix: reject requests with # in request-target (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19830";>#19830) https://github.com/vitejs/vite/commit/c176acf70a113c33c33cb24b63ab7260e713d4b2";>c176acf release: v6.2.5 https://github.com/vitejs/vite/commit/fdb196e9f8672dba32cf5156c81665c7e82ac581";>fdb196e fix: backport https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782";>#19782, fs check with svg and relative paths See full diff in https://github.com/vitejs/vite/commits/v6.2.6/packages/vite";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts). -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 6.2.4 to 6.2.5 in /linkis-web-next [linkis]
dependabot[bot] commented on PR #5229: URL: https://github.com/apache/linkis/pull/5229#issuecomment-2797237790 Superseded by #5230. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [I] [Feature] Support Databend datasource [linkis]
github-actions[bot] commented on issue #5231: URL: https://github.com/apache/linkis/issues/5231#issuecomment-2814251924 ## :blush: Welcome to the Apache Linkis community!! We are glad that you are contributing by opening this issue. Please make sure to include all the relevant context. We will be here shortly. If you are interested in contributing to our website project, please let us know! You can check out our contributing guide on :point_right: [How to Participate in Project Contribution](https://linkis.apache.org/community/how-to-contribute). ### Community |WeChat Assistant|WeChat Public Account| |-|-| |https://linkis.apache.org/Images/wedatasphere_contact_01.png"; width="128"/>|https://linkis.apache.org/Images/gzh_01.png"; width="128"/>| ### Mailing Lists |Name|Description|Subscribe|Unsubscribe|Archive| |:-|:|:--|:---|:-| | [dev@linkis.apache.org](mailto:dev@linkis.apache.org) | community activity information | [subscribe](mailto:dev-subscr...@linkis.apache.org) | [unsubscribe](mailto:dev-unsubscr...@linkis.apache.org) | [archive](http://mail-archives.apache.org/mod_mbox/linkis-dev) | -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[I] [Feature] Support Databend datasource [linkis]
wubx opened a new issue, #5231: URL: https://github.com/apache/linkis/issues/5231 ### Search before asking - [x] I had searched in the [issues](https://github.com/apache/linkis/issues) and found no similar feature requirement. ### Problem Description _No response_ ### Description Support Databend datasource > https://github.com/databendlabs/databend-jdbc ### Use case _No response_ ### Solutions _No response_ ### Anything else _No response_ ### Are you willing to submit a PR? - [ ] Yes I am willing to submit a PR! -- 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: dev-unsubscr...@linkis.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vite from 6.2.4 to 6.3.4 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5232: URL: https://github.com/apache/linkis/pull/5232 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.2.4 to 6.3.4. Release notes Sourced from https://github.com/vitejs/vite/releases";>vite's releases. v6.3.4 Please refer to https://github.com/vitejs/vite/blob/v6.3.4/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.3.3 Please refer to https://github.com/vitejs/vite/blob/v6.3.3/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.3.2 Please refer to https://github.com/vitejs/vite/blob/v6.3.2/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. create-vite@6.3.1 Please refer to https://github.com/vitejs/vite/blob/create-vite@6.3.1/packages/create-vite/CHANGELOG.md";>CHANGELOG.md for details. v6.3.1 Please refer to https://github.com/vitejs/vite/blob/v6.3.1/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. create-vite@6.3.0 Please refer to https://github.com/vitejs/vite/blob/create-vite@6.3.0/packages/create-vite/CHANGELOG.md";>CHANGELOG.md for details. v6.3.0 Please refer to https://github.com/vitejs/vite/blob/v6.3.0/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.3.0-beta.2 Please refer to https://github.com/vitejs/vite/blob/v6.3.0-beta.2/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.3.0-beta.1 Please refer to https://github.com/vitejs/vite/blob/v6.3.0-beta.1/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.3.0-beta.0 Please refer to https://github.com/vitejs/vite/blob/v6.3.0-beta.0/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.2.7 Please refer to https://github.com/vitejs/vite/blob/v6.2.7/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.2.6 Please refer to https://github.com/vitejs/vite/blob/v6.2.6/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.2.5 Please refer to https://github.com/vitejs/vite/blob/v6.2.5/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. Changelog Sourced from https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md";>vite's changelog. 6.3.4 (2025-04-30) fix: check static serve file inside sirv (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19965";>#19965) (https://github.com/vitejs/vite/commit/c22c43de612eebb6c182dd67850c24e4fab8cacb";>c22c43d), closes https://redirect.github.com/vitejs/vite/issues/19965";>#19965 fix(optimizer): return plain object when using require to import externals in optimized dependenci (https://github.com/vitejs/vite/commit/efc5eab253419fde0a6a48b8d2f233063d6a9643";>efc5eab), closes https://redirect.github.com/vitejs/vite/issues/19940";>#19940 refactor: remove duplicate plugin context type (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19935";>#19935) (https://github.com/vitejs/vite/commit/d6d01c2292fa4f9603e05b95d81c8724314c20e0";>d6d01c2), closes https://redirect.github.com/vitejs/vite/issues/19935";>#19935 6.3.3 (2025-04-24) fix: ignore malformed uris in tranform middleware (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19853";>#19853) (https://github.com/vitejs/vite/commit/e4d520141bcd83ad61f16767348b4a813bf9340a";>e4d5201), closes https://redirect.github.com/vitejs/vite/issues/19853";>#19853 fix(assets): ensure ?no-inline is not included in the asset url in the production environment (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/1949";>#1949 (https://github.com/vitejs/vite/commit/16a73c05d35daa34117a173784895546212db5f4";>16a73c0), closes https://redirect.github.com/vitejs/vite/issues/19496";>#19496 fix(css): resolve relative imports in sass properly on Windows (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19920";>#19920) (https://github.com/vitejs/vite/commit/ffab44270488f54ae344801024474b597249071b";>ffab442), closes https://redirect.github.com/vitejs/vite/issues/19920";>#19920 fix(deps): update all non-major dependencies (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19899";>#19899) (https://github.com/vitejs/vite/commit/a4b500ef9ccc9b19a2882156a9ba8397e69bc6b2";>a4b500e), closes https://redirect.github.com/vitejs/vite/issues/19899";>#19899 fix(ssr): fix execution order of re-export (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19841";>#19841) (https://github.com/vitejs/vite/commit/ed29dee2eb2e3573b2bc337e1a9124c65222a1e5";>ed29dee), closes https://redirect.github.com/vitejs/vite/issues/19841";>#19841 fix(ssr): fix live binding of default export declaration and hoist exports getter (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19842";>#19842) (https://github.com/vitejs/vite/commit/80a91ff82426a4c88d54b9f5ec9a4205cb13899b";>80a91ff), closes https://redirect.github.com/vitejs/vite/issues/19842";>#19842 perf: skip sourcemap generation for renderChunk hook of
Re: [PR] Bump vite from 6.2.4 to 6.2.6 in /linkis-web-next [linkis]
dependabot[bot] commented on PR #5230: URL: https://github.com/apache/linkis/pull/5230#issuecomment-2843017567 Superseded by #5232. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 6.2.4 to 6.2.6 in /linkis-web-next [linkis]
dependabot[bot] closed pull request #5230: Bump vite from 6.2.4 to 6.2.6 in /linkis-web-next URL: https://github.com/apache/linkis/pull/5230 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vue-i18n from 9.14.2 to 9.14.3 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5219: URL: https://github.com/apache/linkis/pull/5219 Bumps [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) from 9.14.2 to 9.14.3. Release notes Sourced from https://github.com/intlify/vue-i18n/releases";>vue-i18n's releases. v9.14.3 What's Changed 🔒 Security Fixes fix: prototype pollution in handleFlatJson, about details see https://github.com/intlify/vue-i18n/security/advisories/GHSA-p2ph-7g93-hw3m";>https://github.com/intlify/vue-i18n/security/advisories/GHSA-p2ph-7g93-hw3m Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.14.2...v9.14.3";>https://github.com/intlify/vue-i18n/compare/v9.14.2...v9.14.3 Changelog Sourced from https://github.com/intlify/vue-i18n/blob/v9.14.3/CHANGELOG.md";>vue-i18n's changelog. v9.14.3 (2025-03-07T03:21:38Z) This changelog is generated by https://github.com/intlify/vue-i18n/releases/tag/v9.14.3";>GitHub Releases Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.14.2...v9.14.3";>https://github.com/intlify/vue-i18n/compare/v9.14.2...v9.14.3 Commits https://github.com/intlify/vue-i18n/commit/2e255c59ded7caf7c35f67190a336ce4cec82816";>2e255c5 release: v9.14.3 https://github.com/intlify/vue-i18n/commit/6695eec30737265032dca70690df00ad8d3aa713";>6695eec fix: update package name for npm provenance https://github.com/intlify/vue-i18n/commit/2b5149d42afe9b00a514e6b1ee2021212e47edf5";>2b5149d Revert "release: v9.14.3" https://github.com/intlify/vue-i18n/commit/26449f9d74165736cd1d5ff768ff3c7d12d8a8d5";>26449f9 release: v9.14.3 See full diff in https://github.com/intlify/vue-i18n/commits/v9.14.3/packages/vue-i18n";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts). -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vue-i18n from 9.14.2 to 9.14.3 in /linkis-web-next [linkis]
hhs1 commented on PR #5219: URL: https://github.com/apache/linkis/pull/5219#issuecomment-2706860672 无法注销账号 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vue-i18n from 9.14.2 to 9.14.3 in /linkis-web-next [linkis]
peacewong merged PR #5219: URL: https://github.com/apache/linkis/pull/5219 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump esbuild, @vitejs/plugin-vue and vite in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5221: URL: https://github.com/apache/linkis/pull/5221 Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). These dependencies need to be updated together. Updates `esbuild` from 0.18.20 to 0.25.1 Release notes Sourced from https://github.com/evanw/esbuild/releases";>esbuild's releases. v0.25.1 Fix incorrect paths in inline source maps (https://redirect.github.com/evanw/esbuild/issues/4070";>#4070, https://redirect.github.com/evanw/esbuild/issues/4075";>#4075, https://redirect.github.com/evanw/esbuild/issues/4105";>#4105) This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline sourceMappingURL data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the sourceMappingURL comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage. Fix invalid generated source maps (https://redirect.github.com/evanw/esbuild/issues/4080";>#4080, https://redirect.github.com/evanw/esbuild/issues/4082";>#4082, https://redirect.github.com/evanw/esbuild/issues/4104";>#4104, https://redirect.github.com/evanw/esbuild/issues/4107";>#4107) This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed. This fix was contributed by https://github.com/jridgewell";>@jridgewell. Fix a regression with non-file source map paths (https://redirect.github.com/evanw/esbuild/issues/4078";>#4078) The format of paths in source maps that aren't in the file namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from file paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a : character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored. Fix a crash with switch optimization (https://redirect.github.com/evanw/esbuild/issues/4088";>#4088) The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code: switch (x) { case '': return y.map(z => z.value) case y.map(z => z.key).join(','): return [] } Update Go from 1.23.5 to 1.23.7 (https://redirect.github.com/evanw/esbuild/issues/4076";>#4076, https://redirect.github.com/evanw/esbuild/pull/4077";>#4077) This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses. This PR was contributed by https://github.com/MikeWillCook";>@MikeWillCook. v0.25.0 This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.24.0 or ~0.24.0. See npm's documentation about https://docs.npmjs.com/cli/v6/using-npm/semver/";>semver for more information. Restrict access to esbuild's development server (https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99";>GHSA-67mh-4wv8-2f99) This change addresses esbuild's first security vulnerability report. Previously esbuild set the Access-Control-Allow-Origin header to * to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives
[PR] Bump axios from 1.7.4 to 1.8.2 in /linkis-web [linkis]
dependabot[bot] opened a new pull request, #5220: URL: https://github.com/apache/linkis/pull/5220 Bumps [axios](https://github.com/axios/axios) from 1.7.4 to 1.8.2. Release notes Sourced from https://github.com/axios/axios/releases";>axios's releases. Release v1.8.2 Release notes: Bug Fixes http-adapter: add allowAbsoluteUrls to path building (https://redirect.github.com/axios/axios/issues/6810";>#6810) (https://github.com/axios/axios/commit/fb8eec214ce7744b5ca787f2c3b8339b2f54b00f";>fb8eec2) Contributors to this release https://github.com/lexcorp16"; title="+1/-1 ([#6810](https://github.com/axios/axios/issues/6810) )">Fasoro-Joseph Alexander Release v1.8.1 Release notes: Bug Fixes utils: move generateString to platform utils to avoid importing crypto module into client builds; (https://redirect.github.com/axios/axios/issues/6789";>#6789) (https://github.com/axios/axios/commit/36a5a620bec0b181451927f13ac85b9888b86cec";>36a5a62) Contributors to this release https://github.com/DigitalBrainJS"; title="+51/-47 ([#6789](https://github.com/axios/axios/issues/6789) )">Dmitriy Mozgovoy Release v1.8.0 Release notes: Bug Fixes examples: application crashed when navigating examples in browser (https://redirect.github.com/axios/axios/issues/5938";>#5938) (https://github.com/axios/axios/commit/1260ded634ec101dd5ed05d3b70f8e8f899dba6c";>1260ded) missing word in SUPPORT_QUESTION.yml (https://redirect.github.com/axios/axios/issues/6757";>#6757) (https://github.com/axios/axios/commit/1f890b13f2c25a016f3c84ae78efb769f244133e";>1f890b1) utils: replace getRandomValues with crypto module (https://redirect.github.com/axios/axios/issues/6788";>#6788) (https://github.com/axios/axios/commit/23a25af0688d1db2c396deb09229d2271cc24f6c";>23a25af) Features Add config for ignoring absolute URLs (https://redirect.github.com/axios/axios/issues/5902";>#5902) (https://redirect.github.com/axios/axios/issues/6192";>#6192) (https://github.com/axios/axios/commit/32c7bcc0f233285ba27dec73a4b1e81fb7a219b3";>32c7bcc) Reverts Revert "chore: expose fromDataToStream to be consumable (https://redirect.github.com/axios/axios/issues/6731";>#6731)" (https://redirect.github.com/axios/axios/issues/6732";>#6732) (https://github.com/axios/axios/commit/1317261125e9c419fe9f126867f64d28f9c1efda";>1317261), closes https://redirect.github.com/axios/axios/issues/6731";>#6731 https://redirect.github.com/axios/axios/issues/6732";>#6732 BREAKING CHANGES code relying on the above will now combine the URLs instead of prefer request URL feat: add config option for allowing absolute URLs fix: add default value for allowAbsoluteUrls in buildFullPath fix: typo in flow control when setting allowAbsoluteUrls Contributors to this release ... (truncated) Changelog Sourced from https://github.com/axios/axios/blob/v1.x/CHANGELOG.md";>axios's changelog. https://github.com/axios/axios/compare/v1.8.1...v1.8.2";>1.8.2 (2025-03-07) Bug Fixes http-adapter: add allowAbsoluteUrls to path building (https://redirect.github.com/axios/axios/issues/6810";>#6810) (https://github.com/axios/axios/commit/fb8eec214ce7744b5ca787f2c3b8339b2f54b00f";>fb8eec2) Contributors to this release https://github.com/lexcorp16"; title="+1/-1 ([#6810](https://github.com/axios/axios/issues/6810) )">Fasoro-Joseph Alexander https://github.com/axios/axios/compare/v1.8.0...v1.8.1";>1.8.1 (2025-02-26) Bug Fixes utils: move generateString to platform utils to avoid importing crypto module into client builds; (https://redirect.github.com/axios/axios/issues/6789";>#6789) (https://github.com/axios/axios/commit/36a5a620bec0b181451927f13ac85b9888b86cec";>36a5a62) Contributors to this release https://github.com/DigitalBrainJS"; title="+51/-47 ([#6789](https://github.com/axios/axios/issues/6789) )">Dmitriy Mozgovoy https://github.com/axios/axios/compare/v1.7.9...v1.8.0";>1.8.0 (2025-02-25) Bug Fixes examples: application crashed when navigating examples in browser (https://redirect.github.com/axios/axios/issues/5938";>#5938) (https://github.com/axios/axios/commit/1260ded634ec101dd5ed05d3b70f8e8f899dba6c";>1260ded) missing word in SUPPORT_QUESTION.yml (https://redirect.github.com/axios/axios/issues/6757";>#6757) (https://github.com/axios/axios/commit/1f890b13f2c25a016f3c84ae78efb769f244133e";>1f890b1) utils: replace getRandomValues with crypto module (https://redirect.github.com/axios/axios/issues/6788";>#6788) (https://github.com/axios/axios/commit/23a25af0688d1db2c396deb09229d2271cc24f6c";>23a25af) Features Add config for ignoring absolute URLs (https://redirect.github.com/axios/axios/issues/5902";>#5902) (https://redirect.github.com/axios/axios/issues/6192";>#6192) (https://github.c
Re: [PR] Bump axios from 1.7.4 to 1.8.2 in /linkis-web [linkis]
peacewong merged PR #5220: URL: https://github.com/apache/linkis/pull/5220 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump esbuild, @vitejs/plugin-vue and vite in /linkis-web-next [linkis]
peacewong merged PR #5221: URL: https://github.com/apache/linkis/pull/5221 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
Re: [PR] Bump vite from 6.2.1 to 6.2.3 in /linkis-web-next [linkis]
dependabot[bot] commented on PR #5222: URL: https://github.com/apache/linkis/pull/5222#issuecomment-2767000785 Superseded by #5228. -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vite from 6.2.1 to 6.2.4 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5228: URL: https://github.com/apache/linkis/pull/5228 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.2.1 to 6.2.4. Release notes Sourced from https://github.com/vitejs/vite/releases";>vite's releases. v6.2.4 Please refer to https://github.com/vitejs/vite/blob/v6.2.4/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.2.3 Please refer to https://github.com/vitejs/vite/blob/v6.2.3/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. v6.2.2 Please refer to https://github.com/vitejs/vite/blob/v6.2.2/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. Changelog Sourced from https://github.com/vitejs/vite/blob/v6.2.4/packages/vite/CHANGELOG.md";>vite's changelog. 6.2.4 (2025-03-31) fix: fs check in transform middleware (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761";>#19761) (https://github.com/vitejs/vite/commit/7a4fabab6a3aa24c89144e15a13d78f92b52e588";>7a4faba), closes https://redirect.github.com/vitejs/vite/issues/19761";>#19761 6.2.3 (2025-03-24) fix: fs raw query with query separators (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19702";>#19702) (https://github.com/vitejs/vite/commit/f234b5744d8b74c95535a7b82cc88ed2144263c1";>f234b57), closes https://redirect.github.com/vitejs/vite/issues/19702";>#19702 6.2.2 (2025-03-14) fix: await client buildStart on top level buildStart (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19624";>#19624) (https://github.com/vitejs/vite/commit/b31faab2a81b839e4b747baeb9c7a7cbb724f8d2";>b31faab), closes https://redirect.github.com/vitejs/vite/issues/19624";>#19624 fix(css): inline css correctly for double quote use strict (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19590";>#19590) (https://github.com/vitejs/vite/commit/d0aa833296668fc420a27a1ea88ecdbdeacdbce7";>d0aa833), closes https://redirect.github.com/vitejs/vite/issues/19590";>#19590 fix(deps): update all non-major dependencies (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19613";>#19613) (https://github.com/vitejs/vite/commit/363d691b4995d72f26a14eb59ed88a9483b1f931";>363d691), closes https://redirect.github.com/vitejs/vite/issues/19613";>#19613 fix(indexHtml): ensure correct URL when querying module graph (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19601";>#19601) (https://github.com/vitejs/vite/commit/dc5395a27e44066ef7725278c4057d9f1071a53f";>dc5395a), closes https://redirect.github.com/vitejs/vite/issues/19601";>#19601 fix(preview): use preview https config, not server (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19633";>#19633) (https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f1978e";>98b3160), closes https://redirect.github.com/vitejs/vite/issues/19633";>#19633 fix(ssr): use optional chaining to prevent "undefined is not an object" happening in `ssrRewriteStac (https://github.com/vitejs/vite/commit/43097550a1aa8ff633c39fb197b5f9ac1222119b";>4309755), closes https://redirect.github.com/vitejs/vite/issues/19612";>#19612 feat: show friendly error for malformed base (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19616";>#19616) (https://github.com/vitejs/vite/commit/2476391b2854aaa67d0ed317b6d0c462e68028f7";>2476391), closes https://redirect.github.com/vitejs/vite/issues/19616";>#19616 feat(worker): show asset filename conflict warning (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19591";>#19591) (https://github.com/vitejs/vite/commit/367d968fbf584e9f0e17192b816e92e8045c6217";>367d968), closes https://redirect.github.com/vitejs/vite/issues/19591";>#19591 chore: extend commit hash correctly when ambigious with a non-commit object (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19600";>#19600) (https://github.com/vitejs/vite/commit/89a62873243805518b672212db7e317989c5c197";>89a6287), closes https://redirect.github.com/vitejs/vite/issues/19600";>#19600 Commits https://github.com/vitejs/vite/commit/037f801075ec35bb6e52145d659f71a23813c48f";>037f801 release: v6.2.4 https://github.com/vitejs/vite/commit/7a4fabab6a3aa24c89144e15a13d78f92b52e588";>7a4faba fix: fs check in transform middleware (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761";>#19761) https://github.com/vitejs/vite/commit/16869d7c9917eb58d9a0101e30064ab65e64fa91";>16869d7 release: v6.2.3 https://github.com/vitejs/vite/commit/f234b5744d8b74c95535a7b82cc88ed2144263c1";>f234b57 fix: fs raw query with query separators (https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19702";>#19702) https://github.com/vitejs/vite/commit/b12911edba0cd9edbad170a0940d37bb1e16ef2c";>b12911e release: v6.2.2 https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f197
Re: [PR] Bump vite from 6.2.1 to 6.2.3 in /linkis-web-next [linkis]
dependabot[bot] closed pull request #5222: Bump vite from 6.2.1 to 6.2.3 in /linkis-web-next URL: https://github.com/apache/linkis/pull/5222 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump @babel/runtime from 7.22.11 to 7.27.0 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5227: URL: https://github.com/apache/linkis/pull/5227 Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.22.11 to 7.27.0. Release notes Sourced from https://github.com/babel/babel/releases";>@babel/runtime's releases. v7.27.0 (2025-03-24) Thanks https://github.com/ishchhabra";>@ishchhabra and https://github.com/vovkasm";>@vovkasm for your first PRs! :eyeglasses: Spec Compliance babel-generator, babel-parser https://redirect.github.com/babel/babel/pull/16977";>#16977 Default importAttributesKeyword to with (https://github.com/JLHwung";>@JLHwung) :rocket: New Feature babel-helper-create-class-features-plugin, babel-traverse, babel-types https://redirect.github.com/babel/babel/pull/17169";>#17169 Allow traverseFast to exit early (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-parser, babel-types https://redirect.github.com/babel/babel/pull/17110";>#17110 Add ImportAttributes to Standardized and move its parser test fixtures (https://github.com/JLHwung";>@JLHwung) babel-generator https://redirect.github.com/babel/babel/pull/17100";>#17100 fix(babel-generator): add named export of generate function (https://github.com/vovkasm";>@vovkasm) babel-parser, babel-template https://redirect.github.com/babel/babel/pull/17149";>#17149 Add allowYieldOutsideFunction to parser (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-plugin-transform-typescript, babel-traverse https://redirect.github.com/babel/babel/pull/17102";>#17102 feat: Add upToScope parameter to hasBinding (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-parser https://redirect.github.com/babel/babel/pull/17082";>#17082 Support ESTree AccessorProperty (https://github.com/JLHwung";>@JLHwung) babel-types https://redirect.github.com/babel/babel/pull/17162";>#17162 feat(babel-types): Add support for BigInt literal conversion in valueToNode (https://github.com/ishchhabra";>@ishchhabra) :bug: Bug Fix babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties https://redirect.github.com/babel/babel/pull/16816";>#16816 fix: Class reference in type throws error (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-traverse https://redirect.github.com/babel/babel/pull/17170";>#17170 fix: Reset child scopes when scope.crawl() (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime https://redirect.github.com/babel/babel/pull/17118";>#17118 Fix: align behaviour to tsc rewriteRelativeImportExtensions (https://github.com/JLHwung";>@JLHwung) babel-cli https://redirect.github.com/babel/babel/pull/17182";>#17182 fix: @babel/cli generates duplicate inline source maps (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-plugin-transform-named-capturing-groups-regex, babel-types https://redirect.github.com/babel/babel/pull/17175";>#17175 Generate computed proto key (https://github.com/JLHwung";>@JLHwung) :running_woman: Performance babel-types https://redirect.github.com/babel/babel/pull/16870";>#16870 perf: Improve builders of @babel/types (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-helper-create-regexp-features-plugin https://redirect.github.com/babel/babel/pull/17176";>#17176 fix: improve duplicate named groups check (https://github.com/JLHwung";>@JLHwung) Committers: 5 Babel Bot (https://github.com/babel-bot";>@babel-bot) Huáng Jùnliàng (https://github.com/JLHwung";>@JLHwung) Ish Chhabra (https://github.com/ishchhabra";>@ishchhabra) Vladimir Timofeev (https://github.com/vovkasm";>@vovkasm) https://github.com/liuxingbaoyu";>@liuxingbaoyu v7.26.10 (2025-03-11) ... (truncated) Changelog Sourced from https://github.com/babel/babel/blob/main/CHANGELOG.md";>@babel/runtime's changelog. v7.27.0 (2025-03-24) :eyeglasses: Spec Compliance babel-generator, babel-parser https://redirect.github.com/babel/babel/pull/16977";>#16977 Default importAttributesKeyword to with (https://github.com/JLHwung";>@JLHwung) :rocket: New Feature babel-helper-create-class-features-plugin, babel-traverse, babel-types https://redirect.github.com/babel/babel/pull/17169";>#17169 Allow traverseFast to exit early (https://github.com/liuxingbaoyu";>@liuxingbaoyu) babel-parser, babel-types https://redirect.github.com/babel/babel/pull/17110";>#17110 Add ImportAttributes to Standardized and move its parser test fixtures (https://github.com/JLHwung";>@JLHwung)
[PR] Bump axios from 1.7.4 to 1.8.2 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5226: URL: https://github.com/apache/linkis/pull/5226 Bumps [axios](https://github.com/axios/axios) from 1.7.4 to 1.8.2. Release notes Sourced from https://github.com/axios/axios/releases";>axios's releases. Release v1.8.2 Release notes: Bug Fixes http-adapter: add allowAbsoluteUrls to path building (https://redirect.github.com/axios/axios/issues/6810";>#6810) (https://github.com/axios/axios/commit/fb8eec214ce7744b5ca787f2c3b8339b2f54b00f";>fb8eec2) Contributors to this release https://github.com/lexcorp16"; title="+1/-1 ([#6810](https://github.com/axios/axios/issues/6810) )">Fasoro-Joseph Alexander Release v1.8.1 Release notes: Bug Fixes utils: move generateString to platform utils to avoid importing crypto module into client builds; (https://redirect.github.com/axios/axios/issues/6789";>#6789) (https://github.com/axios/axios/commit/36a5a620bec0b181451927f13ac85b9888b86cec";>36a5a62) Contributors to this release https://github.com/DigitalBrainJS"; title="+51/-47 ([#6789](https://github.com/axios/axios/issues/6789) )">Dmitriy Mozgovoy Release v1.8.0 Release notes: Bug Fixes examples: application crashed when navigating examples in browser (https://redirect.github.com/axios/axios/issues/5938";>#5938) (https://github.com/axios/axios/commit/1260ded634ec101dd5ed05d3b70f8e8f899dba6c";>1260ded) missing word in SUPPORT_QUESTION.yml (https://redirect.github.com/axios/axios/issues/6757";>#6757) (https://github.com/axios/axios/commit/1f890b13f2c25a016f3c84ae78efb769f244133e";>1f890b1) utils: replace getRandomValues with crypto module (https://redirect.github.com/axios/axios/issues/6788";>#6788) (https://github.com/axios/axios/commit/23a25af0688d1db2c396deb09229d2271cc24f6c";>23a25af) Features Add config for ignoring absolute URLs (https://redirect.github.com/axios/axios/issues/5902";>#5902) (https://redirect.github.com/axios/axios/issues/6192";>#6192) (https://github.com/axios/axios/commit/32c7bcc0f233285ba27dec73a4b1e81fb7a219b3";>32c7bcc) Reverts Revert "chore: expose fromDataToStream to be consumable (https://redirect.github.com/axios/axios/issues/6731";>#6731)" (https://redirect.github.com/axios/axios/issues/6732";>#6732) (https://github.com/axios/axios/commit/1317261125e9c419fe9f126867f64d28f9c1efda";>1317261), closes https://redirect.github.com/axios/axios/issues/6731";>#6731 https://redirect.github.com/axios/axios/issues/6732";>#6732 BREAKING CHANGES code relying on the above will now combine the URLs instead of prefer request URL feat: add config option for allowing absolute URLs fix: add default value for allowAbsoluteUrls in buildFullPath fix: typo in flow control when setting allowAbsoluteUrls Contributors to this release ... (truncated) Changelog Sourced from https://github.com/axios/axios/blob/v1.x/CHANGELOG.md";>axios's changelog. https://github.com/axios/axios/compare/v1.8.1...v1.8.2";>1.8.2 (2025-03-07) Bug Fixes http-adapter: add allowAbsoluteUrls to path building (https://redirect.github.com/axios/axios/issues/6810";>#6810) (https://github.com/axios/axios/commit/fb8eec214ce7744b5ca787f2c3b8339b2f54b00f";>fb8eec2) Contributors to this release https://github.com/lexcorp16"; title="+1/-1 ([#6810](https://github.com/axios/axios/issues/6810) )">Fasoro-Joseph Alexander https://github.com/axios/axios/compare/v1.8.0...v1.8.1";>1.8.1 (2025-02-26) Bug Fixes utils: move generateString to platform utils to avoid importing crypto module into client builds; (https://redirect.github.com/axios/axios/issues/6789";>#6789) (https://github.com/axios/axios/commit/36a5a620bec0b181451927f13ac85b9888b86cec";>36a5a62) Contributors to this release https://github.com/DigitalBrainJS"; title="+51/-47 ([#6789](https://github.com/axios/axios/issues/6789) )">Dmitriy Mozgovoy https://github.com/axios/axios/compare/v1.7.9...v1.8.0";>1.8.0 (2025-02-25) Bug Fixes examples: application crashed when navigating examples in browser (https://redirect.github.com/axios/axios/issues/5938";>#5938) (https://github.com/axios/axios/commit/1260ded634ec101dd5ed05d3b70f8e8f899dba6c";>1260ded) missing word in SUPPORT_QUESTION.yml (https://redirect.github.com/axios/axios/issues/6757";>#6757) (https://github.com/axios/axios/commit/1f890b13f2c25a016f3c84ae78efb769f244133e";>1f890b1) utils: replace getRandomValues with crypto module (https://redirect.github.com/axios/axios/issues/6788";>#6788) (https://github.com/axios/axios/commit/23a25af0688d1db2c396deb09229d2271cc24f6c";>23a25af) Features Add config for ignoring absolute URLs (https://redirect.github.com/axios/axios/issues/5902";>#5902) (https://redirect.github.com/axios/axios/issues/6192";>#6192) (https://github.c
Re: [PR] 1.8.0 release feature [linkis]
casionone merged PR #5225: URL: https://github.com/apache/linkis/pull/5225 -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] 1.8.0 release feature [linkis]
GLeXios opened a new pull request, #5225: URL: https://github.com/apache/linkis/pull/5225 ### What is the purpose of the change EngineConn-Core defines the the abstractions and interfaces of the EngineConn core functions. The Engine Service in Linkis 0.x is refactored, EngineConn will handle the engine connection and session management. ### Related issues/PRs Related issues: close #590 close #591 Related pr:#591 ### Brief change log - Define the core abstraction and interfaces of the EngineConn Factory; - Define the core abstraction and interfaces of Executor Manager. ### Checklist - [x] I have read the [Contributing Guidelines on pull requests](https://github.com/facebook/docusaurus/blob/main/CONTRIBUTING.md#pull-requests). - [ ] I have explained the need for this PR and the problem it solves - [ ] I have explained the changes or the new features added to this PR - [ ] I have added tests corresponding to this change - [ ] I have updated the documentation to reflect this change - [ ] I have verified that this change is backward compatible (If not, please discuss on the [Linkis mailing list](https://linkis.apache.org/community/how-to-subscribe) first) - [ ] **If this is a code change**: I have written unit tests to fully verify the new behavior. 1.8.0 release feature remerge -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] Bump vite from 6.2.4 to 6.2.5 in /linkis-web-next [linkis]
dependabot[bot] opened a new pull request, #5229: URL: https://github.com/apache/linkis/pull/5229 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.2.4 to 6.2.5. Release notes Sourced from https://github.com/vitejs/vite/releases";>vite's releases. v6.2.5 Please refer to https://github.com/vitejs/vite/blob/v6.2.5/packages/vite/CHANGELOG.md";>CHANGELOG.md for details. Changelog Sourced from https://github.com/vitejs/vite/blob/v6.2.5/packages/vite/CHANGELOG.md";>vite's changelog. 6.2.5 (2025-04-03) fix: backport https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782";>#19782, fs check with svg and relative paths (https://github.com/vitejs/vite/commit/fdb196e9f8672dba32cf5156c81665c7e82ac581";>fdb196e), closes https://redirect.github.com/vitejs/vite/issues/19782";>#19782 Commits https://github.com/vitejs/vite/commit/c176acf70a113c33c33cb24b63ab7260e713d4b2";>c176acf release: v6.2.5 https://github.com/vitejs/vite/commit/fdb196e9f8672dba32cf5156c81665c7e82ac581";>fdb196e fix: backport https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782";>#19782, fs check with svg and relative paths See full diff in https://github.com/vitejs/vite/commits/v6.2.5/packages/vite";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/linkis/network/alerts). -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org
[PR] 1.8.0 features merge [linkis]
GLeXios opened a new pull request, #5224: URL: https://github.com/apache/linkis/pull/5224 ### What is the purpose of the change EngineConn-Core defines the the abstractions and interfaces of the EngineConn core functions. The Engine Service in Linkis 0.x is refactored, EngineConn will handle the engine connection and session management. ### Related issues/PRs Related issues: close #590 close #591 Related pr:#591 ### Brief change log - Define the core abstraction and interfaces of the EngineConn Factory; - Define the core abstraction and interfaces of Executor Manager. ### Checklist - [x] I have read the [Contributing Guidelines on pull requests](https://github.com/facebook/docusaurus/blob/main/CONTRIBUTING.md#pull-requests). - [ ] I have explained the need for this PR and the problem it solves - [ ] I have explained the changes or the new features added to this PR - [ ] I have added tests corresponding to this change - [ ] I have updated the documentation to reflect this change - [ ] I have verified that this change is backward compatible (If not, please discuss on the [Linkis mailing list](https://linkis.apache.org/community/how-to-subscribe) first) - [ ] **If this is a code change**: I have written unit tests to fully verify the new behavior. merge 1.8.0-features to apache-linkis -- 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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org