diff --git a/.node-version b/.node-version index 2dbbe00e67..7af24b7ddb 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -20.11.1 +22.11.0 diff --git a/app/common/src/text/index.ts b/app/common/src/text/index.ts index 3a84cfd829..11d3f3f142 100644 --- a/app/common/src/text/index.ts +++ b/app/common/src/text/index.ts @@ -1,6 +1,6 @@ /** @file Functions related to displaying text. */ -import ENGLISH from './english.json' assert { type: 'json' } +import ENGLISH from './english.json' with { type: 'json' } // ============= // === Types === diff --git a/app/gui/e2e/project-view/setup.ts b/app/gui/e2e/project-view/setup.ts index 99ccf57dee..bb9daa210a 100644 --- a/app/gui/e2e/project-view/setup.ts +++ b/app/gui/e2e/project-view/setup.ts @@ -1,6 +1,6 @@ import { Server } from '@open-rpc/server-js' import * as random from 'lib0/random' -import pmSpec from './pm-openrpc.json' assert { type: 'json' } +import pmSpec from './pm-openrpc.json' with { type: 'json' } import { methods as pmMethods, projects, diff --git a/app/gui/package.json b/app/gui/package.json index 9dfca52c6f..f98f1a2fb9 100644 --- a/app/gui/package.json +++ b/app/gui/package.json @@ -131,14 +131,13 @@ "@playwright/test": "^1.40.0", "@react-types/shared": "^3.22.1", "@tanstack/react-query-devtools": "5.45.1", - "@types/node": "^20.11.21", + "@types/node": "^22.9.0", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "@types/validator": "^13.11.7", "@vitejs/plugin-react": "^4.3.3", "chalk": "^5.3.0", "cross-env": "^7.0.3", - "enso-chat": "git://github.com/enso-org/enso-bot", "fast-check": "^3.15.0", "playwright": "^1.39.0", "postcss": "^8.4.29", diff --git a/app/gui/project-manager-shim-middleware/index.ts b/app/gui/project-manager-shim-middleware/index.ts index 609f5ff09b..5d1c874fc5 100644 --- a/app/gui/project-manager-shim-middleware/index.ts +++ b/app/gui/project-manager-shim-middleware/index.ts @@ -11,7 +11,7 @@ import * as tar from 'tar' import * as yaml from 'yaml' import * as common from 'enso-common' -import GLOBAL_CONFIG from 'enso-common/src/config.json' assert { type: 'json' } +import GLOBAL_CONFIG from 'enso-common/src/config.json' with { type: 'json' } import * as projectManagement from './projectManagement' diff --git a/app/gui/src/dashboard/layouts/Chat.tsx b/app/gui/src/dashboard/layouts/Chat.tsx index d41460d359..b5834c7450 100644 --- a/app/gui/src/dashboard/layouts/Chat.tsx +++ b/app/gui/src/dashboard/layouts/Chat.tsx @@ -3,7 +3,7 @@ import * as React from 'react' import * as reactDom from 'react-dom' -import * as chat from 'enso-chat/chat' +import * as chat from '#/services/Chat' import CloseLargeIcon from '#/assets/close_large.svg' import DefaultUserIcon from '#/assets/default_user.svg' @@ -480,6 +480,7 @@ export default function Chat(props: ChatProps) { element.scrollTop = element.scrollHeight - element.clientHeight } // Auto-scroll MUST only happen when the message list changes. + // eslint-disable-next-line react-compiler/react-compiler // eslint-disable-next-line react-hooks/exhaustive-deps }, [messages]) diff --git a/app/gui/src/dashboard/services/Chat.ts b/app/gui/src/dashboard/services/Chat.ts new file mode 100644 index 0000000000..308cdf864e --- /dev/null +++ b/app/gui/src/dashboard/services/Chat.ts @@ -0,0 +1,260 @@ +/** + * @file An API definition for the chat WebSocket server. + * Types copied from the enso-bot server implementation: + * https://github.com/enso-org/enso-bot/blob/aa903b6e639a31930ee4fff55c5639e4471fa48d/chat.ts + */ + +import type * as newtype from '#/utilities/newtype' + +// ===================== +// === Message Types === +// ===================== + +/** Identifier for a chat Thread. */ +export type ThreadId = newtype.Newtype +/** Identifier for a chat message. */ +export type MessageId = newtype.Newtype +/** Identifier for a chat user. */ +export type UserId = newtype.Newtype +/** Chat user's email addresss. */ +export type EmailAddress = newtype.Newtype + +/** Enumeration of all message types exchanged with the chat server. */ +export enum ChatMessageDataType { + // Messages internal to the server. + /** Like the `authenticate` message, but with user details. */ + internalAuthenticate = 'internal-authenticate', + /** Like the `authenticateAnonymously` message, but with user details. */ + internalAuthenticateAnonymously = 'internal-authenticate-anonymously', + // Messages from the server to the client. + /** Metadata for all threads associated with a user. */ + serverThreads = 'server-threads', + /** Metadata for the currently open thread. */ + serverThread = 'server-thread', + /** A message from the server to the client. */ + serverMessage = 'server-message', + /** An edited message from the server to the client. */ + serverEditedMessage = 'server-edited-message', + /** + * A message from the client to the server, sent from the server to the client as part of + * the message history. + */ + serverReplayedMessage = 'server-replayed-message', + // Messages from the client to the server. + /** The authentication token. */ + authenticate = 'authenticate', + /** Sent by a user that is not logged in. This is currently only used on the website. */ + authenticateAnonymously = 'authenticate-anonymously', + /** Sent when the user is requesting scrollback history. */ + historyBefore = 'history-before', + /** Create a new thread with an initial message. */ + newThread = 'new-thread', + /** Rename an existing thread. */ + renameThread = 'rename-thread', + /** Change the currently active thread. */ + switchThread = 'switch-thread', + /** A message from the client to the server. */ + message = 'message', + /** A reaction from the client. */ + reaction = 'reaction', + /** Removal of a reaction from the client. */ + removeReaction = 'remove-reaction', + /** + * Mark a message as read. Used to determine whether to show the notification dot + * next to a thread. + */ + markAsRead = 'mark-as-read', +} + +/** Properties common to all WebSocket messages. */ +interface ChatBaseMessageData { + readonly type: Type +} + +// ========================= +// === Internal messages === +// ========================= + +/** Sent to the main file with user information. */ +export interface ChatInternalAuthenticateMessageData + extends ChatBaseMessageData { + readonly userId: UserId + readonly userName: string +} + +/** Sent to the main file with user IP. */ +export interface ChatInternalAuthenticateAnonymouslyMessageData + extends ChatBaseMessageData { + readonly userId: UserId + readonly email: EmailAddress +} + +// ====================================== +// === Messages from server to client === +// ====================================== + +/** All possible emojis that can be used as a reaction on a chat message. */ +export type ReactionSymbol = '❤️' | '🎉' | '👀' | '👍' | '👎' | '😀' | '🙁' + +/** Basic metadata for a single thread. */ +export interface ThreadData { + readonly title: string + readonly id: ThreadId + readonly hasUnreadMessages: boolean +} + +/** Basic metadata for a all of a user's threads. */ +export interface ChatServerThreadsMessageData + extends ChatBaseMessageData { + readonly threads: ThreadData[] +} + +/** All possible message types that may trigger a {@link ChatServerThreadMessageData} response. */ +export type ChatServerThreadRequestType = + | ChatMessageDataType.authenticate + | ChatMessageDataType.historyBefore + | ChatMessageDataType.newThread + | ChatMessageDataType.switchThread + +/** + * Thread details and recent messages. + * This message is sent every time the user switches threads. + */ +export interface ChatServerThreadMessageData + extends ChatBaseMessageData { + /** The type of the message that triggered this response. */ + readonly requestType: ChatServerThreadRequestType + readonly title: string + readonly id: ThreadId + /** `true` if there is no more message history before these messages. */ + readonly isAtBeginning: boolean + readonly messages: (ChatServerMessageMessageData | ChatServerReplayedMessageMessageData)[] +} + +/** A regular chat message from the server to the client. */ +export interface ChatServerMessageMessageData + extends ChatBaseMessageData { + readonly id: MessageId + // This should not be `null` for staff, as registration is required. + // However, it will be `null` for users that have not yet set an avatar. + readonly authorAvatar: string | null + readonly authorName: string + readonly content: string + readonly reactions: ReactionSymbol[] + /** Milliseconds since the Unix epoch. */ + readonly timestamp: number + /** + * Milliseconds since the Unix epoch. + * Should only be present when receiving message history, because new messages cannot have been + * edited. + */ + readonly editedTimestamp: number | null +} + +/** A regular edited chat message from the server to the client. */ +export interface ChatServerEditedMessageMessageData + extends ChatBaseMessageData { + readonly id: MessageId + readonly content: string + /** Milliseconds since the Unix epoch. */ + readonly timestamp: number +} + +/** A replayed message from the client to the server. Includes the timestamp of the message. */ +export interface ChatServerReplayedMessageMessageData + extends ChatBaseMessageData { + readonly id: MessageId + readonly content: string + /** Milliseconds since the Unix epoch. */ + readonly timestamp: number +} + +/** A message from the server to the client. */ +export type ChatServerMessageData = + | ChatServerEditedMessageMessageData + | ChatServerMessageMessageData + | ChatServerReplayedMessageMessageData + | ChatServerThreadMessageData + | ChatServerThreadsMessageData + +// ====================================== +// === Messages from client to server === +// ====================================== + +/** Sent whenever the user opens the chat sidebar. */ +export interface ChatAuthenticateMessageData + extends ChatBaseMessageData { + readonly accessToken: string +} + +/** Sent whenever the user opens the chat sidebar. */ +export interface ChatAuthenticateAnonymouslyMessageData + extends ChatBaseMessageData { + readonly email: EmailAddress +} + +/** Sent when the user is requesting scrollback history. */ +export interface ChatHistoryBeforeMessageData + extends ChatBaseMessageData { + readonly messageId: MessageId +} + +/** Sent when the user sends a message in a new thread. */ +export interface ChatNewThreadMessageData + extends ChatBaseMessageData { + readonly title: string + /** Content of the first message, to reduce the number of round trips. */ + readonly content: string +} + +/** Sent when the user finishes editing the thread name in the chat title bar. */ +export interface ChatRenameThreadMessageData + extends ChatBaseMessageData { + readonly title: string + readonly threadId: ThreadId +} + +/** Sent when the user picks a thread from the dropdown. */ +export interface ChatSwitchThreadMessageData + extends ChatBaseMessageData { + readonly threadId: ThreadId +} + +/** A regular message from the client to the server. */ +export interface ChatMessageMessageData extends ChatBaseMessageData { + readonly threadId: ThreadId + readonly content: string +} + +/** A reaction to a message sent by staff. */ +export interface ChatReactionMessageData extends ChatBaseMessageData { + readonly messageId: MessageId + readonly reaction: ReactionSymbol +} + +/** Removal of a reaction from the client. */ +export interface ChatRemoveReactionMessageData + extends ChatBaseMessageData { + readonly messageId: MessageId + readonly reaction: ReactionSymbol +} + +/** Sent when the user scrolls to the bottom of a chat thread. */ +export interface ChatMarkAsReadMessageData + extends ChatBaseMessageData { + readonly threadId: ThreadId + readonly messageId: MessageId +} + +/** A message from the client to the server. */ +export type ChatClientMessageData = + | ChatAuthenticateAnonymouslyMessageData + | ChatAuthenticateMessageData + | ChatHistoryBeforeMessageData + | ChatMarkAsReadMessageData + | ChatMessageMessageData + | ChatNewThreadMessageData + | ChatReactionMessageData + | ChatRemoveReactionMessageData + | ChatRenameThreadMessageData + | ChatSwitchThreadMessageData diff --git a/app/gui/src/project-view/components/GraphEditor/__tests__/clipboard.test.ts b/app/gui/src/project-view/components/GraphEditor/__tests__/clipboard.test.ts index d50615c0be..9323a73c2e 100644 --- a/app/gui/src/project-view/components/GraphEditor/__tests__/clipboard.test.ts +++ b/app/gui/src/project-view/components/GraphEditor/__tests__/clipboard.test.ts @@ -1,4 +1,4 @@ -import testCases from '@/components/GraphEditor/__tests__/clipboardTestCases.json' assert { type: 'json' } +import testCases from '@/components/GraphEditor/__tests__/clipboardTestCases.json' with { type: 'json' } import { isSpreadsheetTsv, nodesFromClipboardContent, diff --git a/app/gui/src/project-view/mock/engine.ts b/app/gui/src/project-view/mock/engine.ts index ac620cea6e..76262c6cf2 100644 --- a/app/gui/src/project-view/mock/engine.ts +++ b/app/gui/src/project-view/mock/engine.ts @@ -28,7 +28,7 @@ import { uuidToBits } from 'ydoc-shared/uuid' import * as Y from 'yjs' import { mockFsDirectoryHandle, type FileTree } from '../util/convert/fsAccess' import { mockDataWSHandler as originalMockDataWSHandler } from './dataServer' -import mockDb from './mockSuggestions.json' assert { type: 'json' } +import mockDb from './mockSuggestions.json' with { type: 'json' } const mockProjectId = random.uuidv4() as Uuid const standardBase = 'Standard.Base' as QualifiedName diff --git a/app/gui/src/project-view/util/config.ts b/app/gui/src/project-view/util/config.ts index ba4168a506..f1b5de979d 100644 --- a/app/gui/src/project-view/util/config.ts +++ b/app/gui/src/project-view/util/config.ts @@ -1,5 +1,5 @@ /** @file Configuration options for an application. */ -import CONFIG from '@/config.json' assert { type: 'json' } +import CONFIG from '@/config.json' with { type: 'json' } export type ApplicationConfig = typeof baseConfig export type ApplicationConfigValue = ConfigValue diff --git a/app/ide-desktop/client/buildInfo.ts b/app/ide-desktop/client/buildInfo.ts index 64ccdec7c1..0688a95dd0 100644 --- a/app/ide-desktop/client/buildInfo.ts +++ b/app/ide-desktop/client/buildInfo.ts @@ -1,4 +1,4 @@ /** @file A re-export of `build.json` to avoid breakage when moving the path of this module. */ -import BUILD_INFO from '../../../build.json' assert { type: 'json' } +import BUILD_INFO from '../../../build.json' with { type: 'json' } export default BUILD_INFO diff --git a/app/ide-desktop/client/package.json b/app/ide-desktop/client/package.json index edb474f133..54f046ba82 100644 --- a/app/ide-desktop/client/package.json +++ b/app/ide-desktop/client/package.json @@ -33,7 +33,7 @@ "@babel/plugin-syntax-import-attributes": "^7.24.7", "@electron/notarize": "2.1.0", "@types/mime-types": "^2.1.1", - "@types/node": "^20.11.21", + "@types/node": "^22.9.0", "@types/opener": "^1.4.0", "@types/semver": "^7.5.8", "@types/tar": "^6.1.4", diff --git a/app/ide-desktop/client/src/contentConfig.ts b/app/ide-desktop/client/src/contentConfig.ts index 93bfbc31d8..7f367047be 100644 --- a/app/ide-desktop/client/src/contentConfig.ts +++ b/app/ide-desktop/client/src/contentConfig.ts @@ -36,6 +36,6 @@ export const VERSION = { // === Options === // =============== -import CONFIG from './config.json' assert { type: 'json' } +import CONFIG from './config.json' with { type: 'json' } export const OPTIONS = linkedDist.config.options.merge(linkedDist.config.objectToGroup(CONFIG)) diff --git a/app/ide-desktop/client/src/globals.d.ts b/app/ide-desktop/client/src/globals.d.ts index ac86271ddc..159c5df108 100644 --- a/app/ide-desktop/client/src/globals.d.ts +++ b/app/ide-desktop/client/src/globals.d.ts @@ -3,7 +3,7 @@ * These are from variables defined at build time, environment variables, * monkeypatching on `window` and generated code. */ -import * as buildJson from './../../build.json' assert { type: 'json' } +import * as buildJson from './../../build.json' with { type: 'json' } // ============= // === Types === diff --git a/app/ide-desktop/client/src/index.ts b/app/ide-desktop/client/src/index.ts index 98ca998feb..06dc097558 100644 --- a/app/ide-desktop/client/src/index.ts +++ b/app/ide-desktop/client/src/index.ts @@ -20,7 +20,7 @@ import * as portfinder from 'portfinder' import * as common from 'enso-common' import * as buildUtils from 'enso-common/src/buildUtils' -import GLOBAL_CONFIG from 'enso-common/src/config.json' assert { type: 'json' } +import GLOBAL_CONFIG from 'enso-common/src/config.json' with { type: 'json' } import * as authentication from '@/authentication' import * as config from '@/config' diff --git a/app/ide-desktop/client/src/server.ts b/app/ide-desktop/client/src/server.ts index 3136943514..65728d717c 100644 --- a/app/ide-desktop/client/src/server.ts +++ b/app/ide-desktop/client/src/server.ts @@ -13,7 +13,7 @@ import type * as vite from 'vite' import * as projectManagement from '@/projectManagement' import * as common from 'enso-common' -import GLOBAL_CONFIG from 'enso-common/src/config.json' assert { type: 'json' } +import GLOBAL_CONFIG from 'enso-common/src/config.json' with { type: 'json' } import * as ydocServer from 'ydoc-server' import * as contentConfig from '@/contentConfig' diff --git a/app/ydoc-server-nodejs/package.json b/app/ydoc-server-nodejs/package.json index f8e4763882..7fbcbca9bc 100644 --- a/app/ydoc-server-nodejs/package.json +++ b/app/ydoc-server-nodejs/package.json @@ -19,7 +19,7 @@ "ydoc-server": "workspace:*" }, "devDependencies": { - "@types/node": "^20.11.21", + "@types/node": "^22.9.0", "esbuild": "^0.23.0", "esbuild-plugin-wasm": "^1.1.0", "typescript": "^5.5.3" diff --git a/app/ydoc-server/package.json b/app/ydoc-server/package.json index a4d51c9860..79dbb2808b 100644 --- a/app/ydoc-server/package.json +++ b/app/ydoc-server/package.json @@ -34,7 +34,7 @@ "devDependencies": { "@fast-check/vitest": "^0.0.8", "@types/debug": "^4.1.12", - "@types/node": "^20.11.21", + "@types/node": "^22.9.0", "typescript": "^5.5.3", "vite-plugin-wasm": "^3.3.0", "vitest": "^1.3.1" diff --git a/app/ydoc-shared/package.json b/app/ydoc-shared/package.json index 116ad22dbd..73dc773745 100644 --- a/app/ydoc-shared/package.json +++ b/app/ydoc-shared/package.json @@ -53,7 +53,7 @@ "devDependencies": { "@fast-check/vitest": "^0.0.8", "@tsconfig/node20": "^20.1.4", - "@types/node": "^20.11.21", + "@types/node": "^22.9.0", "typescript": "^5.5.3", "vite-node": "^2.0.4", "vite-plugin-wasm": "^3.3.0", diff --git a/build.sbt b/build.sbt index 3e77bcaca2..46ffb1314b 100644 --- a/build.sbt +++ b/build.sbt @@ -649,7 +649,7 @@ lazy val componentModulesIds = "org.netbeans.api" % "org-netbeans-modules-sampler" % netbeansApiVersion, (`runtime-language-arrow` / projectID).value, (`syntax-rust-definition` / projectID).value, - (`ydoc-server` / projectID).value, + //(`ydoc-server` / projectID).value, (`profiling-utils` / projectID).value ) } @@ -737,7 +737,7 @@ lazy val componentModulesPaths = (`language-server-deps-wrapper` / Compile / exportedModuleBin).value, (`directory-watcher-wrapper` / Compile / exportedModuleBin).value, (`jna-wrapper` / Compile / exportedModuleBin).value, - (`ydoc-server` / Compile / exportedModuleBin).value, + //(`ydoc-server` / Compile / exportedModuleBin).value, (`library-manager` / Compile / exportedModuleBin).value, (`logging-config` / Compile / exportedModuleBin).value, (`logging-utils` / Compile / exportedModuleBin).value, @@ -1718,8 +1718,8 @@ lazy val `project-manager` = (project in file("lib/scala/project-manager")) }, Test / addModules := Seq( (`syntax-rust-definition` / javaModuleName).value, - (`profiling-utils` / javaModuleName).value, - (`ydoc-server` / javaModuleName).value + (`profiling-utils` / javaModuleName).value + //(`ydoc-server` / javaModuleName).value ), Test / moduleDependencies := { GraalVM.modules ++ GraalVM.langsPkgs ++ logbackPkg ++ helidon ++ Seq( @@ -1729,8 +1729,8 @@ lazy val `project-manager` = (project in file("lib/scala/project-manager")) }, Test / internalModuleDependencies := Seq( (`profiling-utils` / Compile / exportedModule).value, - (`syntax-rust-definition` / Compile / exportedModule).value, - (`ydoc-server` / Compile / exportedModule).value + (`syntax-rust-definition` / Compile / exportedModule).value + //(`ydoc-server` / Compile / exportedModule).value ), Test / javaOptions ++= testLogProviderOptions, Test / test := (Test / test).dependsOn(buildEngineDistribution).value @@ -1778,7 +1778,7 @@ lazy val `project-manager` = (project in file("lib/scala/project-manager")) .dependsOn(testkit % Test) .dependsOn(`runtime-version-manager-test` % Test) .dependsOn(`logging-service-logback` % "test->test") - .dependsOn(`ydoc-server` % Test) + //.dependsOn(`ydoc-server` % Test) .dependsOn(`profiling-utils` % Test) lazy val `json-rpc-server` = project @@ -2252,7 +2252,7 @@ lazy val `language-server` = (project in file("engine/language-server")) (`language-server-deps-wrapper` / Compile / exportedModule).value, (`directory-watcher-wrapper` / Compile / exportedModule).value, (`engine-runner-common` / Compile / exportedModule).value, - (`ydoc-server` / Compile / exportedModule).value, + //(`ydoc-server` / Compile / exportedModule).value, (`logging-utils` / Compile / exportedModule).value, (`logging-utils-akka` / Compile / exportedModule).value, (`logging-service` / Compile / exportedModule).value, @@ -2337,7 +2337,7 @@ lazy val `language-server` = (project in file("engine/language-server")) (`runtime-instrument-repl-debugger` / Compile / exportedModule).value, (`runtime-instrument-id-execution` / Compile / exportedModule).value, (`runtime-language-epb` / Compile / exportedModule).value, - (`ydoc-server` / Compile / exportedModule).value, + //(`ydoc-server` / Compile / exportedModule).value, (`syntax-rust-definition` / Compile / exportedModule).value, (`profiling-utils` / Compile / exportedModule).value, (`logging-service-logback` / Compile / exportedModule).value, @@ -2389,7 +2389,7 @@ lazy val `language-server` = (project in file("engine/language-server")) javaModuleName.value, (`syntax-rust-definition` / javaModuleName).value, (`profiling-utils` / javaModuleName).value, - (`ydoc-server` / javaModuleName).value, + //(`ydoc-server` / javaModuleName).value, (`library-manager` / javaModuleName).value ), Test / addReads := { @@ -2444,7 +2444,7 @@ lazy val `language-server` = (project in file("engine/language-server")) .dependsOn(`logging-service-logback` % "test->test") .dependsOn(`library-manager-test` % Test) .dependsOn(`runtime-version-manager-test` % Test) - .dependsOn(`ydoc-server`) +//.dependsOn(`ydoc-server`) lazy val cleanInstruments = taskKey[Unit]( "Cleans fragile class files to force a full recompilation and preserve" + @@ -2861,7 +2861,7 @@ lazy val `runtime-integration-tests` = (`runtime-instrument-repl-debugger` / Compile / exportedModule).value, (`runtime-instrument-id-execution` / Compile / exportedModule).value, (`runtime-language-epb` / Compile / exportedModule).value, - (`ydoc-server` / Compile / exportedModule).value, + //(`ydoc-server` / Compile / exportedModule).value, (`syntax-rust-definition` / Compile / exportedModule).value, (`profiling-utils` / Compile / exportedModule).value, (`logging-service-logback` / Compile / exportedModule).value, @@ -2911,7 +2911,7 @@ lazy val `runtime-integration-tests` = "scala.library", (`runtime` / javaModuleName).value, (`runtime-test-instruments` / javaModuleName).value, - (`ydoc-server` / javaModuleName).value, + //(`ydoc-server` / javaModuleName).value, (`runtime-instrument-common` / javaModuleName).value, (`text-buffer` / javaModuleName).value, "truffle.tck.tests" @@ -3021,7 +3021,7 @@ lazy val `runtime-benchmarks` = (`runtime-instrument-id-execution` / Compile / exportedModule).value, (`runtime-language-epb` / Compile / exportedModule).value, (`runtime-language-arrow` / Compile / exportedModule).value, - (`ydoc-server` / Compile / exportedModule).value, + //(`ydoc-server` / Compile / exportedModule).value, (`benchmarks-common` / Compile / exportedModule).value, (`syntax-rust-definition` / Compile / exportedModule).value, (`profiling-utils` / Compile / exportedModule).value, @@ -4043,7 +4043,7 @@ lazy val `std-benchmarks` = (project in file("std-bits/benchmarks")) }.evaluated ) .dependsOn(`bench-processor`) - .dependsOn(`ydoc-server`) + //.dependsOn(`ydoc-server`) .dependsOn(`runtime-language-arrow`) .dependsOn(`syntax-rust-definition`) .dependsOn(`profiling-utils`) diff --git a/distribution/engine/THIRD-PARTY/NOTICE b/distribution/engine/THIRD-PARTY/NOTICE index 73506659c0..e3c004ac92 100644 --- a/distribution/engine/THIRD-PARTY/NOTICE +++ b/distribution/engine/THIRD-PARTY/NOTICE @@ -1,16 +1,6 @@ Enso Copyright 2020 - 2024 New Byte Order sp. z o. o. -'logback-classic', licensed under the GNU Lesser General Public License, is distributed with the engine. -The license file can be found at `licenses/GNU_Lesser_General_Public_License`. -Copyright notices related to this dependency can be found in the directory `ch.qos.logback.logback-classic-1.3.7`. - - -'logback-core', licensed under the GNU Lesser General Public License, is distributed with the engine. -The license file can be found at `licenses/GNU_Lesser_General_Public_License`. -Copyright notices related to this dependency can be found in the directory `ch.qos.logback.logback-core-1.3.7`. - - 'shapeless_2.13', licensed under the Apache 2, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `com.chuusai.shapeless_2.13-2.3.10`. @@ -206,186 +196,11 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `io.github.java-diff-utils.java-diff-utils-4.12`. -'helidon-builder-api', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.builder.helidon-builder-api-4.1.2`. - - -'helidon-common-features', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.features.helidon-common-features-4.1.2`. - - -'helidon-common-features-api', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.features.helidon-common-features-api-4.1.2`. - - -'helidon-common', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-4.1.2`. - - -'helidon-common-buffers', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-buffers-4.1.2`. - - -'helidon-common-config', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-config-4.1.2`. - - -'helidon-common-configurable', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-configurable-4.1.2`. - - -'helidon-common-context', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-context-4.1.2`. - - -'helidon-common-key-util', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-key-util-4.1.2`. - - -'helidon-common-mapper', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-mapper-4.1.2`. - - -'helidon-common-media-type', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-media-type-4.1.2`. - - -'helidon-common-parameters', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-parameters-4.1.2`. - - -'helidon-common-security', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-security-4.1.2`. - - -'helidon-common-socket', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-socket-4.1.2`. - - -'helidon-common-task', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-task-4.1.2`. - - -'helidon-common-tls', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-tls-4.1.2`. - - -'helidon-common-types', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-types-4.1.2`. - - -'helidon-common-uri', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.common.helidon-common-uri-4.1.2`. - - -'helidon-config', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.config.helidon-config-4.1.2`. - - -'helidon', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.helidon-4.1.2`. - - -'helidon-http-encoding', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.http.encoding.helidon-http-encoding-4.1.2`. - - -'helidon-http', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.http.helidon-http-4.1.2`. - - -'helidon-http-media', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.http.media.helidon-http-media-4.1.2`. - - -'helidon-inject-api', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.inject.helidon-inject-api-4.1.2`. - - -'helidon-logging-common', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.logging.helidon-logging-common-4.1.2`. - - -'helidon-webclient', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.webclient.helidon-webclient-4.1.2`. - - -'helidon-webclient-api', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.webclient.helidon-webclient-api-4.1.2`. - - -'helidon-webclient-http1', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.webclient.helidon-webclient-http1-4.1.2`. - - -'helidon-webclient-websocket', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.webclient.helidon-webclient-websocket-4.1.2`. - - -'helidon-webserver', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.webserver.helidon-webserver-4.1.2`. - - -'helidon-webserver-websocket', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.webserver.helidon-webserver-websocket-4.1.2`. - - -'helidon-websocket', licensed under the Apache 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.helidon.websocket.helidon-websocket-4.1.2`. - - 'directory-watcher', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `io.methvin.directory-watcher-0.18.0`. -'sentry', licensed under the MIT, is distributed with the engine. -The license file can be found at `licenses/MIT`. -Copyright notices related to this dependency can be found in the directory `io.sentry.sentry-6.28.0`. - - -'sentry-logback', licensed under the MIT, is distributed with the engine. -The license file can be found at `licenses/MIT`. -Copyright notices related to this dependency can be found in the directory `io.sentry.sentry-logback-6.28.0`. - - -'jakarta.inject-api', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `jakarta.inject.jakarta.inject-api-2.0.1`. - - 'jna', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `net.java.dev.jna.jna-5.14.0`. @@ -491,11 +306,6 @@ The license file can be found at `licenses/Universal_Permissive_License__Version Copyright notices related to this dependency can be found in the directory `org.graalvm.shadowed.xz-24.0.0`. -'chromeinspector-tool', licensed under the GNU General Public License, version 2, with the Classpath Exception, is distributed with the engine. -The license file can be found at `licenses/GNU_General_Public_License__version_2__with_the_Classpath_Exception`. -Copyright notices related to this dependency can be found in the directory `org.graalvm.tools.chromeinspector-tool-24.0.0`. - - 'profiler-tool', licensed under the GNU General Public License, version 2, with the Classpath Exception, is distributed with the engine. The license file can be found at `licenses/GNU_General_Public_License__version_2__with_the_Classpath_Exception`. Copyright notices related to this dependency can be found in the directory `org.graalvm.tools.profiler-tool-24.0.0`. diff --git a/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.3.7/NOTICES b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.3.7/NOTICES deleted file mode 100644 index e0c201ae2b..0000000000 --- a/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.3.7/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 1999-2010, QOS.ch. All rights reserved. - -Copyright (C) 1999-2015, QOS.ch. All rights reserved. diff --git a/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-core-1.3.7/NOTICES b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-core-1.3.7/NOTICES deleted file mode 100644 index 2700cac3a6..0000000000 --- a/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-core-1.3.7/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 1999-2002, QOS.ch. All rights reserved. - -Logback: the reliable, generic, fast and flexible logging framework. Copyright (C) 1999-2015, QOS.ch. All rights diff --git a/distribution/engine/THIRD-PARTY/io.helidon.builder.helidon-builder-api-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.builder.helidon-builder-api-4.1.2/NOTICES deleted file mode 100644 index 15a5ed30b4..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.builder.helidon-builder-api-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.features.helidon-common-features-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.features.helidon-common-features-4.1.2/NOTICES deleted file mode 100644 index 330f40d1d6..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.features.helidon-common-features-4.1.2/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2020, 2022 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.features.helidon-common-features-api-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.features.helidon-common-features-api-4.1.2/NOTICES deleted file mode 100644 index fe34ffba42..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.features.helidon-common-features-api-4.1.2/NOTICES +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-4.1.2/NOTICES deleted file mode 100644 index 194f020204..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-4.1.2/NOTICES +++ /dev/null @@ -1,29 +0,0 @@ -Copyright (c) 2017, 2021 Oracle and/or its affiliates. - -Copyright (c) 2017, 2022 Oracle and/or its affiliates. - -Copyright (c) 2017, 2024 Oracle and/or its affiliates. - -Copyright (c) 2018, 2021 Oracle and/or its affiliates. - -Copyright (c) 2018, 2024 Oracle and/or its affiliates. - -Copyright (c) 2019, 2020 Oracle and/or its affiliates. - -Copyright (c) 2019, 2021 Oracle and/or its affiliates. - -Copyright (c) 2019, 2022 Oracle and/or its affiliates. - -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2020 Oracle and/or its affiliates. - -Copyright (c) 2021 Oracle and/or its affiliates. - -Copyright (c) 2021, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-buffers-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-buffers-4.1.2/NOTICES deleted file mode 100644 index cfe342833d..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-buffers-4.1.2/NOTICES +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2018, 2022 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-config-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-config-4.1.2/NOTICES deleted file mode 100644 index c8ecd4959f..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-config-4.1.2/NOTICES +++ /dev/null @@ -1,15 +0,0 @@ -Copyright (c) 2017, 2022 Oracle and/or its affiliates. - -Copyright (c) 2018, 2023 Oracle and/or its affiliates. - -Copyright (c) 2018, 2024 Oracle and/or its affiliates. - -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-configurable-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-configurable-4.1.2/NOTICES deleted file mode 100644 index 010f077bcc..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-configurable-4.1.2/NOTICES +++ /dev/null @@ -1,25 +0,0 @@ -Copyright (c) 2017, 2021 Oracle and/or its affiliates. - -Copyright (c) 2017, 2022 Oracle and/or its affiliates. - -Copyright (c) 2017, 2023 Oracle and/or its affiliates. - -Copyright (c) 2018, 2023 Oracle and/or its affiliates. - -Copyright (c) 2018, 2024 Oracle and/or its affiliates. - -Copyright (c) 2019, 2022 Oracle and/or its affiliates. - -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-context-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-context-4.1.2/NOTICES deleted file mode 100644 index d75ac2a068..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-context-4.1.2/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -Copyright (c) 2019, 2020 Oracle and/or its affiliates. - -Copyright (c) 2019, 2021 Oracle and/or its affiliates. - -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2019, 2024 Oracle and/or its affiliates. - -Copyright (c) 2020 Oracle and/or its affiliates. - -Copyright (c) 2020, 2022 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-key-util-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-key-util-4.1.2/NOTICES deleted file mode 100644 index 4b546c8074..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-key-util-4.1.2/NOTICES +++ /dev/null @@ -1,15 +0,0 @@ -Copyright (c) 2017, 2021 Oracle and/or its affiliates. - -Copyright (c) 2017, 2023 Oracle and/or its affiliates. - -Copyright (c) 2017, 2024 Oracle and/or its affiliates. - -Copyright (c) 2018, 2024 Oracle and/or its affiliates. - -Copyright (c) 2021, 2022 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-mapper-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-mapper-4.1.2/NOTICES deleted file mode 100644 index a5cfc2a4ca..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-mapper-4.1.2/NOTICES +++ /dev/null @@ -1,13 +0,0 @@ -Copyright (c) 2019, 2021 Oracle and/or its affiliates. - -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2019, 2024 Oracle and/or its affiliates. - -Copyright (c) 2020, 2021 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-media-type-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-media-type-4.1.2/NOTICES deleted file mode 100644 index dd83d7b1c8..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-media-type-4.1.2/NOTICES +++ /dev/null @@ -1,15 +0,0 @@ -Copyright (c) 2019, 2021 Oracle and/or its affiliates. - -Copyright (c) 2019, 2022 Oracle and/or its affiliates. - -Copyright (c) 2019, 2023 Oracle and/or its affiliates. - -Copyright (c) 2019, 2024 Oracle and/or its affiliates. - -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-parameters-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-parameters-4.1.2/NOTICES deleted file mode 100644 index 795fa0787e..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-parameters-4.1.2/NOTICES +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-security-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-security-4.1.2/NOTICES deleted file mode 100644 index 795fa0787e..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-security-4.1.2/NOTICES +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-socket-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-socket-4.1.2/NOTICES deleted file mode 100644 index 61ab45e679..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-socket-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-task-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-task-4.1.2/NOTICES deleted file mode 100644 index 1980048730..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-task-4.1.2/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-tls-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-tls-4.1.2/NOTICES deleted file mode 100644 index 15a5ed30b4..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-tls-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-types-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-types-4.1.2/NOTICES deleted file mode 100644 index 15a5ed30b4..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-types-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-uri-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-uri-4.1.2/NOTICES deleted file mode 100644 index 8d461bc5b8..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.common.helidon-common-uri-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.config.helidon-config-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.config.helidon-config-4.1.2/NOTICES deleted file mode 100644 index 6de4a73835..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.config.helidon-config-4.1.2/NOTICES +++ /dev/null @@ -1,43 +0,0 @@ -Copyright (c) 2017, 2020 Oracle and/or its affiliates. - -Copyright (c) 2017, 2021 Oracle and/or its affiliates. - -Copyright (c) 2017, 2022 Oracle and/or its affiliates. - -Copyright (c) 2017, 2023 Oracle and/or its affiliates. - -Copyright (c) 2017, 2024 Oracle and/or its affiliates. - -Copyright (c) 2018, 2022 Oracle and/or its affiliates. - -Copyright (c) 2018, 2023 Oracle and/or its affiliates. - -Copyright (c) 2019, 2020 Oracle and/or its affiliates. - -Copyright (c) 2019, 2021 Oracle and/or its affiliates. - -Copyright (c) 2019, 2022 Oracle and/or its affiliates. - -Copyright (c) 2019, 2024 Oracle and/or its affiliates. - -Copyright (c) 2020 Oracle and/or its affiliates. - -Copyright (c) 2020, 2021 Oracle and/or its affiliates. - -Copyright (c) 2020, 2022 Oracle and/or its affiliates. - -Copyright (c) 2020, 2023 Oracle and/or its affiliates. - -Copyright (c) 2020, 2024 Oracle and/or its affiliates. - -Copyright (c) 2021 Oracle and/or its affiliates. - -Copyright (c) 2021, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.helidon-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.helidon-4.1.2/NOTICES deleted file mode 100644 index 7cbc488293..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.helidon-4.1.2/NOTICES +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.http.encoding.helidon-http-encoding-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.http.encoding.helidon-http-encoding-4.1.2/NOTICES deleted file mode 100644 index 15a5ed30b4..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.http.encoding.helidon-http-encoding-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.http.helidon-http-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.http.helidon-http-4.1.2/NOTICES deleted file mode 100644 index a016ca527f..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.http.helidon-http-4.1.2/NOTICES +++ /dev/null @@ -1,17 +0,0 @@ -Copyright (c) 2017, 2023 Oracle and/or its affiliates. - -Copyright (c) 2018, 2023 Oracle and/or its affiliates. - -Copyright (c) 2018, 2024 Oracle and/or its affiliates. - -Copyright (c) 2021, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.http.media.helidon-http-media-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.http.media.helidon-http-media-4.1.2/NOTICES deleted file mode 100644 index 15a5ed30b4..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.http.media.helidon-http-media-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.inject.helidon-inject-api-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.inject.helidon-inject-api-4.1.2/NOTICES deleted file mode 100644 index 1d262af0ff..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.inject.helidon-inject-api-4.1.2/NOTICES +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.logging.helidon-logging-common-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.logging.helidon-logging-common-4.1.2/NOTICES deleted file mode 100644 index 68c9a9a0b6..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.logging.helidon-logging-common-4.1.2/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -Copyright (c) 2019, 2022 Oracle and/or its affiliates. - -Copyright (c) 2020 Oracle and/or its affiliates. - -Copyright (c) 2020, 2022 Oracle and/or its affiliates. - -Copyright (c) 2020, 2023 Oracle and/or its affiliates. - -Copyright (c) 2020, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-4.1.2/NOTICES deleted file mode 100644 index c3173c6be1..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-4.1.2/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-api-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-api-4.1.2/NOTICES deleted file mode 100644 index 65a068c931..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-api-4.1.2/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -Copyright (c) 2020, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-http1-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-http1-4.1.2/NOTICES deleted file mode 100644 index 15a5ed30b4..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-http1-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-websocket-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-websocket-4.1.2/NOTICES deleted file mode 100644 index 3ef0464d4e..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.webclient.helidon-webclient-websocket-4.1.2/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -helidon-codegen-helidon-copyright - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.webserver.helidon-webserver-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.webserver.helidon-webserver-4.1.2/NOTICES deleted file mode 100644 index ce895e089b..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.webserver.helidon-webserver-4.1.2/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -Copyright (c) 2021, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.webserver.helidon-webserver-websocket-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.webserver.helidon-webserver-websocket-4.1.2/NOTICES deleted file mode 100644 index e12e3e89f9..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.webserver.helidon-webserver-websocket-4.1.2/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -helidon-codegen-helidon-copyright - -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. - -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.helidon.websocket.helidon-websocket-4.1.2/NOTICES b/distribution/engine/THIRD-PARTY/io.helidon.websocket.helidon-websocket-4.1.2/NOTICES deleted file mode 100644 index ef6fb31603..0000000000 --- a/distribution/engine/THIRD-PARTY/io.helidon.websocket.helidon-websocket-4.1.2/NOTICES +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. - -Copyright (c) 2022, 2024 Oracle and/or its affiliates. - -Copyright (c) 2023 Oracle and/or its affiliates. - -Copyright (c) 2023, 2024 Oracle and/or its affiliates. diff --git a/distribution/engine/THIRD-PARTY/io.sentry.sentry-6.28.0/NOTICES b/distribution/engine/THIRD-PARTY/io.sentry.sentry-6.28.0/NOTICES deleted file mode 100644 index c866911f9e..0000000000 --- a/distribution/engine/THIRD-PARTY/io.sentry.sentry-6.28.0/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 2010 Google Inc. - -this work for additional information regarding copyright ownership. diff --git a/distribution/engine/THIRD-PARTY/io.sentry.sentry-logback-6.28.0/NOTICES b/distribution/engine/THIRD-PARTY/io.sentry.sentry-logback-6.28.0/NOTICES deleted file mode 100644 index 17c7e5c470..0000000000 --- a/distribution/engine/THIRD-PARTY/io.sentry.sentry-logback-6.28.0/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 2010 Google Inc. - - diff --git a/distribution/engine/THIRD-PARTY/jakarta.inject.jakarta.inject-api-2.0.1/NOTICE.md b/distribution/engine/THIRD-PARTY/jakarta.inject.jakarta.inject-api-2.0.1/NOTICE.md deleted file mode 100644 index c96d639fa1..0000000000 --- a/distribution/engine/THIRD-PARTY/jakarta.inject.jakarta.inject-api-2.0.1/NOTICE.md +++ /dev/null @@ -1,41 +0,0 @@ -# Notices for Eclipse Jakarta Dependency Injection - -This content is produced and maintained by the Eclipse Jakarta Dependency Injection project. - -* Project home: https://projects.eclipse.org/projects/cdi.batch - -## Trademarks - -Jakarta Dependency Injection is a trademark of the Eclipse Foundation. - -## Copyright - -All content is the property of the respective authors or their employers. For -more information regarding authorship of content, please consult the listed -source code repository logs. - -## Declared Project Licenses - -This program and the accompanying materials are made available under the terms -of the Apache License, Version 2.0 which is available at -https://www.apache.org/licenses/LICENSE-2.0. - -SPDX-License-Identifier: Apache-2.0 - -## Source Code - -The project maintains the following source code repositories: - -https://github.com/eclipse-ee4j/injection-api -https://github.com/eclipse-ee4j/injection-spec -https://github.com/eclipse-ee4j/injection-tck - -## Third-party Content - -This project leverages the following third party content. - -None - -## Cryptography - -None \ No newline at end of file diff --git a/distribution/engine/THIRD-PARTY/jakarta.inject.jakarta.inject-api-2.0.1/NOTICES b/distribution/engine/THIRD-PARTY/jakarta.inject.jakarta.inject-api-2.0.1/NOTICES deleted file mode 100644 index e942d7cfa5..0000000000 --- a/distribution/engine/THIRD-PARTY/jakarta.inject.jakarta.inject-api-2.0.1/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright © 2018,2020 Eclipse Foundation.
- -Copyright (C) 2009 The JSR-330 Expert Group diff --git a/distribution/engine/THIRD-PARTY/licenses/GNU_Lesser_General_Public_License b/distribution/engine/THIRD-PARTY/licenses/GNU_Lesser_General_Public_License deleted file mode 100644 index 4362b49151..0000000000 --- a/distribution/engine/THIRD-PARTY/licenses/GNU_Lesser_General_Public_License +++ /dev/null @@ -1,502 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/distribution/engine/THIRD-PARTY/org.graalvm.tools.chromeinspector-tool-24.0.0/NOTICES b/distribution/engine/THIRD-PARTY/org.graalvm.tools.chromeinspector-tool-24.0.0/NOTICES deleted file mode 100644 index 2254d51226..0000000000 --- a/distribution/engine/THIRD-PARTY/org.graalvm.tools.chromeinspector-tool-24.0.0/NOTICES +++ /dev/null @@ -1,43 +0,0 @@ -Copyright (c) 2010-2020 Nathan Rajlich - -Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2019, 2019, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. - -Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved. - -DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - -The above copyright notice and this permission notice shall be diff --git a/engine/language-server/src/main/java/module-info.java b/engine/language-server/src/main/java/module-info.java index 40493d9e5e..eb7b078e29 100644 --- a/engine/language-server/src/main/java/module-info.java +++ b/engine/language-server/src/main/java/module-info.java @@ -36,7 +36,7 @@ module org.enso.language.server { requires org.enso.version.output; requires org.enso.text.buffer; requires org.enso.task.progress.notifications; - requires org.enso.ydoc; + //requires org.enso.ydoc; exports org.enso.languageserver.boot; exports org.enso.languageserver.filemanager to scala.library; diff --git a/engine/language-server/src/main/java/org/enso/languageserver/boot/resource/YdocInitialization.java b/engine/language-server/src/main/java/org/enso/languageserver/boot/resource/YdocInitialization.java index 1d3795deb8..840c6288e1 100644 --- a/engine/language-server/src/main/java/org/enso/languageserver/boot/resource/YdocInitialization.java +++ b/engine/language-server/src/main/java/org/enso/languageserver/boot/resource/YdocInitialization.java @@ -2,8 +2,7 @@ package org.enso.languageserver.boot.resource; import java.util.concurrent.Executor; import org.enso.languageserver.boot.ComponentSupervisor; -import org.enso.languageserver.boot.config.ApplicationConfig; -import org.enso.ydoc.Ydoc; +// import org.enso.ydoc.Ydoc; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -25,7 +24,7 @@ public final class YdocInitialization extends LockedInitialization { ? false : Boolean.parseBoolean(System.getenv(ENABLED_YDOC)); if (ydocEnabled) { - logger.debug("Starting Ydoc server..."); + /*logger.debug("Starting Ydoc server..."); var applicationConfig = ApplicationConfig.load(); var ydoc = Ydoc.builder() @@ -38,7 +37,8 @@ public final class YdocInitialization extends LockedInitialization { } catch (Exception e) { throw new RuntimeException(e); } - logger.debug("Started Ydoc server"); + logger.debug("Started Ydoc server");*/ + logger.debug("Limitation: Ydoc server must be started independently from Language Server"); } else { logger.debug("Reverting to Node.js Ydoc"); } diff --git a/lib/js/runner/package.json b/lib/js/runner/package.json index fd8fb6e2c6..fcd68dbbc5 100644 --- a/lib/js/runner/package.json +++ b/lib/js/runner/package.json @@ -21,7 +21,7 @@ "url": "https://github.com/enso-org/enso/issues" }, "devDependencies": { - "@types/node": "^20.11.21", + "@types/node": "^22.9.0", "typescript": "^5.5.3" }, "dependencies": { diff --git a/lib/js/runner/src/runner/config.ts b/lib/js/runner/src/runner/config.ts index 504f9c6cfe..bba09b875e 100644 --- a/lib/js/runner/src/runner/config.ts +++ b/lib/js/runner/src/runner/config.ts @@ -1,6 +1,6 @@ /** @file Configuration options for the application. */ -import * as jsonCfg from './config.json' assert { type: 'json' } +import * as jsonCfg from './config.json' with { type: 'json' } import { logger } from './log' export const DEFAULT_ENTRY_POINT = 'ide' diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 98abc5430e..7630e5b3d1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -93,7 +93,7 @@ importers: version: 18.3.1 vitest: specifier: ^1.3.1 - version: 1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1) + version: 1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1) vue: specifier: ^3.5.2 version: 3.5.2(typescript@5.5.3) @@ -147,7 +147,7 @@ importers: version: 6.28.3 '@fast-check/vitest': specifier: ^0.0.8 - version: 0.0.8(vitest@1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1)) + version: 0.0.8(vitest@1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1)) '@floating-ui/vue': specifier: ^1.0.6 version: 1.1.0(vue@3.5.2(typescript@5.5.3)) @@ -373,10 +373,10 @@ importers: version: 4.9.28 '@histoire/plugin-vue': specifier: ^0.17.12 - version: 0.17.17(histoire@0.17.17(@types/node@20.11.21)(lightningcss@1.25.1)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)))(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) + version: 0.17.17(histoire@0.17.17(@types/node@22.9.0)(lightningcss@1.25.1)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)))(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) '@modyfi/vite-plugin-yaml': specifier: ^1.0.4 - version: 1.1.0(rollup@4.24.0)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + version: 1.1.0(rollup@4.24.0)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) '@open-rpc/server-js': specifier: ^1.9.4 version: 1.9.5 @@ -411,8 +411,8 @@ importers: specifier: ^2.7.13 version: 2.7.21 '@types/node': - specifier: ^20.11.21 - version: 20.11.21 + specifier: ^22.9.0 + version: 22.9.0 '@types/react': specifier: ^18.0.27 version: 18.3.3 @@ -436,13 +436,13 @@ importers: version: 8.5.10 '@vitejs/plugin-react': specifier: ^4.3.3 - version: 4.3.3(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + version: 4.3.3(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) '@vitejs/plugin-vue': specifier: ^5.0.4 - version: 5.0.5(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) + version: 5.0.5(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) '@vitest/coverage-v8': specifier: ^1.3.1 - version: 1.6.0(vitest@1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1)) + version: 1.6.0(vitest@1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1)) '@vue/test-utils': specifier: ^2.4.6 version: 2.4.6 @@ -461,9 +461,6 @@ importers: d3: specifier: ^7.4.0 version: 7.9.0 - enso-chat: - specifier: git://github.com/enso-org/enso-bot - version: enso-support@https://codeload.github.com/enso-org/enso-bot/tar.gz/aa903b6e639a31930ee4fff55c5639e4471fa48d fast-check: specifier: ^3.15.0 version: 3.19.0 @@ -475,7 +472,7 @@ importers: version: 4.11.0 histoire: specifier: ^0.17.2 - version: 0.17.17(@types/node@20.11.21)(lightningcss@1.25.1)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + version: 0.17.17(@types/node@22.9.0)(lightningcss@1.25.1)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) jsdom: specifier: ^24.1.0 version: 24.1.0 @@ -520,16 +517,16 @@ importers: version: 5.5.3 vite: specifier: ^5.4.10 - version: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + version: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) vite-plugin-vue-devtools: specifier: 7.3.7 - version: 7.3.7(rollup@4.24.0)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) + version: 7.3.7(rollup@4.24.0)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) vite-plugin-wasm: specifier: ^3.3.0 - version: 3.3.0(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + version: 3.3.0(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) vitest: specifier: ^1.3.1 - version: 1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1) + version: 1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1) vue-react-wrapper: specifier: ^0.3.1 version: 0.3.1(vue@3.5.2(typescript@5.5.3)) @@ -592,8 +589,8 @@ importers: specifier: ^2.1.1 version: 2.1.4 '@types/node': - specifier: ^20.11.21 - version: 20.11.21 + specifier: ^22.9.0 + version: 22.9.0 '@types/opener': specifier: ^1.4.0 version: 1.4.3 @@ -644,7 +641,7 @@ importers: version: 4.16.0 vite: specifier: ^5.4.10 - version: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + version: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) app/ide-desktop/icons: devDependencies: @@ -692,22 +689,22 @@ importers: devDependencies: '@fast-check/vitest': specifier: ^0.0.8 - version: 0.0.8(vitest@1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1)) + version: 0.0.8(vitest@1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1)) '@types/debug': specifier: ^4.1.12 version: 4.1.12 '@types/node': - specifier: ^20.11.21 - version: 20.11.21 + specifier: ^22.9.0 + version: 22.9.0 typescript: specifier: ^5.5.3 version: 5.5.3 vite-plugin-wasm: specifier: ^3.3.0 - version: 3.3.0(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + version: 3.3.0(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) vitest: specifier: ^1.3.1 - version: 1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1) + version: 1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1) app/ydoc-server-nodejs: dependencies: @@ -716,8 +713,8 @@ importers: version: link:../ydoc-server devDependencies: '@types/node': - specifier: ^20.11.21 - version: 20.11.21 + specifier: ^22.9.0 + version: 22.9.0 esbuild: specifier: ^0.23.0 version: 0.23.0 @@ -800,25 +797,25 @@ importers: devDependencies: '@fast-check/vitest': specifier: ^0.0.8 - version: 0.0.8(vitest@1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1)) + version: 0.0.8(vitest@1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1)) '@tsconfig/node20': specifier: ^20.1.4 version: 20.1.4 '@types/node': - specifier: ^20.11.21 - version: 20.11.21 + specifier: ^22.9.0 + version: 22.9.0 typescript: specifier: ^5.5.3 version: 5.5.3 vite-node: specifier: ^2.0.4 - version: 2.0.4(@types/node@20.11.21)(lightningcss@1.25.1) + version: 2.0.4(@types/node@22.9.0)(lightningcss@1.25.1) vite-plugin-wasm: specifier: ^3.3.0 - version: 3.3.0(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + version: 3.3.0(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) vitest: specifier: ^1.3.1 - version: 1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1) + version: 1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1) lib/js/runner: dependencies: @@ -827,8 +824,8 @@ importers: version: 0.9.30 devDependencies: '@types/node': - specifier: ^20.11.21 - version: 20.11.21 + specifier: ^22.9.0 + version: 22.9.0 typescript: specifier: ^5.5.3 version: 5.5.3 @@ -1328,34 +1325,6 @@ packages: resolution: {integrity: sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==} engines: {node: '>= 8.9.0'} - '@discordjs/builders@1.8.2': - resolution: {integrity: sha512-6wvG3QaCjtMu0xnle4SoOIeFB4y6fKMN6WZfy3BMKJdQQtPLik8KGzDwBVL/+wTtcE/ZlFjgEk74GublyEVZ7g==} - engines: {node: '>=16.11.0'} - - '@discordjs/collection@1.5.3': - resolution: {integrity: sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==} - engines: {node: '>=16.11.0'} - - '@discordjs/collection@2.1.0': - resolution: {integrity: sha512-mLcTACtXUuVgutoznkh6hS3UFqYirDYAg5Dc1m8xn6OvPjetnUlf/xjtqnnc47OwWdaoCQnHmHh9KofhD6uRqw==} - engines: {node: '>=18'} - - '@discordjs/formatters@0.4.0': - resolution: {integrity: sha512-fJ06TLC1NiruF35470q3Nr1bi95BdvKFAF+T5bNfZJ4bNdqZ3VZ+Ttg6SThqTxm6qumSG3choxLBHMC69WXNXQ==} - engines: {node: '>=16.11.0'} - - '@discordjs/rest@2.3.0': - resolution: {integrity: sha512-C1kAJK8aSYRv3ZwMG8cvrrW4GN0g5eMdP8AuN8ODH5DyOCbHgJspze1my3xHOAgwLJdKUbWNVyAeJ9cEdduqIg==} - engines: {node: '>=16.11.0'} - - '@discordjs/util@1.1.0': - resolution: {integrity: sha512-IndcI5hzlNZ7GS96RV3Xw1R2kaDuXEp7tRIy/KlhidpN/BQ1qh1NZt3377dMLTa44xDUNKT7hnXkA/oUAzD/lg==} - engines: {node: '>=16.11.0'} - - '@discordjs/ws@1.1.1': - resolution: {integrity: sha512-PZ+vLpxGCRtmr2RMkqh8Zp+BenUaJqlS6xhgWKEZcgC/vfHLEzpHtKkB0sl3nZWpwtcKk6YWy+pU3okL2I97FA==} - engines: {node: '>=16.11.0'} - '@electron/asar@3.2.10': resolution: {integrity: sha512-mvBSwIBUeiRscrCeJE1LwctAriBj65eUDm0Pc11iE5gRwzkmsdbS7FnZ1XUWjpSeQWL1L5g12Fc/SchPM9DUOw==} engines: {node: '>=10.12.0'} @@ -2588,18 +2557,6 @@ packages: cpu: [x64] os: [win32] - '@sapphire/async-queue@1.5.2': - resolution: {integrity: sha512-7X7FFAA4DngXUl95+hYbUF19bp1LGiffjJtu7ygrZrbdCSsdDDBaSjB7Akw0ZbOu6k0xpXyljnJ6/RZUvLfRdg==} - engines: {node: '>=v14.0.0', npm: '>=7.0.0'} - - '@sapphire/shapeshift@3.9.7': - resolution: {integrity: sha512-4It2mxPSr4OGn4HSQWGmhFMsNFGfFVhWeRPCRwbH972Ek2pzfGRZtb0pJ4Ze6oIzcyh2jw7nUDa6qGlWofgd9g==} - engines: {node: '>=v16'} - - '@sapphire/snowflake@3.5.3': - resolution: {integrity: sha512-jjmJywLAFoWeBi1W7994zZyiNWPIiqRRNAmSERxyg93xRGzNYvGjlZ0gR6x0F4gPRi2+0O6S71kOZYyr3cxaIQ==} - engines: {node: '>=v14.0.0', npm: '>=7.0.0'} - '@sentry-internal/feedback@7.118.0': resolution: {integrity: sha512-IYOGRcqIqKJJpMwBBv+0JTu0FPpXnakJYvOx/XEa/SNyF5+l7b9gGEjUVWh1ok50kTLW/XPnpnXNAGQcoKHg+w==} engines: {node: '>=12'} @@ -2913,6 +2870,9 @@ packages: '@types/node@20.11.21': resolution: {integrity: sha512-/ySDLGscFPNasfqStUuWWPfL78jompfIoVzLJPVVAHBh6rpG68+pI2Gk+fNLeI8/f1yPYL4s46EleVIc20F1Ow==} + '@types/node@22.9.0': + resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==} + '@types/opener@1.4.3': resolution: {integrity: sha512-g7TYSmy2RKZkU3QT/9pMISrhVmQtMNaYq6Aojn3Y6pht29Nu9VuijJCYIjofRj7ZaFtKdxh1I8xf3vdW4l86fg==} @@ -3072,10 +3032,6 @@ packages: '@vitest/utils@1.6.0': resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} - '@vladfrangu/async_event_emitter@2.4.0': - resolution: {integrity: sha512-eNb/9DMwNvhhgn1UuQ8Rl90jhj9PBkYH4oQ522TkiWUVWRfbh3PjdOTFkVGNKs5+xUXalkgFrUSwtY8u0g0S4g==} - engines: {node: '>=v14.0.0', npm: '>=7.0.0'} - '@volar/language-core@2.4.0-alpha.12': resolution: {integrity: sha512-Dj9qTifcGGgzFLfMbU5dCo13kHyNuEyvPJhtWDnoVBBmgwW3GMwFmgWnNxBhjf63m5x0gux1okaxX2CLN7qSww==} @@ -3406,9 +3362,6 @@ packages: bcrypt-pbkdf@1.0.2: resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - better-sqlite3@8.7.0: - resolution: {integrity: sha512-99jZU4le+f3G6aIl6PmmV0cxUIWqKieHxsiF7G34CVFiE+/UabpYqkU0NJIkY/96mQKikHeBjtR27vFfs5JpEw==} - bignumber.js@2.4.0: resolution: {integrity: sha512-uw4ra6Cv483Op/ebM0GBKKfxZlSmn6NgFRby5L3yGTlunLj53KQgndDlqy2WVFOwgvurocApYkSud0aO+mvrpQ==} @@ -3416,9 +3369,6 @@ packages: resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} engines: {node: '>=8'} - bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} - birpc@0.1.1: resolution: {integrity: sha512-B64AGL4ug2IS2jvV/zjTYDD1L+2gOJTT7Rv+VaK7KVQtQOo/xZbCDsh7g727ipckmU+QJYRqo5RcifVr0Kgcmg==} @@ -4066,13 +4016,6 @@ packages: discontinuous-range@1.0.0: resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==} - discord-api-types@0.37.83: - resolution: {integrity: sha512-urGGYeWtWNYMKnYlZnOnDHm8fVRffQs3U0SpE8RHeiuLKb/u92APS8HoQnPTFbnXmY1vVnXjXO4dOxcAn3J+DA==} - - discord.js@14.15.3: - resolution: {integrity: sha512-/UJDQO10VuU6wQPglA4kz2bw2ngeeSbogiIPx/TsnctfzV/tNf+q+i1HlgtX1OGpeOBpJH9erZQNO5oRM2uAtQ==} - engines: {node: '>=16.11.0'} - dlv@1.1.3: resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} @@ -4177,10 +4120,6 @@ packages: end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - enso-support@https://codeload.github.com/enso-org/enso-bot/tar.gz/aa903b6e639a31930ee4fff55c5639e4471fa48d: - resolution: {tarball: https://codeload.github.com/enso-org/enso-bot/tar.gz/aa903b6e639a31930ee4fff55c5639e4471fa48d} - version: 1.0.0 - entities@2.1.0: resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} @@ -4472,9 +4411,6 @@ packages: resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==} engines: {node: '>=0.10.0'} - file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} @@ -5446,9 +5382,6 @@ packages: lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - lodash.snakecase@4.1.1: - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} - lodash.union@4.6.0: resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} @@ -5487,9 +5420,6 @@ packages: ltgt@2.2.1: resolution: {integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==} - magic-bytes.js@1.10.0: - resolution: {integrity: sha512-/k20Lg2q8LE5xiaaSkMXk4sfvI+9EGEykFS4b0CHHGWqDYU0bGUFSwchNOMA56D7TCs9GwVTkqe9als1/ns8UQ==} - magic-string@0.30.11: resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} @@ -6944,9 +6874,6 @@ packages: ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - ts-mixer@6.0.4: - resolution: {integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==} - ts-results@3.3.0: resolution: {integrity: sha512-FWqxGX2NHp5oCyaMd96o2y2uMQmSu8Dey6kvyuFdRJ2AzfmWo3kWa4UsPlCGlfQ/qu03m09ZZtppMoY8EMHuiA==} @@ -7026,9 +6953,8 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici@6.13.0: - resolution: {integrity: sha512-Q2rtqmZWrbP8nePMq7mOJIN98M0fYvSgV89vwl/BQRT4mDOeY2GXZngfGpcBBhtky3woM7G24wZV3Q304Bv6cw==} - engines: {node: '>=18.0'} + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} unfetch@4.2.0: resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} @@ -8275,53 +8201,6 @@ snapshots: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - '@discordjs/builders@1.8.2': - dependencies: - '@discordjs/formatters': 0.4.0 - '@discordjs/util': 1.1.0 - '@sapphire/shapeshift': 3.9.7 - discord-api-types: 0.37.83 - fast-deep-equal: 3.1.3 - ts-mixer: 6.0.4 - tslib: 2.6.3 - - '@discordjs/collection@1.5.3': {} - - '@discordjs/collection@2.1.0': {} - - '@discordjs/formatters@0.4.0': - dependencies: - discord-api-types: 0.37.83 - - '@discordjs/rest@2.3.0': - dependencies: - '@discordjs/collection': 2.1.0 - '@discordjs/util': 1.1.0 - '@sapphire/async-queue': 1.5.2 - '@sapphire/snowflake': 3.5.3 - '@vladfrangu/async_event_emitter': 2.4.0 - discord-api-types: 0.37.83 - magic-bytes.js: 1.10.0 - tslib: 2.6.3 - undici: 6.13.0 - - '@discordjs/util@1.1.0': {} - - '@discordjs/ws@1.1.1': - dependencies: - '@discordjs/collection': 2.1.0 - '@discordjs/rest': 2.3.0 - '@discordjs/util': 1.1.0 - '@sapphire/async-queue': 1.5.2 - '@types/ws': 8.5.10 - '@vladfrangu/async_event_emitter': 2.4.0 - discord-api-types: 0.37.83 - tslib: 2.6.3 - ws: 8.18.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@electron/asar@3.2.10': dependencies: commander: 5.1.0 @@ -8577,10 +8456,10 @@ snapshots: '@fal-works/esbuild-plugin-global-externals@2.1.2': {} - '@fast-check/vitest@0.0.8(vitest@1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1))': + '@fast-check/vitest@0.0.8(vitest@1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1))': dependencies: fast-check: 3.19.0 - vitest: 1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1) + vitest: 1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1) '@floating-ui/core@1.6.4': dependencies: @@ -8630,10 +8509,10 @@ snapshots: dependencies: tslib: 2.6.3 - '@histoire/app@0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))': + '@histoire/app@0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))': dependencies: - '@histoire/controls': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) - '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + '@histoire/controls': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) + '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) '@histoire/vendors': 0.17.17 '@types/flexsearch': 0.7.6 flexsearch: 0.7.21 @@ -8641,7 +8520,7 @@ snapshots: transitivePeerDependencies: - vite - '@histoire/controls@0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))': + '@histoire/controls@0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))': dependencies: '@codemirror/commands': 6.6.0 '@codemirror/lang-json': 6.0.1 @@ -8650,26 +8529,26 @@ snapshots: '@codemirror/state': 6.4.1 '@codemirror/theme-one-dark': 6.1.2 '@codemirror/view': 6.28.3 - '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) '@histoire/vendors': 0.17.17 transitivePeerDependencies: - vite - '@histoire/plugin-vue@0.17.17(histoire@0.17.17(@types/node@20.11.21)(lightningcss@1.25.1)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)))(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3))': + '@histoire/plugin-vue@0.17.17(histoire@0.17.17(@types/node@22.9.0)(lightningcss@1.25.1)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)))(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3))': dependencies: - '@histoire/controls': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) - '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + '@histoire/controls': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) + '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) '@histoire/vendors': 0.17.17 change-case: 4.1.2 globby: 13.2.2 - histoire: 0.17.17(@types/node@20.11.21)(lightningcss@1.25.1)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + histoire: 0.17.17(@types/node@22.9.0)(lightningcss@1.25.1)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) launch-editor: 2.8.0 pathe: 1.1.2 vue: 3.5.2(typescript@5.5.3) transitivePeerDependencies: - vite - '@histoire/shared@0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))': + '@histoire/shared@0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))': dependencies: '@histoire/vendors': 0.17.17 '@types/fs-extra': 9.0.13 @@ -8677,7 +8556,7 @@ snapshots: chokidar: 3.6.0 pathe: 1.1.2 picocolors: 1.1.0 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) '@histoire/vendors@0.17.17': {} @@ -8884,12 +8763,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@modyfi/vite-plugin-yaml@1.1.0(rollup@4.24.0)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))': + '@modyfi/vite-plugin-yaml@1.1.0(rollup@4.24.0)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.24.0) js-yaml: 4.1.0 tosource: 2.0.0-alpha.3 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - rollup @@ -9975,15 +9854,6 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.24.0': optional: true - '@sapphire/async-queue@1.5.2': {} - - '@sapphire/shapeshift@3.9.7': - dependencies: - fast-deep-equal: 3.1.3 - lodash: 4.17.21 - - '@sapphire/snowflake@3.5.3': {} - '@sentry-internal/feedback@7.118.0': dependencies: '@sentry/core': 7.118.0 @@ -10149,7 +10019,7 @@ snapshots: dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/responselike': 1.0.3 '@types/cookie@0.3.3': {} @@ -10291,7 +10161,7 @@ snapshots: '@types/fs-extra@9.0.13': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/geojson@7946.0.14': {} @@ -10314,7 +10184,7 @@ snapshots: '@types/jsdom@21.1.7': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 @@ -10322,7 +10192,7 @@ snapshots: '@types/keyv@3.1.4': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/linkify-it@5.0.0': {} @@ -10343,20 +10213,24 @@ snapshots: '@types/node-fetch@2.6.4': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 form-data: 3.0.1 '@types/node@20.11.21': dependencies: undici-types: 5.26.5 + '@types/node@22.9.0': + dependencies: + undici-types: 6.19.8 + '@types/opener@1.4.3': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/plist@3.0.5': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 xmlbuilder: 15.1.1 optional: true @@ -10377,7 +10251,7 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/scheduler@0.23.0': {} @@ -10385,18 +10259,18 @@ snapshots: '@types/sharp@0.31.1': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/shuffle-seed@1.1.3': {} '@types/tar@6.1.13': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 minipass: 4.2.8 '@types/to-ico@1.1.3': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/tough-cookie@4.0.5': {} @@ -10411,7 +10285,7 @@ snapshots: '@types/ws@8.5.10': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 '@types/yargs-parser@21.0.3': {} @@ -10425,7 +10299,7 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 optional: true '@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@1.21.6))(typescript@5.5.3))(eslint@9.13.0(jiti@1.21.6))(typescript@5.5.3)': @@ -10509,23 +10383,23 @@ snapshots: '@typescript-eslint/types': 8.11.0 eslint-visitor-keys: 3.4.3 - '@vitejs/plugin-react@4.3.3(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))': + '@vitejs/plugin-react@4.3.3(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2) '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.0.5(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3))': + '@vitejs/plugin-vue@5.0.5(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3))': dependencies: - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) vue: 3.5.2(typescript@5.5.3) - '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1))': + '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -10540,7 +10414,7 @@ snapshots: std-env: 3.7.0 strip-literal: 2.1.0 test-exclude: 6.0.0 - vitest: 1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1) + vitest: 1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1) transitivePeerDependencies: - supports-color @@ -10573,8 +10447,6 @@ snapshots: loupe: 2.3.7 pretty-format: 29.7.0 - '@vladfrangu/async_event_emitter@2.4.0': {} - '@volar/language-core@2.4.0-alpha.12': dependencies: '@volar/source-map': 2.4.0-alpha.12 @@ -10648,14 +10520,14 @@ snapshots: '@vue/devtools-api@6.6.3': {} - '@vue/devtools-core@7.3.7(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3))': + '@vue/devtools-core@7.3.7(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3))': dependencies: '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 mitt: 3.0.1 nanoid: 3.3.7 pathe: 1.1.2 - vite-hot-client: 0.2.3(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + vite-hot-client: 0.2.3(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) vue: 3.5.2(typescript@5.5.3) transitivePeerDependencies: - vite @@ -11061,19 +10933,10 @@ snapshots: dependencies: tweetnacl: 0.14.5 - better-sqlite3@8.7.0: - dependencies: - bindings: 1.5.0 - prebuild-install: 7.1.2 - bignumber.js@2.4.0: {} binary-extensions@2.3.0: {} - bindings@1.5.0: - dependencies: - file-uri-to-path: 1.0.0 - birpc@0.1.1: {} birpc@0.2.17: {} @@ -11778,26 +11641,6 @@ snapshots: discontinuous-range@1.0.0: {} - discord-api-types@0.37.83: {} - - discord.js@14.15.3: - dependencies: - '@discordjs/builders': 1.8.2 - '@discordjs/collection': 1.5.3 - '@discordjs/formatters': 0.4.0 - '@discordjs/rest': 2.3.0 - '@discordjs/util': 1.1.0 - '@discordjs/ws': 1.1.1 - '@sapphire/snowflake': 3.5.3 - discord-api-types: 0.37.83 - fast-deep-equal: 3.1.3 - lodash.snakecase: 4.1.1 - tslib: 2.6.3 - undici: 6.13.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dlv@1.1.3: {} dmg-builder@24.13.3(electron-builder-squirrel-windows@24.13.3): @@ -11950,16 +11793,6 @@ snapshots: dependencies: once: 1.4.0 - enso-support@https://codeload.github.com/enso-org/enso-bot/tar.gz/aa903b6e639a31930ee4fff55c5639e4471fa48d: - dependencies: - better-sqlite3: 8.7.0 - discord.js: 14.15.3 - validator: 13.12.0 - ws: 8.18.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - entities@2.1.0: {} entities@4.5.0: {} @@ -12395,8 +12228,6 @@ snapshots: file-type@3.9.0: {} - file-uri-to-path@1.0.0: {} - filelist@1.0.4: dependencies: minimatch: 5.1.6 @@ -12722,12 +12553,12 @@ snapshots: dependencies: hermes-estree: 0.20.1 - histoire@0.17.17(@types/node@20.11.21)(lightningcss@1.25.1)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)): + histoire@0.17.17(@types/node@22.9.0)(lightningcss@1.25.1)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)): dependencies: '@akryum/tinypool': 0.3.1 - '@histoire/app': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) - '@histoire/controls': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) - '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + '@histoire/app': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) + '@histoire/controls': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) + '@histoire/shared': 0.17.17(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) '@histoire/vendors': 0.17.17 '@types/flexsearch': 0.7.6 '@types/markdown-it': 12.2.3 @@ -12754,8 +12585,8 @@ snapshots: sade: 1.8.1 shiki-es: 0.2.0 sirv: 2.0.4 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) - vite-node: 0.34.7(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) + vite-node: 0.34.7(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - '@types/node' - bufferutil @@ -13469,8 +13300,6 @@ snapshots: lodash.merge@4.6.2: {} - lodash.snakecase@4.1.1: {} - lodash.union@4.6.0: {} lodash@4.17.21: {} @@ -13504,8 +13333,6 @@ snapshots: ltgt@2.2.1: optional: true - magic-bytes.js@1.10.0: {} - magic-string@0.30.11: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -15045,8 +14872,6 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-mixer@6.0.4: {} - ts-results@3.3.0: {} tslib@2.6.3: {} @@ -15138,7 +14963,7 @@ snapshots: undici-types@5.26.5: {} - undici@6.13.0: {} + undici-types@6.19.8: {} unfetch@4.2.0: {} @@ -15237,18 +15062,18 @@ snapshots: extsprintf: 1.4.1 optional: true - vite-hot-client@0.2.3(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)): + vite-hot-client@0.2.3(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)): dependencies: - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) - vite-node@0.34.7(@types/node@20.11.21)(lightningcss@1.25.1): + vite-node@0.34.7(@types/node@22.9.0)(lightningcss@1.25.1): dependencies: cac: 6.7.14 debug: 4.3.7 mlly: 1.7.1 pathe: 1.1.2 picocolors: 1.1.0 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - '@types/node' - less @@ -15260,13 +15085,13 @@ snapshots: - supports-color - terser - vite-node@1.6.0(@types/node@20.11.21)(lightningcss@1.25.1): + vite-node@1.6.0(@types/node@22.9.0)(lightningcss@1.25.1): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 picocolors: 1.1.0 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - '@types/node' - less @@ -15278,13 +15103,13 @@ snapshots: - supports-color - terser - vite-node@2.0.4(@types/node@20.11.21)(lightningcss@1.25.1): + vite-node@2.0.4(@types/node@22.9.0)(lightningcss@1.25.1): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 tinyrainbow: 1.2.0 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - '@types/node' - less @@ -15296,7 +15121,7 @@ snapshots: - supports-color - terser - vite-plugin-inspect@0.8.4(rollup@4.24.0)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)): + vite-plugin-inspect@0.8.4(rollup@4.24.0)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.0(rollup@4.24.0) @@ -15307,28 +15132,28 @@ snapshots: perfect-debounce: 1.0.0 picocolors: 1.1.0 sirv: 2.0.4 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - rollup - supports-color - vite-plugin-vue-devtools@7.3.7(rollup@4.24.0)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)): + vite-plugin-vue-devtools@7.3.7(rollup@4.24.0)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)): dependencies: - '@vue/devtools-core': 7.3.7(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) + '@vue/devtools-core': 7.3.7(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1))(vue@3.5.2(typescript@5.5.3)) '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 execa: 8.0.1 sirv: 2.0.4 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) - vite-plugin-inspect: 0.8.4(rollup@4.24.0)(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) - vite-plugin-vue-inspector: 5.1.3(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) + vite-plugin-inspect: 0.8.4(rollup@4.24.0)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) + vite-plugin-vue-inspector: 5.1.3(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)) transitivePeerDependencies: - '@nuxt/kit' - rollup - supports-color - vue - vite-plugin-vue-inspector@5.1.3(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)): + vite-plugin-vue-inspector@5.1.3(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)): dependencies: '@babel/core': 7.25.2 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2) @@ -15339,25 +15164,25 @@ snapshots: '@vue/compiler-dom': 3.5.2 kolorist: 1.8.0 magic-string: 0.30.11 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) transitivePeerDependencies: - supports-color - vite-plugin-wasm@3.3.0(vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1)): + vite-plugin-wasm@3.3.0(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1)): dependencies: - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) - vite@5.4.10(@types/node@20.11.21)(lightningcss@1.25.1): + vite@5.4.10(@types/node@22.9.0)(lightningcss@1.25.1): dependencies: esbuild: 0.21.5 postcss: 8.4.45 rollup: 4.24.0 optionalDependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 fsevents: 2.3.3 lightningcss: 1.25.1 - vitest@1.6.0(@types/node@20.11.21)(jsdom@24.1.0)(lightningcss@1.25.1): + vitest@1.6.0(@types/node@22.9.0)(jsdom@24.1.0)(lightningcss@1.25.1): dependencies: '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 @@ -15376,11 +15201,11 @@ snapshots: strip-literal: 2.1.0 tinybench: 2.8.0 tinypool: 0.8.4 - vite: 5.4.10(@types/node@20.11.21)(lightningcss@1.25.1) - vite-node: 1.6.0(@types/node@20.11.21)(lightningcss@1.25.1) + vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.25.1) + vite-node: 1.6.0(@types/node@22.9.0)(lightningcss@1.25.1) why-is-node-running: 2.2.2 optionalDependencies: - '@types/node': 20.11.21 + '@types/node': 22.9.0 jsdom: 24.1.0 transitivePeerDependencies: - less diff --git a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.3.7/copyright-ignore b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.3.7/copyright-ignore deleted file mode 100644 index 55158ebca7..0000000000 --- a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.3.7/copyright-ignore +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 1999-2012, QOS.ch. All rights reserved. -Copyright (C) 1999-2021, QOS.ch. All rights reserved. -Copyright (C) 1999-2022, QOS.ch. All rights reserved. diff --git a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.3.7/copyright-keep b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.3.7/copyright-keep deleted file mode 100644 index 8ef0866a52..0000000000 --- a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.3.7/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (C) 1999-2010, QOS.ch. All rights reserved. -Copyright (C) 1999-2015, QOS.ch. All rights reserved. diff --git a/tools/legal-review/engine/ch.qos.logback.logback-core-1.3.7/copyright-ignore b/tools/legal-review/engine/ch.qos.logback.logback-core-1.3.7/copyright-ignore deleted file mode 100644 index debaddd3b0..0000000000 --- a/tools/legal-review/engine/ch.qos.logback.logback-core-1.3.7/copyright-ignore +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 1999-2015, QOS.ch. All rights reserved. -Copyright (C) 1999-2021, QOS.ch. All rights reserved. -Copyright (C) 1999-2022, QOS.ch. All rights reserved. diff --git a/tools/legal-review/engine/ch.qos.logback.logback-core-1.3.7/copyright-keep b/tools/legal-review/engine/ch.qos.logback.logback-core-1.3.7/copyright-keep deleted file mode 100644 index def50491fe..0000000000 --- a/tools/legal-review/engine/ch.qos.logback.logback-core-1.3.7/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (C) 1999-2002, QOS.ch. All rights reserved. -Logback: the reliable, generic, fast and flexible logging framework. Copyright (C) 1999-2015, QOS.ch. All rights diff --git a/tools/legal-review/engine/io.helidon.builder.helidon-builder-api-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.builder.helidon-builder-api-4.1.2/copyright-keep deleted file mode 100644 index 1536d2f987..0000000000 --- a/tools/legal-review/engine/io.helidon.builder.helidon-builder-api-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.features.helidon-common-features-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.features.helidon-common-features-4.1.2/copyright-keep deleted file mode 100644 index 2dd56f57a9..0000000000 --- a/tools/legal-review/engine/io.helidon.common.features.helidon-common-features-4.1.2/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright (c) 2019, 2023 Oracle and/or its affiliates. -Copyright (c) 2020, 2022 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.features.helidon-common-features-api-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.features.helidon-common-features-api-4.1.2/copyright-keep deleted file mode 100644 index 19699134bd..0000000000 --- a/tools/legal-review/engine/io.helidon.common.features.helidon-common-features-api-4.1.2/copyright-keep +++ /dev/null @@ -1,4 +0,0 @@ -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2019, 2023 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-4.1.2/copyright-keep deleted file mode 100644 index 7ee564bac6..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-4.1.2/copyright-keep +++ /dev/null @@ -1,15 +0,0 @@ -Copyright (c) 2017, 2021 Oracle and/or its affiliates. -Copyright (c) 2017, 2024 Oracle and/or its affiliates. -Copyright (c) 2017, 2022 Oracle and/or its affiliates. -Copyright (c) 2018, 2021 Oracle and/or its affiliates. -Copyright (c) 2018, 2024 Oracle and/or its affiliates. -Copyright (c) 2019, 2020 Oracle and/or its affiliates. -Copyright (c) 2019, 2021 Oracle and/or its affiliates. -Copyright (c) 2019, 2022 Oracle and/or its affiliates. -Copyright (c) 2019, 2023 Oracle and/or its affiliates. -Copyright (c) 2020 Oracle and/or its affiliates. -Copyright (c) 2021 Oracle and/or its affiliates. -Copyright (c) 2021, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-buffers-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-buffers-4.1.2/copyright-keep deleted file mode 100644 index 3e26b42aa6..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-buffers-4.1.2/copyright-keep +++ /dev/null @@ -1,4 +0,0 @@ -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2018, 2022 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-config-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-config-4.1.2/copyright-keep deleted file mode 100644 index e4b9fe1779..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-config-4.1.2/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (c) 2017, 2022 Oracle and/or its affiliates. -Copyright (c) 2018, 2023 Oracle and/or its affiliates. -Copyright (c) 2018, 2024 Oracle and/or its affiliates. -Copyright (c) 2019, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-configurable-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.common.helidon-common-configurable-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-configurable-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-configurable-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-configurable-4.1.2/copyright-keep deleted file mode 100644 index 5cf8b43f3c..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-configurable-4.1.2/copyright-keep +++ /dev/null @@ -1,13 +0,0 @@ -Copyright (c) 2017, 2021 Oracle and/or its affiliates. -Copyright (c) 2017, 2023 Oracle and/or its affiliates. -Copyright (c) 2017, 2022 Oracle and/or its affiliates. -Copyright (c) 2018, 2023 Oracle and/or its affiliates. -Copyright (c) 2018, 2024 Oracle and/or its affiliates. -Copyright (c) 2019, 2022 Oracle and/or its affiliates. -Copyright (c) 2019, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-context-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-context-4.1.2/copyright-keep deleted file mode 100644 index 07361f1b40..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-context-4.1.2/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright (c) 2020, 2022 Oracle and/or its affiliates. -Copyright (c) 2020 Oracle and/or its affiliates. -Copyright (c) 2019, 2024 Oracle and/or its affiliates. -Copyright (c) 2019, 2023 Oracle and/or its affiliates. -Copyright (c) 2019, 2021 Oracle and/or its affiliates. -Copyright (c) 2019, 2020 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-key-util-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.common.helidon-common-key-util-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-key-util-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-key-util-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-key-util-4.1.2/copyright-keep deleted file mode 100644 index b9f28539f8..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-key-util-4.1.2/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (c) 2017, 2021 Oracle and/or its affiliates. -Copyright (c) 2017, 2023 Oracle and/or its affiliates. -Copyright (c) 2017, 2024 Oracle and/or its affiliates. -Copyright (c) 2018, 2024 Oracle and/or its affiliates. -Copyright (c) 2021, 2022 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-mapper-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-mapper-4.1.2/copyright-keep deleted file mode 100644 index 69db29aa2e..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-mapper-4.1.2/copyright-keep +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2019, 2021 Oracle and/or its affiliates. -Copyright (c) 2019, 2023 Oracle and/or its affiliates. -Copyright (c) 2019, 2024 Oracle and/or its affiliates. -Copyright (c) 2020, 2021 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-media-type-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-media-type-4.1.2/copyright-keep deleted file mode 100644 index 37ae4c3eda..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-media-type-4.1.2/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (c) 2019, 2021 Oracle and/or its affiliates. -Copyright (c) 2019, 2022 Oracle and/or its affiliates. -Copyright (c) 2019, 2023 Oracle and/or its affiliates. -Copyright (c) 2019, 2024 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-parameters-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-parameters-4.1.2/copyright-keep deleted file mode 100644 index 9225963f4a..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-parameters-4.1.2/copyright-keep +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-security-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-security-4.1.2/copyright-keep deleted file mode 100644 index 9225963f4a..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-security-4.1.2/copyright-keep +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-socket-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.common.helidon-common-socket-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-socket-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-socket-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-socket-4.1.2/copyright-keep deleted file mode 100644 index b4e48fe96f..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-socket-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-task-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-task-4.1.2/copyright-keep deleted file mode 100644 index 022f8853db..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-task-4.1.2/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-tls-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.common.helidon-common-tls-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-tls-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-tls-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-tls-4.1.2/copyright-keep deleted file mode 100644 index 133589b49c..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-tls-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-types-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-types-4.1.2/copyright-keep deleted file mode 100644 index 133589b49c..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-types-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-uri-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.common.helidon-common-uri-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-uri-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.common.helidon-common-uri-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.common.helidon-common-uri-4.1.2/copyright-keep deleted file mode 100644 index cb9c180b65..0000000000 --- a/tools/legal-review/engine/io.helidon.common.helidon-common-uri-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.config.helidon-config-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.config.helidon-config-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.config.helidon-config-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.config.helidon-config-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.config.helidon-config-4.1.2/copyright-keep deleted file mode 100644 index d8de19b613..0000000000 --- a/tools/legal-review/engine/io.helidon.config.helidon-config-4.1.2/copyright-keep +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (c) 2017, 2020 Oracle and/or its affiliates. -Copyright (c) 2017, 2021 Oracle and/or its affiliates. -Copyright (c) 2017, 2022 Oracle and/or its affiliates. -Copyright (c) 2017, 2023 Oracle and/or its affiliates. -Copyright (c) 2017, 2024 Oracle and/or its affiliates. -Copyright (c) 2018, 2022 Oracle and/or its affiliates. -Copyright (c) 2018, 2023 Oracle and/or its affiliates. -Copyright (c) 2019, 2020 Oracle and/or its affiliates. -Copyright (c) 2019, 2022 Oracle and/or its affiliates. -Copyright (c) 2020 Oracle and/or its affiliates. -Copyright (c) 2020, 2021 Oracle and/or its affiliates. -Copyright (c) 2020, 2022 Oracle and/or its affiliates. -Copyright (c) 2020, 2023 Oracle and/or its affiliates. -Copyright (c) 2020, 2024 Oracle and/or its affiliates. -Copyright (c) 2021 Oracle and/or its affiliates. -Copyright (c) 2021, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2019, 2021 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2019, 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.helidon-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.helidon-4.1.2/copyright-keep deleted file mode 100644 index d2344b7f6a..0000000000 --- a/tools/legal-review/engine/io.helidon.helidon-4.1.2/copyright-keep +++ /dev/null @@ -1,4 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.http.encoding.helidon-http-encoding-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.http.encoding.helidon-http-encoding-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.http.encoding.helidon-http-encoding-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.http.encoding.helidon-http-encoding-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.http.encoding.helidon-http-encoding-4.1.2/copyright-keep deleted file mode 100644 index 1536d2f987..0000000000 --- a/tools/legal-review/engine/io.helidon.http.encoding.helidon-http-encoding-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.http.helidon-http-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.http.helidon-http-4.1.2/copyright-keep deleted file mode 100644 index b4263f37e3..0000000000 --- a/tools/legal-review/engine/io.helidon.http.helidon-http-4.1.2/copyright-keep +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2017, 2023 Oracle and/or its affiliates. -Copyright (c) 2018, 2023 Oracle and/or its affiliates. -Copyright (c) 2018, 2024 Oracle and/or its affiliates. -Copyright (c) 2021, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.http.media.helidon-http-media-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.http.media.helidon-http-media-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.http.media.helidon-http-media-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.http.media.helidon-http-media-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.http.media.helidon-http-media-4.1.2/copyright-keep deleted file mode 100644 index 1536d2f987..0000000000 --- a/tools/legal-review/engine/io.helidon.http.media.helidon-http-media-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.inject.helidon-inject-api-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.inject.helidon-inject-api-4.1.2/copyright-ignore deleted file mode 100644 index d240efaa8b..0000000000 --- a/tools/legal-review/engine/io.helidon.inject.helidon-inject-api-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-common-processor-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.inject.helidon-inject-api-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.inject.helidon-inject-api-4.1.2/copyright-keep deleted file mode 100644 index c34fd5dcab..0000000000 --- a/tools/legal-review/engine/io.helidon.inject.helidon-inject-api-4.1.2/copyright-keep +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.logging.helidon-logging-common-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.logging.helidon-logging-common-4.1.2/copyright-keep deleted file mode 100644 index 46b88a615b..0000000000 --- a/tools/legal-review/engine/io.helidon.logging.helidon-logging-common-4.1.2/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright (c) 2019, 2022 Oracle and/or its affiliates. -Copyright (c) 2020 Oracle and/or its affiliates. -Copyright (c) 2020, 2022 Oracle and/or its affiliates. -Copyright (c) 2020, 2023 Oracle and/or its affiliates. -Copyright (c) 2020, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-4.1.2/copyright-keep deleted file mode 100644 index 2585c5d1ac..0000000000 --- a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-4.1.2/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-api-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-api-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-api-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-api-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-api-4.1.2/copyright-keep deleted file mode 100644 index 4e64fde5a5..0000000000 --- a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-api-4.1.2/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2020, 2023 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-http1-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-http1-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-http1-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-http1-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-http1-4.1.2/copyright-keep deleted file mode 100644 index 133589b49c..0000000000 --- a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-http1-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-websocket-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-websocket-4.1.2/copyright-keep deleted file mode 100644 index 6afb1a99da..0000000000 --- a/tools/legal-review/engine/io.helidon.webclient.helidon-webclient-websocket-4.1.2/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-4.1.2/copyright-ignore b/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-4.1.2/copyright-ignore deleted file mode 100644 index ab09cc389a..0000000000 --- a/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-4.1.2/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-4.1.2/copyright-keep deleted file mode 100644 index 204a360105..0000000000 --- a/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-4.1.2/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright (c) 2021, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-websocket-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-websocket-4.1.2/copyright-keep deleted file mode 100644 index 984d6db434..0000000000 --- a/tools/legal-review/engine/io.helidon.webserver.helidon-webserver-websocket-4.1.2/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright (c) 2024 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -helidon-codegen-helidon-copyright diff --git a/tools/legal-review/engine/io.helidon.websocket.helidon-websocket-4.1.2/copyright-keep b/tools/legal-review/engine/io.helidon.websocket.helidon-websocket-4.1.2/copyright-keep deleted file mode 100644 index 75eb49ff37..0000000000 --- a/tools/legal-review/engine/io.helidon.websocket.helidon-websocket-4.1.2/copyright-keep +++ /dev/null @@ -1,4 +0,0 @@ -Copyright (c) 2022, 2023 Oracle and/or its affiliates. -Copyright (c) 2022, 2024 Oracle and/or its affiliates. -Copyright (c) 2023 Oracle and/or its affiliates. -Copyright (c) 2023, 2024 Oracle and/or its affiliates. diff --git a/tools/legal-review/engine/io.sentry.sentry-6.28.0/copyright-keep b/tools/legal-review/engine/io.sentry.sentry-6.28.0/copyright-keep deleted file mode 100644 index 92cb39d1b6..0000000000 --- a/tools/legal-review/engine/io.sentry.sentry-6.28.0/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (C) 2010 Google Inc. -this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/io.sentry.sentry-6.28.0/files-ignore b/tools/legal-review/engine/io.sentry.sentry-6.28.0/files-ignore deleted file mode 100644 index a78d222b4f..0000000000 --- a/tools/legal-review/engine/io.sentry.sentry-6.28.0/files-ignore +++ /dev/null @@ -1 +0,0 @@ -io/sentry/vendor/gson/LICENSE diff --git a/tools/legal-review/engine/io.sentry.sentry-6.28.0/files-keep b/tools/legal-review/engine/io.sentry.sentry-6.28.0/files-keep deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/copyright-add b/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/copyright-add deleted file mode 100644 index ea5d120687..0000000000 --- a/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/copyright-add +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (C) 2010 Google Inc. - diff --git a/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/files-ignore b/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/files-ignore deleted file mode 100644 index 7cfb964806..0000000000 --- a/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/files-ignore +++ /dev/null @@ -1 +0,0 @@ -/getsentry/sentry-java/blob/main/LICENSE diff --git a/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/files-keep b/tools/legal-review/engine/io.sentry.sentry-logback-6.28.0/files-keep deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/copyright-keep b/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/copyright-keep deleted file mode 100644 index 64bc5cc9d5..0000000000 --- a/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright © 2018,2020 Eclipse Foundation.
-Copyright (C) 2009 The JSR-330 Expert Group diff --git a/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/files-ignore b/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/files-ignore deleted file mode 100644 index 0256724c8d..0000000000 --- a/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/files-ignore +++ /dev/null @@ -1 +0,0 @@ -META-INF/LICENSE.txt diff --git a/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/files-keep b/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/files-keep deleted file mode 100644 index b9d568950a..0000000000 --- a/tools/legal-review/engine/jakarta.inject.jakarta.inject-api-2.0.1/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE.md diff --git a/tools/legal-review/engine/org.graalvm.tools.chromeinspector-tool-24.0.0/copyright-keep b/tools/legal-review/engine/org.graalvm.tools.chromeinspector-tool-24.0.0/copyright-keep deleted file mode 100644 index 2ba24551e1..0000000000 --- a/tools/legal-review/engine/org.graalvm.tools.chromeinspector-tool-24.0.0/copyright-keep +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (c) 2010-2020 Nathan Rajlich -Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019, 2019, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. -Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved. -DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -The above copyright notice and this permission notice shall be diff --git a/tools/legal-review/engine/report-state b/tools/legal-review/engine/report-state index 6ae7ebd109..e7ccfc5fed 100644 --- a/tools/legal-review/engine/report-state +++ b/tools/legal-review/engine/report-state @@ -1,3 +1,3 @@ -17B7561F9A5547456DB58D715BF8FFA09A3A57656942004846CBE87C1B4DFC28 -7B45943C89E109092F1FC330E1B2481EFA36F5D9387E15FDE6F195DE247FF2A8 +DE9E0749CCA6A77DAC133F4F244D1A8E687B4B3DC01EA218C78781F8D3539E36 +3C04803C109A83B793E9F714E98FC27E985E3935A1FD6F101AB13E0486B3406B 0