Bump arcadedb.version from 24.10.1 to 24.11.1#2
Merged
Conversation
Bumps `arcadedb.version` from 24.10.1 to 24.11.1. Updates `com.arcadedb:arcadedb-engine` from 24.10.1 to 24.11.1 - [Release notes](https://github.com/ArcadeData/arcadedb/releases) - [Commits](ArcadeData/arcadedb@24.10.1...24.11.1) Updates `com.arcadedb:arcadedb-network` from 24.10.1 to 24.11.1 - [Release notes](https://github.com/ArcadeData/arcadedb/releases) - [Commits](ArcadeData/arcadedb@24.10.1...24.11.1) --- updated-dependencies: - dependency-name: com.arcadedb:arcadedb-engine dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.arcadedb:arcadedb-network dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
robfrank
approved these changes
Nov 14, 2024
mergify bot
added a commit
that referenced
this pull request
Sep 14, 2025
Bumps [msw](https://github.com/mswjs/msw) from 2.11.1 to 2.11.2. Release notes *Sourced from [msw's releases](https://github.com/mswjs/msw/releases).* > v2.11.2 (2025-09-10) > -------------------- > > ### Bug Fixes > > * **setupWorker:** handle in-flight requests after calling `worker.stop()` ([#2578](https://redirect.github.com/mswjs/msw/issues/2578)) (97cf4c744d9b1a17f42ca65ac8ef93b2632b935b) [`@kettanaito`](https://github.com/kettanaito) Commits * [`df869f4`](mswjs/msw@df869f4) chore(release): v2.11.2 * [`97cf4c7`](mswjs/msw@97cf4c7) fix(setupWorker): handle in-flight requests after calling `worker.stop()` ([#2](https://redirect.github.com/mswjs/msw/issues/2)... * [`44e1521`](mswjs/msw@44e1521) chore: migrate eslint to flat config ([#2212](https://redirect.github.com/mswjs/msw/issues/2212)) * [`25d2c8f`](mswjs/msw@25d2c8f) test(graphql): add `TypedDocumentNode` inference tests ([#2018](https://redirect.github.com/mswjs/msw/issues/2018)) * See full diff in [compare view](mswjs/msw@v2.11.1...v2.11.2) [](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)
mergify bot
added a commit
that referenced
this pull request
Jan 9, 2026
Bumps [org.jsoup:jsoup](https://github.com/jhy/jsoup) from 1.21.2 to 1.22.1. Release notes *Sourced from [org.jsoup:jsoup's releases](https://github.com/jhy/jsoup/releases).* > jsoup Java HTML Parser release 1.22.1 > ------------------------------------- > > **jsoup 1.22.1** is out now, adding support for the `re2j` regular expression engine for regex-based CSS selectors, a configurable maximum parser depth, and numerous bug fixes and improvements. > > **jsoup** is a Java library for working with real-world HTML and XML. It provides a very convenient API for extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. > > [**Download**](https://github.com/jhy/jsoup/blob/HEAD/download) jsoup now. > > ### Improvements > > * Added support for using the `re2j` regular expression engine for regex-based CSS selectors (e.g. `[attr~=regex]`, `:matches(regex)`), which ensures linear-time performance for regex evaluation. This allows safer handling of arbitrary user-supplied query regexes. To enable, add the `com.google.re2j` dependency to your classpath, e.g.: > > ``` > <dependency> > <groupId>com.google.re2j</groupId> > <artifactId>re2j</artifactId> > <version>1.8</version> > </dependency> > ``` > > (If you already have that dependency in your classpath, but you want to keep using the Java regex engine, you can disable re2j via `System.setProperty("jsoup.useRe2j", "false")`.) You can confirm that the re2j engine has been enabled correctly by calling `Regex.usingRe2j()`. [#2407](https://redirect.github.com/jhy/jsoup/pull/2407) > > * Added an instance method `Parser#unescape(String, boolean)` that unescapes HTML entities using the parser's configuration (e.g. to support error tracking), complementing the existing static utility `Parser.unescapeEntities(String, boolean)`. [#2396](https://redirect.github.com/jhy/jsoup/pull/2396) > * Added a configurable maximum parser depth (to limit the number of open elements on stack) to both HTML and XML parsers. The HTML parser now defaults to a depth of 512 to match browser behavior, and protect against unbounded stack growth, while the XML parser keeps unlimited depth by default, but can opt into a limit via `Parser.setMaxDepth()`. [#2421](https://redirect.github.com/jhy/jsoup/issues/2421) > * Build: added CI coverage for JDK 25 [#2403](https://redirect.github.com/jhy/jsoup/pull/2403) > * Build: added a CI fuzzer for contextual fragment parsing (in addition to existing full body HTML and XML fuzzers). [oss-fuzz [#14041](https://redirect.github.com/jhy/jsoup/issues/14041)]([google/oss-fuzz#14041](https://redirect.github.com/google/oss-fuzz/pull/14041)) > > ### Changes > > * Set a removal schedule of jsoup 1.24.1 for previously deprecated APIs. > > ### Bug Fixes > > * Previously cached child `Elements` of an `Element` were not correctly invalidated in `Node#replaceWith(Node)`, which could lead to incorrect results when subsequently calling `Element#children()`. [#2391](https://redirect.github.com/jhy/jsoup/issues/2391) > * Attribute selector values are now compared literally without trimming. Previously, jsoup trimmed whitespace from selector values and from element attribute values, which could cause mismatches with browser behavior (e.g. `[attr=" foo "]`). Now matches align with the CSS specification and browser engines. [#2380](https://redirect.github.com/jhy/jsoup/issues/2380) > * When using the JDK HttpClient, any system default proxy (`ProxySelector.getDefault()`) was ignored. Now, the system proxy is used if a per-request proxy is not set. [#2388](https://redirect.github.com/jhy/jsoup/issues/2388), [#2390](https://redirect.github.com/jhy/jsoup/pull/2390) > * A `ValidationException` could be thrown in the adoption agency algorithm with particularly broken input. Now logged as a parse error. [#2393](https://redirect.github.com/jhy/jsoup/issues/2393) > * Null characters in the HTML body were not consistently removed; and in foreign content were not correctly replaced. [#2395](https://redirect.github.com/jhy/jsoup/issues/2395) > * An `IndexOutOfBoundsException` could be thrown when parsing a body fragment with crafted input. Now logged as a parse error. [#2397](https://redirect.github.com/jhy/jsoup/issues/2397), [#2406](https://redirect.github.com/jhy/jsoup/issues/2406) > * When using StructuralEvaluators (e.g., a `parent child` selector) across many retained threads, their memoized results could also be retained, increasing memory use. These results are now cleared immediately after use, reducing overall memory consumption. [#2411](https://redirect.github.com/jhy/jsoup/issues/2411) > * Cloning a `Parser` now preserves any custom `TagSet` applied to the parser. [#2422](https://redirect.github.com/jhy/jsoup/issues/2422), [#2423](https://redirect.github.com/jhy/jsoup/pull/2423) > * Custom tags marked as `Tag.Void` now parse and serialize like the built-in void elements: they no longer consume following content, and the XML serializer emits the expected self-closing form. [#2425](https://redirect.github.com/jhy/jsoup/issues/2425) > * The `<br>` element is once again classified as an inline tag (`Tag.isBlock() == false`), matching common developer expectations and its role as phrasing content in HTML, while pretty-printing and text extraction continue to treat it as a line break in the rendered output. [#2387](https://redirect.github.com/jhy/jsoup/issues/2387), [#2439](https://redirect.github.com/jhy/jsoup/issues/2439) > * Fixed an intermittent truncation issue when fetching and parsing remote documents via `Jsoup.connect(url).get()`. On responses without a charset header, the initial charset sniff could sometimes (depending on buffering / `available()` behavior) be mistaken for end-of-stream and a partial parse reused, dropping trailing content. [#2448](https://redirect.github.com/jhy/jsoup/issues/2448) > * `TagSet` copies no longer mutate their template during lazy lookups, preventing cross-thread `ConcurrentModificationException` when parsing with shared sessions. [#2453](https://redirect.github.com/jhy/jsoup/pull/2453) > * Fixed parsing of `<svg>` `foreignObject` content nested within a `<p>`, which could incorrectly move the HTML subtree outside the SVG. [#2452](https://redirect.github.com/jhy/jsoup/issues/2452) > > ### Internal Changes > > * Deprecated internal helper `org.jsoup.internal.Functions` (for removal in v1.23.1). This was previously used to support older Android API levels without full `java.util.function` coverage; jsoup now requires core library desugaring so this indirection is no longer necessary. [#2412](https://redirect.github.com/jhy/jsoup/pull/2412) > > --- > > My sincere thanks to everyone who contributed to this release! > If you have any suggestions for the next release, I would love to hear them; please get in touch via [jsoup discussions](https://github.com/jhy/jsoup/discussions), or with me [directly](https://jhedley.com/). > > You can also follow me (@[jhy@tilde.zone](mailto:jhy@tilde.zone)) on Mastodon / Fediverse to receive occasional notes about jsoup releases. Changelog *Sourced from [org.jsoup:jsoup's changelog](https://github.com/jhy/jsoup/blob/master/CHANGES.md).* > 1.22.1 (2026-Jan-01) > -------------------- > > ### Improvements > > * Added support for using the `re2j` regular expression engine for regex-based CSS selectors (e.g. `[attr~=regex]`, `:matches(regex)`), which ensures linear-time performance for regex evaluation. This allows safer handling of arbitrary user-supplied query regexes. To enable, add the `com.google.re2j` dependency to your classpath, e.g.: > > ``` > <dependency> > <groupId>com.google.re2j</groupId> > <artifactId>re2j</artifactId> > <version>1.8</version> > </dependency> > ``` > > (If you already have that dependency in your classpath, but you want to keep using the Java regex engine, you can disable re2j via `System.setProperty("jsoup.useRe2j", "false")`.) You can confirm that the re2j engine has been enabled correctly by calling `org.jsoup.helper.Regex.usingRe2j()`. [#2407](https://redirect.github.com/jhy/jsoup/pull/2407) > > * Added an instance method `Parser#unescape(String, boolean)` that unescapes HTML entities using the parser's configuration (e.g. to support error tracking), complementing the existing static utility `Parser.unescapeEntities(String, boolean)`. [#2396](https://redirect.github.com/jhy/jsoup/pull/2396) > * Added a configurable maximum parser depth (to limit the number of open elements on stack) to both HTML and XML parsers. The HTML parser now defaults to a depth of 512 to match browser behavior, and protect against unbounded stack growth, while the XML parser keeps unlimited depth by default, but can opt into a limit via `org.jsoup.parser.Parser#setMaxDepth`. [#2421](https://redirect.github.com/jhy/jsoup/issues/2421) > * Build: added CI coverage for JDK 25 [#2403](https://redirect.github.com/jhy/jsoup/pull/2403) > * Build: added a CI fuzzer for contextual fragment parsing (in addition to existing full body HTML and XML fuzzers). [oss-fuzz [#14041](https://redirect.github.com/jhy/jsoup/issues/14041)]([google/oss-fuzz#14041](https://redirect.github.com/google/oss-fuzz/pull/14041)) > > ### Changes > > * Set a removal schedule of jsoup 1.24.1 for previously deprecated APIs. > > ### Bug Fixes > > * Previously cached child `Elements` of an `Element` were not correctly invalidated in `Node#replaceWith(Node)`, which could lead to incorrect results when subsequently calling `Element#children()`. [#2391](https://redirect.github.com/jhy/jsoup/issues/2391) > * Attribute selector values are now compared literally without trimming. Previously, jsoup trimmed whitespace from selector values and from element attribute values, which could cause mismatches with browser behavior (e.g. `[attr=" foo "]`). Now matches align with the CSS specification and browser engines. [#2380](https://redirect.github.com/jhy/jsoup/issues/2380) > * When using the JDK HttpClient, any system default proxy (`ProxySelector.getDefault()`) was ignored. Now, the system proxy is used if a per-request proxy is not set. [#2388](https://redirect.github.com/jhy/jsoup/issues/2388), [#2390](https://redirect.github.com/jhy/jsoup/pull/2390) > * A `ValidationException` could be thrown in the adoption agency algorithm with particularly broken input. Now logged as a parse error. [#2393](https://redirect.github.com/jhy/jsoup/issues/2393) > * Null characters in the HTML body were not consistently removed; and in foreign content were not correctly replaced. [#2395](https://redirect.github.com/jhy/jsoup/issues/2395) > * An `IndexOutOfBoundsException` could be thrown when parsing a body fragment with crafted input. Now logged as a parse error. [#2397](https://redirect.github.com/jhy/jsoup/issues/2397), [#2406](https://redirect.github.com/jhy/jsoup/issues/2406) > * When using StructuralEvaluators (e.g., a `parent child` selector) across many retained threads, their memoized results could also be retained, increasing memory use. These results are now cleared immediately after use, reducing overall memory consumption. [#2411](https://redirect.github.com/jhy/jsoup/issues/2411) > * Cloning a `Parser` now preserves any custom `TagSet` applied to the parser. [#2422](https://redirect.github.com/jhy/jsoup/issues/2422), [#2423](https://redirect.github.com/jhy/jsoup/pull/2423) > * Custom tags marked as `Tag.Void` now parse and serialize like the built-in void elements: they no longer consume following content, and the XML serializer emits the expected self-closing form. [#2425](https://redirect.github.com/jhy/jsoup/issues/2425) > * The `<br>` element is once again classified as an inline tag (`Tag.isBlock() == false`), matching common developer expectations and its role as phrasing content in HTML, while pretty-printing and text extraction continue to treat it as a line break in the rendered output. [#2387](https://redirect.github.com/jhy/jsoup/issues/2387), [#2439](https://redirect.github.com/jhy/jsoup/issues/2439) > * Fixed an intermittent truncation issue when fetching and parsing remote documents via `Jsoup.connect(url).get()`. On responses without a charset header, the initial charset sniff could sometimes (depending on buffering / `available()` behavior) be mistaken for end-of-stream and a partial parse reused, dropping trailing content. [#2448](https://redirect.github.com/jhy/jsoup/issues/2448) > * `TagSet` copies no longer mutate their template during lazy lookups, preventing cross-thread `ConcurrentModificationException` when parsing with shared sessions. [#2453](https://redirect.github.com/jhy/jsoup/pull/2453) > * Fixed parsing of `<svg>` `foreignObject` content nested within a `<p>`, which could incorrectly move the HTML subtree outside the SVG. [#2452](https://redirect.github.com/jhy/jsoup/issues/2452) > > ### Internal Changes > > * Deprecated internal helper `org.jsoup.internal.Functions` (for removal in v1.23.1). This was previously used to support older Android API levels without full `java.util.function` coverage; jsoup now requires core library desugaring so this indirection is no longer necessary. [#2412](https://redirect.github.com/jhy/jsoup/pull/2412) Commits * [`8dd66fe`](jhy/jsoup@8dd66fe) [maven-release-plugin] prepare release jsoup-1.22.1 * [`d924385`](jhy/jsoup@d924385) Changelog prep for v1.22.1 * [`0f3100c`](jhy/jsoup@0f3100c) Bump actions/upload-artifact from 5 to 6 ([#2457](https://redirect.github.com/jhy/jsoup/issues/2457)) * [`cf6ac20`](jhy/jsoup@cf6ac20) Bump org.apache.maven.plugins:maven-release-plugin from 3.3.0 to 3.3.1 ([#2455](https://redirect.github.com/jhy/jsoup/issues/2455)) * [`6bef938`](jhy/jsoup@6bef938) Fix parsing of SVG foreignObject in paragraphs * [`9b1c0fc`](jhy/jsoup@9b1c0fc) Bump org.apache.maven.plugins:maven-release-plugin from 3.2.0 to 3.3.0 ([#2450](https://redirect.github.com/jhy/jsoup/issues/2450)) * [`1415e64`](jhy/jsoup@1415e64) Bump actions/checkout from 5 to 6 ([#2451](https://redirect.github.com/jhy/jsoup/issues/2451)) * [`0e99fd9`](jhy/jsoup@0e99fd9) Isolate TagSet copies to prevent shared mutation ([#2453](https://redirect.github.com/jhy/jsoup/issues/2453)) * [`90019cb`](jhy/jsoup@90019cb) Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.24.2 to 0.25.0 ([#2](https://redirect.github.com/jhy/jsoup/issues/2)... * [`9395269`](jhy/jsoup@9395269) Don't preemptively close * Additional commits viewable in [compare view](jhy/jsoup@jsoup-1.21.2...jsoup-1.22.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)
mergify bot
added a commit
that referenced
this pull request
Feb 14, 2026
…p ci] Bumps [webpack](https://github.com/webpack/webpack) from 5.104.1 to 5.105.0. Release notes *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > v5.105.0 > -------- > > ### Minor Changes > > * Allow resolving worker module by export condition name when using `new Worker()` (by [`@hai-x`](https://github.com/hai-x) in [#20353](https://redirect.github.com/webpack/webpack/pull/20353)) > * Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by [`@hai-x`](https://github.com/hai-x) in [#20320](https://redirect.github.com/webpack/webpack/pull/20320)) > * Added the `tsconfig` option for the `resolver` options (replacement for `tsconfig-paths-webpack-plugin`). Can be `false` (disabled), `true` (use the default `tsconfig.json` file to search for it), a string path to `tsconfig.json`, or an object with `configFile` and `references` options. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20400](https://redirect.github.com/webpack/webpack/pull/20400)) > * Support `import.defer()` for context modules. (by [`@ahabhgk`](https://github.com/ahabhgk) in [#20399](https://redirect.github.com/webpack/webpack/pull/20399)) > * Added support for array values to the `devtool` option. (by [`@hai-x`](https://github.com/hai-x) in [#20191](https://redirect.github.com/webpack/webpack/pull/20191)) > * Improve rendering node built-in modules for ECMA module output. (by [`@hai-x`](https://github.com/hai-x) in [#20255](https://redirect.github.com/webpack/webpack/pull/20255)) > * Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20312](https://redirect.github.com/webpack/webpack/pull/20312)) > > ### Patch Changes > > * Fixed ESM default export handling for `.mjs` files in Module Federation (by [`@y-okt`](https://github.com/y-okt) in [#20189](https://redirect.github.com/webpack/webpack/pull/20189)) > * Optimized `import.meta.env` handling in destructuring assignments by using cached stringified environment definitions. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20313](https://redirect.github.com/webpack/webpack/pull/20313)) > * Respect the `stats.errorStack` option in stats output. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20258](https://redirect.github.com/webpack/webpack/pull/20258)) > * Fixed a bug where declaring a `module` variable in module scope would conflict with the default `moduleArgument`. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20265](https://redirect.github.com/webpack/webpack/pull/20265)) > * Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., `virtual:routes`), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20390](https://redirect.github.com/webpack/webpack/pull/20390)) > * Fixed Worker self-import handling to support various URL patterns (e.g., `import.meta.url`, `new URL(import.meta.url)`, `new URL(import.meta.url, import.meta.url)`, `new URL("./index.js", import.meta.url)`). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20381](https://redirect.github.com/webpack/webpack/pull/20381)) > * Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20345](https://redirect.github.com/webpack/webpack/pull/20345)) > * Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20251](https://redirect.github.com/webpack/webpack/pull/20251)) > * Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by [`@hai-x`](https://github.com/hai-x) in [#20346](https://redirect.github.com/webpack/webpack/pull/20346)) > * Fixed `import.meta.env.xxx` behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20289](https://redirect.github.com/webpack/webpack/pull/20289)) > * Improved parsing error reporting by adding a link to the loader documentation. (by [`@gaurav10gg`](https://github.com/gaurav10gg) in [#20244](https://redirect.github.com/webpack/webpack/pull/20244)) > * Fix typescript types. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20305](https://redirect.github.com/webpack/webpack/pull/20305)) > * Add declaration for unused harmony import specifier. (by [`@hai-x`](https://github.com/hai-x) in [#20286](https://redirect.github.com/webpack/webpack/pull/20286)) > * Fix compressibility of modules while retaining portability. (by [`@dmichon-msft`](https://github.com/dmichon-msft) in [#20287](https://redirect.github.com/webpack/webpack/pull/20287)) > * Optimize source map generation: only include `ignoreList` property when it has content, avoiding empty arrays in source maps. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20319](https://redirect.github.com/webpack/webpack/pull/20319)) > * Preserve star exports for dependencies in ECMA module output. (by [`@hai-x`](https://github.com/hai-x) in [#20293](https://redirect.github.com/webpack/webpack/pull/20293)) ... (truncated) Changelog *Sourced from [webpack's changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md).* > 5.105.0 > ------- > > ### Minor Changes > > * Allow resolving worker module by export condition name when using `new Worker()` (by [`@hai-x`](https://github.com/hai-x) in [#20353](https://redirect.github.com/webpack/webpack/pull/20353)) > * Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by [`@hai-x`](https://github.com/hai-x) in [#20320](https://redirect.github.com/webpack/webpack/pull/20320)) > * Added the `tsconfig` option for the `resolver` options (replacement for `tsconfig-paths-webpack-plugin`). Can be `false` (disabled), `true` (use the default `tsconfig.json` file to search for it), a string path to `tsconfig.json`, or an object with `configFile` and `references` options. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20400](https://redirect.github.com/webpack/webpack/pull/20400)) > * Support `import.defer()` for context modules. (by [`@ahabhgk`](https://github.com/ahabhgk) in [#20399](https://redirect.github.com/webpack/webpack/pull/20399)) > * Added support for array values to the `devtool` option. (by [`@hai-x`](https://github.com/hai-x) in [#20191](https://redirect.github.com/webpack/webpack/pull/20191)) > * Improve rendering node built-in modules for ECMA module output. (by [`@hai-x`](https://github.com/hai-x) in [#20255](https://redirect.github.com/webpack/webpack/pull/20255)) > * Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20312](https://redirect.github.com/webpack/webpack/pull/20312)) > > ### Patch Changes > > * Fixed ESM default export handling for `.mjs` files in Module Federation (by [`@y-okt`](https://github.com/y-okt) in [#20189](https://redirect.github.com/webpack/webpack/pull/20189)) > * Optimized `import.meta.env` handling in destructuring assignments by using cached stringified environment definitions. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20313](https://redirect.github.com/webpack/webpack/pull/20313)) > * Respect the `stats.errorStack` option in stats output. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20258](https://redirect.github.com/webpack/webpack/pull/20258)) > * Fixed a bug where declaring a `module` variable in module scope would conflict with the default `moduleArgument`. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20265](https://redirect.github.com/webpack/webpack/pull/20265)) > * Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., `virtual:routes`), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20390](https://redirect.github.com/webpack/webpack/pull/20390)) > * Fixed Worker self-import handling to support various URL patterns (e.g., `import.meta.url`, `new URL(import.meta.url)`, `new URL(import.meta.url, import.meta.url)`, `new URL("./index.js", import.meta.url)`). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20381](https://redirect.github.com/webpack/webpack/pull/20381)) > * Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20345](https://redirect.github.com/webpack/webpack/pull/20345)) > * Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20251](https://redirect.github.com/webpack/webpack/pull/20251)) > * Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by [`@hai-x`](https://github.com/hai-x) in [#20346](https://redirect.github.com/webpack/webpack/pull/20346)) > * Fixed `import.meta.env.xxx` behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20289](https://redirect.github.com/webpack/webpack/pull/20289)) > * Improved parsing error reporting by adding a link to the loader documentation. (by [`@gaurav10gg`](https://github.com/gaurav10gg) in [#20244](https://redirect.github.com/webpack/webpack/pull/20244)) > * Fix typescript types. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20305](https://redirect.github.com/webpack/webpack/pull/20305)) > * Add declaration for unused harmony import specifier. (by [`@hai-x`](https://github.com/hai-x) in [#20286](https://redirect.github.com/webpack/webpack/pull/20286)) > * Fix compressibility of modules while retaining portability. (by [`@dmichon-msft`](https://github.com/dmichon-msft) in [#20287](https://redirect.github.com/webpack/webpack/pull/20287)) > * Optimize source map generation: only include `ignoreList` property when it has content, avoiding empty arrays in source maps. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20319](https://redirect.github.com/webpack/webpack/pull/20319)) ... (truncated) Commits * [`1486f9a`](webpack/webpack@1486f9a) chore(release): new release * [`1a517f6`](webpack/webpack@1a517f6) feat: added the `tsconfig` option for the `resolver` options ([#20400](https://redirect.github.com/webpack/webpack/issues/20400)) * [`7b3b0f7`](webpack/webpack@7b3b0f7) feat: support `import.defer()` for context modules * [`c4a6a92`](webpack/webpack@c4a6a92) refactor: more types and increase types coverage * [`5ecc58d`](webpack/webpack@5ecc58d) feat: consider asset module as side-effect-free ([#20352](https://redirect.github.com/webpack/webpack/issues/20352)) * [`cce0f69`](webpack/webpack@cce0f69) test: avoid comma operator in BinaryMiddleware test ([#20398](https://redirect.github.com/webpack/webpack/issues/20398)) * [`cd4793d`](webpack/webpack@cd4793d) feat: support import specifier guard ([#20320](https://redirect.github.com/webpack/webpack/issues/20320)) * [`fe48655`](webpack/webpack@fe48655) docs: update examples ([#20397](https://redirect.github.com/webpack/webpack/issues/20397)) * [`de107f8`](webpack/webpack@de107f8) fix(VirtualUrlPlugin): set resourceData.context to avoid invalid fallback ([#2](https://redirect.github.com/webpack/webpack/issues/2)... * [`a656ab1`](webpack/webpack@a656ab1) test: add self-import test case for dynamic import ([#20389](https://redirect.github.com/webpack/webpack/issues/20389)) * Additional commits viewable in [compare view](webpack/webpack@v5.104.1...v5.105.0) Maintainer changes This version was pushed to npm by [GitHub Actions](<https://www.npmjs.com/~GitHub> Actions), a new releaser for webpack since your current version. [](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 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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps
arcadedb.versionfrom 24.10.1 to 24.11.1.Updates
com.arcadedb:arcadedb-enginefrom 24.10.1 to 24.11.1Release notes
Sourced from com.arcadedb:arcadedb-engine's releases.
... (truncated)
Commits
1bd3495Preparing release 24.11.1b466f48build(deps): bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 t...3a5a239build(deps): bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.1 t...09c7d6bbuild(deps): bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.1 t...225769bbuild(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0...0d0e609build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#1813) [skip ci]84799b2#1624 fix missing dependencies of plugins (gremlin, postgreswl...) (#1818)c9d22c5Merge pull request #1806 from ArcadeData/improvement/0000-chore3f049daremove commented code51fa0a3fix formattingUpdates
com.arcadedb:arcadedb-networkfrom 24.10.1 to 24.11.1Release notes
Sourced from com.arcadedb:arcadedb-network's releases.
... (truncated)
Commits
1bd3495Preparing release 24.11.1b466f48build(deps): bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 t...3a5a239build(deps): bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.1 t...09c7d6bbuild(deps): bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.1 t...225769bbuild(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0...0d0e609build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#1813) [skip ci]84799b2#1624 fix missing dependencies of plugins (gremlin, postgreswl...) (#1818)c9d22c5Merge pull request #1806 from ArcadeData/improvement/0000-chore3f049daremove commented code51fa0a3fix formattingDependabot 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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)