From d3b5672bd61bb847abfa21193c34eabf7aba6896 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 08:35:12 +0200 Subject: [PATCH 01/10] fix: fixed issue in publish workflow and in mcp server --- .github/workflows/npm-publish.yml | 4 +- integrations/mcp-server/src/index.ts | 78 +++++++++++++++++++++++++--- 2 files changed, 75 insertions(+), 7 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 811522e79c6..2a98fcc0d11 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -113,8 +113,10 @@ jobs: # ✨ Prettify changelog → per package - name: Prettify changelog if: env.IS_STABLE == 'true' + env: + RELEASE_BODY: ${{ steps.release.outputs.body }} run: | - echo "${{ steps.release.outputs.body }}" > RAW_RELEASE.md + printf '%s\n' "$RELEASE_BODY" > RAW_RELEASE.md pnpm run release:prettify-changelog # 🔁 Update release con changelog finale diff --git a/integrations/mcp-server/src/index.ts b/integrations/mcp-server/src/index.ts index 01e32448d6c..31ed50eb157 100644 --- a/integrations/mcp-server/src/index.ts +++ b/integrations/mcp-server/src/index.ts @@ -11,6 +11,7 @@ import { ListPromptsRequestSchema, GetPromptRequestSchema, } from "@modelcontextprotocol/sdk/types.js"; +import type { Transport } from "@modelcontextprotocol/sdk/shared/transport.js"; import { suggestPlugins } from "./tools/suggestPlugins.js"; import { listPackages } from "./tools/listPackages.js"; @@ -384,9 +385,37 @@ async function startStdio() { } async function startHttp(port: number) { - const transport = new StreamableHTTPServerTransport({ - sessionIdGenerator: () => randomUUID(), - }); + const sessions = new Map(); + const requestToSession = new Map(); + + const routingTransport: Transport = { + start: async () => {}, + close: async () => { + for (const transport of sessions.values()) { + await transport.close(); + } + sessions.clear(); + }, + send: async (message, options) => { + const msg = message as { id?: string | number }; + const requestId = msg.id ?? options?.relatedRequestId; + if (requestId !== undefined) { + const sessionId = requestToSession.get(requestId); + if (sessionId) { + const transport = sessions.get(sessionId); + if (transport) { + await transport.send(message, options); + } + } + } + }, + onclose: undefined, + onerror: undefined, + onmessage: undefined, + sessionId: undefined, + }; + + await server.connect(routingTransport); const httpServer = createServer(async (req, res) => { // Health check endpoint @@ -430,7 +459,46 @@ async function startHttp(port: number) { return; } - await transport.handleRequest(req, res, parsedBody); + const sessionId = req.headers["mcp-session-id"] as string | undefined; + + if (sessionId) { + const transport = sessions.get(sessionId); + if (!transport) { + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Session not found" })); + return; + } + await transport.handleRequest(req, res, parsedBody); + } else { + const transport = new StreamableHTTPServerTransport({ + sessionIdGenerator: () => randomUUID(), + onsessioninitialized: (newSessionId: string) => { + sessions.set(newSessionId, transport); + }, + onsessionclosed: (closedSessionId: string) => { + sessions.delete(closedSessionId); + for (const [rid, sid] of requestToSession) { + if (sid === closedSessionId) { + requestToSession.delete(rid); + } + } + }, + }); + + transport.onmessage = (message, extra) => { + const msg = message as { id?: string | number }; + if (msg.id !== undefined) { + requestToSession.set(msg.id, transport.sessionId!); + } + routingTransport.onmessage?.(message, extra); + }; + + transport.onerror = (error) => { + routingTransport.onerror?.(error); + }; + + await transport.handleRequest(req, res, parsedBody); + } return; } @@ -442,8 +510,6 @@ async function startHttp(port: number) { console.error(`tsParticles MCP server running on http://0.0.0.0:${port}/mcp`); console.error(`Health check: http://0.0.0.0:${port}/health`); }); - - await server.connect(transport); } async function main() { From b0c7ef5ef98b5bcb87078f65f6f356d94cf27349 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 08:57:15 +0200 Subject: [PATCH 02/10] fix: fixed other issues in mcp server --- integrations/mcp-server/src/index.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/integrations/mcp-server/src/index.ts b/integrations/mcp-server/src/index.ts index 31ed50eb157..30e00567467 100644 --- a/integrations/mcp-server/src/index.ts +++ b/integrations/mcp-server/src/index.ts @@ -395,6 +395,7 @@ async function startHttp(port: number) { await transport.close(); } sessions.clear(); + requestToSession.clear(); }, send: async (message, options) => { const msg = message as { id?: string | number }; @@ -459,7 +460,8 @@ async function startHttp(port: number) { return; } - const sessionId = req.headers["mcp-session-id"] as string | undefined; + const sessionIdHeader = req.headers["mcp-session-id"]; + const sessionId = Array.isArray(sessionIdHeader) ? sessionIdHeader[0] : sessionIdHeader; if (sessionId) { const transport = sessions.get(sessionId); @@ -470,9 +472,11 @@ async function startHttp(port: number) { } await transport.handleRequest(req, res, parsedBody); } else { + let currentSessionId: string | undefined; const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: () => randomUUID(), onsessioninitialized: (newSessionId: string) => { + currentSessionId = newSessionId; sessions.set(newSessionId, transport); }, onsessionclosed: (closedSessionId: string) => { @@ -487,8 +491,8 @@ async function startHttp(port: number) { transport.onmessage = (message, extra) => { const msg = message as { id?: string | number }; - if (msg.id !== undefined) { - requestToSession.set(msg.id, transport.sessionId!); + if (msg.id !== undefined && currentSessionId) { + requestToSession.set(msg.id, currentSessionId); } routingTransport.onmessage?.(message, extra); }; From fb31f51f793a272b42ed3c3faa8e9f4142132eac Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 09:03:48 +0200 Subject: [PATCH 03/10] fix: fixed other issues in mcp server --- integrations/mcp-server/src/index.ts | 30 ++++++---------------------- 1 file changed, 6 insertions(+), 24 deletions(-) diff --git a/integrations/mcp-server/src/index.ts b/integrations/mcp-server/src/index.ts index 30e00567467..79dadf210f3 100644 --- a/integrations/mcp-server/src/index.ts +++ b/integrations/mcp-server/src/index.ts @@ -386,7 +386,6 @@ async function startStdio() { async function startHttp(port: number) { const sessions = new Map(); - const requestToSession = new Map(); const routingTransport: Transport = { start: async () => {}, @@ -395,21 +394,8 @@ async function startHttp(port: number) { await transport.close(); } sessions.clear(); - requestToSession.clear(); - }, - send: async (message, options) => { - const msg = message as { id?: string | number }; - const requestId = msg.id ?? options?.relatedRequestId; - if (requestId !== undefined) { - const sessionId = requestToSession.get(requestId); - if (sessionId) { - const transport = sessions.get(sessionId); - if (transport) { - await transport.send(message, options); - } - } - } }, + send: async () => {}, onclose: undefined, onerror: undefined, onmessage: undefined, @@ -472,29 +458,25 @@ async function startHttp(port: number) { } await transport.handleRequest(req, res, parsedBody); } else { - let currentSessionId: string | undefined; const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: () => randomUUID(), onsessioninitialized: (newSessionId: string) => { - currentSessionId = newSessionId; sessions.set(newSessionId, transport); }, onsessionclosed: (closedSessionId: string) => { sessions.delete(closedSessionId); - for (const [rid, sid] of requestToSession) { - if (sid === closedSessionId) { - requestToSession.delete(rid); - } - } }, }); transport.onmessage = (message, extra) => { const msg = message as { id?: string | number }; - if (msg.id !== undefined && currentSessionId) { - requestToSession.set(msg.id, currentSessionId); + if (msg.id !== undefined) { + (server as unknown as { _transport: Transport })._transport = transport; } routingTransport.onmessage?.(message, extra); + if (msg.id !== undefined) { + (server as unknown as { _transport: Transport })._transport = routingTransport; + } }; transport.onerror = (error) => { From 41f5d3d54dd9bf57bf6f1e01a09e65d6b9a24a5c Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 09:25:09 +0200 Subject: [PATCH 04/10] fix: fixed other issues in mcp server --- integrations/mcp-server/src/index.ts | 797 ++++++++++-------- .../mcp-server/src/prompts/generateOptions.ts | 48 +- .../mcp-server/src/registry/bundles.ts | 22 +- .../mcp-server/src/registry/needsPluginMap.ts | 2 +- .../mcp-server/src/registry/packages.ts | 5 +- .../mcp-server/src/resources/bundlesGuide.ts | 13 +- .../mcp-server/src/tools/diagnoseIssues.ts | 132 ++- .../mcp-server/src/tools/getPackageInfo.ts | 30 +- .../mcp-server/src/tools/listPackages.ts | 28 +- .../mcp-server/src/tools/suggestPlugins.ts | 158 ++-- .../mcp-server/src/utils/optionPath.ts | 60 ++ 11 files changed, 741 insertions(+), 554 deletions(-) create mode 100644 integrations/mcp-server/src/utils/optionPath.ts diff --git a/integrations/mcp-server/src/index.ts b/integrations/mcp-server/src/index.ts index 79dadf210f3..70616f13de8 100644 --- a/integrations/mcp-server/src/index.ts +++ b/integrations/mcp-server/src/index.ts @@ -11,7 +11,6 @@ import { ListPromptsRequestSchema, GetPromptRequestSchema, } from "@modelcontextprotocol/sdk/types.js"; -import type { Transport } from "@modelcontextprotocol/sdk/shared/transport.js"; import { suggestPlugins } from "./tools/suggestPlugins.js"; import { listPackages } from "./tools/listPackages.js"; @@ -19,7 +18,7 @@ import { getPackageInfo } from "./tools/getPackageInfo.js"; import { getPackageCatalogResource } from "./resources/packageCatalog.js"; import { getOptionsGuideResource } from "./resources/optionsGuide.js"; import { getBundlesGuideResource } from "./resources/bundlesGuide.js"; -import { generateOptionsPrompt } from "./prompts/generateOptions.js"; +import { generateOptionsPrompt, generateOptionsSystemText } from "./prompts/generateOptions.js"; import { diagnoseIssues } from "./tools/diagnoseIssues.js"; import { createServer } from "node:http"; @@ -27,382 +26,403 @@ import { randomUUID } from "node:crypto"; const PACKAGE_VERSION = "0.1.0"; const MAX_REQUEST_BODY_BYTES = 1024 * 1024; // 1 MB +const SESSION_IDLE_TIMEOUT_MS = 30 * 60 * 1000; // 30 minutes +const SESSION_SWEEP_INTERVAL_MS = 5 * 60 * 1000; // 5 minutes -function parseArgs() { +// ── CLI args ─────────────────────────────────────────────────────── + +interface ParsedArgs { + mode: "stdio" | "http"; + port?: number; + allowedOrigins?: string[]; +} + +function parseArgs(): ParsedArgs { const args = process.argv.slice(2); - const result: { mode: "stdio" | "http"; port?: number } = { mode: "stdio" }; + const result: ParsedArgs = { mode: "stdio" }; + let rawPort: string | undefined; for (let i = 0; i < args.length; i++) { if (args[i] === "--stdio") { result.mode = "stdio"; } else if (args[i] === "--port" && i + 1 < args.length) { result.mode = "http"; - result.port = parseInt(args[++i], 10); + rawPort = args[++i]; } else if (args[i].startsWith("--port=")) { result.mode = "http"; - result.port = parseInt(args[i].split("=")[1], 10); + rawPort = args[i].split("=")[1]; + } else if (args[i] === "--allowed-origin" && i + 1 < args.length) { + result.allowedOrigins = (result.allowedOrigins ?? []).concat(args[++i]); + } + } + + if (result.mode === "http") { + const port = rawPort !== undefined ? Number(rawPort) : NaN; + if (!Number.isInteger(port) || port <= 0 || port > 65535) { + console.error( + `Invalid --port value: ${rawPort ?? "(missing)"}. Expected an integer between 1 and 65535.`, + ); + process.exit(1); } + result.port = port; } return result; } -const server = new Server( +// ── Resources (shared, read-only content — safe to share across sessions) ── + +const RESOURCES = [ { - name: "@tsparticles/mcp-server", - version: PACKAGE_VERSION, + uri: "tsparticles://packages", + name: "Complete tsParticles Package Catalog", + description: + "Every tsParticles package organized by category with descriptions, load functions, and bundle inclusion info", + mimeType: "text/markdown", + getText: getPackageCatalogResource, }, { - capabilities: { - tools: {}, - resources: {}, - prompts: {}, - }, + uri: "tsparticles://options/guide", + name: "tsParticles Options Guide", + description: + "Complete structural guide to tsParticles options with tables, defaults, and examples", + mimeType: "text/markdown", + getText: getOptionsGuideResource, + }, + { + uri: "tsparticles://bundles", + name: "tsParticles Bundle Guide", + description: + "Guide to all tsParticles bundles with hierarchy, selection advice, and usage examples", + mimeType: "text/markdown", + getText: getBundlesGuideResource, }, -); - -// ── Tools ────────────────────────────────────────────────────────── - -server.setRequestHandler(ListToolsRequestSchema, async () => { - return { - tools: [ - { - name: "suggest_plugins", - description: - "Given a tsParticles options object, suggests the npm packages and imports required to use those options. Detects which plugins, interactions, updaters, and shapes are needed.", - inputSchema: { - type: "object", - properties: { - options: { - type: "object", - description: "The tsParticles options object (ISourceOptions)", +]; + +// ── Server factory ───────────────────────────────────────────────── +// +// IMPORTANT: each transport (stdio, or each individual HTTP session) gets +// its OWN Server instance. The MCP SDK's Server binds a single transport +// per instance internally, and swapping that binding at runtime (as the +// previous implementation did via a private `_transport` field) is not +// safe: request handlers are async and may resolve after the field has +// already been reassigned to another session's transport, causing +// responses to be delivered to the wrong client or dropped entirely. +// Creating one lightweight Server per session avoids that class of bug +// at the cost of a small amount of extra memory per connection. + +function createMcpServer(): Server { + const server = new Server( + { + name: "@tsparticles/mcp-server", + version: PACKAGE_VERSION, + }, + { + capabilities: { + tools: {}, + resources: {}, + prompts: {}, + }, + }, + ); + + // ── Tools ────────────────────────────────────────────────────── + + server.setRequestHandler(ListToolsRequestSchema, async () => { + return { + tools: [ + { + name: "suggest_plugins", + description: + "Given a tsParticles options object, suggests the npm packages and imports required to use those options. Detects which plugins, interactions, updaters, and shapes are needed.", + inputSchema: { + type: "object", + properties: { + options: { + type: "object", + description: "The tsParticles options object (ISourceOptions)", + }, }, + required: ["options"], }, - required: ["options"], }, - }, - { - name: "list_packages", - description: - "List all available tsParticles packages, optionally filtered by category or search query. Categories: bundle, plugin, interaction-external, interaction-particles, interaction-light, updater, shape, effect, path, emitter-shape, color, easing, preset.", - inputSchema: { - type: "object", - properties: { - category: { - type: "string", - description: "Filter by category (optional)", - enum: [ - "bundle", - "plugin", - "interaction-external", - "interaction-particles", - "updater", - "shape", - "effect", - "path", - "emitter-shape", - "color", - "easing", - "preset", - ], - }, - query: { - type: "string", - description: "Search query for package name or description", + { + name: "list_packages", + description: + "List all available tsParticles packages, optionally filtered by category or search query. Categories: bundle, plugin, interaction-external, interaction-particles, interaction-light, updater, shape, effect, path, emitter-shape, color, easing, preset.", + inputSchema: { + type: "object", + properties: { + category: { + type: "string", + description: "Filter by category (optional)", + enum: [ + "bundle", + "plugin", + "interaction-external", + "interaction-particles", + "updater", + "shape", + "effect", + "path", + "emitter-shape", + "color", + "easing", + "preset", + ], + }, + query: { + type: "string", + description: "Search query for package name or description", + }, }, }, }, - }, - { - name: "get_package_info", - description: - "Get detailed information about a specific tsParticles package, including its category, load function, option keys, and which bundles include it.", - inputSchema: { - type: "object", - properties: { - package: { - type: "string", - description: - "Package name (e.g., @tsparticles/plugin-absorbers, @tsparticles/slim)", + { + name: "get_package_info", + description: + "Get detailed information about a specific tsParticles package, including its category, load function, option keys, and which bundles include it.", + inputSchema: { + type: "object", + properties: { + package: { + type: "string", + description: + "Package name (e.g., @tsparticles/plugin-absorbers, @tsparticles/slim)", + }, }, + required: ["package"], }, - required: ["package"], }, - }, - { - name: "diagnose_issues", - description: - "Analyze tsParticles options for common configuration problems: missing plugins, invisible particles, broken interactivity, incorrect structure, and performance issues. Returns a list of issues with severity, explanation, and suggested fixes.", - inputSchema: { - type: "object", - properties: { - options: { - type: "object", - description: "The tsParticles options object (ISourceOptions) to analyze", + { + name: "diagnose_issues", + description: + "Analyze tsParticles options for common configuration problems: missing plugins, invisible particles, broken interactivity, incorrect structure, and performance issues. Returns a list of issues with severity, explanation, and suggested fixes.", + inputSchema: { + type: "object", + properties: { + options: { + type: "object", + description: "The tsParticles options object (ISourceOptions) to analyze", + }, }, + required: ["options"], }, - required: ["options"], }, - }, - ], - }; -}); - -server.setRequestHandler(CallToolRequestSchema, async (request) => { - const { name, arguments: args } = request.params; + ], + }; + }); - switch (name) { - case "suggest_plugins": { - const options = args?.options as Record; - if (!options) { - return { - content: [ - { - type: "text", - text: "Missing required argument: options", - }, - ], - isError: true, - }; + server.setRequestHandler(CallToolRequestSchema, async (request) => { + const { name, arguments: args } = request.params; + + switch (name) { + case "suggest_plugins": { + const options = args?.options as Record; + if (!options) { + return { + content: [{ type: "text", text: "Missing required argument: options" }], + isError: true, + }; + } + const result = suggestPlugins(options); + return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } - const result = suggestPlugins(options); - return { - content: [ - { - type: "text", - text: JSON.stringify(result, null, 2), - }, - ], - }; - } - case "list_packages": { - const filters: { category?: string; query?: string } = {}; - if (args?.category) filters.category = args.category as string; - if (args?.query) filters.query = args.query as string; - const result = listPackages(filters); - return { - content: [ - { - type: "text", - text: JSON.stringify(result, null, 2), - }, - ], - }; - } + case "list_packages": { + const filters: { category?: string; query?: string } = {}; + if (args?.category) filters.category = args.category as string; + if (args?.query) filters.query = args.query as string; + const result = listPackages(filters); + return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; + } - case "get_package_info": { - const pkg = args?.package as string; - if (!pkg) { - return { - content: [ - { - type: "text", - text: "Missing required argument: package", - }, - ], - isError: true, - }; + case "get_package_info": { + const pkg = args?.package as string; + if (!pkg) { + return { + content: [{ type: "text", text: "Missing required argument: package" }], + isError: true, + }; + } + const result = getPackageInfo(pkg); + if (!result) { + return { + content: [ + { + type: "text", + text: `Package "${pkg}" not found. Use list_packages to see all available packages.`, + }, + ], + isError: true, + }; + } + return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } - const result = getPackageInfo(pkg); - if (!result) { + + case "diagnose_issues": { + const options = args?.options as Record; + if (!options) { + return { + content: [{ type: "text", text: "Missing required argument: options" }], + isError: true, + }; + } + const issues = diagnoseIssues(options); return { - content: [ - { - type: "text", - text: `Package "${pkg}" not found. Use list_packages to see all available packages.`, - }, - ], - isError: true, + content: [{ type: "text", text: JSON.stringify({ issues, total: issues.length }, null, 2) }], }; } - return { - content: [ - { - type: "text", - text: JSON.stringify(result, null, 2), - }, - ], - }; - } - case "diagnose_issues": { - const options = args?.options as Record; - if (!options) { + default: return { - content: [ - { - type: "text", - text: "Missing required argument: options", - }, - ], + content: [{ type: "text", text: `Unknown tool: ${name}` }], isError: true, }; - } - const issues = diagnoseIssues(options); - return { - content: [ - { - type: "text", - text: JSON.stringify({ issues, total: issues.length }, null, 2), - }, - ], - }; } + }); - default: - return { - content: [ - { - type: "text", - text: `Unknown tool: ${name}`, - }, - ], - isError: true, - }; - } -}); + // ── Resources ────────────────────────────────────────────────── -// ── Resources ────────────────────────────────────────────────────── + server.setRequestHandler(ListResourcesRequestSchema, async () => { + return { + resources: RESOURCES.map((r) => ({ + uri: r.uri, + name: r.name, + description: r.description, + mimeType: r.mimeType, + })), + }; + }); -const RESOURCES = [ - { - uri: "tsparticles://packages", - name: "Complete tsParticles Package Catalog", - description: - "Every tsParticles package organized by category with descriptions, load functions, and bundle inclusion info", - mimeType: "text/markdown", - getText: getPackageCatalogResource, - }, - { - uri: "tsparticles://options/guide", - name: "tsParticles Options Guide", - description: - "Complete structural guide to tsParticles options with tables, defaults, and examples", - mimeType: "text/markdown", - getText: getOptionsGuideResource, - }, - { - uri: "tsparticles://bundles", - name: "tsParticles Bundle Guide", - description: - "Guide to all tsParticles bundles with hierarchy, selection advice, and usage examples", - mimeType: "text/markdown", - getText: getBundlesGuideResource, - }, -]; + server.setRequestHandler(ReadResourceRequestSchema, async (request) => { + const uri = request.params.uri; + const resource = RESOURCES.find((r) => r.uri === uri); + + if (!resource) { + // The `resources/read` response schema expects a `contents` array, + // not the `content`/`isError` shape used by tool call responses. + // Signal the error by throwing, which the SDK turns into a proper + // JSON-RPC error response instead of a malformed result payload. + throw new Error(`Resource not found: ${uri}`); + } -server.setRequestHandler(ListResourcesRequestSchema, async () => { - return { - resources: RESOURCES.map((r) => ({ - uri: r.uri, - name: r.name, - description: r.description, - mimeType: r.mimeType, - })), - }; -}); - -server.setRequestHandler(ReadResourceRequestSchema, async (request) => { - const uri = request.params.uri; - const resource = RESOURCES.find((r) => r.uri === uri); - - if (!resource) { return { - content: [ + contents: [ { - type: "text", - text: `Resource not found: ${uri}`, + uri: resource.uri, + mimeType: resource.mimeType, + text: resource.getText(), }, ], - isError: true, }; - } + }); - return { - contents: [ - { - uri: resource.uri, - mimeType: resource.mimeType, - text: resource.getText(), - }, - ], - }; -}); + // ── Prompts ────────────────────────────────────────────────────── -// ── Prompts ──────────────────────────────────────────────────────── + server.setRequestHandler(ListPromptsRequestSchema, async () => { + return { prompts: [generateOptionsPrompt] }; + }); + + server.setRequestHandler(GetPromptRequestSchema, async (request) => { + const promptName = request.params.name; -server.setRequestHandler(ListPromptsRequestSchema, async () => { - return { - prompts: [generateOptionsPrompt], - }; -}); + if (promptName !== "generate-options") { + // Same reasoning as above: `prompts/get` expects a `messages` array + // on success. Throw so the SDK produces a valid JSON-RPC error. + throw new Error(`Unknown prompt: ${promptName}`); + } -server.setRequestHandler(GetPromptRequestSchema, async (request) => { - const promptName = request.params.name; + const description = request.params.arguments?.description || "a particle animation"; + const systemText = generateOptionsSystemText; - if (promptName !== "generate-options") { + // The MCP prompt message schema only allows "user" and "assistant" + // roles — "system" is not part of the spec and a strict client may + // reject or silently drop such a message. Fold the system guidance + // into the leading user message instead. return { - content: [ + messages: [ { - type: "text", - text: `Unknown prompt: ${promptName}`, + role: "user", + content: { + type: "text", + text: `${systemText}\n\nGenerate tsParticles options for: ${description}`, + }, }, ], - isError: true, }; - } - - const description = - request.params.arguments?.description || "a particle animation"; + }); - return { - messages: [ - { - role: "system", - content: { - type: "text", - text: generateOptionsPrompt.messages[0].content.text, - }, - }, - { - role: "user", - content: { - type: "text", - text: `Generate tsParticles options for: ${description}`, - }, - }, - ], - }; -}); + return server; +} -// ── Start Server ─────────────────────────────────────────────────── +// ── Start Server: stdio ───────────────────────────────────────────── async function startStdio() { + const server = createMcpServer(); const transport = new StdioServerTransport(); await server.connect(transport); console.error("tsParticles MCP server running on stdio"); } -async function startHttp(port: number) { - const sessions = new Map(); +// ── Start Server: HTTP (Streamable HTTP transport) ────────────────── - const routingTransport: Transport = { - start: async () => {}, - close: async () => { - for (const transport of sessions.values()) { - await transport.close(); - } - sessions.clear(); - }, - send: async () => {}, - onclose: undefined, - onerror: undefined, - onmessage: undefined, - sessionId: undefined, - }; +interface SessionEntry { + server: Server; + transport: StreamableHTTPServerTransport; + lastActivity: number; +} + +function isOriginAllowed(origin: string | undefined, allowedOrigins?: string[]): boolean { + // No Origin header at all (e.g. non-browser clients, curl) is allowed — + // the Origin check exists to defend against DNS-rebinding attacks from + // browser contexts, which always send this header. + if (!origin) return true; + + if (allowedOrigins && allowedOrigins.length > 0) { + return allowedOrigins.includes(origin); + } - await server.connect(routingTransport); + // Default: only allow local origins when no explicit allow-list is + // configured, since the server binds to 0.0.0.0 with no auth. + try { + const { hostname } = new URL(origin); + return hostname === "localhost" || hostname === "127.0.0.1" || hostname === "::1"; + } catch { + return false; + } +} + +async function startHttp(port: number, allowedOrigins?: string[]) { + const sessions = new Map(); + + function touchSession(sessionId: string) { + const entry = sessions.get(sessionId); + if (entry) entry.lastActivity = Date.now(); + } + + async function closeSession(sessionId: string) { + const entry = sessions.get(sessionId); + if (!entry) return; + sessions.delete(sessionId); + try { + await entry.transport.close(); + } catch (err) { + console.error(`Error closing session ${sessionId}:`, err); + } + } + + // Periodically sweep idle sessions so a client that disconnects + // without a clean DELETE doesn't leak memory indefinitely. + const sweepInterval = setInterval(() => { + const now = Date.now(); + for (const [sessionId, entry] of sessions) { + if (now - entry.lastActivity > SESSION_IDLE_TIMEOUT_MS) { + void closeSession(sessionId); + } + } + }, SESSION_SWEEP_INTERVAL_MS); + sweepInterval.unref(); const httpServer = createServer(async (req, res) => { // Health check endpoint @@ -412,84 +432,121 @@ async function startHttp(port: number) { return; } - // MCP endpoint — accept POST with JSON body - if (req.method === "POST" && req.url === "/mcp") { - let body: string; - - try { - body = await new Promise((resolve, reject) => { - const chunks: Buffer[] = []; - let receivedBytes = 0; - req.on("data", (chunk: Buffer) => { - receivedBytes += chunk.length; - if (receivedBytes > MAX_REQUEST_BODY_BYTES) { - req.destroy(new Error("Request body too large")); - return; - } - chunks.push(chunk); - }); - req.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); - req.on("error", reject); - }); - } catch { - res.writeHead(413, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Request body too large" })); + if (req.url !== "/mcp") { + res.writeHead(404); + res.end("Not found"); + return; + } + + // Defend against DNS rebinding: reject browser-originated requests + // from origins we don't recognize. + const originHeader = req.headers.origin; + if (!isOriginAllowed(originHeader, allowedOrigins)) { + res.writeHead(403, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Origin not allowed" })); + return; + } + + const sessionIdHeader = req.headers["mcp-session-id"]; + const sessionId = Array.isArray(sessionIdHeader) ? sessionIdHeader[0] : sessionIdHeader; + + // GET is used by clients to open the server->client SSE stream on an + // existing session. + if (req.method === "GET") { + if (!sessionId || !sessions.has(sessionId)) { + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Session not found" })); return; } + touchSession(sessionId); + await sessions.get(sessionId)!.transport.handleRequest(req, res); + return; + } - let parsedBody: unknown; - try { - parsedBody = body ? JSON.parse(body) : undefined; - } catch { - res.writeHead(400, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Invalid JSON" })); + // DELETE is used by clients to explicitly terminate a session. + if (req.method === "DELETE") { + if (!sessionId || !sessions.has(sessionId)) { + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Session not found" })); return; } + await closeSession(sessionId); + res.writeHead(204); + res.end(); + return; + } - const sessionIdHeader = req.headers["mcp-session-id"]; - const sessionId = Array.isArray(sessionIdHeader) ? sessionIdHeader[0] : sessionIdHeader; - - if (sessionId) { - const transport = sessions.get(sessionId); - if (!transport) { - res.writeHead(404, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Session not found" })); - return; - } - await transport.handleRequest(req, res, parsedBody); - } else { - const transport = new StreamableHTTPServerTransport({ - sessionIdGenerator: () => randomUUID(), - onsessioninitialized: (newSessionId: string) => { - sessions.set(newSessionId, transport); - }, - onsessionclosed: (closedSessionId: string) => { - sessions.delete(closedSessionId); - }, - }); + if (req.method !== "POST") { + res.writeHead(405, { "Content-Type": "application/json", Allow: "GET, POST, DELETE" }); + res.end(JSON.stringify({ error: "Method not allowed" })); + return; + } - transport.onmessage = (message, extra) => { - const msg = message as { id?: string | number }; - if (msg.id !== undefined) { - (server as unknown as { _transport: Transport })._transport = transport; - } - routingTransport.onmessage?.(message, extra); - if (msg.id !== undefined) { - (server as unknown as { _transport: Transport })._transport = routingTransport; + // POST: either an existing session's message, or a new session's + // initialize request. + let body: string; + try { + body = await new Promise((resolve, reject) => { + const chunks: Buffer[] = []; + let receivedBytes = 0; + req.on("data", (chunk: Buffer) => { + receivedBytes += chunk.length; + if (receivedBytes > MAX_REQUEST_BODY_BYTES) { + req.destroy(new Error("Request body too large")); + return; } - }; + chunks.push(chunk); + }); + req.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); + req.on("error", reject); + }); + } catch { + res.writeHead(413, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Request body too large" })); + return; + } - transport.onerror = (error) => { - routingTransport.onerror?.(error); - }; + let parsedBody: unknown; + try { + parsedBody = body ? JSON.parse(body) : undefined; + } catch { + res.writeHead(400, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Invalid JSON" })); + return; + } - await transport.handleRequest(req, res, parsedBody); + if (sessionId) { + const entry = sessions.get(sessionId); + if (!entry) { + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Session not found" })); + return; } + touchSession(sessionId); + await entry.transport.handleRequest(req, res, parsedBody); return; } - res.writeHead(404); - res.end("Not found"); + // No session id: this must be an initialize request. Spin up a + // brand new Server + Transport pair dedicated to this session so + // that response routing can never cross sessions. + const newServer = createMcpServer(); + const transport = new StreamableHTTPServerTransport({ + sessionIdGenerator: () => randomUUID(), + onsessioninitialized: (newSessionId: string) => { + sessions.set(newSessionId, { server: newServer, transport, lastActivity: Date.now() }); + }, + onsessionclosed: (closedSessionId: string) => { + sessions.delete(closedSessionId); + }, + }); + + await newServer.connect(transport); + await transport.handleRequest(req, res, parsedBody); + }); + + httpServer.on("close", () => { + clearInterval(sweepInterval); }); httpServer.listen(port, "0.0.0.0", () => { @@ -498,11 +555,13 @@ async function startHttp(port: number) { }); } +// ── Entry point ────────────────────────────────────────────────────── + async function main() { const args = parseArgs(); if (args.mode === "http" && args.port) { - await startHttp(args.port); + await startHttp(args.port, args.allowedOrigins); } else { await startStdio(); } @@ -511,4 +570,4 @@ async function main() { main().catch((error) => { console.error("Fatal error:", error); process.exit(1); -}); +}); \ No newline at end of file diff --git a/integrations/mcp-server/src/prompts/generateOptions.ts b/integrations/mcp-server/src/prompts/generateOptions.ts index 98999b9b2d0..7f008da3f5f 100644 --- a/integrations/mcp-server/src/prompts/generateOptions.ts +++ b/integrations/mcp-server/src/prompts/generateOptions.ts @@ -1,4 +1,15 @@ -export const generateOptionsPrompt = { +import type { Prompt } from "@modelcontextprotocol/sdk/types.js"; + +// ── Prompt metadata ────────────────────────────────────────────────── +// +// This is the object returned by `prompts/list`. Per the MCP spec it +// should only carry metadata (name, description, arguments) — not the +// actual message content. Typing it explicitly against the SDK's +// `Prompt` type means the compiler will flag it (excess-property / +// missing-property errors) if extra fields like `messages` sneak back +// in here, instead of only being caught by manual review. + +export const generateOptionsPrompt: Prompt = { name: "generate-options", description: "Generate tsParticles configuration from a natural language description", arguments: [ @@ -8,12 +19,22 @@ export const generateOptionsPrompt = { required: true, }, ], - messages: [ - { - role: "system" as const, - content: { - type: "text" as const, - text: `You are a tsParticles configuration expert. Your task is to convert natural language descriptions into valid tsParticles options. +}; + +// ── Prompt system text ─────────────────────────────────────────────── +// +// This is NOT part of the `Prompt` object and is never returned by +// `prompts/list`. It is plain internal content consumed only by the +// `prompts/get` handler, which interpolates the actual `description` +// argument into it at request time and returns a single "user" message +// (the MCP prompt message schema only allows "user" | "assistant" +// roles — there is no "system" role to put this in). +// +// There is no "{{description}}" placeholder here to substitute — the +// handler appends the real description as a suffix instead, so there's +// no templating step to forget or get wrong. + +export const generateOptionsSystemText = `You are a tsParticles configuration expert. Your task is to convert natural language descriptions into valid tsParticles options. ## How to generate configurations: @@ -61,15 +82,4 @@ The options must be valid ISourceOptions. Use only options that correspond to ac - \`particles.shape.type\` defaults to "circle" — only specify if different - \`particles.move.enable\` is true by default - Always include \`background.color\` unless the user wants transparent -- Use \`preset\` for pre-configured effects when appropriate`, - }, - }, - { - role: "user" as const, - content: { - type: "text" as const, - text: "Generate tsParticles options for: {{description}}", - }, - }, - ], -}; +- Use \`preset\` for pre-configured effects when appropriate`; diff --git a/integrations/mcp-server/src/registry/bundles.ts b/integrations/mcp-server/src/registry/bundles.ts index a1e77db0363..d3eb62d02c3 100644 --- a/integrations/mcp-server/src/registry/bundles.ts +++ b/integrations/mcp-server/src/registry/bundles.ts @@ -53,8 +53,8 @@ export const bundles: BundleInfo[] = [ ], }, { - name: "@tsparticles/full", - description: "Full bundle (also published as `tsparticles`). Extends slim with absorbers, emitters, drag/trail interactions, extra updaters (destroy, roll, tilt, twinkle, wobble), text shape.", + name: "tsparticles", + description: "Full bundle. Extends slim with absorbers, emitters, drag/trail interactions, extra updaters (destroy, roll, tilt, twinkle, wobble), text shape.", loadFunction: "loadFull", extends: "@tsparticles/slim", packages: [ @@ -77,9 +77,9 @@ export const bundles: BundleInfo[] = [ name: "@tsparticles/all", description: "Everything bundle. Extends full with all plugins (export, infection, background-mask, canvas-mask, manual-particles, motion, poisson, polygon-mask, responsive, sounds, themes, trail, zoom), all easing, all colors, all shapes, all effects, all paths, extra interactions, extra emitter shapes.", loadFunction: "loadAll", - extends: "@tsparticles/full", + extends: "tsparticles", packages: [ - "@tsparticles/full", + "tsparticles", "@tsparticles/plugin-export-image", "@tsparticles/plugin-export-json", "@tsparticles/plugin-export-video", @@ -110,12 +110,12 @@ export const bundles: BundleInfo[] = [ (e) => `@tsparticles/plugin-easing-${e}`, ), ...["bubble", "filter", "particles", "shadow", "trail"].map((e) => `@tsparticles/effect-${e}`), - ...["arrow", "cards", "cog", "heart", "infinity", "matrix", "path", "ribbon", "rounded-polygon", "rounded-rect", "spiral", "squircle"].map( + ...["arrow", "cards", "cog", "gif", "heart", "infinity", "matrix", "path", "ribbon", "rounded-polygon", "rounded-rect", "spiral", "squircle"].map( (s) => `@tsparticles/shape-${s}`, ), "@tsparticles/updater-gradient", "@tsparticles/updater-orbit", - ...["branches", "brownian", "curl-noise", "curves", "fractal-noise", "grid", "levy", "perlin-noise", "polygon", "random", "simplex-noise", "spiral", "svg", "zigzag"].map( + ...["branches", "brownian", "curl-noise", "curves", "fractal-noise", "grid", "levy", "perlin-noise", "polygon", "random", "simplex-noise", "spiral", "svg", "zig-zag"].map( (p) => `@tsparticles/path-${p}`, ), ], @@ -187,4 +187,14 @@ export const bundles: BundleInfo[] = [ "@tsparticles/updater-life", ], }, + { + name: "@tsparticles/pjs", + description: "particles.js compatibility layer. Drop-in replacement for particles.js with full API compatibility. Wraps the full tsparticles bundle.", + loadFunction: "doInitPlugins", + extends: "tsparticles", + packages: [ + "tsparticles", + "@tsparticles/plugin-responsive", + ], + }, ]; diff --git a/integrations/mcp-server/src/registry/needsPluginMap.ts b/integrations/mcp-server/src/registry/needsPluginMap.ts index daeba35d44d..38d70fa43bf 100644 --- a/integrations/mcp-server/src/registry/needsPluginMap.ts +++ b/integrations/mcp-server/src/registry/needsPluginMap.ts @@ -1,5 +1,5 @@ // Auto-generated by scripts/extractNeedsPlugin.ts -// Generated on 2026-06-04 +// Generated on 2026-07-10 // Run: npx tsx scripts/extractNeedsPlugin.ts export interface NeedsPluginEntry { diff --git a/integrations/mcp-server/src/registry/packages.ts b/integrations/mcp-server/src/registry/packages.ts index 532015b67b0..b7819df82f1 100644 --- a/integrations/mcp-server/src/registry/packages.ts +++ b/integrations/mcp-server/src/registry/packages.ts @@ -53,6 +53,7 @@ const shapes: PackageInfo[] = [ { name: "@tsparticles/shape-circle", description: "Circle shape - the default particle shape", category: "shape", loadFunction: "loadCircleShape", optionKeys: ["particles.shape.type"], needsPluginCheck: "circle is the default shape", alwaysNeeded: true, includedInBundles: ["basic", "slim"] }, { name: "@tsparticles/shape-cog", description: "Cog/gear shape for particles", category: "shape", loadFunction: "loadCogShape", optionKeys: ["particles.shape.type"], needsPluginCheck: "used when shape type is 'cog'", alwaysNeeded: false, includedInBundles: [] }, { name: "@tsparticles/shape-emoji", description: "Emoji/unicode character shape", category: "shape", loadFunction: "loadEmojiShape", optionKeys: ["particles.shape.type"], needsPluginCheck: "used when shape type is 'emoji'", alwaysNeeded: false, includedInBundles: ["slim", "confetti"] }, + { name: "@tsparticles/shape-gif", description: "Animated GIF image shape", category: "shape", loadFunction: "loadGifShape", optionKeys: ["particles.shape.type"], needsPluginCheck: "used when shape type is 'gif'", alwaysNeeded: false, includedInBundles: ["all"] }, { name: "@tsparticles/shape-heart", description: "Heart shape for particles", category: "shape", loadFunction: "loadHeartShape", optionKeys: ["particles.shape.type"], needsPluginCheck: "used when shape type is 'heart'", alwaysNeeded: false, includedInBundles: ["confetti"] }, { name: "@tsparticles/shape-image", description: "Custom image shape - use any image URL as particle", category: "shape", loadFunction: "loadImageShape", optionKeys: ["particles.shape.type"], needsPluginCheck: "used when shape type is 'image'", alwaysNeeded: false, includedInBundles: ["slim", "confetti"] }, { name: "@tsparticles/shape-infinity", description: "Infinity symbol (∞) shape", category: "shape", loadFunction: "loadInfinityShape", optionKeys: ["particles.shape.type"], needsPluginCheck: "used when shape type is 'infinity'", alwaysNeeded: false, includedInBundles: [] }, @@ -159,8 +160,7 @@ const emitterShapes: PackageInfo[] = [ const bundles: PackageInfo[] = [ { name: "@tsparticles/basic", description: "Minimal bundle - circle shape, move plugin, basic updaters, essential color formats", category: "bundle", loadFunction: "loadBasic", optionKeys: [], needsPluginCheck: "recommended as base for any project", alwaysNeeded: true, includedInBundles: [] }, { name: "@tsparticles/slim", description: "Standard bundle - extends basic with interactivity, links, collisions, many shapes and updaters", category: "bundle", loadFunction: "loadSlim", optionKeys: [], needsPluginCheck: "recommended for most projects", alwaysNeeded: true, includedInBundles: [] }, - { name: "@tsparticles/full", description: "Full bundle - extends slim with absorbers, emitters, drag/trail, more shapes and updaters", category: "bundle", loadFunction: "loadFull", optionKeys: [], needsPluginCheck: "use for advanced features", alwaysNeeded: true, includedInBundles: [] }, - { name: "tsparticles", description: "Full bundle (npm alias for @tsparticles/full)", category: "bundle", loadFunction: "loadFull", optionKeys: [], needsPluginCheck: "use for advanced features", alwaysNeeded: true, includedInBundles: [] }, + { name: "tsparticles", description: "Full bundle - extends slim with absorbers, emitters, drag/trail, more shapes and updaters", category: "bundle", loadFunction: "loadFull", optionKeys: [], needsPluginCheck: "use for advanced features", alwaysNeeded: true, includedInBundles: [] }, { name: "@tsparticles/all", description: "Everything bundle - all plugins, shapes, updaters, paths, effects, easing", category: "bundle", loadFunction: "loadAll", optionKeys: [], needsPluginCheck: "use for maximum features", alwaysNeeded: true, includedInBundles: [] }, { name: "@tsparticles/confetti", description: "Confetti-focused bundle with emitters, decorative shapes, and celebration effects", category: "bundle", loadFunction: "loadConfetti", optionKeys: [], needsPluginCheck: "use for confetti effects", alwaysNeeded: true, includedInBundles: [] }, { name: "@tsparticles/fireworks", description: "Fireworks-focused bundle with emitters, sounds, and explosion effects", category: "bundle", loadFunction: "loadFireworks", optionKeys: [], needsPluginCheck: "use for fireworks effects", alwaysNeeded: true, includedInBundles: [] }, @@ -185,6 +185,7 @@ const presets: PackageInfo[] = [ { name: "@tsparticles/preset-hyperspace", description: "Hyperspace/star-warp effect preset", category: "preset", loadFunction: "loadHyperspacePreset", optionKeys: ["preset"], needsPluginCheck: "use preset: 'hyperspace'", alwaysNeeded: false, includedInBundles: [] }, { name: "@tsparticles/preset-links", description: "Connected particles network effect preset", category: "preset", loadFunction: "loadLinksPreset", optionKeys: ["preset"], needsPluginCheck: "use preset: 'links'", alwaysNeeded: false, includedInBundles: [] }, { name: "@tsparticles/preset-matrix", description: "Matrix digital rain effect preset", category: "preset", loadFunction: "loadMatrixPreset", optionKeys: ["preset"], needsPluginCheck: "use preset: 'matrix'", alwaysNeeded: false, includedInBundles: [] }, + { name: "@tsparticles/preset-meteors", description: "Meteors/shooting-star effect preset", category: "preset", loadFunction: "loadMeteorsPreset", optionKeys: ["preset"], needsPluginCheck: "use preset: 'meteors'", alwaysNeeded: false, includedInBundles: [] }, { name: "@tsparticles/preset-party", description: "Party celebration particles preset", category: "preset", loadFunction: "loadPartyPreset", optionKeys: ["preset"], needsPluginCheck: "use preset: 'party'", alwaysNeeded: false, includedInBundles: [] }, { name: "@tsparticles/preset-sea-anemone", description: "Sea anemone/underwater creature effect preset", category: "preset", loadFunction: "loadSeaAnemonePreset", optionKeys: ["preset"], needsPluginCheck: "use preset: 'sea-anemone'", alwaysNeeded: false, includedInBundles: [] }, { name: "@tsparticles/preset-snow", description: "Snow falling effect preset", category: "preset", loadFunction: "loadSnowPreset", optionKeys: ["preset"], needsPluginCheck: "use preset: 'snow'", alwaysNeeded: false, includedInBundles: [] }, diff --git a/integrations/mcp-server/src/resources/bundlesGuide.ts b/integrations/mcp-server/src/resources/bundlesGuide.ts index 677299afdc9..2a21a344a58 100644 --- a/integrations/mcp-server/src/resources/bundlesGuide.ts +++ b/integrations/mcp-server/src/resources/bundlesGuide.ts @@ -19,7 +19,7 @@ export function getBundlesGuideResource(): string { "- **@tsparticles/slim**: Standard setup. Use for most projects with interactivity, links, multiple shapes.", ); lines.push( - "- **@tsparticles/full**: Advanced setup. Use when you need absorbers, emitters, drag, extra effects.", + "- **tsparticles**: Full setup. Use when you need absorbers, emitters, drag, extra effects.", ); lines.push( "- **@tsparticles/all**: Maximum setup. Use when you want everything available.", @@ -36,6 +36,9 @@ export function getBundlesGuideResource(): string { lines.push( "- **@tsparticles/ribbons**: Ribbon/trail effects. Use for flowing ribbon animations.", ); + lines.push( + "- **@tsparticles/pjs**: particles.js compatibility layer. Migrate existing particles.js projects.", + ); lines.push(""); lines.push("## Bundle Hierarchy"); @@ -47,10 +50,12 @@ export function getBundlesGuideResource(): string { lines.push("@tsparticles/slim (basic + interactivity + more shapes/updaters)"); lines.push(" │"); lines.push(" ▼"); - lines.push("@tsparticles/full (slim + absorbers + emitters + more)"); + lines.push("tsparticles (slim + absorbers + emitters + more)"); lines.push(" │"); - lines.push(" ▼"); - lines.push("@tsparticles/all (full + everything else)"); + lines.push(" ├──────────────┐"); + lines.push(" ▼ ▼"); + lines.push("@tsparticles/all @tsparticles/pjs"); + lines.push(" (everything) (particles.js compat)"); lines.push(""); lines.push("Also available (standalone, each extends basic):"); lines.push("- @tsparticles/confetti"); diff --git a/integrations/mcp-server/src/tools/diagnoseIssues.ts b/integrations/mcp-server/src/tools/diagnoseIssues.ts index e3be32746fc..b25c501e0d0 100644 --- a/integrations/mcp-server/src/tools/diagnoseIssues.ts +++ b/integrations/mcp-server/src/tools/diagnoseIssues.ts @@ -1,4 +1,5 @@ import { packageCatalog } from "../registry/packages.js"; +import { getOptionValue, asArray } from "../utils/optionPath.js"; export interface DiagnosticIssue { severity: "error" | "warning" | "info"; @@ -8,17 +9,41 @@ export interface DiagnosticIssue { relatedPackages?: string[]; } -function getOptionValue(options: Record, path: string): unknown { - const parts = path.split("."); - let current: unknown = options; - for (const part of parts) { - if (current === undefined || current === null || typeof current !== "object") { - return undefined; - } - current = (current as Record)[part]; - } - return current; -} +// Shape names built into @tsparticles/engine itself, which never need an +// extra @tsparticles/shape-* package. Anything else is either a known +// shape package (checked against the catalog) or unrecognized. +const BUILT_IN_SHAPES = new Set(["circle", "square", "edge"]); + +// Keys that legitimately belong under `particles` in a valid tsParticles +// config. This list intentionally errs on the side of completeness — +// missing an entry here causes a false-positive "unusual structure" +// warning on perfectly valid configs, which is worse than under-warning. +const KNOWN_PARTICLES_KEYS = new Set([ + "number", + "color", + "shape", + "size", + "opacity", + "move", + "links", + "collisions", + "stroke", + "groups", + "zIndex", + "reduceDuplicates", + "life", + "rotate", + "tilt", + "roll", + "wobble", + "twinkle", + "shadow", + "destroy", + "orbit", + "effect", + "bounce", + "interactivity", +]); export function diagnoseIssues(options: Record): DiagnosticIssue[] { const issues: DiagnosticIssue[] = []; @@ -39,8 +64,7 @@ export function diagnoseIssues(options: Record): DiagnosticIssu title: "Verify plugins are loaded", description: "The @tsparticles/engine alone has no shape drawers, movement system, or updaters. Make sure you have loaded the required plugins before initializing — either via a bundle (loadBasic, loadSlim, loadFull) or by loading individual plugins.", - fix: - "Load at least @tsparticles/basic via loadBasic(engine), or load individual plugins like loadCircleShape, loadMovePlugin, loadOpacityUpdater, loadSizeUpdater, loadHexColorPlugin, loadRgbColorPlugin, loadHslColorPlugin.", + fix: "Load at least @tsparticles/basic via loadBasic(engine), or load individual plugins like loadCircleShape, loadMovePlugin, loadOpacityUpdater, loadSizeUpdater, loadHexColorPlugin, loadRgbColorPlugin, loadHslColorPlugin.", relatedPackages: [ "@tsparticles/basic", "@tsparticles/slim", @@ -67,7 +91,8 @@ export function diagnoseIssues(options: Record): DiagnosticIssu issues.push({ severity: "error", title: "Particles invisible (opacity = 0)", - description: "particles.opacity.value is set to 0 with no animation enabled. Particles will be fully transparent.", + description: + "particles.opacity.value is set to 0 with no animation enabled. Particles will be fully transparent.", fix: "Set particles.opacity.value to a value between 0.1 and 1, or enable opacity animation.", }); } @@ -92,7 +117,8 @@ export function diagnoseIssues(options: Record): DiagnosticIssu issues.push({ severity: "warning", title: "Move plugin required", - description: "You have particles.move configured. Make sure @tsparticles/plugin-move is loaded before initializing tsParticles, otherwise particles won't move.", + description: + "You have particles.move configured. Make sure @tsparticles/plugin-move is loaded before initializing tsParticles, otherwise particles won't move.", fix: "Install and load @tsparticles/plugin-move via loadMovePlugin(engine).", relatedPackages: ["@tsparticles/plugin-move"], }); @@ -106,7 +132,8 @@ export function diagnoseIssues(options: Record): DiagnosticIssu issues.push({ severity: "warning", title: "Hex color format needs hex-color plugin", - description: "You're using a hex color (#RRGGBB). Load @tsparticles/plugin-hex-color or use a built-in color name.", + description: + "You're using a hex color (#RRGGBB). Load @tsparticles/plugin-hex-color or use a built-in color name.", fix: "Install and load @tsparticles/plugin-hex-color via loadHexColorPlugin(engine).", relatedPackages: ["@tsparticles/plugin-hex-color"], }); @@ -134,14 +161,16 @@ export function diagnoseIssues(options: Record): DiagnosticIssu // ── Missing Shape Plugin ──────────────────────────────────────── const shapeType = getOptionValue(options, "particles.shape.type"); if (shapeType) { - const names = typeof shapeType === "string" - ? shapeType.split(/[,\s]+/).filter(Boolean) - : Array.isArray(shapeType) ? shapeType.filter(Boolean) : []; + const names = + typeof shapeType === "string" + ? shapeType.split(/[,\s]+/).filter(Boolean) + : Array.isArray(shapeType) + ? shapeType.filter(Boolean) + : []; for (const name of names) { const cleanName = name.replace("@tsparticles/", ""); - const fullName = cleanName.startsWith("shape-") - ? `@tsparticles/${cleanName}` - : `@tsparticles/shape-${cleanName}`; + const fullName = cleanName.startsWith("shape-") ? `@tsparticles/${cleanName}` : `@tsparticles/shape-${cleanName}`; + if (packageCatalog.byName[fullName]) { issues.push({ severity: "warning", @@ -150,6 +179,16 @@ export function diagnoseIssues(options: Record): DiagnosticIssu fix: `Install and load ${fullName}.`, relatedPackages: [fullName], }); + } else if (!BUILT_IN_SHAPES.has(cleanName.toLowerCase())) { + // Previously this case was silently ignored, which hides typos + // like "squere" or genuinely unsupported shape names — flag it + // instead of saying nothing. + issues.push({ + severity: "warning", + title: `Unrecognized shape '${cleanName}'`, + description: `Shape type '${name}' doesn't match a built-in shape or a known @tsparticles/shape-* package. Check for typos, or confirm this is a custom shape registered manually.`, + fix: "Use list_packages with category 'shape' to see all known shape packages.", + }); } } } @@ -160,7 +199,8 @@ export function diagnoseIssues(options: Record): DiagnosticIssu issues.push({ severity: "warning", title: "Interactivity plugin required", - description: "You have interactivity configured. Make sure @tsparticles/plugin-interactivity is loaded, otherwise mouse/touch interactions won't work.", + description: + "You have interactivity configured. Make sure @tsparticles/plugin-interactivity is loaded, otherwise mouse/touch interactions won't work.", fix: "Install and load @tsparticles/plugin-interactivity via loadInteractivityPlugin(engine).", relatedPackages: ["@tsparticles/plugin-interactivity"], }); @@ -207,7 +247,8 @@ export function diagnoseIssues(options: Record): DiagnosticIssu issues.push({ severity: "warning", title: "Links interaction plugin required", - description: "particles.links is configured. Load @tsparticles/interaction-particles-links to draw connecting lines between particles.", + description: + "particles.links is configured. Load @tsparticles/interaction-particles-links to draw connecting lines between particles.", fix: "Install and load @tsparticles/interaction-particles-links via loadParticlesLinksInteraction(engine).", relatedPackages: ["@tsparticles/interaction-particles-links"], }); @@ -248,13 +289,16 @@ export function diagnoseIssues(options: Record): DiagnosticIssu // ── Options Structure Issues ──────────────────────────────────── const particlesVal = getOptionValue(options, "particles") as Record | undefined; - if (particlesVal && typeof particlesVal === "object" && !("number" in particlesVal) && !("color" in particlesVal) && !("shape" in particlesVal) && !("size" in particlesVal) && !("opacity" in particlesVal) && !("move" in particlesVal)) { - const childKeys = Object.keys(particlesVal).filter(k => typeof particlesVal[k] === "object"); - if (childKeys.length > 0) { + if (particlesVal && typeof particlesVal === "object") { + const keys = Object.keys(particlesVal); + const hasAnyKnownKey = keys.some(k => KNOWN_PARTICLES_KEYS.has(k)); + const childObjectKeys = keys.filter(k => typeof particlesVal[k] === "object"); + + if (!hasAnyKnownKey && childObjectKeys.length > 0) { issues.push({ severity: "info", title: "Unusual particles structure", - description: "The particles object doesn't contain expected keys (number, color, shape, size, opacity, move). Your options may be nested incorrectly.", + description: `The particles object doesn't contain any recognized keys (found: ${keys.join(", ") || "none"}). Your options may be nested incorrectly.`, fix: "Ensure your options follow the correct structure: { background, particles: { number, color, shape, size, opacity, move, links, ... }, interactivity: { ... } }", }); } @@ -278,7 +322,8 @@ export function diagnoseIssues(options: Record): DiagnosticIssu issues.push({ severity: "info", title: "Full-screen not enabled by default in v2", - description: "tsParticles v2 does NOT set fullScreen by default. If your container div has no explicit size, the canvas may have zero height.", + description: + "tsParticles v2 does NOT set fullScreen by default. If your container div has no explicit size, the canvas may have zero height.", fix: "Add fullScreen: { enable: true } to your options, or ensure your container div has explicit width and height (e.g., width: 100%; height: 100vh).", }); } @@ -294,16 +339,25 @@ export function diagnoseIssues(options: Record): DiagnosticIssu } // ── Emitter shape ─────────────────────────────────────────────── - const emitterShapeType = getOptionValue(options, "emitters.shape.type"); - if (emitterShapeType) { - const esShapeMap: Record = { - circle: "@tsparticles/plugin-emitters-shape-circle", - square: "@tsparticles/plugin-emitters-shape-square", - canvas: "@tsparticles/plugin-emitters-shape-canvas", - path: "@tsparticles/plugin-emitters-shape-path", - polygon: "@tsparticles/plugin-emitters-shape-polygon", - }; - const name = String(emitterShapeType); + // `emitters` may be a single object or an array of emitter configs — + // normalize before reading `.shape.type` so array configs aren't + // silently skipped. + const esShapeMap: Record = { + circle: "@tsparticles/plugin-emitters-shape-circle", + square: "@tsparticles/plugin-emitters-shape-square", + canvas: "@tsparticles/plugin-emitters-shape-canvas", + path: "@tsparticles/plugin-emitters-shape-path", + polygon: "@tsparticles/plugin-emitters-shape-polygon", + }; + const emitterEntries = asArray>(options.emitters); + const reportedEmitterShapes = new Set(); + for (const emitter of emitterEntries) { + const shapeType = getOptionValue(emitter, "shape.type"); + if (!shapeType) continue; + const name = String(shapeType); + if (reportedEmitterShapes.has(name)) continue; + reportedEmitterShapes.add(name); + const pkg = esShapeMap[name]; if (pkg) { issues.push({ diff --git a/integrations/mcp-server/src/tools/getPackageInfo.ts b/integrations/mcp-server/src/tools/getPackageInfo.ts index 45264c77a5a..52fe3e7fdfe 100644 --- a/integrations/mcp-server/src/tools/getPackageInfo.ts +++ b/integrations/mcp-server/src/tools/getPackageInfo.ts @@ -8,23 +8,24 @@ export function getPackageInfo(packageName: string) { return null; } - const relatedOptions = optionToPlugin.filter( - (m) => m.packageName === packageName, - ); - - const bundleInfo = bundles.find((b) => - b.packages.some((bp) => bp === packageName), - ); + const relatedOptions = optionToPlugin.filter(m => m.packageName === packageName); + // A package can legitimately appear in multiple bundles (e.g. + // @tsparticles/plugin-move is in slim, full, and all). List every + // bundle that includes it here. + // + // NOTE: an earlier version also exposed a single `bundle` field + // computed with `bundles.find(...)`, which silently picked whichever + // bundle happened to come first in the `bundles` array — an arbitrary + // choice that duplicated (and could contradict) this list. It's been + // removed; `includedInBundles` is the single source of truth. const includedInBundles = bundles - .filter((b) => b.packages.some((bp) => bp === packageName)) - .map((b) => ({ name: b.name, description: b.description })); + .filter(b => b.packages.some(bp => bp === packageName)) + .map(b => ({ name: b.name, description: b.description })); const subPackages = pkg.category === "bundle" - ? bundles - .find((b) => b.name === packageName) - ?.packages.filter((bp) => bp !== packageName) || [] + ? bundles.find(b => b.name === packageName)?.packages.filter(bp => bp !== packageName) || [] : undefined; return { @@ -35,14 +36,11 @@ export function getPackageInfo(packageName: string) { optionKeys: pkg.optionKeys, needsPluginCheck: pkg.needsPluginCheck, alwaysNeeded: pkg.alwaysNeeded, - relatedOptions: relatedOptions.map((ro) => ({ + relatedOptions: relatedOptions.map(ro => ({ optionPath: ro.optionPath, description: ro.description, })), includedInBundles, - bundle: bundleInfo - ? { name: bundleInfo.name, description: bundleInfo.description } - : undefined, subPackages, }; } diff --git a/integrations/mcp-server/src/tools/listPackages.ts b/integrations/mcp-server/src/tools/listPackages.ts index ce3c38abb35..b3a9cc63964 100644 --- a/integrations/mcp-server/src/tools/listPackages.ts +++ b/integrations/mcp-server/src/tools/listPackages.ts @@ -17,10 +17,7 @@ const categories: PackageCategory[] = [ "preset", ]; -export function listPackages(filters?: { - category?: string; - query?: string; -}): { +export function listPackages(filters?: { category?: string; query?: string }): { packages: Array<{ name: string; description: string; @@ -30,11 +27,22 @@ export function listPackages(filters?: { total: number; categories: string[]; } { - let results: PackageInfo[] = []; + let results: PackageInfo[]; + // Always start from a fresh copy — `results` must never be a direct + // alias into `packageCatalog.byCategory[...]`. Previously, when a + // valid `category` filter was given (and no `query`), `results` held + // that direct reference, and the `.sort()` call below mutated the + // catalog's shared in-memory array in place instead of a local copy. + // The sort is a no-op in terms of *content* (alphabetical order is + // stable either way), but mutating shared state from what should be a + // read-only query is fragile — especially now that a single server + // process can be handling several concurrent HTTP sessions that all + // import the same `packageCatalog` module. if (filters?.category && filters.category in packageCatalog.byCategory) { - results = packageCatalog.byCategory[filters.category as PackageCategory]; + results = [...packageCatalog.byCategory[filters.category as PackageCategory]]; } else { + results = []; for (const cat of categories) { results.push(...(packageCatalog.byCategory[cat] || [])); } @@ -42,17 +50,13 @@ export function listPackages(filters?: { if (filters?.query) { const q = filters.query.toLowerCase(); - results = results.filter( - (p) => - p.name.toLowerCase().includes(q) || - p.description.toLowerCase().includes(q), - ); + results = results.filter(p => p.name.toLowerCase().includes(q) || p.description.toLowerCase().includes(q)); } results.sort((a, b) => a.name.localeCompare(b.name)); return { - packages: results.map((p) => ({ + packages: results.map(p => ({ name: p.name, description: p.description, category: p.category, diff --git a/integrations/mcp-server/src/tools/suggestPlugins.ts b/integrations/mcp-server/src/tools/suggestPlugins.ts index 73eb12a473a..625c4e42ae2 100644 --- a/integrations/mcp-server/src/tools/suggestPlugins.ts +++ b/integrations/mcp-server/src/tools/suggestPlugins.ts @@ -2,38 +2,35 @@ import type { SuggestPluginsResult, PackageImport } from "../types.js"; import { packageCatalog } from "../registry/packages.js"; import { optionToPlugin } from "../registry/pluginOptions.js"; import { bundles } from "../registry/bundles.js"; - -function getOptionValue(obj: Record, path: string): unknown { - const parts = path.split("."); - let current: unknown = obj; - - for (const part of parts) { - if (current === undefined || current === null || typeof current !== "object") { - return undefined; - } - current = (current as Record)[part]; - } - - return current; -} - -function isOptionEnabled(obj: Record, path: string): boolean { - const value = getOptionValue(obj, path); - - if (value === undefined) return false; - - if (typeof value === "boolean") return value; - - if (Array.isArray(value)) return value.length > 0; - - if (typeof value === "object" && value !== null) { - const enableVal = (value as Record)["enable"]; - if (typeof enableVal === "boolean") return enableVal; - return true; - } - - return true; -} +import { getOptionValue, isOptionEnabled, asArray } from "../utils/optionPath.js"; + +const EMITTER_SHAPE_PACKAGES: Record = { + circle: "@tsparticles/plugin-emitters-shape-circle", + square: "@tsparticles/plugin-emitters-shape-square", + canvas: "@tsparticles/plugin-emitters-shape-canvas", + path: "@tsparticles/plugin-emitters-shape-path", + polygon: "@tsparticles/plugin-emitters-shape-polygon", +}; + +const INTERACTION_MODE_PACKAGES: Record = { + attract: "@tsparticles/interaction-external-attract", + bounce: "@tsparticles/interaction-external-bounce", + bubble: "@tsparticles/interaction-external-bubble", + cannon: "@tsparticles/interaction-external-cannon", + connect: "@tsparticles/interaction-external-connect", + destroy: "@tsparticles/interaction-external-destroy", + drag: "@tsparticles/interaction-external-drag", + grab: "@tsparticles/interaction-external-grab", + particle: "@tsparticles/interaction-external-particle", + pause: "@tsparticles/interaction-external-pause", + pop: "@tsparticles/interaction-external-pop", + push: "@tsparticles/interaction-external-push", + remove: "@tsparticles/interaction-external-remove", + repulse: "@tsparticles/interaction-external-repulse", + slow: "@tsparticles/interaction-external-slow", + trail: "@tsparticles/interaction-external-trail", + light: "@tsparticles/interaction-light", +}; function findBundle(packages: string[]): string | undefined { const allNames = new Set(packages); @@ -49,7 +46,11 @@ function findBundle(packages: string[]): string | undefined { }, { name: "@tsparticles/slim", - pkgs: ["@tsparticles/plugin-interactivity", "@tsparticles/interaction-particles-links", "@tsparticles/shape-image"], + pkgs: [ + "@tsparticles/plugin-interactivity", + "@tsparticles/interaction-particles-links", + "@tsparticles/shape-image", + ], }, { name: "@tsparticles/basic", @@ -57,13 +58,15 @@ function findBundle(packages: string[]): string | undefined { }, ]; + // Return the first (most feature-complete) bundle whose signature + // packages are all present in the matched set. Previously this branch + // computed an "extra packages" count and compared it against a + // threshold, but returned `bundle.name` unconditionally either way — + // the check had no effect on the result and has been removed rather + // than kept as dead code. for (const bundle of bundlePriority) { const allPresent = bundle.pkgs.every(p => allNames.has(p)); if (allPresent) { - const extra = packages.filter(p => !bundle.pkgs.includes(p) && !p.startsWith("@tsparticles/plugin-easing-") && !p.startsWith("@tsparticles/plugin-export-") && p !== "@tsparticles/plugin-blend"); - if (extra.length <= 3) { - return bundle.name; - } return bundle.name; } } @@ -86,7 +89,8 @@ export function suggestPlugins(options: Record): SuggestPlugins const hasAbsorber = options.absorbers !== undefined; // -- Shape Detection -- - const shapeSection = (options.particles as Record | undefined)?.shape as Record | undefined; + const shapeSection = (options.particles as Record | undefined)?.shape as + Record | undefined; const shapeType = shapeSection?.type; const shapeOptions = shapeSection?.options as Record | undefined; @@ -128,7 +132,8 @@ export function suggestPlugins(options: Record): SuggestPlugins } // -- Effect Detection -- - const effectType = (options.particles as Record | undefined)?.effect as Record | undefined; + const effectType = (options.particles as Record | undefined)?.effect as + Record | undefined; if (effectType?.type) { const effectMap: Record = { bubble: "@tsparticles/effect-bubble", @@ -143,24 +148,26 @@ export function suggestPlugins(options: Record): SuggestPlugins } // -- Emitter Shape Detection -- - const emitterShape = options.emitters as Record | undefined; - if (emitterShape) { - const esTypeRaw = (emitterShape.shape as Record | undefined)?.type; - const esNames = getShapeNames(esTypeRaw); - const esShapeMap: Record = { - circle: "@tsparticles/plugin-emitters-shape-circle", - square: "@tsparticles/plugin-emitters-shape-square", - canvas: "@tsparticles/plugin-emitters-shape-canvas", - path: "@tsparticles/plugin-emitters-shape-path", - polygon: "@tsparticles/plugin-emitters-shape-polygon", - }; - for (const name of esNames) { - const pkg = esShapeMap[name]; - if (pkg) matched.add(pkg); + // `emitters` may be a single config object or an array of them — walk + // every entry so array-form configs aren't silently skipped. + const emitterEntries = asArray>(options.emitters); + const matchedEmitterShapePackages = new Set(); + for (const emitter of emitterEntries) { + const esTypeRaw = getOptionValue(emitter, "shape.type"); + for (const name of getShapeNames(esTypeRaw)) { + const pkg = EMITTER_SHAPE_PACKAGES[name]; + if (pkg) { + matched.add(pkg); + matchedEmitterShapePackages.add(pkg); + } } } - if (hasInteractivity && !hasInteractivityTools()) { + // tsParticles requires @tsparticles/plugin-interactivity whenever + // `interactivity` is configured at all — there's no partial substitute + // for it, so this is unconditional rather than gated behind a stub + // check that always evaluated to true anyway. + if (hasInteractivity) { matched.add("@tsparticles/plugin-interactivity"); } @@ -177,17 +184,22 @@ export function suggestPlugins(options: Record): SuggestPlugins } } - const interactivityModes = (options.interactivity as Record | undefined)?.modes as Record | undefined; + const interactivityModes = (options.interactivity as Record | undefined)?.modes as + Record | undefined; if (interactivityModes) { for (const mode of Object.keys(interactivityModes)) { - const pkg = findInteractionPackageForMode(mode); + const pkg = INTERACTION_MODE_PACKAGES[mode]; if (pkg) matched.add(pkg); } } if (hasEmitter) { matched.add("@tsparticles/plugin-emitters"); - if (!matched.has("@tsparticles/plugin-emitters-shape-circle") && !matched.has("@tsparticles/plugin-emitters-shape-square")) { + // Only fall back to the default circle emitter shape if none of the + // configured emitters resolved to ANY known emitter-shape package + // (previously this only checked circle/square, so an emitter using + // e.g. "polygon" would incorrectly also get "circle" added). + if (matchedEmitterShapePackages.size === 0) { matched.add("@tsparticles/plugin-emitters-shape-circle"); } } @@ -214,7 +226,9 @@ export function suggestPlugins(options: Record): SuggestPlugins if (suggestedBundle) { const bundleInfo = bundles.find(b => b.name === suggestedBundle); if (bundleInfo) { - alreadyInBundle = matchedArr.filter(p => bundleInfo.packages.includes(p) || bundleInfo.packages.includes(p.replace("@tsparticles/", ""))); + alreadyInBundle = matchedArr.filter( + p => bundleInfo.packages.includes(p) || bundleInfo.packages.includes(p.replace("@tsparticles/", "")), + ); } } @@ -225,31 +239,3 @@ export function suggestPlugins(options: Record): SuggestPlugins alreadyInBundle, }; } - -function findInteractionPackageForMode(mode: string): string | undefined { - const modeMap: Record = { - attract: "@tsparticles/interaction-external-attract", - bounce: "@tsparticles/interaction-external-bounce", - bubble: "@tsparticles/interaction-external-bubble", - cannon: "@tsparticles/interaction-external-cannon", - connect: "@tsparticles/interaction-external-connect", - destroy: "@tsparticles/interaction-external-destroy", - drag: "@tsparticles/interaction-external-drag", - grab: "@tsparticles/interaction-external-grab", - particle: "@tsparticles/interaction-external-particle", - pause: "@tsparticles/interaction-external-pause", - pop: "@tsparticles/interaction-external-pop", - push: "@tsparticles/interaction-external-push", - remove: "@tsparticles/interaction-external-remove", - repulse: "@tsparticles/interaction-external-repulse", - slow: "@tsparticles/interaction-external-slow", - trail: "@tsparticles/interaction-external-trail", - light: "@tsparticles/interaction-light", - }; - - return modeMap[mode]; -} - -function hasInteractivityTools(): boolean { - return false; -} diff --git a/integrations/mcp-server/src/utils/optionPath.ts b/integrations/mcp-server/src/utils/optionPath.ts new file mode 100644 index 00000000000..d49135a5e9a --- /dev/null +++ b/integrations/mcp-server/src/utils/optionPath.ts @@ -0,0 +1,60 @@ +/** + * Reads a dotted path (e.g. "particles.move.enable") out of a nested + * options object, returning `undefined` if any segment along the way + * is missing or not an object. + * + * NOTE: this is a plain property walk. It does NOT special-case arrays + * — `emitters.shape.type` will return `undefined` when `emitters` is an + * array, since arrays don't have a `"shape"` property. Callers that + * need to inspect `emitters`/`absorbers` (which tsParticles allows to + * be either a single object or an array of objects) should normalize + * with `asArray()` below and walk each entry individually instead of + * relying on a dotted path through it. + */ +export function getOptionValue(obj: Record, path: string): unknown { + const parts = path.split("."); + let current: unknown = obj; + + for (const part of parts) { + if (current === undefined || current === null || typeof current !== "object") { + return undefined; + } + current = (current as Record)[part]; + } + + return current; +} + +/** + * tsParticles allows several option sections (emitters, absorbers) to be + * either a single config object or an array of config objects. This + * normalizes either shape into an array so callers can iterate uniformly. + */ +export function asArray>(value: unknown): T[] { + if (value === undefined || value === null) return []; + if (Array.isArray(value)) return value as T[]; + return [value as T]; +} + +/** + * Returns true if the option at `path` is "meaningfully enabled": + * - booleans are used as-is + * - non-empty arrays count as enabled + * - objects are enabled unless they have an explicit `enable: false` + * - any other defined value counts as enabled + */ +export function isOptionEnabled(obj: Record, path: string): boolean { + const value = getOptionValue(obj, path); + + if (value === undefined) return false; + if (typeof value === "boolean") return value; + if (Array.isArray(value)) return value.length > 0; + + if (typeof value === "object" && value !== null) { + const enableVal = (value as Record)["enable"]; + if (typeof enableVal === "boolean") return enableVal; + return true; + } + + return true; +} From 2063a191b59d700bbfab83540c028903717be142 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 10:22:05 +0200 Subject: [PATCH 05/10] fix: fixed other issues in mcp server --- .github/workflows/npm-publish.yml | 19 + integrations/mcp-server/.env.example | 5 + integrations/mcp-server/Dockerfile | 12 + integrations/mcp-server/README.md | 33 ++ integrations/mcp-server/docker-compose.yml | 16 + integrations/mcp-server/src/http/constants.ts | 18 + .../mcp-server/src/http/security.test.ts | 177 ++++++++ integrations/mcp-server/src/http/security.ts | 161 +++++++ integrations/mcp-server/src/http/server.ts | 308 ++++++++++++++ integrations/mcp-server/src/http/types.ts | 24 ++ integrations/mcp-server/src/index.ts | 394 +++++++----------- .../mcp-server/src/prompts/generateOptions.ts | 2 +- .../mcp-server/src/registry/packageMaps.ts | 27 ++ .../src/tools/diagnoseIssues.test.ts | 10 + .../mcp-server/src/tools/diagnoseIssues.ts | 112 ++--- .../src/tools/suggestPlugins.test.ts | 15 + .../mcp-server/src/tools/suggestPlugins.ts | 71 ++-- .../mcp-server/src/validation.test.ts | 88 ++++ integrations/mcp-server/src/validation.ts | 66 +++ 19 files changed, 1218 insertions(+), 340 deletions(-) create mode 100644 integrations/mcp-server/src/http/constants.ts create mode 100644 integrations/mcp-server/src/http/security.test.ts create mode 100644 integrations/mcp-server/src/http/security.ts create mode 100644 integrations/mcp-server/src/http/server.ts create mode 100644 integrations/mcp-server/src/http/types.ts create mode 100644 integrations/mcp-server/src/registry/packageMaps.ts create mode 100644 integrations/mcp-server/src/validation.test.ts create mode 100644 integrations/mcp-server/src/validation.ts diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 2a98fcc0d11..a4834d36deb 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -84,6 +84,25 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + # 🐳 Build & push MCP server Docker image + - name: Log in to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + + - name: Build and push MCP server Docker image + env: + TAG: ${{ github.ref_name }} + run: | + IMAGE=caelan/tsparticles-mcp-server + docker build -f integrations/mcp-server/Dockerfile -t $IMAGE:$TAG . + if [ "$IS_STABLE" = "true" ]; then + docker tag $IMAGE:$TAG $IMAGE:latest + docker push $IMAGE:latest + fi + docker push $IMAGE:$TAG + # 🧠 Create release + upload assets with retry/backoff - name: Create Release (raw) if: env.IS_STABLE == 'true' diff --git a/integrations/mcp-server/.env.example b/integrations/mcp-server/.env.example index 6dd68f3948f..cec412609e0 100644 --- a/integrations/mcp-server/.env.example +++ b/integrations/mcp-server/.env.example @@ -1,2 +1,7 @@ # Port the MCP server listens on (default: 3000) SERVER_PORT=3000 + +# Optional bearer token required on every /mcp request +# (Authorization: Bearer ). Strongly recommended when exposing +# the server beyond localhost (tunnel, reverse proxy, etc). +MCP_AUTH_TOKEN= diff --git a/integrations/mcp-server/Dockerfile b/integrations/mcp-server/Dockerfile index 8b34c2f130f..b70265e496e 100644 --- a/integrations/mcp-server/Dockerfile +++ b/integrations/mcp-server/Dockerfile @@ -1,4 +1,9 @@ FROM node:22-alpine AS build +# NOTE: pin this to a specific digest for fully reproducible/immutable +# builds once you've verified one for your target platform(s), e.g.: +# docker pull node:22-alpine && docker inspect --format='{{index .RepoDigests 0}}' node:22-alpine +# then replace the line above with `FROM node:22-alpine@sha256: AS build` +# (and the second FROM below with the same digest). RUN corepack enable WORKDIR /app @@ -19,10 +24,17 @@ RUN pnpm --filter @tsparticles/mcp-server exec tsc RUN pnpm --filter @tsparticles/mcp-server deploy --prod /tmp/app FROM node:22-alpine +# tini acts as a proper PID 1: reaps zombie processes and forwards +# signals (SIGTERM/SIGINT) to the Node process so graceful shutdown +# actually runs instead of the container being killed outright. +RUN apk add --no-cache tini RUN addgroup --system --gid 1001 app && adduser --system --uid 1001 app WORKDIR /app COPY --from=build /tmp/app ./ USER app EXPOSE 3000 ENV PORT=3000 +HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \ + CMD node -e "fetch('http://127.0.0.1:'+(process.env.PORT||3000)+'/health').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))" +ENTRYPOINT ["/sbin/tini", "--"] CMD ["node", "dist/index.js", "--port", "3000"] diff --git a/integrations/mcp-server/README.md b/integrations/mcp-server/README.md index 290c64dc125..51ac3d443ac 100644 --- a/integrations/mcp-server/README.md +++ b/integrations/mcp-server/README.md @@ -56,6 +56,35 @@ Add this to your `claude_desktop_config.json`: The server can also run as an HTTP endpoint, accessible by any MCP client that supports SSE. +> **Security note:** the HTTP transport has no authentication by default — it's meant for +> localhost/trusted-network use. If you expose it beyond your machine (tunnel, reverse proxy, +> port forward, etc.), always set an auth token (see below). Without one, anyone who can reach +> the endpoint can call every tool. + +### Authentication + +Set a bearer token to require `Authorization: Bearer ` on every request to `/mcp`: + +```bash +# via CLI flag +npx @tsparticles/mcp-server --port 3000 --auth-token "$(openssl rand -hex 32)" + +# or via environment variable (recommended so the token doesn't end up in shell history) +MCP_AUTH_TOKEN="$(openssl rand -hex 32)" npx @tsparticles/mcp-server --port 3000 +``` + +Configure your MCP client to send that token as a bearer token when connecting. If no token is +set, the server prints a startup warning and falls back to allowing only local origins +(`localhost`/`127.0.0.1`) by default for browser-originated requests — non-browser clients +(curl, most MCP clients) aren't affected by that check, so it's not a substitute for auth. + +### Rate limiting + +The server applies a basic in-memory per-IP rate limit (120 requests/minute by default) and caps +total concurrent sessions at 500, to keep a single misbehaving client from exhausting the +process. This is not a substitute for rate limiting at a reverse proxy or CDN if you're exposing +the server publicly — it only protects the Node process itself. + ### Option 1: Direct access (no tunnel) ```bash @@ -75,6 +104,10 @@ docker compose up -d docker compose --profile tunnel up ``` +Set `MCP_AUTH_TOKEN` in your environment (or a `.env` file next to `docker-compose.yml`, see +`.env.example`) before running this if the container is reachable from outside your machine — +this is required reading before using the tunnel/reverse-proxy options below. + This prints a temporary URL like `https://random.trycloudflare.com`. Configure your MCP client with `https://random.trycloudflare.com/mcp` as the endpoint. ### Option 3: Docker + Synology Reverse Proxy diff --git a/integrations/mcp-server/docker-compose.yml b/integrations/mcp-server/docker-compose.yml index 596dbc35642..f18986c88b3 100644 --- a/integrations/mcp-server/docker-compose.yml +++ b/integrations/mcp-server/docker-compose.yml @@ -8,6 +8,20 @@ services: restart: unless-stopped environment: - PORT=3000 + # Set this to require an Authorization: Bearer header on + # every /mcp request. Strongly recommended if this service is + # reachable outside your local machine (tunnel, reverse proxy, etc). + - MCP_AUTH_TOKEN=${MCP_AUTH_TOKEN:-} + # Container hardening: no extra Linux capabilities, no privilege + # escalation, read-only root filesystem (the app doesn't need to + # write to disk — it only serves in-memory data). + security_opt: + - no-new-privileges:true + cap_drop: + - ALL + read_only: true + tmpfs: + - /tmp # Cloudflare Tunnel — exposes the server via HTTPS without opening firewall ports. # docker compose --profile tunnel up @@ -19,5 +33,7 @@ services: depends_on: - mcp-server restart: unless-stopped + security_opt: + - no-new-privileges:true profiles: - tunnel diff --git a/integrations/mcp-server/src/http/constants.ts b/integrations/mcp-server/src/http/constants.ts new file mode 100644 index 00000000000..354a971b907 --- /dev/null +++ b/integrations/mcp-server/src/http/constants.ts @@ -0,0 +1,18 @@ +export const MAX_REQUEST_BODY_BYTES = 1024 * 1024; // 1 MB +export const SESSION_IDLE_TIMEOUT_MS = 30 * 60 * 1000; // 30 minutes +export const SESSION_SWEEP_INTERVAL_MS = 5 * 60 * 1000; // 5 minutes +export const MAX_CONCURRENT_HTTP_SESSIONS = 500; + +export const HTTP_REQUEST_TIMEOUT_MS = 30_000; +export const HTTP_HEADERS_TIMEOUT_MS = 15_000; +export const HTTP_KEEP_ALIVE_TIMEOUT_MS = 5_000; + +export const MAX_SESSION_ID_LENGTH = 128; +export const SESSION_ID_PATTERN = /^[A-Za-z0-9._:-]+$/; + +// Simple in-memory per-IP token-bucket rate limiting. This does not +// replace a real edge/reverse-proxy rate limiter for internet-facing +// deployments, but it stops a single misbehaving client from +// monopolizing the server when no such proxy is in front of it. +export const RATE_LIMIT_WINDOW_MS = 60_000; // 1 minute +export const RATE_LIMIT_MAX_REQUESTS_PER_WINDOW = 120; diff --git a/integrations/mcp-server/src/http/security.test.ts b/integrations/mcp-server/src/http/security.test.ts new file mode 100644 index 00000000000..2035098d215 --- /dev/null +++ b/integrations/mcp-server/src/http/security.test.ts @@ -0,0 +1,177 @@ +import { describe, it, expect } from "vitest"; +import { + extractBearerToken, + isInitializeRequest, + isOriginAllowed, + isValidAuthToken, + normalizeOrigin, + parseSessionIdHeader, + RateLimiter, +} from "./security.js"; + +describe("normalizeOrigin", () => { + it("lowercases and strips path/query from a valid origin", () => { + expect(normalizeOrigin("http://Localhost:3000/foo?bar=1")).toBe("http://localhost:3000"); + }); + + it("rejects non-http(s) protocols", () => { + expect(normalizeOrigin("ftp://example.com")).toBeUndefined(); + }); + + it("rejects origins with embedded credentials", () => { + expect(normalizeOrigin("http://user:pass@example.com")).toBeUndefined(); + }); + + it("returns undefined for unparsable input", () => { + expect(normalizeOrigin("not a url")).toBeUndefined(); + }); +}); + +describe("parseSessionIdHeader", () => { + it("returns empty result when header is absent", () => { + expect(parseSessionIdHeader(undefined)).toEqual({}); + }); + + it("accepts a well-formed session id", () => { + expect(parseSessionIdHeader("abc-123_ABC.def:456")).toEqual({ value: "abc-123_ABC.def:456" }); + }); + + it("rejects an empty string", () => { + expect(parseSessionIdHeader("").error).toBeDefined(); + }); + + it("rejects a session id with disallowed characters", () => { + expect(parseSessionIdHeader("abc/../etc").error).toBeDefined(); + }); + + it("rejects a session id over the max length", () => { + expect(parseSessionIdHeader("a".repeat(129)).error).toBeDefined(); + }); + + it("rejects multiple header values", () => { + expect(parseSessionIdHeader(["a", "b"]).error).toBeDefined(); + }); + + it("accepts a single-element array header", () => { + expect(parseSessionIdHeader(["abc"])).toEqual({ value: "abc" }); + }); +}); + +describe("isInitializeRequest", () => { + it("returns true for a payload with method: initialize", () => { + expect(isInitializeRequest({ method: "initialize" })).toBe(true); + }); + + it("returns false for other methods", () => { + expect(isInitializeRequest({ method: "tools/call" })).toBe(false); + }); + + it("returns false for non-object payloads", () => { + expect(isInitializeRequest("initialize")).toBe(false); + expect(isInitializeRequest(null)).toBe(false); + expect(isInitializeRequest([{ method: "initialize" }])).toBe(false); + }); +}); + +describe("isOriginAllowed", () => { + it("allows requests with no Origin header", () => { + expect(isOriginAllowed(undefined)).toBe(true); + }); + + it("rejects an unparsable Origin header", () => { + expect(isOriginAllowed("not a url")).toBe(false); + }); + + it("allows localhost by default when no allow-list is configured", () => { + expect(isOriginAllowed("http://localhost:5173")).toBe(true); + expect(isOriginAllowed("http://127.0.0.1:5173")).toBe(true); + }); + + it("rejects non-local origins by default", () => { + expect(isOriginAllowed("https://evil.example.com")).toBe(false); + }); + + it("allows an origin present in the explicit allow-list", () => { + expect(isOriginAllowed("https://app.example.com", ["https://app.example.com"])).toBe(true); + }); + + it("rejects an origin not present in the explicit allow-list", () => { + expect(isOriginAllowed("https://other.example.com", ["https://app.example.com"])).toBe(false); + }); +}); + +describe("extractBearerToken", () => { + it("extracts the token from a well-formed header", () => { + expect(extractBearerToken("Bearer abc123")).toBe("abc123"); + }); + + it("is case-insensitive on the scheme", () => { + expect(extractBearerToken("bearer abc123")).toBe("abc123"); + }); + + it("returns undefined for a missing header", () => { + expect(extractBearerToken(undefined)).toBeUndefined(); + }); + + it("returns undefined for a malformed header", () => { + expect(extractBearerToken("Basic abc123")).toBeUndefined(); + }); + + it("handles array header values by taking the first entry", () => { + expect(extractBearerToken(["Bearer abc123", "Bearer other"])).toBe("abc123"); + }); +}); + +describe("isValidAuthToken", () => { + it("returns true for matching tokens", () => { + expect(isValidAuthToken("secret-token", "secret-token")).toBe(true); + }); + + it("returns false for non-matching tokens of the same length", () => { + expect(isValidAuthToken("secret-tokenA", "secret-tokenB")).toBe(false); + }); + + it("returns false for tokens of different lengths", () => { + expect(isValidAuthToken("short", "much-longer-token")).toBe(false); + }); +}); + +describe("RateLimiter", () => { + it("allows requests under the limit", () => { + const limiter = new RateLimiter(60_000, 3); + expect(limiter.allow("client-a")).toBe(true); + expect(limiter.allow("client-a")).toBe(true); + expect(limiter.allow("client-a")).toBe(true); + }); + + it("blocks requests over the limit within the window", () => { + const limiter = new RateLimiter(60_000, 2); + expect(limiter.allow("client-b")).toBe(true); + expect(limiter.allow("client-b")).toBe(true); + expect(limiter.allow("client-b")).toBe(false); + }); + + it("tracks separate clients independently", () => { + const limiter = new RateLimiter(60_000, 1); + expect(limiter.allow("client-c")).toBe(true); + expect(limiter.allow("client-d")).toBe(true); + expect(limiter.allow("client-c")).toBe(false); + }); + + it("resets the window after it elapses", async () => { + const limiter = new RateLimiter(10, 1); + expect(limiter.allow("client-e")).toBe(true); + expect(limiter.allow("client-e")).toBe(false); + await new Promise(resolve => setTimeout(resolve, 20)); + expect(limiter.allow("client-e")).toBe(true); + }); + + it("sweep() removes stale entries", async () => { + const limiter = new RateLimiter(10, 1); + limiter.allow("client-f"); + expect(limiter.size).toBe(1); + await new Promise(resolve => setTimeout(resolve, 20)); + limiter.sweep(); + expect(limiter.size).toBe(0); + }); +}); diff --git a/integrations/mcp-server/src/http/security.ts b/integrations/mcp-server/src/http/security.ts new file mode 100644 index 00000000000..0639acc75ae --- /dev/null +++ b/integrations/mcp-server/src/http/security.ts @@ -0,0 +1,161 @@ +import { MAX_SESSION_ID_LENGTH, RATE_LIMIT_MAX_REQUESTS_PER_WINDOW, RATE_LIMIT_WINDOW_MS, SESSION_ID_PATTERN } from "./constants.js"; +import { timingSafeEqual } from "node:crypto"; + +export function normalizeOrigin(origin: string): string | undefined { + try { + const parsed = new URL(origin); + + if (parsed.protocol !== "http:" && parsed.protocol !== "https:") { + return undefined; + } + + if (parsed.username || parsed.password) { + return undefined; + } + + return parsed.origin.toLowerCase(); + } catch { + return undefined; + } +} + +export function parseSessionIdHeader(header: string | string[] | undefined): { value?: string; error?: string } { + if (Array.isArray(header)) { + if (header.length !== 1) { + return { error: "Invalid mcp-session-id header" }; + } + + return parseSessionIdHeader(header[0]); + } + + if (header === undefined) { + return {}; + } + + const sessionId = header.trim(); + + if (sessionId.length === 0) { + return { error: "Invalid mcp-session-id header" }; + } + + if (sessionId.length > MAX_SESSION_ID_LENGTH || !SESSION_ID_PATTERN.test(sessionId)) { + return { error: "Invalid mcp-session-id header" }; + } + + return { value: sessionId }; +} + +export function isInitializeRequest(payload: unknown): boolean { + if (!payload || typeof payload !== "object" || Array.isArray(payload)) { + return false; + } + + const method = (payload as { method?: unknown }).method; + + return method === "initialize"; +} + +export function isOriginAllowed(origin: string | undefined, allowedOrigins?: string[]): boolean { + // No Origin header at all (e.g. non-browser clients, curl) is allowed — + // the Origin check exists to defend against DNS-rebinding attacks from + // browser contexts, which always send this header. + if (!origin) return true; + + const normalizedOrigin = normalizeOrigin(origin); + if (!normalizedOrigin) { + return false; + } + + if (allowedOrigins && allowedOrigins.length > 0) { + return allowedOrigins.includes(normalizedOrigin); + } + + // Default: only allow local origins when no explicit allow-list is + // configured, since the server binds to 0.0.0.0 with no auth. + try { + const { hostname } = new URL(normalizedOrigin); + return hostname === "localhost" || hostname === "127.0.0.1" || hostname === "::1" || hostname === "[::1]"; + } catch { + return false; + } +} + +/** + * Constant-time comparison of a bearer token supplied on an incoming + * request against the configured expected token. Using a plain `===` + * here would leak timing information proportional to the number of + * matching leading characters, allowing a remote attacker to recover + * the token byte-by-byte; `timingSafeEqual` avoids that class of + * side-channel. Returns `false` (rather than throwing) whenever the + * lengths differ, since `timingSafeEqual` requires equal-length buffers. + */ +export function isValidAuthToken(provided: string, expected: string): boolean { + const providedBuf = Buffer.from(provided, "utf8"); + const expectedBuf = Buffer.from(expected, "utf8"); + + if (providedBuf.length !== expectedBuf.length) { + return false; + } + + return timingSafeEqual(providedBuf, expectedBuf); +} + +/** + * Extracts the bearer token from an `Authorization` header value, or + * `undefined` if the header is missing/malformed. + */ +export function extractBearerToken(header: string | string[] | undefined): string | undefined { + const value = Array.isArray(header) ? header[0] : header; + if (!value) return undefined; + + const match = /^Bearer\s+(.+)$/i.exec(value.trim()); + return match ? match[1] : undefined; +} + +/** + * Minimal in-memory fixed-window rate limiter keyed by client IP. Not a + * substitute for a proper edge rate limiter (it resets per-process and + * doesn't account for proxies unless `trust proxy`-style forwarding is + * handled by the caller), but it bounds the request rate a single + * client can sustain against this process. + */ +export class RateLimiter { + private readonly hits = new Map(); + + constructor( + private readonly windowMs: number = RATE_LIMIT_WINDOW_MS, + private readonly maxRequests: number = RATE_LIMIT_MAX_REQUESTS_PER_WINDOW, + ) {} + + /** Returns true if the request should be allowed, false if rate-limited. */ + allow(key: string): boolean { + const now = Date.now(); + const entry = this.hits.get(key); + + if (!entry || now - entry.windowStart >= this.windowMs) { + this.hits.set(key, { count: 1, windowStart: now }); + return true; + } + + if (entry.count >= this.maxRequests) { + return false; + } + + entry.count++; + return true; + } + + /** Drops stale entries so the map doesn't grow unbounded over time. */ + sweep(): void { + const now = Date.now(); + for (const [key, entry] of this.hits) { + if (now - entry.windowStart >= this.windowMs) { + this.hits.delete(key); + } + } + } + + get size(): number { + return this.hits.size; + } +} diff --git a/integrations/mcp-server/src/http/server.ts b/integrations/mcp-server/src/http/server.ts new file mode 100644 index 00000000000..1e89814a8e3 --- /dev/null +++ b/integrations/mcp-server/src/http/server.ts @@ -0,0 +1,308 @@ +import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js"; + +import { createServer } from "node:http"; +import { randomUUID } from "node:crypto"; + +import { + HTTP_HEADERS_TIMEOUT_MS, + HTTP_KEEP_ALIVE_TIMEOUT_MS, + HTTP_REQUEST_TIMEOUT_MS, + MAX_CONCURRENT_HTTP_SESSIONS, + MAX_REQUEST_BODY_BYTES, + SESSION_IDLE_TIMEOUT_MS, + SESSION_SWEEP_INTERVAL_MS, +} from "./constants.js"; +import { + extractBearerToken, + isInitializeRequest, + isOriginAllowed, + isValidAuthToken, + parseSessionIdHeader, + RateLimiter, +} from "./security.js"; +import type { SessionEntry, StartHttpServerParams } from "./types.js"; + +export async function startHttpServer({ + port, + allowedOrigins, + authToken, + packageVersion, + createMcpServer, +}: StartHttpServerParams): Promise { + const sessions = new Map(); + const rateLimiter = new RateLimiter(); + + if (!authToken) { + console.error( + "WARNING: no auth token configured (--auth-token / MCP_AUTH_TOKEN). " + + "The /mcp endpoint is unauthenticated — only use this in trusted network " + + "environments (e.g. behind a firewall) or set an auth token before exposing it publicly.", + ); + } + + function touchSession(sessionId: string) { + const entry = sessions.get(sessionId); + if (entry) entry.lastActivity = Date.now(); + } + + async function closeSession(sessionId: string) { + const entry = sessions.get(sessionId); + if (!entry) return; + sessions.delete(sessionId); + try { + await entry.transport.close(); + } catch (err) { + console.error("Error closing session:", err); + } + } + + // Periodically sweep idle sessions so a client that disconnects + // without a clean DELETE doesn't leak memory indefinitely. + const sweepInterval = setInterval(() => { + const now = Date.now(); + for (const [sessionId, entry] of sessions) { + if (now - entry.lastActivity > SESSION_IDLE_TIMEOUT_MS) { + void closeSession(sessionId); + } + } + rateLimiter.sweep(); + }, SESSION_SWEEP_INTERVAL_MS); + sweepInterval.unref(); + + const httpServer = createServer(async (req, res) => { + try { + // Health check endpoint + if (req.method === "GET" && req.url === "/health") { + res.writeHead(200, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ status: "ok", version: packageVersion })); + return; + } + + if (req.url !== "/mcp") { + res.writeHead(404); + res.end("Not found"); + return; + } + + // Basic per-IP rate limiting, ahead of auth/origin checks so a + // flood of requests can't be used to brute-force the auth token + // or exhaust the session table. + const clientIp = req.socket.remoteAddress ?? "unknown"; + if (!rateLimiter.allow(clientIp)) { + res.writeHead(429, { "Content-Type": "application/json", "Retry-After": "60" }); + res.end(JSON.stringify({ error: "Too many requests" })); + return; + } + + // Optional bearer token auth. When configured, this is the primary + // access control for the endpoint — the Origin check below only + // meaningfully applies to browser-originated requests. + if (authToken) { + const provided = extractBearerToken(req.headers.authorization); + if (!provided || !isValidAuthToken(provided, authToken)) { + res.writeHead(401, { "Content-Type": "application/json", "WWW-Authenticate": "Bearer" }); + res.end(JSON.stringify({ error: "Unauthorized" })); + return; + } + } + + // Defend against DNS rebinding: reject browser-originated requests + // from origins we don't recognize. + const originHeader = req.headers.origin; + if (!isOriginAllowed(originHeader, allowedOrigins)) { + res.writeHead(403, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Origin not allowed" })); + return; + } + + const sessionIdHeader = req.headers["mcp-session-id"]; + const { value: sessionId, error: sessionIdError } = parseSessionIdHeader(sessionIdHeader); + if (sessionIdError) { + res.writeHead(400, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: sessionIdError })); + return; + } + + // GET is used by clients to open the server->client SSE stream on an + // existing session. + if (req.method === "GET") { + if (!sessionId || !sessions.has(sessionId)) { + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Session not found" })); + return; + } + touchSession(sessionId); + await sessions.get(sessionId)!.transport.handleRequest(req, res); + return; + } + + // DELETE is used by clients to explicitly terminate a session. + if (req.method === "DELETE") { + if (!sessionId || !sessions.has(sessionId)) { + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Session not found" })); + return; + } + await closeSession(sessionId); + res.writeHead(204); + res.end(); + return; + } + + if (req.method !== "POST") { + res.writeHead(405, { "Content-Type": "application/json", Allow: "GET, POST, DELETE" }); + res.end(JSON.stringify({ error: "Method not allowed" })); + return; + } + + const contentTypeHeader = req.headers["content-type"]; + const contentType = (Array.isArray(contentTypeHeader) ? contentTypeHeader[0] : contentTypeHeader) + ?.split(";")[0] + ?.trim() + .toLowerCase(); + + if (contentType !== "application/json") { + res.writeHead(415, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Unsupported media type, expected application/json" })); + return; + } + + // POST: either an existing session's message, or a new session's + // initialize request. + let body: string; + try { + body = await new Promise((resolve, reject) => { + const chunks: Buffer[] = []; + let receivedBytes = 0; + req.on("data", (chunk: Buffer) => { + receivedBytes += chunk.length; + if (receivedBytes > MAX_REQUEST_BODY_BYTES) { + req.destroy(new Error("Request body too large")); + return; + } + chunks.push(chunk); + }); + req.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); + req.on("error", reject); + }); + } catch { + res.writeHead(413, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Request body too large" })); + return; + } + + let parsedBody: unknown; + try { + parsedBody = body ? JSON.parse(body) : undefined; + } catch { + res.writeHead(400, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Invalid JSON" })); + return; + } + + if (sessionId) { + const entry = sessions.get(sessionId); + if (!entry) { + res.writeHead(404, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Session not found" })); + return; + } + touchSession(sessionId); + await entry.transport.handleRequest(req, res, parsedBody); + return; + } + + if (!isInitializeRequest(parsedBody)) { + res.writeHead(400, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Missing session, expected initialize request" })); + return; + } + + if (sessions.size >= MAX_CONCURRENT_HTTP_SESSIONS) { + res.writeHead(503, { "Content-Type": "application/json" }); + res.end(JSON.stringify({ error: "Server busy, try again later" })); + return; + } + + // No session id: this must be an initialize request. Spin up a + // brand new Server + Transport pair dedicated to this session so + // that response routing can never cross sessions. + const newServer = createMcpServer(); + const transport = new StreamableHTTPServerTransport({ + sessionIdGenerator: () => randomUUID(), + onsessioninitialized: (newSessionId: string) => { + sessions.set(newSessionId, { server: newServer, transport, lastActivity: Date.now() }); + }, + onsessionclosed: (closedSessionId: string) => { + sessions.delete(closedSessionId); + }, + }); + + await newServer.connect(transport); + await transport.handleRequest(req, res, parsedBody); + } catch (error) { + console.error("Unhandled HTTP request error:", error); + + if (!res.headersSent) { + res.writeHead(500, { "Content-Type": "application/json" }); + } + + if (!res.writableEnded) { + res.end(JSON.stringify({ error: "Internal server error" })); + } + } + }); + + httpServer.on("close", () => { + clearInterval(sweepInterval); + }); + + httpServer.on("clientError", (_error, socket) => { + if (socket.writable) { + socket.end("HTTP/1.1 400 Bad Request\r\n\r\n"); + } + }); + + httpServer.requestTimeout = HTTP_REQUEST_TIMEOUT_MS; + httpServer.headersTimeout = HTTP_HEADERS_TIMEOUT_MS; + httpServer.keepAliveTimeout = HTTP_KEEP_ALIVE_TIMEOUT_MS; + + httpServer.listen(port, "0.0.0.0", () => { + console.error(`tsParticles MCP server running on http://0.0.0.0:${port}/mcp`); + console.error(`Health check: http://0.0.0.0:${port}/health`); + }); + + // Graceful shutdown: close all active sessions and stop accepting new + // connections on SIGTERM/SIGINT (e.g. `docker stop`, Ctrl+C) instead of + // dropping in-flight requests and leaking transport resources. + let shuttingDown = false; + const shutdown = (signal: NodeJS.Signals) => { + if (shuttingDown) return; + shuttingDown = true; + console.error(`Received ${signal}, shutting down gracefully...`); + + clearInterval(sweepInterval); + + const closeSessions = Promise.all([...sessions.keys()].map(id => closeSession(id))); + + const forceExitTimer = setTimeout(() => { + console.error("Graceful shutdown timed out, forcing exit."); + process.exit(1); + }, 10_000); + forceExitTimer.unref(); + + void closeSessions.finally(() => { + httpServer.close(err => { + clearTimeout(forceExitTimer); + if (err) { + console.error("Error closing HTTP server:", err); + process.exit(1); + } + process.exit(0); + }); + }); + }; + + process.on("SIGTERM", () => shutdown("SIGTERM")); + process.on("SIGINT", () => shutdown("SIGINT")); +} diff --git a/integrations/mcp-server/src/http/types.ts b/integrations/mcp-server/src/http/types.ts new file mode 100644 index 00000000000..4a0f5737c00 --- /dev/null +++ b/integrations/mcp-server/src/http/types.ts @@ -0,0 +1,24 @@ +import type { Server as McpServer } from "@modelcontextprotocol/sdk/server/index.js"; +import type { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js"; + +export interface SessionEntry { + server: McpServer; + transport: StreamableHTTPServerTransport; + lastActivity: number; +} + +export interface StartHttpServerParams { + port: number; + allowedOrigins?: string[]; + /** + * Optional bearer token. When set, every request to `/mcp` must carry + * an `Authorization: Bearer ` header matching this value. + * Intended for deployments that expose the server beyond localhost + * (e.g. via a tunnel or reverse proxy) where the Origin check alone + * is not a meaningful access control (non-browser clients don't send + * an Origin header at all). + */ + authToken?: string; + packageVersion: string; + createMcpServer: () => McpServer; +} diff --git a/integrations/mcp-server/src/index.ts b/integrations/mcp-server/src/index.ts index 70616f13de8..faed95639dc 100644 --- a/integrations/mcp-server/src/index.ts +++ b/integrations/mcp-server/src/index.ts @@ -2,7 +2,6 @@ import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; -import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js"; import { CallToolRequestSchema, ListToolsRequestSchema, @@ -11,6 +10,9 @@ import { ListPromptsRequestSchema, GetPromptRequestSchema, } from "@modelcontextprotocol/sdk/types.js"; +import { readFileSync } from "node:fs"; +import { fileURLToPath } from "node:url"; +import { dirname, join } from "node:path"; import { suggestPlugins } from "./tools/suggestPlugins.js"; import { listPackages } from "./tools/listPackages.js"; @@ -20,14 +22,35 @@ import { getOptionsGuideResource } from "./resources/optionsGuide.js"; import { getBundlesGuideResource } from "./resources/bundlesGuide.js"; import { generateOptionsPrompt, generateOptionsSystemText } from "./prompts/generateOptions.js"; import { diagnoseIssues } from "./tools/diagnoseIssues.js"; +import { startHttpServer } from "./http/server.js"; +import { normalizeOrigin } from "./http/security.js"; +import { + diagnoseIssuesArgsSchema, + formatZodError, + getPackageInfoArgsSchema, + listPackagesArgsSchema, + suggestPluginsArgsSchema, +} from "./validation.js"; + +// Read the package version from package.json at runtime instead of +// hardcoding a value here, so `/health` and the MCP handshake never +// drift out of sync with the published package version. Falls back to +// "0.0.0" if, for some reason, package.json can't be located/parsed — +// this must never throw and prevent the server from starting. +function readPackageVersion(): string { + try { + const __dirname = dirname(fileURLToPath(import.meta.url)); + // dist/index.js -> ../package.json (works both from src via ts-node + // style resolution and from the compiled dist/ output). + const pkgPath = join(__dirname, "..", "package.json"); + const pkg = JSON.parse(readFileSync(pkgPath, "utf8")) as { version?: string }; + return typeof pkg.version === "string" ? pkg.version : "0.0.0"; + } catch { + return "0.0.0"; + } +} -import { createServer } from "node:http"; -import { randomUUID } from "node:crypto"; - -const PACKAGE_VERSION = "0.1.0"; -const MAX_REQUEST_BODY_BYTES = 1024 * 1024; // 1 MB -const SESSION_IDLE_TIMEOUT_MS = 30 * 60 * 1000; // 30 minutes -const SESSION_SWEEP_INTERVAL_MS = 5 * 60 * 1000; // 5 minutes +const PACKAGE_VERSION = readPackageVersion(); // ── CLI args ─────────────────────────────────────────────────────── @@ -35,6 +58,7 @@ interface ParsedArgs { mode: "stdio" | "http"; port?: number; allowedOrigins?: string[]; + authToken?: string; } function parseArgs(): ParsedArgs { @@ -53,9 +77,20 @@ function parseArgs(): ParsedArgs { rawPort = args[i].split("=")[1]; } else if (args[i] === "--allowed-origin" && i + 1 < args.length) { result.allowedOrigins = (result.allowedOrigins ?? []).concat(args[++i]); + } else if (args[i] === "--auth-token" && i + 1 < args.length) { + result.authToken = args[++i]; + } else if (args[i].startsWith("--auth-token=")) { + result.authToken = args[i].slice("--auth-token=".length); } } + // Allow the token to be supplied via environment variable too, so it + // doesn't need to appear in shell history / process listings. The CLI + // flag takes precedence if both are set. + if (!result.authToken && process.env.MCP_AUTH_TOKEN) { + result.authToken = process.env.MCP_AUTH_TOKEN; + } + if (result.mode === "http") { const port = rawPort !== undefined ? Number(rawPort) : NaN; if (!Number.isInteger(port) || port <= 0 || port > 65535) { @@ -65,6 +100,26 @@ function parseArgs(): ParsedArgs { process.exit(1); } result.port = port; + + if (result.allowedOrigins && result.allowedOrigins.length > 0) { + const normalized = result.allowedOrigins.map((origin) => normalizeOrigin(origin)); + + if (normalized.some((origin) => !origin)) { + console.error("Invalid --allowed-origin value. Use full origin like http://localhost:3000"); + process.exit(1); + } + + result.allowedOrigins = [...new Set(normalized as string[])]; + } + } else { + if (result.allowedOrigins && result.allowedOrigins.length > 0) { + console.error("--allowed-origin can only be used with HTTP mode (--port )"); + process.exit(1); + } + if (result.authToken) { + console.error("--auth-token can only be used with HTTP mode (--port )"); + process.exit(1); + } } return result; @@ -161,6 +216,7 @@ function createMcpServer(): Server { "plugin", "interaction-external", "interaction-particles", + "interaction-light", "updater", "shape", "effect", @@ -216,69 +272,89 @@ function createMcpServer(): Server { server.setRequestHandler(CallToolRequestSchema, async (request) => { const { name, arguments: args } = request.params; - switch (name) { - case "suggest_plugins": { - const options = args?.options as Record; - if (!options) { - return { - content: [{ type: "text", text: "Missing required argument: options" }], - isError: true, - }; + try { + switch (name) { + case "suggest_plugins": { + const parsed = suggestPluginsArgsSchema.safeParse(args); + if (!parsed.success) { + return { + content: [{ type: "text", text: `Invalid arguments: ${formatZodError(parsed.error)}` }], + isError: true, + }; + } + const result = suggestPlugins(parsed.data.options); + return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } - const result = suggestPlugins(options); - return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; - } - case "list_packages": { - const filters: { category?: string; query?: string } = {}; - if (args?.category) filters.category = args.category as string; - if (args?.query) filters.query = args.query as string; - const result = listPackages(filters); - return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; - } + case "list_packages": { + const parsed = listPackagesArgsSchema.safeParse(args ?? {}); + if (!parsed.success) { + return { + content: [{ type: "text", text: `Invalid arguments: ${formatZodError(parsed.error)}` }], + isError: true, + }; + } + const result = listPackages(parsed.data); + return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; + } - case "get_package_info": { - const pkg = args?.package as string; - if (!pkg) { - return { - content: [{ type: "text", text: "Missing required argument: package" }], - isError: true, - }; + case "get_package_info": { + const parsed = getPackageInfoArgsSchema.safeParse(args); + if (!parsed.success) { + return { + content: [{ type: "text", text: `Invalid arguments: ${formatZodError(parsed.error)}` }], + isError: true, + }; + } + const result = getPackageInfo(parsed.data.package); + if (!result) { + return { + content: [ + { + type: "text", + text: `Package "${parsed.data.package}" not found. Use list_packages to see all available packages.`, + }, + ], + isError: true, + }; + } + return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } - const result = getPackageInfo(pkg); - if (!result) { + + case "diagnose_issues": { + const parsed = diagnoseIssuesArgsSchema.safeParse(args); + if (!parsed.success) { + return { + content: [{ type: "text", text: `Invalid arguments: ${formatZodError(parsed.error)}` }], + isError: true, + }; + } + const issues = diagnoseIssues(parsed.data.options); return { - content: [ - { - type: "text", - text: `Package "${pkg}" not found. Use list_packages to see all available packages.`, - }, - ], - isError: true, + content: [{ type: "text", text: JSON.stringify({ issues, total: issues.length }, null, 2) }], }; } - return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; - } - case "diagnose_issues": { - const options = args?.options as Record; - if (!options) { + default: return { - content: [{ type: "text", text: "Missing required argument: options" }], + content: [{ type: "text", text: `Unknown tool: ${name}` }], isError: true, }; - } - const issues = diagnoseIssues(options); - return { - content: [{ type: "text", text: JSON.stringify({ issues, total: issues.length }, null, 2) }], - }; } - - default: - return { - content: [{ type: "text", text: `Unknown tool: ${name}` }], - isError: true, - }; + } catch (error) { + // Tool implementations are expected to be pure/synchronous and + // shouldn't normally throw, but a malformed-yet-schema-valid + // options object (or a future bug) could still trigger an + // unexpected exception. Without this guard, that exception would + // propagate out of the handler and either crash the transport or + // produce a malformed JSON-RPC response instead of a clean + // `isError: true` tool result. + console.error(`Error running tool "${name}":`, error); + const message = error instanceof Error ? error.message : String(error); + return { + content: [{ type: "text", text: `Internal error running tool "${name}": ${message}` }], + isError: true, + }; } }); @@ -365,203 +441,19 @@ async function startStdio() { console.error("tsParticles MCP server running on stdio"); } -// ── Start Server: HTTP (Streamable HTTP transport) ────────────────── - -interface SessionEntry { - server: Server; - transport: StreamableHTTPServerTransport; - lastActivity: number; -} - -function isOriginAllowed(origin: string | undefined, allowedOrigins?: string[]): boolean { - // No Origin header at all (e.g. non-browser clients, curl) is allowed — - // the Origin check exists to defend against DNS-rebinding attacks from - // browser contexts, which always send this header. - if (!origin) return true; - - if (allowedOrigins && allowedOrigins.length > 0) { - return allowedOrigins.includes(origin); - } - - // Default: only allow local origins when no explicit allow-list is - // configured, since the server binds to 0.0.0.0 with no auth. - try { - const { hostname } = new URL(origin); - return hostname === "localhost" || hostname === "127.0.0.1" || hostname === "::1"; - } catch { - return false; - } -} - -async function startHttp(port: number, allowedOrigins?: string[]) { - const sessions = new Map(); - - function touchSession(sessionId: string) { - const entry = sessions.get(sessionId); - if (entry) entry.lastActivity = Date.now(); - } - - async function closeSession(sessionId: string) { - const entry = sessions.get(sessionId); - if (!entry) return; - sessions.delete(sessionId); - try { - await entry.transport.close(); - } catch (err) { - console.error(`Error closing session ${sessionId}:`, err); - } - } - - // Periodically sweep idle sessions so a client that disconnects - // without a clean DELETE doesn't leak memory indefinitely. - const sweepInterval = setInterval(() => { - const now = Date.now(); - for (const [sessionId, entry] of sessions) { - if (now - entry.lastActivity > SESSION_IDLE_TIMEOUT_MS) { - void closeSession(sessionId); - } - } - }, SESSION_SWEEP_INTERVAL_MS); - sweepInterval.unref(); - - const httpServer = createServer(async (req, res) => { - // Health check endpoint - if (req.method === "GET" && req.url === "/health") { - res.writeHead(200, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ status: "ok", version: PACKAGE_VERSION })); - return; - } - - if (req.url !== "/mcp") { - res.writeHead(404); - res.end("Not found"); - return; - } - - // Defend against DNS rebinding: reject browser-originated requests - // from origins we don't recognize. - const originHeader = req.headers.origin; - if (!isOriginAllowed(originHeader, allowedOrigins)) { - res.writeHead(403, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Origin not allowed" })); - return; - } - - const sessionIdHeader = req.headers["mcp-session-id"]; - const sessionId = Array.isArray(sessionIdHeader) ? sessionIdHeader[0] : sessionIdHeader; - - // GET is used by clients to open the server->client SSE stream on an - // existing session. - if (req.method === "GET") { - if (!sessionId || !sessions.has(sessionId)) { - res.writeHead(404, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Session not found" })); - return; - } - touchSession(sessionId); - await sessions.get(sessionId)!.transport.handleRequest(req, res); - return; - } - - // DELETE is used by clients to explicitly terminate a session. - if (req.method === "DELETE") { - if (!sessionId || !sessions.has(sessionId)) { - res.writeHead(404, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Session not found" })); - return; - } - await closeSession(sessionId); - res.writeHead(204); - res.end(); - return; - } - - if (req.method !== "POST") { - res.writeHead(405, { "Content-Type": "application/json", Allow: "GET, POST, DELETE" }); - res.end(JSON.stringify({ error: "Method not allowed" })); - return; - } - - // POST: either an existing session's message, or a new session's - // initialize request. - let body: string; - try { - body = await new Promise((resolve, reject) => { - const chunks: Buffer[] = []; - let receivedBytes = 0; - req.on("data", (chunk: Buffer) => { - receivedBytes += chunk.length; - if (receivedBytes > MAX_REQUEST_BODY_BYTES) { - req.destroy(new Error("Request body too large")); - return; - } - chunks.push(chunk); - }); - req.on("end", () => resolve(Buffer.concat(chunks).toString("utf8"))); - req.on("error", reject); - }); - } catch { - res.writeHead(413, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Request body too large" })); - return; - } - - let parsedBody: unknown; - try { - parsedBody = body ? JSON.parse(body) : undefined; - } catch { - res.writeHead(400, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Invalid JSON" })); - return; - } - - if (sessionId) { - const entry = sessions.get(sessionId); - if (!entry) { - res.writeHead(404, { "Content-Type": "application/json" }); - res.end(JSON.stringify({ error: "Session not found" })); - return; - } - touchSession(sessionId); - await entry.transport.handleRequest(req, res, parsedBody); - return; - } - - // No session id: this must be an initialize request. Spin up a - // brand new Server + Transport pair dedicated to this session so - // that response routing can never cross sessions. - const newServer = createMcpServer(); - const transport = new StreamableHTTPServerTransport({ - sessionIdGenerator: () => randomUUID(), - onsessioninitialized: (newSessionId: string) => { - sessions.set(newSessionId, { server: newServer, transport, lastActivity: Date.now() }); - }, - onsessionclosed: (closedSessionId: string) => { - sessions.delete(closedSessionId); - }, - }); - - await newServer.connect(transport); - await transport.handleRequest(req, res, parsedBody); - }); - - httpServer.on("close", () => { - clearInterval(sweepInterval); - }); - - httpServer.listen(port, "0.0.0.0", () => { - console.error(`tsParticles MCP server running on http://0.0.0.0:${port}/mcp`); - console.error(`Health check: http://0.0.0.0:${port}/health`); - }); -} - // ── Entry point ────────────────────────────────────────────────────── async function main() { const args = parseArgs(); if (args.mode === "http" && args.port) { - await startHttp(args.port, args.allowedOrigins); + await startHttpServer({ + port: args.port, + allowedOrigins: args.allowedOrigins, + authToken: args.authToken, + packageVersion: PACKAGE_VERSION, + createMcpServer, + }); } else { await startStdio(); } @@ -570,4 +462,4 @@ async function main() { main().catch((error) => { console.error("Fatal error:", error); process.exit(1); -}); \ No newline at end of file +}); diff --git a/integrations/mcp-server/src/prompts/generateOptions.ts b/integrations/mcp-server/src/prompts/generateOptions.ts index 7f008da3f5f..721d90330bb 100644 --- a/integrations/mcp-server/src/prompts/generateOptions.ts +++ b/integrations/mcp-server/src/prompts/generateOptions.ts @@ -52,7 +52,7 @@ export const generateOptionsSystemText = `You are a tsParticles configuration ex ## Bundle recommendation rules: - **Simple circles with basic movement** → \`@tsparticles/basic\` - **Interactivity (hover/click) + links + multiple shapes** → \`@tsparticles/slim\` -- **Emitters/absorbers + extra effects** → \`@tsparticles/full\` +- **Emitters/absorbers + extra effects** → \`tsparticles\` - **Everything** → \`@tsparticles/all\` - **Confetti effects** → \`@tsparticles/confetti\` - **Fireworks effects** → \`@tsparticles/fireworks\` diff --git a/integrations/mcp-server/src/registry/packageMaps.ts b/integrations/mcp-server/src/registry/packageMaps.ts new file mode 100644 index 00000000000..57b2a5b05cc --- /dev/null +++ b/integrations/mcp-server/src/registry/packageMaps.ts @@ -0,0 +1,27 @@ +export const EMITTER_SHAPE_PACKAGES: Record = { + circle: "@tsparticles/plugin-emitters-shape-circle", + square: "@tsparticles/plugin-emitters-shape-square", + canvas: "@tsparticles/plugin-emitters-shape-canvas", + path: "@tsparticles/plugin-emitters-shape-path", + polygon: "@tsparticles/plugin-emitters-shape-polygon", +}; + +export const INTERACTION_MODE_PACKAGES: Record = { + attract: "@tsparticles/interaction-external-attract", + bounce: "@tsparticles/interaction-external-bounce", + bubble: "@tsparticles/interaction-external-bubble", + cannon: "@tsparticles/interaction-external-cannon", + connect: "@tsparticles/interaction-external-connect", + destroy: "@tsparticles/interaction-external-destroy", + drag: "@tsparticles/interaction-external-drag", + grab: "@tsparticles/interaction-external-grab", + particle: "@tsparticles/interaction-external-particle", + pause: "@tsparticles/interaction-external-pause", + pop: "@tsparticles/interaction-external-pop", + push: "@tsparticles/interaction-external-push", + remove: "@tsparticles/interaction-external-remove", + repulse: "@tsparticles/interaction-external-repulse", + slow: "@tsparticles/interaction-external-slow", + trail: "@tsparticles/interaction-external-trail", + light: "@tsparticles/interaction-light", +}; diff --git a/integrations/mcp-server/src/tools/diagnoseIssues.test.ts b/integrations/mcp-server/src/tools/diagnoseIssues.test.ts index 3874e8733ad..197e45ea04a 100644 --- a/integrations/mcp-server/src/tools/diagnoseIssues.test.ts +++ b/integrations/mcp-server/src/tools/diagnoseIssues.test.ts @@ -53,6 +53,16 @@ describe("diagnoseIssues", () => { expect(issues.some(i => i.title.includes("Interactivity plugin"))).toBe(true); }); + it("should detect interaction mode from events.onClick.mode", () => { + const issues = diagnoseIssues({ + interactivity: { + events: { onClick: { mode: "push" } }, + }, + }); + + expect(issues.some(i => i.title.includes("Interaction mode 'push'"))).toBe(true); + }); + it("should detect shape plugin needed", () => { const issues = diagnoseIssues({ particles: { diff --git a/integrations/mcp-server/src/tools/diagnoseIssues.ts b/integrations/mcp-server/src/tools/diagnoseIssues.ts index b25c501e0d0..8d032ae62a0 100644 --- a/integrations/mcp-server/src/tools/diagnoseIssues.ts +++ b/integrations/mcp-server/src/tools/diagnoseIssues.ts @@ -1,4 +1,5 @@ import { packageCatalog } from "../registry/packages.js"; +import { EMITTER_SHAPE_PACKAGES, INTERACTION_MODE_PACKAGES } from "../registry/packageMaps.js"; import { getOptionValue, asArray } from "../utils/optionPath.js"; export interface DiagnosticIssue { @@ -45,6 +46,37 @@ const KNOWN_PARTICLES_KEYS = new Set([ "interactivity", ]); +function parseModeNames(value: unknown): string[] { + if (typeof value === "string") return value.split(/[,\s]+/).filter(Boolean); + if (Array.isArray(value)) return value.filter((v): v is string => typeof v === "string" && v.length > 0); + return []; +} + +function collectInteractivityModes(interactivity: Record | undefined): string[] { + if (!interactivity) return []; + + const modeNames = new Set(); + const modesSection = interactivity.modes as Record | undefined; + if (modesSection) { + for (const mode of Object.keys(modesSection)) { + modeNames.add(mode); + } + } + + const events = interactivity.events as Record | undefined; + const eventEntries = [events?.onClick, events?.onHover]; + + for (const entry of eventEntries) { + if (!entry || typeof entry !== "object") continue; + const mode = (entry as Record).mode; + for (const modeName of parseModeNames(mode)) { + modeNames.add(modeName); + } + } + + return [...modeNames]; +} + export function diagnoseIssues(options: Record): DiagnosticIssue[] { const issues: DiagnosticIssue[] = []; @@ -68,7 +100,7 @@ export function diagnoseIssues(options: Record): DiagnosticIssu relatedPackages: [ "@tsparticles/basic", "@tsparticles/slim", - "@tsparticles/full", + "tsparticles", ], }); } @@ -165,7 +197,7 @@ export function diagnoseIssues(options: Record): DiagnosticIssu typeof shapeType === "string" ? shapeType.split(/[,\s]+/).filter(Boolean) : Array.isArray(shapeType) - ? shapeType.filter(Boolean) + ? shapeType.filter((v): v is string => typeof v === "string" && v.length > 0) : []; for (const name of names) { const cleanName = name.replace("@tsparticles/", ""); @@ -207,38 +239,17 @@ export function diagnoseIssues(options: Record): DiagnosticIssu } // ── Missing Interaction Packages ──────────────────────────────── - const modes = getOptionValue(options, "interactivity.modes") as Record | undefined; - if (modes) { - const modeToPackage: Record = { - attract: "@tsparticles/interaction-external-attract", - bounce: "@tsparticles/interaction-external-bounce", - bubble: "@tsparticles/interaction-external-bubble", - cannon: "@tsparticles/interaction-external-cannon", - connect: "@tsparticles/interaction-external-connect", - destroy: "@tsparticles/interaction-external-destroy", - drag: "@tsparticles/interaction-external-drag", - grab: "@tsparticles/interaction-external-grab", - particle: "@tsparticles/interaction-external-particle", - pause: "@tsparticles/interaction-external-pause", - pop: "@tsparticles/interaction-external-pop", - push: "@tsparticles/interaction-external-push", - remove: "@tsparticles/interaction-external-remove", - repulse: "@tsparticles/interaction-external-repulse", - slow: "@tsparticles/interaction-external-slow", - trail: "@tsparticles/interaction-external-trail", - light: "@tsparticles/interaction-light", - }; - - for (const [mode, pkg] of Object.entries(modeToPackage)) { - if (getOptionValue(options, `interactivity.modes.${mode}`) !== undefined) { - issues.push({ - severity: "info", - title: `Interaction mode '${mode}' needs package`, - description: `Interactivity mode '${mode}' is configured. Make sure ${pkg} is loaded, otherwise the mode won't produce any effect.`, - fix: `Install and load ${pkg}.`, - relatedPackages: [pkg], - }); - } + const interactionModes = collectInteractivityModes(interactivity as Record | undefined); + for (const mode of interactionModes) { + const pkg = INTERACTION_MODE_PACKAGES[mode]; + if (pkg) { + issues.push({ + severity: "info", + title: `Interaction mode '${mode}' needs package`, + description: `Interactivity mode '${mode}' is configured. Make sure ${pkg} is loaded, otherwise the mode won't produce any effect.`, + fix: `Install and load ${pkg}.`, + relatedPackages: [pkg], + }); } } @@ -342,31 +353,26 @@ export function diagnoseIssues(options: Record): DiagnosticIssu // `emitters` may be a single object or an array of emitter configs — // normalize before reading `.shape.type` so array configs aren't // silently skipped. - const esShapeMap: Record = { - circle: "@tsparticles/plugin-emitters-shape-circle", - square: "@tsparticles/plugin-emitters-shape-square", - canvas: "@tsparticles/plugin-emitters-shape-canvas", - path: "@tsparticles/plugin-emitters-shape-path", - polygon: "@tsparticles/plugin-emitters-shape-polygon", - }; const emitterEntries = asArray>(options.emitters); const reportedEmitterShapes = new Set(); for (const emitter of emitterEntries) { const shapeType = getOptionValue(emitter, "shape.type"); if (!shapeType) continue; - const name = String(shapeType); - if (reportedEmitterShapes.has(name)) continue; - reportedEmitterShapes.add(name); - const pkg = esShapeMap[name]; - if (pkg) { - issues.push({ - severity: "info", - title: `Emitter shape '${name}' needs package`, - description: `Emitter shape type '${name}' requires ${pkg}. Without it, the default circle shape will be used.`, - fix: `Install and load ${pkg}.`, - relatedPackages: [pkg], - }); + for (const name of parseModeNames(shapeType)) { + if (reportedEmitterShapes.has(name)) continue; + reportedEmitterShapes.add(name); + + const pkg = EMITTER_SHAPE_PACKAGES[name]; + if (pkg) { + issues.push({ + severity: "info", + title: `Emitter shape '${name}' needs package`, + description: `Emitter shape type '${name}' requires ${pkg}. Without it, the default circle shape will be used.`, + fix: `Install and load ${pkg}.`, + relatedPackages: [pkg], + }); + } } } diff --git a/integrations/mcp-server/src/tools/suggestPlugins.test.ts b/integrations/mcp-server/src/tools/suggestPlugins.test.ts index 1c2abbbcfe8..9ef1ec39389 100644 --- a/integrations/mcp-server/src/tools/suggestPlugins.test.ts +++ b/integrations/mcp-server/src/tools/suggestPlugins.test.ts @@ -136,6 +136,21 @@ describe("suggestPlugins", () => { expect(result.npmPackages).toContain("@tsparticles/interaction-external-bubble"); }); + it("should detect interactivity mode from events.onClick.mode", () => { + const result = suggestPlugins({ + interactivity: { + events: { + onClick: { + mode: "push", + }, + }, + }, + }); + + expect(result.npmPackages).toContain("@tsparticles/plugin-interactivity"); + expect(result.npmPackages).toContain("@tsparticles/interaction-external-push"); + }); + it("should detect emitter shapes", () => { const result = suggestPlugins({ emitters: { diff --git a/integrations/mcp-server/src/tools/suggestPlugins.ts b/integrations/mcp-server/src/tools/suggestPlugins.ts index 625c4e42ae2..45201d4f777 100644 --- a/integrations/mcp-server/src/tools/suggestPlugins.ts +++ b/integrations/mcp-server/src/tools/suggestPlugins.ts @@ -3,34 +3,38 @@ import { packageCatalog } from "../registry/packages.js"; import { optionToPlugin } from "../registry/pluginOptions.js"; import { bundles } from "../registry/bundles.js"; import { getOptionValue, isOptionEnabled, asArray } from "../utils/optionPath.js"; +import { EMITTER_SHAPE_PACKAGES, INTERACTION_MODE_PACKAGES } from "../registry/packageMaps.js"; -const EMITTER_SHAPE_PACKAGES: Record = { - circle: "@tsparticles/plugin-emitters-shape-circle", - square: "@tsparticles/plugin-emitters-shape-square", - canvas: "@tsparticles/plugin-emitters-shape-canvas", - path: "@tsparticles/plugin-emitters-shape-path", - polygon: "@tsparticles/plugin-emitters-shape-polygon", -}; - -const INTERACTION_MODE_PACKAGES: Record = { - attract: "@tsparticles/interaction-external-attract", - bounce: "@tsparticles/interaction-external-bounce", - bubble: "@tsparticles/interaction-external-bubble", - cannon: "@tsparticles/interaction-external-cannon", - connect: "@tsparticles/interaction-external-connect", - destroy: "@tsparticles/interaction-external-destroy", - drag: "@tsparticles/interaction-external-drag", - grab: "@tsparticles/interaction-external-grab", - particle: "@tsparticles/interaction-external-particle", - pause: "@tsparticles/interaction-external-pause", - pop: "@tsparticles/interaction-external-pop", - push: "@tsparticles/interaction-external-push", - remove: "@tsparticles/interaction-external-remove", - repulse: "@tsparticles/interaction-external-repulse", - slow: "@tsparticles/interaction-external-slow", - trail: "@tsparticles/interaction-external-trail", - light: "@tsparticles/interaction-light", -}; +function parseModeNames(value: unknown): string[] { + if (typeof value === "string") return value.split(/[,\s]+/).filter(Boolean); + if (Array.isArray(value)) return value.filter((v): v is string => typeof v === "string" && v.length > 0); + return []; +} + +function collectInteractivityModes(interactivity: Record | undefined): string[] { + if (!interactivity) return []; + + const modeNames = new Set(); + const modesSection = interactivity.modes as Record | undefined; + if (modesSection) { + for (const mode of Object.keys(modesSection)) { + modeNames.add(mode); + } + } + + const events = interactivity.events as Record | undefined; + const eventEntries = [events?.onClick, events?.onHover]; + + for (const entry of eventEntries) { + if (!entry || typeof entry !== "object") continue; + const mode = (entry as Record).mode; + for (const modeName of parseModeNames(mode)) { + modeNames.add(modeName); + } + } + + return [...modeNames]; +} function findBundle(packages: string[]): string | undefined { const allNames = new Set(packages); @@ -41,7 +45,7 @@ function findBundle(packages: string[]): string | undefined { pkgs: ["@tsparticles/plugin-background-mask", "@tsparticles/plugin-canvas-mask", "@tsparticles/plugin-sounds"], }, { - name: "@tsparticles/full", + name: "tsparticles", pkgs: ["@tsparticles/plugin-absorbers", "@tsparticles/plugin-emitters", "@tsparticles/interaction-external-drag"], }, { @@ -184,13 +188,10 @@ export function suggestPlugins(options: Record): SuggestPlugins } } - const interactivityModes = (options.interactivity as Record | undefined)?.modes as - Record | undefined; - if (interactivityModes) { - for (const mode of Object.keys(interactivityModes)) { - const pkg = INTERACTION_MODE_PACKAGES[mode]; - if (pkg) matched.add(pkg); - } + const interactivityModes = collectInteractivityModes(options.interactivity as Record | undefined); + for (const mode of interactivityModes) { + const pkg = INTERACTION_MODE_PACKAGES[mode]; + if (pkg) matched.add(pkg); } if (hasEmitter) { diff --git a/integrations/mcp-server/src/validation.test.ts b/integrations/mcp-server/src/validation.test.ts new file mode 100644 index 00000000000..691fe12a7ef --- /dev/null +++ b/integrations/mcp-server/src/validation.test.ts @@ -0,0 +1,88 @@ +import { describe, it, expect } from "vitest"; +import { + diagnoseIssuesArgsSchema, + formatZodError, + getPackageInfoArgsSchema, + listPackagesArgsSchema, + suggestPluginsArgsSchema, +} from "./validation.js"; + +describe("suggestPluginsArgsSchema", () => { + it("accepts a plain options object", () => { + const result = suggestPluginsArgsSchema.safeParse({ options: { particles: {} } }); + expect(result.success).toBe(true); + }); + + it("rejects missing options", () => { + expect(suggestPluginsArgsSchema.safeParse({}).success).toBe(false); + }); + + it("rejects options provided as a string", () => { + expect(suggestPluginsArgsSchema.safeParse({ options: "not an object" }).success).toBe(false); + }); + + it("rejects options provided as an array", () => { + expect(suggestPluginsArgsSchema.safeParse({ options: [1, 2, 3] }).success).toBe(false); + }); + + it("rejects options provided as null", () => { + expect(suggestPluginsArgsSchema.safeParse({ options: null }).success).toBe(false); + }); +}); + +describe("diagnoseIssuesArgsSchema", () => { + it("accepts a plain options object", () => { + expect(diagnoseIssuesArgsSchema.safeParse({ options: {} }).success).toBe(true); + }); + + it("rejects missing options", () => { + expect(diagnoseIssuesArgsSchema.safeParse({}).success).toBe(false); + }); +}); + +describe("getPackageInfoArgsSchema", () => { + it("accepts a non-empty package name", () => { + expect(getPackageInfoArgsSchema.safeParse({ package: "@tsparticles/engine" }).success).toBe(true); + }); + + it("rejects an empty package name", () => { + expect(getPackageInfoArgsSchema.safeParse({ package: "" }).success).toBe(false); + }); + + it("rejects a missing package field", () => { + expect(getPackageInfoArgsSchema.safeParse({}).success).toBe(false); + }); + + it("rejects a non-string package field", () => { + expect(getPackageInfoArgsSchema.safeParse({ package: 123 }).success).toBe(false); + }); +}); + +describe("listPackagesArgsSchema", () => { + it("accepts no filters", () => { + expect(listPackagesArgsSchema.safeParse({}).success).toBe(true); + }); + + it("accepts a known category", () => { + expect(listPackagesArgsSchema.safeParse({ category: "shape" }).success).toBe(true); + }); + + it("rejects an unknown category", () => { + expect(listPackagesArgsSchema.safeParse({ category: "not-a-category" }).success).toBe(false); + }); + + it("accepts a query string", () => { + expect(listPackagesArgsSchema.safeParse({ query: "circle" }).success).toBe(true); + }); +}); + +describe("formatZodError", () => { + it("produces a readable path: message summary", () => { + const result = suggestPluginsArgsSchema.safeParse({}); + expect(result.success).toBe(false); + if (!result.success) { + const message = formatZodError(result.error); + expect(message).toContain("options"); + } + }); +}); diff --git a/integrations/mcp-server/src/validation.ts b/integrations/mcp-server/src/validation.ts new file mode 100644 index 00000000000..0a920fae3c3 --- /dev/null +++ b/integrations/mcp-server/src/validation.ts @@ -0,0 +1,66 @@ +import { z } from "zod"; + +// ── Shared primitives ────────────────────────────────────────────── +// +// Tool inputs arrive as untyped JSON over the wire (stdio or HTTP), so +// they must be validated at runtime rather than merely cast with `as`. +// `z.record(z.string(), z.unknown())` accepts any plain object while +// still rejecting arrays, strings, numbers, null, etc. — the previous +// `args?.options as Record` cast happily "accepted" +// any of those and let malformed input reach the tool implementations. + +const optionsObjectSchema = z + .record(z.string(), z.unknown()) + .describe("A tsParticles options object (ISourceOptions)"); + +export const suggestPluginsArgsSchema = z.object({ + options: optionsObjectSchema, +}); + +export const diagnoseIssuesArgsSchema = z.object({ + options: optionsObjectSchema, +}); + +export const getPackageInfoArgsSchema = z.object({ + package: z.string().min(1, "package must be a non-empty string"), +}); + +export const categorySchema = z.enum([ + "bundle", + "plugin", + "interaction-external", + "interaction-particles", + "interaction-light", + "updater", + "shape", + "effect", + "path", + "emitter-shape", + "color", + "easing", + "preset", +]); + +export const listPackagesArgsSchema = z.object({ + category: categorySchema.optional(), + query: z.string().optional(), +}); + +export type SuggestPluginsArgs = z.infer; +export type DiagnoseIssuesArgs = z.infer; +export type GetPackageInfoArgs = z.infer; +export type ListPackagesArgs = z.infer; + +/** + * Formats a ZodError into a single human-readable string suitable for + * returning as tool call error text (MCP tool errors are plain text, + * not structured JSON). + */ +export function formatZodError(error: z.ZodError): string { + return error.issues + .map(issue => { + const path = issue.path.length > 0 ? issue.path.join(".") : "(root)"; + return `${path}: ${issue.message}`; + }) + .join("; "); +} From 90b52f844fd950638a5f188c40b804d69cc22355 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 10:31:13 +0200 Subject: [PATCH 06/10] fix: fixed other issues in mcp server --- .github/workflows/npm-publish.yml | 14 +++--- .../mcp-server/src/tools/diagnoseIssues.ts | 32 +------------- .../mcp-server/src/tools/suggestPlugins.ts | 36 +--------------- .../src/utils/interactivityModes.ts | 43 +++++++++++++++++++ 4 files changed, 55 insertions(+), 70 deletions(-) create mode 100644 integrations/mcp-server/src/utils/interactivityModes.ts diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index a4834d36deb..5b438a2bcf9 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -94,14 +94,18 @@ jobs: - name: Build and push MCP server Docker image env: TAG: ${{ github.ref_name }} + # Configurable via repo/org variable so the target Docker Hub + # namespace isn't hardcoded in the workflow. Set a + # "DOCKER_HUB_IMAGE" repository variable (Settings > Secrets + # and variables > Actions > Variables) to override the default. + IMAGE: ${{ vars.DOCKER_HUB_IMAGE || 'tsparticles/mcp-server' }} run: | - IMAGE=caelan/tsparticles-mcp-server - docker build -f integrations/mcp-server/Dockerfile -t $IMAGE:$TAG . + docker build -f integrations/mcp-server/Dockerfile -t "$IMAGE:$TAG" . if [ "$IS_STABLE" = "true" ]; then - docker tag $IMAGE:$TAG $IMAGE:latest - docker push $IMAGE:latest + docker tag "$IMAGE:$TAG" "$IMAGE:latest" + docker push "$IMAGE:latest" fi - docker push $IMAGE:$TAG + docker push "$IMAGE:$TAG" # 🧠 Create release + upload assets with retry/backoff - name: Create Release (raw) diff --git a/integrations/mcp-server/src/tools/diagnoseIssues.ts b/integrations/mcp-server/src/tools/diagnoseIssues.ts index 8d032ae62a0..5c55b8e1acd 100644 --- a/integrations/mcp-server/src/tools/diagnoseIssues.ts +++ b/integrations/mcp-server/src/tools/diagnoseIssues.ts @@ -1,6 +1,7 @@ import { packageCatalog } from "../registry/packages.js"; import { EMITTER_SHAPE_PACKAGES, INTERACTION_MODE_PACKAGES } from "../registry/packageMaps.js"; import { getOptionValue, asArray } from "../utils/optionPath.js"; +import { collectInteractivityModes, parseModeNames } from "../utils/interactivityModes.js"; export interface DiagnosticIssue { severity: "error" | "warning" | "info"; @@ -46,37 +47,6 @@ const KNOWN_PARTICLES_KEYS = new Set([ "interactivity", ]); -function parseModeNames(value: unknown): string[] { - if (typeof value === "string") return value.split(/[,\s]+/).filter(Boolean); - if (Array.isArray(value)) return value.filter((v): v is string => typeof v === "string" && v.length > 0); - return []; -} - -function collectInteractivityModes(interactivity: Record | undefined): string[] { - if (!interactivity) return []; - - const modeNames = new Set(); - const modesSection = interactivity.modes as Record | undefined; - if (modesSection) { - for (const mode of Object.keys(modesSection)) { - modeNames.add(mode); - } - } - - const events = interactivity.events as Record | undefined; - const eventEntries = [events?.onClick, events?.onHover]; - - for (const entry of eventEntries) { - if (!entry || typeof entry !== "object") continue; - const mode = (entry as Record).mode; - for (const modeName of parseModeNames(mode)) { - modeNames.add(modeName); - } - } - - return [...modeNames]; -} - export function diagnoseIssues(options: Record): DiagnosticIssue[] { const issues: DiagnosticIssue[] = []; diff --git a/integrations/mcp-server/src/tools/suggestPlugins.ts b/integrations/mcp-server/src/tools/suggestPlugins.ts index 45201d4f777..ea12ff23f17 100644 --- a/integrations/mcp-server/src/tools/suggestPlugins.ts +++ b/integrations/mcp-server/src/tools/suggestPlugins.ts @@ -4,37 +4,7 @@ import { optionToPlugin } from "../registry/pluginOptions.js"; import { bundles } from "../registry/bundles.js"; import { getOptionValue, isOptionEnabled, asArray } from "../utils/optionPath.js"; import { EMITTER_SHAPE_PACKAGES, INTERACTION_MODE_PACKAGES } from "../registry/packageMaps.js"; - -function parseModeNames(value: unknown): string[] { - if (typeof value === "string") return value.split(/[,\s]+/).filter(Boolean); - if (Array.isArray(value)) return value.filter((v): v is string => typeof v === "string" && v.length > 0); - return []; -} - -function collectInteractivityModes(interactivity: Record | undefined): string[] { - if (!interactivity) return []; - - const modeNames = new Set(); - const modesSection = interactivity.modes as Record | undefined; - if (modesSection) { - for (const mode of Object.keys(modesSection)) { - modeNames.add(mode); - } - } - - const events = interactivity.events as Record | undefined; - const eventEntries = [events?.onClick, events?.onHover]; - - for (const entry of eventEntries) { - if (!entry || typeof entry !== "object") continue; - const mode = (entry as Record).mode; - for (const modeName of parseModeNames(mode)) { - modeNames.add(modeName); - } - } - - return [...modeNames]; -} +import { collectInteractivityModes, parseModeNames } from "../utils/interactivityModes.js"; function findBundle(packages: string[]): string | undefined { const allNames = new Set(packages); @@ -106,9 +76,7 @@ export function suggestPlugins(options: Record): SuggestPlugins } function getShapeNames(value: unknown): string[] { - if (typeof value === "string") return value.split(/[,\s]+/).filter(Boolean); - if (Array.isArray(value)) return (value as string[]).filter(Boolean); - return []; + return parseModeNames(value); } for (const name of getShapeNames(shapeType)) { diff --git a/integrations/mcp-server/src/utils/interactivityModes.ts b/integrations/mcp-server/src/utils/interactivityModes.ts new file mode 100644 index 00000000000..eabf16a781d --- /dev/null +++ b/integrations/mcp-server/src/utils/interactivityModes.ts @@ -0,0 +1,43 @@ +/** + * Parses a `mode` value from an interactivity event config into a list + * of mode names. tsParticles allows this to be a single space/comma + * separated string or an array of strings. + */ +export function parseModeNames(value: unknown): string[] { + if (typeof value === "string") return value.split(/[,\s]+/).filter(Boolean); + if (Array.isArray(value)) return value.filter((v): v is string => typeof v === "string" && v.length > 0); + return []; +} + +/** + * Collects every interactivity mode name referenced by an + * `interactivity` options section, whether declared under + * `interactivity.modes` (object keys) or under + * `interactivity.events.onClick.mode` / `.onHover.mode` (string or + * array). Shared between `suggestPlugins` and `diagnoseIssues` so the + * two tools never drift on what counts as "this mode is configured". + */ +export function collectInteractivityModes(interactivity: Record | undefined): string[] { + if (!interactivity) return []; + + const modeNames = new Set(); + const modesSection = interactivity.modes as Record | undefined; + if (modesSection) { + for (const mode of Object.keys(modesSection)) { + modeNames.add(mode); + } + } + + const events = interactivity.events as Record | undefined; + const eventEntries = [events?.onClick, events?.onHover]; + + for (const entry of eventEntries) { + if (!entry || typeof entry !== "object") continue; + const mode = (entry as Record).mode; + for (const modeName of parseModeNames(mode)) { + modeNames.add(modeName); + } + } + + return [...modeNames]; +} From d1ec34003e5553cd451ecd7a14fe4948686a9e34 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 10:44:28 +0200 Subject: [PATCH 07/10] docs: updated mcp-server docker instructions --- integrations/mcp-server/README.md | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/integrations/mcp-server/README.md b/integrations/mcp-server/README.md index 51ac3d443ac..f339a11491b 100644 --- a/integrations/mcp-server/README.md +++ b/integrations/mcp-server/README.md @@ -94,7 +94,27 @@ npx @tsparticles/mcp-server --port 3000 # MCP endpoint: http://localhost:3000/mcp ``` -### Option 2: Docker +### Option 2: Docker (pre-built image) + +Pull and run directly from Docker Hub (no build needed): + +```bash +docker run -d -p 3000:3000 tsparticles/mcp-server +``` + +Or use a specific version: + +```bash +docker run -d -p 3000:3000 tsparticles/mcp-server:v4.3.1 +``` + +With auth token: + +```bash +docker run -d -p 3000:3000 -e MCP_AUTH_TOKEN="$(openssl rand -hex 32)" tsparticles/mcp-server +``` + +### Option 3: Docker Compose (build from source) ```bash # Build and start @@ -110,7 +130,7 @@ this is required reading before using the tunnel/reverse-proxy options below. This prints a temporary URL like `https://random.trycloudflare.com`. Configure your MCP client with `https://random.trycloudflare.com/mcp` as the endpoint. -### Option 3: Docker + Synology Reverse Proxy +### Option 4: Docker + Synology Reverse Proxy If you have a Synology NAS: @@ -134,7 +154,7 @@ docker compose up -d 3. Configure your MCP client with `https://your-nas-domain.example.com:8443/mcp`. -### Option 4: Docker + Cloudflare Tunnel (permanent) +### Option 5: Docker + Cloudflare Tunnel (permanent) For a permanent URL (instead of the random `trycloudflare.com`): From 18aa3367608d070ffacd28e9d1d238ad9ebd6911 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 10:56:55 +0200 Subject: [PATCH 08/10] fix: fixed other issues in mcp server --- integrations/mcp-server/Dockerfile | 2 +- .../mcp-server/src/http/security.test.ts | 16 ++++++--- integrations/mcp-server/src/http/security.ts | 5 +-- integrations/mcp-server/src/http/server.ts | 33 ++++++++++++++++--- integrations/mcp-server/src/http/types.ts | 12 +++++++ 5 files changed, 55 insertions(+), 13 deletions(-) diff --git a/integrations/mcp-server/Dockerfile b/integrations/mcp-server/Dockerfile index b70265e496e..640008a5a97 100644 --- a/integrations/mcp-server/Dockerfile +++ b/integrations/mcp-server/Dockerfile @@ -37,4 +37,4 @@ ENV PORT=3000 HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \ CMD node -e "fetch('http://127.0.0.1:'+(process.env.PORT||3000)+'/health').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))" ENTRYPOINT ["/sbin/tini", "--"] -CMD ["node", "dist/index.js", "--port", "3000"] +CMD node dist/index.js --port $PORT diff --git a/integrations/mcp-server/src/http/security.test.ts b/integrations/mcp-server/src/http/security.test.ts index 2035098d215..56bd31d864f 100644 --- a/integrations/mcp-server/src/http/security.test.ts +++ b/integrations/mcp-server/src/http/security.test.ts @@ -1,4 +1,4 @@ -import { describe, it, expect } from "vitest"; +import { afterEach, describe, it, expect, vi } from "vitest"; import { extractBearerToken, isInitializeRequest, @@ -137,6 +137,10 @@ describe("isValidAuthToken", () => { }); describe("RateLimiter", () => { + afterEach(() => { + vi.useRealTimers(); + }); + it("allows requests under the limit", () => { const limiter = new RateLimiter(60_000, 3); expect(limiter.allow("client-a")).toBe(true); @@ -158,19 +162,21 @@ describe("RateLimiter", () => { expect(limiter.allow("client-c")).toBe(false); }); - it("resets the window after it elapses", async () => { + it("resets the window after it elapses", () => { + vi.useFakeTimers(); const limiter = new RateLimiter(10, 1); expect(limiter.allow("client-e")).toBe(true); expect(limiter.allow("client-e")).toBe(false); - await new Promise(resolve => setTimeout(resolve, 20)); + vi.advanceTimersByTime(15); expect(limiter.allow("client-e")).toBe(true); }); - it("sweep() removes stale entries", async () => { + it("sweep() removes stale entries", () => { + vi.useFakeTimers(); const limiter = new RateLimiter(10, 1); limiter.allow("client-f"); expect(limiter.size).toBe(1); - await new Promise(resolve => setTimeout(resolve, 20)); + vi.advanceTimersByTime(15); limiter.sweep(); expect(limiter.size).toBe(0); }); diff --git a/integrations/mcp-server/src/http/security.ts b/integrations/mcp-server/src/http/security.ts index 0639acc75ae..e6e89b72033 100644 --- a/integrations/mcp-server/src/http/security.ts +++ b/integrations/mcp-server/src/http/security.ts @@ -1,6 +1,7 @@ -import { MAX_SESSION_ID_LENGTH, RATE_LIMIT_MAX_REQUESTS_PER_WINDOW, RATE_LIMIT_WINDOW_MS, SESSION_ID_PATTERN } from "./constants.js"; import { timingSafeEqual } from "node:crypto"; +import { MAX_SESSION_ID_LENGTH, RATE_LIMIT_MAX_REQUESTS_PER_WINDOW, RATE_LIMIT_WINDOW_MS, SESSION_ID_PATTERN } from "./constants.js"; + export function normalizeOrigin(origin: string): string | undefined { try { const parsed = new URL(origin); @@ -108,7 +109,7 @@ export function extractBearerToken(header: string | string[] | undefined): strin const value = Array.isArray(header) ? header[0] : header; if (!value) return undefined; - const match = /^Bearer\s+(.+)$/i.exec(value.trim()); + const match = /^Bearer\s+(\S+)$/i.exec(value.trim()); return match ? match[1] : undefined; } diff --git a/integrations/mcp-server/src/http/server.ts b/integrations/mcp-server/src/http/server.ts index 1e89814a8e3..99799e7133d 100644 --- a/integrations/mcp-server/src/http/server.ts +++ b/integrations/mcp-server/src/http/server.ts @@ -26,6 +26,7 @@ export async function startHttpServer({ port, allowedOrigins, authToken, + trustedProxies, packageVersion, createMcpServer, }: StartHttpServerParams): Promise { @@ -86,8 +87,18 @@ export async function startHttpServer({ // Basic per-IP rate limiting, ahead of auth/origin checks so a // flood of requests can't be used to brute-force the auth token - // or exhaust the session table. - const clientIp = req.socket.remoteAddress ?? "unknown"; + // or exhaust the session table. When the request arrives through + // a trusted reverse proxy the real client IP is read from the + // first value in the X-Forwarded-For header. + let clientIp: string; + const remoteAddress = req.socket.remoteAddress; + if (trustedProxies?.length && remoteAddress && trustedProxies.includes(remoteAddress)) { + const forwardedFor = req.headers["x-forwarded-for"]; + clientIp = + typeof forwardedFor === "string" ? forwardedFor.split(",")[0]?.trim() || remoteAddress : remoteAddress; + } else { + clientIp = remoteAddress ?? "unknown"; + } if (!rateLimiter.allow(clientIp)) { res.writeHead(429, { "Content-Type": "application/json", "Retry-After": "60" }); res.end(JSON.stringify({ error: "Too many requests" })); @@ -226,11 +237,16 @@ export async function startHttpServer({ // No session id: this must be an initialize request. Spin up a // brand new Server + Transport pair dedicated to this session so - // that response routing can never cross sessions. + // that response routing can never cross sessions. If setup or + // request processing fails before onsessioninitialized fires the + // pair is cleaned up explicitly since it was never registered in + // the sessions map and would otherwise leak. const newServer = createMcpServer(); + let sessionRegistered = false; const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: () => randomUUID(), onsessioninitialized: (newSessionId: string) => { + sessionRegistered = true; sessions.set(newSessionId, { server: newServer, transport, lastActivity: Date.now() }); }, onsessionclosed: (closedSessionId: string) => { @@ -238,8 +254,15 @@ export async function startHttpServer({ }, }); - await newServer.connect(transport); - await transport.handleRequest(req, res, parsedBody); + try { + await newServer.connect(transport); + await transport.handleRequest(req, res, parsedBody); + } catch (error) { + if (!sessionRegistered) { + transport.close().catch(() => {}); + } + throw error; + } } catch (error) { console.error("Unhandled HTTP request error:", error); diff --git a/integrations/mcp-server/src/http/types.ts b/integrations/mcp-server/src/http/types.ts index 4a0f5737c00..326665dbc3b 100644 --- a/integrations/mcp-server/src/http/types.ts +++ b/integrations/mcp-server/src/http/types.ts @@ -19,6 +19,18 @@ export interface StartHttpServerParams { * an Origin header at all). */ authToken?: string; + /** + * Optional list of trusted reverse proxy IP addresses (e.g. the IP of + * your nginx/Cloudflare/ALB). When the direct peer matches one of + * these addresses the rate-limiter extracts the client IP from the + * first value of the `X-Forwarded-For` header instead of using + * `req.socket.remoteAddress` (which would always show the proxy IP). + * Falls back to the socket address when the peer is not in this list + * or when the header is absent. If you terminate TLS at a reverse + * proxy you should also set this so that origin checks function + * correctly. + */ + trustedProxies?: string[]; packageVersion: string; createMcpServer: () => McpServer; } From 527bc42f2324fbb9b93262efa3d90a5517532b8b Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 11:56:45 +0200 Subject: [PATCH 09/10] chore(release): published new version --- CHANGELOG.md | 19 +++ bundles/all/CHANGELOG.md | 8 + bundles/all/package.dist.json | 160 +++++++++--------- bundles/all/package.json | 2 +- bundles/basic/CHANGELOG.md | 8 + bundles/basic/package.dist.json | 24 +-- bundles/basic/package.json | 2 +- bundles/confetti/CHANGELOG.md | 8 + bundles/confetti/package.dist.json | 34 ++-- bundles/confetti/package.json | 2 +- bundles/fireworks/CHANGELOG.md | 8 + bundles/fireworks/package.dist.json | 24 +-- bundles/fireworks/package.json | 2 +- bundles/full/CHANGELOG.md | 8 + bundles/full/package.dist.json | 30 ++-- bundles/full/package.json | 2 +- bundles/particles/CHANGELOG.md | 8 + bundles/particles/package.dist.json | 12 +- bundles/particles/package.json | 2 +- bundles/pjs/CHANGELOG.md | 8 + bundles/pjs/package.dist.json | 8 +- bundles/pjs/package.json | 2 +- bundles/ribbons/CHANGELOG.md | 8 + bundles/ribbons/package.dist.json | 16 +- bundles/ribbons/package.json | 2 +- bundles/slim/CHANGELOG.md | 8 + bundles/slim/package.dist.json | 58 +++---- bundles/slim/package.json | 2 +- cli/commands/build-bundle-rollup/CHANGELOG.md | 8 + cli/commands/build-bundle-rollup/package.json | 2 +- .../build-bundle-webpack/CHANGELOG.md | 8 + .../build-bundle-webpack/package.json | 2 +- cli/commands/build-circular-deps/CHANGELOG.md | 8 + cli/commands/build-circular-deps/package.json | 2 +- cli/commands/build-clear/CHANGELOG.md | 8 + cli/commands/build-clear/package.json | 2 +- cli/commands/build-distfiles/CHANGELOG.md | 8 + cli/commands/build-distfiles/package.json | 2 +- cli/commands/build-diststats/CHANGELOG.md | 8 + cli/commands/build-diststats/package.json | 2 +- cli/commands/build-eslint/CHANGELOG.md | 8 + cli/commands/build-eslint/package.json | 2 +- cli/commands/build-prettier/CHANGELOG.md | 8 + cli/commands/build-prettier/package.json | 2 +- cli/commands/build-tsc/CHANGELOG.md | 8 + cli/commands/build-tsc/package.json | 2 +- cli/commands/build/CHANGELOG.md | 8 + cli/commands/build/package.json | 2 +- cli/commands/create-app/CHANGELOG.md | 8 + cli/commands/create-app/package.json | 2 +- cli/commands/create-bundle/CHANGELOG.md | 8 + cli/commands/create-bundle/package.json | 2 +- cli/commands/create-effect/CHANGELOG.md | 8 + cli/commands/create-effect/package.json | 2 +- cli/commands/create-interaction/CHANGELOG.md | 8 + cli/commands/create-interaction/package.json | 2 +- cli/commands/create-palette/CHANGELOG.md | 8 + cli/commands/create-palette/package.json | 2 +- cli/commands/create-path/CHANGELOG.md | 8 + cli/commands/create-path/package.json | 2 +- cli/commands/create-plugin/CHANGELOG.md | 8 + cli/commands/create-plugin/package.json | 2 +- cli/commands/create-preset/CHANGELOG.md | 8 + cli/commands/create-preset/package.json | 2 +- cli/commands/create-shape/CHANGELOG.md | 8 + cli/commands/create-shape/package.json | 2 +- cli/commands/create-updater/CHANGELOG.md | 8 + cli/commands/create-updater/package.json | 2 +- cli/commands/create-utils/CHANGELOG.md | 8 + .../files/empty-project/package.dist.json | 4 +- .../files/empty-project/package.json | 4 +- cli/commands/create-utils/package.json | 2 +- cli/commands/create/CHANGELOG.md | 8 + cli/commands/create/package.json | 2 +- cli/packages/cli-build/CHANGELOG.md | 8 + cli/packages/cli-build/package.json | 2 +- cli/packages/cli-create/CHANGELOG.md | 8 + cli/packages/cli-create/package.json | 2 +- cli/packages/create-404/CHANGELOG.md | 8 + cli/packages/create-404/package.json | 2 +- cli/packages/create-confetti/CHANGELOG.md | 8 + cli/packages/create-confetti/package.json | 2 +- cli/packages/create-particles/CHANGELOG.md | 8 + cli/packages/create-particles/package.json | 2 +- cli/packages/create-ribbons/CHANGELOG.md | 8 + cli/packages/create-ribbons/package.json | 2 +- cli/packages/create-tsparticles/CHANGELOG.md | 8 + cli/packages/create-tsparticles/package.json | 2 +- cli/packages/nx-plugin/CHANGELOG.md | 8 + cli/packages/nx-plugin/package.json | 2 +- cli/utils/browserslist-config/CHANGELOG.md | 8 + cli/utils/browserslist-config/package.json | 2 +- cli/utils/depcruise-config/CHANGELOG.md | 8 + cli/utils/depcruise-config/package.json | 2 +- cli/utils/eslint-config/CHANGELOG.md | 8 + cli/utils/eslint-config/package.json | 2 +- cli/utils/prettier-config/CHANGELOG.md | 8 + cli/utils/prettier-config/package.json | 2 +- cli/utils/rollup-plugin/CHANGELOG.md | 8 + cli/utils/rollup-plugin/package.json | 2 +- cli/utils/tsconfig/CHANGELOG.md | 8 + cli/utils/tsconfig/package.json | 2 +- cli/utils/webpack-config/CHANGELOG.md | 8 + cli/utils/webpack-config/package.json | 2 +- demo/angular/CHANGELOG.md | 8 + demo/angular/package.json | 2 +- demo/astro/CHANGELOG.md | 8 + demo/astro/package.json | 2 +- demo/electron/CHANGELOG.md | 8 + demo/electron/package.json | 2 +- demo/ember/CHANGELOG.md | 8 + demo/ember/package.json | 2 +- demo/inferno/CHANGELOG.md | 8 + demo/inferno/package.json | 2 +- demo/ionic/CHANGELOG.md | 8 + demo/ionic/package.json | 2 +- demo/jquery/CHANGELOG.md | 8 + demo/jquery/package.json | 2 +- demo/lit/CHANGELOG.md | 8 + demo/lit/package.json | 2 +- demo/nextjs-legacy/CHANGELOG.md | 8 + demo/nextjs-legacy/package.json | 2 +- demo/nextjs/CHANGELOG.md | 8 + demo/nextjs/package.json | 2 +- demo/nuxt2/CHANGELOG.md | 8 + demo/nuxt2/package.json | 2 +- demo/nuxt3/CHANGELOG.md | 8 + demo/nuxt3/package.json | 2 +- demo/nuxt4/CHANGELOG.md | 8 + demo/nuxt4/package.json | 2 +- demo/preact/CHANGELOG.md | 8 + demo/preact/package.json | 2 +- demo/qwik/CHANGELOG.md | 8 + demo/qwik/package.json | 2 +- demo/react/CHANGELOG.md | 8 + demo/react/package.json | 2 +- demo/riot/CHANGELOG.md | 8 + demo/riot/package.json | 2 +- demo/solid/CHANGELOG.md | 8 + demo/solid/package.json | 2 +- demo/stencil/CHANGELOG.md | 8 + demo/stencil/package.json | 2 +- demo/svelte-kit/CHANGELOG.md | 8 + demo/svelte-kit/package.json | 2 +- demo/svelte/CHANGELOG.md | 8 + demo/svelte/package.json | 2 +- demo/vanilla/CHANGELOG.md | 8 + demo/vanilla/package.json | 2 +- demo/vanilla_new/CHANGELOG.md | 8 + demo/vanilla_new/package.json | 2 +- demo/vite/CHANGELOG.md | 8 + demo/vite/package.json | 2 +- demo/vue2/CHANGELOG.md | 8 + demo/vue2/package.json | 2 +- demo/vue3/CHANGELOG.md | 8 + demo/vue3/package.json | 2 +- demo/webcomponents/CHANGELOG.md | 8 + demo/webcomponents/package.json | 2 +- effects/bubble/CHANGELOG.md | 8 + effects/bubble/package.dist.json | 4 +- effects/bubble/package.json | 2 +- effects/filter/CHANGELOG.md | 8 + effects/filter/package.dist.json | 4 +- effects/filter/package.json | 2 +- effects/particles/CHANGELOG.md | 8 + effects/particles/package.dist.json | 4 +- effects/particles/package.json | 2 +- effects/shadow/CHANGELOG.md | 8 + effects/shadow/package.dist.json | 4 +- effects/shadow/package.json | 2 +- effects/trail/CHANGELOG.md | 8 + effects/trail/package.dist.json | 4 +- effects/trail/package.json | 2 +- engine/CHANGELOG.md | 11 ++ engine/package.dist.json | 2 +- engine/package.json | 2 +- integrations/mcp-server/CHANGELOG.md | 17 ++ integrations/mcp-server/package.json | 2 +- interactions/external/attract/CHANGELOG.md | 8 + .../external/attract/package.dist.json | 6 +- interactions/external/attract/package.json | 2 +- interactions/external/bounce/CHANGELOG.md | 8 + .../external/bounce/package.dist.json | 6 +- interactions/external/bounce/package.json | 2 +- interactions/external/bubble/CHANGELOG.md | 8 + .../external/bubble/package.dist.json | 6 +- interactions/external/bubble/package.json | 2 +- interactions/external/cannon/CHANGELOG.md | 8 + .../external/cannon/package.dist.json | 6 +- interactions/external/cannon/package.json | 2 +- interactions/external/connect/CHANGELOG.md | 8 + .../external/connect/package.dist.json | 8 +- interactions/external/connect/package.json | 2 +- interactions/external/destroy/CHANGELOG.md | 8 + .../external/destroy/package.dist.json | 6 +- interactions/external/destroy/package.json | 2 +- interactions/external/drag/CHANGELOG.md | 8 + interactions/external/drag/package.dist.json | 6 +- interactions/external/drag/package.json | 2 +- interactions/external/grab/CHANGELOG.md | 8 + interactions/external/grab/package.dist.json | 8 +- interactions/external/grab/package.json | 2 +- interactions/external/parallax/CHANGELOG.md | 8 + .../external/parallax/package.dist.json | 6 +- interactions/external/parallax/package.json | 2 +- interactions/external/particle/CHANGELOG.md | 8 + .../external/particle/package.dist.json | 6 +- interactions/external/particle/package.json | 2 +- interactions/external/pause/CHANGELOG.md | 8 + interactions/external/pause/package.dist.json | 6 +- interactions/external/pause/package.json | 2 +- interactions/external/pop/CHANGELOG.md | 8 + interactions/external/pop/package.dist.json | 6 +- interactions/external/pop/package.json | 2 +- interactions/external/push/CHANGELOG.md | 8 + interactions/external/push/package.dist.json | 6 +- interactions/external/push/package.json | 2 +- interactions/external/remove/CHANGELOG.md | 8 + .../external/remove/package.dist.json | 6 +- interactions/external/remove/package.json | 2 +- interactions/external/repulse/CHANGELOG.md | 8 + .../external/repulse/package.dist.json | 6 +- interactions/external/repulse/package.json | 2 +- interactions/external/slow/CHANGELOG.md | 8 + interactions/external/slow/package.dist.json | 6 +- interactions/external/slow/package.json | 2 +- interactions/external/trail/CHANGELOG.md | 8 + interactions/external/trail/package.dist.json | 6 +- interactions/external/trail/package.json | 2 +- interactions/light/CHANGELOG.md | 8 + interactions/light/package.dist.json | 6 +- interactions/light/package.json | 2 +- interactions/particles/attract/CHANGELOG.md | 8 + .../particles/attract/package.dist.json | 6 +- interactions/particles/attract/package.json | 2 +- .../particles/collisions/CHANGELOG.md | 8 + .../particles/collisions/package.dist.json | 6 +- .../particles/collisions/package.json | 2 +- interactions/particles/links/CHANGELOG.md | 8 + .../particles/links/package.dist.json | 8 +- interactions/particles/links/package.json | 2 +- interactions/particles/repulse/CHANGELOG.md | 8 + .../particles/repulse/package.dist.json | 6 +- interactions/particles/repulse/package.json | 2 +- lerna.json | 2 +- package.json | 2 +- .../atmosphere/coloredSmokeAmber/CHANGELOG.md | 8 + .../coloredSmokeAmber/package.dist.json | 4 +- .../atmosphere/coloredSmokeAmber/package.json | 2 +- .../atmosphere/coloredSmokeBlue/CHANGELOG.md | 8 + .../coloredSmokeBlue/package.dist.json | 4 +- .../atmosphere/coloredSmokeBlue/package.json | 2 +- .../atmosphere/coloredSmokeGreen/CHANGELOG.md | 8 + .../coloredSmokeGreen/package.dist.json | 4 +- .../atmosphere/coloredSmokeGreen/package.json | 2 +- .../coloredSmokeMagenta/CHANGELOG.md | 8 + .../coloredSmokeMagenta/package.dist.json | 4 +- .../coloredSmokeMagenta/package.json | 2 +- .../coloredSmokeOrange/CHANGELOG.md | 8 + .../coloredSmokeOrange/package.dist.json | 4 +- .../coloredSmokeOrange/package.json | 2 +- .../coloredSmokePurple/CHANGELOG.md | 8 + .../coloredSmokePurple/package.dist.json | 4 +- .../coloredSmokePurple/package.json | 2 +- .../coloredSmokeRainbow/CHANGELOG.md | 8 + .../coloredSmokeRainbow/package.dist.json | 4 +- .../coloredSmokeRainbow/package.json | 2 +- .../atmosphere/coloredSmokeRed/CHANGELOG.md | 8 + .../coloredSmokeRed/package.dist.json | 4 +- .../atmosphere/coloredSmokeRed/package.json | 2 +- .../atmosphere/coloredSmokeTeal/CHANGELOG.md | 8 + .../coloredSmokeTeal/package.dist.json | 4 +- .../atmosphere/coloredSmokeTeal/package.json | 2 +- palettes/atmosphere/dustHaze/CHANGELOG.md | 8 + .../atmosphere/dustHaze/package.dist.json | 4 +- palettes/atmosphere/dustHaze/package.json | 2 +- palettes/atmosphere/fogMorning/CHANGELOG.md | 8 + .../atmosphere/fogMorning/package.dist.json | 4 +- palettes/atmosphere/fogMorning/package.json | 2 +- palettes/atmosphere/volcanicAsh/CHANGELOG.md | 8 + .../atmosphere/volcanicAsh/package.dist.json | 4 +- palettes/atmosphere/volcanicAsh/package.json | 2 +- palettes/atmospheric/heatDuality/CHANGELOG.md | 8 + .../atmospheric/heatDuality/package.dist.json | 4 +- palettes/atmospheric/heatDuality/package.json | 2 +- palettes/atmospheric/heatHaze/CHANGELOG.md | 8 + .../atmospheric/heatHaze/package.dist.json | 4 +- palettes/atmospheric/heatHaze/package.json | 2 +- palettes/atmospheric/lightning/CHANGELOG.md | 8 + .../atmospheric/lightning/package.dist.json | 4 +- palettes/atmospheric/lightning/package.json | 2 +- palettes/atmospheric/shockwave/CHANGELOG.md | 8 + .../atmospheric/shockwave/package.dist.json | 4 +- palettes/atmospheric/shockwave/package.json | 2 +- palettes/atmospheric/smokeCold/CHANGELOG.md | 8 + .../atmospheric/smokeCold/package.dist.json | 4 +- palettes/atmospheric/smokeCold/package.json | 2 +- palettes/atmospheric/smokeWarm/CHANGELOG.md | 8 + .../atmospheric/smokeWarm/package.dist.json | 4 +- palettes/atmospheric/smokeWarm/package.json | 2 +- palettes/atmospheric/sunriseGold/CHANGELOG.md | 8 + .../atmospheric/sunriseGold/package.dist.json | 4 +- palettes/atmospheric/sunriseGold/package.json | 2 +- .../atmospheric/sunsetBinary/CHANGELOG.md | 8 + .../sunsetBinary/package.dist.json | 4 +- .../atmospheric/sunsetBinary/package.json | 2 +- palettes/atmospheric/thermalMap/CHANGELOG.md | 8 + .../atmospheric/thermalMap/package.dist.json | 4 +- palettes/atmospheric/thermalMap/package.json | 2 +- .../atmospheric/thunderstorm/CHANGELOG.md | 8 + .../thunderstorm/package.dist.json | 4 +- .../atmospheric/thunderstorm/package.json | 2 +- palettes/confetti/default/CHANGELOG.md | 8 + palettes/confetti/default/package.dist.json | 4 +- palettes/confetti/default/package.json | 2 +- palettes/confetti/gold/CHANGELOG.md | 8 + palettes/confetti/gold/package.dist.json | 4 +- palettes/confetti/gold/package.json | 2 +- palettes/confetti/monochromeBlue/CHANGELOG.md | 8 + .../confetti/monochromeBlue/package.dist.json | 4 +- palettes/confetti/monochromeBlue/package.json | 2 +- .../confetti/monochromeGreen/CHANGELOG.md | 8 + .../monochromeGreen/package.dist.json | 4 +- .../confetti/monochromeGreen/package.json | 2 +- palettes/confetti/monochromePink/CHANGELOG.md | 8 + .../confetti/monochromePink/package.dist.json | 4 +- palettes/confetti/monochromePink/package.json | 2 +- .../confetti/monochromePurple/CHANGELOG.md | 8 + .../monochromePurple/package.dist.json | 4 +- .../confetti/monochromePurple/package.json | 2 +- palettes/confetti/monochromeRed/CHANGELOG.md | 8 + .../confetti/monochromeRed/package.dist.json | 4 +- palettes/confetti/monochromeRed/package.json | 2 +- palettes/confetti/neon/CHANGELOG.md | 8 + palettes/confetti/neon/package.dist.json | 4 +- palettes/confetti/neon/package.json | 2 +- palettes/confetti/pastel/CHANGELOG.md | 8 + palettes/confetti/pastel/package.dist.json | 4 +- palettes/confetti/pastel/package.json | 2 +- palettes/confetti/patriotic/CHANGELOG.md | 8 + palettes/confetti/patriotic/package.dist.json | 4 +- palettes/confetti/patriotic/package.json | 2 +- palettes/confetti/rainbow/CHANGELOG.md | 8 + palettes/confetti/rainbow/package.dist.json | 4 +- palettes/confetti/rainbow/package.json | 2 +- palettes/confetti/winter/CHANGELOG.md | 8 + palettes/confetti/winter/package.dist.json | 4 +- palettes/confetti/winter/package.json | 2 +- palettes/earth/caustics/CHANGELOG.md | 8 + palettes/earth/caustics/package.dist.json | 4 +- palettes/earth/caustics/package.json | 2 +- palettes/earth/desertSand/CHANGELOG.md | 8 + palettes/earth/desertSand/package.dist.json | 4 +- palettes/earth/desertSand/package.json | 2 +- palettes/earth/mudAndDirt/CHANGELOG.md | 8 + palettes/earth/mudAndDirt/package.dist.json | 4 +- palettes/earth/mudAndDirt/package.json | 2 +- palettes/earth/oilSlick/CHANGELOG.md | 8 + palettes/earth/oilSlick/package.dist.json | 4 +- palettes/earth/oilSlick/package.json | 2 +- palettes/earth/rockAndGravel/CHANGELOG.md | 8 + .../earth/rockAndGravel/package.dist.json | 4 +- palettes/earth/rockAndGravel/package.json | 2 +- palettes/earth/rustAndCorrosion/CHANGELOG.md | 8 + .../earth/rustAndCorrosion/package.dist.json | 4 +- palettes/earth/rustAndCorrosion/package.json | 2 +- palettes/earth/skinAndOrganic/CHANGELOG.md | 8 + .../earth/skinAndOrganic/package.dist.json | 4 +- palettes/earth/skinAndOrganic/package.json | 2 +- palettes/fantasy/bioluminescence/CHANGELOG.md | 8 + .../fantasy/bioluminescence/package.dist.json | 4 +- palettes/fantasy/bioluminescence/package.json | 2 +- palettes/fantasy/bloodAndGore/CHANGELOG.md | 8 + .../fantasy/bloodAndGore/package.dist.json | 4 +- palettes/fantasy/bloodAndGore/package.json | 2 +- palettes/fantasy/fairyDust/CHANGELOG.md | 8 + palettes/fantasy/fairyDust/package.dist.json | 4 +- palettes/fantasy/fairyDust/package.json | 2 +- palettes/fantasy/holyLight/CHANGELOG.md | 8 + palettes/fantasy/holyLight/package.dist.json | 4 +- palettes/fantasy/holyLight/package.json | 2 +- palettes/fantasy/iceMagic/CHANGELOG.md | 8 + palettes/fantasy/iceMagic/package.dist.json | 4 +- palettes/fantasy/iceMagic/package.json | 2 +- palettes/fantasy/iceTriad/CHANGELOG.md | 8 + palettes/fantasy/iceTriad/package.dist.json | 4 +- palettes/fantasy/iceTriad/package.json | 2 +- palettes/fantasy/iris/CHANGELOG.md | 8 + palettes/fantasy/iris/package.dist.json | 4 +- palettes/fantasy/iris/package.json | 2 +- palettes/fantasy/jellyfishGlow/CHANGELOG.md | 8 + .../fantasy/jellyfishGlow/package.dist.json | 4 +- palettes/fantasy/jellyfishGlow/package.json | 2 +- palettes/fantasy/mermaid/CHANGELOG.md | 8 + palettes/fantasy/mermaid/package.dist.json | 4 +- palettes/fantasy/mermaid/package.json | 2 +- palettes/fantasy/poisonAndVenom/CHANGELOG.md | 8 + .../fantasy/poisonAndVenom/package.dist.json | 4 +- palettes/fantasy/poisonAndVenom/package.json | 2 +- palettes/fantasy/unicorn/CHANGELOG.md | 8 + palettes/fantasy/unicorn/package.dist.json | 4 +- palettes/fantasy/unicorn/package.json | 2 +- palettes/fire/candlelight/CHANGELOG.md | 8 + palettes/fire/candlelight/package.dist.json | 4 +- palettes/fire/candlelight/package.json | 2 +- palettes/fire/default/CHANGELOG.md | 8 + palettes/fire/default/package.dist.json | 4 +- palettes/fire/default/package.json | 2 +- palettes/fire/embersAndAsh/CHANGELOG.md | 8 + palettes/fire/embersAndAsh/package.dist.json | 4 +- palettes/fire/embersAndAsh/package.json | 2 +- palettes/fire/fullFireGradient/CHANGELOG.md | 8 + .../fire/fullFireGradient/package.dist.json | 4 +- palettes/fire/fullFireGradient/package.json | 2 +- palettes/fire/lavaLamp/CHANGELOG.md | 8 + palettes/fire/lavaLamp/package.dist.json | 4 +- palettes/fire/lavaLamp/package.json | 2 +- palettes/fire/metalSparks/CHANGELOG.md | 8 + palettes/fire/metalSparks/package.dist.json | 4 +- palettes/fire/metalSparks/package.json | 2 +- palettes/fire/moltenMetal/CHANGELOG.md | 8 + palettes/fire/moltenMetal/package.dist.json | 4 +- palettes/fire/moltenMetal/package.json | 2 +- palettes/fire/seed/CHANGELOG.md | 8 + palettes/fire/seed/package.dist.json | 4 +- palettes/fire/seed/package.json | 2 +- palettes/fireworks/blue/CHANGELOG.md | 8 + palettes/fireworks/blue/package.dist.json | 4 +- palettes/fireworks/blue/package.json | 2 +- palettes/fireworks/blueStroke/CHANGELOG.md | 8 + .../fireworks/blueStroke/package.dist.json | 4 +- palettes/fireworks/blueStroke/package.json | 2 +- palettes/fireworks/copper/CHANGELOG.md | 8 + palettes/fireworks/copper/package.dist.json | 4 +- palettes/fireworks/copper/package.json | 2 +- palettes/fireworks/copperStroke/CHANGELOG.md | 8 + .../fireworks/copperStroke/package.dist.json | 4 +- palettes/fireworks/copperStroke/package.json | 2 +- palettes/fireworks/gold/CHANGELOG.md | 8 + palettes/fireworks/gold/package.dist.json | 4 +- palettes/fireworks/gold/package.json | 2 +- palettes/fireworks/goldStroke/CHANGELOG.md | 8 + .../fireworks/goldStroke/package.dist.json | 4 +- palettes/fireworks/goldStroke/package.json | 2 +- palettes/fireworks/green/CHANGELOG.md | 8 + palettes/fireworks/green/package.dist.json | 4 +- palettes/fireworks/green/package.json | 2 +- palettes/fireworks/greenStroke/CHANGELOG.md | 8 + .../fireworks/greenStroke/package.dist.json | 4 +- palettes/fireworks/greenStroke/package.json | 2 +- palettes/fireworks/ice/CHANGELOG.md | 8 + palettes/fireworks/ice/package.dist.json | 4 +- palettes/fireworks/ice/package.json | 2 +- palettes/fireworks/iceStroke/CHANGELOG.md | 8 + .../fireworks/iceStroke/package.dist.json | 4 +- palettes/fireworks/iceStroke/package.json | 2 +- palettes/fireworks/multicolor/CHANGELOG.md | 8 + .../fireworks/multicolor/package.dist.json | 4 +- palettes/fireworks/multicolor/package.json | 2 +- .../fireworks/multicolorStroke/CHANGELOG.md | 8 + .../multicolorStroke/package.dist.json | 4 +- .../fireworks/multicolorStroke/package.json | 2 +- palettes/fireworks/neon/CHANGELOG.md | 8 + palettes/fireworks/neon/package.dist.json | 4 +- palettes/fireworks/neon/package.json | 2 +- palettes/fireworks/neonStroke/CHANGELOG.md | 8 + .../fireworks/neonStroke/package.dist.json | 4 +- palettes/fireworks/neonStroke/package.json | 2 +- palettes/fireworks/pastel/CHANGELOG.md | 8 + palettes/fireworks/pastel/package.dist.json | 4 +- palettes/fireworks/pastel/package.json | 2 +- palettes/fireworks/pastelStroke/CHANGELOG.md | 8 + .../fireworks/pastelStroke/package.dist.json | 4 +- palettes/fireworks/pastelStroke/package.json | 2 +- palettes/fireworks/purple/CHANGELOG.md | 8 + palettes/fireworks/purple/package.dist.json | 4 +- palettes/fireworks/purple/package.json | 2 +- palettes/fireworks/purpleStroke/CHANGELOG.md | 8 + .../fireworks/purpleStroke/package.dist.json | 4 +- palettes/fireworks/purpleStroke/package.json | 2 +- palettes/fireworks/rainbow/CHANGELOG.md | 8 + palettes/fireworks/rainbow/package.dist.json | 4 +- palettes/fireworks/rainbow/package.json | 2 +- palettes/fireworks/rainbowStroke/CHANGELOG.md | 8 + .../fireworks/rainbowStroke/package.dist.json | 4 +- palettes/fireworks/rainbowStroke/package.json | 2 +- palettes/fireworks/red/CHANGELOG.md | 8 + palettes/fireworks/red/package.dist.json | 4 +- palettes/fireworks/red/package.json | 2 +- palettes/fireworks/redStroke/CHANGELOG.md | 8 + .../fireworks/redStroke/package.dist.json | 4 +- palettes/fireworks/redStroke/package.json | 2 +- palettes/fireworks/silver/CHANGELOG.md | 8 + palettes/fireworks/silver/package.dist.json | 4 +- palettes/fireworks/silver/package.json | 2 +- palettes/fireworks/silverStroke/CHANGELOG.md | 8 + .../fireworks/silverStroke/package.dist.json | 4 +- palettes/fireworks/silverStroke/package.json | 2 +- palettes/food/apple-green/CHANGELOG.md | 8 + palettes/food/apple-green/package.dist.json | 4 +- palettes/food/apple-green/package.json | 2 +- palettes/food/apple-red/CHANGELOG.md | 8 + palettes/food/apple-red/package.dist.json | 4 +- palettes/food/apple-red/package.json | 2 +- palettes/food/apple/CHANGELOG.md | 8 + palettes/food/apple/package.dist.json | 4 +- palettes/food/apple/package.json | 2 +- palettes/food/avocado/CHANGELOG.md | 8 + palettes/food/avocado/package.dist.json | 4 +- palettes/food/avocado/package.json | 2 +- palettes/food/bell-peppers/CHANGELOG.md | 8 + palettes/food/bell-peppers/package.dist.json | 4 +- palettes/food/bell-peppers/package.json | 2 +- palettes/food/berries/CHANGELOG.md | 8 + palettes/food/berries/package.dist.json | 4 +- palettes/food/berries/package.json | 2 +- palettes/food/cherry/CHANGELOG.md | 8 + palettes/food/cherry/package.dist.json | 4 +- palettes/food/cherry/package.json | 2 +- palettes/food/citrus-twist/CHANGELOG.md | 8 + palettes/food/citrus-twist/package.dist.json | 4 +- palettes/food/citrus-twist/package.json | 2 +- palettes/food/gingerbread-house/CHANGELOG.md | 8 + .../food/gingerbread-house/package.dist.json | 4 +- palettes/food/gingerbread-house/package.json | 2 +- palettes/food/grapes/CHANGELOG.md | 8 + palettes/food/grapes/package.dist.json | 4 +- palettes/food/grapes/package.json | 2 +- palettes/food/macaron/CHANGELOG.md | 8 + palettes/food/macaron/package.dist.json | 4 +- palettes/food/macaron/package.json | 2 +- palettes/food/melon/CHANGELOG.md | 8 + palettes/food/melon/package.dist.json | 4 +- palettes/food/melon/package.json | 2 +- palettes/food/pineapple/CHANGELOG.md | 8 + palettes/food/pineapple/package.dist.json | 4 +- palettes/food/pineapple/package.json | 2 +- palettes/food/pizza/CHANGELOG.md | 8 + palettes/food/pizza/package.dist.json | 4 +- palettes/food/pizza/package.json | 2 +- palettes/food/sakura/CHANGELOG.md | 8 + palettes/food/sakura/package.dist.json | 4 +- palettes/food/sakura/package.json | 2 +- palettes/food/salad/CHANGELOG.md | 8 + palettes/food/salad/package.dist.json | 4 +- palettes/food/salad/package.json | 2 +- palettes/food/spice-rack/CHANGELOG.md | 8 + palettes/food/spice-rack/package.dist.json | 4 +- palettes/food/spice-rack/package.json | 2 +- palettes/food/steak/CHANGELOG.md | 8 + palettes/food/steak/package.dist.json | 4 +- palettes/food/steak/package.json | 2 +- palettes/food/sushi/CHANGELOG.md | 8 + palettes/food/sushi/package.dist.json | 4 +- palettes/food/sushi/package.json | 2 +- palettes/food/tropical-fruits/CHANGELOG.md | 8 + .../food/tropical-fruits/package.dist.json | 4 +- palettes/food/tropical-fruits/package.json | 2 +- palettes/food/watermelon/CHANGELOG.md | 8 + palettes/food/watermelon/package.dist.json | 4 +- palettes/food/watermelon/package.json | 2 +- palettes/gaming/minecraft/CHANGELOG.md | 8 + palettes/gaming/minecraft/package.dist.json | 4 +- palettes/gaming/minecraft/package.json | 2 +- palettes/gaming/pacman/CHANGELOG.md | 8 + palettes/gaming/pacman/package.dist.json | 4 +- palettes/gaming/pacman/package.json | 2 +- palettes/gaming/superMarioBros/CHANGELOG.md | 8 + .../gaming/superMarioBros/package.dist.json | 4 +- palettes/gaming/superMarioBros/package.json | 2 +- palettes/gaming/tetris/CHANGELOG.md | 8 + palettes/gaming/tetris/package.dist.json | 4 +- palettes/gaming/tetris/package.json | 2 +- palettes/impact/bulletHit/CHANGELOG.md | 8 + palettes/impact/bulletHit/package.dist.json | 4 +- palettes/impact/bulletHit/package.json | 2 +- palettes/impact/explosionDebris/CHANGELOG.md | 8 + .../impact/explosionDebris/package.dist.json | 4 +- palettes/impact/explosionDebris/package.json | 2 +- palettes/impact/glassBurst/CHANGELOG.md | 8 + palettes/impact/glassBurst/package.dist.json | 4 +- palettes/impact/glassBurst/package.json | 2 +- palettes/impact/meteorImpact/CHANGELOG.md | 8 + .../impact/meteorImpact/package.dist.json | 4 +- palettes/impact/meteorImpact/package.json | 2 +- palettes/impact/nuclearGlow/CHANGELOG.md | 8 + palettes/impact/nuclearGlow/package.dist.json | 4 +- palettes/impact/nuclearGlow/package.json | 2 +- palettes/impact/shockwaveBlast/CHANGELOG.md | 8 + .../impact/shockwaveBlast/package.dist.json | 4 +- palettes/impact/shockwaveBlast/package.json | 2 +- palettes/impact/splatterDark/CHANGELOG.md | 8 + .../impact/splatterDark/package.dist.json | 4 +- palettes/impact/splatterDark/package.json | 2 +- palettes/monochromatic/blues/CHANGELOG.md | 8 + .../monochromatic/blues/package.dist.json | 4 +- palettes/monochromatic/blues/package.json | 2 +- palettes/monochromatic/brown/CHANGELOG.md | 8 + .../monochromatic/brown/package.dist.json | 4 +- palettes/monochromatic/brown/package.json | 2 +- palettes/monochromatic/cyan/CHANGELOG.md | 8 + palettes/monochromatic/cyan/package.dist.json | 4 +- palettes/monochromatic/cyan/package.json | 2 +- palettes/monochromatic/gold/CHANGELOG.md | 8 + palettes/monochromatic/gold/package.dist.json | 4 +- palettes/monochromatic/gold/package.json | 2 +- palettes/monochromatic/greens/CHANGELOG.md | 8 + .../monochromatic/greens/package.dist.json | 4 +- palettes/monochromatic/greens/package.json | 2 +- palettes/monochromatic/noir/CHANGELOG.md | 8 + palettes/monochromatic/noir/package.dist.json | 4 +- palettes/monochromatic/noir/package.json | 2 +- palettes/monochromatic/oranges/CHANGELOG.md | 8 + .../monochromatic/oranges/package.dist.json | 4 +- palettes/monochromatic/oranges/package.json | 2 +- palettes/monochromatic/pinks/CHANGELOG.md | 8 + .../monochromatic/pinks/package.dist.json | 4 +- palettes/monochromatic/pinks/package.json | 2 +- palettes/monochromatic/purples/CHANGELOG.md | 8 + .../monochromatic/purples/package.dist.json | 4 +- palettes/monochromatic/purples/package.json | 2 +- palettes/monochromatic/reds/CHANGELOG.md | 8 + palettes/monochromatic/reds/package.dist.json | 4 +- palettes/monochromatic/reds/package.json | 2 +- palettes/monochromatic/silver/CHANGELOG.md | 8 + .../monochromatic/silver/package.dist.json | 4 +- palettes/monochromatic/silver/package.json | 2 +- palettes/monochromatic/teal/CHANGELOG.md | 8 + palettes/monochromatic/teal/package.dist.json | 4 +- palettes/monochromatic/teal/package.json | 2 +- palettes/monochromatic/white/CHANGELOG.md | 8 + .../monochromatic/white/package.dist.json | 4 +- palettes/monochromatic/white/package.json | 2 +- palettes/monochromatic/yellows/CHANGELOG.md | 8 + .../monochromatic/yellows/package.dist.json | 4 +- palettes/monochromatic/yellows/package.json | 2 +- palettes/nature/autumnLeaves/CHANGELOG.md | 8 + .../nature/autumnLeaves/package.dist.json | 4 +- palettes/nature/autumnLeaves/package.json | 2 +- palettes/nature/cherryBlossom/CHANGELOG.md | 8 + .../nature/cherryBlossom/package.dist.json | 4 +- palettes/nature/cherryBlossom/package.json | 2 +- palettes/nature/dandelionSeeds/CHANGELOG.md | 8 + .../nature/dandelionSeeds/package.dist.json | 4 +- palettes/nature/dandelionSeeds/package.json | 2 +- palettes/nature/earthyNature/CHANGELOG.md | 8 + .../nature/earthyNature/package.dist.json | 4 +- palettes/nature/earthyNature/package.json | 2 +- palettes/nature/fireflies/CHANGELOG.md | 8 + palettes/nature/fireflies/package.dist.json | 4 +- palettes/nature/fireflies/package.json | 2 +- palettes/nature/forestCanopy/CHANGELOG.md | 8 + .../nature/forestCanopy/package.dist.json | 4 +- palettes/nature/forestCanopy/package.json | 2 +- palettes/nature/pollenAndSpores/CHANGELOG.md | 8 + .../nature/pollenAndSpores/package.dist.json | 4 +- palettes/nature/pollenAndSpores/package.json | 2 +- palettes/nature/snowfall/CHANGELOG.md | 8 + palettes/nature/snowfall/package.dist.json | 4 +- palettes/nature/snowfall/package.json | 2 +- palettes/nature/springBloom/CHANGELOG.md | 8 + palettes/nature/springBloom/package.dist.json | 4 +- palettes/nature/springBloom/package.json | 2 +- palettes/optics/bokehCold/CHANGELOG.md | 8 + palettes/optics/bokehCold/package.dist.json | 4 +- palettes/optics/bokehCold/package.json | 2 +- palettes/optics/bokehGold/CHANGELOG.md | 8 + palettes/optics/bokehGold/package.dist.json | 4 +- palettes/optics/bokehGold/package.json | 2 +- palettes/optics/bokehPastel/CHANGELOG.md | 8 + palettes/optics/bokehPastel/package.dist.json | 4 +- palettes/optics/bokehPastel/package.json | 2 +- .../optics/holographicShimmer/CHANGELOG.md | 8 + .../holographicShimmer/package.dist.json | 4 +- .../optics/holographicShimmer/package.json | 2 +- palettes/optics/laserScatter/CHANGELOG.md | 8 + .../optics/laserScatter/package.dist.json | 4 +- palettes/optics/laserScatter/package.json | 2 +- palettes/optics/lensFlareDust/CHANGELOG.md | 8 + .../optics/lensFlareDust/package.dist.json | 4 +- palettes/optics/lensFlareDust/package.json | 2 +- palettes/optics/prismSpectrum/CHANGELOG.md | 8 + .../optics/prismSpectrum/package.dist.json | 4 +- palettes/optics/prismSpectrum/package.json | 2 +- palettes/pastel/cool/CHANGELOG.md | 8 + palettes/pastel/cool/package.dist.json | 4 +- palettes/pastel/cool/package.json | 2 +- palettes/pastel/dream/CHANGELOG.md | 8 + palettes/pastel/dream/package.dist.json | 4 +- palettes/pastel/dream/package.json | 2 +- palettes/pastel/mint/CHANGELOG.md | 8 + palettes/pastel/mint/package.dist.json | 4 +- palettes/pastel/mint/package.json | 2 +- palettes/pastel/sunset/CHANGELOG.md | 8 + palettes/pastel/sunset/package.dist.json | 4 +- palettes/pastel/sunset/package.json | 2 +- palettes/pastel/warm/CHANGELOG.md | 8 + palettes/pastel/warm/package.dist.json | 4 +- palettes/pastel/warm/package.json | 2 +- palettes/space/auroraBorealis/CHANGELOG.md | 8 + .../space/auroraBorealis/package.dist.json | 4 +- palettes/space/auroraBorealis/package.json | 2 +- palettes/space/cosmicRadiation/CHANGELOG.md | 8 + .../space/cosmicRadiation/package.dist.json | 4 +- palettes/space/cosmicRadiation/package.json | 2 +- palettes/space/darkMatter/CHANGELOG.md | 8 + palettes/space/darkMatter/package.dist.json | 4 +- palettes/space/darkMatter/package.json | 2 +- palettes/space/galaxyDust/CHANGELOG.md | 8 + palettes/space/galaxyDust/package.dist.json | 4 +- palettes/space/galaxyDust/package.json | 2 +- palettes/space/nebula/CHANGELOG.md | 8 + palettes/space/nebula/package.dist.json | 4 +- palettes/space/nebula/package.json | 2 +- palettes/space/portal/CHANGELOG.md | 8 + palettes/space/portal/package.dist.json | 4 +- palettes/space/portal/package.json | 2 +- palettes/space/pulsar/CHANGELOG.md | 8 + palettes/space/pulsar/package.dist.json | 4 +- palettes/space/pulsar/package.json | 2 +- palettes/space/solarWind/CHANGELOG.md | 8 + palettes/space/solarWind/package.dist.json | 4 +- palettes/space/solarWind/package.json | 2 +- palettes/space/supernova/CHANGELOG.md | 8 + palettes/space/supernova/package.dist.json | 4 +- palettes/space/supernova/package.json | 2 +- palettes/spectrum/acidPair/CHANGELOG.md | 8 + palettes/spectrum/acidPair/package.dist.json | 4 +- palettes/spectrum/acidPair/package.json | 2 +- palettes/spectrum/cmySecondaries/CHANGELOG.md | 8 + .../spectrum/cmySecondaries/package.dist.json | 4 +- palettes/spectrum/cmySecondaries/package.json | 2 +- .../spectrum/dualityBlueYellow/CHANGELOG.md | 8 + .../dualityBlueYellow/package.dist.json | 4 +- .../spectrum/dualityBlueYellow/package.json | 2 +- .../spectrum/dualityGreenMagenta/CHANGELOG.md | 8 + .../dualityGreenMagenta/package.dist.json | 4 +- .../spectrum/dualityGreenMagenta/package.json | 2 +- palettes/spectrum/dualityRedCyan/CHANGELOG.md | 8 + .../spectrum/dualityRedCyan/package.dist.json | 4 +- palettes/spectrum/dualityRedCyan/package.json | 2 +- palettes/spectrum/fullSpectrum/CHANGELOG.md | 8 + .../spectrum/fullSpectrum/package.dist.json | 4 +- palettes/spectrum/fullSpectrum/package.json | 2 +- .../spectrum/okabeItoAccessible/CHANGELOG.md | 8 + .../okabeItoAccessible/package.dist.json | 4 +- .../spectrum/okabeItoAccessible/package.json | 2 +- palettes/spectrum/prismScatter/CHANGELOG.md | 8 + .../spectrum/prismScatter/package.dist.json | 4 +- palettes/spectrum/prismScatter/package.json | 2 +- palettes/spectrum/rainbow/CHANGELOG.md | 8 + palettes/spectrum/rainbow/package.dist.json | 4 +- palettes/spectrum/rainbow/package.json | 2 +- palettes/spectrum/rgbPrimaries/CHANGELOG.md | 8 + .../spectrum/rgbPrimaries/package.dist.json | 4 +- palettes/spectrum/rgbPrimaries/package.json | 2 +- palettes/tech/crtPhosphor/CHANGELOG.md | 8 + palettes/tech/crtPhosphor/package.dist.json | 4 +- palettes/tech/crtPhosphor/package.json | 2 +- palettes/tech/glitch/CHANGELOG.md | 8 + palettes/tech/glitch/package.dist.json | 4 +- palettes/tech/glitch/package.json | 2 +- palettes/tech/hologram/CHANGELOG.md | 8 + palettes/tech/hologram/package.dist.json | 4 +- palettes/tech/hologram/package.json | 2 +- palettes/tech/lofiWarm/CHANGELOG.md | 8 + palettes/tech/lofiWarm/package.dist.json | 4 +- palettes/tech/lofiWarm/package.json | 2 +- palettes/tech/matrixRain/CHANGELOG.md | 8 + palettes/tech/matrixRain/package.dist.json | 4 +- palettes/tech/matrixRain/package.json | 2 +- palettes/tech/neonCity/CHANGELOG.md | 8 + palettes/tech/neonCity/package.dist.json | 4 +- palettes/tech/neonCity/package.json | 2 +- palettes/tech/networkNodes/CHANGELOG.md | 8 + palettes/tech/networkNodes/package.dist.json | 4 +- palettes/tech/networkNodes/package.json | 2 +- palettes/tech/plasmaArc/CHANGELOG.md | 8 + palettes/tech/plasmaArc/package.dist.json | 4 +- palettes/tech/plasmaArc/package.json | 2 +- palettes/tech/vaporwave/CHANGELOG.md | 8 + palettes/tech/vaporwave/package.dist.json | 4 +- palettes/tech/vaporwave/package.json | 2 +- palettes/vibrant/default/CHANGELOG.md | 8 + palettes/vibrant/default/package.dist.json | 4 +- palettes/vibrant/default/package.json | 2 +- palettes/vibrant/electric/CHANGELOG.md | 8 + palettes/vibrant/electric/package.dist.json | 4 +- palettes/vibrant/electric/package.json | 2 +- palettes/vibrant/neon/CHANGELOG.md | 8 + palettes/vibrant/neon/package.dist.json | 4 +- palettes/vibrant/neon/package.json | 2 +- palettes/vibrant/retro/CHANGELOG.md | 8 + palettes/vibrant/retro/package.dist.json | 4 +- palettes/vibrant/retro/package.json | 2 +- palettes/vibrant/tropical/CHANGELOG.md | 8 + palettes/vibrant/tropical/package.dist.json | 4 +- palettes/vibrant/tropical/package.json | 2 +- palettes/water/deepOcean/CHANGELOG.md | 8 + palettes/water/deepOcean/package.dist.json | 4 +- palettes/water/deepOcean/package.json | 2 +- palettes/water/default/CHANGELOG.md | 8 + palettes/water/default/package.dist.json | 4 +- palettes/water/default/package.json | 2 +- palettes/water/foamAndBubbles/CHANGELOG.md | 8 + .../water/foamAndBubbles/package.dist.json | 4 +- palettes/water/foamAndBubbles/package.json | 2 +- palettes/water/fogCoastal/CHANGELOG.md | 8 + palettes/water/fogCoastal/package.dist.json | 4 +- palettes/water/fogCoastal/package.json | 2 +- palettes/water/inkInWater/CHANGELOG.md | 8 + palettes/water/inkInWater/package.dist.json | 4 +- palettes/water/inkInWater/package.json | 2 +- palettes/water/lagoon/CHANGELOG.md | 8 + palettes/water/lagoon/package.dist.json | 4 +- palettes/water/lagoon/package.json | 2 +- palettes/water/rain/CHANGELOG.md | 8 + palettes/water/rain/package.dist.json | 4 +- palettes/water/rain/package.json | 2 +- palettes/water/risingBubbles/CHANGELOG.md | 8 + .../water/risingBubbles/package.dist.json | 4 +- palettes/water/risingBubbles/package.json | 2 +- palettes/water/splash/CHANGELOG.md | 8 + palettes/water/splash/package.dist.json | 4 +- palettes/water/splash/package.json | 2 +- paths/branches/CHANGELOG.md | 8 + paths/branches/package.dist.json | 6 +- paths/branches/package.json | 2 +- paths/brownian/CHANGELOG.md | 8 + paths/brownian/package.dist.json | 6 +- paths/brownian/package.json | 2 +- paths/curlNoise/CHANGELOG.md | 8 + paths/curlNoise/package.dist.json | 8 +- paths/curlNoise/package.json | 2 +- paths/curves/CHANGELOG.md | 8 + paths/curves/package.dist.json | 6 +- paths/curves/package.json | 2 +- paths/fractalNoise/CHANGELOG.md | 8 + paths/fractalNoise/package.dist.json | 10 +- paths/fractalNoise/package.json | 2 +- paths/grid/CHANGELOG.md | 8 + paths/grid/package.dist.json | 6 +- paths/grid/package.json | 2 +- paths/levy/CHANGELOG.md | 8 + paths/levy/package.dist.json | 6 +- paths/levy/package.json | 2 +- paths/perlinNoise/CHANGELOG.md | 8 + paths/perlinNoise/package.dist.json | 10 +- paths/perlinNoise/package.json | 2 +- paths/polygon/CHANGELOG.md | 8 + paths/polygon/package.dist.json | 6 +- paths/polygon/package.json | 2 +- paths/random/CHANGELOG.md | 8 + paths/random/package.dist.json | 6 +- paths/random/package.json | 2 +- paths/simplexNoise/CHANGELOG.md | 8 + paths/simplexNoise/package.dist.json | 10 +- paths/simplexNoise/package.json | 2 +- paths/spiral/CHANGELOG.md | 8 + paths/spiral/package.dist.json | 6 +- paths/spiral/package.json | 2 +- paths/svg/CHANGELOG.md | 8 + paths/svg/package.dist.json | 6 +- paths/svg/package.json | 2 +- paths/zigzag/CHANGELOG.md | 8 + paths/zigzag/package.dist.json | 6 +- paths/zigzag/package.json | 2 +- plugins/absorbers/CHANGELOG.md | 8 + plugins/absorbers/package.dist.json | 6 +- plugins/absorbers/package.json | 2 +- plugins/backgroundMask/CHANGELOG.md | 8 + plugins/backgroundMask/package.dist.json | 4 +- plugins/backgroundMask/package.json | 2 +- plugins/blend/CHANGELOG.md | 8 + plugins/blend/package.dist.json | 4 +- plugins/blend/package.json | 2 +- plugins/canvasMask/CHANGELOG.md | 8 + plugins/canvasMask/package.dist.json | 6 +- plugins/canvasMask/package.json | 2 +- plugins/colors/hex/CHANGELOG.md | 8 + plugins/colors/hex/package.dist.json | 4 +- plugins/colors/hex/package.json | 2 +- plugins/colors/hsl/CHANGELOG.md | 8 + plugins/colors/hsl/package.dist.json | 4 +- plugins/colors/hsl/package.json | 2 +- plugins/colors/hsv/CHANGELOG.md | 8 + plugins/colors/hsv/package.dist.json | 4 +- plugins/colors/hsv/package.json | 2 +- plugins/colors/hwb/CHANGELOG.md | 8 + plugins/colors/hwb/package.dist.json | 4 +- plugins/colors/hwb/package.json | 2 +- plugins/colors/lab/CHANGELOG.md | 8 + plugins/colors/lab/package.dist.json | 4 +- plugins/colors/lab/package.json | 2 +- plugins/colors/lch/CHANGELOG.md | 8 + plugins/colors/lch/package.dist.json | 4 +- plugins/colors/lch/package.json | 2 +- plugins/colors/named/CHANGELOG.md | 8 + plugins/colors/named/package.dist.json | 4 +- plugins/colors/named/package.json | 2 +- plugins/colors/oklab/CHANGELOG.md | 8 + plugins/colors/oklab/package.dist.json | 4 +- plugins/colors/oklab/package.json | 2 +- plugins/colors/oklch/CHANGELOG.md | 8 + plugins/colors/oklch/package.dist.json | 4 +- plugins/colors/oklch/package.json | 2 +- plugins/colors/rgb/CHANGELOG.md | 8 + plugins/colors/rgb/package.dist.json | 4 +- plugins/colors/rgb/package.json | 2 +- plugins/easings/back/CHANGELOG.md | 8 + plugins/easings/back/package.dist.json | 4 +- plugins/easings/back/package.json | 2 +- plugins/easings/bounce/CHANGELOG.md | 8 + plugins/easings/bounce/package.dist.json | 4 +- plugins/easings/bounce/package.json | 2 +- plugins/easings/circ/CHANGELOG.md | 8 + plugins/easings/circ/package.dist.json | 4 +- plugins/easings/circ/package.json | 2 +- plugins/easings/cubic/CHANGELOG.md | 8 + plugins/easings/cubic/package.dist.json | 4 +- plugins/easings/cubic/package.json | 2 +- plugins/easings/elastic/CHANGELOG.md | 8 + plugins/easings/elastic/package.dist.json | 4 +- plugins/easings/elastic/package.json | 2 +- plugins/easings/expo/CHANGELOG.md | 8 + plugins/easings/expo/package.dist.json | 4 +- plugins/easings/expo/package.json | 2 +- plugins/easings/gaussian/CHANGELOG.md | 8 + plugins/easings/gaussian/package.dist.json | 4 +- plugins/easings/gaussian/package.json | 2 +- plugins/easings/linear/CHANGELOG.md | 8 + plugins/easings/linear/package.dist.json | 4 +- plugins/easings/linear/package.json | 2 +- plugins/easings/quad/CHANGELOG.md | 8 + plugins/easings/quad/package.dist.json | 4 +- plugins/easings/quad/package.json | 2 +- plugins/easings/quart/CHANGELOG.md | 8 + plugins/easings/quart/package.dist.json | 4 +- plugins/easings/quart/package.json | 2 +- plugins/easings/quint/CHANGELOG.md | 8 + plugins/easings/quint/package.dist.json | 4 +- plugins/easings/quint/package.json | 2 +- plugins/easings/sigmoid/CHANGELOG.md | 8 + plugins/easings/sigmoid/package.dist.json | 4 +- plugins/easings/sigmoid/package.json | 2 +- plugins/easings/sine/CHANGELOG.md | 8 + plugins/easings/sine/package.dist.json | 4 +- plugins/easings/sine/package.json | 2 +- plugins/easings/smoothstep/CHANGELOG.md | 8 + plugins/easings/smoothstep/package.dist.json | 4 +- plugins/easings/smoothstep/package.json | 2 +- plugins/emitters/CHANGELOG.md | 8 + plugins/emitters/package.dist.json | 6 +- plugins/emitters/package.json | 2 +- plugins/emittersShapes/canvas/CHANGELOG.md | 8 + .../emittersShapes/canvas/package.dist.json | 8 +- plugins/emittersShapes/canvas/package.json | 2 +- plugins/emittersShapes/circle/CHANGELOG.md | 8 + .../emittersShapes/circle/package.dist.json | 6 +- plugins/emittersShapes/circle/package.json | 2 +- plugins/emittersShapes/path/CHANGELOG.md | 8 + plugins/emittersShapes/path/package.dist.json | 6 +- plugins/emittersShapes/path/package.json | 2 +- plugins/emittersShapes/polygon/CHANGELOG.md | 8 + .../emittersShapes/polygon/package.dist.json | 6 +- plugins/emittersShapes/polygon/package.json | 2 +- plugins/emittersShapes/square/CHANGELOG.md | 8 + .../emittersShapes/square/package.dist.json | 6 +- plugins/emittersShapes/square/package.json | 2 +- plugins/exports/image/CHANGELOG.md | 8 + plugins/exports/image/package.dist.json | 4 +- plugins/exports/image/package.json | 2 +- plugins/exports/json/CHANGELOG.md | 8 + plugins/exports/json/package.dist.json | 4 +- plugins/exports/json/package.json | 2 +- plugins/exports/video/CHANGELOG.md | 8 + plugins/exports/video/package.dist.json | 4 +- plugins/exports/video/package.json | 2 +- plugins/infection/CHANGELOG.md | 8 + plugins/infection/package.dist.json | 6 +- plugins/infection/package.json | 2 +- plugins/interactivity/CHANGELOG.md | 8 + plugins/interactivity/package.dist.json | 4 +- plugins/interactivity/package.json | 2 +- plugins/manualParticles/CHANGELOG.md | 8 + plugins/manualParticles/package.dist.json | 4 +- plugins/manualParticles/package.json | 2 +- plugins/motion/CHANGELOG.md | 8 + plugins/motion/package.dist.json | 4 +- plugins/motion/package.json | 2 +- plugins/move/CHANGELOG.md | 8 + plugins/move/package.dist.json | 4 +- plugins/move/package.json | 2 +- plugins/poisson/CHANGELOG.md | 8 + plugins/poisson/package.dist.json | 4 +- plugins/poisson/package.json | 2 +- plugins/polygonMask/CHANGELOG.md | 8 + plugins/polygonMask/package.dist.json | 4 +- plugins/polygonMask/package.json | 2 +- plugins/responsive/CHANGELOG.md | 8 + plugins/responsive/package.dist.json | 4 +- plugins/responsive/package.json | 2 +- plugins/sounds/CHANGELOG.md | 8 + plugins/sounds/package.dist.json | 4 +- plugins/sounds/package.json | 2 +- plugins/themes/CHANGELOG.md | 8 + plugins/themes/package.dist.json | 4 +- plugins/themes/package.json | 2 +- plugins/trail/CHANGELOG.md | 8 + plugins/trail/package.dist.json | 4 +- plugins/trail/package.json | 2 +- plugins/zoom/CHANGELOG.md | 8 + plugins/zoom/package.dist.json | 4 +- plugins/zoom/package.json | 2 +- presets/ambient/CHANGELOG.md | 11 ++ presets/ambient/package.dist.json | 6 +- presets/ambient/package.json | 2 +- presets/bigCircles/CHANGELOG.md | 11 ++ presets/bigCircles/package.dist.json | 6 +- presets/bigCircles/package.json | 2 +- presets/bubbles/CHANGELOG.md | 11 ++ presets/bubbles/package.dist.json | 8 +- presets/bubbles/package.json | 2 +- presets/confetti/CHANGELOG.md | 11 ++ presets/confetti/package.dist.json | 24 +-- presets/confetti/package.json | 2 +- presets/confettiCannon/CHANGELOG.md | 11 ++ presets/confettiCannon/package.dist.json | 26 +-- presets/confettiCannon/package.json | 2 +- presets/confettiExplosions/CHANGELOG.md | 11 ++ presets/confettiExplosions/package.dist.json | 22 +-- presets/confettiExplosions/package.json | 2 +- presets/confettiFalling/CHANGELOG.md | 11 ++ presets/confettiFalling/package.dist.json | 20 +-- presets/confettiFalling/package.json | 2 +- presets/confettiParade/CHANGELOG.md | 11 ++ presets/confettiParade/package.dist.json | 24 +-- presets/confettiParade/package.json | 2 +- presets/fire/CHANGELOG.md | 11 ++ presets/fire/package.dist.json | 10 +- presets/fire/package.json | 2 +- presets/firefly/CHANGELOG.md | 11 ++ presets/firefly/package.dist.json | 12 +- presets/firefly/package.json | 2 +- presets/fireworks/CHANGELOG.md | 11 ++ presets/fireworks/package.dist.json | 22 +-- presets/fireworks/package.json | 2 +- presets/fountain/CHANGELOG.md | 11 ++ presets/fountain/package.dist.json | 12 +- presets/fountain/package.json | 2 +- presets/hyperspace/CHANGELOG.md | 11 ++ presets/hyperspace/package.dist.json | 14 +- presets/hyperspace/package.json | 2 +- presets/links/CHANGELOG.md | 11 ++ presets/links/package.dist.json | 10 +- presets/links/package.json | 2 +- presets/matrix/CHANGELOG.md | 8 + presets/matrix/package.dist.json | 14 +- presets/matrix/package.json | 2 +- presets/meteors/CHANGELOG.md | 11 ++ presets/meteors/package.dist.json | 12 +- presets/meteors/package.json | 2 +- presets/party/CHANGELOG.md | 11 ++ presets/party/package.dist.json | 26 +-- presets/party/package.json | 2 +- presets/seaAnemone/CHANGELOG.md | 11 ++ presets/seaAnemone/package.dist.json | 14 +- presets/seaAnemone/package.json | 2 +- presets/snow/CHANGELOG.md | 11 ++ presets/snow/package.dist.json | 10 +- presets/snow/package.json | 2 +- presets/squares/CHANGELOG.md | 11 ++ presets/squares/package.dist.json | 16 +- presets/squares/package.json | 2 +- presets/stars/CHANGELOG.md | 11 ++ presets/stars/package.dist.json | 6 +- presets/stars/package.json | 2 +- presets/triangles/CHANGELOG.md | 11 ++ presets/triangles/package.dist.json | 10 +- presets/triangles/package.json | 2 +- shapes/arrow/CHANGELOG.md | 8 + shapes/arrow/package.dist.json | 4 +- shapes/arrow/package.json | 2 +- shapes/cards/CHANGELOG.md | 8 + shapes/cards/package.dist.json | 6 +- shapes/cards/package.json | 2 +- shapes/circle/CHANGELOG.md | 8 + shapes/circle/package.dist.json | 4 +- shapes/circle/package.json | 2 +- shapes/cog/CHANGELOG.md | 8 + shapes/cog/package.dist.json | 4 +- shapes/cog/package.json | 2 +- shapes/emoji/CHANGELOG.md | 8 + shapes/emoji/package.dist.json | 6 +- shapes/emoji/package.json | 2 +- shapes/gif/CHANGELOG.md | 8 + shapes/gif/package.dist.json | 4 +- shapes/gif/package.json | 2 +- shapes/heart/CHANGELOG.md | 8 + shapes/heart/package.dist.json | 4 +- shapes/heart/package.json | 2 +- shapes/image/CHANGELOG.md | 8 + shapes/image/package.dist.json | 4 +- shapes/image/package.json | 2 +- shapes/infinity/CHANGELOG.md | 8 + shapes/infinity/package.dist.json | 4 +- shapes/infinity/package.json | 2 +- shapes/line/CHANGELOG.md | 8 + shapes/line/package.dist.json | 4 +- shapes/line/package.json | 2 +- shapes/matrix/CHANGELOG.md | 8 + shapes/matrix/package.dist.json | 4 +- shapes/matrix/package.json | 2 +- shapes/path/CHANGELOG.md | 8 + shapes/path/package.dist.json | 6 +- shapes/path/package.json | 2 +- shapes/polygon/CHANGELOG.md | 8 + shapes/polygon/package.dist.json | 4 +- shapes/polygon/package.json | 2 +- shapes/ribbon/CHANGELOG.md | 8 + shapes/ribbon/package.dist.json | 4 +- shapes/ribbon/package.json | 2 +- shapes/rounded-polygon/CHANGELOG.md | 8 + shapes/rounded-polygon/package.dist.json | 4 +- shapes/rounded-polygon/package.json | 2 +- shapes/rounded-rect/CHANGELOG.md | 8 + shapes/rounded-rect/package.dist.json | 4 +- shapes/rounded-rect/package.json | 2 +- shapes/spiral/CHANGELOG.md | 8 + shapes/spiral/package.dist.json | 4 +- shapes/spiral/package.json | 2 +- shapes/square/CHANGELOG.md | 8 + shapes/square/package.dist.json | 4 +- shapes/square/package.json | 2 +- shapes/squircle/CHANGELOG.md | 8 + shapes/squircle/package.dist.json | 4 +- shapes/squircle/package.json | 2 +- shapes/star/CHANGELOG.md | 8 + shapes/star/package.dist.json | 4 +- shapes/star/package.json | 2 +- shapes/text/CHANGELOG.md | 8 + shapes/text/package.dist.json | 6 +- shapes/text/package.json | 2 +- templates/404/CHANGELOG.md | 8 + templates/404/package.json | 2 +- templates/confetti/CHANGELOG.md | 8 + templates/confetti/package.json | 2 +- templates/landing/CHANGELOG.md | 8 + templates/landing/package.json | 2 +- templates/login/CHANGELOG.md | 8 + templates/login/package.json | 2 +- templates/particles/CHANGELOG.md | 8 + templates/particles/package.json | 2 +- templates/portfolio/CHANGELOG.md | 8 + templates/portfolio/package.json | 2 +- templates/react-ts/CHANGELOG.md | 8 + templates/react-ts/package.json | 2 +- templates/react-ts/template.json | 6 +- templates/react/CHANGELOG.md | 8 + templates/react/package.json | 2 +- templates/react/template.json | 6 +- templates/ribbons/CHANGELOG.md | 8 + templates/ribbons/package.json | 2 +- templates/scaffold/CHANGELOG.md | 8 + templates/scaffold/package.json | 2 +- templates/tictactoe/CHANGELOG.md | 8 + templates/tictactoe/package.json | 2 +- updaters/destroy/CHANGELOG.md | 8 + updaters/destroy/package.dist.json | 4 +- updaters/destroy/package.json | 2 +- updaters/gradient/CHANGELOG.md | 8 + updaters/gradient/package.dist.json | 6 +- updaters/gradient/package.json | 2 +- updaters/life/CHANGELOG.md | 8 + updaters/life/package.dist.json | 4 +- updaters/life/package.json | 2 +- updaters/opacity/CHANGELOG.md | 8 + updaters/opacity/package.dist.json | 6 +- updaters/opacity/package.json | 2 +- updaters/orbit/CHANGELOG.md | 8 + updaters/orbit/package.dist.json | 4 +- updaters/orbit/package.json | 2 +- updaters/outModes/CHANGELOG.md | 8 + updaters/outModes/package.dist.json | 4 +- updaters/outModes/package.json | 2 +- updaters/paint/CHANGELOG.md | 8 + updaters/paint/package.dist.json | 4 +- updaters/paint/package.json | 2 +- updaters/roll/CHANGELOG.md | 8 + updaters/roll/package.dist.json | 4 +- updaters/roll/package.json | 2 +- updaters/rotate/CHANGELOG.md | 8 + updaters/rotate/package.dist.json | 6 +- updaters/rotate/package.json | 2 +- updaters/size/CHANGELOG.md | 8 + updaters/size/package.dist.json | 6 +- updaters/size/package.json | 2 +- updaters/tilt/CHANGELOG.md | 8 + updaters/tilt/package.dist.json | 6 +- updaters/tilt/package.json | 2 +- updaters/twinkle/CHANGELOG.md | 8 + updaters/twinkle/package.dist.json | 4 +- updaters/twinkle/package.json | 2 +- updaters/wobble/CHANGELOG.md | 8 + updaters/wobble/package.dist.json | 4 +- updaters/wobble/package.json | 2 +- utils/animationUtils/CHANGELOG.md | 8 + utils/animationUtils/package.dist.json | 4 +- utils/animationUtils/package.json | 2 +- utils/canvasUtils/CHANGELOG.md | 8 + utils/canvasUtils/package.dist.json | 4 +- utils/canvasUtils/package.json | 2 +- utils/configs/CHANGELOG.md | 8 + utils/configs/package.dist.json | 4 +- utils/configs/package.json | 2 +- utils/fractalNoise/CHANGELOG.md | 8 + utils/fractalNoise/package.dist.json | 4 +- utils/fractalNoise/package.json | 2 +- utils/noiseField/CHANGELOG.md | 8 + utils/noiseField/package.dist.json | 6 +- utils/noiseField/package.json | 2 +- utils/pathUtils/CHANGELOG.md | 8 + utils/pathUtils/package.dist.json | 4 +- utils/pathUtils/package.json | 2 +- utils/perlinNoise/CHANGELOG.md | 8 + utils/perlinNoise/package.dist.json | 2 +- utils/perlinNoise/package.json | 2 +- utils/simplexNoise/CHANGELOG.md | 8 + utils/simplexNoise/package.dist.json | 2 +- utils/simplexNoise/package.json | 2 +- utils/smoothValueNoise/CHANGELOG.md | 8 + utils/smoothValueNoise/package.dist.json | 2 +- utils/smoothValueNoise/package.json | 2 +- utils/tests/CHANGELOG.md | 8 + utils/tests/package.json | 2 +- websites/confetti/CHANGELOG.md | 8 + websites/confetti/package.json | 2 +- websites/ribbons/CHANGELOG.md | 8 + websites/ribbons/package.json | 2 +- websites/website/CHANGELOG.md | 11 ++ websites/website/package.json | 2 +- wrappers/angular-confetti/CHANGELOG.md | 8 + wrappers/angular-confetti/package.json | 2 +- .../projects/ng-confetti/package.dist.json | 2 +- .../projects/ng-confetti/package.json | 6 +- wrappers/angular-fireworks/CHANGELOG.md | 8 + wrappers/angular-fireworks/package.json | 2 +- .../projects/ng-fireworks/package.dist.json | 2 +- .../projects/ng-fireworks/package.json | 6 +- wrappers/angular/CHANGELOG.md | 8 + wrappers/angular/package.json | 2 +- .../projects/ng-particles/package.dist.json | 2 +- .../projects/ng-particles/package.json | 4 +- wrappers/astro/CHANGELOG.md | 11 ++ wrappers/astro/package.dist.json | 2 +- wrappers/astro/package.json | 2 +- wrappers/ember/CHANGELOG.md | 8 + wrappers/ember/package.dist.json | 2 +- wrappers/ember/package.json | 2 +- wrappers/inferno/CHANGELOG.md | 8 + wrappers/inferno/package.dist.json | 2 +- wrappers/inferno/package.json | 2 +- wrappers/jquery/CHANGELOG.md | 8 + wrappers/jquery/package.dist.json | 2 +- wrappers/jquery/package.json | 2 +- wrappers/lit/CHANGELOG.md | 8 + wrappers/lit/package.json | 2 +- wrappers/nextjs/CHANGELOG.md | 8 + wrappers/nextjs/package.dist.json | 2 +- wrappers/nextjs/package.json | 2 +- wrappers/nuxt2/CHANGELOG.md | 8 + wrappers/nuxt2/package.dist.json | 2 +- wrappers/nuxt2/package.json | 2 +- wrappers/nuxt3/CHANGELOG.md | 8 + wrappers/nuxt3/package.dist.json | 2 +- wrappers/nuxt3/package.json | 2 +- wrappers/nuxt4/CHANGELOG.md | 8 + wrappers/nuxt4/package.dist.json | 2 +- wrappers/nuxt4/package.json | 2 +- wrappers/preact/CHANGELOG.md | 8 + wrappers/preact/package.json | 2 +- wrappers/qwik/CHANGELOG.md | 8 + wrappers/qwik/package.json | 2 +- wrappers/react/CHANGELOG.md | 11 ++ wrappers/react/package.dist.json | 2 +- wrappers/react/package.json | 2 +- wrappers/riot/CHANGELOG.md | 8 + wrappers/riot/package.dist.json | 2 +- wrappers/riot/package.json | 2 +- wrappers/solid/CHANGELOG.md | 8 + wrappers/solid/package.dist.json | 2 +- wrappers/solid/package.json | 2 +- wrappers/stencil/CHANGELOG.md | 8 + wrappers/stencil/package.dist.json | 2 +- wrappers/stencil/package.json | 2 +- wrappers/svelte/CHANGELOG.md | 8 + wrappers/svelte/package.dist.json | 2 +- wrappers/svelte/package.json | 2 +- wrappers/vue2/CHANGELOG.md | 8 + wrappers/vue2/package.dist.json | 2 +- wrappers/vue2/package.json | 2 +- wrappers/vue3/CHANGELOG.md | 8 + wrappers/vue3/package.dist.json | 2 +- wrappers/vue3/package.json | 2 +- wrappers/webcomponents/CHANGELOG.md | 8 + wrappers/webcomponents/package.dist.json | 2 +- wrappers/webcomponents/package.json | 2 +- wrappers/wordpress/CHANGELOG.md | 8 + wrappers/wordpress/package.json | 2 +- wrappers/wordpress/readme.txt | 2 +- wrappers/wordpress/src/block.json | 2 +- wrappers/wordpress/wordpress-particles.php | 2 +- 1312 files changed, 5355 insertions(+), 1564 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57a68e0bb35..f8c35707e35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed issue in publish workflow and in mcp server ([d3b5672](https://github.com/tsparticles/tsparticles/commit/d3b5672bd61bb847abfa21193c34eabf7aba6896)) +* fixed other issues in mcp server ([18aa336](https://github.com/tsparticles/tsparticles/commit/18aa3367608d070ffacd28e9d1d238ad9ebd6911)) +* fixed other issues in mcp server ([90b52f8](https://github.com/tsparticles/tsparticles/commit/90b52f844fd950638a5f188c40b804d69cc22355)) +* fixed other issues in mcp server ([2063a19](https://github.com/tsparticles/tsparticles/commit/2063a191b59d700bbfab83540c028903717be142)) +* fixed other issues in mcp server ([41f5d3d](https://github.com/tsparticles/tsparticles/commit/41f5d3d54dd9bf57bf6f1e01a09e65d6b9a24a5c)) +* fixed other issues in mcp server ([fb31f51](https://github.com/tsparticles/tsparticles/commit/fb31f51f793a272b42ed3c3faa8e9f4142132eac)) +* fixed other issues in mcp server ([b0c7ef5](https://github.com/tsparticles/tsparticles/commit/b0c7ef5ef98b5bcb87078f65f6f356d94cf27349)) +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) +* fixed some issues in deepExtend ([4ba3518](https://github.com/tsparticles/tsparticles/commit/4ba351881184f155a0d72894e36bc64a267418df)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) diff --git a/bundles/all/CHANGELOG.md b/bundles/all/CHANGELOG.md index eeacf35d651..e386f98201f 100644 --- a/bundles/all/CHANGELOG.md +++ b/bundles/all/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/all + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/all diff --git a/bundles/all/package.dist.json b/bundles/all/package.dist.json index c529fa209a2..490acf5a28c 100644 --- a/bundles/all/package.dist.json +++ b/bundles/all/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.3.1", + "version": "4.3.2", "description": "All-inclusive tsParticles bundle — all engine packages, plugins, interactions, presets, shapes, updaters, effects, paths, emitters, sounds, and palettes in one dependency. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,85 +105,85 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/effect-bubble": "4.3.1", - "@tsparticles/effect-filter": "4.3.1", - "@tsparticles/effect-particles": "4.3.1", - "@tsparticles/effect-shadow": "4.3.1", - "@tsparticles/effect-trail": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-external-cannon": "4.3.1", - "@tsparticles/interaction-external-particle": "4.3.1", - "@tsparticles/interaction-external-pop": "4.3.1", - "@tsparticles/interaction-light": "4.3.1", - "@tsparticles/interaction-particles-repulse": "4.3.1", - "@tsparticles/path-branches": "4.3.1", - "@tsparticles/path-brownian": "4.3.1", - "@tsparticles/path-curl-noise": "4.3.1", - "@tsparticles/path-curves": "4.3.1", - "@tsparticles/path-fractal-noise": "4.3.1", - "@tsparticles/path-grid": "4.3.1", - "@tsparticles/path-levy": "4.3.1", - "@tsparticles/path-perlin-noise": "4.3.1", - "@tsparticles/path-polygon": "4.3.1", - "@tsparticles/path-random": "4.3.1", - "@tsparticles/path-simplex-noise": "4.3.1", - "@tsparticles/path-spiral": "4.3.1", - "@tsparticles/path-svg": "4.3.1", - "@tsparticles/path-zig-zag": "4.3.1", - "@tsparticles/plugin-background-mask": "4.3.1", - "@tsparticles/plugin-canvas-mask": "4.3.1", - "@tsparticles/plugin-easing-back": "4.3.1", - "@tsparticles/plugin-easing-bounce": "4.3.1", - "@tsparticles/plugin-easing-circ": "4.3.1", - "@tsparticles/plugin-easing-cubic": "4.3.1", - "@tsparticles/plugin-easing-elastic": "4.3.1", - "@tsparticles/plugin-easing-expo": "4.3.1", - "@tsparticles/plugin-easing-gaussian": "4.3.1", - "@tsparticles/plugin-easing-linear": "4.3.1", - "@tsparticles/plugin-easing-quart": "4.3.1", - "@tsparticles/plugin-easing-quint": "4.3.1", - "@tsparticles/plugin-easing-sigmoid": "4.3.1", - "@tsparticles/plugin-easing-sine": "4.3.1", - "@tsparticles/plugin-easing-smoothstep": "4.3.1", - "@tsparticles/plugin-emitters-shape-canvas": "4.3.1", - "@tsparticles/plugin-emitters-shape-path": "4.3.1", - "@tsparticles/plugin-emitters-shape-polygon": "4.3.1", - "@tsparticles/plugin-export-image": "4.3.1", - "@tsparticles/plugin-export-json": "4.3.1", - "@tsparticles/plugin-export-video": "4.3.1", - "@tsparticles/plugin-hsv-color": "4.3.1", - "@tsparticles/plugin-hwb-color": "4.3.1", - "@tsparticles/plugin-infection": "4.3.1", - "@tsparticles/plugin-lab-color": "4.3.1", - "@tsparticles/plugin-lch-color": "4.3.1", - "@tsparticles/plugin-manual-particles": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/plugin-named-color": "4.3.1", - "@tsparticles/plugin-oklab-color": "4.3.1", - "@tsparticles/plugin-oklch-color": "4.3.1", - "@tsparticles/plugin-poisson-disc": "4.3.1", - "@tsparticles/plugin-polygon-mask": "4.3.1", - "@tsparticles/plugin-responsive": "4.3.1", - "@tsparticles/plugin-sounds": "4.3.1", - "@tsparticles/plugin-themes": "4.3.1", - "@tsparticles/plugin-trail": "4.3.1", - "@tsparticles/plugin-zoom": "4.3.1", - "@tsparticles/shape-arrow": "4.3.1", - "@tsparticles/shape-cards": "4.3.1", - "@tsparticles/shape-cog": "4.3.1", - "@tsparticles/shape-gif": "4.3.1", - "@tsparticles/shape-heart": "4.3.1", - "@tsparticles/shape-infinity": "4.3.1", - "@tsparticles/shape-matrix": "4.3.1", - "@tsparticles/shape-path": "4.3.1", - "@tsparticles/shape-ribbon": "4.3.1", - "@tsparticles/shape-rounded-polygon": "4.3.1", - "@tsparticles/shape-rounded-rect": "4.3.1", - "@tsparticles/shape-spiral": "4.3.1", - "@tsparticles/shape-squircle": "4.3.1", - "@tsparticles/updater-gradient": "4.3.1", - "@tsparticles/updater-orbit": "4.3.1", - "tsparticles": "4.3.1" + "@tsparticles/effect-bubble": "4.3.2", + "@tsparticles/effect-filter": "4.3.2", + "@tsparticles/effect-particles": "4.3.2", + "@tsparticles/effect-shadow": "4.3.2", + "@tsparticles/effect-trail": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-external-cannon": "4.3.2", + "@tsparticles/interaction-external-particle": "4.3.2", + "@tsparticles/interaction-external-pop": "4.3.2", + "@tsparticles/interaction-light": "4.3.2", + "@tsparticles/interaction-particles-repulse": "4.3.2", + "@tsparticles/path-branches": "4.3.2", + "@tsparticles/path-brownian": "4.3.2", + "@tsparticles/path-curl-noise": "4.3.2", + "@tsparticles/path-curves": "4.3.2", + "@tsparticles/path-fractal-noise": "4.3.2", + "@tsparticles/path-grid": "4.3.2", + "@tsparticles/path-levy": "4.3.2", + "@tsparticles/path-perlin-noise": "4.3.2", + "@tsparticles/path-polygon": "4.3.2", + "@tsparticles/path-random": "4.3.2", + "@tsparticles/path-simplex-noise": "4.3.2", + "@tsparticles/path-spiral": "4.3.2", + "@tsparticles/path-svg": "4.3.2", + "@tsparticles/path-zig-zag": "4.3.2", + "@tsparticles/plugin-background-mask": "4.3.2", + "@tsparticles/plugin-canvas-mask": "4.3.2", + "@tsparticles/plugin-easing-back": "4.3.2", + "@tsparticles/plugin-easing-bounce": "4.3.2", + "@tsparticles/plugin-easing-circ": "4.3.2", + "@tsparticles/plugin-easing-cubic": "4.3.2", + "@tsparticles/plugin-easing-elastic": "4.3.2", + "@tsparticles/plugin-easing-expo": "4.3.2", + "@tsparticles/plugin-easing-gaussian": "4.3.2", + "@tsparticles/plugin-easing-linear": "4.3.2", + "@tsparticles/plugin-easing-quart": "4.3.2", + "@tsparticles/plugin-easing-quint": "4.3.2", + "@tsparticles/plugin-easing-sigmoid": "4.3.2", + "@tsparticles/plugin-easing-sine": "4.3.2", + "@tsparticles/plugin-easing-smoothstep": "4.3.2", + "@tsparticles/plugin-emitters-shape-canvas": "4.3.2", + "@tsparticles/plugin-emitters-shape-path": "4.3.2", + "@tsparticles/plugin-emitters-shape-polygon": "4.3.2", + "@tsparticles/plugin-export-image": "4.3.2", + "@tsparticles/plugin-export-json": "4.3.2", + "@tsparticles/plugin-export-video": "4.3.2", + "@tsparticles/plugin-hsv-color": "4.3.2", + "@tsparticles/plugin-hwb-color": "4.3.2", + "@tsparticles/plugin-infection": "4.3.2", + "@tsparticles/plugin-lab-color": "4.3.2", + "@tsparticles/plugin-lch-color": "4.3.2", + "@tsparticles/plugin-manual-particles": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/plugin-named-color": "4.3.2", + "@tsparticles/plugin-oklab-color": "4.3.2", + "@tsparticles/plugin-oklch-color": "4.3.2", + "@tsparticles/plugin-poisson-disc": "4.3.2", + "@tsparticles/plugin-polygon-mask": "4.3.2", + "@tsparticles/plugin-responsive": "4.3.2", + "@tsparticles/plugin-sounds": "4.3.2", + "@tsparticles/plugin-themes": "4.3.2", + "@tsparticles/plugin-trail": "4.3.2", + "@tsparticles/plugin-zoom": "4.3.2", + "@tsparticles/shape-arrow": "4.3.2", + "@tsparticles/shape-cards": "4.3.2", + "@tsparticles/shape-cog": "4.3.2", + "@tsparticles/shape-gif": "4.3.2", + "@tsparticles/shape-heart": "4.3.2", + "@tsparticles/shape-infinity": "4.3.2", + "@tsparticles/shape-matrix": "4.3.2", + "@tsparticles/shape-path": "4.3.2", + "@tsparticles/shape-ribbon": "4.3.2", + "@tsparticles/shape-rounded-polygon": "4.3.2", + "@tsparticles/shape-rounded-rect": "4.3.2", + "@tsparticles/shape-spiral": "4.3.2", + "@tsparticles/shape-squircle": "4.3.2", + "@tsparticles/updater-gradient": "4.3.2", + "@tsparticles/updater-orbit": "4.3.2", + "tsparticles": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/all/package.json b/bundles/all/package.json index fc81fdd90cc..11213637d7a 100644 --- a/bundles/all/package.json +++ b/bundles/all/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.3.1", + "version": "4.3.2", "description": "All-inclusive tsParticles bundle — all engine packages, plugins, interactions, presets, shapes, updaters, effects, paths, emitters, sounds, and palettes in one dependency. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/basic/CHANGELOG.md b/bundles/basic/CHANGELOG.md index 9655f17d8c9..e324472226a 100644 --- a/bundles/basic/CHANGELOG.md +++ b/bundles/basic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/basic + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/basic diff --git a/bundles/basic/package.dist.json b/bundles/basic/package.dist.json index 58d30879819..e74a600c59d 100644 --- a/bundles/basic/package.dist.json +++ b/bundles/basic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.3.1", + "version": "4.3.2", "description": "Basic tsParticles bundle — minimal core engine with only the essential features for fast, lightweight particle animations. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,17 +105,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-blend": "4.3.1", - "@tsparticles/plugin-hex-color": "4.3.1", - "@tsparticles/plugin-hsl-color": "4.3.1", - "@tsparticles/plugin-move": "4.3.1", - "@tsparticles/plugin-rgb-color": "4.3.1", - "@tsparticles/shape-circle": "4.3.1", - "@tsparticles/updater-opacity": "4.3.1", - "@tsparticles/updater-out-modes": "4.3.1", - "@tsparticles/updater-paint": "4.3.1", - "@tsparticles/updater-size": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-blend": "4.3.2", + "@tsparticles/plugin-hex-color": "4.3.2", + "@tsparticles/plugin-hsl-color": "4.3.2", + "@tsparticles/plugin-move": "4.3.2", + "@tsparticles/plugin-rgb-color": "4.3.2", + "@tsparticles/shape-circle": "4.3.2", + "@tsparticles/updater-opacity": "4.3.2", + "@tsparticles/updater-out-modes": "4.3.2", + "@tsparticles/updater-paint": "4.3.2", + "@tsparticles/updater-size": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/basic/package.json b/bundles/basic/package.json index 48f83ff8c1c..e583d9b0f93 100644 --- a/bundles/basic/package.json +++ b/bundles/basic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.3.1", + "version": "4.3.2", "description": "Basic tsParticles bundle — minimal core engine with only the essential features for fast, lightweight particle animations. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/confetti/CHANGELOG.md b/bundles/confetti/CHANGELOG.md index d5f6e3ebd89..9308af5f374 100644 --- a/bundles/confetti/CHANGELOG.md +++ b/bundles/confetti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/confetti + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/confetti diff --git a/bundles/confetti/package.dist.json b/bundles/confetti/package.dist.json index a01123ca63d..51ae74137cc 100644 --- a/bundles/confetti/package.dist.json +++ b/bundles/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti bundle — easily create confetti, confetti cannon, confetti explosions, confetti falling, and confetti parade animations with presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,22 +105,22 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/shape-cards": "4.3.1", - "@tsparticles/shape-emoji": "4.3.1", - "@tsparticles/shape-heart": "4.3.1", - "@tsparticles/shape-image": "4.3.1", - "@tsparticles/shape-polygon": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/shape-star": "4.3.1", - "@tsparticles/updater-life": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/shape-cards": "4.3.2", + "@tsparticles/shape-emoji": "4.3.2", + "@tsparticles/shape-heart": "4.3.2", + "@tsparticles/shape-image": "4.3.2", + "@tsparticles/shape-polygon": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/shape-star": "4.3.2", + "@tsparticles/updater-life": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/confetti/package.json b/bundles/confetti/package.json index 6bf90cc28d3..89c10480b41 100644 --- a/bundles/confetti/package.json +++ b/bundles/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti bundle — easily create confetti, confetti cannon, confetti explosions, confetti falling, and confetti parade animations with presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/fireworks/CHANGELOG.md b/bundles/fireworks/CHANGELOG.md index 5abd26dee64..a964a7ab447 100644 --- a/bundles/fireworks/CHANGELOG.md +++ b/bundles/fireworks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/fireworks + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/fireworks diff --git a/bundles/fireworks/package.dist.json b/bundles/fireworks/package.dist.json index 8a662d0bfb5..d892e9e20b3 100644 --- a/bundles/fireworks/package.dist.json +++ b/bundles/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks bundle — easily create spectacular fireworks and fountain particle effects with built-in presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,17 +105,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-blend": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-emitters-shape-square": "4.3.1", - "@tsparticles/plugin-sounds": "4.3.1", - "@tsparticles/shape-line": "4.3.1", - "@tsparticles/updater-destroy": "4.3.1", - "@tsparticles/updater-life": "4.3.1", - "@tsparticles/updater-paint": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-blend": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-emitters-shape-square": "4.3.2", + "@tsparticles/plugin-sounds": "4.3.2", + "@tsparticles/shape-line": "4.3.2", + "@tsparticles/updater-destroy": "4.3.2", + "@tsparticles/updater-life": "4.3.2", + "@tsparticles/updater-paint": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/fireworks/package.json b/bundles/fireworks/package.json index 5552f344ec0..a9f1d4a3ea7 100644 --- a/bundles/fireworks/package.json +++ b/bundles/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks bundle — easily create spectacular fireworks and fountain particle effects with built-in presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/full/CHANGELOG.md b/bundles/full/CHANGELOG.md index 218aa2ff0b0..8ac2b49255f 100644 --- a/bundles/full/CHANGELOG.md +++ b/bundles/full/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package tsparticles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package tsparticles diff --git a/bundles/full/package.dist.json b/bundles/full/package.dist.json index 10076a1b1d1..215887d728c 100644 --- a/bundles/full/package.dist.json +++ b/bundles/full/package.dist.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.3.1", + "version": "4.3.2", "description": "Full-featured tsParticles bundle — create stunning particle, confetti and fireworks animations with all official plugins and presets included. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,20 +105,20 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-external-drag": "4.3.1", - "@tsparticles/interaction-external-trail": "4.3.1", - "@tsparticles/plugin-absorbers": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-emitters-shape-circle": "4.3.1", - "@tsparticles/plugin-emitters-shape-square": "4.3.1", - "@tsparticles/shape-text": "4.3.1", - "@tsparticles/slim": "4.3.1", - "@tsparticles/updater-destroy": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-twinkle": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-external-drag": "4.3.2", + "@tsparticles/interaction-external-trail": "4.3.2", + "@tsparticles/plugin-absorbers": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-emitters-shape-circle": "4.3.2", + "@tsparticles/plugin-emitters-shape-square": "4.3.2", + "@tsparticles/shape-text": "4.3.2", + "@tsparticles/slim": "4.3.2", + "@tsparticles/updater-destroy": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-twinkle": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/full/package.json b/bundles/full/package.json index db0db4b53d9..2f04af35dd4 100644 --- a/bundles/full/package.json +++ b/bundles/full/package.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.3.1", + "version": "4.3.2", "description": "Full-featured tsParticles bundle — create stunning particle, confetti and fireworks animations with all official plugins and presets included. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/particles/CHANGELOG.md b/bundles/particles/CHANGELOG.md index 4db00b8a855..63c530dc710 100644 --- a/bundles/particles/CHANGELOG.md +++ b/bundles/particles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/particles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/particles diff --git a/bundles/particles/package.dist.json b/bundles/particles/package.dist.json index 1f4edc18f42..f108669b9d3 100644 --- a/bundles/particles/package.dist.json +++ b/bundles/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.3.1", + "version": "4.3.2", "description": "Minimal tsParticles particles bundle — lightweight particle engine without confetti or fireworks extras. Perfect for pure particle backgrounds. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -81,11 +81,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-particles-collisions": "4.3.1", - "@tsparticles/interaction-particles-links": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-particles-collisions": "4.3.2", + "@tsparticles/interaction-particles-links": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/particles/package.json b/bundles/particles/package.json index 46dfc42ff2b..4fb9a4277f5 100644 --- a/bundles/particles/package.json +++ b/bundles/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.3.1", + "version": "4.3.2", "description": "Minimal tsParticles particles bundle — lightweight particle engine without confetti or fireworks extras. Perfect for pure particle backgrounds. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/pjs/CHANGELOG.md b/bundles/pjs/CHANGELOG.md index 1debaa7e681..8a0e6d426ea 100644 --- a/bundles/pjs/CHANGELOG.md +++ b/bundles/pjs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/pjs + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/pjs diff --git a/bundles/pjs/package.dist.json b/bundles/pjs/package.dist.json index 0b618cd2131..3063a7011fa 100644 --- a/bundles/pjs/package.dist.json +++ b/bundles/pjs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles.js compatibility layer — drop-in replacement for particles.js with full API compatibility and enhanced features. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -98,9 +98,9 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-responsive": "4.3.1", - "tsparticles": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-responsive": "4.3.2", + "tsparticles": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/pjs/package.json b/bundles/pjs/package.json index 189d753102a..fb375536016 100644 --- a/bundles/pjs/package.json +++ b/bundles/pjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles.js compatibility layer — drop-in replacement for particles.js with full API compatibility and enhanced features. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/ribbons/CHANGELOG.md b/bundles/ribbons/CHANGELOG.md index 68d8a503c24..53d95da6572 100644 --- a/bundles/ribbons/CHANGELOG.md +++ b/bundles/ribbons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/ribbons + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/ribbons diff --git a/bundles/ribbons/package.dist.json b/bundles/ribbons/package.dist.json index a03e850bc66..358d89c0455 100644 --- a/bundles/ribbons/package.dist.json +++ b/bundles/ribbons/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ribbons", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ribbons bundle — easily create animated ribbons, ribbon bursts and ribbon falling effects. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -102,13 +102,13 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-emitters-shape-square": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/shape-ribbon": "4.3.1", - "@tsparticles/updater-life": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-emitters-shape-square": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/shape-ribbon": "4.3.2", + "@tsparticles/updater-life": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/ribbons/package.json b/bundles/ribbons/package.json index 9de52cf1a20..4df0a89dfac 100644 --- a/bundles/ribbons/package.json +++ b/bundles/ribbons/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ribbons", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ribbons bundle — easily create animated ribbons, ribbon bursts and ribbon falling effects. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/slim/CHANGELOG.md b/bundles/slim/CHANGELOG.md index 0ba623446ba..ba4c045c14d 100644 --- a/bundles/slim/CHANGELOG.md +++ b/bundles/slim/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/slim + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/slim diff --git a/bundles/slim/package.dist.json b/bundles/slim/package.dist.json index 4e6bd3402a7..074a59789b4 100644 --- a/bundles/slim/package.dist.json +++ b/bundles/slim/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/slim", - "version": "4.3.1", + "version": "4.3.2", "description": "Slim tsParticles bundle — core engine with essential plugins, presets, and interactions for lightweight particle animations. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,34 +105,34 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-external-attract": "4.3.1", - "@tsparticles/interaction-external-bounce": "4.3.1", - "@tsparticles/interaction-external-bubble": "4.3.1", - "@tsparticles/interaction-external-connect": "4.3.1", - "@tsparticles/interaction-external-destroy": "4.3.1", - "@tsparticles/interaction-external-grab": "4.3.1", - "@tsparticles/interaction-external-parallax": "4.3.1", - "@tsparticles/interaction-external-pause": "4.3.1", - "@tsparticles/interaction-external-push": "4.3.1", - "@tsparticles/interaction-external-remove": "4.3.1", - "@tsparticles/interaction-external-repulse": "4.3.1", - "@tsparticles/interaction-external-slow": "4.3.1", - "@tsparticles/interaction-particles-attract": "4.3.1", - "@tsparticles/interaction-particles-collisions": "4.3.1", - "@tsparticles/interaction-particles-links": "4.3.1", - "@tsparticles/plugin-easing-quad": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1", - "@tsparticles/shape-emoji": "4.3.1", - "@tsparticles/shape-image": "4.3.1", - "@tsparticles/shape-line": "4.3.1", - "@tsparticles/shape-polygon": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/shape-star": "4.3.1", - "@tsparticles/updater-life": "4.3.1", - "@tsparticles/updater-paint": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-external-attract": "4.3.2", + "@tsparticles/interaction-external-bounce": "4.3.2", + "@tsparticles/interaction-external-bubble": "4.3.2", + "@tsparticles/interaction-external-connect": "4.3.2", + "@tsparticles/interaction-external-destroy": "4.3.2", + "@tsparticles/interaction-external-grab": "4.3.2", + "@tsparticles/interaction-external-parallax": "4.3.2", + "@tsparticles/interaction-external-pause": "4.3.2", + "@tsparticles/interaction-external-push": "4.3.2", + "@tsparticles/interaction-external-remove": "4.3.2", + "@tsparticles/interaction-external-repulse": "4.3.2", + "@tsparticles/interaction-external-slow": "4.3.2", + "@tsparticles/interaction-particles-attract": "4.3.2", + "@tsparticles/interaction-particles-collisions": "4.3.2", + "@tsparticles/interaction-particles-links": "4.3.2", + "@tsparticles/plugin-easing-quad": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2", + "@tsparticles/shape-emoji": "4.3.2", + "@tsparticles/shape-image": "4.3.2", + "@tsparticles/shape-line": "4.3.2", + "@tsparticles/shape-polygon": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/shape-star": "4.3.2", + "@tsparticles/updater-life": "4.3.2", + "@tsparticles/updater-paint": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/bundles/slim/package.json b/bundles/slim/package.json index ac4ad3ce0e3..b590a196e66 100644 --- a/bundles/slim/package.json +++ b/bundles/slim/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/slim", - "version": "4.3.1", + "version": "4.3.2", "description": "Slim tsParticles bundle — core engine with essential plugins, presets, and interactions for lightweight particle animations. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/cli/commands/build-bundle-rollup/CHANGELOG.md b/cli/commands/build-bundle-rollup/CHANGELOG.md index 0661c617766..6a3d448ca38 100644 --- a/cli/commands/build-bundle-rollup/CHANGELOG.md +++ b/cli/commands/build-bundle-rollup/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-bundle-rollup + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-bundle-rollup diff --git a/cli/commands/build-bundle-rollup/package.json b/cli/commands/build-bundle-rollup/package.json index 0cd28726ab3..504ebe5cc6b 100644 --- a/cli/commands/build-bundle-rollup/package.json +++ b/cli/commands/build-bundle-rollup/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-bundle-rollup", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-bundle-webpack/CHANGELOG.md b/cli/commands/build-bundle-webpack/CHANGELOG.md index 4e05b0f1de8..7e4abfb3fbf 100644 --- a/cli/commands/build-bundle-webpack/CHANGELOG.md +++ b/cli/commands/build-bundle-webpack/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-bundle-webpack + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-bundle-webpack diff --git a/cli/commands/build-bundle-webpack/package.json b/cli/commands/build-bundle-webpack/package.json index a3a56dbf2ff..0938ccdb694 100644 --- a/cli/commands/build-bundle-webpack/package.json +++ b/cli/commands/build-bundle-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-bundle-webpack", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-circular-deps/CHANGELOG.md b/cli/commands/build-circular-deps/CHANGELOG.md index 1a6c89ef4d4..55132111a6a 100644 --- a/cli/commands/build-circular-deps/CHANGELOG.md +++ b/cli/commands/build-circular-deps/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-circular-deps + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-circular-deps diff --git a/cli/commands/build-circular-deps/package.json b/cli/commands/build-circular-deps/package.json index 269b89fd4a8..465ebab3811 100644 --- a/cli/commands/build-circular-deps/package.json +++ b/cli/commands/build-circular-deps/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-circular-deps", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-clear/CHANGELOG.md b/cli/commands/build-clear/CHANGELOG.md index adf35428e5a..431a1c621c7 100644 --- a/cli/commands/build-clear/CHANGELOG.md +++ b/cli/commands/build-clear/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-clear + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-clear diff --git a/cli/commands/build-clear/package.json b/cli/commands/build-clear/package.json index f6c50fc6d52..2422216ba9a 100644 --- a/cli/commands/build-clear/package.json +++ b/cli/commands/build-clear/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-clear", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-distfiles/CHANGELOG.md b/cli/commands/build-distfiles/CHANGELOG.md index 48de0c8c70f..d5ca8f96ee1 100644 --- a/cli/commands/build-distfiles/CHANGELOG.md +++ b/cli/commands/build-distfiles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-distfiles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-distfiles diff --git a/cli/commands/build-distfiles/package.json b/cli/commands/build-distfiles/package.json index c8dc490fdba..8e713b2d6ca 100644 --- a/cli/commands/build-distfiles/package.json +++ b/cli/commands/build-distfiles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-distfiles", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-diststats/CHANGELOG.md b/cli/commands/build-diststats/CHANGELOG.md index 968c4a47444..f5bb0e609c8 100644 --- a/cli/commands/build-diststats/CHANGELOG.md +++ b/cli/commands/build-diststats/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-diststats + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-diststats diff --git a/cli/commands/build-diststats/package.json b/cli/commands/build-diststats/package.json index 963b157e958..4e484187fbb 100644 --- a/cli/commands/build-diststats/package.json +++ b/cli/commands/build-diststats/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-diststats", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-eslint/CHANGELOG.md b/cli/commands/build-eslint/CHANGELOG.md index 2b8f6ed2029..2825de9e831 100644 --- a/cli/commands/build-eslint/CHANGELOG.md +++ b/cli/commands/build-eslint/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-eslint + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-eslint diff --git a/cli/commands/build-eslint/package.json b/cli/commands/build-eslint/package.json index 5713a02a17a..bc2bd4b19f6 100644 --- a/cli/commands/build-eslint/package.json +++ b/cli/commands/build-eslint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-eslint", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-prettier/CHANGELOG.md b/cli/commands/build-prettier/CHANGELOG.md index 89dcea2092b..e67ce083f18 100644 --- a/cli/commands/build-prettier/CHANGELOG.md +++ b/cli/commands/build-prettier/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-prettier + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-prettier diff --git a/cli/commands/build-prettier/package.json b/cli/commands/build-prettier/package.json index 48bd8fe08fc..9a90dbd4ba7 100644 --- a/cli/commands/build-prettier/package.json +++ b/cli/commands/build-prettier/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-prettier", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-tsc/CHANGELOG.md b/cli/commands/build-tsc/CHANGELOG.md index f32548ef6d2..05582009081 100644 --- a/cli/commands/build-tsc/CHANGELOG.md +++ b/cli/commands/build-tsc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build-tsc + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build-tsc diff --git a/cli/commands/build-tsc/package.json b/cli/commands/build-tsc/package.json index 2b932fbd978..b9014592a99 100644 --- a/cli/commands/build-tsc/package.json +++ b/cli/commands/build-tsc/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-tsc", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build/CHANGELOG.md b/cli/commands/build/CHANGELOG.md index 2efbf3f690a..6c342bee816 100644 --- a/cli/commands/build/CHANGELOG.md +++ b/cli/commands/build/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-build + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-build diff --git a/cli/commands/build/package.json b/cli/commands/build/package.json index ab5f411948c..69f15637d4e 100644 --- a/cli/commands/build/package.json +++ b/cli/commands/build/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-app/CHANGELOG.md b/cli/commands/create-app/CHANGELOG.md index 6f3f623e59a..7e9deb91182 100644 --- a/cli/commands/create-app/CHANGELOG.md +++ b/cli/commands/create-app/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-app + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-app diff --git a/cli/commands/create-app/package.json b/cli/commands/create-app/package.json index e0a6c102ca4..339fcbcd5cd 100644 --- a/cli/commands/create-app/package.json +++ b/cli/commands/create-app/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-app", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-bundle/CHANGELOG.md b/cli/commands/create-bundle/CHANGELOG.md index 7cf8961cfcc..d2b0b1b1dcb 100644 --- a/cli/commands/create-bundle/CHANGELOG.md +++ b/cli/commands/create-bundle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-bundle + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-bundle diff --git a/cli/commands/create-bundle/package.json b/cli/commands/create-bundle/package.json index 65bbf834bb0..c8e51ab9558 100644 --- a/cli/commands/create-bundle/package.json +++ b/cli/commands/create-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-bundle", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-effect/CHANGELOG.md b/cli/commands/create-effect/CHANGELOG.md index f6181ac442b..e68f5b00b94 100644 --- a/cli/commands/create-effect/CHANGELOG.md +++ b/cli/commands/create-effect/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-effect + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-effect diff --git a/cli/commands/create-effect/package.json b/cli/commands/create-effect/package.json index bd19637e5c1..b65ea73f906 100644 --- a/cli/commands/create-effect/package.json +++ b/cli/commands/create-effect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-effect", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-interaction/CHANGELOG.md b/cli/commands/create-interaction/CHANGELOG.md index 7426483c14e..b9185bef811 100644 --- a/cli/commands/create-interaction/CHANGELOG.md +++ b/cli/commands/create-interaction/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-interaction + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-interaction diff --git a/cli/commands/create-interaction/package.json b/cli/commands/create-interaction/package.json index 9e7c45d3fdb..402ae8e2181 100644 --- a/cli/commands/create-interaction/package.json +++ b/cli/commands/create-interaction/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-interaction", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-palette/CHANGELOG.md b/cli/commands/create-palette/CHANGELOG.md index 3505badf918..6f56b7be261 100644 --- a/cli/commands/create-palette/CHANGELOG.md +++ b/cli/commands/create-palette/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-palette + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-palette diff --git a/cli/commands/create-palette/package.json b/cli/commands/create-palette/package.json index 6aa6aa977c1..fb50e40a447 100644 --- a/cli/commands/create-palette/package.json +++ b/cli/commands/create-palette/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-palette", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-path/CHANGELOG.md b/cli/commands/create-path/CHANGELOG.md index c8846e4b4b1..b465ca34b06 100644 --- a/cli/commands/create-path/CHANGELOG.md +++ b/cli/commands/create-path/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-path + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-path diff --git a/cli/commands/create-path/package.json b/cli/commands/create-path/package.json index 0645632a68a..2f6f344d352 100644 --- a/cli/commands/create-path/package.json +++ b/cli/commands/create-path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-path", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-plugin/CHANGELOG.md b/cli/commands/create-plugin/CHANGELOG.md index ec5d5f4938c..f7d87a0ea28 100644 --- a/cli/commands/create-plugin/CHANGELOG.md +++ b/cli/commands/create-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-plugin + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-plugin diff --git a/cli/commands/create-plugin/package.json b/cli/commands/create-plugin/package.json index cbe42342e4c..8e4c66a81e4 100644 --- a/cli/commands/create-plugin/package.json +++ b/cli/commands/create-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-plugin", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-preset/CHANGELOG.md b/cli/commands/create-preset/CHANGELOG.md index 2d4b90f6dd4..fdacbff1bf6 100644 --- a/cli/commands/create-preset/CHANGELOG.md +++ b/cli/commands/create-preset/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-preset + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-preset diff --git a/cli/commands/create-preset/package.json b/cli/commands/create-preset/package.json index 4b600ec964e..e4a5878253a 100644 --- a/cli/commands/create-preset/package.json +++ b/cli/commands/create-preset/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-preset", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-shape/CHANGELOG.md b/cli/commands/create-shape/CHANGELOG.md index 2d0c016f2e3..b61d39f13af 100644 --- a/cli/commands/create-shape/CHANGELOG.md +++ b/cli/commands/create-shape/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-shape + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-shape diff --git a/cli/commands/create-shape/package.json b/cli/commands/create-shape/package.json index c2860416bb2..50a0d0c8ade 100644 --- a/cli/commands/create-shape/package.json +++ b/cli/commands/create-shape/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-shape", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-updater/CHANGELOG.md b/cli/commands/create-updater/CHANGELOG.md index c1dfabf83da..3bd0b4e4c5f 100644 --- a/cli/commands/create-updater/CHANGELOG.md +++ b/cli/commands/create-updater/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create-updater + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create-updater diff --git a/cli/commands/create-updater/package.json b/cli/commands/create-updater/package.json index 65ffac166ac..ca61307dd7f 100644 --- a/cli/commands/create-updater/package.json +++ b/cli/commands/create-updater/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-updater", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-utils/CHANGELOG.md b/cli/commands/create-utils/CHANGELOG.md index a57f63badd3..837b89ec84a 100644 --- a/cli/commands/create-utils/CHANGELOG.md +++ b/cli/commands/create-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-create-utils + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-create-utils diff --git a/cli/commands/create-utils/files/empty-project/package.dist.json b/cli/commands/create-utils/files/empty-project/package.dist.json index c2ffd98ee16..c10900206de 100644 --- a/cli/commands/create-utils/files/empty-project/package.dist.json +++ b/cli/commands/create-utils/files/empty-project/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/empty-template", - "version": "4.3.1", + "version": "4.3.2", "private": true, "type": "module", "author": "Matteo Bruni ", @@ -73,6 +73,6 @@ "module": "index.js", "types": "index.d.ts", "peerDependencies": { - "@tsparticles/engine": "^4.3.1" + "@tsparticles/engine": "^4.3.2" } } diff --git a/cli/commands/create-utils/files/empty-project/package.json b/cli/commands/create-utils/files/empty-project/package.json index 775066f1a2b..f36afb20c2d 100644 --- a/cli/commands/create-utils/files/empty-project/package.json +++ b/cli/commands/create-utils/files/empty-project/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/empty-template", - "version": "4.3.1", + "version": "4.3.2", "private": true, "type": "module", "description": "tsParticles empty template", @@ -102,6 +102,6 @@ "typescript-eslint": "^8.60.1" }, "peerDependencies": { - "@tsparticles/engine": "^4.3.1" + "@tsparticles/engine": "^4.3.2" } } diff --git a/cli/commands/create-utils/package.json b/cli/commands/create-utils/package.json index 488e0d2a771..88320dd0875 100644 --- a/cli/commands/create-utils/package.json +++ b/cli/commands/create-utils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-create-utils", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create/CHANGELOG.md b/cli/commands/create/CHANGELOG.md index 8cc1fed7251..5b34b727a56 100644 --- a/cli/commands/create/CHANGELOG.md +++ b/cli/commands/create/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-command-create + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-command-create diff --git a/cli/commands/create/package.json b/cli/commands/create/package.json index f1f7dd58692..a83705906f6 100644 --- a/cli/commands/create/package.json +++ b/cli/commands/create/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/packages/cli-build/CHANGELOG.md b/cli/packages/cli-build/CHANGELOG.md index fee39a4bd1c..e0ef9a82c3a 100644 --- a/cli/packages/cli-build/CHANGELOG.md +++ b/cli/packages/cli-build/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-build + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-build diff --git a/cli/packages/cli-build/package.json b/cli/packages/cli-build/package.json index f77bc121efe..537b7659425 100644 --- a/cli/packages/cli-build/package.json +++ b/cli/packages/cli-build/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-build", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/cli-create/CHANGELOG.md b/cli/packages/cli-create/CHANGELOG.md index 561065cb22c..044b02aeabe 100644 --- a/cli/packages/cli-create/CHANGELOG.md +++ b/cli/packages/cli-create/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-create + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-create diff --git a/cli/packages/cli-create/package.json b/cli/packages/cli-create/package.json index 59a767cf5d4..23d945cc984 100644 --- a/cli/packages/cli-create/package.json +++ b/cli/packages/cli-create/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-create", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/create-404/CHANGELOG.md b/cli/packages/create-404/CHANGELOG.md index c0e571966e1..aec2739b5a0 100644 --- a/cli/packages/create-404/CHANGELOG.md +++ b/cli/packages/create-404/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package create-404 + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package create-404 diff --git a/cli/packages/create-404/package.json b/cli/packages/create-404/package.json index 6448760a962..fd711438685 100644 --- a/cli/packages/create-404/package.json +++ b/cli/packages/create-404/package.json @@ -1,6 +1,6 @@ { "name": "create-404", - "version": "4.3.1", + "version": "4.3.2", "description": "Scaffold a @tsparticles/template-404 project — npm create 404", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-confetti/CHANGELOG.md b/cli/packages/create-confetti/CHANGELOG.md index f8f43870e95..d5dc0949715 100644 --- a/cli/packages/create-confetti/CHANGELOG.md +++ b/cli/packages/create-confetti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package create-confetti + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package create-confetti diff --git a/cli/packages/create-confetti/package.json b/cli/packages/create-confetti/package.json index a4d772e03ee..18eeebee3a4 100644 --- a/cli/packages/create-confetti/package.json +++ b/cli/packages/create-confetti/package.json @@ -1,6 +1,6 @@ { "name": "create-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "Scaffold a @tsparticles/confetti project — npm create confetti", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-particles/CHANGELOG.md b/cli/packages/create-particles/CHANGELOG.md index fc6b62a10a4..1bd76ac2390 100644 --- a/cli/packages/create-particles/CHANGELOG.md +++ b/cli/packages/create-particles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package create-particles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package create-particles diff --git a/cli/packages/create-particles/package.json b/cli/packages/create-particles/package.json index 8856e39a2cc..9f6d6746a3b 100644 --- a/cli/packages/create-particles/package.json +++ b/cli/packages/create-particles/package.json @@ -1,6 +1,6 @@ { "name": "create-particles", - "version": "4.3.1", + "version": "4.3.2", "description": "Scaffold a @tsparticles/particles project — npm create particles", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-ribbons/CHANGELOG.md b/cli/packages/create-ribbons/CHANGELOG.md index 3b9fbf13fb1..82d48ae31fe 100644 --- a/cli/packages/create-ribbons/CHANGELOG.md +++ b/cli/packages/create-ribbons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package create-ribbons + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package create-ribbons diff --git a/cli/packages/create-ribbons/package.json b/cli/packages/create-ribbons/package.json index 1548264eea1..2792441f549 100644 --- a/cli/packages/create-ribbons/package.json +++ b/cli/packages/create-ribbons/package.json @@ -1,6 +1,6 @@ { "name": "create-ribbons", - "version": "4.3.1", + "version": "4.3.2", "description": "Scaffold a @tsparticles/ribbons project — npm create ribbons", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-tsparticles/CHANGELOG.md b/cli/packages/create-tsparticles/CHANGELOG.md index 40082515319..27c96e33b6e 100644 --- a/cli/packages/create-tsparticles/CHANGELOG.md +++ b/cli/packages/create-tsparticles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package create-tsparticles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package create-tsparticles diff --git a/cli/packages/create-tsparticles/package.json b/cli/packages/create-tsparticles/package.json index e834a2352bd..7783a670d0a 100644 --- a/cli/packages/create-tsparticles/package.json +++ b/cli/packages/create-tsparticles/package.json @@ -1,6 +1,6 @@ { "name": "create-tsparticles", - "version": "4.3.1", + "version": "4.3.2", "description": "Scaffold a tsParticles project — npm create tsparticles", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/nx-plugin/CHANGELOG.md b/cli/packages/nx-plugin/CHANGELOG.md index d8af17b929e..082b3e0ac77 100644 --- a/cli/packages/nx-plugin/CHANGELOG.md +++ b/cli/packages/nx-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/cli-nx-plugin + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/cli-nx-plugin diff --git a/cli/packages/nx-plugin/package.json b/cli/packages/nx-plugin/package.json index a4d88856c6b..313dcb81bff 100644 --- a/cli/packages/nx-plugin/package.json +++ b/cli/packages/nx-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-nx-plugin", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "type": "module", "repository": { diff --git a/cli/utils/browserslist-config/CHANGELOG.md b/cli/utils/browserslist-config/CHANGELOG.md index dfc9b6519c2..27c83fb25c3 100644 --- a/cli/utils/browserslist-config/CHANGELOG.md +++ b/cli/utils/browserslist-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/browserslist-config + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/browserslist-config diff --git a/cli/utils/browserslist-config/package.json b/cli/utils/browserslist-config/package.json index 5bc18470ffb..104a0c8624b 100644 --- a/cli/utils/browserslist-config/package.json +++ b/cli/utils/browserslist-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/browserslist-config", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles default Browserslist configuration", "main": "dist/index.js", "license": "MIT", diff --git a/cli/utils/depcruise-config/CHANGELOG.md b/cli/utils/depcruise-config/CHANGELOG.md index 6eed09cdd04..c1f48740b19 100644 --- a/cli/utils/depcruise-config/CHANGELOG.md +++ b/cli/utils/depcruise-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/depcruise-config + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/depcruise-config diff --git a/cli/utils/depcruise-config/package.json b/cli/utils/depcruise-config/package.json index 9f6ab6f81cb..f303ebcb2a9 100644 --- a/cli/utils/depcruise-config/package.json +++ b/cli/utils/depcruise-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/depcruise-config", - "version": "4.3.1", + "version": "4.3.2", "private": false, "type": "module", "publishConfig": { diff --git a/cli/utils/eslint-config/CHANGELOG.md b/cli/utils/eslint-config/CHANGELOG.md index f61fa5a7e24..5365c9b704b 100644 --- a/cli/utils/eslint-config/CHANGELOG.md +++ b/cli/utils/eslint-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/eslint-config + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/eslint-config diff --git a/cli/utils/eslint-config/package.json b/cli/utils/eslint-config/package.json index fa835cab485..cd1727ecb14 100644 --- a/cli/utils/eslint-config/package.json +++ b/cli/utils/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/eslint-config", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles default ESLint Configuration (ESLint 10 + Flat Config)", "type": "module", "main": "dist/eslint.config.js", diff --git a/cli/utils/prettier-config/CHANGELOG.md b/cli/utils/prettier-config/CHANGELOG.md index 904da442976..79046907f41 100644 --- a/cli/utils/prettier-config/CHANGELOG.md +++ b/cli/utils/prettier-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/prettier-config + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/prettier-config diff --git a/cli/utils/prettier-config/package.json b/cli/utils/prettier-config/package.json index f809029973e..c65b3638214 100644 --- a/cli/utils/prettier-config/package.json +++ b/cli/utils/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/prettier-config", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles default Prettier Configuration", "main": "dist/index.cjs", "exports": { diff --git a/cli/utils/rollup-plugin/CHANGELOG.md b/cli/utils/rollup-plugin/CHANGELOG.md index 8135c843df6..9b2ab1f100a 100644 --- a/cli/utils/rollup-plugin/CHANGELOG.md +++ b/cli/utils/rollup-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/rollup-plugin + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/rollup-plugin diff --git a/cli/utils/rollup-plugin/package.json b/cli/utils/rollup-plugin/package.json index 6351abdefb0..8e2df9aee55 100644 --- a/cli/utils/rollup-plugin/package.json +++ b/cli/utils/rollup-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/rollup-plugin", - "version": "4.3.1", + "version": "4.3.2", "description": "Rollup build utilities for tsParticles", "private": false, "type": "module", diff --git a/cli/utils/tsconfig/CHANGELOG.md b/cli/utils/tsconfig/CHANGELOG.md index 653e53ea3f7..2eff19726f1 100644 --- a/cli/utils/tsconfig/CHANGELOG.md +++ b/cli/utils/tsconfig/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/tsconfig + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/tsconfig diff --git a/cli/utils/tsconfig/package.json b/cli/utils/tsconfig/package.json index 48091c99150..b7313bf25c3 100644 --- a/cli/utils/tsconfig/package.json +++ b/cli/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/tsconfig", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles default TypeScript Compiler Configuration", "license": "MIT", "repository": { diff --git a/cli/utils/webpack-config/CHANGELOG.md b/cli/utils/webpack-config/CHANGELOG.md index 0c5ce3a9303..529bbc88575 100644 --- a/cli/utils/webpack-config/CHANGELOG.md +++ b/cli/utils/webpack-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/webpack-plugin + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/webpack-plugin diff --git a/cli/utils/webpack-config/package.json b/cli/utils/webpack-config/package.json index 8ef0ac199a7..d99369ae944 100644 --- a/cli/utils/webpack-config/package.json +++ b/cli/utils/webpack-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webpack-plugin", - "version": "4.3.1", + "version": "4.3.2", "type": "module", "main": "dist/webpack-tsparticles.js", "types": "dist/webpack-tsparticles.d.ts", diff --git a/demo/angular/CHANGELOG.md b/demo/angular/CHANGELOG.md index f44dac122b3..39b088eb46c 100644 --- a/demo/angular/CHANGELOG.md +++ b/demo/angular/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/angular-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/angular-demo diff --git a/demo/angular/package.json b/demo/angular/package.json index d88614d5576..79f6a15fbe0 100644 --- a/demo/angular/package.json +++ b/demo/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular-demo", - "version": "4.3.1", + "version": "4.3.2", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/demo/astro/CHANGELOG.md b/demo/astro/CHANGELOG.md index 9b71143f884..9a030652a64 100644 --- a/demo/astro/CHANGELOG.md +++ b/demo/astro/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/astro-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/astro-demo diff --git a/demo/astro/package.json b/demo/astro/package.json index 525fcf8dcd7..8dbc399a5de 100644 --- a/demo/astro/package.json +++ b/demo/astro/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/astro-demo", "type": "module", - "version": "4.3.1", + "version": "4.3.2", "private": true, "repository": { "type": "git", diff --git a/demo/electron/CHANGELOG.md b/demo/electron/CHANGELOG.md index 35379ddf8fb..6bfb03dc7c1 100644 --- a/demo/electron/CHANGELOG.md +++ b/demo/electron/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/electron-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/electron-demo diff --git a/demo/electron/package.json b/demo/electron/package.json index fd8142cfa8e..589538ce022 100644 --- a/demo/electron/package.json +++ b/demo/electron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/electron-demo", - "version": "4.3.1", + "version": "4.3.2", "description": "", "main": "app/index.cjs", "private": true, diff --git a/demo/ember/CHANGELOG.md b/demo/ember/CHANGELOG.md index af7da286668..9f98999ccd9 100644 --- a/demo/ember/CHANGELOG.md +++ b/demo/ember/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/ember-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/ember-demo diff --git a/demo/ember/package.json b/demo/ember/package.json index 2f8943bf9b5..18f8eb312a1 100644 --- a/demo/ember/package.json +++ b/demo/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "description": "Ember demo for @tsparticles/ember", "repository": { diff --git a/demo/inferno/CHANGELOG.md b/demo/inferno/CHANGELOG.md index f30fddddbe4..fec25875ac5 100644 --- a/demo/inferno/CHANGELOG.md +++ b/demo/inferno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/inferno-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/inferno-demo diff --git a/demo/inferno/package.json b/demo/inferno/package.json index ea1c8ff8914..0308584b640 100644 --- a/demo/inferno/package.json +++ b/demo/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "description": "> TODO: description", "main": "index.js", diff --git a/demo/ionic/CHANGELOG.md b/demo/ionic/CHANGELOG.md index 015ac823173..16bf3e85497 100644 --- a/demo/ionic/CHANGELOG.md +++ b/demo/ionic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/ionic-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/ionic-demo diff --git a/demo/ionic/package.json b/demo/ionic/package.json index b25ff21bfb6..d7ab45bbb90 100644 --- a/demo/ionic/package.json +++ b/demo/ionic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ionic-demo", - "version": "4.3.1", + "version": "4.3.2", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", "repository": { diff --git a/demo/jquery/CHANGELOG.md b/demo/jquery/CHANGELOG.md index d46c7341f76..a11e715f035 100644 --- a/demo/jquery/CHANGELOG.md +++ b/demo/jquery/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/jquery-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/jquery-demo diff --git a/demo/jquery/package.json b/demo/jquery/package.json index 2d491764563..e40ee15b7f4 100644 --- a/demo/jquery/package.json +++ b/demo/jquery/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/jquery-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/lit/CHANGELOG.md b/demo/lit/CHANGELOG.md index 444439c5099..2ada941a37f 100644 --- a/demo/lit/CHANGELOG.md +++ b/demo/lit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/lit-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/lit-demo diff --git a/demo/lit/package.json b/demo/lit/package.json index a1e0b0034fd..a769693c689 100644 --- a/demo/lit/package.json +++ b/demo/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "description": "A simple web component", "type": "module", diff --git a/demo/nextjs-legacy/CHANGELOG.md b/demo/nextjs-legacy/CHANGELOG.md index 760307a9318..feda4f6f535 100644 --- a/demo/nextjs-legacy/CHANGELOG.md +++ b/demo/nextjs-legacy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nextjs-legacy-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nextjs-legacy-demo diff --git a/demo/nextjs-legacy/package.json b/demo/nextjs-legacy/package.json index 8df1a752018..ef34e4f28c5 100644 --- a/demo/nextjs-legacy/package.json +++ b/demo/nextjs-legacy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs-legacy-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "repository": { "type": "git", diff --git a/demo/nextjs/CHANGELOG.md b/demo/nextjs/CHANGELOG.md index 5cecf13d8ba..610e41fcd1c 100644 --- a/demo/nextjs/CHANGELOG.md +++ b/demo/nextjs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nextjs-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nextjs-demo diff --git a/demo/nextjs/package.json b/demo/nextjs/package.json index c3c5369f437..3a56b3742ca 100644 --- a/demo/nextjs/package.json +++ b/demo/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt2/CHANGELOG.md b/demo/nuxt2/CHANGELOG.md index 31774409ef1..90b17b717c4 100644 --- a/demo/nuxt2/CHANGELOG.md +++ b/demo/nuxt2/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nuxt2-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nuxt2-demo diff --git a/demo/nuxt2/package.json b/demo/nuxt2/package.json index 44b524760dc..85993261329 100644 --- a/demo/nuxt2/package.json +++ b/demo/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt3/CHANGELOG.md b/demo/nuxt3/CHANGELOG.md index cb7284584ac..d0c6788784e 100644 --- a/demo/nuxt3/CHANGELOG.md +++ b/demo/nuxt3/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nuxt3-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nuxt3-demo diff --git a/demo/nuxt3/package.json b/demo/nuxt3/package.json index 3f62cb35140..9535822bf9b 100644 --- a/demo/nuxt3/package.json +++ b/demo/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "type": "module", "repository": { diff --git a/demo/nuxt4/CHANGELOG.md b/demo/nuxt4/CHANGELOG.md index a91c5bc9db1..88042443db1 100644 --- a/demo/nuxt4/CHANGELOG.md +++ b/demo/nuxt4/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nuxt4-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nuxt4-demo diff --git a/demo/nuxt4/package.json b/demo/nuxt4/package.json index f307948145f..d434ab6946d 100644 --- a/demo/nuxt4/package.json +++ b/demo/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "type": "module", "repository": { diff --git a/demo/preact/CHANGELOG.md b/demo/preact/CHANGELOG.md index 835e829821f..445378a7e32 100644 --- a/demo/preact/CHANGELOG.md +++ b/demo/preact/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/preact-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preact-demo diff --git a/demo/preact/package.json b/demo/preact/package.json index 9745c72a013..4f73d2276ed 100644 --- a/demo/preact/package.json +++ b/demo/preact/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/preact-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "type": "module", "description": "> TODO: description", "author": "Matteo Bruni ", diff --git a/demo/qwik/CHANGELOG.md b/demo/qwik/CHANGELOG.md index 4c9692029e0..f251f337812 100644 --- a/demo/qwik/CHANGELOG.md +++ b/demo/qwik/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/qwik-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/qwik-demo diff --git a/demo/qwik/package.json b/demo/qwik/package.json index 726457914d7..3cd55ac198d 100644 --- a/demo/qwik/package.json +++ b/demo/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "type": "module", "repository": { diff --git a/demo/react/CHANGELOG.md b/demo/react/CHANGELOG.md index e4b32ef8bbc..1ba16035d36 100644 --- a/demo/react/CHANGELOG.md +++ b/demo/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/react-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/react-demo diff --git a/demo/react/package.json b/demo/react/package.json index aec1d3b3dae..6414684a4d7 100644 --- a/demo/react/package.json +++ b/demo/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "type": "module", "repository": { diff --git a/demo/riot/CHANGELOG.md b/demo/riot/CHANGELOG.md index ed11a3b2d15..0974fd7152a 100644 --- a/demo/riot/CHANGELOG.md +++ b/demo/riot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/riot-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/riot-demo diff --git a/demo/riot/package.json b/demo/riot/package.json index fb749d9e0fe..d8040537568 100644 --- a/demo/riot/package.json +++ b/demo/riot/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/riot-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "description": "", "main": "index.js", "repository": { diff --git a/demo/solid/CHANGELOG.md b/demo/solid/CHANGELOG.md index ae47986a3d7..ac0754c7e1a 100644 --- a/demo/solid/CHANGELOG.md +++ b/demo/solid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/solid-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/solid-demo diff --git a/demo/solid/package.json b/demo/solid/package.json index c09b7736da2..e3bfbde3239 100644 --- a/demo/solid/package.json +++ b/demo/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "description": "", "repository": { diff --git a/demo/stencil/CHANGELOG.md b/demo/stencil/CHANGELOG.md index b07ad742e12..70f53ad14b7 100644 --- a/demo/stencil/CHANGELOG.md +++ b/demo/stencil/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/stencil-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/stencil-demo diff --git a/demo/stencil/package.json b/demo/stencil/package.json index 6f6a12f3e37..71d7c18c0c5 100644 --- a/demo/stencil/package.json +++ b/demo/stencil/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/stencil-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "description": "Stencil demo for @tsparticles/stencil", "repository": { diff --git a/demo/svelte-kit/CHANGELOG.md b/demo/svelte-kit/CHANGELOG.md index 2bf4bdc8552..ac5d8573143 100644 --- a/demo/svelte-kit/CHANGELOG.md +++ b/demo/svelte-kit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/svelte-kit-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/svelte-kit-demo diff --git a/demo/svelte-kit/package.json b/demo/svelte-kit/package.json index 9d8447178d8..1c6bc5704b1 100644 --- a/demo/svelte-kit/package.json +++ b/demo/svelte-kit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte-kit-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "repository": { "type": "git", diff --git a/demo/svelte/CHANGELOG.md b/demo/svelte/CHANGELOG.md index aeccf7edcf4..176169e834e 100644 --- a/demo/svelte/CHANGELOG.md +++ b/demo/svelte/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/svelte-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/svelte-demo diff --git a/demo/svelte/package.json b/demo/svelte/package.json index 129e0c0db4f..4dec5ad4ae7 100644 --- a/demo/svelte/package.json +++ b/demo/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "repository": { "type": "git", diff --git a/demo/vanilla/CHANGELOG.md b/demo/vanilla/CHANGELOG.md index bbe0e1f3a5a..bd315520b0c 100644 --- a/demo/vanilla/CHANGELOG.md +++ b/demo/vanilla/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/vanilla-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/vanilla-demo diff --git a/demo/vanilla/package.json b/demo/vanilla/package.json index 1b33d8214bc..92b363bd08a 100644 --- a/demo/vanilla/package.json +++ b/demo/vanilla/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vanilla-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/vanilla_new/CHANGELOG.md b/demo/vanilla_new/CHANGELOG.md index 57f92b3f995..68f5f6edc10 100644 --- a/demo/vanilla_new/CHANGELOG.md +++ b/demo/vanilla_new/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/vanilla-new-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/vanilla-new-demo diff --git a/demo/vanilla_new/package.json b/demo/vanilla_new/package.json index 23957a9a9fb..033af7a59d3 100644 --- a/demo/vanilla_new/package.json +++ b/demo/vanilla_new/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vanilla-new-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles Demo Website", "main": "index.html", "scripts": { diff --git a/demo/vite/CHANGELOG.md b/demo/vite/CHANGELOG.md index 5f6081954ca..f56f5d99e63 100644 --- a/demo/vite/CHANGELOG.md +++ b/demo/vite/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/vite-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/vite-demo diff --git a/demo/vite/package.json b/demo/vite/package.json index 04bbbd15ef3..bbfd2791d2b 100644 --- a/demo/vite/package.json +++ b/demo/vite/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vite-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "type": "module", "repository": { "type": "git", diff --git a/demo/vue2/CHANGELOG.md b/demo/vue2/CHANGELOG.md index 52aad85188b..c12977e175d 100644 --- a/demo/vue2/CHANGELOG.md +++ b/demo/vue2/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/vue2-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/vue2-demo diff --git a/demo/vue2/package.json b/demo/vue2/package.json index cb305278b78..359e5843822 100644 --- a/demo/vue2/package.json +++ b/demo/vue2/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vue2-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "description": "VueJS Demo", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/vue3/CHANGELOG.md b/demo/vue3/CHANGELOG.md index 02e4a08bb7c..d49dc3064a9 100644 --- a/demo/vue3/CHANGELOG.md +++ b/demo/vue3/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/vue3-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/vue3-demo diff --git a/demo/vue3/package.json b/demo/vue3/package.json index 7624cddba28..6c05594fa47 100644 --- a/demo/vue3/package.json +++ b/demo/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3-demo", - "version": "4.3.1", + "version": "4.3.2", "private": true, "type": "module", "repository": { diff --git a/demo/webcomponents/CHANGELOG.md b/demo/webcomponents/CHANGELOG.md index 150fc6c0542..a123eb19b20 100644 --- a/demo/webcomponents/CHANGELOG.md +++ b/demo/webcomponents/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/webcomponents-demo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/webcomponents-demo diff --git a/demo/webcomponents/package.json b/demo/webcomponents/package.json index 26cd35c09eb..8c10ebc2ace 100644 --- a/demo/webcomponents/package.json +++ b/demo/webcomponents/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/webcomponents-demo", "private": true, - "version": "4.3.1", + "version": "4.3.2", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/effects/bubble/CHANGELOG.md b/effects/bubble/CHANGELOG.md index d81fafd534f..b8102b4aefb 100644 --- a/effects/bubble/CHANGELOG.md +++ b/effects/bubble/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/effect-bubble + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/effect-bubble diff --git a/effects/bubble/package.dist.json b/effects/bubble/package.dist.json index aa7facda7fa..5c7aabfbec2 100644 --- a/effects/bubble/package.dist.json +++ b/effects/bubble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bubble effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/effects/bubble/package.json b/effects/bubble/package.json index eaab18bede4..71d9873d0de 100644 --- a/effects/bubble/package.json +++ b/effects/bubble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles effect for applying a bubbly, rounded visual effect to particle rendering", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/filter/CHANGELOG.md b/effects/filter/CHANGELOG.md index c90f14bf042..812d17643df 100644 --- a/effects/filter/CHANGELOG.md +++ b/effects/filter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/effect-filter + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/effect-filter diff --git a/effects/filter/package.dist.json b/effects/filter/package.dist.json index 984acb06387..a4927c71fbd 100644 --- a/effects/filter/package.dist.json +++ b/effects/filter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles filter effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/effects/filter/package.json b/effects/filter/package.json index ae93c61f2d9..ddb75a75f7c 100644 --- a/effects/filter/package.json +++ b/effects/filter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles effect for applying CSS filter effects (blur, grayscale, sepia, etc.) to particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/particles/CHANGELOG.md b/effects/particles/CHANGELOG.md index 9ab96d4f3fc..d8896dee70c 100644 --- a/effects/particles/CHANGELOG.md +++ b/effects/particles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/effect-particles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/effect-particles diff --git a/effects/particles/package.dist.json b/effects/particles/package.dist.json index bdfb79e122c..ec7d9ea4fd1 100644 --- a/effects/particles/package.dist.json +++ b/effects/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/effects/particles/package.json b/effects/particles/package.json index 3ff685a74d4..438acbe0960 100644 --- a/effects/particles/package.json +++ b/effects/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles effect for rendering particles as miniature particle clusters, creating fractal-like patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/shadow/CHANGELOG.md b/effects/shadow/CHANGELOG.md index 89af91e1014..def0d793f5c 100644 --- a/effects/shadow/CHANGELOG.md +++ b/effects/shadow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/effect-shadow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/effect-shadow diff --git a/effects/shadow/package.dist.json b/effects/shadow/package.dist.json index e0f6560e898..cee434c73ad 100644 --- a/effects/shadow/package.dist.json +++ b/effects/shadow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shadow effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/effects/shadow/package.json b/effects/shadow/package.json index 98ca182e42d..1c8e213c5bc 100644 --- a/effects/shadow/package.json +++ b/effects/shadow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles effect for adding drop shadows and depth effects to particle rendering", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/trail/CHANGELOG.md b/effects/trail/CHANGELOG.md index c2beb446916..7e99930c434 100644 --- a/effects/trail/CHANGELOG.md +++ b/effects/trail/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/effect-trail + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/effect-trail diff --git a/effects/trail/package.dist.json b/effects/trail/package.dist.json index e7b8483f14d..04769ae9db9 100644 --- a/effects/trail/package.dist.json +++ b/effects/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles trail effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/effects/trail/package.json b/effects/trail/package.json index cdecafd85f3..4bfd6084414 100644 --- a/effects/trail/package.json +++ b/effects/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles effect for creating visual motion trails that follow behind moving particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/engine/CHANGELOG.md b/engine/CHANGELOG.md index 6abb319b562..3f296a3ed9a 100644 --- a/engine/CHANGELOG.md +++ b/engine/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some issues in deepExtend ([4ba3518](https://github.com/tsparticles/tsparticles/commit/4ba351881184f155a0d72894e36bc64a267418df)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/engine diff --git a/engine/package.dist.json b/engine/package.dist.json index 3fc75aea005..260c8950779 100644 --- a/engine/package.dist.json +++ b/engine/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.3.1", + "version": "4.3.2", "description": "Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/engine/package.json b/engine/package.json index cd5e6090e7d..a1d411be22a 100644 --- a/engine/package.json +++ b/engine/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.3.1", + "version": "4.3.2", "description": "Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/integrations/mcp-server/CHANGELOG.md b/integrations/mcp-server/CHANGELOG.md index 7e80a8e09f8..421a0dfb861 100644 --- a/integrations/mcp-server/CHANGELOG.md +++ b/integrations/mcp-server/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed issue in publish workflow and in mcp server ([d3b5672](https://github.com/tsparticles/tsparticles/commit/d3b5672bd61bb847abfa21193c34eabf7aba6896)) +* fixed other issues in mcp server ([18aa336](https://github.com/tsparticles/tsparticles/commit/18aa3367608d070ffacd28e9d1d238ad9ebd6911)) +* fixed other issues in mcp server ([90b52f8](https://github.com/tsparticles/tsparticles/commit/90b52f844fd950638a5f188c40b804d69cc22355)) +* fixed other issues in mcp server ([2063a19](https://github.com/tsparticles/tsparticles/commit/2063a191b59d700bbfab83540c028903717be142)) +* fixed other issues in mcp server ([41f5d3d](https://github.com/tsparticles/tsparticles/commit/41f5d3d54dd9bf57bf6f1e01a09e65d6b9a24a5c)) +* fixed other issues in mcp server ([fb31f51](https://github.com/tsparticles/tsparticles/commit/fb31f51f793a272b42ed3c3faa8e9f4142132eac)) +* fixed other issues in mcp server ([b0c7ef5](https://github.com/tsparticles/tsparticles/commit/b0c7ef5ef98b5bcb87078f65f6f356d94cf27349)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) diff --git a/integrations/mcp-server/package.json b/integrations/mcp-server/package.json index 84b10bd1b17..8ecba474e7b 100644 --- a/integrations/mcp-server/package.json +++ b/integrations/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/mcp-server", - "version": "4.3.1", + "version": "4.3.2", "description": "MCP server for tsParticles - generate options from natural language and suggest required plugins", "homepage": "https://particles.js.org", "type": "module", diff --git a/interactions/external/attract/CHANGELOG.md b/interactions/external/attract/CHANGELOG.md index 3b7d934844b..4c6d5f4bedc 100644 --- a/interactions/external/attract/CHANGELOG.md +++ b/interactions/external/attract/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-attract + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-attract diff --git a/interactions/external/attract/package.dist.json b/interactions/external/attract/package.dist.json index 7552fc0e6bc..2b1f093a857 100644 --- a/interactions/external/attract/package.dist.json +++ b/interactions/external/attract/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-attract", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles attract external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/attract/package.json b/interactions/external/attract/package.json index 049c1f07976..f805f45c998 100644 --- a/interactions/external/attract/package.json +++ b/interactions/external/attract/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-attract", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for attracting particles toward the mouse cursor or touch position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/bounce/CHANGELOG.md b/interactions/external/bounce/CHANGELOG.md index d17740f2a3e..6520a42d4a6 100644 --- a/interactions/external/bounce/CHANGELOG.md +++ b/interactions/external/bounce/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-bounce + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-bounce diff --git a/interactions/external/bounce/package.dist.json b/interactions/external/bounce/package.dist.json index a352e15729e..bcf5fe42c63 100644 --- a/interactions/external/bounce/package.dist.json +++ b/interactions/external/bounce/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bounce", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bounce external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/bounce/package.json b/interactions/external/bounce/package.json index 74a0562e015..7c49373f2cc 100644 --- a/interactions/external/bounce/package.json +++ b/interactions/external/bounce/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bounce", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for bouncing particles away from the mouse cursor or touch area", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/bubble/CHANGELOG.md b/interactions/external/bubble/CHANGELOG.md index a673e27a0f8..00c0c16e593 100644 --- a/interactions/external/bubble/CHANGELOG.md +++ b/interactions/external/bubble/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-bubble + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-bubble diff --git a/interactions/external/bubble/package.dist.json b/interactions/external/bubble/package.dist.json index aeb132a537f..b70a4091459 100644 --- a/interactions/external/bubble/package.dist.json +++ b/interactions/external/bubble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bubble", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bubble external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/bubble/package.json b/interactions/external/bubble/package.json index 5f859d0aaba..e4edcf9530d 100644 --- a/interactions/external/bubble/package.json +++ b/interactions/external/bubble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bubble", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction that enlarges particles near the mouse cursor, creating a bubble effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/cannon/CHANGELOG.md b/interactions/external/cannon/CHANGELOG.md index 2a22967ed77..f2addf54bef 100644 --- a/interactions/external/cannon/CHANGELOG.md +++ b/interactions/external/cannon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-cannon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-cannon diff --git a/interactions/external/cannon/package.dist.json b/interactions/external/cannon/package.dist.json index 0a78a69750b..db5775bb011 100644 --- a/interactions/external/cannon/package.dist.json +++ b/interactions/external/cannon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-cannon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cannon external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/cannon/package.json b/interactions/external/cannon/package.json index e0756ac5a6f..9c8a3c25714 100644 --- a/interactions/external/cannon/package.json +++ b/interactions/external/cannon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-cannon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for shooting particle bursts from click or touch positions", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/connect/CHANGELOG.md b/interactions/external/connect/CHANGELOG.md index ebd42c770dd..861023d5f75 100644 --- a/interactions/external/connect/CHANGELOG.md +++ b/interactions/external/connect/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-connect + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-connect diff --git a/interactions/external/connect/package.dist.json b/interactions/external/connect/package.dist.json index b8cfa1f0fdf..74bd0c28922 100644 --- a/interactions/external/connect/package.dist.json +++ b/interactions/external/connect/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-connect", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles connect external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "dependencies": { - "@tsparticles/canvas-utils": "4.3.1" + "@tsparticles/canvas-utils": "4.3.2" } } diff --git a/interactions/external/connect/package.json b/interactions/external/connect/package.json index e3f53f4c62e..85be49cc530 100644 --- a/interactions/external/connect/package.json +++ b/interactions/external/connect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-connect", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction that draws connecting lines between particles near the cursor", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/destroy/CHANGELOG.md b/interactions/external/destroy/CHANGELOG.md index bbd2766b6e7..2a36709bd9c 100644 --- a/interactions/external/destroy/CHANGELOG.md +++ b/interactions/external/destroy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-destroy + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-destroy diff --git a/interactions/external/destroy/package.dist.json b/interactions/external/destroy/package.dist.json index 419bf6b4da3..d1f17fcad5b 100644 --- a/interactions/external/destroy/package.dist.json +++ b/interactions/external/destroy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-destroy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles destroy external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/destroy/package.json b/interactions/external/destroy/package.json index be857bde4f5..f82077a7c36 100644 --- a/interactions/external/destroy/package.json +++ b/interactions/external/destroy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-destroy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for destroying particles on mouse click or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/drag/CHANGELOG.md b/interactions/external/drag/CHANGELOG.md index e097edb4101..bef1ad1f89d 100644 --- a/interactions/external/drag/CHANGELOG.md +++ b/interactions/external/drag/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-drag + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-drag diff --git a/interactions/external/drag/package.dist.json b/interactions/external/drag/package.dist.json index 736eb5b6c04..ec4e62f123d 100644 --- a/interactions/external/drag/package.dist.json +++ b/interactions/external/drag/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-drag", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles drag external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/drag/package.json b/interactions/external/drag/package.json index a7a15c5a139..b7ae55f87b0 100644 --- a/interactions/external/drag/package.json +++ b/interactions/external/drag/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-drag", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for dragging particles with the mouse or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/grab/CHANGELOG.md b/interactions/external/grab/CHANGELOG.md index 02356bd53b3..ab4f1b070e6 100644 --- a/interactions/external/grab/CHANGELOG.md +++ b/interactions/external/grab/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-grab + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-grab diff --git a/interactions/external/grab/package.dist.json b/interactions/external/grab/package.dist.json index ee6fc19493b..6109be971fc 100644 --- a/interactions/external/grab/package.dist.json +++ b/interactions/external/grab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-grab", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles grab external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "dependencies": { - "@tsparticles/canvas-utils": "4.3.1" + "@tsparticles/canvas-utils": "4.3.2" } } diff --git a/interactions/external/grab/package.json b/interactions/external/grab/package.json index 09c56a7f0b1..623e4e56320 100644 --- a/interactions/external/grab/package.json +++ b/interactions/external/grab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-grab", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for pulling particles toward the cursor, creating a grabbing effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/parallax/CHANGELOG.md b/interactions/external/parallax/CHANGELOG.md index ffae95689b2..c95a8a7e0cf 100644 --- a/interactions/external/parallax/CHANGELOG.md +++ b/interactions/external/parallax/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-parallax + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-parallax diff --git a/interactions/external/parallax/package.dist.json b/interactions/external/parallax/package.dist.json index 98ab0afaab2..a4ed1136e7b 100644 --- a/interactions/external/parallax/package.dist.json +++ b/interactions/external/parallax/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-parallax", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles parallax external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/parallax/package.json b/interactions/external/parallax/package.json index 13211bcca3b..c56182ea37e 100644 --- a/interactions/external/parallax/package.json +++ b/interactions/external/parallax/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-parallax", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction creating a depth parallax effect based on cursor or scroll position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/particle/CHANGELOG.md b/interactions/external/particle/CHANGELOG.md index 2f0c10e7c97..691a719c502 100644 --- a/interactions/external/particle/CHANGELOG.md +++ b/interactions/external/particle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-particle + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-particle diff --git a/interactions/external/particle/package.dist.json b/interactions/external/particle/package.dist.json index ac3c5be7b1c..033ea6011ce 100644 --- a/interactions/external/particle/package.dist.json +++ b/interactions/external/particle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-particle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particle external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/particle/package.json b/interactions/external/particle/package.json index 9625829f856..8e945e7a391 100644 --- a/interactions/external/particle/package.json +++ b/interactions/external/particle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-particle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for spawning new particles on mouse click or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/pause/CHANGELOG.md b/interactions/external/pause/CHANGELOG.md index 7fc90b24592..30b5e737faf 100644 --- a/interactions/external/pause/CHANGELOG.md +++ b/interactions/external/pause/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-pause + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-pause diff --git a/interactions/external/pause/package.dist.json b/interactions/external/pause/package.dist.json index f453b909561..e45fdd5a4c4 100644 --- a/interactions/external/pause/package.dist.json +++ b/interactions/external/pause/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pause", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pause external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/pause/package.json b/interactions/external/pause/package.json index 79839b7cffa..ff7db501584 100644 --- a/interactions/external/pause/package.json +++ b/interactions/external/pause/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pause", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for pausing and resuming particle animation on mouse or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/pop/CHANGELOG.md b/interactions/external/pop/CHANGELOG.md index 1536fde3313..7d0d007a97a 100644 --- a/interactions/external/pop/CHANGELOG.md +++ b/interactions/external/pop/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-pop + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-pop diff --git a/interactions/external/pop/package.dist.json b/interactions/external/pop/package.dist.json index 3f05846dd53..bc6db5abc07 100644 --- a/interactions/external/pop/package.dist.json +++ b/interactions/external/pop/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pop", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pop external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/pop/package.json b/interactions/external/pop/package.json index 3d65cb50e2b..ed992f7309c 100644 --- a/interactions/external/pop/package.json +++ b/interactions/external/pop/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pop", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for popping or exploding particles on mouse click", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/push/CHANGELOG.md b/interactions/external/push/CHANGELOG.md index 3857b6ed880..95dae03df4e 100644 --- a/interactions/external/push/CHANGELOG.md +++ b/interactions/external/push/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-push + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-push diff --git a/interactions/external/push/package.dist.json b/interactions/external/push/package.dist.json index b1e3684a6b8..6f54b8f0b04 100644 --- a/interactions/external/push/package.dist.json +++ b/interactions/external/push/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-push", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles push external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/push/package.json b/interactions/external/push/package.json index b37733fca83..71399cff61e 100644 --- a/interactions/external/push/package.json +++ b/interactions/external/push/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-push", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for pushing particles away from the cursor position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/remove/CHANGELOG.md b/interactions/external/remove/CHANGELOG.md index ca296d3576a..186592dd9c1 100644 --- a/interactions/external/remove/CHANGELOG.md +++ b/interactions/external/remove/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-remove + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-remove diff --git a/interactions/external/remove/package.dist.json b/interactions/external/remove/package.dist.json index 90e4af1c240..530e164a9f1 100644 --- a/interactions/external/remove/package.dist.json +++ b/interactions/external/remove/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-remove", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles remove external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/remove/package.json b/interactions/external/remove/package.json index 6d3ecdb57fc..317931571f8 100644 --- a/interactions/external/remove/package.json +++ b/interactions/external/remove/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-remove", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for removing particles on mouse click or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/repulse/CHANGELOG.md b/interactions/external/repulse/CHANGELOG.md index 42724edf82e..86bd64a7fbe 100644 --- a/interactions/external/repulse/CHANGELOG.md +++ b/interactions/external/repulse/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-repulse + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-repulse diff --git a/interactions/external/repulse/package.dist.json b/interactions/external/repulse/package.dist.json index 49903c3fbb1..f8370ac422a 100644 --- a/interactions/external/repulse/package.dist.json +++ b/interactions/external/repulse/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-repulse", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles repulse external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/repulse/package.json b/interactions/external/repulse/package.json index 94f8fcf797a..ccebf6a239d 100644 --- a/interactions/external/repulse/package.json +++ b/interactions/external/repulse/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-repulse", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for repelling particles away from the cursor or touch position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/slow/CHANGELOG.md b/interactions/external/slow/CHANGELOG.md index f6bd9f3a214..a2ae1ef578b 100644 --- a/interactions/external/slow/CHANGELOG.md +++ b/interactions/external/slow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-slow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-slow diff --git a/interactions/external/slow/package.dist.json b/interactions/external/slow/package.dist.json index da9eac93bfe..03d813219a4 100644 --- a/interactions/external/slow/package.dist.json +++ b/interactions/external/slow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-slow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles slow external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/slow/package.json b/interactions/external/slow/package.json index 75c14668482..7718abbdb99 100644 --- a/interactions/external/slow/package.json +++ b/interactions/external/slow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-slow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction for slowing down particles near the mouse cursor", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/trail/CHANGELOG.md b/interactions/external/trail/CHANGELOG.md index 8f15fc7a8bc..462a798efd2 100644 --- a/interactions/external/trail/CHANGELOG.md +++ b/interactions/external/trail/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-external-trail + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-external-trail diff --git a/interactions/external/trail/package.dist.json b/interactions/external/trail/package.dist.json index cfed38ad2bb..31983f80c88 100644 --- a/interactions/external/trail/package.dist.json +++ b/interactions/external/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-trail", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles trail external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/external/trail/package.json b/interactions/external/trail/package.json index dec37a917d1..b6a67fd978e 100644 --- a/interactions/external/trail/package.json +++ b/interactions/external/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-trail", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles external interaction that creates trailing particle effects behind the cursor movement", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/light/CHANGELOG.md b/interactions/light/CHANGELOG.md index de8cb58efc4..7132652a247 100644 --- a/interactions/light/CHANGELOG.md +++ b/interactions/light/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-light + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-light diff --git a/interactions/light/package.dist.json b/interactions/light/package.dist.json index 963fdaddd47..74fe2a4fa13 100644 --- a/interactions/light/package.dist.json +++ b/interactions/light/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles Light interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/interactions/light/package.json b/interactions/light/package.json index 971e23d4743..8dee5da2021 100644 --- a/interactions/light/package.json +++ b/interactions/light/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles interaction that illuminates particles near a light source, simulating lighting effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/attract/CHANGELOG.md b/interactions/particles/attract/CHANGELOG.md index 2ecae6f2335..1a4c31b9276 100644 --- a/interactions/particles/attract/CHANGELOG.md +++ b/interactions/particles/attract/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-particles-attract + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-particles-attract diff --git a/interactions/particles/attract/package.dist.json b/interactions/particles/attract/package.dist.json index 822901ead17..d186d83c5e5 100644 --- a/interactions/particles/attract/package.dist.json +++ b/interactions/particles/attract/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-attract", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles attract particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -93,8 +93,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/attract/package.json b/interactions/particles/attract/package.json index 8ebe9a198a1..e65db8b712f 100644 --- a/interactions/particles/attract/package.json +++ b/interactions/particles/attract/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-attract", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particle interaction for attracting particles toward each other", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/collisions/CHANGELOG.md b/interactions/particles/collisions/CHANGELOG.md index b6a7c5b47f1..43f25a1f304 100644 --- a/interactions/particles/collisions/CHANGELOG.md +++ b/interactions/particles/collisions/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-particles-collisions + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-particles-collisions diff --git a/interactions/particles/collisions/package.dist.json b/interactions/particles/collisions/package.dist.json index 32c1cc0748a..4c7536c0949 100644 --- a/interactions/particles/collisions/package.dist.json +++ b/interactions/particles/collisions/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-collisions", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles collisions particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" } } diff --git a/interactions/particles/collisions/package.json b/interactions/particles/collisions/package.json index f3b86bf7db5..7559785f859 100644 --- a/interactions/particles/collisions/package.json +++ b/interactions/particles/collisions/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-collisions", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particle interaction for detecting and resolving collisions between particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/links/CHANGELOG.md b/interactions/particles/links/CHANGELOG.md index 8576779c252..6152c68ab2b 100644 --- a/interactions/particles/links/CHANGELOG.md +++ b/interactions/particles/links/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-particles-links + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-particles-links diff --git a/interactions/particles/links/package.dist.json b/interactions/particles/links/package.dist.json index 8e657ab01c0..d1c6fb7e16f 100644 --- a/interactions/particles/links/package.dist.json +++ b/interactions/particles/links/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-links", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles links particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "dependencies": { - "@tsparticles/canvas-utils": "4.3.1" + "@tsparticles/canvas-utils": "4.3.2" } } diff --git a/interactions/particles/links/package.json b/interactions/particles/links/package.json index 333782bb1f3..495de5e922a 100644 --- a/interactions/particles/links/package.json +++ b/interactions/particles/links/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-links", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particle interaction that draws connecting lines between nearby particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/repulse/CHANGELOG.md b/interactions/particles/repulse/CHANGELOG.md index a55ca7e04d6..76c96aa311c 100644 --- a/interactions/particles/repulse/CHANGELOG.md +++ b/interactions/particles/repulse/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/interaction-particles-repulse + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/interaction-particles-repulse diff --git a/interactions/particles/repulse/package.dist.json b/interactions/particles/repulse/package.dist.json index 0be77f44df2..de1f7874f16 100644 --- a/interactions/particles/repulse/package.dist.json +++ b/interactions/particles/repulse/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-repulse", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles repulse particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/repulse/package.json b/interactions/particles/repulse/package.json index 0da1641ddde..b551fdf8cfb 100644 --- a/interactions/particles/repulse/package.json +++ b/interactions/particles/repulse/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-repulse", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particle interaction for repelling particles away from each other", "homepage": "https://particles.js.org", "scripts": { diff --git a/lerna.json b/lerna.json index 4bdb831d8f2..1f5f4ffff91 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.3.1", + "version": "4.3.2", "npmClient": "pnpm", "conventionalCommits": true, "command": { diff --git a/package.json b/package.json index 71334f923b9..84059713999 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "name": "@tsparticles/workspace", "description": "tsParticles monorepository", - "version": "4.3.1", + "version": "4.3.2", "type": "module", "scripts": { "build": "pnpm run prettify:readme && nx run-many -t build --parallel=50%", diff --git a/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md b/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md index acf162b9418..6b7a50e9fe9 100644 --- a/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-amber + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-amber diff --git a/palettes/atmosphere/coloredSmokeAmber/package.dist.json b/palettes/atmosphere/coloredSmokeAmber/package.dist.json index 63e0b79bd45..3ae7baded80 100644 --- a/palettes/atmosphere/coloredSmokeAmber/package.dist.json +++ b/palettes/atmosphere/coloredSmokeAmber/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-amber", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke amber palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeAmber/package.json b/palettes/atmosphere/coloredSmokeAmber/package.json index 0b4375bd242..8beeef8569f 100644 --- a/palettes/atmosphere/coloredSmokeAmber/package.json +++ b/palettes/atmosphere/coloredSmokeAmber/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-amber", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke amber palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md b/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md index cc4c4ffc2c1..3fa2a04665b 100644 --- a/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-blue + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-blue diff --git a/palettes/atmosphere/coloredSmokeBlue/package.dist.json b/palettes/atmosphere/coloredSmokeBlue/package.dist.json index 4eebe91ad83..5294c812315 100644 --- a/palettes/atmosphere/coloredSmokeBlue/package.dist.json +++ b/palettes/atmosphere/coloredSmokeBlue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-blue", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeBlue/package.json b/palettes/atmosphere/coloredSmokeBlue/package.json index dc778a63d34..232b773caeb 100644 --- a/palettes/atmosphere/coloredSmokeBlue/package.json +++ b/palettes/atmosphere/coloredSmokeBlue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-blue", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md b/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md index 7e734aaa685..095f31d532a 100644 --- a/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-green + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-green diff --git a/palettes/atmosphere/coloredSmokeGreen/package.dist.json b/palettes/atmosphere/coloredSmokeGreen/package.dist.json index e98f35e5d0d..d1cea06bb7d 100644 --- a/palettes/atmosphere/coloredSmokeGreen/package.dist.json +++ b/palettes/atmosphere/coloredSmokeGreen/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeGreen/package.json b/palettes/atmosphere/coloredSmokeGreen/package.json index bd53e8e3cf0..ad6448ec52a 100644 --- a/palettes/atmosphere/coloredSmokeGreen/package.json +++ b/palettes/atmosphere/coloredSmokeGreen/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md b/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md index 57a760a6431..6e1c4728a1c 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-magenta + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-magenta diff --git a/palettes/atmosphere/coloredSmokeMagenta/package.dist.json b/palettes/atmosphere/coloredSmokeMagenta/package.dist.json index a9ddd59f69a..a65c4d323a0 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/package.dist.json +++ b/palettes/atmosphere/coloredSmokeMagenta/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-magenta", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke - magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeMagenta/package.json b/palettes/atmosphere/coloredSmokeMagenta/package.json index 1e887693d48..6feb9739d03 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/package.json +++ b/palettes/atmosphere/coloredSmokeMagenta/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-magenta", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke - magenta palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md b/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md index bf345f280ff..cc1bb6d0631 100644 --- a/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-orange + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-orange diff --git a/palettes/atmosphere/coloredSmokeOrange/package.dist.json b/palettes/atmosphere/coloredSmokeOrange/package.dist.json index 8b52a03e3b7..4330c1c9b3b 100644 --- a/palettes/atmosphere/coloredSmokeOrange/package.dist.json +++ b/palettes/atmosphere/coloredSmokeOrange/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-orange", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke orange palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeOrange/package.json b/palettes/atmosphere/coloredSmokeOrange/package.json index 174f7105d4f..16cde3174a6 100644 --- a/palettes/atmosphere/coloredSmokeOrange/package.json +++ b/palettes/atmosphere/coloredSmokeOrange/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-orange", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke orange palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md b/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md index d7756ed43cd..016e6169893 100644 --- a/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-purple + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-purple diff --git a/palettes/atmosphere/coloredSmokePurple/package.dist.json b/palettes/atmosphere/coloredSmokePurple/package.dist.json index 44759334d14..b428bf537ea 100644 --- a/palettes/atmosphere/coloredSmokePurple/package.dist.json +++ b/palettes/atmosphere/coloredSmokePurple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-purple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokePurple/package.json b/palettes/atmosphere/coloredSmokePurple/package.json index 801d10e8701..8b63e186371 100644 --- a/palettes/atmosphere/coloredSmokePurple/package.json +++ b/palettes/atmosphere/coloredSmokePurple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-purple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md b/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md index 298e807dace..f22696eb439 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-rainbow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-rainbow diff --git a/palettes/atmosphere/coloredSmokeRainbow/package.dist.json b/palettes/atmosphere/coloredSmokeRainbow/package.dist.json index 5633d3080f5..8ed6d486950 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/package.dist.json +++ b/palettes/atmosphere/coloredSmokeRainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeRainbow/package.json b/palettes/atmosphere/coloredSmokeRainbow/package.json index 9f260cd02fe..3e4294b0b78 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/package.json +++ b/palettes/atmosphere/coloredSmokeRainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md b/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md index cecbf72867f..6107fa54942 100644 --- a/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-red + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-red diff --git a/palettes/atmosphere/coloredSmokeRed/package.dist.json b/palettes/atmosphere/coloredSmokeRed/package.dist.json index f65ada76bd7..50f7ff00b01 100644 --- a/palettes/atmosphere/coloredSmokeRed/package.dist.json +++ b/palettes/atmosphere/coloredSmokeRed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeRed/package.json b/palettes/atmosphere/coloredSmokeRed/package.json index 477c75f02ea..f74851eb7dd 100644 --- a/palettes/atmosphere/coloredSmokeRed/package.json +++ b/palettes/atmosphere/coloredSmokeRed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md b/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md index 9e2bda64b39..eb075c72175 100644 --- a/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-teal + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-teal diff --git a/palettes/atmosphere/coloredSmokeTeal/package.dist.json b/palettes/atmosphere/coloredSmokeTeal/package.dist.json index 3caf784c01c..0f65418933c 100644 --- a/palettes/atmosphere/coloredSmokeTeal/package.dist.json +++ b/palettes/atmosphere/coloredSmokeTeal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-teal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke - teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeTeal/package.json b/palettes/atmosphere/coloredSmokeTeal/package.json index 81c232b1ed2..05fd37455ea 100644 --- a/palettes/atmosphere/coloredSmokeTeal/package.json +++ b/palettes/atmosphere/coloredSmokeTeal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-teal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles colored smoke - teal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/dustHaze/CHANGELOG.md b/palettes/atmosphere/dustHaze/CHANGELOG.md index 30c85da0d3f..f2c12ff66c0 100644 --- a/palettes/atmosphere/dustHaze/CHANGELOG.md +++ b/palettes/atmosphere/dustHaze/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-dust-haze + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-dust-haze diff --git a/palettes/atmosphere/dustHaze/package.dist.json b/palettes/atmosphere/dustHaze/package.dist.json index 608f82f76a9..162f93a5aab 100644 --- a/palettes/atmosphere/dustHaze/package.dist.json +++ b/palettes/atmosphere/dustHaze/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dust-haze", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dust haze atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/dustHaze/package.json b/palettes/atmosphere/dustHaze/package.json index a4ef523eaa0..15f8561b0a1 100644 --- a/palettes/atmosphere/dustHaze/package.json +++ b/palettes/atmosphere/dustHaze/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dust-haze", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dust haze atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/fogMorning/CHANGELOG.md b/palettes/atmosphere/fogMorning/CHANGELOG.md index c77cbb420aa..4179de22daf 100644 --- a/palettes/atmosphere/fogMorning/CHANGELOG.md +++ b/palettes/atmosphere/fogMorning/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fog-morning + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fog-morning diff --git a/palettes/atmosphere/fogMorning/package.dist.json b/palettes/atmosphere/fogMorning/package.dist.json index 904174fe411..db86f7a8fc2 100644 --- a/palettes/atmosphere/fogMorning/package.dist.json +++ b/palettes/atmosphere/fogMorning/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-morning", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles morning fog atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/fogMorning/package.json b/palettes/atmosphere/fogMorning/package.json index a84f7d061b9..8aeae9f82cd 100644 --- a/palettes/atmosphere/fogMorning/package.json +++ b/palettes/atmosphere/fogMorning/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-morning", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles morning fog atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/volcanicAsh/CHANGELOG.md b/palettes/atmosphere/volcanicAsh/CHANGELOG.md index 4aaf90a42a2..87c45cfe0a8 100644 --- a/palettes/atmosphere/volcanicAsh/CHANGELOG.md +++ b/palettes/atmosphere/volcanicAsh/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-volcanic-ash + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-volcanic-ash diff --git a/palettes/atmosphere/volcanicAsh/package.dist.json b/palettes/atmosphere/volcanicAsh/package.dist.json index a33683208fa..30161beb245 100644 --- a/palettes/atmosphere/volcanicAsh/package.dist.json +++ b/palettes/atmosphere/volcanicAsh/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-volcanic-ash", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles volcanic ash atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/volcanicAsh/package.json b/palettes/atmosphere/volcanicAsh/package.json index b057e50de90..52f58a77c7b 100644 --- a/palettes/atmosphere/volcanicAsh/package.json +++ b/palettes/atmosphere/volcanicAsh/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-volcanic-ash", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles volcanic ash atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/heatDuality/CHANGELOG.md b/palettes/atmospheric/heatDuality/CHANGELOG.md index 961f52b9a03..642dad2798b 100644 --- a/palettes/atmospheric/heatDuality/CHANGELOG.md +++ b/palettes/atmospheric/heatDuality/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-heat-duality + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-heat-duality diff --git a/palettes/atmospheric/heatDuality/package.dist.json b/palettes/atmospheric/heatDuality/package.dist.json index 97bb93e4a27..024961a38cf 100644 --- a/palettes/atmospheric/heatDuality/package.dist.json +++ b/palettes/atmospheric/heatDuality/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-duality", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles heat duality palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/heatDuality/package.json b/palettes/atmospheric/heatDuality/package.json index e4e5bace5d6..d8e02ada1da 100644 --- a/palettes/atmospheric/heatDuality/package.json +++ b/palettes/atmospheric/heatDuality/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-duality", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles heat duality palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/heatHaze/CHANGELOG.md b/palettes/atmospheric/heatHaze/CHANGELOG.md index 6ccab7f2fc0..023d8f8ba01 100644 --- a/palettes/atmospheric/heatHaze/CHANGELOG.md +++ b/palettes/atmospheric/heatHaze/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-heat-haze + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-heat-haze diff --git a/palettes/atmospheric/heatHaze/package.dist.json b/palettes/atmospheric/heatHaze/package.dist.json index a6998aa44c5..8faf075c7b4 100644 --- a/palettes/atmospheric/heatHaze/package.dist.json +++ b/palettes/atmospheric/heatHaze/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-haze", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles heat haze palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/heatHaze/package.json b/palettes/atmospheric/heatHaze/package.json index 3f02cb4b1a1..221ec56bac5 100644 --- a/palettes/atmospheric/heatHaze/package.json +++ b/palettes/atmospheric/heatHaze/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-haze", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles heat haze palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/lightning/CHANGELOG.md b/palettes/atmospheric/lightning/CHANGELOG.md index ae9a96d5c06..26297ae6610 100644 --- a/palettes/atmospheric/lightning/CHANGELOG.md +++ b/palettes/atmospheric/lightning/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-lightning + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-lightning diff --git a/palettes/atmospheric/lightning/package.dist.json b/palettes/atmospheric/lightning/package.dist.json index ec385aea229..f8683354d82 100644 --- a/palettes/atmospheric/lightning/package.dist.json +++ b/palettes/atmospheric/lightning/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lightning", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lightning palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/lightning/package.json b/palettes/atmospheric/lightning/package.json index 0d7f5d2abcf..4e3a6c19fa6 100644 --- a/palettes/atmospheric/lightning/package.json +++ b/palettes/atmospheric/lightning/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lightning", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lightning palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/shockwave/CHANGELOG.md b/palettes/atmospheric/shockwave/CHANGELOG.md index be7a86d5a07..60e1f9f54c0 100644 --- a/palettes/atmospheric/shockwave/CHANGELOG.md +++ b/palettes/atmospheric/shockwave/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-shockwave + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-shockwave diff --git a/palettes/atmospheric/shockwave/package.dist.json b/palettes/atmospheric/shockwave/package.dist.json index 15fbade1a23..336742c0dfc 100644 --- a/palettes/atmospheric/shockwave/package.dist.json +++ b/palettes/atmospheric/shockwave/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shockwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/shockwave/package.json b/palettes/atmospheric/shockwave/package.json index 0445174a7bc..7af28415296 100644 --- a/palettes/atmospheric/shockwave/package.json +++ b/palettes/atmospheric/shockwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shockwave palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/smokeCold/CHANGELOG.md b/palettes/atmospheric/smokeCold/CHANGELOG.md index d8b75ecb858..a3d44f19d47 100644 --- a/palettes/atmospheric/smokeCold/CHANGELOG.md +++ b/palettes/atmospheric/smokeCold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-smoke-cold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-smoke-cold diff --git a/palettes/atmospheric/smokeCold/package.dist.json b/palettes/atmospheric/smokeCold/package.dist.json index 625988c2786..94ad6328d0e 100644 --- a/palettes/atmospheric/smokeCold/package.dist.json +++ b/palettes/atmospheric/smokeCold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-cold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles smoke - cold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/smokeCold/package.json b/palettes/atmospheric/smokeCold/package.json index 2699105c1e0..a32234d886a 100644 --- a/palettes/atmospheric/smokeCold/package.json +++ b/palettes/atmospheric/smokeCold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-cold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles smoke - cold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/smokeWarm/CHANGELOG.md b/palettes/atmospheric/smokeWarm/CHANGELOG.md index b2c6867a2a8..40f31014bbe 100644 --- a/palettes/atmospheric/smokeWarm/CHANGELOG.md +++ b/palettes/atmospheric/smokeWarm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-smoke-warm + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-smoke-warm diff --git a/palettes/atmospheric/smokeWarm/package.dist.json b/palettes/atmospheric/smokeWarm/package.dist.json index 5e81469f66b..bc1b52bd41f 100644 --- a/palettes/atmospheric/smokeWarm/package.dist.json +++ b/palettes/atmospheric/smokeWarm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-warm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles smoke - warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/smokeWarm/package.json b/palettes/atmospheric/smokeWarm/package.json index 1629faf0699..bdcb3b8966a 100644 --- a/palettes/atmospheric/smokeWarm/package.json +++ b/palettes/atmospheric/smokeWarm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-warm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles smoke - warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/sunriseGold/CHANGELOG.md b/palettes/atmospheric/sunriseGold/CHANGELOG.md index 9c5dec105d2..4c12453940a 100644 --- a/palettes/atmospheric/sunriseGold/CHANGELOG.md +++ b/palettes/atmospheric/sunriseGold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-sunrise-gold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-sunrise-gold diff --git a/palettes/atmospheric/sunriseGold/package.dist.json b/palettes/atmospheric/sunriseGold/package.dist.json index 90b84b19674..4b8b4d464c5 100644 --- a/palettes/atmospheric/sunriseGold/package.dist.json +++ b/palettes/atmospheric/sunriseGold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunrise-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sunrise gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/sunriseGold/package.json b/palettes/atmospheric/sunriseGold/package.json index bd805584db0..266556d11ce 100644 --- a/palettes/atmospheric/sunriseGold/package.json +++ b/palettes/atmospheric/sunriseGold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunrise-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sunrise gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/sunsetBinary/CHANGELOG.md b/palettes/atmospheric/sunsetBinary/CHANGELOG.md index a09ff00bb11..738ccfabbda 100644 --- a/palettes/atmospheric/sunsetBinary/CHANGELOG.md +++ b/palettes/atmospheric/sunsetBinary/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-sunset-binary + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-sunset-binary diff --git a/palettes/atmospheric/sunsetBinary/package.dist.json b/palettes/atmospheric/sunsetBinary/package.dist.json index 9f5f0442d12..2df120c29a1 100644 --- a/palettes/atmospheric/sunsetBinary/package.dist.json +++ b/palettes/atmospheric/sunsetBinary/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunset-binary", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sunset binary palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/sunsetBinary/package.json b/palettes/atmospheric/sunsetBinary/package.json index 3ac0323f0c7..ffcf6cf5061 100644 --- a/palettes/atmospheric/sunsetBinary/package.json +++ b/palettes/atmospheric/sunsetBinary/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunset-binary", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sunset binary palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/thermalMap/CHANGELOG.md b/palettes/atmospheric/thermalMap/CHANGELOG.md index 876cafcd682..bd27c6d0873 100644 --- a/palettes/atmospheric/thermalMap/CHANGELOG.md +++ b/palettes/atmospheric/thermalMap/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-thermal-map + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-thermal-map diff --git a/palettes/atmospheric/thermalMap/package.dist.json b/palettes/atmospheric/thermalMap/package.dist.json index cbbad760f31..bad52b39e44 100644 --- a/palettes/atmospheric/thermalMap/package.dist.json +++ b/palettes/atmospheric/thermalMap/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thermal-map", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles thermal map - cold to hot palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/thermalMap/package.json b/palettes/atmospheric/thermalMap/package.json index 6fe550b37ce..c43a33372d5 100644 --- a/palettes/atmospheric/thermalMap/package.json +++ b/palettes/atmospheric/thermalMap/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thermal-map", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles thermal map - cold to hot palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/thunderstorm/CHANGELOG.md b/palettes/atmospheric/thunderstorm/CHANGELOG.md index f1e2ae3e950..a68f2082d85 100644 --- a/palettes/atmospheric/thunderstorm/CHANGELOG.md +++ b/palettes/atmospheric/thunderstorm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-thunderstorm + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-thunderstorm diff --git a/palettes/atmospheric/thunderstorm/package.dist.json b/palettes/atmospheric/thunderstorm/package.dist.json index 54f4a73108a..fd038a923fe 100644 --- a/palettes/atmospheric/thunderstorm/package.dist.json +++ b/palettes/atmospheric/thunderstorm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thunderstorm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles thunderstorm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/thunderstorm/package.json b/palettes/atmospheric/thunderstorm/package.json index f78cd7f6fad..f2c3d955dd8 100644 --- a/palettes/atmospheric/thunderstorm/package.json +++ b/palettes/atmospheric/thunderstorm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thunderstorm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles thunderstorm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/default/CHANGELOG.md b/palettes/confetti/default/CHANGELOG.md index 03f436fc1a7..e93b299fc5e 100644 --- a/palettes/confetti/default/CHANGELOG.md +++ b/palettes/confetti/default/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti diff --git a/palettes/confetti/default/package.dist.json b/palettes/confetti/default/package.dist.json index 14d2b918476..504c032bd70 100644 --- a/palettes/confetti/default/package.dist.json +++ b/palettes/confetti/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/default/package.json b/palettes/confetti/default/package.json index 7271b29c7fc..c585c49fa72 100644 --- a/palettes/confetti/default/package.json +++ b/palettes/confetti/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/gold/CHANGELOG.md b/palettes/confetti/gold/CHANGELOG.md index 22868e9436b..92f662de72c 100644 --- a/palettes/confetti/gold/CHANGELOG.md +++ b/palettes/confetti/gold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-gold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-gold diff --git a/palettes/confetti/gold/package.dist.json b/palettes/confetti/gold/package.dist.json index e39b0a8d770..d6b2628e20a 100644 --- a/palettes/confetti/gold/package.dist.json +++ b/palettes/confetti/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/gold/package.json b/palettes/confetti/gold/package.json index 40ce7085c92..8e41073c826 100644 --- a/palettes/confetti/gold/package.json +++ b/palettes/confetti/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeBlue/CHANGELOG.md b/palettes/confetti/monochromeBlue/CHANGELOG.md index 21a2df5ac43..3d7a1e72cda 100644 --- a/palettes/confetti/monochromeBlue/CHANGELOG.md +++ b/palettes/confetti/monochromeBlue/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-blue + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-blue diff --git a/palettes/confetti/monochromeBlue/package.dist.json b/palettes/confetti/monochromeBlue/package.dist.json index c7973457d0f..8cd59e6b8bd 100644 --- a/palettes/confetti/monochromeBlue/package.dist.json +++ b/palettes/confetti/monochromeBlue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-blue", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeBlue/package.json b/palettes/confetti/monochromeBlue/package.json index 3e751fb731b..0aec8ae0d95 100644 --- a/palettes/confetti/monochromeBlue/package.json +++ b/palettes/confetti/monochromeBlue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-blue", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeGreen/CHANGELOG.md b/palettes/confetti/monochromeGreen/CHANGELOG.md index 8c0f2830711..9a4f193b315 100644 --- a/palettes/confetti/monochromeGreen/CHANGELOG.md +++ b/palettes/confetti/monochromeGreen/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-green + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-green diff --git a/palettes/confetti/monochromeGreen/package.dist.json b/palettes/confetti/monochromeGreen/package.dist.json index 063163d38cb..b02358f298f 100644 --- a/palettes/confetti/monochromeGreen/package.dist.json +++ b/palettes/confetti/monochromeGreen/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeGreen/package.json b/palettes/confetti/monochromeGreen/package.json index 2225012e19d..a9f961e0ea7 100644 --- a/palettes/confetti/monochromeGreen/package.json +++ b/palettes/confetti/monochromeGreen/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromePink/CHANGELOG.md b/palettes/confetti/monochromePink/CHANGELOG.md index f42a5c6d9a7..a7a874eadbb 100644 --- a/palettes/confetti/monochromePink/CHANGELOG.md +++ b/palettes/confetti/monochromePink/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-pink + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-pink diff --git a/palettes/confetti/monochromePink/package.dist.json b/palettes/confetti/monochromePink/package.dist.json index ff0ba3470d1..8dfe4c5b02b 100644 --- a/palettes/confetti/monochromePink/package.dist.json +++ b/palettes/confetti/monochromePink/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-pink", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome pink palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromePink/package.json b/palettes/confetti/monochromePink/package.json index 80443551b05..d2b46057227 100644 --- a/palettes/confetti/monochromePink/package.json +++ b/palettes/confetti/monochromePink/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-pink", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome pink palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromePurple/CHANGELOG.md b/palettes/confetti/monochromePurple/CHANGELOG.md index 62c44c3a1ba..e731630df40 100644 --- a/palettes/confetti/monochromePurple/CHANGELOG.md +++ b/palettes/confetti/monochromePurple/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-purple + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-purple diff --git a/palettes/confetti/monochromePurple/package.dist.json b/palettes/confetti/monochromePurple/package.dist.json index 226e2c77136..48b40557690 100644 --- a/palettes/confetti/monochromePurple/package.dist.json +++ b/palettes/confetti/monochromePurple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-purple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromePurple/package.json b/palettes/confetti/monochromePurple/package.json index ee48ba2a9ee..7bf20451cad 100644 --- a/palettes/confetti/monochromePurple/package.json +++ b/palettes/confetti/monochromePurple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-purple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeRed/CHANGELOG.md b/palettes/confetti/monochromeRed/CHANGELOG.md index ad914d59b72..3b4fefd9fbe 100644 --- a/palettes/confetti/monochromeRed/CHANGELOG.md +++ b/palettes/confetti/monochromeRed/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-red + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-red diff --git a/palettes/confetti/monochromeRed/package.dist.json b/palettes/confetti/monochromeRed/package.dist.json index de47d18c536..0ff1e67baa3 100644 --- a/palettes/confetti/monochromeRed/package.dist.json +++ b/palettes/confetti/monochromeRed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeRed/package.json b/palettes/confetti/monochromeRed/package.json index b0c4259086f..653fde7d645 100644 --- a/palettes/confetti/monochromeRed/package.json +++ b/palettes/confetti/monochromeRed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti monochrome red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/neon/CHANGELOG.md b/palettes/confetti/neon/CHANGELOG.md index c8318f2dadf..46c6b8fd134 100644 --- a/palettes/confetti/neon/CHANGELOG.md +++ b/palettes/confetti/neon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-neon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-neon diff --git a/palettes/confetti/neon/package.dist.json b/palettes/confetti/neon/package.dist.json index e6ee8eb6f45..8c27d34dae0 100644 --- a/palettes/confetti/neon/package.dist.json +++ b/palettes/confetti/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-neon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/neon/package.json b/palettes/confetti/neon/package.json index 7679307df44..c2bb8be7cc3 100644 --- a/palettes/confetti/neon/package.json +++ b/palettes/confetti/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-neon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/pastel/CHANGELOG.md b/palettes/confetti/pastel/CHANGELOG.md index 39af9227112..e212e87caa1 100644 --- a/palettes/confetti/pastel/CHANGELOG.md +++ b/palettes/confetti/pastel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-pastel + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-pastel diff --git a/palettes/confetti/pastel/package.dist.json b/palettes/confetti/pastel/package.dist.json index 471f0fe993b..ce5dba20d29 100644 --- a/palettes/confetti/pastel/package.dist.json +++ b/palettes/confetti/pastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-pastel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/pastel/package.json b/palettes/confetti/pastel/package.json index a24c590fe6b..307d5848a6a 100644 --- a/palettes/confetti/pastel/package.json +++ b/palettes/confetti/pastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-pastel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti pastel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/patriotic/CHANGELOG.md b/palettes/confetti/patriotic/CHANGELOG.md index 5d4108da6fc..2e8cf547d5f 100644 --- a/palettes/confetti/patriotic/CHANGELOG.md +++ b/palettes/confetti/patriotic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-patriotic + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-patriotic diff --git a/palettes/confetti/patriotic/package.dist.json b/palettes/confetti/patriotic/package.dist.json index 87bfc32c1b7..633f71e31ea 100644 --- a/palettes/confetti/patriotic/package.dist.json +++ b/palettes/confetti/patriotic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-patriotic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti patriotic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/patriotic/package.json b/palettes/confetti/patriotic/package.json index db7bf007055..43d5cfaae96 100644 --- a/palettes/confetti/patriotic/package.json +++ b/palettes/confetti/patriotic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-patriotic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti patriotic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/rainbow/CHANGELOG.md b/palettes/confetti/rainbow/CHANGELOG.md index 8bad52b3bc8..c230b5ce35e 100644 --- a/palettes/confetti/rainbow/CHANGELOG.md +++ b/palettes/confetti/rainbow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-rainbow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-rainbow diff --git a/palettes/confetti/rainbow/package.dist.json b/palettes/confetti/rainbow/package.dist.json index 560dddb7652..0504cbb2e11 100644 --- a/palettes/confetti/rainbow/package.dist.json +++ b/palettes/confetti/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/rainbow/package.json b/palettes/confetti/rainbow/package.json index 35ccfb37dc3..e6dd42d2c1c 100644 --- a/palettes/confetti/rainbow/package.json +++ b/palettes/confetti/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/winter/CHANGELOG.md b/palettes/confetti/winter/CHANGELOG.md index 24456546227..0cec737ce01 100644 --- a/palettes/confetti/winter/CHANGELOG.md +++ b/palettes/confetti/winter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-confetti-winter + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-confetti-winter diff --git a/palettes/confetti/winter/package.dist.json b/palettes/confetti/winter/package.dist.json index 7a10e183920..8070033debb 100644 --- a/palettes/confetti/winter/package.dist.json +++ b/palettes/confetti/winter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-winter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti winter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/winter/package.json b/palettes/confetti/winter/package.json index cc61eed48cd..1eff39aed6a 100644 --- a/palettes/confetti/winter/package.json +++ b/palettes/confetti/winter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-winter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti winter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/caustics/CHANGELOG.md b/palettes/earth/caustics/CHANGELOG.md index eb229ce70cf..39308777d66 100644 --- a/palettes/earth/caustics/CHANGELOG.md +++ b/palettes/earth/caustics/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-caustics + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-caustics diff --git a/palettes/earth/caustics/package.dist.json b/palettes/earth/caustics/package.dist.json index 668d60bdd9a..9218e5affb0 100644 --- a/palettes/earth/caustics/package.dist.json +++ b/palettes/earth/caustics/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-caustics", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles caustics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/caustics/package.json b/palettes/earth/caustics/package.json index a5ae5071aa2..3c301e4bfbf 100644 --- a/palettes/earth/caustics/package.json +++ b/palettes/earth/caustics/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-caustics", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles caustics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/desertSand/CHANGELOG.md b/palettes/earth/desertSand/CHANGELOG.md index 5086d97ce93..39aa8ecfb54 100644 --- a/palettes/earth/desertSand/CHANGELOG.md +++ b/palettes/earth/desertSand/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-desert-sand + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-desert-sand diff --git a/palettes/earth/desertSand/package.dist.json b/palettes/earth/desertSand/package.dist.json index dd54e8375f7..5e7cebdbdb4 100644 --- a/palettes/earth/desertSand/package.dist.json +++ b/palettes/earth/desertSand/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-desert-sand", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles desert sand palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/desertSand/package.json b/palettes/earth/desertSand/package.json index 29962947d6c..ac3c62b3375 100644 --- a/palettes/earth/desertSand/package.json +++ b/palettes/earth/desertSand/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-desert-sand", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles desert sand palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/mudAndDirt/CHANGELOG.md b/palettes/earth/mudAndDirt/CHANGELOG.md index 34a67ee93e7..ce6314f8044 100644 --- a/palettes/earth/mudAndDirt/CHANGELOG.md +++ b/palettes/earth/mudAndDirt/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-mud-and-dirt + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-mud-and-dirt diff --git a/palettes/earth/mudAndDirt/package.dist.json b/palettes/earth/mudAndDirt/package.dist.json index cb1b7ab3846..d738b3d6343 100644 --- a/palettes/earth/mudAndDirt/package.dist.json +++ b/palettes/earth/mudAndDirt/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mud-and-dirt", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles mud & dirt palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/mudAndDirt/package.json b/palettes/earth/mudAndDirt/package.json index 6c48248609f..aa5c9dd62e3 100644 --- a/palettes/earth/mudAndDirt/package.json +++ b/palettes/earth/mudAndDirt/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mud-and-dirt", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles mud & dirt palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/oilSlick/CHANGELOG.md b/palettes/earth/oilSlick/CHANGELOG.md index 35557e5a768..b92c0bb7639 100644 --- a/palettes/earth/oilSlick/CHANGELOG.md +++ b/palettes/earth/oilSlick/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-oil-slick + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-oil-slick diff --git a/palettes/earth/oilSlick/package.dist.json b/palettes/earth/oilSlick/package.dist.json index e6f727ef537..4e2ef7057a1 100644 --- a/palettes/earth/oilSlick/package.dist.json +++ b/palettes/earth/oilSlick/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-oil-slick", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles oil slick palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/oilSlick/package.json b/palettes/earth/oilSlick/package.json index cce8c5880bd..3ad3b97cfe0 100644 --- a/palettes/earth/oilSlick/package.json +++ b/palettes/earth/oilSlick/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-oil-slick", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles oil slick palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/rockAndGravel/CHANGELOG.md b/palettes/earth/rockAndGravel/CHANGELOG.md index b76df0257d4..74d0208d5b3 100644 --- a/palettes/earth/rockAndGravel/CHANGELOG.md +++ b/palettes/earth/rockAndGravel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-rock-and-gravel + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-rock-and-gravel diff --git a/palettes/earth/rockAndGravel/package.dist.json b/palettes/earth/rockAndGravel/package.dist.json index 258c7e6104e..db227cbf25b 100644 --- a/palettes/earth/rockAndGravel/package.dist.json +++ b/palettes/earth/rockAndGravel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rock-and-gravel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rock & gravel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/rockAndGravel/package.json b/palettes/earth/rockAndGravel/package.json index 4f21492a987..fc951b6ce29 100644 --- a/palettes/earth/rockAndGravel/package.json +++ b/palettes/earth/rockAndGravel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rock-and-gravel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rock & gravel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/rustAndCorrosion/CHANGELOG.md b/palettes/earth/rustAndCorrosion/CHANGELOG.md index d9d2ad12caa..fae5896921d 100644 --- a/palettes/earth/rustAndCorrosion/CHANGELOG.md +++ b/palettes/earth/rustAndCorrosion/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-rust-and-corrosion + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-rust-and-corrosion diff --git a/palettes/earth/rustAndCorrosion/package.dist.json b/palettes/earth/rustAndCorrosion/package.dist.json index db7d54a67b8..80aab2e8c4d 100644 --- a/palettes/earth/rustAndCorrosion/package.dist.json +++ b/palettes/earth/rustAndCorrosion/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rust-and-corrosion", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rust & corrosion palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/rustAndCorrosion/package.json b/palettes/earth/rustAndCorrosion/package.json index c4a1ff5a491..02e8859f703 100644 --- a/palettes/earth/rustAndCorrosion/package.json +++ b/palettes/earth/rustAndCorrosion/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rust-and-corrosion", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rust & corrosion palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/skinAndOrganic/CHANGELOG.md b/palettes/earth/skinAndOrganic/CHANGELOG.md index 190b6122af5..ca6e74bf66f 100644 --- a/palettes/earth/skinAndOrganic/CHANGELOG.md +++ b/palettes/earth/skinAndOrganic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-skin-and-organic + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-skin-and-organic diff --git a/palettes/earth/skinAndOrganic/package.dist.json b/palettes/earth/skinAndOrganic/package.dist.json index 9a633faee1f..3a9fd5b4377 100644 --- a/palettes/earth/skinAndOrganic/package.dist.json +++ b/palettes/earth/skinAndOrganic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-skin-and-organic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles skin & organic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/skinAndOrganic/package.json b/palettes/earth/skinAndOrganic/package.json index b9b96392845..3babcd2e8ff 100644 --- a/palettes/earth/skinAndOrganic/package.json +++ b/palettes/earth/skinAndOrganic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-skin-and-organic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles skin & organic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/bioluminescence/CHANGELOG.md b/palettes/fantasy/bioluminescence/CHANGELOG.md index 69218185818..1936feeae17 100644 --- a/palettes/fantasy/bioluminescence/CHANGELOG.md +++ b/palettes/fantasy/bioluminescence/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-bioluminescence + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-bioluminescence diff --git a/palettes/fantasy/bioluminescence/package.dist.json b/palettes/fantasy/bioluminescence/package.dist.json index bbcf18330a2..8fd0bb0aade 100644 --- a/palettes/fantasy/bioluminescence/package.dist.json +++ b/palettes/fantasy/bioluminescence/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bioluminescence", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bioluminescence palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/bioluminescence/package.json b/palettes/fantasy/bioluminescence/package.json index 8feb4e61d16..8605b81b3ab 100644 --- a/palettes/fantasy/bioluminescence/package.json +++ b/palettes/fantasy/bioluminescence/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bioluminescence", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bioluminescence palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/bloodAndGore/CHANGELOG.md b/palettes/fantasy/bloodAndGore/CHANGELOG.md index 35f799e01ae..114bdb68b70 100644 --- a/palettes/fantasy/bloodAndGore/CHANGELOG.md +++ b/palettes/fantasy/bloodAndGore/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-blood-and-gore + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-blood-and-gore diff --git a/palettes/fantasy/bloodAndGore/package.dist.json b/palettes/fantasy/bloodAndGore/package.dist.json index 26a848f9481..be7668a9ed3 100644 --- a/palettes/fantasy/bloodAndGore/package.dist.json +++ b/palettes/fantasy/bloodAndGore/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-blood-and-gore", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles blood & gore palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/bloodAndGore/package.json b/palettes/fantasy/bloodAndGore/package.json index fa2bf72bd90..73c49ed2271 100644 --- a/palettes/fantasy/bloodAndGore/package.json +++ b/palettes/fantasy/bloodAndGore/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-blood-and-gore", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles blood & gore palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/fairyDust/CHANGELOG.md b/palettes/fantasy/fairyDust/CHANGELOG.md index 5b9b4bb1882..9468901a9cb 100644 --- a/palettes/fantasy/fairyDust/CHANGELOG.md +++ b/palettes/fantasy/fairyDust/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fairy-dust + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fairy-dust diff --git a/palettes/fantasy/fairyDust/package.dist.json b/palettes/fantasy/fairyDust/package.dist.json index 4a607640400..b9bcb811490 100644 --- a/palettes/fantasy/fairyDust/package.dist.json +++ b/palettes/fantasy/fairyDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fairy-dust", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fairy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/fairyDust/package.json b/palettes/fantasy/fairyDust/package.json index ae7d838fc9d..d9cac852dde 100644 --- a/palettes/fantasy/fairyDust/package.json +++ b/palettes/fantasy/fairyDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fairy-dust", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fairy dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/holyLight/CHANGELOG.md b/palettes/fantasy/holyLight/CHANGELOG.md index d830a445454..e064865e088 100644 --- a/palettes/fantasy/holyLight/CHANGELOG.md +++ b/palettes/fantasy/holyLight/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-holy-light + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-holy-light diff --git a/palettes/fantasy/holyLight/package.dist.json b/palettes/fantasy/holyLight/package.dist.json index 32aa037550f..bf6f7d5e02f 100644 --- a/palettes/fantasy/holyLight/package.dist.json +++ b/palettes/fantasy/holyLight/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holy-light", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles holy light palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/holyLight/package.json b/palettes/fantasy/holyLight/package.json index fc9e26bc206..9f8dc9a2b04 100644 --- a/palettes/fantasy/holyLight/package.json +++ b/palettes/fantasy/holyLight/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holy-light", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles holy light palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iceMagic/CHANGELOG.md b/palettes/fantasy/iceMagic/CHANGELOG.md index 356c7cf39d0..6c28b94af9c 100644 --- a/palettes/fantasy/iceMagic/CHANGELOG.md +++ b/palettes/fantasy/iceMagic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-ice-magic + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-ice-magic diff --git a/palettes/fantasy/iceMagic/package.dist.json b/palettes/fantasy/iceMagic/package.dist.json index eb5628e82d2..4edc9bedc50 100644 --- a/palettes/fantasy/iceMagic/package.dist.json +++ b/palettes/fantasy/iceMagic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-magic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ice magic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iceMagic/package.json b/palettes/fantasy/iceMagic/package.json index e8924b6f0a4..7127f8eddf1 100644 --- a/palettes/fantasy/iceMagic/package.json +++ b/palettes/fantasy/iceMagic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-magic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ice magic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iceTriad/CHANGELOG.md b/palettes/fantasy/iceTriad/CHANGELOG.md index 40d2b45293a..90994aeaa21 100644 --- a/palettes/fantasy/iceTriad/CHANGELOG.md +++ b/palettes/fantasy/iceTriad/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-ice-triad + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-ice-triad diff --git a/palettes/fantasy/iceTriad/package.dist.json b/palettes/fantasy/iceTriad/package.dist.json index 43d0c2fae81..c227b07987d 100644 --- a/palettes/fantasy/iceTriad/package.dist.json +++ b/palettes/fantasy/iceTriad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-triad", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ice triad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iceTriad/package.json b/palettes/fantasy/iceTriad/package.json index ac83812ad1b..3c12b059b7a 100644 --- a/palettes/fantasy/iceTriad/package.json +++ b/palettes/fantasy/iceTriad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-triad", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ice triad palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iris/CHANGELOG.md b/palettes/fantasy/iris/CHANGELOG.md index 8e9b2cd8b2c..7870fc95adc 100644 --- a/palettes/fantasy/iris/CHANGELOG.md +++ b/palettes/fantasy/iris/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-iris + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-iris diff --git a/palettes/fantasy/iris/package.dist.json b/palettes/fantasy/iris/package.dist.json index 2821f93e23b..2f28a446b86 100644 --- a/palettes/fantasy/iris/package.dist.json +++ b/palettes/fantasy/iris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-iris", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles iris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iris/package.json b/palettes/fantasy/iris/package.json index 2d3c4306d06..27c0b5ad439 100644 --- a/palettes/fantasy/iris/package.json +++ b/palettes/fantasy/iris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-iris", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles iris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/jellyfishGlow/CHANGELOG.md b/palettes/fantasy/jellyfishGlow/CHANGELOG.md index c9423ded724..69cd5c5dc84 100644 --- a/palettes/fantasy/jellyfishGlow/CHANGELOG.md +++ b/palettes/fantasy/jellyfishGlow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-jellyfish-glow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-jellyfish-glow diff --git a/palettes/fantasy/jellyfishGlow/package.dist.json b/palettes/fantasy/jellyfishGlow/package.dist.json index 7d4238b44c8..04840db56cf 100644 --- a/palettes/fantasy/jellyfishGlow/package.dist.json +++ b/palettes/fantasy/jellyfishGlow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-jellyfish-glow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles jellyfish glow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/jellyfishGlow/package.json b/palettes/fantasy/jellyfishGlow/package.json index a518fbbb870..c531da78d9f 100644 --- a/palettes/fantasy/jellyfishGlow/package.json +++ b/palettes/fantasy/jellyfishGlow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-jellyfish-glow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles jellyfish glow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/mermaid/CHANGELOG.md b/palettes/fantasy/mermaid/CHANGELOG.md index 0a987e6298c..d9546679a00 100644 --- a/palettes/fantasy/mermaid/CHANGELOG.md +++ b/palettes/fantasy/mermaid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-mermaid + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-mermaid diff --git a/palettes/fantasy/mermaid/package.dist.json b/palettes/fantasy/mermaid/package.dist.json index 5a0757fa696..d1f11ebacc6 100644 --- a/palettes/fantasy/mermaid/package.dist.json +++ b/palettes/fantasy/mermaid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mermaid", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles mermaid palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/mermaid/package.json b/palettes/fantasy/mermaid/package.json index e84fb067067..ab7803fe98b 100644 --- a/palettes/fantasy/mermaid/package.json +++ b/palettes/fantasy/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mermaid", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles mermaid palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/poisonAndVenom/CHANGELOG.md b/palettes/fantasy/poisonAndVenom/CHANGELOG.md index 7afd765312d..f086327d07a 100644 --- a/palettes/fantasy/poisonAndVenom/CHANGELOG.md +++ b/palettes/fantasy/poisonAndVenom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-poison-and-venom + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-poison-and-venom diff --git a/palettes/fantasy/poisonAndVenom/package.dist.json b/palettes/fantasy/poisonAndVenom/package.dist.json index 23f7a2917c5..47dc84f4182 100644 --- a/palettes/fantasy/poisonAndVenom/package.dist.json +++ b/palettes/fantasy/poisonAndVenom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-poison-and-venom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles poison & venom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/poisonAndVenom/package.json b/palettes/fantasy/poisonAndVenom/package.json index d9a872d5656..8339794787f 100644 --- a/palettes/fantasy/poisonAndVenom/package.json +++ b/palettes/fantasy/poisonAndVenom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-poison-and-venom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles poison & venom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/unicorn/CHANGELOG.md b/palettes/fantasy/unicorn/CHANGELOG.md index 7a362ee6783..de4b9f36ce1 100644 --- a/palettes/fantasy/unicorn/CHANGELOG.md +++ b/palettes/fantasy/unicorn/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-unicorn + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-unicorn diff --git a/palettes/fantasy/unicorn/package.dist.json b/palettes/fantasy/unicorn/package.dist.json index f1b98799e16..2aa579beae5 100644 --- a/palettes/fantasy/unicorn/package.dist.json +++ b/palettes/fantasy/unicorn/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-unicorn", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles unicorn palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/unicorn/package.json b/palettes/fantasy/unicorn/package.json index 45149be345e..a684e3fe5a1 100644 --- a/palettes/fantasy/unicorn/package.json +++ b/palettes/fantasy/unicorn/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-unicorn", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles unicorn palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/candlelight/CHANGELOG.md b/palettes/fire/candlelight/CHANGELOG.md index 5e9b75e2724..016ad620d00 100644 --- a/palettes/fire/candlelight/CHANGELOG.md +++ b/palettes/fire/candlelight/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-candlelight + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-candlelight diff --git a/palettes/fire/candlelight/package.dist.json b/palettes/fire/candlelight/package.dist.json index 7470a5b232a..9f97f94c096 100644 --- a/palettes/fire/candlelight/package.dist.json +++ b/palettes/fire/candlelight/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-candlelight", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles candlelight palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/candlelight/package.json b/palettes/fire/candlelight/package.json index 296ccae17e7..b7ff930af79 100644 --- a/palettes/fire/candlelight/package.json +++ b/palettes/fire/candlelight/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-candlelight", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles candlelight palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/default/CHANGELOG.md b/palettes/fire/default/CHANGELOG.md index a91e8d6be15..69a5f438096 100644 --- a/palettes/fire/default/CHANGELOG.md +++ b/palettes/fire/default/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fire + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fire diff --git a/palettes/fire/default/package.dist.json b/palettes/fire/default/package.dist.json index 80458d4a26a..c3247aa108a 100644 --- a/palettes/fire/default/package.dist.json +++ b/palettes/fire/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fire - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/default/package.json b/palettes/fire/default/package.json index 5f96639a087..70c3fb324cf 100644 --- a/palettes/fire/default/package.json +++ b/palettes/fire/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fire - full palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/embersAndAsh/CHANGELOG.md b/palettes/fire/embersAndAsh/CHANGELOG.md index 74dd6a8c5f2..da9abf9ce4e 100644 --- a/palettes/fire/embersAndAsh/CHANGELOG.md +++ b/palettes/fire/embersAndAsh/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-embers-and-ash + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-embers-and-ash diff --git a/palettes/fire/embersAndAsh/package.dist.json b/palettes/fire/embersAndAsh/package.dist.json index 3e6f640fe7d..ed1bb790b77 100644 --- a/palettes/fire/embersAndAsh/package.dist.json +++ b/palettes/fire/embersAndAsh/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-embers-and-ash", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles embers & ash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/embersAndAsh/package.json b/palettes/fire/embersAndAsh/package.json index c64ce32d71a..b9821f8342d 100644 --- a/palettes/fire/embersAndAsh/package.json +++ b/palettes/fire/embersAndAsh/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-embers-and-ash", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles embers & ash palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/fullFireGradient/CHANGELOG.md b/palettes/fire/fullFireGradient/CHANGELOG.md index d2e947a22f7..4a0a520117d 100644 --- a/palettes/fire/fullFireGradient/CHANGELOG.md +++ b/palettes/fire/fullFireGradient/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-full-fire-gradient + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-full-fire-gradient diff --git a/palettes/fire/fullFireGradient/package.dist.json b/palettes/fire/fullFireGradient/package.dist.json index 7f09a8dba7a..6703a0d51e5 100644 --- a/palettes/fire/fullFireGradient/package.dist.json +++ b/palettes/fire/fullFireGradient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-fire-gradient", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles full fire gradient palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/fullFireGradient/package.json b/palettes/fire/fullFireGradient/package.json index 1699fc90aa0..312dc144d8b 100644 --- a/palettes/fire/fullFireGradient/package.json +++ b/palettes/fire/fullFireGradient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-fire-gradient", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles full fire gradient palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/lavaLamp/CHANGELOG.md b/palettes/fire/lavaLamp/CHANGELOG.md index 91be6f4eec1..f028e4211ca 100644 --- a/palettes/fire/lavaLamp/CHANGELOG.md +++ b/palettes/fire/lavaLamp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-lava-lamp + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-lava-lamp diff --git a/palettes/fire/lavaLamp/package.dist.json b/palettes/fire/lavaLamp/package.dist.json index a9da18ecbfc..b78845f7862 100644 --- a/palettes/fire/lavaLamp/package.dist.json +++ b/palettes/fire/lavaLamp/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lava-lamp", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lava lamp palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/lavaLamp/package.json b/palettes/fire/lavaLamp/package.json index 1752284a2ed..bacbfde11b9 100644 --- a/palettes/fire/lavaLamp/package.json +++ b/palettes/fire/lavaLamp/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lava-lamp", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lava lamp palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/metalSparks/CHANGELOG.md b/palettes/fire/metalSparks/CHANGELOG.md index 80033941e6f..518c2afc73c 100644 --- a/palettes/fire/metalSparks/CHANGELOG.md +++ b/palettes/fire/metalSparks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-metal-sparks + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-metal-sparks diff --git a/palettes/fire/metalSparks/package.dist.json b/palettes/fire/metalSparks/package.dist.json index dee6edd15d3..ac1482a44b6 100644 --- a/palettes/fire/metalSparks/package.dist.json +++ b/palettes/fire/metalSparks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-metal-sparks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles metal sparks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/metalSparks/package.json b/palettes/fire/metalSparks/package.json index 537d511e8c4..723f18abb7e 100644 --- a/palettes/fire/metalSparks/package.json +++ b/palettes/fire/metalSparks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-metal-sparks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles metal sparks palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/moltenMetal/CHANGELOG.md b/palettes/fire/moltenMetal/CHANGELOG.md index 7439bcb978b..128cb213561 100644 --- a/palettes/fire/moltenMetal/CHANGELOG.md +++ b/palettes/fire/moltenMetal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-molten-metal + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-molten-metal diff --git a/palettes/fire/moltenMetal/package.dist.json b/palettes/fire/moltenMetal/package.dist.json index 946014104cd..fa31825e8e2 100644 --- a/palettes/fire/moltenMetal/package.dist.json +++ b/palettes/fire/moltenMetal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-molten-metal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles molten metal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/moltenMetal/package.json b/palettes/fire/moltenMetal/package.json index 0a064d662da..9e03e238bdd 100644 --- a/palettes/fire/moltenMetal/package.json +++ b/palettes/fire/moltenMetal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-molten-metal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles molten metal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/seed/CHANGELOG.md b/palettes/fire/seed/CHANGELOG.md index 6fa0e1275e3..4816e90b81b 100644 --- a/palettes/fire/seed/CHANGELOG.md +++ b/palettes/fire/seed/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fire-seed + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fire-seed diff --git a/palettes/fire/seed/package.dist.json b/palettes/fire/seed/package.dist.json index b16901eea1c..180ee054074 100644 --- a/palettes/fire/seed/package.dist.json +++ b/palettes/fire/seed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire-seed", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fire seed palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/seed/package.json b/palettes/fire/seed/package.json index 7bfb6265374..ec3b879fb4f 100644 --- a/palettes/fire/seed/package.json +++ b/palettes/fire/seed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire-seed", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fire seed palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/blue/CHANGELOG.md b/palettes/fireworks/blue/CHANGELOG.md index d25493e7dd1..9c66ab22bdc 100644 --- a/palettes/fireworks/blue/CHANGELOG.md +++ b/palettes/fireworks/blue/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-blue diff --git a/palettes/fireworks/blue/package.dist.json b/palettes/fireworks/blue/package.dist.json index 6fe94f1a55f..d3810964479 100644 --- a/palettes/fireworks/blue/package.dist.json +++ b/palettes/fireworks/blue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/blue/package.json b/palettes/fireworks/blue/package.json index ab30e07d940..78cfcd1cd6a 100644 --- a/palettes/fireworks/blue/package.json +++ b/palettes/fireworks/blue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/blueStroke/CHANGELOG.md b/palettes/fireworks/blueStroke/CHANGELOG.md index 50664e32888..843f3ca54b1 100644 --- a/palettes/fireworks/blueStroke/CHANGELOG.md +++ b/palettes/fireworks/blueStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-blue-stroke diff --git a/palettes/fireworks/blueStroke/package.dist.json b/palettes/fireworks/blueStroke/package.dist.json index c93d908aec6..318979ce09c 100644 --- a/palettes/fireworks/blueStroke/package.dist.json +++ b/palettes/fireworks/blueStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks blue stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/blueStroke/package.json b/palettes/fireworks/blueStroke/package.json index 9f3bc87878a..f5c8926954b 100644 --- a/palettes/fireworks/blueStroke/package.json +++ b/palettes/fireworks/blueStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks blue stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/copper/CHANGELOG.md b/palettes/fireworks/copper/CHANGELOG.md index 19bf009a7bf..89b98ca00ee 100644 --- a/palettes/fireworks/copper/CHANGELOG.md +++ b/palettes/fireworks/copper/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-copper diff --git a/palettes/fireworks/copper/package.dist.json b/palettes/fireworks/copper/package.dist.json index b949bd9bd56..719929e0ec4 100644 --- a/palettes/fireworks/copper/package.dist.json +++ b/palettes/fireworks/copper/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks copper palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/copper/package.json b/palettes/fireworks/copper/package.json index 94c3571154d..48ab37b22c1 100644 --- a/palettes/fireworks/copper/package.json +++ b/palettes/fireworks/copper/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks copper palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/copperStroke/CHANGELOG.md b/palettes/fireworks/copperStroke/CHANGELOG.md index 8535543d498..edd5fd154eb 100644 --- a/palettes/fireworks/copperStroke/CHANGELOG.md +++ b/palettes/fireworks/copperStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-copper-stroke diff --git a/palettes/fireworks/copperStroke/package.dist.json b/palettes/fireworks/copperStroke/package.dist.json index b95a9228772..709fd9bb7d7 100644 --- a/palettes/fireworks/copperStroke/package.dist.json +++ b/palettes/fireworks/copperStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks copper stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/copperStroke/package.json b/palettes/fireworks/copperStroke/package.json index 2b671b52dbd..18eca562d3c 100644 --- a/palettes/fireworks/copperStroke/package.json +++ b/palettes/fireworks/copperStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks copper stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/gold/CHANGELOG.md b/palettes/fireworks/gold/CHANGELOG.md index 45794163431..b120d7be014 100644 --- a/palettes/fireworks/gold/CHANGELOG.md +++ b/palettes/fireworks/gold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-gold diff --git a/palettes/fireworks/gold/package.dist.json b/palettes/fireworks/gold/package.dist.json index 0ae8ee95cdb..a48013ae416 100644 --- a/palettes/fireworks/gold/package.dist.json +++ b/palettes/fireworks/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/gold/package.json b/palettes/fireworks/gold/package.json index e13a231fb96..4c6a4400f8d 100644 --- a/palettes/fireworks/gold/package.json +++ b/palettes/fireworks/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/goldStroke/CHANGELOG.md b/palettes/fireworks/goldStroke/CHANGELOG.md index 8a9328a8a66..08810e40070 100644 --- a/palettes/fireworks/goldStroke/CHANGELOG.md +++ b/palettes/fireworks/goldStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-gold-stroke diff --git a/palettes/fireworks/goldStroke/package.dist.json b/palettes/fireworks/goldStroke/package.dist.json index bd5298079db..ff55a40f74c 100644 --- a/palettes/fireworks/goldStroke/package.dist.json +++ b/palettes/fireworks/goldStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - gold stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/goldStroke/package.json b/palettes/fireworks/goldStroke/package.json index d6c5a01f5cb..2c660897ef3 100644 --- a/palettes/fireworks/goldStroke/package.json +++ b/palettes/fireworks/goldStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - gold stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/green/CHANGELOG.md b/palettes/fireworks/green/CHANGELOG.md index 06e76b28641..961b4b74441 100644 --- a/palettes/fireworks/green/CHANGELOG.md +++ b/palettes/fireworks/green/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-green diff --git a/palettes/fireworks/green/package.dist.json b/palettes/fireworks/green/package.dist.json index 151895e4b5d..3b989c94e52 100644 --- a/palettes/fireworks/green/package.dist.json +++ b/palettes/fireworks/green/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/green/package.json b/palettes/fireworks/green/package.json index 70e03d94972..0224e7bf12a 100644 --- a/palettes/fireworks/green/package.json +++ b/palettes/fireworks/green/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/greenStroke/CHANGELOG.md b/palettes/fireworks/greenStroke/CHANGELOG.md index 6e8bc400d96..563ea9c53d1 100644 --- a/palettes/fireworks/greenStroke/CHANGELOG.md +++ b/palettes/fireworks/greenStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-green-stroke diff --git a/palettes/fireworks/greenStroke/package.dist.json b/palettes/fireworks/greenStroke/package.dist.json index 2a872d0edaf..ece89825b7e 100644 --- a/palettes/fireworks/greenStroke/package.dist.json +++ b/palettes/fireworks/greenStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks green stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/greenStroke/package.json b/palettes/fireworks/greenStroke/package.json index 2e4c1e05628..25366bd2dba 100644 --- a/palettes/fireworks/greenStroke/package.json +++ b/palettes/fireworks/greenStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks green stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/ice/CHANGELOG.md b/palettes/fireworks/ice/CHANGELOG.md index 17e66d8444a..82522b0152b 100644 --- a/palettes/fireworks/ice/CHANGELOG.md +++ b/palettes/fireworks/ice/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-ice diff --git a/palettes/fireworks/ice/package.dist.json b/palettes/fireworks/ice/package.dist.json index a227195c6b6..d64593a534b 100644 --- a/palettes/fireworks/ice/package.dist.json +++ b/palettes/fireworks/ice/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks ice palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/ice/package.json b/palettes/fireworks/ice/package.json index ec20a44e5ec..476dabf7f46 100644 --- a/palettes/fireworks/ice/package.json +++ b/palettes/fireworks/ice/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks ice palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/iceStroke/CHANGELOG.md b/palettes/fireworks/iceStroke/CHANGELOG.md index 21c9ef64a2d..2f05bad0b23 100644 --- a/palettes/fireworks/iceStroke/CHANGELOG.md +++ b/palettes/fireworks/iceStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-ice-stroke diff --git a/palettes/fireworks/iceStroke/package.dist.json b/palettes/fireworks/iceStroke/package.dist.json index 54e8f8e3f52..71f0d2b8b55 100644 --- a/palettes/fireworks/iceStroke/package.dist.json +++ b/palettes/fireworks/iceStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks ice stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/iceStroke/package.json b/palettes/fireworks/iceStroke/package.json index 37961f9197d..1521c8169fb 100644 --- a/palettes/fireworks/iceStroke/package.json +++ b/palettes/fireworks/iceStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks ice stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/multicolor/CHANGELOG.md b/palettes/fireworks/multicolor/CHANGELOG.md index f8a5222ba60..100d472993c 100644 --- a/palettes/fireworks/multicolor/CHANGELOG.md +++ b/palettes/fireworks/multicolor/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor diff --git a/palettes/fireworks/multicolor/package.dist.json b/palettes/fireworks/multicolor/package.dist.json index 33cab320ef2..de4030dcd21 100644 --- a/palettes/fireworks/multicolor/package.dist.json +++ b/palettes/fireworks/multicolor/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - multicolor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/multicolor/package.json b/palettes/fireworks/multicolor/package.json index 707770667b2..76cf463a197 100644 --- a/palettes/fireworks/multicolor/package.json +++ b/palettes/fireworks/multicolor/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - multicolor palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/multicolorStroke/CHANGELOG.md b/palettes/fireworks/multicolorStroke/CHANGELOG.md index 2bbbfba6be7..ecfc4beefc0 100644 --- a/palettes/fireworks/multicolorStroke/CHANGELOG.md +++ b/palettes/fireworks/multicolorStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor-stroke diff --git a/palettes/fireworks/multicolorStroke/package.dist.json b/palettes/fireworks/multicolorStroke/package.dist.json index b03d4f5f854..16dad9b0a09 100644 --- a/palettes/fireworks/multicolorStroke/package.dist.json +++ b/palettes/fireworks/multicolorStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - multicolor stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/multicolorStroke/package.json b/palettes/fireworks/multicolorStroke/package.json index d2654f5d0e7..24a35f8700e 100644 --- a/palettes/fireworks/multicolorStroke/package.json +++ b/palettes/fireworks/multicolorStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks - multicolor stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/neon/CHANGELOG.md b/palettes/fireworks/neon/CHANGELOG.md index b1bfdaaf13f..18121a32b96 100644 --- a/palettes/fireworks/neon/CHANGELOG.md +++ b/palettes/fireworks/neon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-neon diff --git a/palettes/fireworks/neon/package.dist.json b/palettes/fireworks/neon/package.dist.json index 8571301d2b4..5a9df58787b 100644 --- a/palettes/fireworks/neon/package.dist.json +++ b/palettes/fireworks/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/neon/package.json b/palettes/fireworks/neon/package.json index 36db9c99dd5..9a73b04e94f 100644 --- a/palettes/fireworks/neon/package.json +++ b/palettes/fireworks/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/neonStroke/CHANGELOG.md b/palettes/fireworks/neonStroke/CHANGELOG.md index b0191f36567..89006df3630 100644 --- a/palettes/fireworks/neonStroke/CHANGELOG.md +++ b/palettes/fireworks/neonStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-neon-stroke diff --git a/palettes/fireworks/neonStroke/package.dist.json b/palettes/fireworks/neonStroke/package.dist.json index ee195ad6c50..f31287a49f8 100644 --- a/palettes/fireworks/neonStroke/package.dist.json +++ b/palettes/fireworks/neonStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks neon stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/neonStroke/package.json b/palettes/fireworks/neonStroke/package.json index 659cf6bfd5b..9888497a281 100644 --- a/palettes/fireworks/neonStroke/package.json +++ b/palettes/fireworks/neonStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks neon stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/pastel/CHANGELOG.md b/palettes/fireworks/pastel/CHANGELOG.md index e27a8802282..a84b21e98f4 100644 --- a/palettes/fireworks/pastel/CHANGELOG.md +++ b/palettes/fireworks/pastel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-pastel diff --git a/palettes/fireworks/pastel/package.dist.json b/palettes/fireworks/pastel/package.dist.json index 6ce761bf957..b10756bf2e2 100644 --- a/palettes/fireworks/pastel/package.dist.json +++ b/palettes/fireworks/pastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/pastel/package.json b/palettes/fireworks/pastel/package.json index 01135bef109..48c9e16f1ac 100644 --- a/palettes/fireworks/pastel/package.json +++ b/palettes/fireworks/pastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks pastel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/pastelStroke/CHANGELOG.md b/palettes/fireworks/pastelStroke/CHANGELOG.md index 9b615845bba..ad0b035a508 100644 --- a/palettes/fireworks/pastelStroke/CHANGELOG.md +++ b/palettes/fireworks/pastelStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-pastel-stroke diff --git a/palettes/fireworks/pastelStroke/package.dist.json b/palettes/fireworks/pastelStroke/package.dist.json index aef824e649e..0521c2174d3 100644 --- a/palettes/fireworks/pastelStroke/package.dist.json +++ b/palettes/fireworks/pastelStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks pastel stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/pastelStroke/package.json b/palettes/fireworks/pastelStroke/package.json index 4cb58068837..a5ad2599e4c 100644 --- a/palettes/fireworks/pastelStroke/package.json +++ b/palettes/fireworks/pastelStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks pastel stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/purple/CHANGELOG.md b/palettes/fireworks/purple/CHANGELOG.md index b47a11b8dbf..0d7709e1aa3 100644 --- a/palettes/fireworks/purple/CHANGELOG.md +++ b/palettes/fireworks/purple/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-purple diff --git a/palettes/fireworks/purple/package.dist.json b/palettes/fireworks/purple/package.dist.json index a2c814c7aa0..919f3fcd442 100644 --- a/palettes/fireworks/purple/package.dist.json +++ b/palettes/fireworks/purple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/purple/package.json b/palettes/fireworks/purple/package.json index 3647aaf477d..d4a6d6df0ca 100644 --- a/palettes/fireworks/purple/package.json +++ b/palettes/fireworks/purple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/purpleStroke/CHANGELOG.md b/palettes/fireworks/purpleStroke/CHANGELOG.md index 22087a2ae4a..bd79cf42bc3 100644 --- a/palettes/fireworks/purpleStroke/CHANGELOG.md +++ b/palettes/fireworks/purpleStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-purple-stroke diff --git a/palettes/fireworks/purpleStroke/package.dist.json b/palettes/fireworks/purpleStroke/package.dist.json index d0b563a9088..e71e96aec4c 100644 --- a/palettes/fireworks/purpleStroke/package.dist.json +++ b/palettes/fireworks/purpleStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks purple stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/purpleStroke/package.json b/palettes/fireworks/purpleStroke/package.json index 0fdbb0026af..0c69df970c1 100644 --- a/palettes/fireworks/purpleStroke/package.json +++ b/palettes/fireworks/purpleStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks purple stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/rainbow/CHANGELOG.md b/palettes/fireworks/rainbow/CHANGELOG.md index bc5e8d513ec..86e98970c44 100644 --- a/palettes/fireworks/rainbow/CHANGELOG.md +++ b/palettes/fireworks/rainbow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow diff --git a/palettes/fireworks/rainbow/package.dist.json b/palettes/fireworks/rainbow/package.dist.json index a60a3f58449..2e1dd26c1fd 100644 --- a/palettes/fireworks/rainbow/package.dist.json +++ b/palettes/fireworks/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/rainbow/package.json b/palettes/fireworks/rainbow/package.json index 6bac4e8a9b0..b88662cb6d7 100644 --- a/palettes/fireworks/rainbow/package.json +++ b/palettes/fireworks/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/rainbowStroke/CHANGELOG.md b/palettes/fireworks/rainbowStroke/CHANGELOG.md index 9ad4f27b22b..c2b3d25f8f1 100644 --- a/palettes/fireworks/rainbowStroke/CHANGELOG.md +++ b/palettes/fireworks/rainbowStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow-stroke diff --git a/palettes/fireworks/rainbowStroke/package.dist.json b/palettes/fireworks/rainbowStroke/package.dist.json index 61e0f449a6b..57b55e5e640 100644 --- a/palettes/fireworks/rainbowStroke/package.dist.json +++ b/palettes/fireworks/rainbowStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks rainbow stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/rainbowStroke/package.json b/palettes/fireworks/rainbowStroke/package.json index c771d5eff87..df36562ae25 100644 --- a/palettes/fireworks/rainbowStroke/package.json +++ b/palettes/fireworks/rainbowStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks rainbow stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/red/CHANGELOG.md b/palettes/fireworks/red/CHANGELOG.md index 297a352975f..a23ac2c1f9c 100644 --- a/palettes/fireworks/red/CHANGELOG.md +++ b/palettes/fireworks/red/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-red diff --git a/palettes/fireworks/red/package.dist.json b/palettes/fireworks/red/package.dist.json index b4575497056..72a0e82e7c3 100644 --- a/palettes/fireworks/red/package.dist.json +++ b/palettes/fireworks/red/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/red/package.json b/palettes/fireworks/red/package.json index 7d16b49ab90..f84616f1e27 100644 --- a/palettes/fireworks/red/package.json +++ b/palettes/fireworks/red/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/redStroke/CHANGELOG.md b/palettes/fireworks/redStroke/CHANGELOG.md index 4c25819a38d..d0953bf5871 100644 --- a/palettes/fireworks/redStroke/CHANGELOG.md +++ b/palettes/fireworks/redStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-red-stroke diff --git a/palettes/fireworks/redStroke/package.dist.json b/palettes/fireworks/redStroke/package.dist.json index ba2db888c41..c0b95aa9bcc 100644 --- a/palettes/fireworks/redStroke/package.dist.json +++ b/palettes/fireworks/redStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks red stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/redStroke/package.json b/palettes/fireworks/redStroke/package.json index 7c4868248d2..15dff8b0b10 100644 --- a/palettes/fireworks/redStroke/package.json +++ b/palettes/fireworks/redStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks red stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/silver/CHANGELOG.md b/palettes/fireworks/silver/CHANGELOG.md index 30a86234dd6..885589176c6 100644 --- a/palettes/fireworks/silver/CHANGELOG.md +++ b/palettes/fireworks/silver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-silver diff --git a/palettes/fireworks/silver/package.dist.json b/palettes/fireworks/silver/package.dist.json index d3525f075d2..394a15411e8 100644 --- a/palettes/fireworks/silver/package.dist.json +++ b/palettes/fireworks/silver/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/silver/package.json b/palettes/fireworks/silver/package.json index a41ed5477ea..0aaf46fdcaf 100644 --- a/palettes/fireworks/silver/package.json +++ b/palettes/fireworks/silver/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks silver palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/silverStroke/CHANGELOG.md b/palettes/fireworks/silverStroke/CHANGELOG.md index 0c6ea5acce9..dadeee05c4c 100644 --- a/palettes/fireworks/silverStroke/CHANGELOG.md +++ b/palettes/fireworks/silverStroke/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver-stroke + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireworks-silver-stroke diff --git a/palettes/fireworks/silverStroke/package.dist.json b/palettes/fireworks/silverStroke/package.dist.json index e879f8106ff..6340562e0b1 100644 --- a/palettes/fireworks/silverStroke/package.dist.json +++ b/palettes/fireworks/silverStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks silver stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/silverStroke/package.json b/palettes/fireworks/silverStroke/package.json index 6d40b0d926b..e9f92e5ca05 100644 --- a/palettes/fireworks/silverStroke/package.json +++ b/palettes/fireworks/silverStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver-stroke", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks silver stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple-green/CHANGELOG.md b/palettes/food/apple-green/CHANGELOG.md index bc1609e33dd..7132af44354 100644 --- a/palettes/food/apple-green/CHANGELOG.md +++ b/palettes/food/apple-green/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-apple-green + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-apple-green diff --git a/palettes/food/apple-green/package.dist.json b/palettes/food/apple-green/package.dist.json index d4ee40129a2..ab4e9722ad4 100644 --- a/palettes/food/apple-green/package.dist.json +++ b/palettes/food/apple-green/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles apple green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple-green/package.json b/palettes/food/apple-green/package.json index 9139ab76da0..28ffd3982c0 100644 --- a/palettes/food/apple-green/package.json +++ b/palettes/food/apple-green/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-green", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles apple green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple-red/CHANGELOG.md b/palettes/food/apple-red/CHANGELOG.md index b814fecbdc8..02be92039b8 100644 --- a/palettes/food/apple-red/CHANGELOG.md +++ b/palettes/food/apple-red/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-apple-red + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-apple-red diff --git a/palettes/food/apple-red/package.dist.json b/palettes/food/apple-red/package.dist.json index 26b0c95d8a4..c71a3aa2f5b 100644 --- a/palettes/food/apple-red/package.dist.json +++ b/palettes/food/apple-red/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles apple red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple-red/package.json b/palettes/food/apple-red/package.json index 4f7787b6bf9..4bfef57ea55 100644 --- a/palettes/food/apple-red/package.json +++ b/palettes/food/apple-red/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-red", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles apple red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple/CHANGELOG.md b/palettes/food/apple/CHANGELOG.md index bcfaa835caf..9e2aa88e836 100644 --- a/palettes/food/apple/CHANGELOG.md +++ b/palettes/food/apple/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-apple + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-apple diff --git a/palettes/food/apple/package.dist.json b/palettes/food/apple/package.dist.json index 47d3e4710e4..e09792a020d 100644 --- a/palettes/food/apple/package.dist.json +++ b/palettes/food/apple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles apple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple/package.json b/palettes/food/apple/package.json index cb1d1775cb7..b32368a00d6 100644 --- a/palettes/food/apple/package.json +++ b/palettes/food/apple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles apple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/avocado/CHANGELOG.md b/palettes/food/avocado/CHANGELOG.md index d41a07f8094..b588676d492 100644 --- a/palettes/food/avocado/CHANGELOG.md +++ b/palettes/food/avocado/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-avocado + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-avocado diff --git a/palettes/food/avocado/package.dist.json b/palettes/food/avocado/package.dist.json index 3c37547fa1f..3b5a72d21a9 100644 --- a/palettes/food/avocado/package.dist.json +++ b/palettes/food/avocado/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-avocado", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles avocado palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/avocado/package.json b/palettes/food/avocado/package.json index a921251486a..6f5572cf5c6 100644 --- a/palettes/food/avocado/package.json +++ b/palettes/food/avocado/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-avocado", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles avocado palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/bell-peppers/CHANGELOG.md b/palettes/food/bell-peppers/CHANGELOG.md index 2b22a9dba69..1f15e001a36 100644 --- a/palettes/food/bell-peppers/CHANGELOG.md +++ b/palettes/food/bell-peppers/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-bell-peppers + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-bell-peppers diff --git a/palettes/food/bell-peppers/package.dist.json b/palettes/food/bell-peppers/package.dist.json index e60aa4dbc5d..8378ae8b7bd 100644 --- a/palettes/food/bell-peppers/package.dist.json +++ b/palettes/food/bell-peppers/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bell-peppers", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bell peppers palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/bell-peppers/package.json b/palettes/food/bell-peppers/package.json index b2480e2d18c..b76fbce0110 100644 --- a/palettes/food/bell-peppers/package.json +++ b/palettes/food/bell-peppers/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bell-peppers", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bell peppers palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/berries/CHANGELOG.md b/palettes/food/berries/CHANGELOG.md index 465e9724956..4ae92ef2175 100644 --- a/palettes/food/berries/CHANGELOG.md +++ b/palettes/food/berries/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-berries + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-berries diff --git a/palettes/food/berries/package.dist.json b/palettes/food/berries/package.dist.json index ef0d8e1619b..fea0fb0d022 100644 --- a/palettes/food/berries/package.dist.json +++ b/palettes/food/berries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-berries", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles berries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/berries/package.json b/palettes/food/berries/package.json index f36762a0982..365e3cb8540 100644 --- a/palettes/food/berries/package.json +++ b/palettes/food/berries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-berries", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles berries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/cherry/CHANGELOG.md b/palettes/food/cherry/CHANGELOG.md index 05dd5481904..d3ddb7ca379 100644 --- a/palettes/food/cherry/CHANGELOG.md +++ b/palettes/food/cherry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-cherry + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-cherry diff --git a/palettes/food/cherry/package.dist.json b/palettes/food/cherry/package.dist.json index 3773386896c..7e4d4cfb25e 100644 --- a/palettes/food/cherry/package.dist.json +++ b/palettes/food/cherry/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cherry palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/cherry/package.json b/palettes/food/cherry/package.json index 3c01f3a7f9d..29a83aa2ff4 100644 --- a/palettes/food/cherry/package.json +++ b/palettes/food/cherry/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cherry palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/citrus-twist/CHANGELOG.md b/palettes/food/citrus-twist/CHANGELOG.md index 522be3c0e10..b7da6617ecb 100644 --- a/palettes/food/citrus-twist/CHANGELOG.md +++ b/palettes/food/citrus-twist/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-citrus-twist + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-citrus-twist diff --git a/palettes/food/citrus-twist/package.dist.json b/palettes/food/citrus-twist/package.dist.json index 98bd2250eb2..2cb1b1a7a8d 100644 --- a/palettes/food/citrus-twist/package.dist.json +++ b/palettes/food/citrus-twist/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-citrus-twist", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles citrus twist palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/citrus-twist/package.json b/palettes/food/citrus-twist/package.json index 5c8429dda91..69ef4d49d55 100644 --- a/palettes/food/citrus-twist/package.json +++ b/palettes/food/citrus-twist/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-citrus-twist", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles citrus twist palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/gingerbread-house/CHANGELOG.md b/palettes/food/gingerbread-house/CHANGELOG.md index 62cf0157baa..d102e9d5580 100644 --- a/palettes/food/gingerbread-house/CHANGELOG.md +++ b/palettes/food/gingerbread-house/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-gingerbread-house + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-gingerbread-house diff --git a/palettes/food/gingerbread-house/package.dist.json b/palettes/food/gingerbread-house/package.dist.json index d10e2392fba..fd0a78920fa 100644 --- a/palettes/food/gingerbread-house/package.dist.json +++ b/palettes/food/gingerbread-house/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-gingerbread-house", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles gingerbread house palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/gingerbread-house/package.json b/palettes/food/gingerbread-house/package.json index 69a9f2f726a..58098be8407 100644 --- a/palettes/food/gingerbread-house/package.json +++ b/palettes/food/gingerbread-house/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-gingerbread-house", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles gingerbread house palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/grapes/CHANGELOG.md b/palettes/food/grapes/CHANGELOG.md index c41b6733fcd..d421bf03c23 100644 --- a/palettes/food/grapes/CHANGELOG.md +++ b/palettes/food/grapes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-grapes + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-grapes diff --git a/palettes/food/grapes/package.dist.json b/palettes/food/grapes/package.dist.json index 3a957b14225..f64ca28b75f 100644 --- a/palettes/food/grapes/package.dist.json +++ b/palettes/food/grapes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-grapes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles grapes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/grapes/package.json b/palettes/food/grapes/package.json index 1cf16099eb3..bb6674ce4ea 100644 --- a/palettes/food/grapes/package.json +++ b/palettes/food/grapes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-grapes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles grapes palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/macaron/CHANGELOG.md b/palettes/food/macaron/CHANGELOG.md index 068f1a424b0..252ed7aa0c0 100644 --- a/palettes/food/macaron/CHANGELOG.md +++ b/palettes/food/macaron/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-macaron + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-macaron diff --git a/palettes/food/macaron/package.dist.json b/palettes/food/macaron/package.dist.json index 0e266330d28..e37c432d15d 100644 --- a/palettes/food/macaron/package.dist.json +++ b/palettes/food/macaron/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-macaron", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles macaron palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/macaron/package.json b/palettes/food/macaron/package.json index 5b6d7686f95..dc899eff139 100644 --- a/palettes/food/macaron/package.json +++ b/palettes/food/macaron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-macaron", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles macaron palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/melon/CHANGELOG.md b/palettes/food/melon/CHANGELOG.md index 66775d01dc4..ef2491808e7 100644 --- a/palettes/food/melon/CHANGELOG.md +++ b/palettes/food/melon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-melon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-melon diff --git a/palettes/food/melon/package.dist.json b/palettes/food/melon/package.dist.json index 041a55d0be3..1b27bc3e8ed 100644 --- a/palettes/food/melon/package.dist.json +++ b/palettes/food/melon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-melon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles melon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/melon/package.json b/palettes/food/melon/package.json index 2f5f0bca4ab..529dd48e433 100644 --- a/palettes/food/melon/package.json +++ b/palettes/food/melon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-melon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles melon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/pineapple/CHANGELOG.md b/palettes/food/pineapple/CHANGELOG.md index e2d27f942a6..2e8b8b1c230 100644 --- a/palettes/food/pineapple/CHANGELOG.md +++ b/palettes/food/pineapple/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pineapple + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pineapple diff --git a/palettes/food/pineapple/package.dist.json b/palettes/food/pineapple/package.dist.json index eac0712ca28..3badedf57a1 100644 --- a/palettes/food/pineapple/package.dist.json +++ b/palettes/food/pineapple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pineapple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pineapple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/pineapple/package.json b/palettes/food/pineapple/package.json index f78857e1176..8e9099e1757 100644 --- a/palettes/food/pineapple/package.json +++ b/palettes/food/pineapple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pineapple", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pineapple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/pizza/CHANGELOG.md b/palettes/food/pizza/CHANGELOG.md index 1b8293e04eb..22c6844a64f 100644 --- a/palettes/food/pizza/CHANGELOG.md +++ b/palettes/food/pizza/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pizza + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pizza diff --git a/palettes/food/pizza/package.dist.json b/palettes/food/pizza/package.dist.json index 6fcd56fc4d7..8391afde937 100644 --- a/palettes/food/pizza/package.dist.json +++ b/palettes/food/pizza/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pizza", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pizza palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/pizza/package.json b/palettes/food/pizza/package.json index 61afc5bb487..08cccba5010 100644 --- a/palettes/food/pizza/package.json +++ b/palettes/food/pizza/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pizza", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pizza palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/sakura/CHANGELOG.md b/palettes/food/sakura/CHANGELOG.md index 077bd91deb2..303398212ec 100644 --- a/palettes/food/sakura/CHANGELOG.md +++ b/palettes/food/sakura/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-sakura + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-sakura diff --git a/palettes/food/sakura/package.dist.json b/palettes/food/sakura/package.dist.json index bca14fce91f..a1e5c8cdb85 100644 --- a/palettes/food/sakura/package.dist.json +++ b/palettes/food/sakura/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sakura", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sakura palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/sakura/package.json b/palettes/food/sakura/package.json index 19c53c1bff1..7a3f79f679d 100644 --- a/palettes/food/sakura/package.json +++ b/palettes/food/sakura/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sakura", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sakura palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/salad/CHANGELOG.md b/palettes/food/salad/CHANGELOG.md index ac1fee5574c..90a6537d0ec 100644 --- a/palettes/food/salad/CHANGELOG.md +++ b/palettes/food/salad/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-salad + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-salad diff --git a/palettes/food/salad/package.dist.json b/palettes/food/salad/package.dist.json index 848d3d4ce1d..009cfe015c9 100644 --- a/palettes/food/salad/package.dist.json +++ b/palettes/food/salad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-salad", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles salad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/salad/package.json b/palettes/food/salad/package.json index 13bea489c41..a093959579a 100644 --- a/palettes/food/salad/package.json +++ b/palettes/food/salad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-salad", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles salad palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/spice-rack/CHANGELOG.md b/palettes/food/spice-rack/CHANGELOG.md index 60e3a1d3048..d43b8bbc86f 100644 --- a/palettes/food/spice-rack/CHANGELOG.md +++ b/palettes/food/spice-rack/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-spice-rack + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-spice-rack diff --git a/palettes/food/spice-rack/package.dist.json b/palettes/food/spice-rack/package.dist.json index 8f7aecfde2e..87707d2adae 100644 --- a/palettes/food/spice-rack/package.dist.json +++ b/palettes/food/spice-rack/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spice-rack", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles spice rack palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/spice-rack/package.json b/palettes/food/spice-rack/package.json index 0055f19e55a..68cd8235f93 100644 --- a/palettes/food/spice-rack/package.json +++ b/palettes/food/spice-rack/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spice-rack", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles spice rack palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/steak/CHANGELOG.md b/palettes/food/steak/CHANGELOG.md index 6f27e03f6fd..2a4f1b47ea8 100644 --- a/palettes/food/steak/CHANGELOG.md +++ b/palettes/food/steak/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-steak + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-steak diff --git a/palettes/food/steak/package.dist.json b/palettes/food/steak/package.dist.json index 8a27d80fa7a..095c09c005e 100644 --- a/palettes/food/steak/package.dist.json +++ b/palettes/food/steak/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-steak", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles steak palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/steak/package.json b/palettes/food/steak/package.json index e825e6c5dd0..5ca208da274 100644 --- a/palettes/food/steak/package.json +++ b/palettes/food/steak/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-steak", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles steak palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/sushi/CHANGELOG.md b/palettes/food/sushi/CHANGELOG.md index 8e853770228..55ab9b84bd1 100644 --- a/palettes/food/sushi/CHANGELOG.md +++ b/palettes/food/sushi/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-sushi + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-sushi diff --git a/palettes/food/sushi/package.dist.json b/palettes/food/sushi/package.dist.json index 9c92a543f1c..1fe4002e53e 100644 --- a/palettes/food/sushi/package.dist.json +++ b/palettes/food/sushi/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sushi", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sushi palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/sushi/package.json b/palettes/food/sushi/package.json index 9b48fd6b2d3..1bc52beea4f 100644 --- a/palettes/food/sushi/package.json +++ b/palettes/food/sushi/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sushi", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sushi palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/tropical-fruits/CHANGELOG.md b/palettes/food/tropical-fruits/CHANGELOG.md index 5185aa0458d..53a7755d1bb 100644 --- a/palettes/food/tropical-fruits/CHANGELOG.md +++ b/palettes/food/tropical-fruits/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-tropical-fruits + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-tropical-fruits diff --git a/palettes/food/tropical-fruits/package.dist.json b/palettes/food/tropical-fruits/package.dist.json index 03191741542..e8f23bdb8c4 100644 --- a/palettes/food/tropical-fruits/package.dist.json +++ b/palettes/food/tropical-fruits/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tropical-fruits", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles tropical fruits palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/tropical-fruits/package.json b/palettes/food/tropical-fruits/package.json index 9e65eafbe45..5dd47225bb7 100644 --- a/palettes/food/tropical-fruits/package.json +++ b/palettes/food/tropical-fruits/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tropical-fruits", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles tropical fruits palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/watermelon/CHANGELOG.md b/palettes/food/watermelon/CHANGELOG.md index b91eda42019..159c9a0aa19 100644 --- a/palettes/food/watermelon/CHANGELOG.md +++ b/palettes/food/watermelon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-watermelon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-watermelon diff --git a/palettes/food/watermelon/package.dist.json b/palettes/food/watermelon/package.dist.json index 411cbdbe10b..af0ed077a94 100644 --- a/palettes/food/watermelon/package.dist.json +++ b/palettes/food/watermelon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-watermelon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/watermelon/package.json b/palettes/food/watermelon/package.json index ac4106130eb..7bbe6e5dccf 100644 --- a/palettes/food/watermelon/package.json +++ b/palettes/food/watermelon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-watermelon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/minecraft/CHANGELOG.md b/palettes/gaming/minecraft/CHANGELOG.md index 24d03d25be6..246f0fa022d 100644 --- a/palettes/gaming/minecraft/CHANGELOG.md +++ b/palettes/gaming/minecraft/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-minecraft + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-minecraft diff --git a/palettes/gaming/minecraft/package.dist.json b/palettes/gaming/minecraft/package.dist.json index 436d7824e19..be46d9f9f8b 100644 --- a/palettes/gaming/minecraft/package.dist.json +++ b/palettes/gaming/minecraft/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-minecraft", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles minecraft palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-minecraft.min.js", diff --git a/palettes/gaming/minecraft/package.json b/palettes/gaming/minecraft/package.json index 9f4a11b2d4d..692c4d95110 100644 --- a/palettes/gaming/minecraft/package.json +++ b/palettes/gaming/minecraft/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-minecraft", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles minecraft palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/pacman/CHANGELOG.md b/palettes/gaming/pacman/CHANGELOG.md index efac2574883..45eb52ada6f 100644 --- a/palettes/gaming/pacman/CHANGELOG.md +++ b/palettes/gaming/pacman/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pacman + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pacman diff --git a/palettes/gaming/pacman/package.dist.json b/palettes/gaming/pacman/package.dist.json index 4261a591d3a..dabfc59c4f6 100644 --- a/palettes/gaming/pacman/package.dist.json +++ b/palettes/gaming/pacman/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pacman", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pacman palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-pacman.min.js", diff --git a/palettes/gaming/pacman/package.json b/palettes/gaming/pacman/package.json index 011a73c0b8d..43f482f51ca 100644 --- a/palettes/gaming/pacman/package.json +++ b/palettes/gaming/pacman/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pacman", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pacman palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/superMarioBros/CHANGELOG.md b/palettes/gaming/superMarioBros/CHANGELOG.md index 35d27e72cd2..7485d1bb4b9 100644 --- a/palettes/gaming/superMarioBros/CHANGELOG.md +++ b/palettes/gaming/superMarioBros/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-super-mario-bros + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-super-mario-bros diff --git a/palettes/gaming/superMarioBros/package.dist.json b/palettes/gaming/superMarioBros/package.dist.json index 4cab3b66834..b724387151d 100644 --- a/palettes/gaming/superMarioBros/package.dist.json +++ b/palettes/gaming/superMarioBros/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-super-mario-bros", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles super mario bros palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-super-mario-bros.min.js", diff --git a/palettes/gaming/superMarioBros/package.json b/palettes/gaming/superMarioBros/package.json index 5fbf8106bf8..0d514ea80f7 100644 --- a/palettes/gaming/superMarioBros/package.json +++ b/palettes/gaming/superMarioBros/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-super-mario-bros", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles super mario bros palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/tetris/CHANGELOG.md b/palettes/gaming/tetris/CHANGELOG.md index a74f6561494..c04d5e48da7 100644 --- a/palettes/gaming/tetris/CHANGELOG.md +++ b/palettes/gaming/tetris/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-tetris + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-tetris diff --git a/palettes/gaming/tetris/package.dist.json b/palettes/gaming/tetris/package.dist.json index 4d8ac8c6069..50fb6e44cd8 100644 --- a/palettes/gaming/tetris/package.dist.json +++ b/palettes/gaming/tetris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tetris", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles tetris palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-tetris.min.js", diff --git a/palettes/gaming/tetris/package.json b/palettes/gaming/tetris/package.json index 42168b9d631..f700775080a 100644 --- a/palettes/gaming/tetris/package.json +++ b/palettes/gaming/tetris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tetris", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles tetris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/bulletHit/CHANGELOG.md b/palettes/impact/bulletHit/CHANGELOG.md index 25aeeb6b468..aa50e1627c8 100644 --- a/palettes/impact/bulletHit/CHANGELOG.md +++ b/palettes/impact/bulletHit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-bullet-hit + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-bullet-hit diff --git a/palettes/impact/bulletHit/package.dist.json b/palettes/impact/bulletHit/package.dist.json index 346d29e5139..3f44491f101 100644 --- a/palettes/impact/bulletHit/package.dist.json +++ b/palettes/impact/bulletHit/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bullet-hit", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bullet hit impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/bulletHit/package.json b/palettes/impact/bulletHit/package.json index 0316b9be3c6..a7e58d85879 100644 --- a/palettes/impact/bulletHit/package.json +++ b/palettes/impact/bulletHit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bullet-hit", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bullet hit impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/explosionDebris/CHANGELOG.md b/palettes/impact/explosionDebris/CHANGELOG.md index 2c353290380..46b234741be 100644 --- a/palettes/impact/explosionDebris/CHANGELOG.md +++ b/palettes/impact/explosionDebris/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-explosion-debris + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-explosion-debris diff --git a/palettes/impact/explosionDebris/package.dist.json b/palettes/impact/explosionDebris/package.dist.json index a458e0399b1..a5fae4b0c36 100644 --- a/palettes/impact/explosionDebris/package.dist.json +++ b/palettes/impact/explosionDebris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-explosion-debris", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles explosion - debris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/explosionDebris/package.json b/palettes/impact/explosionDebris/package.json index e29c59dba21..4c1fef0e2d0 100644 --- a/palettes/impact/explosionDebris/package.json +++ b/palettes/impact/explosionDebris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-explosion-debris", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles explosion - debris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/glassBurst/CHANGELOG.md b/palettes/impact/glassBurst/CHANGELOG.md index 173dc86ada7..945af66467d 100644 --- a/palettes/impact/glassBurst/CHANGELOG.md +++ b/palettes/impact/glassBurst/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-glass-burst + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-glass-burst diff --git a/palettes/impact/glassBurst/package.dist.json b/palettes/impact/glassBurst/package.dist.json index 3f85a27a443..2301521ebe2 100644 --- a/palettes/impact/glassBurst/package.dist.json +++ b/palettes/impact/glassBurst/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glass-burst", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles glass burst impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/glassBurst/package.json b/palettes/impact/glassBurst/package.json index f540c68565f..1973e4c1aba 100644 --- a/palettes/impact/glassBurst/package.json +++ b/palettes/impact/glassBurst/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glass-burst", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles glass burst impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/meteorImpact/CHANGELOG.md b/palettes/impact/meteorImpact/CHANGELOG.md index 470e8d9c147..ee868a520f4 100644 --- a/palettes/impact/meteorImpact/CHANGELOG.md +++ b/palettes/impact/meteorImpact/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-meteor-impact + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-meteor-impact diff --git a/palettes/impact/meteorImpact/package.dist.json b/palettes/impact/meteorImpact/package.dist.json index 2065b642852..159d98ec4f7 100644 --- a/palettes/impact/meteorImpact/package.dist.json +++ b/palettes/impact/meteorImpact/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-meteor-impact", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles meteor impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/meteorImpact/package.json b/palettes/impact/meteorImpact/package.json index 4fa3d3faa90..5ea8c175550 100644 --- a/palettes/impact/meteorImpact/package.json +++ b/palettes/impact/meteorImpact/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-meteor-impact", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles meteor impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/nuclearGlow/CHANGELOG.md b/palettes/impact/nuclearGlow/CHANGELOG.md index c70b4e753c1..97e6e44da47 100644 --- a/palettes/impact/nuclearGlow/CHANGELOG.md +++ b/palettes/impact/nuclearGlow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-nuclear-glow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-nuclear-glow diff --git a/palettes/impact/nuclearGlow/package.dist.json b/palettes/impact/nuclearGlow/package.dist.json index 7e16363fbbb..cf612cdd3f1 100644 --- a/palettes/impact/nuclearGlow/package.dist.json +++ b/palettes/impact/nuclearGlow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nuclear-glow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles nuclear glow impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/nuclearGlow/package.json b/palettes/impact/nuclearGlow/package.json index 6fea63aa7be..8df649f8898 100644 --- a/palettes/impact/nuclearGlow/package.json +++ b/palettes/impact/nuclearGlow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nuclear-glow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles nuclear glow impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/shockwaveBlast/CHANGELOG.md b/palettes/impact/shockwaveBlast/CHANGELOG.md index 391eafcfc35..8bf2a2b7ab4 100644 --- a/palettes/impact/shockwaveBlast/CHANGELOG.md +++ b/palettes/impact/shockwaveBlast/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-shockwave-blast + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-shockwave-blast diff --git a/palettes/impact/shockwaveBlast/package.dist.json b/palettes/impact/shockwaveBlast/package.dist.json index 883b275e564..c6a6eb61a86 100644 --- a/palettes/impact/shockwaveBlast/package.dist.json +++ b/palettes/impact/shockwaveBlast/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave-blast", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shockwave blast impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/shockwaveBlast/package.json b/palettes/impact/shockwaveBlast/package.json index 99c5153a90b..a4060d5945d 100644 --- a/palettes/impact/shockwaveBlast/package.json +++ b/palettes/impact/shockwaveBlast/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave-blast", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shockwave blast impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/splatterDark/CHANGELOG.md b/palettes/impact/splatterDark/CHANGELOG.md index 8c20d6e706d..98e8f363dbe 100644 --- a/palettes/impact/splatterDark/CHANGELOG.md +++ b/palettes/impact/splatterDark/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-splatter-dark + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-splatter-dark diff --git a/palettes/impact/splatterDark/package.dist.json b/palettes/impact/splatterDark/package.dist.json index 189da21a614..ee42b440210 100644 --- a/palettes/impact/splatterDark/package.dist.json +++ b/palettes/impact/splatterDark/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-splatter-dark", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dark splatter impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/splatterDark/package.json b/palettes/impact/splatterDark/package.json index f3eacbb32da..ce182506cb1 100644 --- a/palettes/impact/splatterDark/package.json +++ b/palettes/impact/splatterDark/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-splatter-dark", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dark splatter impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/blues/CHANGELOG.md b/palettes/monochromatic/blues/CHANGELOG.md index f7e5622777e..6edf07a843d 100644 --- a/palettes/monochromatic/blues/CHANGELOG.md +++ b/palettes/monochromatic/blues/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-blues + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-blues diff --git a/palettes/monochromatic/blues/package.dist.json b/palettes/monochromatic/blues/package.dist.json index bbdb17936ed..ba4a47de984 100644 --- a/palettes/monochromatic/blues/package.dist.json +++ b/palettes/monochromatic/blues/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-blues", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome blues palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/blues/package.json b/palettes/monochromatic/blues/package.json index 40390271731..57c361605e0 100644 --- a/palettes/monochromatic/blues/package.json +++ b/palettes/monochromatic/blues/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-blues", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome blues palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/brown/CHANGELOG.md b/palettes/monochromatic/brown/CHANGELOG.md index 95c693d5f8e..d4efb0d14de 100644 --- a/palettes/monochromatic/brown/CHANGELOG.md +++ b/palettes/monochromatic/brown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-brown + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-brown diff --git a/palettes/monochromatic/brown/package.dist.json b/palettes/monochromatic/brown/package.dist.json index 19e50ded81b..5f40e1d993a 100644 --- a/palettes/monochromatic/brown/package.dist.json +++ b/palettes/monochromatic/brown/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-brown", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome brown palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/brown/package.json b/palettes/monochromatic/brown/package.json index bb9cb65ae6f..a63da10514f 100644 --- a/palettes/monochromatic/brown/package.json +++ b/palettes/monochromatic/brown/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-brown", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome brown palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/cyan/CHANGELOG.md b/palettes/monochromatic/cyan/CHANGELOG.md index 3040550185d..ea4cfc2b593 100644 --- a/palettes/monochromatic/cyan/CHANGELOG.md +++ b/palettes/monochromatic/cyan/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-cyan + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-cyan diff --git a/palettes/monochromatic/cyan/package.dist.json b/palettes/monochromatic/cyan/package.dist.json index 90845de7acd..c9b3f805823 100644 --- a/palettes/monochromatic/cyan/package.dist.json +++ b/palettes/monochromatic/cyan/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-cyan", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/cyan/package.json b/palettes/monochromatic/cyan/package.json index 0553951d9f7..c6117139bb4 100644 --- a/palettes/monochromatic/cyan/package.json +++ b/palettes/monochromatic/cyan/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-cyan", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome cyan palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/gold/CHANGELOG.md b/palettes/monochromatic/gold/CHANGELOG.md index 6c8bfa95d2c..f8ccfff23f5 100644 --- a/palettes/monochromatic/gold/CHANGELOG.md +++ b/palettes/monochromatic/gold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-gold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-gold diff --git a/palettes/monochromatic/gold/package.dist.json b/palettes/monochromatic/gold/package.dist.json index e1a0b53b1ce..41432a6b9f7 100644 --- a/palettes/monochromatic/gold/package.dist.json +++ b/palettes/monochromatic/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/gold/package.json b/palettes/monochromatic/gold/package.json index 1eeae7b5289..2d3fa82740d 100644 --- a/palettes/monochromatic/gold/package.json +++ b/palettes/monochromatic/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/greens/CHANGELOG.md b/palettes/monochromatic/greens/CHANGELOG.md index aa809eacf58..349766751b9 100644 --- a/palettes/monochromatic/greens/CHANGELOG.md +++ b/palettes/monochromatic/greens/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-greens + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-greens diff --git a/palettes/monochromatic/greens/package.dist.json b/palettes/monochromatic/greens/package.dist.json index 2dc972f774f..22708b2d425 100644 --- a/palettes/monochromatic/greens/package.dist.json +++ b/palettes/monochromatic/greens/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-greens", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome greens palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/greens/package.json b/palettes/monochromatic/greens/package.json index ac5e9957575..ca5fc6355e2 100644 --- a/palettes/monochromatic/greens/package.json +++ b/palettes/monochromatic/greens/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-greens", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome greens palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/noir/CHANGELOG.md b/palettes/monochromatic/noir/CHANGELOG.md index a9a9936a963..d879a7356e9 100644 --- a/palettes/monochromatic/noir/CHANGELOG.md +++ b/palettes/monochromatic/noir/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-noir + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-noir diff --git a/palettes/monochromatic/noir/package.dist.json b/palettes/monochromatic/noir/package.dist.json index ef2821da219..a7ec86ff9dd 100644 --- a/palettes/monochromatic/noir/package.dist.json +++ b/palettes/monochromatic/noir/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-noir", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome noir palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/noir/package.json b/palettes/monochromatic/noir/package.json index 8cc53b579d6..e980bc7c5f7 100644 --- a/palettes/monochromatic/noir/package.json +++ b/palettes/monochromatic/noir/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-noir", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome noir palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/oranges/CHANGELOG.md b/palettes/monochromatic/oranges/CHANGELOG.md index 5d8a666ee2a..ab29c6d39ab 100644 --- a/palettes/monochromatic/oranges/CHANGELOG.md +++ b/palettes/monochromatic/oranges/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-oranges + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-oranges diff --git a/palettes/monochromatic/oranges/package.dist.json b/palettes/monochromatic/oranges/package.dist.json index 2859a3e3969..9a4cc881bc7 100644 --- a/palettes/monochromatic/oranges/package.dist.json +++ b/palettes/monochromatic/oranges/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-oranges", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome oranges palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/oranges/package.json b/palettes/monochromatic/oranges/package.json index ae4e383db80..ff292a4a379 100644 --- a/palettes/monochromatic/oranges/package.json +++ b/palettes/monochromatic/oranges/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-oranges", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome oranges palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/pinks/CHANGELOG.md b/palettes/monochromatic/pinks/CHANGELOG.md index f8b588afa51..70af49f4787 100644 --- a/palettes/monochromatic/pinks/CHANGELOG.md +++ b/palettes/monochromatic/pinks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-pinks + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-pinks diff --git a/palettes/monochromatic/pinks/package.dist.json b/palettes/monochromatic/pinks/package.dist.json index c581eb249be..bd6d09c3967 100644 --- a/palettes/monochromatic/pinks/package.dist.json +++ b/palettes/monochromatic/pinks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-pinks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome pinks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/pinks/package.json b/palettes/monochromatic/pinks/package.json index 287213422ba..cc89d7db905 100644 --- a/palettes/monochromatic/pinks/package.json +++ b/palettes/monochromatic/pinks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-pinks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome pinks palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/purples/CHANGELOG.md b/palettes/monochromatic/purples/CHANGELOG.md index 955c0c87030..8aad3c4f02f 100644 --- a/palettes/monochromatic/purples/CHANGELOG.md +++ b/palettes/monochromatic/purples/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-purples + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-purples diff --git a/palettes/monochromatic/purples/package.dist.json b/palettes/monochromatic/purples/package.dist.json index 6332fe00c48..ef8a60423e4 100644 --- a/palettes/monochromatic/purples/package.dist.json +++ b/palettes/monochromatic/purples/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-purples", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome purples palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/purples/package.json b/palettes/monochromatic/purples/package.json index 14041ede2ef..85ba463a935 100644 --- a/palettes/monochromatic/purples/package.json +++ b/palettes/monochromatic/purples/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-purples", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome purples palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/reds/CHANGELOG.md b/palettes/monochromatic/reds/CHANGELOG.md index 0ae6f6af323..b2a1606a16e 100644 --- a/palettes/monochromatic/reds/CHANGELOG.md +++ b/palettes/monochromatic/reds/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-reds + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-reds diff --git a/palettes/monochromatic/reds/package.dist.json b/palettes/monochromatic/reds/package.dist.json index f7ee2e08da4..0a2792a7cf1 100644 --- a/palettes/monochromatic/reds/package.dist.json +++ b/palettes/monochromatic/reds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-reds", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome reds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/reds/package.json b/palettes/monochromatic/reds/package.json index 254cdc7d49a..492cf209d74 100644 --- a/palettes/monochromatic/reds/package.json +++ b/palettes/monochromatic/reds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-reds", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome reds palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/silver/CHANGELOG.md b/palettes/monochromatic/silver/CHANGELOG.md index 924dc633e1d..2e8136febea 100644 --- a/palettes/monochromatic/silver/CHANGELOG.md +++ b/palettes/monochromatic/silver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-silver + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-silver diff --git a/palettes/monochromatic/silver/package.dist.json b/palettes/monochromatic/silver/package.dist.json index 1b890b45b59..ea7d7210ce2 100644 --- a/palettes/monochromatic/silver/package.dist.json +++ b/palettes/monochromatic/silver/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-silver", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/silver/package.json b/palettes/monochromatic/silver/package.json index 1577661ed9a..2d4d1915e12 100644 --- a/palettes/monochromatic/silver/package.json +++ b/palettes/monochromatic/silver/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-silver", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome silver palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/teal/CHANGELOG.md b/palettes/monochromatic/teal/CHANGELOG.md index 2d57ef5ea27..16c4bf365d4 100644 --- a/palettes/monochromatic/teal/CHANGELOG.md +++ b/palettes/monochromatic/teal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-teal + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-teal diff --git a/palettes/monochromatic/teal/package.dist.json b/palettes/monochromatic/teal/package.dist.json index 648cf22bb91..f125490d4bb 100644 --- a/palettes/monochromatic/teal/package.dist.json +++ b/palettes/monochromatic/teal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-teal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/teal/package.json b/palettes/monochromatic/teal/package.json index 28cb71ff544..2d8c07a22df 100644 --- a/palettes/monochromatic/teal/package.json +++ b/palettes/monochromatic/teal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-teal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome teal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/white/CHANGELOG.md b/palettes/monochromatic/white/CHANGELOG.md index 1024530db03..ccb4c58f954 100644 --- a/palettes/monochromatic/white/CHANGELOG.md +++ b/palettes/monochromatic/white/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-white + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-white diff --git a/palettes/monochromatic/white/package.dist.json b/palettes/monochromatic/white/package.dist.json index 610400e57a6..3e4597b84b4 100644 --- a/palettes/monochromatic/white/package.dist.json +++ b/palettes/monochromatic/white/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-white", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome white palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/white/package.json b/palettes/monochromatic/white/package.json index b0bcf2d6182..da36cac70b2 100644 --- a/palettes/monochromatic/white/package.json +++ b/palettes/monochromatic/white/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-white", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome white palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/yellows/CHANGELOG.md b/palettes/monochromatic/yellows/CHANGELOG.md index a56d35893cc..408430acce0 100644 --- a/palettes/monochromatic/yellows/CHANGELOG.md +++ b/palettes/monochromatic/yellows/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-yellows + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-monochrome-yellows diff --git a/palettes/monochromatic/yellows/package.dist.json b/palettes/monochromatic/yellows/package.dist.json index 57dbcec6e8a..410b51a66aa 100644 --- a/palettes/monochromatic/yellows/package.dist.json +++ b/palettes/monochromatic/yellows/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-yellows", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome yellows palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/yellows/package.json b/palettes/monochromatic/yellows/package.json index 4ce408f919f..043a1ff74ae 100644 --- a/palettes/monochromatic/yellows/package.json +++ b/palettes/monochromatic/yellows/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-yellows", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles monochrome yellows palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/autumnLeaves/CHANGELOG.md b/palettes/nature/autumnLeaves/CHANGELOG.md index 4f97113ed2d..eee7102e4f1 100644 --- a/palettes/nature/autumnLeaves/CHANGELOG.md +++ b/palettes/nature/autumnLeaves/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-autumn-leaves + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-autumn-leaves diff --git a/palettes/nature/autumnLeaves/package.dist.json b/palettes/nature/autumnLeaves/package.dist.json index 1329e163e1e..da988b19494 100644 --- a/palettes/nature/autumnLeaves/package.dist.json +++ b/palettes/nature/autumnLeaves/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-autumn-leaves", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles autumn leaves palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/autumnLeaves/package.json b/palettes/nature/autumnLeaves/package.json index 748a3336622..044304e8781 100644 --- a/palettes/nature/autumnLeaves/package.json +++ b/palettes/nature/autumnLeaves/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-autumn-leaves", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles autumn leaves palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/cherryBlossom/CHANGELOG.md b/palettes/nature/cherryBlossom/CHANGELOG.md index ccb465e3745..b24488691a1 100644 --- a/palettes/nature/cherryBlossom/CHANGELOG.md +++ b/palettes/nature/cherryBlossom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-cherry-blossom + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-cherry-blossom diff --git a/palettes/nature/cherryBlossom/package.dist.json b/palettes/nature/cherryBlossom/package.dist.json index f3cd4234f46..f0955ffce5a 100644 --- a/palettes/nature/cherryBlossom/package.dist.json +++ b/palettes/nature/cherryBlossom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry-blossom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cherry blossom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/cherryBlossom/package.json b/palettes/nature/cherryBlossom/package.json index b06bf326b53..dca27ba812c 100644 --- a/palettes/nature/cherryBlossom/package.json +++ b/palettes/nature/cherryBlossom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry-blossom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cherry blossom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/dandelionSeeds/CHANGELOG.md b/palettes/nature/dandelionSeeds/CHANGELOG.md index cf1d6c669c9..179a297f15c 100644 --- a/palettes/nature/dandelionSeeds/CHANGELOG.md +++ b/palettes/nature/dandelionSeeds/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-dandelion-seeds + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-dandelion-seeds diff --git a/palettes/nature/dandelionSeeds/package.dist.json b/palettes/nature/dandelionSeeds/package.dist.json index a1259cf70d3..3bbb51265d8 100644 --- a/palettes/nature/dandelionSeeds/package.dist.json +++ b/palettes/nature/dandelionSeeds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dandelion-seeds", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dandelion seeds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/dandelionSeeds/package.json b/palettes/nature/dandelionSeeds/package.json index 08f20a2a5b7..7ae6b2c90a3 100644 --- a/palettes/nature/dandelionSeeds/package.json +++ b/palettes/nature/dandelionSeeds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dandelion-seeds", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dandelion seeds palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/earthyNature/CHANGELOG.md b/palettes/nature/earthyNature/CHANGELOG.md index 58ff80bd463..42383d2be53 100644 --- a/palettes/nature/earthyNature/CHANGELOG.md +++ b/palettes/nature/earthyNature/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-earthy-nature + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-earthy-nature diff --git a/palettes/nature/earthyNature/package.dist.json b/palettes/nature/earthyNature/package.dist.json index 9feaa992546..726a9c0f5d0 100644 --- a/palettes/nature/earthyNature/package.dist.json +++ b/palettes/nature/earthyNature/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-earthy-nature", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles earthy nature palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/earthyNature/package.json b/palettes/nature/earthyNature/package.json index f4503230bb2..e046a65feaa 100644 --- a/palettes/nature/earthyNature/package.json +++ b/palettes/nature/earthyNature/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-earthy-nature", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles earthy nature palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/fireflies/CHANGELOG.md b/palettes/nature/fireflies/CHANGELOG.md index a81476d87a5..54826a88f1e 100644 --- a/palettes/nature/fireflies/CHANGELOG.md +++ b/palettes/nature/fireflies/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fireflies + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fireflies diff --git a/palettes/nature/fireflies/package.dist.json b/palettes/nature/fireflies/package.dist.json index 3a5666c3a52..0466d4e911f 100644 --- a/palettes/nature/fireflies/package.dist.json +++ b/palettes/nature/fireflies/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireflies", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireflies palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/fireflies/package.json b/palettes/nature/fireflies/package.json index 0ce1c22a617..631109e7e94 100644 --- a/palettes/nature/fireflies/package.json +++ b/palettes/nature/fireflies/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireflies", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireflies palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/forestCanopy/CHANGELOG.md b/palettes/nature/forestCanopy/CHANGELOG.md index db7df3c845b..857489c499f 100644 --- a/palettes/nature/forestCanopy/CHANGELOG.md +++ b/palettes/nature/forestCanopy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-forest-canopy + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-forest-canopy diff --git a/palettes/nature/forestCanopy/package.dist.json b/palettes/nature/forestCanopy/package.dist.json index 31f6cbc453b..be8d9b928a6 100644 --- a/palettes/nature/forestCanopy/package.dist.json +++ b/palettes/nature/forestCanopy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-forest-canopy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles forest canopy palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/forestCanopy/package.json b/palettes/nature/forestCanopy/package.json index 2aeca1b3609..1329baec511 100644 --- a/palettes/nature/forestCanopy/package.json +++ b/palettes/nature/forestCanopy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-forest-canopy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles forest canopy palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/pollenAndSpores/CHANGELOG.md b/palettes/nature/pollenAndSpores/CHANGELOG.md index 34baec3947c..5dbfc3b20fe 100644 --- a/palettes/nature/pollenAndSpores/CHANGELOG.md +++ b/palettes/nature/pollenAndSpores/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pollen-and-spores + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pollen-and-spores diff --git a/palettes/nature/pollenAndSpores/package.dist.json b/palettes/nature/pollenAndSpores/package.dist.json index 96ba7b93766..0143f94ab50 100644 --- a/palettes/nature/pollenAndSpores/package.dist.json +++ b/palettes/nature/pollenAndSpores/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pollen-and-spores", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pollen & spores palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/pollenAndSpores/package.json b/palettes/nature/pollenAndSpores/package.json index 01fa02c3980..cb3b2646326 100644 --- a/palettes/nature/pollenAndSpores/package.json +++ b/palettes/nature/pollenAndSpores/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pollen-and-spores", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pollen & spores palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/snowfall/CHANGELOG.md b/palettes/nature/snowfall/CHANGELOG.md index b223281ae59..d60ecad5de9 100644 --- a/palettes/nature/snowfall/CHANGELOG.md +++ b/palettes/nature/snowfall/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-snowfall + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-snowfall diff --git a/palettes/nature/snowfall/package.dist.json b/palettes/nature/snowfall/package.dist.json index 0055e62fb68..a39e739ea38 100644 --- a/palettes/nature/snowfall/package.dist.json +++ b/palettes/nature/snowfall/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-snowfall", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles snowfall palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/snowfall/package.json b/palettes/nature/snowfall/package.json index b8aaf6a40b1..6d80c97ecef 100644 --- a/palettes/nature/snowfall/package.json +++ b/palettes/nature/snowfall/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-snowfall", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles snowfall palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/springBloom/CHANGELOG.md b/palettes/nature/springBloom/CHANGELOG.md index 25fe35de546..f7ebc56ce30 100644 --- a/palettes/nature/springBloom/CHANGELOG.md +++ b/palettes/nature/springBloom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-spring-bloom + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-spring-bloom diff --git a/palettes/nature/springBloom/package.dist.json b/palettes/nature/springBloom/package.dist.json index 125c239eb70..58eda483645 100644 --- a/palettes/nature/springBloom/package.dist.json +++ b/palettes/nature/springBloom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spring-bloom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles spring bloom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/springBloom/package.json b/palettes/nature/springBloom/package.json index a3d1f22aaf2..bf21e2fce34 100644 --- a/palettes/nature/springBloom/package.json +++ b/palettes/nature/springBloom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spring-bloom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles spring bloom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehCold/CHANGELOG.md b/palettes/optics/bokehCold/CHANGELOG.md index 97be24a549a..9d0c3d94cfc 100644 --- a/palettes/optics/bokehCold/CHANGELOG.md +++ b/palettes/optics/bokehCold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-cold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-bokeh-cold diff --git a/palettes/optics/bokehCold/package.dist.json b/palettes/optics/bokehCold/package.dist.json index dedff276cf6..eb37b84e209 100644 --- a/palettes/optics/bokehCold/package.dist.json +++ b/palettes/optics/bokehCold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-cold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bokeh cold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehCold/package.json b/palettes/optics/bokehCold/package.json index e3270721c54..b5a1b007aa4 100644 --- a/palettes/optics/bokehCold/package.json +++ b/palettes/optics/bokehCold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-cold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bokeh cold optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehGold/CHANGELOG.md b/palettes/optics/bokehGold/CHANGELOG.md index dba3cff2991..0620f4f7832 100644 --- a/palettes/optics/bokehGold/CHANGELOG.md +++ b/palettes/optics/bokehGold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-gold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-bokeh-gold diff --git a/palettes/optics/bokehGold/package.dist.json b/palettes/optics/bokehGold/package.dist.json index f4c0cefcd5b..707a8892bb4 100644 --- a/palettes/optics/bokehGold/package.dist.json +++ b/palettes/optics/bokehGold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bokeh gold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehGold/package.json b/palettes/optics/bokehGold/package.json index 4620ebf799b..d061e28879c 100644 --- a/palettes/optics/bokehGold/package.json +++ b/palettes/optics/bokehGold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-gold", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bokeh gold optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehPastel/CHANGELOG.md b/palettes/optics/bokehPastel/CHANGELOG.md index 680c2945e8e..7224474e031 100644 --- a/palettes/optics/bokehPastel/CHANGELOG.md +++ b/palettes/optics/bokehPastel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-pastel + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-bokeh-pastel diff --git a/palettes/optics/bokehPastel/package.dist.json b/palettes/optics/bokehPastel/package.dist.json index 98d0ab812f2..673fd8552ad 100644 --- a/palettes/optics/bokehPastel/package.dist.json +++ b/palettes/optics/bokehPastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-pastel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bokeh pastel optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehPastel/package.json b/palettes/optics/bokehPastel/package.json index 07d59d07f0f..cc75faf20e5 100644 --- a/palettes/optics/bokehPastel/package.json +++ b/palettes/optics/bokehPastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-pastel", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bokeh pastel optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/holographicShimmer/CHANGELOG.md b/palettes/optics/holographicShimmer/CHANGELOG.md index d222fdcf834..e562004340c 100644 --- a/palettes/optics/holographicShimmer/CHANGELOG.md +++ b/palettes/optics/holographicShimmer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-holographic-shimmer + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-holographic-shimmer diff --git a/palettes/optics/holographicShimmer/package.dist.json b/palettes/optics/holographicShimmer/package.dist.json index 998d16832fa..c25d4c86619 100644 --- a/palettes/optics/holographicShimmer/package.dist.json +++ b/palettes/optics/holographicShimmer/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holographic-shimmer", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles holographic shimmer optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/holographicShimmer/package.json b/palettes/optics/holographicShimmer/package.json index 848eb84dfb3..0e234da8cc4 100644 --- a/palettes/optics/holographicShimmer/package.json +++ b/palettes/optics/holographicShimmer/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holographic-shimmer", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles holographic shimmer optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/laserScatter/CHANGELOG.md b/palettes/optics/laserScatter/CHANGELOG.md index 16ddb3189f0..df871329f8a 100644 --- a/palettes/optics/laserScatter/CHANGELOG.md +++ b/palettes/optics/laserScatter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-laser-scatter + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-laser-scatter diff --git a/palettes/optics/laserScatter/package.dist.json b/palettes/optics/laserScatter/package.dist.json index 6eb3726e143..f00a8aca698 100644 --- a/palettes/optics/laserScatter/package.dist.json +++ b/palettes/optics/laserScatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-laser-scatter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles laser scatter optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/laserScatter/package.json b/palettes/optics/laserScatter/package.json index 81f6f8c3f08..1019ad9623f 100644 --- a/palettes/optics/laserScatter/package.json +++ b/palettes/optics/laserScatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-laser-scatter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles laser scatter optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/lensFlareDust/CHANGELOG.md b/palettes/optics/lensFlareDust/CHANGELOG.md index 209878cfdd8..4e8d28b4026 100644 --- a/palettes/optics/lensFlareDust/CHANGELOG.md +++ b/palettes/optics/lensFlareDust/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-lens-flare-dust + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-lens-flare-dust diff --git a/palettes/optics/lensFlareDust/package.dist.json b/palettes/optics/lensFlareDust/package.dist.json index 7ca7ae63f79..cb8cfba2ef7 100644 --- a/palettes/optics/lensFlareDust/package.dist.json +++ b/palettes/optics/lensFlareDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lens-flare-dust", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lens flare dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/lensFlareDust/package.json b/palettes/optics/lensFlareDust/package.json index 0fb548880bc..aa47a1cfd43 100644 --- a/palettes/optics/lensFlareDust/package.json +++ b/palettes/optics/lensFlareDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lens-flare-dust", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lens flare dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/prismSpectrum/CHANGELOG.md b/palettes/optics/prismSpectrum/CHANGELOG.md index 7d5384a5ee0..241c5c4db67 100644 --- a/palettes/optics/prismSpectrum/CHANGELOG.md +++ b/palettes/optics/prismSpectrum/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-prism-spectrum + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-prism-spectrum diff --git a/palettes/optics/prismSpectrum/package.dist.json b/palettes/optics/prismSpectrum/package.dist.json index f7481c105f5..5158a9d1a93 100644 --- a/palettes/optics/prismSpectrum/package.dist.json +++ b/palettes/optics/prismSpectrum/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-spectrum", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles prism spectrum optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/prismSpectrum/package.json b/palettes/optics/prismSpectrum/package.json index 28d5abc0504..461081b9543 100644 --- a/palettes/optics/prismSpectrum/package.json +++ b/palettes/optics/prismSpectrum/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-spectrum", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles prism spectrum optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/cool/CHANGELOG.md b/palettes/pastel/cool/CHANGELOG.md index 82887f3aa40..b606cfc1a37 100644 --- a/palettes/pastel/cool/CHANGELOG.md +++ b/palettes/pastel/cool/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pastel-cool + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pastel-cool diff --git a/palettes/pastel/cool/package.dist.json b/palettes/pastel/cool/package.dist.json index af1ffa9a7ff..da7ea027c6b 100644 --- a/palettes/pastel/cool/package.dist.json +++ b/palettes/pastel/cool/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-cool", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel cool palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/cool/package.json b/palettes/pastel/cool/package.json index 730943460fe..ce7cf1fcd52 100644 --- a/palettes/pastel/cool/package.json +++ b/palettes/pastel/cool/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-cool", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel cool palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/dream/CHANGELOG.md b/palettes/pastel/dream/CHANGELOG.md index eb5f900501b..74e16257da1 100644 --- a/palettes/pastel/dream/CHANGELOG.md +++ b/palettes/pastel/dream/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pastel-dream + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pastel-dream diff --git a/palettes/pastel/dream/package.dist.json b/palettes/pastel/dream/package.dist.json index 3f2fe5c11ea..6a7d54e9da3 100644 --- a/palettes/pastel/dream/package.dist.json +++ b/palettes/pastel/dream/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-dream", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel dream palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/dream/package.json b/palettes/pastel/dream/package.json index 4cdbb1de797..96ea2cb0868 100644 --- a/palettes/pastel/dream/package.json +++ b/palettes/pastel/dream/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-dream", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel dream palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/mint/CHANGELOG.md b/palettes/pastel/mint/CHANGELOG.md index 34009493fa7..751c0f5c90c 100644 --- a/palettes/pastel/mint/CHANGELOG.md +++ b/palettes/pastel/mint/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pastel-mint + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pastel-mint diff --git a/palettes/pastel/mint/package.dist.json b/palettes/pastel/mint/package.dist.json index 9b42ac36941..40ef36954a9 100644 --- a/palettes/pastel/mint/package.dist.json +++ b/palettes/pastel/mint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-mint", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel mint palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/mint/package.json b/palettes/pastel/mint/package.json index 543a21bb68a..8ff41005be8 100644 --- a/palettes/pastel/mint/package.json +++ b/palettes/pastel/mint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-mint", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel mint palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/sunset/CHANGELOG.md b/palettes/pastel/sunset/CHANGELOG.md index 28946b44e39..53e407816b4 100644 --- a/palettes/pastel/sunset/CHANGELOG.md +++ b/palettes/pastel/sunset/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pastel-sunset + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pastel-sunset diff --git a/palettes/pastel/sunset/package.dist.json b/palettes/pastel/sunset/package.dist.json index 86e6cbfa82b..248622df140 100644 --- a/palettes/pastel/sunset/package.dist.json +++ b/palettes/pastel/sunset/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-sunset", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel sunset palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/sunset/package.json b/palettes/pastel/sunset/package.json index bf06f907982..c1b667ca8ef 100644 --- a/palettes/pastel/sunset/package.json +++ b/palettes/pastel/sunset/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-sunset", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel sunset palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/warm/CHANGELOG.md b/palettes/pastel/warm/CHANGELOG.md index dd614632f0f..8095513780f 100644 --- a/palettes/pastel/warm/CHANGELOG.md +++ b/palettes/pastel/warm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pastel-warm + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pastel-warm diff --git a/palettes/pastel/warm/package.dist.json b/palettes/pastel/warm/package.dist.json index bd682189da7..92331a69914 100644 --- a/palettes/pastel/warm/package.dist.json +++ b/palettes/pastel/warm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-warm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/warm/package.json b/palettes/pastel/warm/package.json index abb227ac0b6..831eed45240 100644 --- a/palettes/pastel/warm/package.json +++ b/palettes/pastel/warm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-warm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pastel warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/auroraBorealis/CHANGELOG.md b/palettes/space/auroraBorealis/CHANGELOG.md index ec930d3819c..246a05c2ada 100644 --- a/palettes/space/auroraBorealis/CHANGELOG.md +++ b/palettes/space/auroraBorealis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-aurora-borealis + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-aurora-borealis diff --git a/palettes/space/auroraBorealis/package.dist.json b/palettes/space/auroraBorealis/package.dist.json index af92ba646cd..e9132f8e55d 100644 --- a/palettes/space/auroraBorealis/package.dist.json +++ b/palettes/space/auroraBorealis/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-aurora-borealis", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles aurora borealis palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/auroraBorealis/package.json b/palettes/space/auroraBorealis/package.json index dc4497880f5..652567b39c9 100644 --- a/palettes/space/auroraBorealis/package.json +++ b/palettes/space/auroraBorealis/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-aurora-borealis", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles aurora borealis palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/cosmicRadiation/CHANGELOG.md b/palettes/space/cosmicRadiation/CHANGELOG.md index 472e0ab8e95..b774646eefd 100644 --- a/palettes/space/cosmicRadiation/CHANGELOG.md +++ b/palettes/space/cosmicRadiation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-cosmic-radiation + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-cosmic-radiation diff --git a/palettes/space/cosmicRadiation/package.dist.json b/palettes/space/cosmicRadiation/package.dist.json index 27b4721ca1f..8f7f224435e 100644 --- a/palettes/space/cosmicRadiation/package.dist.json +++ b/palettes/space/cosmicRadiation/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cosmic-radiation", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cosmic radiation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/cosmicRadiation/package.json b/palettes/space/cosmicRadiation/package.json index b4f93f56061..f81b2ac9c4c 100644 --- a/palettes/space/cosmicRadiation/package.json +++ b/palettes/space/cosmicRadiation/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cosmic-radiation", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cosmic radiation palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/darkMatter/CHANGELOG.md b/palettes/space/darkMatter/CHANGELOG.md index 0a8a9fc4553..ce959f4c178 100644 --- a/palettes/space/darkMatter/CHANGELOG.md +++ b/palettes/space/darkMatter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-dark-matter + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-dark-matter diff --git a/palettes/space/darkMatter/package.dist.json b/palettes/space/darkMatter/package.dist.json index ecdd4a5621d..2db67aad5bb 100644 --- a/palettes/space/darkMatter/package.dist.json +++ b/palettes/space/darkMatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dark-matter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dark matter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/darkMatter/package.json b/palettes/space/darkMatter/package.json index 15bc912032e..888d8238bf5 100644 --- a/palettes/space/darkMatter/package.json +++ b/palettes/space/darkMatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dark-matter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles dark matter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/galaxyDust/CHANGELOG.md b/palettes/space/galaxyDust/CHANGELOG.md index 8a76cfa9c79..f0b2806a7d1 100644 --- a/palettes/space/galaxyDust/CHANGELOG.md +++ b/palettes/space/galaxyDust/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-galaxy-dust + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-galaxy-dust diff --git a/palettes/space/galaxyDust/package.dist.json b/palettes/space/galaxyDust/package.dist.json index 65096502b90..7f15a3ed0fc 100644 --- a/palettes/space/galaxyDust/package.dist.json +++ b/palettes/space/galaxyDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-galaxy-dust", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles galaxy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/galaxyDust/package.json b/palettes/space/galaxyDust/package.json index 3bcb1159f60..2c5383ee965 100644 --- a/palettes/space/galaxyDust/package.json +++ b/palettes/space/galaxyDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-galaxy-dust", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles galaxy dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/nebula/CHANGELOG.md b/palettes/space/nebula/CHANGELOG.md index eb04ef01406..5e5f8dcd27a 100644 --- a/palettes/space/nebula/CHANGELOG.md +++ b/palettes/space/nebula/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-nebula + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-nebula diff --git a/palettes/space/nebula/package.dist.json b/palettes/space/nebula/package.dist.json index bbd818ef93d..8045fad6f14 100644 --- a/palettes/space/nebula/package.dist.json +++ b/palettes/space/nebula/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nebula", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles nebula palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/nebula/package.json b/palettes/space/nebula/package.json index d12636f7a09..4e412ef275d 100644 --- a/palettes/space/nebula/package.json +++ b/palettes/space/nebula/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nebula", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles nebula palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/portal/CHANGELOG.md b/palettes/space/portal/CHANGELOG.md index 4ddb8abfc8b..d44f17e8f0d 100644 --- a/palettes/space/portal/CHANGELOG.md +++ b/palettes/space/portal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-portal + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-portal diff --git a/palettes/space/portal/package.dist.json b/palettes/space/portal/package.dist.json index 40611f383e7..18200450573 100644 --- a/palettes/space/portal/package.dist.json +++ b/palettes/space/portal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-portal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles portal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/portal/package.json b/palettes/space/portal/package.json index 1e367cd2ada..84f7ad7c3d2 100644 --- a/palettes/space/portal/package.json +++ b/palettes/space/portal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-portal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles portal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/pulsar/CHANGELOG.md b/palettes/space/pulsar/CHANGELOG.md index 4c0638c638d..11775b6c5ca 100644 --- a/palettes/space/pulsar/CHANGELOG.md +++ b/palettes/space/pulsar/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-pulsar + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-pulsar diff --git a/palettes/space/pulsar/package.dist.json b/palettes/space/pulsar/package.dist.json index b2f584e1ebb..180cd0489b0 100644 --- a/palettes/space/pulsar/package.dist.json +++ b/palettes/space/pulsar/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pulsar", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pulsar palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/pulsar/package.json b/palettes/space/pulsar/package.json index 543795aa3cb..35eb8f21614 100644 --- a/palettes/space/pulsar/package.json +++ b/palettes/space/pulsar/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pulsar", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles pulsar palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/solarWind/CHANGELOG.md b/palettes/space/solarWind/CHANGELOG.md index ac22e618296..58ea6e5d214 100644 --- a/palettes/space/solarWind/CHANGELOG.md +++ b/palettes/space/solarWind/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-solar-wind + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-solar-wind diff --git a/palettes/space/solarWind/package.dist.json b/palettes/space/solarWind/package.dist.json index 5eff8084515..82d706e3946 100644 --- a/palettes/space/solarWind/package.dist.json +++ b/palettes/space/solarWind/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-solar-wind", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles solar wind palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/solarWind/package.json b/palettes/space/solarWind/package.json index e4446613a3c..ff9c9b01659 100644 --- a/palettes/space/solarWind/package.json +++ b/palettes/space/solarWind/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-solar-wind", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles solar wind palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/supernova/CHANGELOG.md b/palettes/space/supernova/CHANGELOG.md index 76384890460..ec1f0b43c56 100644 --- a/palettes/space/supernova/CHANGELOG.md +++ b/palettes/space/supernova/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-supernova + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-supernova diff --git a/palettes/space/supernova/package.dist.json b/palettes/space/supernova/package.dist.json index db35a2b8e52..02cce335b81 100644 --- a/palettes/space/supernova/package.dist.json +++ b/palettes/space/supernova/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-supernova", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles supernova palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/supernova/package.json b/palettes/space/supernova/package.json index 37a1dc0b127..b7ecfd3adf0 100644 --- a/palettes/space/supernova/package.json +++ b/palettes/space/supernova/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-supernova", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles supernova palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/acidPair/CHANGELOG.md b/palettes/spectrum/acidPair/CHANGELOG.md index d1cdb3bb150..0587bd4936a 100644 --- a/palettes/spectrum/acidPair/CHANGELOG.md +++ b/palettes/spectrum/acidPair/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-acid-pair + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-acid-pair diff --git a/palettes/spectrum/acidPair/package.dist.json b/palettes/spectrum/acidPair/package.dist.json index 1fb30247fa7..a3d5e90de8f 100644 --- a/palettes/spectrum/acidPair/package.dist.json +++ b/palettes/spectrum/acidPair/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-acid-pair", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles acid pair palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/acidPair/package.json b/palettes/spectrum/acidPair/package.json index e3250d3c7d9..d9cf6cfc1f3 100644 --- a/palettes/spectrum/acidPair/package.json +++ b/palettes/spectrum/acidPair/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-acid-pair", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles acid pair palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/cmySecondaries/CHANGELOG.md b/palettes/spectrum/cmySecondaries/CHANGELOG.md index 059012bf7f0..cfe947e710b 100644 --- a/palettes/spectrum/cmySecondaries/CHANGELOG.md +++ b/palettes/spectrum/cmySecondaries/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-cmy-secondaries + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-cmy-secondaries diff --git a/palettes/spectrum/cmySecondaries/package.dist.json b/palettes/spectrum/cmySecondaries/package.dist.json index 955751c7fc9..1fd49f3c283 100644 --- a/palettes/spectrum/cmySecondaries/package.dist.json +++ b/palettes/spectrum/cmySecondaries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cmy-secondaries", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cmy secondaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/cmySecondaries/package.json b/palettes/spectrum/cmySecondaries/package.json index 66c3b63ebef..007c02a8857 100644 --- a/palettes/spectrum/cmySecondaries/package.json +++ b/palettes/spectrum/cmySecondaries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cmy-secondaries", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cmy secondaries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityBlueYellow/CHANGELOG.md b/palettes/spectrum/dualityBlueYellow/CHANGELOG.md index 41c9f7c1574..2bf726183ed 100644 --- a/palettes/spectrum/dualityBlueYellow/CHANGELOG.md +++ b/palettes/spectrum/dualityBlueYellow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-duality-blue-yellow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-duality-blue-yellow diff --git a/palettes/spectrum/dualityBlueYellow/package.dist.json b/palettes/spectrum/dualityBlueYellow/package.dist.json index b333fcd59d0..80ffd8b04d6 100644 --- a/palettes/spectrum/dualityBlueYellow/package.dist.json +++ b/palettes/spectrum/dualityBlueYellow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-blue-yellow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles duality - blue/yellow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityBlueYellow/package.json b/palettes/spectrum/dualityBlueYellow/package.json index 5fa29f8c1a7..83435ea76f1 100644 --- a/palettes/spectrum/dualityBlueYellow/package.json +++ b/palettes/spectrum/dualityBlueYellow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-blue-yellow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles duality - blue/yellow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md b/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md index 57c9071d182..d8f39e7a60c 100644 --- a/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md +++ b/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-duality-green-magenta + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-duality-green-magenta diff --git a/palettes/spectrum/dualityGreenMagenta/package.dist.json b/palettes/spectrum/dualityGreenMagenta/package.dist.json index 0f69947f0f3..8f60557a9a6 100644 --- a/palettes/spectrum/dualityGreenMagenta/package.dist.json +++ b/palettes/spectrum/dualityGreenMagenta/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-green-magenta", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles duality - green/magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityGreenMagenta/package.json b/palettes/spectrum/dualityGreenMagenta/package.json index cee68ecf868..e2a842b6ce1 100644 --- a/palettes/spectrum/dualityGreenMagenta/package.json +++ b/palettes/spectrum/dualityGreenMagenta/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-green-magenta", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles duality - green/magenta palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityRedCyan/CHANGELOG.md b/palettes/spectrum/dualityRedCyan/CHANGELOG.md index e91c2d6e00d..40e548955c6 100644 --- a/palettes/spectrum/dualityRedCyan/CHANGELOG.md +++ b/palettes/spectrum/dualityRedCyan/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-duality-red-cyan + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-duality-red-cyan diff --git a/palettes/spectrum/dualityRedCyan/package.dist.json b/palettes/spectrum/dualityRedCyan/package.dist.json index b7c1f2873ba..923238f99ab 100644 --- a/palettes/spectrum/dualityRedCyan/package.dist.json +++ b/palettes/spectrum/dualityRedCyan/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-red-cyan", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles duality red/cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityRedCyan/package.json b/palettes/spectrum/dualityRedCyan/package.json index 7467d9a41c0..3f385c546e7 100644 --- a/palettes/spectrum/dualityRedCyan/package.json +++ b/palettes/spectrum/dualityRedCyan/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-red-cyan", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles duality red/cyan palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/fullSpectrum/CHANGELOG.md b/palettes/spectrum/fullSpectrum/CHANGELOG.md index 45cee77300d..cfec04cdf0b 100644 --- a/palettes/spectrum/fullSpectrum/CHANGELOG.md +++ b/palettes/spectrum/fullSpectrum/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-full-spectrum + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-full-spectrum diff --git a/palettes/spectrum/fullSpectrum/package.dist.json b/palettes/spectrum/fullSpectrum/package.dist.json index 1225dc205f9..fcde7dbe518 100644 --- a/palettes/spectrum/fullSpectrum/package.dist.json +++ b/palettes/spectrum/fullSpectrum/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-spectrum", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles full spectrum - high saturation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/fullSpectrum/package.json b/palettes/spectrum/fullSpectrum/package.json index ceb25c06532..c97c64209f4 100644 --- a/palettes/spectrum/fullSpectrum/package.json +++ b/palettes/spectrum/fullSpectrum/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-spectrum", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles full spectrum - high saturation palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/okabeItoAccessible/CHANGELOG.md b/palettes/spectrum/okabeItoAccessible/CHANGELOG.md index 006ce76eb91..82b829035a9 100644 --- a/palettes/spectrum/okabeItoAccessible/CHANGELOG.md +++ b/palettes/spectrum/okabeItoAccessible/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-okabe-ito-accessible + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-okabe-ito-accessible diff --git a/palettes/spectrum/okabeItoAccessible/package.dist.json b/palettes/spectrum/okabeItoAccessible/package.dist.json index dccb2ca79e4..1aeff9e2581 100644 --- a/palettes/spectrum/okabeItoAccessible/package.dist.json +++ b/palettes/spectrum/okabeItoAccessible/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-okabe-ito-accessible", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles okabe ito accessible palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/okabeItoAccessible/package.json b/palettes/spectrum/okabeItoAccessible/package.json index 139bc0e5f8b..aa63e3d81ff 100644 --- a/palettes/spectrum/okabeItoAccessible/package.json +++ b/palettes/spectrum/okabeItoAccessible/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-okabe-ito-accessible", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles okabe ito accessible palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/prismScatter/CHANGELOG.md b/palettes/spectrum/prismScatter/CHANGELOG.md index cd3a896466a..789fbc3e5f2 100644 --- a/palettes/spectrum/prismScatter/CHANGELOG.md +++ b/palettes/spectrum/prismScatter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-prism-scatter + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-prism-scatter diff --git a/palettes/spectrum/prismScatter/package.dist.json b/palettes/spectrum/prismScatter/package.dist.json index c62ff826f72..4ef452e5629 100644 --- a/palettes/spectrum/prismScatter/package.dist.json +++ b/palettes/spectrum/prismScatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-scatter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles prism scatter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/prismScatter/package.json b/palettes/spectrum/prismScatter/package.json index cbc3904ba88..384ac61d413 100644 --- a/palettes/spectrum/prismScatter/package.json +++ b/palettes/spectrum/prismScatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-scatter", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles prism scatter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/rainbow/CHANGELOG.md b/palettes/spectrum/rainbow/CHANGELOG.md index fe0e516153b..23d99b856d6 100644 --- a/palettes/spectrum/rainbow/CHANGELOG.md +++ b/palettes/spectrum/rainbow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-rainbow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-rainbow diff --git a/palettes/spectrum/rainbow/package.dist.json b/palettes/spectrum/rainbow/package.dist.json index bf01a6b4736..e9edf72c446 100644 --- a/palettes/spectrum/rainbow/package.dist.json +++ b/palettes/spectrum/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rainbow - maximum saturation srgb palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/rainbow/package.json b/palettes/spectrum/rainbow/package.json index b68e5465f77..b6cb456e475 100644 --- a/palettes/spectrum/rainbow/package.json +++ b/palettes/spectrum/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rainbow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rainbow - maximum saturation srgb palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/rgbPrimaries/CHANGELOG.md b/palettes/spectrum/rgbPrimaries/CHANGELOG.md index 5fdc4c2e231..632f6f1b4cf 100644 --- a/palettes/spectrum/rgbPrimaries/CHANGELOG.md +++ b/palettes/spectrum/rgbPrimaries/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-rgb-primaries + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-rgb-primaries diff --git a/palettes/spectrum/rgbPrimaries/package.dist.json b/palettes/spectrum/rgbPrimaries/package.dist.json index ed40fdb7bef..6993e3136cf 100644 --- a/palettes/spectrum/rgbPrimaries/package.dist.json +++ b/palettes/spectrum/rgbPrimaries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rgb-primaries", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rgb primaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/rgbPrimaries/package.json b/palettes/spectrum/rgbPrimaries/package.json index 007141a865a..3e1223ce08b 100644 --- a/palettes/spectrum/rgbPrimaries/package.json +++ b/palettes/spectrum/rgbPrimaries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rgb-primaries", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rgb primaries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/crtPhosphor/CHANGELOG.md b/palettes/tech/crtPhosphor/CHANGELOG.md index 825447a64fc..ab08bde25f1 100644 --- a/palettes/tech/crtPhosphor/CHANGELOG.md +++ b/palettes/tech/crtPhosphor/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-crt-phosphor + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-crt-phosphor diff --git a/palettes/tech/crtPhosphor/package.dist.json b/palettes/tech/crtPhosphor/package.dist.json index 5a7a030e830..0d0b3fd5bd9 100644 --- a/palettes/tech/crtPhosphor/package.dist.json +++ b/palettes/tech/crtPhosphor/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-crt-phosphor", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles crt phosphor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/crtPhosphor/package.json b/palettes/tech/crtPhosphor/package.json index ce358a3bdd4..719b233395a 100644 --- a/palettes/tech/crtPhosphor/package.json +++ b/palettes/tech/crtPhosphor/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-crt-phosphor", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles crt phosphor palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/glitch/CHANGELOG.md b/palettes/tech/glitch/CHANGELOG.md index 57c5b85aca2..53e7380f20e 100644 --- a/palettes/tech/glitch/CHANGELOG.md +++ b/palettes/tech/glitch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-glitch + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-glitch diff --git a/palettes/tech/glitch/package.dist.json b/palettes/tech/glitch/package.dist.json index 7a4ae09e48c..596baee4ffc 100644 --- a/palettes/tech/glitch/package.dist.json +++ b/palettes/tech/glitch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glitch", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles glitch - full rgb shift palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/glitch/package.json b/palettes/tech/glitch/package.json index a99d1a44f17..2516b1199fe 100644 --- a/palettes/tech/glitch/package.json +++ b/palettes/tech/glitch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glitch", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles glitch - full rgb shift palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/hologram/CHANGELOG.md b/palettes/tech/hologram/CHANGELOG.md index b89347d89e7..bd472cc51d1 100644 --- a/palettes/tech/hologram/CHANGELOG.md +++ b/palettes/tech/hologram/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-hologram + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-hologram diff --git a/palettes/tech/hologram/package.dist.json b/palettes/tech/hologram/package.dist.json index 17d9bae9201..0954839c327 100644 --- a/palettes/tech/hologram/package.dist.json +++ b/palettes/tech/hologram/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-hologram", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles hologram palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/hologram/package.json b/palettes/tech/hologram/package.json index 5723d82c891..298f0e1ec74 100644 --- a/palettes/tech/hologram/package.json +++ b/palettes/tech/hologram/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-hologram", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles hologram palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/lofiWarm/CHANGELOG.md b/palettes/tech/lofiWarm/CHANGELOG.md index 9a353fcf7b6..c886ce65cc7 100644 --- a/palettes/tech/lofiWarm/CHANGELOG.md +++ b/palettes/tech/lofiWarm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-lofi-warm + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-lofi-warm diff --git a/palettes/tech/lofiWarm/package.dist.json b/palettes/tech/lofiWarm/package.dist.json index f951a4bb5b8..8ce3e26798e 100644 --- a/palettes/tech/lofiWarm/package.dist.json +++ b/palettes/tech/lofiWarm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lofi-warm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lo-fi warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/lofiWarm/package.json b/palettes/tech/lofiWarm/package.json index a5a9244b973..3f30e4ed9d6 100644 --- a/palettes/tech/lofiWarm/package.json +++ b/palettes/tech/lofiWarm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lofi-warm", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lo-fi warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/matrixRain/CHANGELOG.md b/palettes/tech/matrixRain/CHANGELOG.md index 4ce1574b888..6d628e93595 100644 --- a/palettes/tech/matrixRain/CHANGELOG.md +++ b/palettes/tech/matrixRain/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-matrix-rain + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-matrix-rain diff --git a/palettes/tech/matrixRain/package.dist.json b/palettes/tech/matrixRain/package.dist.json index 031d867a0c0..66e34edcfbf 100644 --- a/palettes/tech/matrixRain/package.dist.json +++ b/palettes/tech/matrixRain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-matrix-rain", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles matrix rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/matrixRain/package.json b/palettes/tech/matrixRain/package.json index 1b527b1f4ed..61dd3c10f9a 100644 --- a/palettes/tech/matrixRain/package.json +++ b/palettes/tech/matrixRain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-matrix-rain", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles matrix rain palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/neonCity/CHANGELOG.md b/palettes/tech/neonCity/CHANGELOG.md index 72c335baa34..a4594c4b46a 100644 --- a/palettes/tech/neonCity/CHANGELOG.md +++ b/palettes/tech/neonCity/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-neon-city + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-neon-city diff --git a/palettes/tech/neonCity/package.dist.json b/palettes/tech/neonCity/package.dist.json index 9a33d2ded33..1e8aa6f6b6e 100644 --- a/palettes/tech/neonCity/package.dist.json +++ b/palettes/tech/neonCity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-neon-city", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles neon city palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/neonCity/package.json b/palettes/tech/neonCity/package.json index 7b9a1dff6d2..d89d9a07b43 100644 --- a/palettes/tech/neonCity/package.json +++ b/palettes/tech/neonCity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-neon-city", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles neon city palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/networkNodes/CHANGELOG.md b/palettes/tech/networkNodes/CHANGELOG.md index 76939f79b9f..be5ffd66f55 100644 --- a/palettes/tech/networkNodes/CHANGELOG.md +++ b/palettes/tech/networkNodes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-network-nodes + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-network-nodes diff --git a/palettes/tech/networkNodes/package.dist.json b/palettes/tech/networkNodes/package.dist.json index cbac0902d72..ff69157aafd 100644 --- a/palettes/tech/networkNodes/package.dist.json +++ b/palettes/tech/networkNodes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-network-nodes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles network nodes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/networkNodes/package.json b/palettes/tech/networkNodes/package.json index 224b3210b27..e9ea385376f 100644 --- a/palettes/tech/networkNodes/package.json +++ b/palettes/tech/networkNodes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-network-nodes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles network nodes palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/plasmaArc/CHANGELOG.md b/palettes/tech/plasmaArc/CHANGELOG.md index c3684919ab2..ce762b81fdc 100644 --- a/palettes/tech/plasmaArc/CHANGELOG.md +++ b/palettes/tech/plasmaArc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-plasma-arc + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-plasma-arc diff --git a/palettes/tech/plasmaArc/package.dist.json b/palettes/tech/plasmaArc/package.dist.json index 3b316548b6e..3df66c13389 100644 --- a/palettes/tech/plasmaArc/package.dist.json +++ b/palettes/tech/plasmaArc/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-plasma-arc", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plasma arc palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/plasmaArc/package.json b/palettes/tech/plasmaArc/package.json index 4ae6dc281f4..ae0de4ebc8b 100644 --- a/palettes/tech/plasmaArc/package.json +++ b/palettes/tech/plasmaArc/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-plasma-arc", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plasma arc palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/vaporwave/CHANGELOG.md b/palettes/tech/vaporwave/CHANGELOG.md index 7267a06910e..c2b59b4a4cd 100644 --- a/palettes/tech/vaporwave/CHANGELOG.md +++ b/palettes/tech/vaporwave/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-vaporwave + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-vaporwave diff --git a/palettes/tech/vaporwave/package.dist.json b/palettes/tech/vaporwave/package.dist.json index b4289b524a7..fe0b9f2a2ac 100644 --- a/palettes/tech/vaporwave/package.dist.json +++ b/palettes/tech/vaporwave/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vaporwave", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vaporwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/vaporwave/package.json b/palettes/tech/vaporwave/package.json index d35bcde55ce..c5f5f9644e4 100644 --- a/palettes/tech/vaporwave/package.json +++ b/palettes/tech/vaporwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vaporwave", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vaporwave palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/default/CHANGELOG.md b/palettes/vibrant/default/CHANGELOG.md index 1b3c27ac665..e71cda1f631 100644 --- a/palettes/vibrant/default/CHANGELOG.md +++ b/palettes/vibrant/default/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-vibrant + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-vibrant diff --git a/palettes/vibrant/default/package.dist.json b/palettes/vibrant/default/package.dist.json index 290730425f7..fe01f918a23 100644 --- a/palettes/vibrant/default/package.dist.json +++ b/palettes/vibrant/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/default/package.json b/palettes/vibrant/default/package.json index 03595db64a3..6e9801f6419 100644 --- a/palettes/vibrant/default/package.json +++ b/palettes/vibrant/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/electric/CHANGELOG.md b/palettes/vibrant/electric/CHANGELOG.md index d53792015d1..76486a1433c 100644 --- a/palettes/vibrant/electric/CHANGELOG.md +++ b/palettes/vibrant/electric/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-electric + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-vibrant-electric diff --git a/palettes/vibrant/electric/package.dist.json b/palettes/vibrant/electric/package.dist.json index f4dbc97337a..5378ff9e1a1 100644 --- a/palettes/vibrant/electric/package.dist.json +++ b/palettes/vibrant/electric/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-electric", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant electric palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/electric/package.json b/palettes/vibrant/electric/package.json index ed76338bfde..6adc1038f44 100644 --- a/palettes/vibrant/electric/package.json +++ b/palettes/vibrant/electric/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-electric", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant electric palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/neon/CHANGELOG.md b/palettes/vibrant/neon/CHANGELOG.md index 22932ea25f5..ddc89190c7b 100644 --- a/palettes/vibrant/neon/CHANGELOG.md +++ b/palettes/vibrant/neon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-neon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-vibrant-neon diff --git a/palettes/vibrant/neon/package.dist.json b/palettes/vibrant/neon/package.dist.json index c3973f70652..74f055ccb9e 100644 --- a/palettes/vibrant/neon/package.dist.json +++ b/palettes/vibrant/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-neon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/neon/package.json b/palettes/vibrant/neon/package.json index 0531e015c8a..3f38ea63608 100644 --- a/palettes/vibrant/neon/package.json +++ b/palettes/vibrant/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-neon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/retro/CHANGELOG.md b/palettes/vibrant/retro/CHANGELOG.md index 793eca79380..093ca5d0dd1 100644 --- a/palettes/vibrant/retro/CHANGELOG.md +++ b/palettes/vibrant/retro/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-retro + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-vibrant-retro diff --git a/palettes/vibrant/retro/package.dist.json b/palettes/vibrant/retro/package.dist.json index 86f5883db5e..27a34a64841 100644 --- a/palettes/vibrant/retro/package.dist.json +++ b/palettes/vibrant/retro/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-retro", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant retro palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/retro/package.json b/palettes/vibrant/retro/package.json index e400f446274..66fe3f7d72d 100644 --- a/palettes/vibrant/retro/package.json +++ b/palettes/vibrant/retro/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-retro", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant retro palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/tropical/CHANGELOG.md b/palettes/vibrant/tropical/CHANGELOG.md index 999eec910df..2943fb462bc 100644 --- a/palettes/vibrant/tropical/CHANGELOG.md +++ b/palettes/vibrant/tropical/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-tropical + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-vibrant-tropical diff --git a/palettes/vibrant/tropical/package.dist.json b/palettes/vibrant/tropical/package.dist.json index 44b4e616033..4f1809cef63 100644 --- a/palettes/vibrant/tropical/package.dist.json +++ b/palettes/vibrant/tropical/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-tropical", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant tropical palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/tropical/package.json b/palettes/vibrant/tropical/package.json index 5e618a1a325..642910860a6 100644 --- a/palettes/vibrant/tropical/package.json +++ b/palettes/vibrant/tropical/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-tropical", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles vibrant tropical palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/deepOcean/CHANGELOG.md b/palettes/water/deepOcean/CHANGELOG.md index c21b225522a..fec57259ebe 100644 --- a/palettes/water/deepOcean/CHANGELOG.md +++ b/palettes/water/deepOcean/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-deep-ocean + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-deep-ocean diff --git a/palettes/water/deepOcean/package.dist.json b/palettes/water/deepOcean/package.dist.json index 6d8e450e009..0db80a58e08 100644 --- a/palettes/water/deepOcean/package.dist.json +++ b/palettes/water/deepOcean/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-deep-ocean", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles deep ocean palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/deepOcean/package.json b/palettes/water/deepOcean/package.json index 290c3a31442..fb98df64651 100644 --- a/palettes/water/deepOcean/package.json +++ b/palettes/water/deepOcean/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-deep-ocean", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles deep ocean palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/default/CHANGELOG.md b/palettes/water/default/CHANGELOG.md index c85007bc936..9431aabc715 100644 --- a/palettes/water/default/CHANGELOG.md +++ b/palettes/water/default/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-water + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-water diff --git a/palettes/water/default/package.dist.json b/palettes/water/default/package.dist.json index cb825e17101..4d697320d35 100644 --- a/palettes/water/default/package.dist.json +++ b/palettes/water/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles water - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/default/package.json b/palettes/water/default/package.json index b10664b6ac9..34a8b01b7ea 100644 --- a/palettes/water/default/package.json +++ b/palettes/water/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles water - full palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/foamAndBubbles/CHANGELOG.md b/palettes/water/foamAndBubbles/CHANGELOG.md index 0cbcfbe8aa5..73b41653f1f 100644 --- a/palettes/water/foamAndBubbles/CHANGELOG.md +++ b/palettes/water/foamAndBubbles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-foam-and-bubbles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-foam-and-bubbles diff --git a/palettes/water/foamAndBubbles/package.dist.json b/palettes/water/foamAndBubbles/package.dist.json index b8e72058077..7ec1ea17f06 100644 --- a/palettes/water/foamAndBubbles/package.dist.json +++ b/palettes/water/foamAndBubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-foam-and-bubbles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles foam & bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/foamAndBubbles/package.json b/palettes/water/foamAndBubbles/package.json index 23bd3c0441f..0b6e77a76c0 100644 --- a/palettes/water/foamAndBubbles/package.json +++ b/palettes/water/foamAndBubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-foam-and-bubbles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles foam & bubbles palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/fogCoastal/CHANGELOG.md b/palettes/water/fogCoastal/CHANGELOG.md index d49a0833933..2ee5dbaee56 100644 --- a/palettes/water/fogCoastal/CHANGELOG.md +++ b/palettes/water/fogCoastal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-fog-coastal + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-fog-coastal diff --git a/palettes/water/fogCoastal/package.dist.json b/palettes/water/fogCoastal/package.dist.json index cbf5a2cbfe7..9b1ba83dde1 100644 --- a/palettes/water/fogCoastal/package.dist.json +++ b/palettes/water/fogCoastal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-coastal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fog - coastal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/fogCoastal/package.json b/palettes/water/fogCoastal/package.json index 24441dc9a0d..13b87dfad9c 100644 --- a/palettes/water/fogCoastal/package.json +++ b/palettes/water/fogCoastal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-coastal", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fog - coastal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/inkInWater/CHANGELOG.md b/palettes/water/inkInWater/CHANGELOG.md index 882e10d926b..967bad96002 100644 --- a/palettes/water/inkInWater/CHANGELOG.md +++ b/palettes/water/inkInWater/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-ink-in-water + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-ink-in-water diff --git a/palettes/water/inkInWater/package.dist.json b/palettes/water/inkInWater/package.dist.json index 8deaed749cb..cdf67fb9492 100644 --- a/palettes/water/inkInWater/package.dist.json +++ b/palettes/water/inkInWater/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ink-in-water", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ink in water palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/inkInWater/package.json b/palettes/water/inkInWater/package.json index 790866bdccd..7b25039ad36 100644 --- a/palettes/water/inkInWater/package.json +++ b/palettes/water/inkInWater/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ink-in-water", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ink in water palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/lagoon/CHANGELOG.md b/palettes/water/lagoon/CHANGELOG.md index 3b78774b2fe..09b3aef54a9 100644 --- a/palettes/water/lagoon/CHANGELOG.md +++ b/palettes/water/lagoon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-lagoon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-lagoon diff --git a/palettes/water/lagoon/package.dist.json b/palettes/water/lagoon/package.dist.json index df2a601cccd..4c25a2a8d4d 100644 --- a/palettes/water/lagoon/package.dist.json +++ b/palettes/water/lagoon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lagoon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lagoon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/lagoon/package.json b/palettes/water/lagoon/package.json index bb1a69411a7..df898907c9f 100644 --- a/palettes/water/lagoon/package.json +++ b/palettes/water/lagoon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lagoon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles lagoon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/rain/CHANGELOG.md b/palettes/water/rain/CHANGELOG.md index b5f2ef0ac4b..0fe94713e33 100644 --- a/palettes/water/rain/CHANGELOG.md +++ b/palettes/water/rain/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-rain + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-rain diff --git a/palettes/water/rain/package.dist.json b/palettes/water/rain/package.dist.json index 464d618e73e..f28403be230 100644 --- a/palettes/water/rain/package.dist.json +++ b/palettes/water/rain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rain", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/rain/package.json b/palettes/water/rain/package.json index 6fca09495ce..a6b6081a188 100644 --- a/palettes/water/rain/package.json +++ b/palettes/water/rain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rain", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rain palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/risingBubbles/CHANGELOG.md b/palettes/water/risingBubbles/CHANGELOG.md index ee012939c4a..83f0b8ece17 100644 --- a/palettes/water/risingBubbles/CHANGELOG.md +++ b/palettes/water/risingBubbles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-rising-bubbles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-rising-bubbles diff --git a/palettes/water/risingBubbles/package.dist.json b/palettes/water/risingBubbles/package.dist.json index 9726d5bff16..ec5b8934b53 100644 --- a/palettes/water/risingBubbles/package.dist.json +++ b/palettes/water/risingBubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rising-bubbles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rising bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/risingBubbles/package.json b/palettes/water/risingBubbles/package.json index d4541d4727c..8e2b2ea2da9 100644 --- a/palettes/water/risingBubbles/package.json +++ b/palettes/water/risingBubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rising-bubbles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rising bubbles palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/splash/CHANGELOG.md b/palettes/water/splash/CHANGELOG.md index f2cf44a09da..a0f01ad9237 100644 --- a/palettes/water/splash/CHANGELOG.md +++ b/palettes/water/splash/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/palette-water-splash + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/palette-water-splash diff --git a/palettes/water/splash/package.dist.json b/palettes/water/splash/package.dist.json index c3e1b385258..7d906b4855f 100644 --- a/palettes/water/splash/package.dist.json +++ b/palettes/water/splash/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water-splash", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/splash/package.json b/palettes/water/splash/package.json index dd7031ba407..ec73be104fc 100644 --- a/palettes/water/splash/package.json +++ b/palettes/water/splash/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water-splash", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/branches/CHANGELOG.md b/paths/branches/CHANGELOG.md index 5064a139f2f..6b5c79f1bbd 100644 --- a/paths/branches/CHANGELOG.md +++ b/paths/branches/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-branches + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-branches diff --git a/paths/branches/package.dist.json b/paths/branches/package.dist.json index 8ef3f065ce4..586cab8c7d0 100644 --- a/paths/branches/package.dist.json +++ b/paths/branches/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles branches path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/branches/package.json b/paths/branches/package.json index f40d0ce748a..b2bbcd76c4f 100644 --- a/paths/branches/package.json +++ b/paths/branches/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along branching, tree-like trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/brownian/CHANGELOG.md b/paths/brownian/CHANGELOG.md index a13258f9ce0..45fed400fc4 100644 --- a/paths/brownian/CHANGELOG.md +++ b/paths/brownian/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-brownian + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-brownian diff --git a/paths/brownian/package.dist.json b/paths/brownian/package.dist.json index 03f04b5cda6..525560be54b 100644 --- a/paths/brownian/package.dist.json +++ b/paths/brownian/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles brownian path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/brownian/package.json b/paths/brownian/package.json index d4b4f543f4e..7ab59bf5bec 100644 --- a/paths/brownian/package.json +++ b/paths/brownian/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles with Brownian random motion patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curlNoise/CHANGELOG.md b/paths/curlNoise/CHANGELOG.md index 3806d5110d8..bdd6ed666d3 100644 --- a/paths/curlNoise/CHANGELOG.md +++ b/paths/curlNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-curl-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-curl-noise diff --git a/paths/curlNoise/package.dist.json b/paths/curlNoise/package.dist.json index da135a0f04e..0604bfc0957 100644 --- a/paths/curlNoise/package.dist.json +++ b/paths/curlNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curl-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles curl noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,9 +110,9 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1", - "@tsparticles/simplex-noise": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2", + "@tsparticles/simplex-noise": "4.3.2" }, "type": "module" } diff --git a/paths/curlNoise/package.json b/paths/curlNoise/package.json index 5f0b9d02c5b..917d03273bd 100644 --- a/paths/curlNoise/package.json +++ b/paths/curlNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curl-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along curl noise-generated flow fields", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curves/CHANGELOG.md b/paths/curves/CHANGELOG.md index 3e2c66624c7..27417543972 100644 --- a/paths/curves/CHANGELOG.md +++ b/paths/curves/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-curves + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-curves diff --git a/paths/curves/package.dist.json b/paths/curves/package.dist.json index 358b2318523..fd395628937 100644 --- a/paths/curves/package.dist.json +++ b/paths/curves/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles curves path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/curves/package.json b/paths/curves/package.json index b6655f4542a..af5c95c4581 100644 --- a/paths/curves/package.json +++ b/paths/curves/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along curved Bézier paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/fractalNoise/CHANGELOG.md b/paths/fractalNoise/CHANGELOG.md index c37757f84cc..24590dd9975 100644 --- a/paths/fractalNoise/CHANGELOG.md +++ b/paths/fractalNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-fractal-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-fractal-noise diff --git a/paths/fractalNoise/package.dist.json b/paths/fractalNoise/package.dist.json index c6ed1de67a6..186c5aba0b2 100644 --- a/paths/fractalNoise/package.dist.json +++ b/paths/fractalNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-fractal-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/fractal-noise": "4.3.1", - "@tsparticles/noise-field": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/fractal-noise": "4.3.2", + "@tsparticles/noise-field": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/fractalNoise/package.json b/paths/fractalNoise/package.json index 2556ce4affd..067cd5a90d4 100644 --- a/paths/fractalNoise/package.json +++ b/paths/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-fractal-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along fractal noise-based paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/grid/CHANGELOG.md b/paths/grid/CHANGELOG.md index 7fe9976bbd4..19a4e80ff17 100644 --- a/paths/grid/CHANGELOG.md +++ b/paths/grid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-grid + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-grid diff --git a/paths/grid/package.dist.json b/paths/grid/package.dist.json index af608345af3..061f3a6af5b 100644 --- a/paths/grid/package.dist.json +++ b/paths/grid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles grid path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/grid/package.json b/paths/grid/package.json index 023f8625ff1..75eacebd452 100644 --- a/paths/grid/package.json +++ b/paths/grid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along grid-like patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/levy/CHANGELOG.md b/paths/levy/CHANGELOG.md index d817ac4ebd7..fcfcc03ace5 100644 --- a/paths/levy/CHANGELOG.md +++ b/paths/levy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-levy + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-levy diff --git a/paths/levy/package.dist.json b/paths/levy/package.dist.json index 0f297dbef9f..c6593107143 100644 --- a/paths/levy/package.dist.json +++ b/paths/levy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles levy path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/levy/package.json b/paths/levy/package.json index 3dfef111b9c..56750a75770 100644 --- a/paths/levy/package.json +++ b/paths/levy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles with Lévy flight random motion patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/perlinNoise/CHANGELOG.md b/paths/perlinNoise/CHANGELOG.md index 87573a0d500..2d9afe65fe6 100644 --- a/paths/perlinNoise/CHANGELOG.md +++ b/paths/perlinNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-perlin-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-perlin-noise diff --git a/paths/perlinNoise/package.dist.json b/paths/perlinNoise/package.dist.json index 7be3120cb58..f29675e5e6a 100644 --- a/paths/perlinNoise/package.dist.json +++ b/paths/perlinNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-perlin-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/noise-field": "4.3.1", - "@tsparticles/perlin-noise": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/noise-field": "4.3.2", + "@tsparticles/perlin-noise": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/perlinNoise/package.json b/paths/perlinNoise/package.json index 413c79b7293..583185a7527 100644 --- a/paths/perlinNoise/package.json +++ b/paths/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-perlin-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along Perlin noise-generated paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/polygon/CHANGELOG.md b/paths/polygon/CHANGELOG.md index 7a5150a0677..ad65cc11ca8 100644 --- a/paths/polygon/CHANGELOG.md +++ b/paths/polygon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-polygon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-polygon diff --git a/paths/polygon/package.dist.json b/paths/polygon/package.dist.json index a15902bdc0a..a3836199cba 100644 --- a/paths/polygon/package.dist.json +++ b/paths/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles polygon path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/polygon/package.json b/paths/polygon/package.json index 61fb3b14553..0771e559006 100644 --- a/paths/polygon/package.json +++ b/paths/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along polygonal path shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/random/CHANGELOG.md b/paths/random/CHANGELOG.md index 93b4d6f171e..c2cd5deb29c 100644 --- a/paths/random/CHANGELOG.md +++ b/paths/random/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-random + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-random diff --git a/paths/random/package.dist.json b/paths/random/package.dist.json index dd5bee8786c..e8e9977554d 100644 --- a/paths/random/package.dist.json +++ b/paths/random/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/paths/random/package.json b/paths/random/package.json index beeeb811e89..128160bcc0a 100644 --- a/paths/random/package.json +++ b/paths/random/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along completely random trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/simplexNoise/CHANGELOG.md b/paths/simplexNoise/CHANGELOG.md index 2a783da6ac3..509e6908fce 100644 --- a/paths/simplexNoise/CHANGELOG.md +++ b/paths/simplexNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-simplex-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-simplex-noise diff --git a/paths/simplexNoise/package.dist.json b/paths/simplexNoise/package.dist.json index 277f70369be..4cd7ba66e24 100644 --- a/paths/simplexNoise/package.dist.json +++ b/paths/simplexNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-simplex-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles simplex noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/noise-field": "4.3.1", - "@tsparticles/plugin-move": "4.3.1", - "@tsparticles/simplex-noise": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/noise-field": "4.3.2", + "@tsparticles/plugin-move": "4.3.2", + "@tsparticles/simplex-noise": "4.3.2" }, "type": "module" } diff --git a/paths/simplexNoise/package.json b/paths/simplexNoise/package.json index 79ec9381daf..f69f069b474 100644 --- a/paths/simplexNoise/package.json +++ b/paths/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-simplex-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along simplex noise-generated paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/spiral/CHANGELOG.md b/paths/spiral/CHANGELOG.md index 5402708271a..65a49f4a8af 100644 --- a/paths/spiral/CHANGELOG.md +++ b/paths/spiral/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-spiral + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-spiral diff --git a/paths/spiral/package.dist.json b/paths/spiral/package.dist.json index a0a2c3d89f3..140882bf570 100644 --- a/paths/spiral/package.dist.json +++ b/paths/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles spiral path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "type": "module" } diff --git a/paths/spiral/package.json b/paths/spiral/package.json index 41b69f90500..f47d19297f7 100644 --- a/paths/spiral/package.json +++ b/paths/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along spiral trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/svg/CHANGELOG.md b/paths/svg/CHANGELOG.md index 6de0cd9eba9..189891deb6c 100644 --- a/paths/svg/CHANGELOG.md +++ b/paths/svg/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-svg + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-svg diff --git a/paths/svg/package.dist.json b/paths/svg/package.dist.json index dc1ae9f5cb9..164931b0c05 100644 --- a/paths/svg/package.dist.json +++ b/paths/svg/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles svg path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/paths/svg/package.json b/paths/svg/package.json index a0e94537405..0d7a42b5750 100644 --- a/paths/svg/package.json +++ b/paths/svg/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along SVG path data trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/zigzag/CHANGELOG.md b/paths/zigzag/CHANGELOG.md index 7ab6e8221a5..2c18f9d15fc 100644 --- a/paths/zigzag/CHANGELOG.md +++ b/paths/zigzag/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-zig-zag + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-zig-zag diff --git a/paths/zigzag/package.dist.json b/paths/zigzag/package.dist.json index 32c80911a89..30d88f05c26 100644 --- a/paths/zigzag/package.dist.json +++ b/paths/zigzag/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-zig-zag", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/paths/zigzag/package.json b/paths/zigzag/package.json index 2109a5336e4..793c4eeffd0 100644 --- a/paths/zigzag/package.json +++ b/paths/zigzag/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-zig-zag", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path for moving particles along zigzag back-and-forth patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/absorbers/CHANGELOG.md b/plugins/absorbers/CHANGELOG.md index f9ef95a9b5f..b8339d9533a 100644 --- a/plugins/absorbers/CHANGELOG.md +++ b/plugins/absorbers/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-absorbers + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-absorbers diff --git a/plugins/absorbers/package.dist.json b/plugins/absorbers/package.dist.json index 4dade4d0c2a..fe2b39d577e 100644 --- a/plugins/absorbers/package.dist.json +++ b/plugins/absorbers/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles absorbers plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/absorbers/package.json b/plugins/absorbers/package.json index fc822992854..d755ef6f4f6 100644 --- a/plugins/absorbers/package.json +++ b/plugins/absorbers/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for creating black hole-like absorbers that attract, rotate, and remove particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/backgroundMask/CHANGELOG.md b/plugins/backgroundMask/CHANGELOG.md index 155c62c7968..b5614c565e1 100644 --- a/plugins/backgroundMask/CHANGELOG.md +++ b/plugins/backgroundMask/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-background-mask + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-background-mask diff --git a/plugins/backgroundMask/package.dist.json b/plugins/backgroundMask/package.dist.json index 2149da8999c..cbf4dc10e4c 100644 --- a/plugins/backgroundMask/package.dist.json +++ b/plugins/backgroundMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-background-mask", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles background mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/backgroundMask/package.json b/plugins/backgroundMask/package.json index 694f79c55ed..b891148871b 100644 --- a/plugins/backgroundMask/package.json +++ b/plugins/backgroundMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-background-mask", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for masking particles over a background image or color", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/blend/CHANGELOG.md b/plugins/blend/CHANGELOG.md index 687f19a53eb..c6819bcf2bb 100644 --- a/plugins/blend/CHANGELOG.md +++ b/plugins/blend/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-blend + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-blend diff --git a/plugins/blend/package.dist.json b/plugins/blend/package.dist.json index 1ffd9b73880..0ed72cbec86 100644 --- a/plugins/blend/package.dist.json +++ b/plugins/blend/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles blend plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/blend/package.json b/plugins/blend/package.json index 8754cac10bb..447a326940a 100644 --- a/plugins/blend/package.json +++ b/plugins/blend/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for applying CSS blend modes (multiply, screen, overlay, etc.) to particle rendering", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/canvasMask/CHANGELOG.md b/plugins/canvasMask/CHANGELOG.md index 0b9695b14c3..103d54af650 100644 --- a/plugins/canvasMask/CHANGELOG.md +++ b/plugins/canvasMask/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-canvas-mask + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-canvas-mask diff --git a/plugins/canvasMask/package.dist.json b/plugins/canvasMask/package.dist.json index dc6815d0c0f..64b8704ac96 100644 --- a/plugins/canvasMask/package.dist.json +++ b/plugins/canvasMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-canvas-mask", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles canvas mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,13 +92,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.3.1" + "@tsparticles/canvas-utils": "4.3.2" } } diff --git a/plugins/canvasMask/package.json b/plugins/canvasMask/package.json index e32af223e32..7f7b097419a 100644 --- a/plugins/canvasMask/package.json +++ b/plugins/canvasMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-canvas-mask", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for masking particles using canvas-based mask shapes and images", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hex/CHANGELOG.md b/plugins/colors/hex/CHANGELOG.md index 5714cdedda7..77e1150d7c1 100644 --- a/plugins/colors/hex/CHANGELOG.md +++ b/plugins/colors/hex/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-hex-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-hex-color diff --git a/plugins/colors/hex/package.dist.json b/plugins/colors/hex/package.dist.json index 20e2972babf..9d6a20dec43 100644 --- a/plugins/colors/hex/package.dist.json +++ b/plugins/colors/hex/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hex-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles hex color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hex/package.json b/plugins/colors/hex/package.json index ab05fbd48ba..42dd117f0b4 100644 --- a/plugins/colors/hex/package.json +++ b/plugins/colors/hex/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hex-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles hex color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hsl/CHANGELOG.md b/plugins/colors/hsl/CHANGELOG.md index f309752038a..8e14b76ebe1 100644 --- a/plugins/colors/hsl/CHANGELOG.md +++ b/plugins/colors/hsl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-hsl-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-hsl-color diff --git a/plugins/colors/hsl/package.dist.json b/plugins/colors/hsl/package.dist.json index 61c5e9d285b..5515f35f74e 100644 --- a/plugins/colors/hsl/package.dist.json +++ b/plugins/colors/hsl/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsl-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles HSL color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsl/package.json b/plugins/colors/hsl/package.json index a98ffa5ae11..635e224b951 100644 --- a/plugins/colors/hsl/package.json +++ b/plugins/colors/hsl/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsl-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles HSL color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hsv/CHANGELOG.md b/plugins/colors/hsv/CHANGELOG.md index 772cd8f57ab..76c3fd0ad2a 100644 --- a/plugins/colors/hsv/CHANGELOG.md +++ b/plugins/colors/hsv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-hsv-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-hsv-color diff --git a/plugins/colors/hsv/package.dist.json b/plugins/colors/hsv/package.dist.json index 6deaaf4140e..25d1dfcb78a 100644 --- a/plugins/colors/hsv/package.dist.json +++ b/plugins/colors/hsv/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsv-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles HSV color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsv/package.json b/plugins/colors/hsv/package.json index 4c0b9033adf..af8c00df542 100644 --- a/plugins/colors/hsv/package.json +++ b/plugins/colors/hsv/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsv-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles HSV color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hwb/CHANGELOG.md b/plugins/colors/hwb/CHANGELOG.md index 490de2aa5d0..c7a665a8930 100644 --- a/plugins/colors/hwb/CHANGELOG.md +++ b/plugins/colors/hwb/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-hwb-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-hwb-color diff --git a/plugins/colors/hwb/package.dist.json b/plugins/colors/hwb/package.dist.json index e9348f3897b..c81f453d720 100644 --- a/plugins/colors/hwb/package.dist.json +++ b/plugins/colors/hwb/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hwb-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles HWB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hwb/package.json b/plugins/colors/hwb/package.json index 02a6c280cf9..a06c1e2e264 100644 --- a/plugins/colors/hwb/package.json +++ b/plugins/colors/hwb/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hwb-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles HWB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/lab/CHANGELOG.md b/plugins/colors/lab/CHANGELOG.md index 3ba64274682..930799458f4 100644 --- a/plugins/colors/lab/CHANGELOG.md +++ b/plugins/colors/lab/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-lab-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-lab-color diff --git a/plugins/colors/lab/package.dist.json b/plugins/colors/lab/package.dist.json index 3ee71e6d649..9bb8fab9b96 100644 --- a/plugins/colors/lab/package.dist.json +++ b/plugins/colors/lab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lab-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles LAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lab/package.json b/plugins/colors/lab/package.json index d99ebfc8e3c..27d5693377e 100644 --- a/plugins/colors/lab/package.json +++ b/plugins/colors/lab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lab-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles LAB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/lch/CHANGELOG.md b/plugins/colors/lch/CHANGELOG.md index be76322b7eb..42c2449f0af 100644 --- a/plugins/colors/lch/CHANGELOG.md +++ b/plugins/colors/lch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-lch-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-lch-color diff --git a/plugins/colors/lch/package.dist.json b/plugins/colors/lch/package.dist.json index c7184c92e69..ff436f2c497 100644 --- a/plugins/colors/lch/package.dist.json +++ b/plugins/colors/lch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lch-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles LCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lch/package.json b/plugins/colors/lch/package.json index 1b1648aa19a..d20e4062208 100644 --- a/plugins/colors/lch/package.json +++ b/plugins/colors/lch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lch-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles LCH color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/named/CHANGELOG.md b/plugins/colors/named/CHANGELOG.md index aa97877bd81..78083a3d24e 100644 --- a/plugins/colors/named/CHANGELOG.md +++ b/plugins/colors/named/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-named-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-named-color diff --git a/plugins/colors/named/package.dist.json b/plugins/colors/named/package.dist.json index 7134094c7b7..fceec35984c 100644 --- a/plugins/colors/named/package.dist.json +++ b/plugins/colors/named/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-named-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles named color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/named/package.json b/plugins/colors/named/package.json index 10b98d47fe7..50bdaa1e298 100644 --- a/plugins/colors/named/package.json +++ b/plugins/colors/named/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-named-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles named color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/oklab/CHANGELOG.md b/plugins/colors/oklab/CHANGELOG.md index 0e065b06578..a97da4631e0 100644 --- a/plugins/colors/oklab/CHANGELOG.md +++ b/plugins/colors/oklab/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-oklab-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-oklab-color diff --git a/plugins/colors/oklab/package.dist.json b/plugins/colors/oklab/package.dist.json index 22292fccda8..846da5d9e8c 100644 --- a/plugins/colors/oklab/package.dist.json +++ b/plugins/colors/oklab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklab-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles OKLAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklab/package.json b/plugins/colors/oklab/package.json index 2c6d5480bfe..6eef7f54d8a 100644 --- a/plugins/colors/oklab/package.json +++ b/plugins/colors/oklab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklab-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles OKLAB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/oklch/CHANGELOG.md b/plugins/colors/oklch/CHANGELOG.md index ed2bb383368..65f2ddb8b42 100644 --- a/plugins/colors/oklch/CHANGELOG.md +++ b/plugins/colors/oklch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-oklch-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-oklch-color diff --git a/plugins/colors/oklch/package.dist.json b/plugins/colors/oklch/package.dist.json index 68fd37d5b81..95686749ede 100644 --- a/plugins/colors/oklch/package.dist.json +++ b/plugins/colors/oklch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklch-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles OKLCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklch/package.json b/plugins/colors/oklch/package.json index a2ae83c298d..a91f1942329 100644 --- a/plugins/colors/oklch/package.json +++ b/plugins/colors/oklch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklch-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles OKLCH color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/rgb/CHANGELOG.md b/plugins/colors/rgb/CHANGELOG.md index 94cf50c720a..07af5b51644 100644 --- a/plugins/colors/rgb/CHANGELOG.md +++ b/plugins/colors/rgb/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-rgb-color + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-rgb-color diff --git a/plugins/colors/rgb/package.dist.json b/plugins/colors/rgb/package.dist.json index fb8b6421177..88f3e7f9181 100644 --- a/plugins/colors/rgb/package.dist.json +++ b/plugins/colors/rgb/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-rgb-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles RGB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/rgb/package.json b/plugins/colors/rgb/package.json index 60fb43325f3..d149063a240 100644 --- a/plugins/colors/rgb/package.json +++ b/plugins/colors/rgb/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-rgb-color", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles RGB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/back/CHANGELOG.md b/plugins/easings/back/CHANGELOG.md index 611f2d90dae..85d5efd4c7b 100644 --- a/plugins/easings/back/CHANGELOG.md +++ b/plugins/easings/back/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-back + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-back diff --git a/plugins/easings/back/package.dist.json b/plugins/easings/back/package.dist.json index d44377171d9..b1ef84f5e82 100644 --- a/plugins/easings/back/package.dist.json +++ b/plugins/easings/back/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-back", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing back plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/back/package.json b/plugins/easings/back/package.json index 9b7d8477758..301b4363c89 100644 --- a/plugins/easings/back/package.json +++ b/plugins/easings/back/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-back", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing back plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/bounce/CHANGELOG.md b/plugins/easings/bounce/CHANGELOG.md index 0566441a6cf..831643c67c0 100644 --- a/plugins/easings/bounce/CHANGELOG.md +++ b/plugins/easings/bounce/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-bounce + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-bounce diff --git a/plugins/easings/bounce/package.dist.json b/plugins/easings/bounce/package.dist.json index c8c5266f73f..a9bb654e83f 100644 --- a/plugins/easings/bounce/package.dist.json +++ b/plugins/easings/bounce/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-bounce", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing bounce plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/bounce/package.json b/plugins/easings/bounce/package.json index c4fd4c6d262..7a0e3196bf9 100644 --- a/plugins/easings/bounce/package.json +++ b/plugins/easings/bounce/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-bounce", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing bounce plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/circ/CHANGELOG.md b/plugins/easings/circ/CHANGELOG.md index 3912eae517a..0551e629de3 100644 --- a/plugins/easings/circ/CHANGELOG.md +++ b/plugins/easings/circ/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-circ + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-circ diff --git a/plugins/easings/circ/package.dist.json b/plugins/easings/circ/package.dist.json index 768ead56e33..75b5578f45e 100644 --- a/plugins/easings/circ/package.dist.json +++ b/plugins/easings/circ/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-circ", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing circ plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/circ/package.json b/plugins/easings/circ/package.json index c1630c52306..c538c0033c5 100644 --- a/plugins/easings/circ/package.json +++ b/plugins/easings/circ/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-circ", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing circ plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/cubic/CHANGELOG.md b/plugins/easings/cubic/CHANGELOG.md index 1a72e704926..fd384c231ac 100644 --- a/plugins/easings/cubic/CHANGELOG.md +++ b/plugins/easings/cubic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-cubic + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-cubic diff --git a/plugins/easings/cubic/package.dist.json b/plugins/easings/cubic/package.dist.json index 1647a5f7748..f8b31b05040 100644 --- a/plugins/easings/cubic/package.dist.json +++ b/plugins/easings/cubic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-cubic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing cubic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/cubic/package.json b/plugins/easings/cubic/package.json index 2aacf383caf..ad293326525 100644 --- a/plugins/easings/cubic/package.json +++ b/plugins/easings/cubic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-cubic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing cubic plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/elastic/CHANGELOG.md b/plugins/easings/elastic/CHANGELOG.md index cad74c9f030..7d64a56e38d 100644 --- a/plugins/easings/elastic/CHANGELOG.md +++ b/plugins/easings/elastic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-elastic + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-elastic diff --git a/plugins/easings/elastic/package.dist.json b/plugins/easings/elastic/package.dist.json index bdff8ae5bb9..d69f9cd984c 100644 --- a/plugins/easings/elastic/package.dist.json +++ b/plugins/easings/elastic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-elastic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing elastic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/elastic/package.json b/plugins/easings/elastic/package.json index 405bfda7faf..3fbc3e94260 100644 --- a/plugins/easings/elastic/package.json +++ b/plugins/easings/elastic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-elastic", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing elastic plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/expo/CHANGELOG.md b/plugins/easings/expo/CHANGELOG.md index 3481a0409a2..51d5a1335d9 100644 --- a/plugins/easings/expo/CHANGELOG.md +++ b/plugins/easings/expo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-expo + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-expo diff --git a/plugins/easings/expo/package.dist.json b/plugins/easings/expo/package.dist.json index a0a416a98d2..c0e80ebbd48 100644 --- a/plugins/easings/expo/package.dist.json +++ b/plugins/easings/expo/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-expo", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing expo plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/expo/package.json b/plugins/easings/expo/package.json index 84d62fca6e4..30b4592f59c 100644 --- a/plugins/easings/expo/package.json +++ b/plugins/easings/expo/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-expo", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing expo plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/gaussian/CHANGELOG.md b/plugins/easings/gaussian/CHANGELOG.md index 50b12e454d5..aa19aea34ae 100644 --- a/plugins/easings/gaussian/CHANGELOG.md +++ b/plugins/easings/gaussian/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-gaussian + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-gaussian diff --git a/plugins/easings/gaussian/package.dist.json b/plugins/easings/gaussian/package.dist.json index 96924ebde76..5ebd573bc65 100644 --- a/plugins/easings/gaussian/package.dist.json +++ b/plugins/easings/gaussian/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-gaussian", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing gaussian plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/gaussian/package.json b/plugins/easings/gaussian/package.json index 4e3ae499f8e..e9041ed9279 100644 --- a/plugins/easings/gaussian/package.json +++ b/plugins/easings/gaussian/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-gaussian", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing gaussian plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/linear/CHANGELOG.md b/plugins/easings/linear/CHANGELOG.md index 67d43e71414..63fca647e1d 100644 --- a/plugins/easings/linear/CHANGELOG.md +++ b/plugins/easings/linear/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-linear + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-linear diff --git a/plugins/easings/linear/package.dist.json b/plugins/easings/linear/package.dist.json index 214a85759a2..88d63161779 100644 --- a/plugins/easings/linear/package.dist.json +++ b/plugins/easings/linear/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-linear", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing linear plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/linear/package.json b/plugins/easings/linear/package.json index 6f6c5852ecb..4b1f159e057 100644 --- a/plugins/easings/linear/package.json +++ b/plugins/easings/linear/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-linear", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing linear plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quad/CHANGELOG.md b/plugins/easings/quad/CHANGELOG.md index ac2343b3c71..ed77790ee3e 100644 --- a/plugins/easings/quad/CHANGELOG.md +++ b/plugins/easings/quad/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quad + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-quad diff --git a/plugins/easings/quad/package.dist.json b/plugins/easings/quad/package.dist.json index d4a8170de9a..b09a96a3492 100644 --- a/plugins/easings/quad/package.dist.json +++ b/plugins/easings/quad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quad", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing quad plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/quad/package.json b/plugins/easings/quad/package.json index 4c481e1d4f9..2db2f89b00c 100644 --- a/plugins/easings/quad/package.json +++ b/plugins/easings/quad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quad", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing quad plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quart/CHANGELOG.md b/plugins/easings/quart/CHANGELOG.md index 8c2702e155d..9c7a5882c0b 100644 --- a/plugins/easings/quart/CHANGELOG.md +++ b/plugins/easings/quart/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quart + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-quart diff --git a/plugins/easings/quart/package.dist.json b/plugins/easings/quart/package.dist.json index 7920c11004d..aa85bf60229 100644 --- a/plugins/easings/quart/package.dist.json +++ b/plugins/easings/quart/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quart", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing quart plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quart/package.json b/plugins/easings/quart/package.json index c86f6616e36..c82e41769a4 100644 --- a/plugins/easings/quart/package.json +++ b/plugins/easings/quart/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quart", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing quart plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quint/CHANGELOG.md b/plugins/easings/quint/CHANGELOG.md index ad658949c7b..6db0efb869b 100644 --- a/plugins/easings/quint/CHANGELOG.md +++ b/plugins/easings/quint/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quint + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-quint diff --git a/plugins/easings/quint/package.dist.json b/plugins/easings/quint/package.dist.json index a2848013089..bef95719f24 100644 --- a/plugins/easings/quint/package.dist.json +++ b/plugins/easings/quint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quint", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing quint plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quint/package.json b/plugins/easings/quint/package.json index cbb09e94613..ccf7410516d 100644 --- a/plugins/easings/quint/package.json +++ b/plugins/easings/quint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quint", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing quint plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/sigmoid/CHANGELOG.md b/plugins/easings/sigmoid/CHANGELOG.md index c52c8a3d2d0..c18ee18bc5b 100644 --- a/plugins/easings/sigmoid/CHANGELOG.md +++ b/plugins/easings/sigmoid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sigmoid + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-sigmoid diff --git a/plugins/easings/sigmoid/package.dist.json b/plugins/easings/sigmoid/package.dist.json index 4cf8f1ed350..9a186dff3a0 100644 --- a/plugins/easings/sigmoid/package.dist.json +++ b/plugins/easings/sigmoid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sigmoid", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing sigmoid plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sigmoid/package.json b/plugins/easings/sigmoid/package.json index f7b9faebc24..494382b0267 100644 --- a/plugins/easings/sigmoid/package.json +++ b/plugins/easings/sigmoid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sigmoid", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing sigmoid plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/sine/CHANGELOG.md b/plugins/easings/sine/CHANGELOG.md index 29db64a8b48..0a97a905f10 100644 --- a/plugins/easings/sine/CHANGELOG.md +++ b/plugins/easings/sine/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sine + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-sine diff --git a/plugins/easings/sine/package.dist.json b/plugins/easings/sine/package.dist.json index 7eba612cf43..3220f5cf255 100644 --- a/plugins/easings/sine/package.dist.json +++ b/plugins/easings/sine/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sine", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing sine plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sine/package.json b/plugins/easings/sine/package.json index 37a122f5e75..cabf849b2e1 100644 --- a/plugins/easings/sine/package.json +++ b/plugins/easings/sine/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sine", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing sine plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/smoothstep/CHANGELOG.md b/plugins/easings/smoothstep/CHANGELOG.md index ab15184f8c6..eea5e11d2ae 100644 --- a/plugins/easings/smoothstep/CHANGELOG.md +++ b/plugins/easings/smoothstep/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-easing-smoothstep + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-easing-smoothstep diff --git a/plugins/easings/smoothstep/package.dist.json b/plugins/easings/smoothstep/package.dist.json index 4daaf4b35f4..d65feb3c32a 100644 --- a/plugins/easings/smoothstep/package.dist.json +++ b/plugins/easings/smoothstep/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-smoothstep", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/smoothstep/package.json b/plugins/easings/smoothstep/package.json index adacac5c3b5..77fdb19eb8a 100644 --- a/plugins/easings/smoothstep/package.json +++ b/plugins/easings/smoothstep/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-smoothstep", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emitters/CHANGELOG.md b/plugins/emitters/CHANGELOG.md index 09c363b0179..c704b05c2e9 100644 --- a/plugins/emitters/CHANGELOG.md +++ b/plugins/emitters/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-emitters + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-emitters diff --git a/plugins/emitters/package.dist.json b/plugins/emitters/package.dist.json index e382188412c..136f92a7758 100644 --- a/plugins/emitters/package.dist.json +++ b/plugins/emitters/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/emitters/package.json b/plugins/emitters/package.json index 1f513bc633c..3e300b2e767 100644 --- a/plugins/emitters/package.json +++ b/plugins/emitters/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for continuously spawning particles from configurable emitter shapes and positions", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/canvas/CHANGELOG.md b/plugins/emittersShapes/canvas/CHANGELOG.md index 3b8329088ac..5104cefba19 100644 --- a/plugins/emittersShapes/canvas/CHANGELOG.md +++ b/plugins/emittersShapes/canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-canvas + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-canvas diff --git a/plugins/emittersShapes/canvas/package.dist.json b/plugins/emittersShapes/canvas/package.dist.json index 5caa84cd547..0afe3f8f0c4 100644 --- a/plugins/emittersShapes/canvas/package.dist.json +++ b/plugins/emittersShapes/canvas/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-canvas", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape canvas plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,14 +106,14 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.3.1" + "@tsparticles/canvas-utils": "4.3.2" } } diff --git a/plugins/emittersShapes/canvas/package.json b/plugins/emittersShapes/canvas/package.json index 537fa3f76f7..e131fdc6558 100644 --- a/plugins/emittersShapes/canvas/package.json +++ b/plugins/emittersShapes/canvas/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-canvas", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape canvas plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/circle/CHANGELOG.md b/plugins/emittersShapes/circle/CHANGELOG.md index 695e9844dfb..2d21e67bcec 100644 --- a/plugins/emittersShapes/circle/CHANGELOG.md +++ b/plugins/emittersShapes/circle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-circle + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-circle diff --git a/plugins/emittersShapes/circle/package.dist.json b/plugins/emittersShapes/circle/package.dist.json index 216fb2f67eb..dbfd154baa9 100644 --- a/plugins/emittersShapes/circle/package.dist.json +++ b/plugins/emittersShapes/circle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-circle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape circle plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/circle/package.json b/plugins/emittersShapes/circle/package.json index 092cae96671..739b61456b2 100644 --- a/plugins/emittersShapes/circle/package.json +++ b/plugins/emittersShapes/circle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-circle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape circle plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/path/CHANGELOG.md b/plugins/emittersShapes/path/CHANGELOG.md index 9a79f3cc4e6..b03e2751ff8 100644 --- a/plugins/emittersShapes/path/CHANGELOG.md +++ b/plugins/emittersShapes/path/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-path + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-path diff --git a/plugins/emittersShapes/path/package.dist.json b/plugins/emittersShapes/path/package.dist.json index dd1a4b92567..38228408d78 100644 --- a/plugins/emittersShapes/path/package.dist.json +++ b/plugins/emittersShapes/path/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-path", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape path plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/path/package.json b/plugins/emittersShapes/path/package.json index 51136039b21..66b129c085d 100644 --- a/plugins/emittersShapes/path/package.json +++ b/plugins/emittersShapes/path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-path", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape path plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/polygon/CHANGELOG.md b/plugins/emittersShapes/polygon/CHANGELOG.md index 9e187072a4a..02c2dc672ea 100644 --- a/plugins/emittersShapes/polygon/CHANGELOG.md +++ b/plugins/emittersShapes/polygon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-polygon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-polygon diff --git a/plugins/emittersShapes/polygon/package.dist.json b/plugins/emittersShapes/polygon/package.dist.json index 62d683e6539..cd41738223e 100644 --- a/plugins/emittersShapes/polygon/package.dist.json +++ b/plugins/emittersShapes/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape polygon plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/polygon/package.json b/plugins/emittersShapes/polygon/package.json index 714e5df13d9..34e36118e84 100644 --- a/plugins/emittersShapes/polygon/package.json +++ b/plugins/emittersShapes/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape polygon plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/square/CHANGELOG.md b/plugins/emittersShapes/square/CHANGELOG.md index eb9242d639e..66030ecb3f8 100644 --- a/plugins/emittersShapes/square/CHANGELOG.md +++ b/plugins/emittersShapes/square/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-square + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-square diff --git a/plugins/emittersShapes/square/package.dist.json b/plugins/emittersShapes/square/package.dist.json index c00924784d5..872014fe4bb 100644 --- a/plugins/emittersShapes/square/package.dist.json +++ b/plugins/emittersShapes/square/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-square", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape square plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/square/package.json b/plugins/emittersShapes/square/package.json index a1cd785220a..4c891899fbd 100644 --- a/plugins/emittersShapes/square/package.json +++ b/plugins/emittersShapes/square/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-square", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emitters shape square plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/image/CHANGELOG.md b/plugins/exports/image/CHANGELOG.md index 2a51cde702c..32eb8c7b997 100644 --- a/plugins/exports/image/CHANGELOG.md +++ b/plugins/exports/image/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-export-image + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-export-image diff --git a/plugins/exports/image/package.dist.json b/plugins/exports/image/package.dist.json index a92625fa05b..8b79178f2f2 100644 --- a/plugins/exports/image/package.dist.json +++ b/plugins/exports/image/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-image", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles export image plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/image/package.json b/plugins/exports/image/package.json index 7c542a05593..0108c4e165a 100644 --- a/plugins/exports/image/package.json +++ b/plugins/exports/image/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-image", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles export image plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/json/CHANGELOG.md b/plugins/exports/json/CHANGELOG.md index 3f3e165998b..043489bb314 100644 --- a/plugins/exports/json/CHANGELOG.md +++ b/plugins/exports/json/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-export-json + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-export-json diff --git a/plugins/exports/json/package.dist.json b/plugins/exports/json/package.dist.json index f7ed8cc6ad4..51c93cdc136 100644 --- a/plugins/exports/json/package.dist.json +++ b/plugins/exports/json/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-json", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles export json plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/json/package.json b/plugins/exports/json/package.json index 4d45b9aecb8..6f3cc100583 100644 --- a/plugins/exports/json/package.json +++ b/plugins/exports/json/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-json", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles export json plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/video/CHANGELOG.md b/plugins/exports/video/CHANGELOG.md index e0b78dd6476..0bea40dd9ef 100644 --- a/plugins/exports/video/CHANGELOG.md +++ b/plugins/exports/video/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-export-video + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-export-video diff --git a/plugins/exports/video/package.dist.json b/plugins/exports/video/package.dist.json index f099a7a6d7c..e34fcb48821 100644 --- a/plugins/exports/video/package.dist.json +++ b/plugins/exports/video/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-video", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/video/package.json b/plugins/exports/video/package.json index 8bde2e7e841..8d914de5451 100644 --- a/plugins/exports/video/package.json +++ b/plugins/exports/video/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-video", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/infection/CHANGELOG.md b/plugins/infection/CHANGELOG.md index 45e3c42212f..8df1b51fbb9 100644 --- a/plugins/infection/CHANGELOG.md +++ b/plugins/infection/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-infection + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-infection diff --git a/plugins/infection/package.dist.json b/plugins/infection/package.dist.json index 38d6d0625e1..e5370fee1b6 100644 --- a/plugins/infection/package.dist.json +++ b/plugins/infection/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles infection plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/infection/package.json b/plugins/infection/package.json index 6ffa072ff58..4a6af01f243 100644 --- a/plugins/infection/package.json +++ b/plugins/infection/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for infecting particles with color or state changes when they touch each other", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/interactivity/CHANGELOG.md b/plugins/interactivity/CHANGELOG.md index f8b66f0a854..ec27131fd0b 100644 --- a/plugins/interactivity/CHANGELOG.md +++ b/plugins/interactivity/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-interactivity + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-interactivity diff --git a/plugins/interactivity/package.dist.json b/plugins/interactivity/package.dist.json index 6878240680b..4f42ef61f3e 100644 --- a/plugins/interactivity/package.dist.json +++ b/plugins/interactivity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles interactivity sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/interactivity/package.json b/plugins/interactivity/package.json index 4327446d27a..257c6e5d0ea 100644 --- a/plugins/interactivity/package.json +++ b/plugins/interactivity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for creating custom interaction behaviors beyond built-in interactions", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/manualParticles/CHANGELOG.md b/plugins/manualParticles/CHANGELOG.md index 1ca0a7dab16..eb45a12e5fb 100644 --- a/plugins/manualParticles/CHANGELOG.md +++ b/plugins/manualParticles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-manual-particles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-manual-particles diff --git a/plugins/manualParticles/package.dist.json b/plugins/manualParticles/package.dist.json index 2e4e41cb143..dd01f4b53a7 100644 --- a/plugins/manualParticles/package.dist.json +++ b/plugins/manualParticles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-manual-particles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles manual particles plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/manualParticles/package.json b/plugins/manualParticles/package.json index e44eee63f33..d2844da47e3 100644 --- a/plugins/manualParticles/package.json +++ b/plugins/manualParticles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-manual-particles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for placing particles at specific manual coordinates on the canvas", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/motion/CHANGELOG.md b/plugins/motion/CHANGELOG.md index 9138a876997..6a4a299e7c1 100644 --- a/plugins/motion/CHANGELOG.md +++ b/plugins/motion/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-motion + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-motion diff --git a/plugins/motion/package.dist.json b/plugins/motion/package.dist.json index 09a9da09d34..61fbfacf0dd 100644 --- a/plugins/motion/package.dist.json +++ b/plugins/motion/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles motion sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/motion/package.json b/plugins/motion/package.json index 08bf1925fa3..645ce7299d7 100644 --- a/plugins/motion/package.json +++ b/plugins/motion/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for respecting user reduced-motion preferences and browser motion settings", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/move/CHANGELOG.md b/plugins/move/CHANGELOG.md index 13b3b8ee3c1..918abe22b7e 100644 --- a/plugins/move/CHANGELOG.md +++ b/plugins/move/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-move + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-move diff --git a/plugins/move/package.dist.json b/plugins/move/package.dist.json index f3ea426a7e9..25f9e9290c9 100644 --- a/plugins/move/package.dist.json +++ b/plugins/move/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles Move plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/move/package.json b/plugins/move/package.json index d5cfa72b449..9d5557f36a4 100644 --- a/plugins/move/package.json +++ b/plugins/move/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for defining custom particle movement behaviors and path generators", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/poisson/CHANGELOG.md b/plugins/poisson/CHANGELOG.md index b9ee855fd66..9dcd88098ad 100644 --- a/plugins/poisson/CHANGELOG.md +++ b/plugins/poisson/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-poisson-disc + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-poisson-disc diff --git a/plugins/poisson/package.dist.json b/plugins/poisson/package.dist.json index 8ea71db9112..0faf04949dd 100644 --- a/plugins/poisson/package.dist.json +++ b/plugins/poisson/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-poisson-disc", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles poisson disc plugin", "homepage": "https://particles.js.org", "repository": { @@ -91,7 +91,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/poisson/package.json b/plugins/poisson/package.json index 0e9fa59cc93..e023b74fbfd 100644 --- a/plugins/poisson/package.json +++ b/plugins/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-poisson-disc", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for Poisson disc sampling to distribute particles with natural spacing", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/polygonMask/CHANGELOG.md b/plugins/polygonMask/CHANGELOG.md index 7bef5bbb062..f390fe8025c 100644 --- a/plugins/polygonMask/CHANGELOG.md +++ b/plugins/polygonMask/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-polygon-mask + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-polygon-mask diff --git a/plugins/polygonMask/package.dist.json b/plugins/polygonMask/package.dist.json index 7a02b0e065a..000dcbefca9 100644 --- a/plugins/polygonMask/package.dist.json +++ b/plugins/polygonMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-polygon-mask", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles polygon mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -94,7 +94,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/polygonMask/package.json b/plugins/polygonMask/package.json index dac80501b22..7e4e6fbd2bd 100644 --- a/plugins/polygonMask/package.json +++ b/plugins/polygonMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-polygon-mask", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for constraining particles within SVG or image-based polygon mask shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/responsive/CHANGELOG.md b/plugins/responsive/CHANGELOG.md index 45581a03368..87ea8f42906 100644 --- a/plugins/responsive/CHANGELOG.md +++ b/plugins/responsive/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-responsive + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-responsive diff --git a/plugins/responsive/package.dist.json b/plugins/responsive/package.dist.json index b0a1f05a415..8fb315ce32c 100644 --- a/plugins/responsive/package.dist.json +++ b/plugins/responsive/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles responsive plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/responsive/package.json b/plugins/responsive/package.json index 9ca3088892b..2559c4d9fc5 100644 --- a/plugins/responsive/package.json +++ b/plugins/responsive/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for configuring responsive breakpoints that adapt particle settings to screen size", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/sounds/CHANGELOG.md b/plugins/sounds/CHANGELOG.md index 2880cadeaa4..6be111e291e 100644 --- a/plugins/sounds/CHANGELOG.md +++ b/plugins/sounds/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-sounds + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-sounds diff --git a/plugins/sounds/package.dist.json b/plugins/sounds/package.dist.json index fc90bc6ab53..3031f2ac3be 100644 --- a/plugins/sounds/package.dist.json +++ b/plugins/sounds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sounds plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/sounds/package.json b/plugins/sounds/package.json index de93e0207ab..890c8c812a3 100644 --- a/plugins/sounds/package.json +++ b/plugins/sounds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for adding sound effects triggered by particle events and interactions", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/themes/CHANGELOG.md b/plugins/themes/CHANGELOG.md index 0323b34e11c..c98e68ff8aa 100644 --- a/plugins/themes/CHANGELOG.md +++ b/plugins/themes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-themes + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-themes diff --git a/plugins/themes/package.dist.json b/plugins/themes/package.dist.json index 27fdf5000bb..a33c0dfa807 100644 --- a/plugins/themes/package.dist.json +++ b/plugins/themes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles themes plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/themes/package.json b/plugins/themes/package.json index 4e1941f3182..11c72d237e0 100644 --- a/plugins/themes/package.json +++ b/plugins/themes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for supporting dark mode, light mode, and custom themes that change particle appearance", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/trail/CHANGELOG.md b/plugins/trail/CHANGELOG.md index 2384a11f4fc..eaa3494703a 100644 --- a/plugins/trail/CHANGELOG.md +++ b/plugins/trail/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-trail + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-trail diff --git a/plugins/trail/package.dist.json b/plugins/trail/package.dist.json index 7e8814a22cd..4346dc81941 100644 --- a/plugins/trail/package.dist.json +++ b/plugins/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles trail plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/trail/package.json b/plugins/trail/package.json index 297bce2588d..d77948638b3 100644 --- a/plugins/trail/package.json +++ b/plugins/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for creating particle motion trail effects that fade behind moving particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/zoom/CHANGELOG.md b/plugins/zoom/CHANGELOG.md index e3641c5721c..712c67b529b 100644 --- a/plugins/zoom/CHANGELOG.md +++ b/plugins/zoom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/plugin-zoom + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/plugin-zoom diff --git a/plugins/zoom/package.dist.json b/plugins/zoom/package.dist.json index b07127cbd0c..d0cd0d7b790 100644 --- a/plugins/zoom/package.dist.json +++ b/plugins/zoom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles zoom plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/plugins/zoom/package.json b/plugins/zoom/package.json index 6f76ba41b5e..3052d083954 100644 --- a/plugins/zoom/package.json +++ b/plugins/zoom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles plugin for enabling zoom and pan interactions on the particle canvas", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/ambient/CHANGELOG.md b/presets/ambient/CHANGELOG.md index fa8dd6d9d20..73e7c98f1dd 100644 --- a/presets/ambient/CHANGELOG.md +++ b/presets/ambient/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-ambient diff --git a/presets/ambient/package.dist.json b/presets/ambient/package.dist.json index 18f3c4b4e62..21bd3cac417 100644 --- a/presets/ambient/package.dist.json +++ b/presets/ambient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ambient preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/ambient/package.json b/presets/ambient/package.json index ba3aa6df608..d56d36117e6 100644 --- a/presets/ambient/package.json +++ b/presets/ambient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating ambient, floating background particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bigCircles/CHANGELOG.md b/presets/bigCircles/CHANGELOG.md index 838e30fb87a..3946f408187 100644 --- a/presets/bigCircles/CHANGELOG.md +++ b/presets/bigCircles/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-big-circles diff --git a/presets/bigCircles/package.dist.json b/presets/bigCircles/package.dist.json index f402927f25a..b2ef174d67c 100644 --- a/presets/bigCircles/package.dist.json +++ b/presets/bigCircles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-big-circles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles big circles preset", "homepage": "https://particles.js.org", "repository": { @@ -105,8 +105,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/bigCircles/package.json b/presets/bigCircles/package.json index e934c8d1a8e..789232550b1 100644 --- a/presets/bigCircles/package.json +++ b/presets/bigCircles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-big-circles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating large, slowly moving circular particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bubbles/CHANGELOG.md b/presets/bubbles/CHANGELOG.md index bee13ef216c..96fdc8f1aab 100644 --- a/presets/bubbles/CHANGELOG.md +++ b/presets/bubbles/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-bubbles diff --git a/presets/bubbles/package.dist.json b/presets/bubbles/package.dist.json index e9339589706..7b09b43a425 100644 --- a/presets/bubbles/package.dist.json +++ b/presets/bubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles bubbles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,9 +106,9 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/bubbles/package.json b/presets/bubbles/package.json index 87d88982a5a..f4980f2ba6b 100644 --- a/presets/bubbles/package.json +++ b/presets/bubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating floating, rising bubble particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confetti/CHANGELOG.md b/presets/confetti/CHANGELOG.md index ade44b889c4..ea28aabf7c0 100644 --- a/presets/confetti/CHANGELOG.md +++ b/presets/confetti/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-confetti diff --git a/presets/confetti/package.dist.json b/presets/confetti/package.dist.json index ed440597e17..a690974c7c2 100644 --- a/presets/confetti/package.dist.json +++ b/presets/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti preset", "homepage": "https://particles.js.org", "repository": { @@ -99,17 +99,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/palette-confetti": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/updater-life": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/palette-confetti": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/updater-life": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/confetti/package.json b/presets/confetti/package.json index ad4b3a4ab3d..f44e4b594f6 100644 --- a/presets/confetti/package.json +++ b/presets/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating colorful confetti celebration particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiCannon/CHANGELOG.md b/presets/confettiCannon/CHANGELOG.md index dd9e8e14184..fee198b42a1 100644 --- a/presets/confettiCannon/CHANGELOG.md +++ b/presets/confettiCannon/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-confetti-cannon diff --git a/presets/confettiCannon/package.dist.json b/presets/confettiCannon/package.dist.json index 9f9ad53315c..de4fc13fc40 100644 --- a/presets/confettiCannon/package.dist.json +++ b/presets/confettiCannon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-cannon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti cannon preset", "homepage": "https://particles.js.org", "repository": { @@ -106,18 +106,18 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-external-cannon": "4.3.1", - "@tsparticles/palette-confetti": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/updater-life": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-external-cannon": "4.3.2", + "@tsparticles/palette-confetti": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/updater-life": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/confettiCannon/package.json b/presets/confettiCannon/package.json index 4ef506c6cb8..53557125288 100644 --- a/presets/confettiCannon/package.json +++ b/presets/confettiCannon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-cannon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating confetti cannon burst explosive effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiExplosions/CHANGELOG.md b/presets/confettiExplosions/CHANGELOG.md index 3c5eaf1e29b..224d31ce2f6 100644 --- a/presets/confettiExplosions/CHANGELOG.md +++ b/presets/confettiExplosions/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-confetti-explosions diff --git a/presets/confettiExplosions/package.dist.json b/presets/confettiExplosions/package.dist.json index 79390037d56..7aec7a03fa0 100644 --- a/presets/confettiExplosions/package.dist.json +++ b/presets/confettiExplosions/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-explosions", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti explosions preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/palette-confetti": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/palette-confetti": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/confettiExplosions/package.json b/presets/confettiExplosions/package.json index 9ed010a030a..e92732a952f 100644 --- a/presets/confettiExplosions/package.json +++ b/presets/confettiExplosions/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-explosions", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating confetti explosion and burst effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiFalling/CHANGELOG.md b/presets/confettiFalling/CHANGELOG.md index 7095db48458..342d37a51e3 100644 --- a/presets/confettiFalling/CHANGELOG.md +++ b/presets/confettiFalling/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-confetti-falling diff --git a/presets/confettiFalling/package.dist.json b/presets/confettiFalling/package.dist.json index 9aa2d8b0ae1..60d4f4c0c60 100644 --- a/presets/confettiFalling/package.dist.json +++ b/presets/confettiFalling/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-falling", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti falling preset", "homepage": "https://particles.js.org", "repository": { @@ -106,15 +106,15 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/palette-confetti": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/palette-confetti": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/confettiFalling/package.json b/presets/confettiFalling/package.json index 9396ff45278..6960e3fdeea 100644 --- a/presets/confettiFalling/package.json +++ b/presets/confettiFalling/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-falling", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating gently falling confetti particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiParade/CHANGELOG.md b/presets/confettiParade/CHANGELOG.md index a6f07815208..2b3ff525279 100644 --- a/presets/confettiParade/CHANGELOG.md +++ b/presets/confettiParade/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-confetti-parade diff --git a/presets/confettiParade/package.dist.json b/presets/confettiParade/package.dist.json index 73262ccadf2..529d3b37b70 100644 --- a/presets/confettiParade/package.dist.json +++ b/presets/confettiParade/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-parade", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti parade preset", "homepage": "https://particles.js.org", "repository": { @@ -106,17 +106,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/palette-confetti": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-motion": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/updater-life": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/palette-confetti": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-motion": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/updater-life": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/confettiParade/package.json b/presets/confettiParade/package.json index feba16605fb..c8f2924cc48 100644 --- a/presets/confettiParade/package.json +++ b/presets/confettiParade/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-parade", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating confetti parade and celebration streamer effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fire/CHANGELOG.md b/presets/fire/CHANGELOG.md index 788c4b01ef4..96938c581e2 100644 --- a/presets/fire/CHANGELOG.md +++ b/presets/fire/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-fire diff --git a/presets/fire/package.dist.json b/presets/fire/package.dist.json index 03d17ee97fb..39c0b51a398 100644 --- a/presets/fire/package.dist.json +++ b/presets/fire/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fire preset", "homepage": "https://particles.js.org", "repository": { @@ -99,10 +99,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-external-push": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-external-push": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/fire/package.json b/presets/fire/package.json index a0f3254a6b8..db2fd83e97a 100644 --- a/presets/fire/package.json +++ b/presets/fire/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating realistic fire and flame particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/firefly/CHANGELOG.md b/presets/firefly/CHANGELOG.md index 6302829742c..6239323bbe4 100644 --- a/presets/firefly/CHANGELOG.md +++ b/presets/firefly/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-firefly diff --git a/presets/firefly/package.dist.json b/presets/firefly/package.dist.json index ff83ec572a5..a6fa1221a07 100644 --- a/presets/firefly/package.dist.json +++ b/presets/firefly/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles firefly preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-external-trail": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1", - "@tsparticles/updater-life": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-external-trail": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2", + "@tsparticles/updater-life": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/firefly/package.json b/presets/firefly/package.json index c6771b16567..eb2b5666adf 100644 --- a/presets/firefly/package.json +++ b/presets/firefly/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating glowing firefly bioluminescence particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fireworks/CHANGELOG.md b/presets/fireworks/CHANGELOG.md index 25c203ac1d3..50c28f5e938 100644 --- a/presets/fireworks/CHANGELOG.md +++ b/presets/fireworks/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-fireworks diff --git a/presets/fireworks/package.dist.json b/presets/fireworks/package.dist.json index 762f0b825f1..8bf9878c817 100644 --- a/presets/fireworks/package.dist.json +++ b/presets/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fireworks preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/effect-trail": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-emitters-shape-square": "4.3.1", - "@tsparticles/plugin-sounds": "4.3.1", - "@tsparticles/shape-line": "4.3.1", - "@tsparticles/updater-destroy": "4.3.1", - "@tsparticles/updater-life": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/effect-trail": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-emitters-shape-square": "4.3.2", + "@tsparticles/plugin-sounds": "4.3.2", + "@tsparticles/shape-line": "4.3.2", + "@tsparticles/updater-destroy": "4.3.2", + "@tsparticles/updater-life": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/fireworks/package.json b/presets/fireworks/package.json index f14a98e6bfd..507ec0b70fc 100644 --- a/presets/fireworks/package.json +++ b/presets/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating spectacular fireworks display particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fountain/CHANGELOG.md b/presets/fountain/CHANGELOG.md index 6078dc8cfca..7eca2b39907 100644 --- a/presets/fountain/CHANGELOG.md +++ b/presets/fountain/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-fountain diff --git a/presets/fountain/package.dist.json b/presets/fountain/package.dist.json index 5dab64bdbc0..d62b5119545 100644 --- a/presets/fountain/package.dist.json +++ b/presets/fountain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fountain preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-trail": "4.3.1", - "@tsparticles/updater-destroy": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-trail": "4.3.2", + "@tsparticles/updater-destroy": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/fountain/package.json b/presets/fountain/package.json index 22a8c0e4dc1..34bac911b35 100644 --- a/presets/fountain/package.json +++ b/presets/fountain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating water fountain-like particle spray effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/hyperspace/CHANGELOG.md b/presets/hyperspace/CHANGELOG.md index 3ed3aa3509d..a1e9c41b2ba 100644 --- a/presets/hyperspace/CHANGELOG.md +++ b/presets/hyperspace/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-hyperspace diff --git a/presets/hyperspace/package.dist.json b/presets/hyperspace/package.dist.json index 7000857ae2c..86efcdf26cd 100644 --- a/presets/hyperspace/package.dist.json +++ b/presets/hyperspace/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles hyperspace preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-emitters-shape-square": "4.3.1", - "@tsparticles/plugin-trail": "4.3.1", - "@tsparticles/updater-life": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-emitters-shape-square": "4.3.2", + "@tsparticles/plugin-trail": "4.3.2", + "@tsparticles/updater-life": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/hyperspace/package.json b/presets/hyperspace/package.json index 1a0c6404f10..35b5d764434 100644 --- a/presets/hyperspace/package.json +++ b/presets/hyperspace/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating warp-speed hyperspace starfield effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/links/CHANGELOG.md b/presets/links/CHANGELOG.md index 240e3a07677..39bc14d27b7 100644 --- a/presets/links/CHANGELOG.md +++ b/presets/links/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-links diff --git a/presets/links/package.dist.json b/presets/links/package.dist.json index 75073fed452..4e8763a760d 100644 --- a/presets/links/package.dist.json +++ b/presets/links/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles links preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-particles-links": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-particles-links": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/links/package.json b/presets/links/package.json index 026be5017af..4bf79be373f 100644 --- a/presets/links/package.json +++ b/presets/links/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating connected network of particles linked by lines", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/matrix/CHANGELOG.md b/presets/matrix/CHANGELOG.md index 0b474b82604..2df70960fe2 100644 --- a/presets/matrix/CHANGELOG.md +++ b/presets/matrix/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/preset-matrix + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-matrix diff --git a/presets/matrix/package.dist.json b/presets/matrix/package.dist.json index 8dee49b84dd..b52e83beb0a 100644 --- a/presets/matrix/package.dist.json +++ b/presets/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles matrix preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/effect-shadow": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-poisson-disc": "4.3.1", - "@tsparticles/plugin-trail": "4.3.1", - "@tsparticles/shape-matrix": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/effect-shadow": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-poisson-disc": "4.3.2", + "@tsparticles/plugin-trail": "4.3.2", + "@tsparticles/shape-matrix": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/matrix/package.json b/presets/matrix/package.json index 671bd0661f0..411bf40ef07 100644 --- a/presets/matrix/package.json +++ b/presets/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating Matrix-style digital rain character effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/meteors/CHANGELOG.md b/presets/meteors/CHANGELOG.md index 1e5e5d5d4c8..3bcd1dd080b 100644 --- a/presets/meteors/CHANGELOG.md +++ b/presets/meteors/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-meteors diff --git a/presets/meteors/package.dist.json b/presets/meteors/package.dist.json index ca7a22b100b..1ac23a8b41b 100644 --- a/presets/meteors/package.dist.json +++ b/presets/meteors/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-meteors", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles meteors preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/effect-trail": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-emitters-shape-square": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/effect-trail": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-emitters-shape-square": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/meteors/package.json b/presets/meteors/package.json index ca5d12ac709..39d20863977 100644 --- a/presets/meteors/package.json +++ b/presets/meteors/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-meteors", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles meteors preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/party/CHANGELOG.md b/presets/party/CHANGELOG.md index d45a9d72d22..529de9e8663 100644 --- a/presets/party/CHANGELOG.md +++ b/presets/party/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-party diff --git a/presets/party/package.dist.json b/presets/party/package.dist.json index 578cc0098c0..9ee6e75cf2d 100644 --- a/presets/party/package.dist.json +++ b/presets/party/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-party", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles party preset", "homepage": "https://particles.js.org", "repository": { @@ -106,18 +106,18 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/palette-confetti": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-emitters-shape-square": "4.3.1", - "@tsparticles/shape-polygon": "4.3.1", - "@tsparticles/shape-ribbon": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/updater-roll": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-tilt": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/palette-confetti": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-emitters-shape-square": "4.3.2", + "@tsparticles/shape-polygon": "4.3.2", + "@tsparticles/shape-ribbon": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/updater-roll": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-tilt": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/party/package.json b/presets/party/package.json index 34f5193f07b..d18c9317ee2 100644 --- a/presets/party/package.json +++ b/presets/party/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-party", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating colorful party celebration particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/seaAnemone/CHANGELOG.md b/presets/seaAnemone/CHANGELOG.md index 80ab52cd1ec..aecc57a7ef2 100644 --- a/presets/seaAnemone/CHANGELOG.md +++ b/presets/seaAnemone/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-sea-anemone diff --git a/presets/seaAnemone/package.dist.json b/presets/seaAnemone/package.dist.json index 3b178cad123..0f914455744 100644 --- a/presets/seaAnemone/package.dist.json +++ b/presets/seaAnemone/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-sea-anemone", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles sea anemone preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/path-curves": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1", - "@tsparticles/plugin-trail": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/path-curves": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2", + "@tsparticles/plugin-trail": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/seaAnemone/package.json b/presets/seaAnemone/package.json index e1e279ddfc4..f685ecb549a 100644 --- a/presets/seaAnemone/package.json +++ b/presets/seaAnemone/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-sea-anemone", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating organic sea anemone tentacle particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/snow/CHANGELOG.md b/presets/snow/CHANGELOG.md index 11134d454f1..7672743c2eb 100644 --- a/presets/snow/CHANGELOG.md +++ b/presets/snow/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-snow diff --git a/presets/snow/package.dist.json b/presets/snow/package.dist.json index 5f84a472ba0..37114553c99 100644 --- a/presets/snow/package.dist.json +++ b/presets/snow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles snow preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/palette-snowfall": "4.3.1", - "@tsparticles/updater-wobble": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/palette-snowfall": "4.3.2", + "@tsparticles/updater-wobble": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/snow/package.json b/presets/snow/package.json index 4f9adc1652a..e76dcdd4432 100644 --- a/presets/snow/package.json +++ b/presets/snow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating realistic snowfall particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/squares/CHANGELOG.md b/presets/squares/CHANGELOG.md index 9362e4ddf76..eef557c8521 100644 --- a/presets/squares/CHANGELOG.md +++ b/presets/squares/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-squares diff --git a/presets/squares/package.dist.json b/presets/squares/package.dist.json index 0e7ba1f16de..944981ca609 100644 --- a/presets/squares/package.dist.json +++ b/presets/squares/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles squares preset", "homepage": "https://particles.js.org", "repository": { @@ -106,13 +106,13 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-emitters": "4.3.1", - "@tsparticles/plugin-hex-color": "4.3.1", - "@tsparticles/shape-square": "4.3.1", - "@tsparticles/updater-paint": "4.3.1", - "@tsparticles/updater-rotate": "4.3.1", - "@tsparticles/updater-size": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-emitters": "4.3.2", + "@tsparticles/plugin-hex-color": "4.3.2", + "@tsparticles/shape-square": "4.3.2", + "@tsparticles/updater-paint": "4.3.2", + "@tsparticles/updater-rotate": "4.3.2", + "@tsparticles/updater-size": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/squares/package.json b/presets/squares/package.json index ad2def51b53..95dc5e0412d 100644 --- a/presets/squares/package.json +++ b/presets/squares/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating animated square particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/stars/CHANGELOG.md b/presets/stars/CHANGELOG.md index b1370aa67c5..73190c8ab6f 100644 --- a/presets/stars/CHANGELOG.md +++ b/presets/stars/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-stars diff --git a/presets/stars/package.dist.json b/presets/stars/package.dist.json index 142d24e89e2..fd35be73568 100644 --- a/presets/stars/package.dist.json +++ b/presets/stars/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles stars preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/stars/package.json b/presets/stars/package.json index 7b1be863883..7845bf37c0b 100644 --- a/presets/stars/package.json +++ b/presets/stars/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating twinkling starry night sky particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/triangles/CHANGELOG.md b/presets/triangles/CHANGELOG.md index dee81dbf8a6..e7f02ff6ea9 100644 --- a/presets/triangles/CHANGELOG.md +++ b/presets/triangles/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preset-triangles diff --git a/presets/triangles/package.dist.json b/presets/triangles/package.dist.json index 79e57464a08..4d20977bce4 100644 --- a/presets/triangles/package.dist.json +++ b/presets/triangles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles triangles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.3.1", - "@tsparticles/engine": "4.3.1", - "@tsparticles/interaction-particles-links": "4.3.1", - "@tsparticles/plugin-interactivity": "4.3.1" + "@tsparticles/basic": "4.3.2", + "@tsparticles/engine": "4.3.2", + "@tsparticles/interaction-particles-links": "4.3.2", + "@tsparticles/plugin-interactivity": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/presets/triangles/package.json b/presets/triangles/package.json index 482afc52154..574956b871c 100644 --- a/presets/triangles/package.json +++ b/presets/triangles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles preset for creating animated triangle particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/arrow/CHANGELOG.md b/shapes/arrow/CHANGELOG.md index 08fb49ae755..332ac81b745 100644 --- a/shapes/arrow/CHANGELOG.md +++ b/shapes/arrow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-arrow + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-arrow diff --git a/shapes/arrow/package.dist.json b/shapes/arrow/package.dist.json index ab84e5b9a79..c0234974189 100644 --- a/shapes/arrow/package.dist.json +++ b/shapes/arrow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles arrow shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/arrow/package.json b/shapes/arrow/package.json index f0b7c773c75..5d4e4e7cd74 100644 --- a/shapes/arrow/package.json +++ b/shapes/arrow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as arrow shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cards/CHANGELOG.md b/shapes/cards/CHANGELOG.md index f883661bce9..b42d6f279e8 100644 --- a/shapes/cards/CHANGELOG.md +++ b/shapes/cards/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-cards + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-cards diff --git a/shapes/cards/package.dist.json b/shapes/cards/package.dist.json index d704c20ff4f..2b56a8094e6 100644 --- a/shapes/cards/package.dist.json +++ b/shapes/cards/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cards shape", "homepage": "https://particles.js.org", "repository": { @@ -190,13 +190,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/path-utils": "4.3.1" + "@tsparticles/path-utils": "4.3.2" } } diff --git a/shapes/cards/package.json b/shapes/cards/package.json index fd82181377e..fddbb1d3b65 100644 --- a/shapes/cards/package.json +++ b/shapes/cards/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as playing card suit symbols", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/circle/CHANGELOG.md b/shapes/circle/CHANGELOG.md index 4b5e3c9713d..77cf276bca2 100644 --- a/shapes/circle/CHANGELOG.md +++ b/shapes/circle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-circle + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-circle diff --git a/shapes/circle/package.dist.json b/shapes/circle/package.dist.json index b4741183ec5..f99988f07fc 100644 --- a/shapes/circle/package.dist.json +++ b/shapes/circle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles circle shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/circle/package.json b/shapes/circle/package.json index fbd523e2b2b..3873ad6cda4 100644 --- a/shapes/circle/package.json +++ b/shapes/circle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as circles (default particle shape)", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cog/CHANGELOG.md b/shapes/cog/CHANGELOG.md index e870eb0fe6d..5cabac7c99a 100644 --- a/shapes/cog/CHANGELOG.md +++ b/shapes/cog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-cog + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-cog diff --git a/shapes/cog/package.dist.json b/shapes/cog/package.dist.json index f3854b5b386..aa284bfda80 100644 --- a/shapes/cog/package.dist.json +++ b/shapes/cog/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles cog shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/cog/package.json b/shapes/cog/package.json index 6b2d7f38d99..1565576bd54 100644 --- a/shapes/cog/package.json +++ b/shapes/cog/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as cog or gear shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/emoji/CHANGELOG.md b/shapes/emoji/CHANGELOG.md index a555b796604..cb023479111 100644 --- a/shapes/emoji/CHANGELOG.md +++ b/shapes/emoji/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-emoji + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-emoji diff --git a/shapes/emoji/package.dist.json b/shapes/emoji/package.dist.json index 243c3bee0ec..42e171caaa3 100644 --- a/shapes/emoji/package.dist.json +++ b/shapes/emoji/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles emoji shape", "homepage": "https://particles.js.org", "repository": { @@ -65,13 +65,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.3.1" + "@tsparticles/canvas-utils": "4.3.2" } } diff --git a/shapes/emoji/package.json b/shapes/emoji/package.json index 1ff70d6989d..f542487bb22 100644 --- a/shapes/emoji/package.json +++ b/shapes/emoji/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as emoji characters", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/gif/CHANGELOG.md b/shapes/gif/CHANGELOG.md index 6c0b53ac9cb..9d9d9d1ec45 100644 --- a/shapes/gif/CHANGELOG.md +++ b/shapes/gif/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-gif + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-gif diff --git a/shapes/gif/package.dist.json b/shapes/gif/package.dist.json index e08d0b296af..92c5b84f319 100644 --- a/shapes/gif/package.dist.json +++ b/shapes/gif/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-gif", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles gif shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/gif/package.json b/shapes/gif/package.json index 4e9693a602c..90a9291d4ec 100644 --- a/shapes/gif/package.json +++ b/shapes/gif/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-gif", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as animated GIFs", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/heart/CHANGELOG.md b/shapes/heart/CHANGELOG.md index 457f1b5f2a9..23ec620f024 100644 --- a/shapes/heart/CHANGELOG.md +++ b/shapes/heart/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-heart + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-heart diff --git a/shapes/heart/package.dist.json b/shapes/heart/package.dist.json index 62aedadae43..ef29b154f7d 100644 --- a/shapes/heart/package.dist.json +++ b/shapes/heart/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles heart shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/heart/package.json b/shapes/heart/package.json index 3d3b1ee3018..6a5e6973990 100644 --- a/shapes/heart/package.json +++ b/shapes/heart/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as heart shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/image/CHANGELOG.md b/shapes/image/CHANGELOG.md index 8764d2c5747..c9889c09105 100644 --- a/shapes/image/CHANGELOG.md +++ b/shapes/image/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-image + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-image diff --git a/shapes/image/package.dist.json b/shapes/image/package.dist.json index ef69967d887..4b2ecfd7f48 100644 --- a/shapes/image/package.dist.json +++ b/shapes/image/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles image shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/image/package.json b/shapes/image/package.json index 0db11c8ffd1..859121a5611 100644 --- a/shapes/image/package.json +++ b/shapes/image/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as custom image files", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/infinity/CHANGELOG.md b/shapes/infinity/CHANGELOG.md index 604d18f4687..3c840f5ce7d 100644 --- a/shapes/infinity/CHANGELOG.md +++ b/shapes/infinity/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-infinity + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-infinity diff --git a/shapes/infinity/package.dist.json b/shapes/infinity/package.dist.json index e7eecdfa8ce..b35dd184f6f 100644 --- a/shapes/infinity/package.dist.json +++ b/shapes/infinity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles infinity shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/infinity/package.json b/shapes/infinity/package.json index dac5e83793e..beddd372cb2 100644 --- a/shapes/infinity/package.json +++ b/shapes/infinity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as infinity symbol (∞) shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/line/CHANGELOG.md b/shapes/line/CHANGELOG.md index f48ba34dc62..c2879379459 100644 --- a/shapes/line/CHANGELOG.md +++ b/shapes/line/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-line + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-line diff --git a/shapes/line/package.dist.json b/shapes/line/package.dist.json index 7b6661066a0..557869e36c5 100644 --- a/shapes/line/package.dist.json +++ b/shapes/line/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles line shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/line/package.json b/shapes/line/package.json index ec037effc83..ba33dfe0b0e 100644 --- a/shapes/line/package.json +++ b/shapes/line/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as thin line or trail shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/matrix/CHANGELOG.md b/shapes/matrix/CHANGELOG.md index 29f2bbab617..fbe07851ef5 100644 --- a/shapes/matrix/CHANGELOG.md +++ b/shapes/matrix/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-matrix + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-matrix diff --git a/shapes/matrix/package.dist.json b/shapes/matrix/package.dist.json index f794e10a529..75526d53f4d 100644 --- a/shapes/matrix/package.dist.json +++ b/shapes/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles matrix shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/matrix/package.json b/shapes/matrix/package.json index 2847133fa01..4c874f25510 100644 --- a/shapes/matrix/package.json +++ b/shapes/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as matrix-style katakana characters", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/path/CHANGELOG.md b/shapes/path/CHANGELOG.md index 3525c4dee9d..457fc9549a3 100644 --- a/shapes/path/CHANGELOG.md +++ b/shapes/path/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-path + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-path diff --git a/shapes/path/package.dist.json b/shapes/path/package.dist.json index 514022fe901..af9a45a391d 100644 --- a/shapes/path/package.dist.json +++ b/shapes/path/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path shape", "homepage": "https://particles.js.org", "repository": { @@ -106,13 +106,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/path-utils": "4.3.1" + "@tsparticles/path-utils": "4.3.2" } } diff --git a/shapes/path/package.json b/shapes/path/package.json index 6daf460d675..f848534a520 100644 --- a/shapes/path/package.json +++ b/shapes/path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles that follow SVG path data", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/polygon/CHANGELOG.md b/shapes/polygon/CHANGELOG.md index 797cf18e1ce..e9fa69dcdcc 100644 --- a/shapes/polygon/CHANGELOG.md +++ b/shapes/polygon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-polygon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-polygon diff --git a/shapes/polygon/package.dist.json b/shapes/polygon/package.dist.json index 93be74959ca..9b266755740 100644 --- a/shapes/polygon/package.dist.json +++ b/shapes/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/polygon/package.json b/shapes/polygon/package.json index b580763e935..845b4da73b7 100644 --- a/shapes/polygon/package.json +++ b/shapes/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as regular polygon shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/ribbon/CHANGELOG.md b/shapes/ribbon/CHANGELOG.md index c24c5cc54ff..d4a65aa91a0 100644 --- a/shapes/ribbon/CHANGELOG.md +++ b/shapes/ribbon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-ribbon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-ribbon diff --git a/shapes/ribbon/package.dist.json b/shapes/ribbon/package.dist.json index 9c96c7fd377..4a6a55e8a8d 100644 --- a/shapes/ribbon/package.dist.json +++ b/shapes/ribbon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-ribbon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ribbon shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/ribbon/package.json b/shapes/ribbon/package.json index 88f35bade1e..f4b562b67d3 100644 --- a/shapes/ribbon/package.json +++ b/shapes/ribbon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-ribbon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as ribbon or wavy strip shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/rounded-polygon/CHANGELOG.md b/shapes/rounded-polygon/CHANGELOG.md index b9375e2c905..8478f0b1cfe 100644 --- a/shapes/rounded-polygon/CHANGELOG.md +++ b/shapes/rounded-polygon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-rounded-polygon + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-rounded-polygon diff --git a/shapes/rounded-polygon/package.dist.json b/shapes/rounded-polygon/package.dist.json index 2d589ddb2e8..cd6bfa6ec76 100644 --- a/shapes/rounded-polygon/package.dist.json +++ b/shapes/rounded-polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rounded polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-polygon/package.json b/shapes/rounded-polygon/package.json index 260c7462e6e..456fc8b4ea5 100644 --- a/shapes/rounded-polygon/package.json +++ b/shapes/rounded-polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-polygon", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as rounded polygon shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/rounded-rect/CHANGELOG.md b/shapes/rounded-rect/CHANGELOG.md index a74e6140edf..5b4cedca394 100644 --- a/shapes/rounded-rect/CHANGELOG.md +++ b/shapes/rounded-rect/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-rounded-rect + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-rounded-rect diff --git a/shapes/rounded-rect/package.dist.json b/shapes/rounded-rect/package.dist.json index eba4e986d72..d2c166a613e 100644 --- a/shapes/rounded-rect/package.dist.json +++ b/shapes/rounded-rect/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-rect", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles rounded rect shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-rect/package.json b/shapes/rounded-rect/package.json index e05d000e296..67bc10ffda6 100644 --- a/shapes/rounded-rect/package.json +++ b/shapes/rounded-rect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-rect", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as rounded rectangle shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/spiral/CHANGELOG.md b/shapes/spiral/CHANGELOG.md index c0c35943d87..67fb6f81296 100644 --- a/shapes/spiral/CHANGELOG.md +++ b/shapes/spiral/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-spiral + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-spiral diff --git a/shapes/spiral/package.dist.json b/shapes/spiral/package.dist.json index 3a127836a05..e91b483fde1 100644 --- a/shapes/spiral/package.dist.json +++ b/shapes/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles spiral shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/spiral/package.json b/shapes/spiral/package.json index 2a1fd6b39e6..7400119779b 100644 --- a/shapes/spiral/package.json +++ b/shapes/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as spiral shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/square/CHANGELOG.md b/shapes/square/CHANGELOG.md index 08473808c7c..b2cf2d11dfa 100644 --- a/shapes/square/CHANGELOG.md +++ b/shapes/square/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-square + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-square diff --git a/shapes/square/package.dist.json b/shapes/square/package.dist.json index 3c798499657..e35ad290e45 100644 --- a/shapes/square/package.dist.json +++ b/shapes/square/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles square shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/square/package.json b/shapes/square/package.json index e908faf65ea..f621ce9c51d 100644 --- a/shapes/square/package.json +++ b/shapes/square/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as square shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/squircle/CHANGELOG.md b/shapes/squircle/CHANGELOG.md index 64a5aaed62b..93609cea642 100644 --- a/shapes/squircle/CHANGELOG.md +++ b/shapes/squircle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-squircle + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-squircle diff --git a/shapes/squircle/package.dist.json b/shapes/squircle/package.dist.json index b4747d905ba..6f9cfc7ccf4 100644 --- a/shapes/squircle/package.dist.json +++ b/shapes/squircle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles squircle shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/squircle/package.json b/shapes/squircle/package.json index 225dd220aa6..57ae4152df3 100644 --- a/shapes/squircle/package.json +++ b/shapes/squircle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as squircle shapes (square-circle hybrid)", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/star/CHANGELOG.md b/shapes/star/CHANGELOG.md index b250937fb4d..96ab3d78461 100644 --- a/shapes/star/CHANGELOG.md +++ b/shapes/star/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-star + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-star diff --git a/shapes/star/package.dist.json b/shapes/star/package.dist.json index a219c72e3a4..e182040205e 100644 --- a/shapes/star/package.dist.json +++ b/shapes/star/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles star shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/shapes/star/package.json b/shapes/star/package.json index 4d927f3f9d7..82466624a71 100644 --- a/shapes/star/package.json +++ b/shapes/star/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as star shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/text/CHANGELOG.md b/shapes/text/CHANGELOG.md index 66c424f2bd1..2f14835cd8b 100644 --- a/shapes/text/CHANGELOG.md +++ b/shapes/text/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/shape-text + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/shape-text diff --git a/shapes/text/package.dist.json b/shapes/text/package.dist.json index e3d53bf8568..8e395edeacb 100644 --- a/shapes/text/package.dist.json +++ b/shapes/text/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles text shape", "homepage": "https://particles.js.org", "repository": { @@ -65,13 +65,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.3.1" + "@tsparticles/canvas-utils": "4.3.2" } } diff --git a/shapes/text/package.json b/shapes/text/package.json index dabeb987904..d4623c9c99e 100644 --- a/shapes/text/package.json +++ b/shapes/text/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles shape for rendering particles as custom text characters and strings", "homepage": "https://particles.js.org", "scripts": { diff --git a/templates/404/CHANGELOG.md b/templates/404/CHANGELOG.md index 4d6e0921bf3..f16af365322 100644 --- a/templates/404/CHANGELOG.md +++ b/templates/404/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-404 + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-404 diff --git a/templates/404/package.json b/templates/404/package.json index 171f5eab4a2..28aac3bb9a5 100644 --- a/templates/404/package.json +++ b/templates/404/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-404", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/confetti/CHANGELOG.md b/templates/confetti/CHANGELOG.md index 8185e5d4548..1dd5880864f 100644 --- a/templates/confetti/CHANGELOG.md +++ b/templates/confetti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-confetti + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-confetti diff --git a/templates/confetti/package.json b/templates/confetti/package.json index fbd0f87b9d1..9c3342a370c 100644 --- a/templates/confetti/package.json +++ b/templates/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-confetti", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/landing/CHANGELOG.md b/templates/landing/CHANGELOG.md index a960289f3e2..11297a580de 100644 --- a/templates/landing/CHANGELOG.md +++ b/templates/landing/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-landing + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-landing diff --git a/templates/landing/package.json b/templates/landing/package.json index 55818286128..55c35bee75f 100644 --- a/templates/landing/package.json +++ b/templates/landing/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-landing", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/login/CHANGELOG.md b/templates/login/CHANGELOG.md index 574055bf1b5..7c8b99f1ee9 100644 --- a/templates/login/CHANGELOG.md +++ b/templates/login/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-login + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-login diff --git a/templates/login/package.json b/templates/login/package.json index 8795b5634d6..074467cee76 100644 --- a/templates/login/package.json +++ b/templates/login/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-login", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/particles/CHANGELOG.md b/templates/particles/CHANGELOG.md index 601ad685922..dcc33741673 100644 --- a/templates/particles/CHANGELOG.md +++ b/templates/particles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-particles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-particles diff --git a/templates/particles/package.json b/templates/particles/package.json index 0072f3c1c73..66fe4c55276 100644 --- a/templates/particles/package.json +++ b/templates/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-particles", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/portfolio/CHANGELOG.md b/templates/portfolio/CHANGELOG.md index a6554e74395..acc87b96e3d 100644 --- a/templates/portfolio/CHANGELOG.md +++ b/templates/portfolio/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-portfolio + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-portfolio diff --git a/templates/portfolio/package.json b/templates/portfolio/package.json index fe9cebb36be..4be569f09b5 100644 --- a/templates/portfolio/package.json +++ b/templates/portfolio/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-portfolio", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/react-ts/CHANGELOG.md b/templates/react-ts/CHANGELOG.md index f0546b6a21d..21e500a1081 100644 --- a/templates/react-ts/CHANGELOG.md +++ b/templates/react-ts/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package cra-template-particles-typescript + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package cra-template-particles-typescript diff --git a/templates/react-ts/package.json b/templates/react-ts/package.json index 6ca05788b14..358eca6191c 100644 --- a/templates/react-ts/package.json +++ b/templates/react-ts/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-particles-typescript", - "version": "4.3.1", + "version": "4.3.2", "deprecated": "Use @tsparticles/template-scaffold instead. Create React App is deprecated. Run `npm create tsparticles` for Vite-based templates.", "description": "Official TypeScript React tsParticles template", "keywords": [ diff --git a/templates/react-ts/template.json b/templates/react-ts/template.json index f2d1e0f2123..6ebeff03e93 100644 --- a/templates/react-ts/template.json +++ b/templates/react-ts/template.json @@ -9,12 +9,12 @@ "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@types/jest": "^30.0.0", - "@tsparticles/react": "^4.3.1", - "@tsparticles/engine": "^4.3.1", + "@tsparticles/react": "^4.3.2", + "@tsparticles/engine": "^4.3.2", "tslib": "^2.8.1", "typescript": "^6.0.2", "web-vitals": "^5.2.0", - "tsparticles": "^4.3.1" + "tsparticles": "^4.3.2" } } } \ No newline at end of file diff --git a/templates/react/CHANGELOG.md b/templates/react/CHANGELOG.md index 7ae46dcc38f..e291748a0c1 100644 --- a/templates/react/CHANGELOG.md +++ b/templates/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package cra-template-particles + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package cra-template-particles diff --git a/templates/react/package.json b/templates/react/package.json index ac9f892cd07..3eb2231f2ee 100644 --- a/templates/react/package.json +++ b/templates/react/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-particles", - "version": "4.3.1", + "version": "4.3.2", "deprecated": "Use @tsparticles/template-scaffold instead. Create React App is deprecated. Run `npm create tsparticles` for Vite-based templates.", "description": "Official React tsParticles template", "keywords": [ diff --git a/templates/react/template.json b/templates/react/template.json index c841a6b3f7b..65348288120 100644 --- a/templates/react/template.json +++ b/templates/react/template.json @@ -1,9 +1,9 @@ { "package": { "dependencies": { - "@tsparticles/react": "^4.3.1", - "@tsparticles/engine": "^4.3.1", - "tsparticles": "^4.3.1", + "@tsparticles/react": "^4.3.2", + "@tsparticles/engine": "^4.3.2", + "tsparticles": "^4.3.2", "tslib": "^2.8.1" } } diff --git a/templates/ribbons/CHANGELOG.md b/templates/ribbons/CHANGELOG.md index 6e48ee0070c..3a1a62ea39d 100644 --- a/templates/ribbons/CHANGELOG.md +++ b/templates/ribbons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-ribbons + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-ribbons diff --git a/templates/ribbons/package.json b/templates/ribbons/package.json index 9715e32860b..9e83866944f 100644 --- a/templates/ribbons/package.json +++ b/templates/ribbons/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-ribbons", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/scaffold/CHANGELOG.md b/templates/scaffold/CHANGELOG.md index 0ae1b2784d1..52262e72ac5 100644 --- a/templates/scaffold/CHANGELOG.md +++ b/templates/scaffold/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-scaffold + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-scaffold diff --git a/templates/scaffold/package.json b/templates/scaffold/package.json index 1721e0fbfe2..2d89de31c27 100644 --- a/templates/scaffold/package.json +++ b/templates/scaffold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-scaffold", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/templates/tictactoe/CHANGELOG.md b/templates/tictactoe/CHANGELOG.md index 0f372c23b3f..730ad2c597c 100644 --- a/templates/tictactoe/CHANGELOG.md +++ b/templates/tictactoe/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/template-tictactoe + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/template-tictactoe diff --git a/templates/tictactoe/package.json b/templates/tictactoe/package.json index ee96a2a10c5..14e3e70c1be 100644 --- a/templates/tictactoe/package.json +++ b/templates/tictactoe/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/template-tictactoe", - "version": "4.3.1", + "version": "4.3.2", "private": false, "publishConfig": { "access": "public" diff --git a/updaters/destroy/CHANGELOG.md b/updaters/destroy/CHANGELOG.md index dc83fd7ebb5..a2b5fe7b8c9 100644 --- a/updaters/destroy/CHANGELOG.md +++ b/updaters/destroy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-destroy + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-destroy diff --git a/updaters/destroy/package.dist.json b/updaters/destroy/package.dist.json index 9f8598d9186..4ec8af1051a 100644 --- a/updaters/destroy/package.dist.json +++ b/updaters/destroy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles destroy updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/destroy/package.json b/updaters/destroy/package.json index e15580fce6a..8ef6ab4a331 100644 --- a/updaters/destroy/package.json +++ b/updaters/destroy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for animating particle destruction and disintegration when they split, shatter, or are removed", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/gradient/CHANGELOG.md b/updaters/gradient/CHANGELOG.md index 044c0e4210b..1d2a3c70b5f 100644 --- a/updaters/gradient/CHANGELOG.md +++ b/updaters/gradient/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-gradient + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-gradient diff --git a/updaters/gradient/package.dist.json b/updaters/gradient/package.dist.json index 1b635cb59a3..4028f43e36b 100644 --- a/updaters/gradient/package.dist.json +++ b/updaters/gradient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles gradient updater", "homepage": "https://particles.js.org", "repository": { @@ -107,10 +107,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.3.1" + "@tsparticles/animation-utils": "4.3.2" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/gradient/package.json b/updaters/gradient/package.json index 49c74dc6c01..67ceef33dae 100644 --- a/updaters/gradient/package.json +++ b/updaters/gradient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for animating particle color gradients over time with smooth multi-color transitions", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/life/CHANGELOG.md b/updaters/life/CHANGELOG.md index e845a0a92eb..a677fa4249f 100644 --- a/updaters/life/CHANGELOG.md +++ b/updaters/life/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-life + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-life diff --git a/updaters/life/package.dist.json b/updaters/life/package.dist.json index 7bdf33c9117..947998434d8 100644 --- a/updaters/life/package.dist.json +++ b/updaters/life/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles life updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/life/package.json b/updaters/life/package.json index e02fd3a25e4..0c7abd300b1 100644 --- a/updaters/life/package.json +++ b/updaters/life/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for controlling particle lifetime, duration, and count limits with customizable birth/death animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/opacity/CHANGELOG.md b/updaters/opacity/CHANGELOG.md index 5f54cfc5ebe..499d5c2f8eb 100644 --- a/updaters/opacity/CHANGELOG.md +++ b/updaters/opacity/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-opacity + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-opacity diff --git a/updaters/opacity/package.dist.json b/updaters/opacity/package.dist.json index 2f817f111ba..8083fd9c871 100644 --- a/updaters/opacity/package.dist.json +++ b/updaters/opacity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles opacity updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.3.1" + "@tsparticles/animation-utils": "4.3.2" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/opacity/package.json b/updaters/opacity/package.json index 32b49a9d2b0..86e04c09b73 100644 --- a/updaters/opacity/package.json +++ b/updaters/opacity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for animating particle opacity/transparency over time with customizable fade-in, fade-out, and pulsing effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/orbit/CHANGELOG.md b/updaters/orbit/CHANGELOG.md index 5b4f3d68854..a2bdbcbfa4d 100644 --- a/updaters/orbit/CHANGELOG.md +++ b/updaters/orbit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-orbit + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-orbit diff --git a/updaters/orbit/package.dist.json b/updaters/orbit/package.dist.json index 3eae1733ee2..889a08d4064 100644 --- a/updaters/orbit/package.dist.json +++ b/updaters/orbit/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles orbit updater", "homepage": "https://particles.js.org", "repository": { @@ -107,7 +107,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/orbit/package.json b/updaters/orbit/package.json index 8731788e623..e5bb6687465 100644 --- a/updaters/orbit/package.json +++ b/updaters/orbit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for creating orbital and satellite particle animations — particles revolve around a center point", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/outModes/CHANGELOG.md b/updaters/outModes/CHANGELOG.md index 50a6c322f70..d5a32fe18be 100644 --- a/updaters/outModes/CHANGELOG.md +++ b/updaters/outModes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-out-modes + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-out-modes diff --git a/updaters/outModes/package.dist.json b/updaters/outModes/package.dist.json index 5f1ca6ba034..a4d45e9b236 100644 --- a/updaters/outModes/package.dist.json +++ b/updaters/outModes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-out-modes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles out modes updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/outModes/package.json b/updaters/outModes/package.json index ed46a6aa442..c242e71521b 100644 --- a/updaters/outModes/package.json +++ b/updaters/outModes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-out-modes", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for controlling particle behavior when they exit the canvas — bounce, destroy, or loop", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/paint/CHANGELOG.md b/updaters/paint/CHANGELOG.md index 62ad059b9e2..b6589eed71a 100644 --- a/updaters/paint/CHANGELOG.md +++ b/updaters/paint/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-paint + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-paint diff --git a/updaters/paint/package.dist.json b/updaters/paint/package.dist.json index a794346c8c0..266504442e2 100644 --- a/updaters/paint/package.dist.json +++ b/updaters/paint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles paint updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/paint/package.json b/updaters/paint/package.json index 8ef15b62211..a07b8ebc6c6 100644 --- a/updaters/paint/package.json +++ b/updaters/paint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for creating paint-like particle animations where particles leave colored trails on the canvas", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/roll/CHANGELOG.md b/updaters/roll/CHANGELOG.md index 6de7bde0d21..383804c97cf 100644 --- a/updaters/roll/CHANGELOG.md +++ b/updaters/roll/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-roll + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-roll diff --git a/updaters/roll/package.dist.json b/updaters/roll/package.dist.json index 269db6d1d05..5b35b567457 100644 --- a/updaters/roll/package.dist.json +++ b/updaters/roll/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles roll updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/roll/package.json b/updaters/roll/package.json index b339afcc0b5..d23ba47dbb2 100644 --- a/updaters/roll/package.json +++ b/updaters/roll/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for animating particle rolling motion over time, rotating along the direction of travel", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/rotate/CHANGELOG.md b/updaters/rotate/CHANGELOG.md index bd5f005cb35..958f0624876 100644 --- a/updaters/rotate/CHANGELOG.md +++ b/updaters/rotate/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-rotate + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-rotate diff --git a/updaters/rotate/package.dist.json b/updaters/rotate/package.dist.json index c11c9c6b742..b5ba64ff31c 100644 --- a/updaters/rotate/package.dist.json +++ b/updaters/rotate/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles rotate updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.3.1" + "@tsparticles/animation-utils": "4.3.2" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/rotate/package.json b/updaters/rotate/package.json index 5fe1429d21f..9da59e0188b 100644 --- a/updaters/rotate/package.json +++ b/updaters/rotate/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for animating particle rotation over time with configurable speed, direction, and acceleration", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/size/CHANGELOG.md b/updaters/size/CHANGELOG.md index 47ea3a86c15..f50c314fe75 100644 --- a/updaters/size/CHANGELOG.md +++ b/updaters/size/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-size + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-size diff --git a/updaters/size/package.dist.json b/updaters/size/package.dist.json index 1cc6e13b7fb..384caaecb50 100644 --- a/updaters/size/package.dist.json +++ b/updaters/size/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles size updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.3.1" + "@tsparticles/animation-utils": "4.3.2" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/size/package.json b/updaters/size/package.json index a650b9f0cac..2fa14260be8 100644 --- a/updaters/size/package.json +++ b/updaters/size/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for animating particle size over time — grow, shrink, or pulse particle sizes with customizable animation curves", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/tilt/CHANGELOG.md b/updaters/tilt/CHANGELOG.md index 66a43a5c8a8..148792e331f 100644 --- a/updaters/tilt/CHANGELOG.md +++ b/updaters/tilt/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-tilt + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-tilt diff --git a/updaters/tilt/package.dist.json b/updaters/tilt/package.dist.json index b309bac92ed..105e9374349 100644 --- a/updaters/tilt/package.dist.json +++ b/updaters/tilt/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles tilt updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.3.1" + "@tsparticles/animation-utils": "4.3.2" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/tilt/package.json b/updaters/tilt/package.json index a351780265b..d3c4102de6d 100644 --- a/updaters/tilt/package.json +++ b/updaters/tilt/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for animating particle tilt angle over time, enabling 3D-like perspective effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/twinkle/CHANGELOG.md b/updaters/twinkle/CHANGELOG.md index 7eade90a6a2..ad5566d7bcc 100644 --- a/updaters/twinkle/CHANGELOG.md +++ b/updaters/twinkle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-twinkle + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-twinkle diff --git a/updaters/twinkle/package.dist.json b/updaters/twinkle/package.dist.json index 04e75835cff..a47e03edab2 100644 --- a/updaters/twinkle/package.dist.json +++ b/updaters/twinkle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles twinkle updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/twinkle/package.json b/updaters/twinkle/package.json index a1c663176ec..6e9ebbafedf 100644 --- a/updaters/twinkle/package.json +++ b/updaters/twinkle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for creating twinkling, flickering, or blinking particle opacity effects, similar to stars", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/wobble/CHANGELOG.md b/updaters/wobble/CHANGELOG.md index b7346f904d9..04f284a82dc 100644 --- a/updaters/wobble/CHANGELOG.md +++ b/updaters/wobble/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/updater-wobble + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/updater-wobble diff --git a/updaters/wobble/package.dist.json b/updaters/wobble/package.dist.json index a7eac903eb7..8f55f3b160f 100644 --- a/updaters/wobble/package.dist.json +++ b/updaters/wobble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles particles wobble updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/updaters/wobble/package.json b/updaters/wobble/package.json index a53c93400ea..1b74971145a 100644 --- a/updaters/wobble/package.json +++ b/updaters/wobble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles updater for adding wobbly, swaying motion animation to particles with configurable frequency and amplitude", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/animationUtils/CHANGELOG.md b/utils/animationUtils/CHANGELOG.md index e5cd8b39486..557f28d8452 100644 --- a/utils/animationUtils/CHANGELOG.md +++ b/utils/animationUtils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/animation-utils + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/animation-utils diff --git a/utils/animationUtils/package.dist.json b/utils/animationUtils/package.dist.json index 993cf5324c3..a03351e4b63 100644 --- a/utils/animationUtils/package.dist.json +++ b/utils/animationUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/animation-utils", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles animation utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module" } diff --git a/utils/animationUtils/package.json b/utils/animationUtils/package.json index 3b652583fee..9b352932632 100644 --- a/utils/animationUtils/package.json +++ b/utils/animationUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/animation-utils", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles animation utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/canvasUtils/CHANGELOG.md b/utils/canvasUtils/CHANGELOG.md index 5daba07036b..6235e629416 100644 --- a/utils/canvasUtils/CHANGELOG.md +++ b/utils/canvasUtils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/canvas-utils + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/canvas-utils diff --git a/utils/canvasUtils/package.dist.json b/utils/canvasUtils/package.dist.json index 4d183305875..a0f0bc36f89 100644 --- a/utils/canvasUtils/package.dist.json +++ b/utils/canvasUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles canvas utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module" } diff --git a/utils/canvasUtils/package.json b/utils/canvasUtils/package.json index 9c50085d9b7..81a879f76e9 100644 --- a/utils/canvasUtils/package.json +++ b/utils/canvasUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles canvas utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/configs/CHANGELOG.md b/utils/configs/CHANGELOG.md index 06ab16d4bff..3cc679b85fd 100644 --- a/utils/configs/CHANGELOG.md +++ b/utils/configs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/configs + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/configs diff --git a/utils/configs/package.dist.json b/utils/configs/package.dist.json index 6de3e8d809e..a68febb3d30 100644 --- a/utils/configs/package.dist.json +++ b/utils/configs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles demo configurations", "homepage": "https://particles.js.org", "repository": { @@ -105,7 +105,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "publishConfig": { "access": "public" diff --git a/utils/configs/package.json b/utils/configs/package.json index 65aae4f5bcc..f64ff6e7c14 100644 --- a/utils/configs/package.json +++ b/utils/configs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.3.1", + "version": "4.3.2", "homepage": "https://particles.js.org", "scripts": { "build": "tsparticles-build", diff --git a/utils/fractalNoise/CHANGELOG.md b/utils/fractalNoise/CHANGELOG.md index 42ef665ef77..e44a4aea9a7 100644 --- a/utils/fractalNoise/CHANGELOG.md +++ b/utils/fractalNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/fractal-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/fractal-noise diff --git a/utils/fractalNoise/package.dist.json b/utils/fractalNoise/package.dist.json index 6baf63edb71..285404f56f8 100644 --- a/utils/fractalNoise/package.dist.json +++ b/utils/fractalNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fractal noise library", "homepage": "https://particles.js.org", "repository": { @@ -110,6 +110,6 @@ }, "type": "module", "dependencies": { - "@tsparticles/smooth-value-noise": "4.3.1" + "@tsparticles/smooth-value-noise": "4.3.2" } } diff --git a/utils/fractalNoise/package.json b/utils/fractalNoise/package.json index 86eda0e558a..8f22e041c71 100644 --- a/utils/fractalNoise/package.json +++ b/utils/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/noiseField/CHANGELOG.md b/utils/noiseField/CHANGELOG.md index 7deabfc9037..16991d80f4b 100644 --- a/utils/noiseField/CHANGELOG.md +++ b/utils/noiseField/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/noise-field + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/noise-field diff --git a/utils/noiseField/package.dist.json b/utils/noiseField/package.dist.json index 2cdbb7b0365..3afc595e347 100644 --- a/utils/noiseField/package.dist.json +++ b/utils/noiseField/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles noise field library", "homepage": "https://particles.js.org", "repository": { @@ -92,8 +92,8 @@ "module": "esm/index.js", "types": "types/index.d.ts", "peerDependencies": { - "@tsparticles/engine": "4.3.1", - "@tsparticles/plugin-move": "4.3.1" + "@tsparticles/engine": "4.3.2", + "@tsparticles/plugin-move": "4.3.2" }, "exports": { ".": { diff --git a/utils/noiseField/package.json b/utils/noiseField/package.json index fda906920fc..c1c53712bed 100644 --- a/utils/noiseField/package.json +++ b/utils/noiseField/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles noise field library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/pathUtils/CHANGELOG.md b/utils/pathUtils/CHANGELOG.md index eb6897e9247..6f95135947b 100644 --- a/utils/pathUtils/CHANGELOG.md +++ b/utils/pathUtils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/path-utils + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/path-utils diff --git a/utils/pathUtils/package.dist.json b/utils/pathUtils/package.dist.json index 552f5d20c9c..7ea91c39fda 100644 --- a/utils/pathUtils/package.dist.json +++ b/utils/pathUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.3.1" + "@tsparticles/engine": "4.3.2" }, "type": "module" } diff --git a/utils/pathUtils/package.json b/utils/pathUtils/package.json index 28c12a0c1d4..9f28ea7b67b 100644 --- a/utils/pathUtils/package.json +++ b/utils/pathUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles path utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/perlinNoise/CHANGELOG.md b/utils/perlinNoise/CHANGELOG.md index d758f1facbb..f823ae56298 100644 --- a/utils/perlinNoise/CHANGELOG.md +++ b/utils/perlinNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/perlin-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/perlin-noise diff --git a/utils/perlinNoise/package.dist.json b/utils/perlinNoise/package.dist.json index 5c0299eee99..a406d6d69ad 100644 --- a/utils/perlinNoise/package.dist.json +++ b/utils/perlinNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles perlin noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/perlinNoise/package.json b/utils/perlinNoise/package.json index c16e325b8c4..2130b0b1c25 100644 --- a/utils/perlinNoise/package.json +++ b/utils/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/simplexNoise/CHANGELOG.md b/utils/simplexNoise/CHANGELOG.md index 5bcac1f416f..9315a4efb08 100644 --- a/utils/simplexNoise/CHANGELOG.md +++ b/utils/simplexNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/simplex-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/simplex-noise diff --git a/utils/simplexNoise/package.dist.json b/utils/simplexNoise/package.dist.json index 339a3a1747a..19147f7656a 100644 --- a/utils/simplexNoise/package.dist.json +++ b/utils/simplexNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/simplexNoise/package.json b/utils/simplexNoise/package.json index e4eeed58a25..fe7e4e80e79 100644 --- a/utils/simplexNoise/package.json +++ b/utils/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/smoothValueNoise/CHANGELOG.md b/utils/smoothValueNoise/CHANGELOG.md index 969a297bb58..fe9d4553c35 100644 --- a/utils/smoothValueNoise/CHANGELOG.md +++ b/utils/smoothValueNoise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/smooth-value-noise + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/smooth-value-noise diff --git a/utils/smoothValueNoise/package.dist.json b/utils/smoothValueNoise/package.dist.json index f6aa72c13bb..40e048eea7b 100644 --- a/utils/smoothValueNoise/package.dist.json +++ b/utils/smoothValueNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/smooth-value-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles smooth value noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/smoothValueNoise/package.json b/utils/smoothValueNoise/package.json index 1060ff497fa..e9f7709cbdf 100644 --- a/utils/smoothValueNoise/package.json +++ b/utils/smoothValueNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/smooth-value-noise", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles smooth value noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/tests/CHANGELOG.md b/utils/tests/CHANGELOG.md index 96226a02ec4..14ab1f36af2 100644 --- a/utils/tests/CHANGELOG.md +++ b/utils/tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/tests + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/tests diff --git a/utils/tests/package.json b/utils/tests/package.json index e05742c1e67..704e834b881 100644 --- a/utils/tests/package.json +++ b/utils/tests/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/tests", "private": true, - "version": "4.3.1", + "version": "4.3.2", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/websites/confetti/CHANGELOG.md b/websites/confetti/CHANGELOG.md index ef68bdaa03e..46f6497440d 100644 --- a/websites/confetti/CHANGELOG.md +++ b/websites/confetti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/confetti-website + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/confetti-website diff --git a/websites/confetti/package.json b/websites/confetti/package.json index 1996e3768fa..79b90479368 100644 --- a/websites/confetti/package.json +++ b/websites/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti-website", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles confetti webpage", "private": true, "type": "module", diff --git a/websites/ribbons/CHANGELOG.md b/websites/ribbons/CHANGELOG.md index 64203f6d155..91a8e3d6a43 100644 --- a/websites/ribbons/CHANGELOG.md +++ b/websites/ribbons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/ribbons-website + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/ribbons-website diff --git a/websites/ribbons/package.json b/websites/ribbons/package.json index 87525541879..f060427ff47 100644 --- a/websites/ribbons/package.json +++ b/websites/ribbons/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ribbons-website", - "version": "4.3.1", + "version": "4.3.2", "description": "tsParticles ribbons webpage", "private": true, "type": "module", diff --git a/websites/website/CHANGELOG.md b/websites/website/CHANGELOG.md index 66ecf0491d1..815aa6e7d0c 100644 --- a/websites/website/CHANGELOG.md +++ b/websites/website/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/website diff --git a/websites/website/package.json b/websites/website/package.json index 3b54df14687..46de02f778e 100644 --- a/websites/website/package.json +++ b/websites/website/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/website", - "version": "4.3.1", + "version": "4.3.2", "private": true, "description": "tsParticles Website (VitePress)", "main": "docs/index.md", diff --git a/wrappers/angular-confetti/CHANGELOG.md b/wrappers/angular-confetti/CHANGELOG.md index 7775bf6d302..96e69aa17f0 100644 --- a/wrappers/angular-confetti/CHANGELOG.md +++ b/wrappers/angular-confetti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package angular-confetti + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package angular-confetti diff --git a/wrappers/angular-confetti/package.json b/wrappers/angular-confetti/package.json index 807369be1fb..9bb007483c2 100644 --- a/wrappers/angular-confetti/package.json +++ b/wrappers/angular-confetti/package.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular-confetti/projects/ng-confetti/package.dist.json b/wrappers/angular-confetti/projects/ng-confetti/package.dist.json index 406a2e5fdef..f32d4cc4de0 100644 --- a/wrappers/angular-confetti/projects/ng-confetti/package.dist.json +++ b/wrappers/angular-confetti/projects/ng-confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { diff --git a/wrappers/angular-confetti/projects/ng-confetti/package.json b/wrappers/angular-confetti/projects/ng-confetti/package.json index 9a71a6ed1d5..4a58433a116 100644 --- a/wrappers/angular-confetti/projects/ng-confetti/package.json +++ b/wrappers/angular-confetti/projects/ng-confetti/package.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { @@ -85,8 +85,8 @@ "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", "rxjs": ">=7.0.0", - "@tsparticles/confetti": "^4.3.1", - "@tsparticles/engine": "^4.3.1" + "@tsparticles/confetti": "^4.3.2", + "@tsparticles/engine": "^4.3.2" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular-fireworks/CHANGELOG.md b/wrappers/angular-fireworks/CHANGELOG.md index 6b38819c9d1..2b3505077dc 100644 --- a/wrappers/angular-fireworks/CHANGELOG.md +++ b/wrappers/angular-fireworks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package angular-fireworks + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package angular-fireworks diff --git a/wrappers/angular-fireworks/package.json b/wrappers/angular-fireworks/package.json index 666d98e3164..2aac54b085d 100644 --- a/wrappers/angular-fireworks/package.json +++ b/wrappers/angular-fireworks/package.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json b/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json index 5eafcc33f46..68c9c7d9110 100644 --- a/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json +++ b/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { diff --git a/wrappers/angular-fireworks/projects/ng-fireworks/package.json b/wrappers/angular-fireworks/projects/ng-fireworks/package.json index 944b8d37a2d..06994a4a538 100644 --- a/wrappers/angular-fireworks/projects/ng-fireworks/package.json +++ b/wrappers/angular-fireworks/projects/ng-fireworks/package.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { @@ -85,8 +85,8 @@ "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", "rxjs": ">=7.0.0", - "@tsparticles/fireworks": "^4.3.1", - "@tsparticles/engine": "^4.3.1" + "@tsparticles/fireworks": "^4.3.2", + "@tsparticles/engine": "^4.3.2" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular/CHANGELOG.md b/wrappers/angular/CHANGELOG.md index 02ccd64c7b8..e152e1d14e4 100644 --- a/wrappers/angular/CHANGELOG.md +++ b/wrappers/angular/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/angular + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/angular diff --git a/wrappers/angular/package.json b/wrappers/angular/package.json index 848847e8567..8e0e23f3c2f 100644 --- a/wrappers/angular/package.json +++ b/wrappers/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular/projects/ng-particles/package.dist.json b/wrappers/angular/projects/ng-particles/package.dist.json index ff6610a3071..94089b865ee 100644 --- a/wrappers/angular/projects/ng-particles/package.dist.json +++ b/wrappers/angular/projects/ng-particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/angular/projects/ng-particles/package.json b/wrappers/angular/projects/ng-particles/package.json index 7ff6321a325..fff990ca0bf 100644 --- a/wrappers/angular/projects/ng-particles/package.json +++ b/wrappers/angular/projects/ng-particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -88,7 +88,7 @@ "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", "rxjs": ">=7.0.0", - "@tsparticles/engine": "^4.3.1" + "@tsparticles/engine": "^4.3.2" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/astro/CHANGELOG.md b/wrappers/astro/CHANGELOG.md index b6ed0fa9d32..297e3663e40 100644 --- a/wrappers/astro/CHANGELOG.md +++ b/wrappers/astro/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/astro diff --git a/wrappers/astro/package.dist.json b/wrappers/astro/package.dist.json index 91e06ebfee4..d49e6fa1a2e 100644 --- a/wrappers/astro/package.dist.json +++ b/wrappers/astro/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/astro", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Astro Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React.js, Riot.js, Solid.js, Inferno.", "repository": { "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/astro/package.json b/wrappers/astro/package.json index 75cef43a2bf..3805aca1049 100644 --- a/wrappers/astro/package.json +++ b/wrappers/astro/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/astro", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Astro Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React.js, Riot.js, Solid.js, Inferno.", "type": "module", "scripts": { diff --git a/wrappers/ember/CHANGELOG.md b/wrappers/ember/CHANGELOG.md index 15dbbfe41a2..90aa7c03426 100644 --- a/wrappers/ember/CHANGELOG.md +++ b/wrappers/ember/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/ember + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/ember diff --git a/wrappers/ember/package.dist.json b/wrappers/ember/package.dist.json index 127295e6a95..41f36f4058c 100644 --- a/wrappers/ember/package.dist.json +++ b/wrappers/ember/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember", - "version": "4.3.1", + "version": "4.3.2", "description": "Ember.js component for using tsParticles", "repository": { "type": "git", diff --git a/wrappers/ember/package.json b/wrappers/ember/package.json index 2b8a93e1778..7641e054d8f 100644 --- a/wrappers/ember/package.json +++ b/wrappers/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Ember.js Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "ember-addon", diff --git a/wrappers/inferno/CHANGELOG.md b/wrappers/inferno/CHANGELOG.md index d57ae7f1711..2f2c26c4a0d 100644 --- a/wrappers/inferno/CHANGELOG.md +++ b/wrappers/inferno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/inferno + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/inferno diff --git a/wrappers/inferno/package.dist.json b/wrappers/inferno/package.dist.json index 21f4bda6a66..244481f9f8a 100644 --- a/wrappers/inferno/package.dist.json +++ b/wrappers/inferno/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Inferno Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/inferno/package.json b/wrappers/inferno/package.json index 76693893460..19bec109606 100644 --- a/wrappers/inferno/package.json +++ b/wrappers/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Inferno Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js.", "main": "dist/particles.js", "types": "dist/index.d.ts", diff --git a/wrappers/jquery/CHANGELOG.md b/wrappers/jquery/CHANGELOG.md index 5761f2b14d7..3330da2f53b 100644 --- a/wrappers/jquery/CHANGELOG.md +++ b/wrappers/jquery/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/jquery + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/jquery diff --git a/wrappers/jquery/package.dist.json b/wrappers/jquery/package.dist.json index 92a3b7fdd08..d849f54da78 100644 --- a/wrappers/jquery/package.dist.json +++ b/wrappers/jquery/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/jquery", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles jQuery Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/jquery/package.json b/wrappers/jquery/package.json index deab0c417ae..d1d9e52180e 100644 --- a/wrappers/jquery/package.json +++ b/wrappers/jquery/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/jquery", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles jQuery Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, Preact, Riot.js, Solid.js, Inferno.", "main": "dist/jquery.particles.min.js", "scripts": { diff --git a/wrappers/lit/CHANGELOG.md b/wrappers/lit/CHANGELOG.md index 2a633fa1511..75ff050b4f0 100644 --- a/wrappers/lit/CHANGELOG.md +++ b/wrappers/lit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/lit + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/lit diff --git a/wrappers/lit/package.json b/wrappers/lit/package.json index ef60e394be4..8f496ef1464 100644 --- a/wrappers/lit/package.json +++ b/wrappers/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Lit Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Angular, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/nextjs/CHANGELOG.md b/wrappers/nextjs/CHANGELOG.md index 082fbf4dc12..66ef1b53660 100644 --- a/wrappers/nextjs/CHANGELOG.md +++ b/wrappers/nextjs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nextjs + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nextjs diff --git a/wrappers/nextjs/package.dist.json b/wrappers/nextjs/package.dist.json index e76d43f0c04..c55dea91989 100644 --- a/wrappers/nextjs/package.dist.json +++ b/wrappers/nextjs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs", - "version": "4.3.1", + "version": "4.3.2", "type": "module", "repository": { "type": "git", diff --git a/wrappers/nextjs/package.json b/wrappers/nextjs/package.json index 3b45918a949..66f1203949e 100644 --- a/wrappers/nextjs/package.json +++ b/wrappers/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Next.js Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/nuxt2/CHANGELOG.md b/wrappers/nuxt2/CHANGELOG.md index ac723c6e94c..0887520223a 100644 --- a/wrappers/nuxt2/CHANGELOG.md +++ b/wrappers/nuxt2/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nuxt2 + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nuxt2 diff --git a/wrappers/nuxt2/package.dist.json b/wrappers/nuxt2/package.dist.json index c8cc6ca9eb1..1c652d134ab 100644 --- a/wrappers/nuxt2/package.dist.json +++ b/wrappers/nuxt2/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2", - "version": "4.3.1", + "version": "4.3.2", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt2/package.json b/wrappers/nuxt2/package.json index 34d323c5cb1..2ed294bb5b1 100644 --- a/wrappers/nuxt2/package.json +++ b/wrappers/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Nuxt 2 Module - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "tsparticles", diff --git a/wrappers/nuxt3/CHANGELOG.md b/wrappers/nuxt3/CHANGELOG.md index f2432b4b5ae..1637827ced9 100644 --- a/wrappers/nuxt3/CHANGELOG.md +++ b/wrappers/nuxt3/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nuxt3 + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nuxt3 diff --git a/wrappers/nuxt3/package.dist.json b/wrappers/nuxt3/package.dist.json index 27cbe7fbd71..19e8c954370 100644 --- a/wrappers/nuxt3/package.dist.json +++ b/wrappers/nuxt3/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3", - "version": "4.3.1", + "version": "4.3.2", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt3/package.json b/wrappers/nuxt3/package.json index 055dc92c4a7..8fcb6ccf3b0 100644 --- a/wrappers/nuxt3/package.json +++ b/wrappers/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Nuxt 3 Module - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "tsparticles", diff --git a/wrappers/nuxt4/CHANGELOG.md b/wrappers/nuxt4/CHANGELOG.md index 765aa0eab19..9b61f67dde2 100644 --- a/wrappers/nuxt4/CHANGELOG.md +++ b/wrappers/nuxt4/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/nuxt4 + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/nuxt4 diff --git a/wrappers/nuxt4/package.dist.json b/wrappers/nuxt4/package.dist.json index d22594fe29d..43b2f97a485 100644 --- a/wrappers/nuxt4/package.dist.json +++ b/wrappers/nuxt4/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4", - "version": "4.3.1", + "version": "4.3.2", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt4/package.json b/wrappers/nuxt4/package.json index ba1156e1420..1c1a28bb9c7 100644 --- a/wrappers/nuxt4/package.json +++ b/wrappers/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Nuxt 4 Module - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "tsparticles", diff --git a/wrappers/preact/CHANGELOG.md b/wrappers/preact/CHANGELOG.md index f4fd87c1267..dc9f7588d2b 100644 --- a/wrappers/preact/CHANGELOG.md +++ b/wrappers/preact/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/preact + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/preact diff --git a/wrappers/preact/package.json b/wrappers/preact/package.json index 03e02102ff4..593de70c052 100644 --- a/wrappers/preact/package.json +++ b/wrappers/preact/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preact", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Preact Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Riot.js, Solid.js, Inferno.", "main": "index.js", "unpkg": "umd/particles.js", diff --git a/wrappers/qwik/CHANGELOG.md b/wrappers/qwik/CHANGELOG.md index 567c36f0c81..8d00223c2b2 100644 --- a/wrappers/qwik/CHANGELOG.md +++ b/wrappers/qwik/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/qwik + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/qwik diff --git a/wrappers/qwik/package.json b/wrappers/qwik/package.json index 28591971a0b..736324511ea 100644 --- a/wrappers/qwik/package.json +++ b/wrappers/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Qwik Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/react/CHANGELOG.md b/wrappers/react/CHANGELOG.md index e530e490107..95664569e6c 100644 --- a/wrappers/react/CHANGELOG.md +++ b/wrappers/react/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + + +### Bug Fixes + +* fixed some broken pages in websites, closes [#5882](https://github.com/tsparticles/tsparticles/issues/5882) ([061e623](https://github.com/tsparticles/tsparticles/commit/061e6234acf8c2a9de1ff35cfdc07b91bc7c0178)) + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/react diff --git a/wrappers/react/package.dist.json b/wrappers/react/package.dist.json index ebe5435ade3..ccc1309a79b 100644 --- a/wrappers/react/package.dist.json +++ b/wrappers/react/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react", - "version": "4.3.1", + "version": "4.3.2", "type": "module", "repository": { "type": "git", diff --git a/wrappers/react/package.json b/wrappers/react/package.json index 3fe57f965c7..bb4efae2bfe 100644 --- a/wrappers/react/package.json +++ b/wrappers/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles React Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/riot/CHANGELOG.md b/wrappers/riot/CHANGELOG.md index df4f7171d86..feb5d5f807a 100644 --- a/wrappers/riot/CHANGELOG.md +++ b/wrappers/riot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/riot + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/riot diff --git a/wrappers/riot/package.dist.json b/wrappers/riot/package.dist.json index 6b52da49cde..e623057870e 100644 --- a/wrappers/riot/package.dist.json +++ b/wrappers/riot/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/riot", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Riot Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno.", "repository": { "type": "git", diff --git a/wrappers/riot/package.json b/wrappers/riot/package.json index 8e9f48feda0..70e353700e3 100644 --- a/wrappers/riot/package.json +++ b/wrappers/riot/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/riot", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Riot Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno.", "main": "dist/riot-particles.cjs", "module": "dist/riot-particles.esm.js", diff --git a/wrappers/solid/CHANGELOG.md b/wrappers/solid/CHANGELOG.md index acb3f9480c7..560699b4169 100644 --- a/wrappers/solid/CHANGELOG.md +++ b/wrappers/solid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/solid + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/solid diff --git a/wrappers/solid/package.dist.json b/wrappers/solid/package.dist.json index 5c54a4cc595..4ddf7a350a0 100644 --- a/wrappers/solid/package.dist.json +++ b/wrappers/solid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Solid Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno, Riot.js.", "license": "MIT", "author": "Matteo Bruni ", diff --git a/wrappers/solid/package.json b/wrappers/solid/package.json index c91b3dd7ccc..967d367131b 100644 --- a/wrappers/solid/package.json +++ b/wrappers/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Solid Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno, Riot.js.", "license": "MIT", "author": "Matteo Bruni ", diff --git a/wrappers/stencil/CHANGELOG.md b/wrappers/stencil/CHANGELOG.md index e32b62ac70f..b3359f38fe8 100644 --- a/wrappers/stencil/CHANGELOG.md +++ b/wrappers/stencil/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/stencil + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/stencil diff --git a/wrappers/stencil/package.dist.json b/wrappers/stencil/package.dist.json index 422f6332422..45c21c0e356 100644 --- a/wrappers/stencil/package.dist.json +++ b/wrappers/stencil/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/stencil", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Stencil Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/stencil/package.json b/wrappers/stencil/package.json index 279e94925f4..2fd70250329 100644 --- a/wrappers/stencil/package.json +++ b/wrappers/stencil/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/stencil", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Stencil Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "license": "MIT", "author": "Matteo Bruni ", diff --git a/wrappers/svelte/CHANGELOG.md b/wrappers/svelte/CHANGELOG.md index f60c6212253..cb8647c7cb6 100644 --- a/wrappers/svelte/CHANGELOG.md +++ b/wrappers/svelte/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/svelte + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/svelte diff --git a/wrappers/svelte/package.dist.json b/wrappers/svelte/package.dist.json index f85f932a77d..520e46657c5 100644 --- a/wrappers/svelte/package.dist.json +++ b/wrappers/svelte/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Svelte Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/svelte/package.json b/wrappers/svelte/package.json index 4b2c8598898..7ada393e19a 100644 --- a/wrappers/svelte/package.json +++ b/wrappers/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Svelte Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/vue2/CHANGELOG.md b/wrappers/vue2/CHANGELOG.md index 12c83ff635e..4ca3f72eac7 100644 --- a/wrappers/vue2/CHANGELOG.md +++ b/wrappers/vue2/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/vue2 + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/vue2 diff --git a/wrappers/vue2/package.dist.json b/wrappers/vue2/package.dist.json index 15dc8611671..12896ad0094 100644 --- a/wrappers/vue2/package.dist.json +++ b/wrappers/vue2/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue2", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Vue.js 2.x Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js 3.x, Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/vue2/package.json b/wrappers/vue2/package.json index cca7892adce..b09c5a10273 100644 --- a/wrappers/vue2/package.json +++ b/wrappers/vue2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue2", - "version": "4.3.1", + "version": "4.3.2", "main": "dist/vue2-particles.umd.js", "module": "dist/vue2-particles.es.js", "types": "dist/index.d.ts", diff --git a/wrappers/vue3/CHANGELOG.md b/wrappers/vue3/CHANGELOG.md index 881d770a265..1f00a0e972c 100644 --- a/wrappers/vue3/CHANGELOG.md +++ b/wrappers/vue3/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/vue3 + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/vue3 diff --git a/wrappers/vue3/package.dist.json b/wrappers/vue3/package.dist.json index 5b2a25f80bb..be737c028ca 100644 --- a/wrappers/vue3/package.dist.json +++ b/wrappers/vue3/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Vue.js 3.x Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js 2.x, Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/vue3/package.json b/wrappers/vue3/package.json index 45918a42f26..1e1007c19d8 100644 --- a/wrappers/vue3/package.json +++ b/wrappers/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3", - "version": "4.3.1", + "version": "4.3.2", "type": "module", "main": "dist/particles.es.js", "types": "dist/index.d.ts", diff --git a/wrappers/webcomponents/CHANGELOG.md b/wrappers/webcomponents/CHANGELOG.md index 40d3b1767d0..f84c0b0f271 100644 --- a/wrappers/webcomponents/CHANGELOG.md +++ b/wrappers/webcomponents/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/webcomponents + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/webcomponents diff --git a/wrappers/webcomponents/package.dist.json b/wrappers/webcomponents/package.dist.json index 91135c33572..08e94aec548 100644 --- a/wrappers/webcomponents/package.dist.json +++ b/wrappers/webcomponents/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webcomponents", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Web Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/webcomponents/package.json b/wrappers/webcomponents/package.json index 34542d2b7e1..19302df98c2 100644 --- a/wrappers/webcomponents/package.json +++ b/wrappers/webcomponents/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webcomponents", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles Web Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/wordpress/CHANGELOG.md b/wrappers/wordpress/CHANGELOG.md index 27904d81d9f..499054ece12 100644 --- a/wrappers/wordpress/CHANGELOG.md +++ b/wrappers/wordpress/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.2](https://github.com/tsparticles/tsparticles/compare/v4.3.1...v4.3.2) (2026-07-10) + +**Note:** Version bump only for package @tsparticles/wordpress + + + + + ## [4.3.1](https://github.com/tsparticles/tsparticles/compare/v4.3.0...v4.3.1) (2026-07-01) **Note:** Version bump only for package @tsparticles/wordpress diff --git a/wrappers/wordpress/package.json b/wrappers/wordpress/package.json index 46de55d9887..a595f665917 100644 --- a/wrappers/wordpress/package.json +++ b/wrappers/wordpress/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/wordpress", - "version": "4.3.1", + "version": "4.3.2", "description": "Official tsParticles WordPress Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/wordpress/readme.txt b/wrappers/wordpress/readme.txt index 0457a54d9b7..c992079a22d 100644 --- a/wrappers/wordpress/readme.txt +++ b/wrappers/wordpress/readme.txt @@ -4,7 +4,7 @@ Donate link: https://github.com/sponsors/matteobruni Tags: block, particles, confetti, fireworks, animations, javascript, tsparticles, particles js, background, particle background, animated background, particlesjs Requires at least: 5.9 Tested up to: 7.0 -Stable tag: 4.3.1 +Stable tag: 4.3.2 Requires PHP: 7.0 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html diff --git a/wrappers/wordpress/src/block.json b/wrappers/wordpress/src/block.json index d6168c09396..8c0ad3ac898 100644 --- a/wrappers/wordpress/src/block.json +++ b/wrappers/wordpress/src/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 2, "name": "tsparticles/tsparticles-wp-block", - "version": "4.3.1", + "version": "4.3.2", "title": "tsParticles WP Block", "category": "widgets", "icon": "rest-api", diff --git a/wrappers/wordpress/wordpress-particles.php b/wrappers/wordpress/wordpress-particles.php index a0ac0aac78f..e3ef94549f3 100644 --- a/wrappers/wordpress/wordpress-particles.php +++ b/wrappers/wordpress/wordpress-particles.php @@ -5,7 +5,7 @@ * Description: Official tsParticles WordPress Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. * Requires at least: 5.9 * Requires PHP: 7.0 - * Version: 4.3.1 + * Version: 4.3.2 * Author: matteobruni * License: GPL-2.0-or-later * License URI: https://www.gnu.org/licenses/gpl-2.0.html From e19b8122ec31021498ba4c04de66230fa8188684 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Fri, 10 Jul 2026 14:53:24 +0200 Subject: [PATCH 10/10] fix: fixed dockerfile for mcp server --- integrations/mcp-server/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/integrations/mcp-server/Dockerfile b/integrations/mcp-server/Dockerfile index 640008a5a97..868b0a0a319 100644 --- a/integrations/mcp-server/Dockerfile +++ b/integrations/mcp-server/Dockerfile @@ -9,6 +9,7 @@ WORKDIR /app # Workspace root files COPY pnpm-lock.yaml pnpm-workspace.yaml package.json ./ +COPY patches/ ./patches/ # Package files COPY integrations/mcp-server/package.json integrations/mcp-server/tsconfig.json ./integrations/mcp-server/