Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency undici to v7 (1.11) #8516

Merged
merged 4 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ commands:
- run:
command: |
source $BASH_ENV
export PERL5OPT="$PERL5OPT -MSyntax::Keyword::Try::Deparse"
if [ "x$COVERAGE" == "x1" ]
then
make devtest TESTS="--no-progress --job-count $JOB_COUNT \"--cover=$DEVEL_COVER_OPTIONS\" t/ xt/"
Expand Down Expand Up @@ -318,6 +317,7 @@ executors:
RELEASE_TESTING: 1
REMOTE_SERVER_ADDR: selenium-hub
STARMAN_DEVEL_COVER_OPTIONS: ''
TEST2_UUID_NO_WARN: 'Yes'
UIUSER: Jest
UIPASSWORD: Tester
UITESTS: '*'
Expand All @@ -329,14 +329,14 @@ jobs:
<<: *defaults
executor:
name: test
perl: '5.34'
perl: '5.36'
postgres: '12'
browser: chrome
selenium: selenium/node-chrome:3.141.59-20210607
# coverage: 1
steps:
- prep_env:
perl: '5.34'
perl: '5.36'
- start_starman
- start_proxy
- prove
Expand Down
2 changes: 1 addition & 1 deletion UI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"stylelint-webpack-plugin": "5.0.1",
"stylelint-z-index-value-constraint": "1.4.0",
"tmp": "0.2.3",
"undici": "6.21.0",
"undici": "7.2.0",
"unix-timestamp": "1.1.0",
"unused-webpack-plugin": "2.4.0",
"vue": "3.5.13",
Expand Down
3 changes: 3 additions & 0 deletions UI/tests/common/jest.polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

const { TextEncoder, TextDecoder } = require("node:util");
const { ReadableStream, TransformStream } = require("node:stream/web");
const { MessageChannel, MessagePort } = require("node:worker_threads");
const { performance } = require("node:perf_hooks");

Object.defineProperties(globalThis, {
MessageChannel: { value: MessageChannel },
MessagePort: { value: MessagePort },
ReadableStream: { value: ReadableStream },
TextDecoder: { value: TextDecoder },
TextEncoder: { value: TextEncoder },
Expand Down
8 changes: 4 additions & 4 deletions UI/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10469,10 +10469,10 @@ undici-types@~6.19.8:
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02"
integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==

undici@6.21.0:
version "6.21.0"
resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.0.tgz#4b3d3afaef984e07b48e7620c34ed8a285ed4cd4"
integrity sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==
undici@7.2.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/undici/-/undici-7.2.0.tgz#446219e2a57cfcbdc2f135fcfa6dc662b3cae169"
integrity sha512-klt+0S55GBViA9nsq48/NSCo4YX5mjydjypxD7UmHh/brMu8h/Mhd/F7qAeoH2NOO8SDTk6kjnTFc4WpzmfYpQ==

unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.1"
Expand Down
9 changes: 2 additions & 7 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ requires 'Text::Markdown';
requires 'URI';
requires 'URI::Escape';
requires 'Workflow', '1.59';
requires 'Workflow::Action', '1.59';
requires 'Workflow::Condition', '1.59';
requires 'Workflow::Context', '1.59';
requires 'Workflow::Exception', '1.59';
Expand Down Expand Up @@ -189,13 +190,7 @@ on 'develop' => sub {
requires 'Selenium::Remote::Driver';
requires 'TAP::Parser::SourceHandler::pgTAP', '3.33';
requires 'Test::BDD::Cucumber', '0.86';
if ($ENV{CI}) {
# Required to suppress a variable re-definition
requires 'Test::Dependencies', '0.30';
}
else {
requires 'Test::Dependencies', '0.25';
}
requires 'Test::Dependencies', '0.34';
requires 'Test::Pod', '1.00';
requires 'Test::Pod::Coverage';
requires 'Test2::Harness';
Expand Down
Loading