mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
chore(release): 1.3.0 [skip ci]
# [1.3.0](https://github.com/stirling-image/stirling-image/compare/v1.2.1...v1.3.0) (2026-04-04) ### Bug Fixes * add XHR timeout to prevent UI spinning forever ([dae27f4](https://github.com/stirling-image/stirling-image/commit/dae27f4d559d873af13b683a7b64e273d752e057)) * disable worker pool to prevent Docker processing hang ([5cd2b86](https://github.com/stirling-image/stirling-image/commit/5cd2b864bd878c80990d7ce47050b8e777f333a3)) * log volume permission errors instead of swallowing them ([3642b7d](https://github.com/stirling-image/stirling-image/commit/3642b7d3b23649a2c65e8580cf760714fa725ff3)) * replace crypto.randomUUID with generateId in AI tool settings ([659081c](https://github.com/stirling-image/stirling-image/commit/659081c5686bfdee8f3155714fcdba712ad154ab)) * replace crypto.randomUUID with generateId in pipeline/automation ([b650dcd](https://github.com/stirling-image/stirling-image/commit/b650dcd79128d95e66f2f1f172805e22ffa97f0d)) * replace crypto.randomUUID with generateId in use-tool-processor ([7a5a753](https://github.com/stirling-image/stirling-image/commit/7a5a753a2d4e74a65b4852fdd2d8e96331706559)) * replace navigator.clipboard with copyToClipboard utility ([9f03543](https://github.com/stirling-image/stirling-image/commit/9f0354388f22a57e4562a76b9140d1dd604089f1)) * resolve multiple API and e2e test bugs ([9d62173](https://github.com/stirling-image/stirling-image/commit/9d621734c3a34d846a65210f43a7037c4fa4628a)) * restore navigator.clipboard and execCommand mocks in tests ([6b03a8b](https://github.com/stirling-image/stirling-image/commit/6b03a8b8bde9b36b2de2fe377703e45d40645868)) ### Features * add copyToClipboard() utility with execCommand fallback ([19ce303](https://github.com/stirling-image/stirling-image/commit/19ce303123a917595d670247afcfa0df2b64117a)) * add generateId() utility for non-secure context compatibility ([f61ab9f](https://github.com/stirling-image/stirling-image/commit/f61ab9f85cd5893742fe11cdd749f9c4330b13b3))
This commit is contained in:
@@ -1,3 +1,24 @@
|
||||
# [1.3.0](https://github.com/stirling-image/stirling-image/compare/v1.2.1...v1.3.0) (2026-04-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add XHR timeout to prevent UI spinning forever ([0abacb2](https://github.com/stirling-image/stirling-image/commit/0abacb211cc60f3c1e8dabccc24bc6ca46ce782a))
|
||||
* disable worker pool to prevent Docker processing hang ([e36cd0c](https://github.com/stirling-image/stirling-image/commit/e36cd0c24a34c5f716b5018e57f3d319fe5c5c44))
|
||||
* log volume permission errors instead of swallowing them ([a3e6927](https://github.com/stirling-image/stirling-image/commit/a3e6927df0f4fdd06f6c2aafbf6dbd1c52019cb2))
|
||||
* replace crypto.randomUUID with generateId in AI tool settings ([ed91861](https://github.com/stirling-image/stirling-image/commit/ed918615d2449bdda93d6ea12420454571edbf2d))
|
||||
* replace crypto.randomUUID with generateId in pipeline/automation ([bcbf86c](https://github.com/stirling-image/stirling-image/commit/bcbf86c04b76ecdbc2bfae5a67d5ac929ba2ae8e))
|
||||
* replace crypto.randomUUID with generateId in use-tool-processor ([07cc2d0](https://github.com/stirling-image/stirling-image/commit/07cc2d002e5964a1dee20d05021aa4b479c75f6e))
|
||||
* replace navigator.clipboard with copyToClipboard utility ([1857aeb](https://github.com/stirling-image/stirling-image/commit/1857aeb89407ecb878ae967594e6408150d20d37))
|
||||
* resolve multiple API and e2e test bugs ([00deafb](https://github.com/stirling-image/stirling-image/commit/00deafb2c8ad5cef14eb74207f3b2bd2bc3f13f2))
|
||||
* restore navigator.clipboard and execCommand mocks in tests ([57e71b7](https://github.com/stirling-image/stirling-image/commit/57e71b7c9a2c3d77bf6318df35bed7fe8c1d7e69))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add copyToClipboard() utility with execCommand fallback ([8686131](https://github.com/stirling-image/stirling-image/commit/868613188e010760e33c96df60d03930027535da))
|
||||
* add generateId() utility for non-secure context compatibility ([ee7741b](https://github.com/stirling-image/stirling-image/commit/ee7741b26765e95cf145400f4a39bfa06b9dfe9a))
|
||||
|
||||
## [1.2.1](https://github.com/stirling-image/stirling-image/compare/v1.2.0...v1.2.1) (2026-04-03)
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@stirling-image/api",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@stirling-image/docs",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"docs:dev": "vitepress dev .",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@stirling-image/web",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "stirling-image",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.15.4",
|
||||
"scripts": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@stirling-image/ai",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@stirling-image/image-engine",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@stirling-image/shared",
|
||||
"version": "1.2.1",
|
||||
"version": "1.3.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
|
||||
@@ -354,4 +354,4 @@ export const SOCIAL_MEDIA_PRESETS: SocialMediaPreset[] = [
|
||||
{ platform: "Threads", name: "Post Image", width: 1080, height: 1080 },
|
||||
];
|
||||
|
||||
export const APP_VERSION = "1.2.1";
|
||||
export const APP_VERSION = "1.3.0";
|
||||
|
||||
Reference in New Issue
Block a user