From 0a01ddb430154fa4518985458c15c644855c80ea Mon Sep 17 00:00:00 2001 From: Mo Date: Thu, 24 Nov 2022 05:46:44 -0600 Subject: [PATCH] feat: New 'What's New' section in Preferences (#2049) (skip e2e) --- .github/workflows/desktop.release.reuse.yml | 16 +- .github/workflows/desktop.windows.sign.yml | 2 +- .github/workflows/mobile.release.prod.yml | 4 +- .github/workflows/mobile.release.test.yml | 4 +- package.json | 3 +- packages/desktop/CHANGELOG.md.json | 4489 ++++++++++++++++ packages/desktop/package.json | 1 - packages/desktop/scripts/fixMacZip.js | 2 +- packages/mobile/CHANGELOG.md.json | 4587 +++++++++++++++++ packages/mobile/package.json | 1 - packages/mobile/src/MobileWebAppContainer.tsx | 3 +- packages/releases/src/build-json.mjs | 6 +- .../src/Domain/Storage/StorageKeys.ts | 1 + packages/snjs/lib/Application/Application.ts | 4 + .../ui-services/src/Changelog/Changelog.ts | 13 + .../src/Changelog/ChangelogService.ts | 78 + .../Changelog/ChangelogServiceInterface.ts | 10 + .../src/Changelog/LegacyDesktopMapping.ts | 351 ++ .../src/Changelog/LegacyMobileMapping.ts | 351 ++ .../src/Preferences/PreferenceId.ts | 1 + packages/ui-services/src/index.ts | 3 + .../javascripts/Application/Application.ts | 6 + .../javascripts/Application/WebServices.ts | 9 +- .../Components/Preferences/PaneSelector.tsx | 3 + .../Panes/WhatsNew/IgnoreScopes.tsx | 1 + .../Preferences/Panes/WhatsNew/SectionKey.tsx | 1 + .../Preferences/Panes/WhatsNew/WhatsNew.tsx | 109 + .../Panes/WhatsNew/getSectionItems.tsx | 44 + .../Components/Preferences/PreferencesMenu.ts | 2 + scripts/ChangelogToJson.js | 16 + scripts/changelog-parser.js | 2 +- 31 files changed, 10100 insertions(+), 23 deletions(-) create mode 100644 packages/desktop/CHANGELOG.md.json create mode 100644 packages/mobile/CHANGELOG.md.json create mode 100644 packages/ui-services/src/Changelog/Changelog.ts create mode 100644 packages/ui-services/src/Changelog/ChangelogService.ts create mode 100644 packages/ui-services/src/Changelog/ChangelogServiceInterface.ts create mode 100644 packages/ui-services/src/Changelog/LegacyDesktopMapping.ts create mode 100644 packages/ui-services/src/Changelog/LegacyMobileMapping.ts create mode 100644 packages/web/src/javascripts/Components/Preferences/Panes/WhatsNew/IgnoreScopes.tsx create mode 100644 packages/web/src/javascripts/Components/Preferences/Panes/WhatsNew/SectionKey.tsx create mode 100644 packages/web/src/javascripts/Components/Preferences/Panes/WhatsNew/WhatsNew.tsx create mode 100644 packages/web/src/javascripts/Components/Preferences/Panes/WhatsNew/getSectionItems.tsx create mode 100644 scripts/ChangelogToJson.js diff --git a/.github/workflows/desktop.release.reuse.yml b/.github/workflows/desktop.release.reuse.yml index fda734f91..87fc1af54 100644 --- a/.github/workflows/desktop.release.reuse.yml +++ b/.github/workflows/desktop.release.reuse.yml @@ -27,14 +27,14 @@ jobs: cache: 'yarn' - run: yarn install --immutable - run: yarn build:desktop - - run: echo APP_VERSION=$(node -p "require('./package.json').version") >> $GITHUB_ENV + - run: echo APP_VERSION=$(node -p "require('./../web/package.json').version") >> $GITHUB_ENV - name: Compile Mac run: yarn run webpack --config desktop.webpack.prod.js - name: MacX64 run: | yarn run electron-builder --mac --x64 --publish=never --c.extraMetadata.version=${{ env.APP_VERSION }} - node scripts/fixMacZip.js + node scripts/fixMacZip.js ${{ env.APP_VERSION }} - name: MacArm64 run: yarn run electron-builder --mac --arm64 --publish=never --c.extraMetadata.version=${{ env.APP_VERSION }} @@ -69,7 +69,7 @@ jobs: - run: yarn install --immutable - run: yarn build:desktop - - run: echo APP_VERSION=$(node -p "require('./package.json').version") >> $GITHUB_ENV + - run: echo APP_VERSION=$(node -p "require('./../web/package.json').version") >> $GITHUB_ENV - name: Compile for AppImage run: yarn run webpack --config desktop.webpack.prod.js @@ -139,7 +139,7 @@ jobs: - run: yarn install --immutable - run: yarn build:desktop - run: yarn run webpack --config desktop.webpack.prod.js - - run: echo APP_VERSION=$(node -p "require('./package.json').version") >> $GITHUB_ENV + - run: echo APP_VERSION=$(node -p "require('./../web/package.json').version") >> $GITHUB_ENV - run: yarn run electron-builder --windows --x64 --ia32 --publish=never --c.extraMetadata.version=${{ env.APP_VERSION }} - name: Upload @@ -160,6 +160,8 @@ jobs: run: working-directory: packages/desktop steps: + - run: echo APP_VERSION=$(node -p "require('./../web/package.json').version") >> $GITHUB_ENV + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: @@ -194,8 +196,8 @@ jobs: uses: softprops/action-gh-release@v1 with: token: ${{ secrets.CI_PAT_TOKEN }} - tag_name: "@standardnotes/desktop@${{ steps.package-version.outputs.current-version}}" - name: "Desktop ${{ steps.package-version.outputs.current-version }}" + tag_name: "@standardnotes/desktop@${{ env.APP_VERSION }}" + name: "Desktop ${{ env.APP_VERSION }}" body: ${{ steps.release-notes.outputs.result }} prerelease: true draft: false @@ -214,4 +216,4 @@ jobs: sudo snap install snapcraft --classic echo "${{ secrets.SNAPCRAFT_LOGIN_FILE }}" >> snapauth.txt snapcraft login --with=snapauth.txt - snapcraft upload dist/standard-notes-${{ steps.package-version.outputs.current-version}}-linux-amd64.snap --release stable,candidate,beta,edge + snapcraft upload dist/standard-notes-${{ env.APP_VERSION }}-linux-amd64.snap --release stable,candidate,beta,edge diff --git a/.github/workflows/desktop.windows.sign.yml b/.github/workflows/desktop.windows.sign.yml index c79bfe3dc..40c46c9b5 100644 --- a/.github/workflows/desktop.windows.sign.yml +++ b/.github/workflows/desktop.windows.sign.yml @@ -23,7 +23,7 @@ jobs: - run: yarn install --immutable - run: yarn build:desktop - run: yarn run webpack --config desktop.webpack.prod.js - - run: echo APP_VERSION=$(node -p "require('./package.json').version") >> $GITHUB_ENV + - run: echo APP_VERSION=$(node -p "require('./../web/package.json').version") >> $GITHUB_ENV - run: yarn run electron-builder --windows --x64 --ia32 --publish=never --c.extraMetadata.version=${{ env.APP_VERSION }} - name: Upload diff --git a/.github/workflows/mobile.release.prod.yml b/.github/workflows/mobile.release.prod.yml index 7170b1f59..1ff8751f3 100644 --- a/.github/workflows/mobile.release.prod.yml +++ b/.github/workflows/mobile.release.prod.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v3 - name: Export version from package.json run: - echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV + echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV - name: Setup react-native kernel and increase watchers run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p - name: Decode Production Android keystore @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@v3 - name: Export version from package.json run: - echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV + echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV - name: Install dependencies run: yarn install --immutable && yarn install:pods - run: yarn build:mobile diff --git a/.github/workflows/mobile.release.test.yml b/.github/workflows/mobile.release.test.yml index 7fa64f6d4..d88c6e8bf 100644 --- a/.github/workflows/mobile.release.test.yml +++ b/.github/workflows/mobile.release.test.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v3 - name: Export version from package.json run: | - echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV + echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV - name: Setup react-native kernel and increase watchers run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p - name: Decode Dev Android keystore @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@v3 - name: Export version from package.json run: | - echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV + echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV - name: Ruby Setup for Fastlane uses: ruby/setup-ruby@v1 - name: Install dependencies diff --git a/package.json b/package.json index e20ffb2ff..3093a55cc 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,8 @@ "reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock && yarn install", "release:prod": "lerna version --conventional-commits --yes -m \"chore(release): publish\"", "publish:prod": "lerna publish from-git --yes --no-verify-access --loglevel verbose", - "version": "yarn install --no-immutable && git add yarn.lock", + "version": "yarn install --no-immutable && git add yarn.lock && yarn changelog:json", + "changelog:json": "node scripts/ChangelogToJson.js && git add .", "postversion": "./scripts/push-tags-one-by-one.sh", "workspace:list": " yarn lerna list -all", "upgrade:snjs": "ncu -u '@standardnotes/*' && yarn workspaces foreach --verbose run upgrade:snjs" diff --git a/packages/desktop/CHANGELOG.md.json b/packages/desktop/CHANGELOG.md.json new file mode 100644 index 000000000..c6b49d39e --- /dev/null +++ b/packages/desktop/CHANGELOG.md.json @@ -0,0 +1,4489 @@ +{ + "versions": [ + { + "version": "3.101.2", + "title": "[3.101.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.101.1...@standardnotes/desktop@3.101.2) (2022-11-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.101.1", + "title": "[3.101.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.101.0...@standardnotes/desktop@3.101.1) (2022-11-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.101.0", + "title": "[3.101.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.18...@standardnotes/desktop@3.101.0) (2022-11-23)", + "date": null, + "body": "### Features\n\n* display file backup status in file context menu ([#2044](https://github.com/standardnotes/app/issues/2044)) (skip e2e) ([7c2e832](https://github.com/standardnotes/app/commit/7c2e832065d45676f1b69b7c386e789e2f76775e))", + "parsed": { + "_": [ + "display file backup status in file context menu (#2044) (skip e2e) (7c2e832)" + ], + "Features": [ + "display file backup status in file context menu (#2044) (skip e2e) (7c2e832)" + ] + } + }, + { + "version": "3.100.18", + "title": "[3.100.18](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.17...@standardnotes/desktop@3.100.18) (2022-11-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.17", + "title": "[3.100.17](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.16...@standardnotes/desktop@3.100.17) (2022-11-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.16", + "title": "[3.100.16](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.15...@standardnotes/desktop@3.100.16) (2022-11-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.15", + "title": "[3.100.15](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.14...@standardnotes/desktop@3.100.15) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.14", + "title": "[3.100.14](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.13...@standardnotes/desktop@3.100.14) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.13", + "title": "[3.100.13](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.12...@standardnotes/desktop@3.100.13) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.12", + "title": "[3.100.12](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.11...@standardnotes/desktop@3.100.12) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.11", + "title": "[3.100.11](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.10...@standardnotes/desktop@3.100.11) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.10", + "title": "[3.100.10](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.9...@standardnotes/desktop@3.100.10) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.9", + "title": "[3.100.9](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.8...@standardnotes/desktop@3.100.9) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.8", + "title": "[3.100.8](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.7...@standardnotes/desktop@3.100.8) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.7", + "title": "[3.100.7](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.6...@standardnotes/desktop@3.100.7) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.6", + "title": "[3.100.6](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.5...@standardnotes/desktop@3.100.6) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.5", + "title": "[3.100.5](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.4...@standardnotes/desktop@3.100.5) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.4", + "title": "[3.100.4](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.3...@standardnotes/desktop@3.100.4) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.3", + "title": "[3.100.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.2...@standardnotes/desktop@3.100.3) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.2", + "title": "[3.100.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.1...@standardnotes/desktop@3.100.2) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.1", + "title": "[3.100.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.100.0...@standardnotes/desktop@3.100.1) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.100.0", + "title": "[3.100.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.301...@standardnotes/desktop@3.100.0) (2022-11-16)", + "date": null, + "body": "### Features\n\n* bump desktop version to match web ([e9c6eed](https://github.com/standardnotes/app/commit/e9c6eed235ba59ac9b3bbb102bed78acb2e10177))\n* bump desktop version to match web (skip e2e) ([a73074c](https://github.com/standardnotes/app/commit/a73074ce1c64f4cba04745dd22e5fce775ed434e))", + "parsed": { + "_": [ + "bump desktop version to match web (e9c6eed)", + "bump desktop version to match web (skip e2e) (a73074c)" + ], + "Features": [ + "bump desktop version to match web (e9c6eed)", + "bump desktop version to match web (skip e2e) (a73074c)" + ] + } + }, + { + "version": "3.23.301", + "title": "[3.23.301](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.300...@standardnotes/desktop@3.23.301) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.300", + "title": "[3.23.300](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.299...@standardnotes/desktop@3.23.300) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.299", + "title": "[3.23.299](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.298...@standardnotes/desktop@3.23.299) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.298", + "title": "[3.23.298](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.297...@standardnotes/desktop@3.23.298) (2022-11-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.297", + "title": "[3.23.297](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.296...@standardnotes/desktop@3.23.297) (2022-11-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.296", + "title": "[3.23.296](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.295...@standardnotes/desktop@3.23.296) (2022-11-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.295", + "title": "[3.23.295](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.294...@standardnotes/desktop@3.23.295) (2022-11-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.294", + "title": "[3.23.294](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.293...@standardnotes/desktop@3.23.294) (2022-11-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.293", + "title": "[3.23.293](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.292...@standardnotes/desktop@3.23.293) (2022-11-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.292", + "title": "[3.23.292](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.291...@standardnotes/desktop@3.23.292) (2022-11-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.291", + "title": "[3.23.291](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.290...@standardnotes/desktop@3.23.291) (2022-11-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.290", + "title": "[3.23.290](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.289...@standardnotes/desktop@3.23.290) (2022-11-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.289", + "title": "[3.23.289](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.288...@standardnotes/desktop@3.23.289) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.288", + "title": "[3.23.288](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.287...@standardnotes/desktop@3.23.288) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.287", + "title": "[3.23.287](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.286...@standardnotes/desktop@3.23.287) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.286", + "title": "[3.23.286](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.285...@standardnotes/desktop@3.23.286) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.285", + "title": "[3.23.285](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.284...@standardnotes/desktop@3.23.285) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.284", + "title": "[3.23.284](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.283...@standardnotes/desktop@3.23.284) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.283", + "title": "[3.23.283](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.282...@standardnotes/desktop@3.23.283) (2022-11-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.282", + "title": "[3.23.282](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.281...@standardnotes/desktop@3.23.282) (2022-11-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.281", + "title": "[3.23.281](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.280...@standardnotes/desktop@3.23.281) (2022-11-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.280", + "title": "[3.23.280](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.279...@standardnotes/desktop@3.23.280) (2022-11-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.279", + "title": "[3.23.279](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.278...@standardnotes/desktop@3.23.279) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.278", + "title": "[3.23.278](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.277...@standardnotes/desktop@3.23.278) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.277", + "title": "[3.23.277](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.276...@standardnotes/desktop@3.23.277) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.276", + "title": "[3.23.276](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.275...@standardnotes/desktop@3.23.276) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.275", + "title": "[3.23.275](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.274...@standardnotes/desktop@3.23.275) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.274", + "title": "[3.23.274](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.273...@standardnotes/desktop@3.23.274) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.273", + "title": "[3.23.273](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.272...@standardnotes/desktop@3.23.273) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.272", + "title": "[3.23.272](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.271...@standardnotes/desktop@3.23.272) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.271", + "title": "[3.23.271](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.270...@standardnotes/desktop@3.23.271) (2022-11-03)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** editor column top padding on mac ([9ae0ce0](https://github.com/standardnotes/app/commit/9ae0ce0bfd78bedf3e8318aa56b8542dd81d5870))", + "parsed": { + "_": [ + "desktop: editor column top padding on mac (9ae0ce0)" + ], + "Bug Fixes": [ + "desktop: editor column top padding on mac (9ae0ce0)" + ] + } + }, + { + "version": "3.23.270", + "title": "[3.23.270](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.269...@standardnotes/desktop@3.23.270) (2022-11-03)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** only add extra popover padding for small windows ([ac96e19](https://github.com/standardnotes/app/commit/ac96e197e00a7e7af1b771e46a178b0fa21d0f94))\n* **desktop:** selected column top padding on small windows ([d6cafa1](https://github.com/standardnotes/app/commit/d6cafa1e739dd46e4cf465d8511aad2024ebe294))", + "parsed": { + "_": [ + "desktop: only add extra popover padding for small windows (ac96e19)", + "desktop: selected column top padding on small windows (d6cafa1)" + ], + "Bug Fixes": [ + "desktop: only add extra popover padding for small windows (ac96e19)", + "desktop: selected column top padding on small windows (d6cafa1)" + ] + } + }, + { + "version": "3.23.269", + "title": "[3.23.269](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.268...@standardnotes/desktop@3.23.269) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.268", + "title": "[3.23.268](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.267...@standardnotes/desktop@3.23.268) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.267", + "title": "[3.23.267](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.266...@standardnotes/desktop@3.23.267) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.266", + "title": "[3.23.266](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.265...@standardnotes/desktop@3.23.266) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.265", + "title": "[3.23.265](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.264...@standardnotes/desktop@3.23.265) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.264", + "title": "[3.23.264](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.263...@standardnotes/desktop@3.23.264) (2022-11-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.263", + "title": "[3.23.263](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.262...@standardnotes/desktop@3.23.263) (2022-11-01)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** increase font sizes and other mobile-centric improvements ([#1907](https://github.com/standardnotes/app/issues/1907)) ([994f824](https://github.com/standardnotes/app/commit/994f824757e1143a4547c975b154fd84e3ebeedf))", + "parsed": { + "_": [ + "mobile: increase font sizes and other mobile-centric improvements (#1907) (994f824)" + ], + "Bug Fixes": [ + "mobile: increase font sizes and other mobile-centric improvements (#1907) (994f824)" + ] + } + }, + { + "version": "3.23.262", + "title": "[3.23.262](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.261...@standardnotes/desktop@3.23.262) (2022-10-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.261", + "title": "[3.23.261](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.260...@standardnotes/desktop@3.23.261) (2022-10-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.260", + "title": "[3.23.260](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.259...@standardnotes/desktop@3.23.260) (2022-10-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.259", + "title": "[3.23.259](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.258...@standardnotes/desktop@3.23.259) (2022-10-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.258", + "title": "[3.23.258](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.257...@standardnotes/desktop@3.23.258) (2022-10-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.257", + "title": "[3.23.257](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.256...@standardnotes/desktop@3.23.257) (2022-10-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.256", + "title": "[3.23.256](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.255...@standardnotes/desktop@3.23.256) (2022-10-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.255", + "title": "[3.23.255](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.254...@standardnotes/desktop@3.23.255) (2022-10-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.254", + "title": "[3.23.254](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.253...@standardnotes/desktop@3.23.254) (2022-10-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.253", + "title": "[3.23.253](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.252...@standardnotes/desktop@3.23.253) (2022-10-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.252", + "title": "[3.23.252](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.251...@standardnotes/desktop@3.23.252) (2022-10-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.251", + "title": "[3.23.251](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.250...@standardnotes/desktop@3.23.251) (2022-10-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.250", + "title": "[3.23.250](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.249...@standardnotes/desktop@3.23.250) (2022-10-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.249", + "title": "[3.23.249](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.248...@standardnotes/desktop@3.23.249) (2022-10-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.248", + "title": "[3.23.248](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.247...@standardnotes/desktop@3.23.248) (2022-10-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.247", + "title": "[3.23.247](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.246...@standardnotes/desktop@3.23.247) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.246", + "title": "[3.23.246](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.245...@standardnotes/desktop@3.23.246) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.245", + "title": "[3.23.245](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.244...@standardnotes/desktop@3.23.245) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.244", + "title": "[3.23.244](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.243...@standardnotes/desktop@3.23.244) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.243", + "title": "[3.23.243](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.242...@standardnotes/desktop@3.23.243) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.242", + "title": "[3.23.242](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.241...@standardnotes/desktop@3.23.242) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.241", + "title": "[3.23.241](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.240...@standardnotes/desktop@3.23.241) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.240", + "title": "[3.23.240](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.239...@standardnotes/desktop@3.23.240) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.239", + "title": "[3.23.239](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.238...@standardnotes/desktop@3.23.239) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.238", + "title": "[3.23.238](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.237...@standardnotes/desktop@3.23.238) (2022-10-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.237", + "title": "[3.23.237](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.236...@standardnotes/desktop@3.23.237) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.236", + "title": "[3.23.236](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.235...@standardnotes/desktop@3.23.236) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.235", + "title": "[3.23.235](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.234...@standardnotes/desktop@3.23.235) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.234", + "title": "[3.23.234](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.233...@standardnotes/desktop@3.23.234) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.233", + "title": "[3.23.233](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.232...@standardnotes/desktop@3.23.233) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.232", + "title": "[3.23.232](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.231...@standardnotes/desktop@3.23.232) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.231", + "title": "[3.23.231](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.230...@standardnotes/desktop@3.23.231) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.230", + "title": "[3.23.230](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.229...@standardnotes/desktop@3.23.230) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.229", + "title": "[3.23.229](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.228...@standardnotes/desktop@3.23.229) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.228", + "title": "[3.23.228](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.227...@standardnotes/desktop@3.23.228) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.227", + "title": "[3.23.227](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.226...@standardnotes/desktop@3.23.227) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.226", + "title": "[3.23.226](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.225...@standardnotes/desktop@3.23.226) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.225", + "title": "[3.23.225](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.224...@standardnotes/desktop@3.23.225) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.224", + "title": "[3.23.224](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.223...@standardnotes/desktop@3.23.224) (2022-10-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.223", + "title": "[3.23.223](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.222...@standardnotes/desktop@3.23.223) (2022-10-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.222", + "title": "[3.23.222](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.221...@standardnotes/desktop@3.23.222) (2022-10-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.221", + "title": "[3.23.221](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.220...@standardnotes/desktop@3.23.221) (2022-10-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.220", + "title": "[3.23.220](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.219...@standardnotes/desktop@3.23.220) (2022-10-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.219", + "title": "[3.23.219](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.218...@standardnotes/desktop@3.23.219) (2022-10-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.218", + "title": "[3.23.218](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.217...@standardnotes/desktop@3.23.218) (2022-10-14)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** plugin installation ([dd55c63](https://github.com/standardnotes/app/commit/dd55c63955fd71a4d4ea0c83144873a53412c341))", + "parsed": { + "_": [ + "desktop: plugin installation (dd55c63)" + ], + "Bug Fixes": [ + "desktop: plugin installation (dd55c63)" + ] + } + }, + { + "version": "3.23.217", + "title": "[3.23.217](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.216...@standardnotes/desktop@3.23.217) (2022-10-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.216", + "title": "[3.23.216](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.215...@standardnotes/desktop@3.23.216) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.215", + "title": "[3.23.215](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.214...@standardnotes/desktop@3.23.215) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.214", + "title": "[3.23.214](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.213...@standardnotes/desktop@3.23.214) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.213", + "title": "[3.23.213](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.212...@standardnotes/desktop@3.23.213) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.212", + "title": "[3.23.212](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.211...@standardnotes/desktop@3.23.212) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.211", + "title": "[3.23.211](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.210...@standardnotes/desktop@3.23.211) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.210", + "title": "[3.23.210](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.209...@standardnotes/desktop@3.23.210) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.209", + "title": "[3.23.209](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.208...@standardnotes/desktop@3.23.209) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.208", + "title": "[3.23.208](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.207...@standardnotes/desktop@3.23.208) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.207", + "title": "[3.23.207](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.206...@standardnotes/desktop@3.23.207) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.206", + "title": "[3.23.206](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.205...@standardnotes/desktop@3.23.206) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.205", + "title": "[3.23.205](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.204...@standardnotes/desktop@3.23.205) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.204", + "title": "[3.23.204](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.203...@standardnotes/desktop@3.23.204) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.203", + "title": "[3.23.203](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.202...@standardnotes/desktop@3.23.203) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.202", + "title": "[3.23.202](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.201...@standardnotes/desktop@3.23.202) (2022-10-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.201", + "title": "[3.23.201](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.200...@standardnotes/desktop@3.23.201) (2022-10-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.200", + "title": "[3.23.200](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.199...@standardnotes/desktop@3.23.200) (2022-10-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.199", + "title": "[3.23.199](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.198...@standardnotes/desktop@3.23.199) (2022-10-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.198", + "title": "[3.23.198](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.197...@standardnotes/desktop@3.23.198) (2022-10-07)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** use different method to send messages across main and render without node integration in preload ([#1769](https://github.com/standardnotes/app/issues/1769)) ([20226c3](https://github.com/standardnotes/app/commit/20226c326945ad9dc524f6dcbfc1c1274befb652))", + "parsed": { + "_": [ + "desktop: use different method to send messages across main and render without node integration in preload (#1769) (20226c3)" + ], + "Bug Fixes": [ + "desktop: use different method to send messages across main and render without node integration in preload (#1769) (20226c3)" + ] + } + }, + { + "version": "3.23.197", + "title": "[3.23.197](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.196...@standardnotes/desktop@3.23.197) (2022-10-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.196", + "title": "[3.23.196](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.195...@standardnotes/desktop@3.23.196) (2022-10-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.195", + "title": "[3.23.195](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.194...@standardnotes/desktop@3.23.195) (2022-10-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.194", + "title": "[3.23.194](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.193...@standardnotes/desktop@3.23.194) (2022-10-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.193", + "title": "[3.23.193](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.192...@standardnotes/desktop@3.23.193) (2022-10-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.192", + "title": "[3.23.192](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.191...@standardnotes/desktop@3.23.192) (2022-10-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.191", + "title": "[3.23.191](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.190...@standardnotes/desktop@3.23.191) (2022-10-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.190", + "title": "[3.23.190](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.189...@standardnotes/desktop@3.23.190) (2022-10-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.189", + "title": "[3.23.189](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.188...@standardnotes/desktop@3.23.189) (2022-10-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.188", + "title": "[3.23.188](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.187...@standardnotes/desktop@3.23.188) (2022-10-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.187", + "title": "[3.23.187](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.186...@standardnotes/desktop@3.23.187) (2022-10-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.186", + "title": "[3.23.186](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.185...@standardnotes/desktop@3.23.186) (2022-10-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.185", + "title": "[3.23.185](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.184...@standardnotes/desktop@3.23.185) (2022-10-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.184", + "title": "[3.23.184](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.183...@standardnotes/desktop@3.23.184) (2022-10-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.183", + "title": "[3.23.183](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.182...@standardnotes/desktop@3.23.183) (2022-10-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.182", + "title": "[3.23.182](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.181...@standardnotes/desktop@3.23.182) (2022-10-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.181", + "title": "[3.23.181](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.180...@standardnotes/desktop@3.23.181) (2022-09-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.180", + "title": "[3.23.180](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.179...@standardnotes/desktop@3.23.180) (2022-09-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.179", + "title": "[3.23.179](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.178...@standardnotes/desktop@3.23.179) (2022-09-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.178", + "title": "[3.23.178](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.177...@standardnotes/desktop@3.23.178) (2022-09-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.177", + "title": "[3.23.177](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.176...@standardnotes/desktop@3.23.177) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.176", + "title": "[3.23.176](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.175...@standardnotes/desktop@3.23.176) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.175", + "title": "[3.23.175](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.174...@standardnotes/desktop@3.23.175) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.174", + "title": "[3.23.174](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.173...@standardnotes/desktop@3.23.174) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.173", + "title": "[3.23.173](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.172...@standardnotes/desktop@3.23.173) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.172", + "title": "[3.23.172](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.171...@standardnotes/desktop@3.23.172) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.171", + "title": "[3.23.171](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.170...@standardnotes/desktop@3.23.171) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.170", + "title": "[3.23.170](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.169...@standardnotes/desktop@3.23.170) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.169", + "title": "[3.23.169](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.168...@standardnotes/desktop@3.23.169) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.168", + "title": "[3.23.168](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.167...@standardnotes/desktop@3.23.168) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.167", + "title": "[3.23.167](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.166...@standardnotes/desktop@3.23.167) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.166", + "title": "[3.23.166](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.165...@standardnotes/desktop@3.23.166) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.165", + "title": "[3.23.165](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.164...@standardnotes/desktop@3.23.165) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.164", + "title": "[3.23.164](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.163...@standardnotes/desktop@3.23.164) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.163", + "title": "[3.23.163](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.162...@standardnotes/desktop@3.23.163) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.162", + "title": "[3.23.162](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.161...@standardnotes/desktop@3.23.162) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.161", + "title": "[3.23.161](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.160...@standardnotes/desktop@3.23.161) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.160", + "title": "[3.23.160](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.159...@standardnotes/desktop@3.23.160) (2022-09-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.159", + "title": "[3.23.159](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.158...@standardnotes/desktop@3.23.159) (2022-09-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.158", + "title": "[3.23.158](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.157...@standardnotes/desktop@3.23.158) (2022-09-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.157", + "title": "[3.23.157](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.156...@standardnotes/desktop@3.23.157) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.156", + "title": "[3.23.156](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.155...@standardnotes/desktop@3.23.156) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.155", + "title": "[3.23.155](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.154...@standardnotes/desktop@3.23.155) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.154", + "title": "[3.23.154](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.153...@standardnotes/desktop@3.23.154) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.153", + "title": "[3.23.153](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.152...@standardnotes/desktop@3.23.153) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.152", + "title": "[3.23.152](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.151...@standardnotes/desktop@3.23.152) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.151", + "title": "[3.23.151](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.150...@standardnotes/desktop@3.23.151) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.150", + "title": "[3.23.150](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.149...@standardnotes/desktop@3.23.150) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.149", + "title": "[3.23.149](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.148...@standardnotes/desktop@3.23.149) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.148", + "title": "[3.23.148](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.147...@standardnotes/desktop@3.23.148) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.147", + "title": "[3.23.147](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.146...@standardnotes/desktop@3.23.147) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.146", + "title": "[3.23.146](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.145...@standardnotes/desktop@3.23.146) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.145", + "title": "[3.23.145](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.144...@standardnotes/desktop@3.23.145) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.144", + "title": "[3.23.144](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.143...@standardnotes/desktop@3.23.144) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.143", + "title": "[3.23.143](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.142...@standardnotes/desktop@3.23.143) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.142", + "title": "[3.23.142](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.141...@standardnotes/desktop@3.23.142) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.141", + "title": "[3.23.141](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.140...@standardnotes/desktop@3.23.141) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.140", + "title": "[3.23.140](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.139...@standardnotes/desktop@3.23.140) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.139", + "title": "[3.23.139](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.138...@standardnotes/desktop@3.23.139) (2022-09-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.138", + "title": "[3.23.138](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.137...@standardnotes/desktop@3.23.138) (2022-09-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.137", + "title": "[3.23.137](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.136...@standardnotes/desktop@3.23.137) (2022-09-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.136", + "title": "[3.23.136](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.135...@standardnotes/desktop@3.23.136) (2022-09-20)", + "date": null, + "body": "### Bug Fixes\n\n* move wrapped storage to unwrapped if not encrypted ([#1603](https://github.com/standardnotes/app/issues/1603)) ([c5e225d](https://github.com/standardnotes/app/commit/c5e225d335537257f44168b8ad05222afccb508a))", + "parsed": { + "_": [ + "move wrapped storage to unwrapped if not encrypted (#1603) (c5e225d)" + ], + "Bug Fixes": [ + "move wrapped storage to unwrapped if not encrypted (#1603) (c5e225d)" + ] + } + }, + { + "version": "3.23.135", + "title": "[3.23.135](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.134...@standardnotes/desktop@3.23.135) (2022-09-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.134", + "title": "[3.23.134](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.133...@standardnotes/desktop@3.23.134) (2022-09-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.133", + "title": "[3.23.133](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.132...@standardnotes/desktop@3.23.133) (2022-09-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.132", + "title": "[3.23.132](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.131...@standardnotes/desktop@3.23.132) (2022-09-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.131", + "title": "[3.23.131](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.130...@standardnotes/desktop@3.23.131) (2022-09-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.130", + "title": "[3.23.130](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.129...@standardnotes/desktop@3.23.130) (2022-09-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.129", + "title": "[3.23.129](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.128...@standardnotes/desktop@3.23.129) (2022-09-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.128", + "title": "[3.23.128](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.127...@standardnotes/desktop@3.23.128) (2022-09-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.127", + "title": "[3.23.127](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.126...@standardnotes/desktop@3.23.127) (2022-09-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.126", + "title": "[3.23.126](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.125...@standardnotes/desktop@3.23.126) (2022-09-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.125", + "title": "[3.23.125](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.124...@standardnotes/desktop@3.23.125) (2022-09-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.124", + "title": "[3.23.124](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.123...@standardnotes/desktop@3.23.124) (2022-09-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.123", + "title": "[3.23.123](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.122...@standardnotes/desktop@3.23.123) (2022-09-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.122", + "title": "[3.23.122](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.121...@standardnotes/desktop@3.23.122) (2022-09-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.121", + "title": "[3.23.121](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.120...@standardnotes/desktop@3.23.121) (2022-09-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.120", + "title": "[3.23.120](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.119...@standardnotes/desktop@3.23.120) (2022-09-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.119", + "title": "[3.23.119](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.118...@standardnotes/desktop@3.23.119) (2022-09-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.118", + "title": "[3.23.118](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.117...@standardnotes/desktop@3.23.118) (2022-09-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.117", + "title": "[3.23.117](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.116...@standardnotes/desktop@3.23.117) (2022-09-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.116", + "title": "[3.23.116](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.115...@standardnotes/desktop@3.23.116) (2022-09-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.115", + "title": "[3.23.115](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.114...@standardnotes/desktop@3.23.115) (2022-09-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.114", + "title": "[3.23.114](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.113...@standardnotes/desktop@3.23.114) (2022-09-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.113", + "title": "[3.23.113](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.112...@standardnotes/desktop@3.23.113) (2022-09-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.112", + "title": "[3.23.112](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.111...@standardnotes/desktop@3.23.112) (2022-09-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.111", + "title": "[3.23.111](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.110...@standardnotes/desktop@3.23.111) (2022-09-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.110", + "title": "[3.23.110](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.109...@standardnotes/desktop@3.23.110) (2022-09-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.109", + "title": "[3.23.109](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.108...@standardnotes/desktop@3.23.109) (2022-09-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.108", + "title": "[3.23.108](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.107...@standardnotes/desktop@3.23.108) (2022-09-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.107", + "title": "[3.23.107](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.106...@standardnotes/desktop@3.23.107) (2022-09-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.106", + "title": "[3.23.106](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.105...@standardnotes/desktop@3.23.106) (2022-08-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.105", + "title": "[3.23.105](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.104...@standardnotes/desktop@3.23.105) (2022-08-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.104", + "title": "[3.23.104](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.103...@standardnotes/desktop@3.23.104) (2022-08-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.103", + "title": "[3.23.103](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.102...@standardnotes/desktop@3.23.103) (2022-08-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.102", + "title": "[3.23.102](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.101...@standardnotes/desktop@3.23.102) (2022-08-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.101", + "title": "[3.23.101](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.100...@standardnotes/desktop@3.23.101) (2022-08-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.100", + "title": "[3.23.100](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.99...@standardnotes/desktop@3.23.100) (2022-08-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.99", + "title": "[3.23.99](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.98...@standardnotes/desktop@3.23.99) (2022-08-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.98", + "title": "[3.23.98](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.97...@standardnotes/desktop@3.23.98) (2022-08-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.97", + "title": "[3.23.97](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.96...@standardnotes/desktop@3.23.97) (2022-08-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.96", + "title": "[3.23.96](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.95...@standardnotes/desktop@3.23.96) (2022-08-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.95", + "title": "[3.23.95](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.94...@standardnotes/desktop@3.23.95) (2022-08-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.94", + "title": "[3.23.94](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.93...@standardnotes/desktop@3.23.94) (2022-08-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.93", + "title": "[3.23.93](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.92...@standardnotes/desktop@3.23.93) (2022-08-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.92", + "title": "[3.23.92](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.91...@standardnotes/desktop@3.23.92) (2022-08-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.91", + "title": "[3.23.91](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.90...@standardnotes/desktop@3.23.91) (2022-08-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.90", + "title": "[3.23.90](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.89...@standardnotes/desktop@3.23.90) (2022-08-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.89", + "title": "[3.23.89](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.88...@standardnotes/desktop@3.23.89) (2022-08-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.88", + "title": "[3.23.88](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.87...@standardnotes/desktop@3.23.88) (2022-08-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.87", + "title": "[3.23.87](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.86...@standardnotes/desktop@3.23.87) (2022-08-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.86", + "title": "[3.23.86](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.85...@standardnotes/desktop@3.23.86) (2022-08-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.85", + "title": "[3.23.85](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.84...@standardnotes/desktop@3.23.85) (2022-08-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.84", + "title": "[3.23.84](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.83...@standardnotes/desktop@3.23.84) (2022-08-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.83", + "title": "[3.23.83](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.82...@standardnotes/desktop@3.23.83) (2022-08-01)", + "date": null, + "body": "### Bug Fixes\n\n* popover header getting hidden on desktop by titlebar ([#1359](https://github.com/standardnotes/app/issues/1359)) ([5b3cfdd](https://github.com/standardnotes/app/commit/5b3cfddc50aabb4d03761e7e46c3ab1d1bb2c952))", + "parsed": { + "_": [ + "popover header getting hidden on desktop by titlebar (#1359) (5b3cfdd)" + ], + "Bug Fixes": [ + "popover header getting hidden on desktop by titlebar (#1359) (5b3cfdd)" + ] + } + }, + { + "version": "3.23.82", + "title": "[3.23.82](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.81...@standardnotes/desktop@3.23.82) (2022-07-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.81", + "title": "[3.23.81](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.80...@standardnotes/desktop@3.23.81) (2022-07-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.80", + "title": "[3.23.80](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.79...@standardnotes/desktop@3.23.80) (2022-07-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.79", + "title": "[3.23.79](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.78...@standardnotes/desktop@3.23.79) (2022-07-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.78", + "title": "[3.23.78](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.77...@standardnotes/desktop@3.23.78) (2022-07-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.77", + "title": "[3.23.77](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.76...@standardnotes/desktop@3.23.77) (2022-07-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.76", + "title": "[3.23.76](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.75...@standardnotes/desktop@3.23.76) (2022-07-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.75", + "title": "[3.23.75](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.74...@standardnotes/desktop@3.23.75) (2022-07-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.74", + "title": "[3.23.74](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.73...@standardnotes/desktop@3.23.74) (2022-07-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.73", + "title": "[3.23.73](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.72...@standardnotes/desktop@3.23.73) (2022-07-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.72", + "title": "[3.23.72](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.71...@standardnotes/desktop@3.23.72) (2022-07-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.71", + "title": "[3.23.71](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.70...@standardnotes/desktop@3.23.71) (2022-07-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.70", + "title": "[3.23.70](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.69...@standardnotes/desktop@3.23.70) (2022-07-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.69", + "title": "[3.23.69](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.68...@standardnotes/desktop@3.23.69) (2022-07-08)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** don't shift sections on macOS if window is small ([#1235](https://github.com/standardnotes/app/issues/1235)) ([c6932ba](https://github.com/standardnotes/app/commit/c6932ba733e0a67220ce56bec72431240518f7d8))", + "parsed": { + "_": [ + "desktop: don't shift sections on macOS if window is small (#1235) (c6932ba)" + ], + "Bug Fixes": [ + "desktop: don't shift sections on macOS if window is small (#1235) (c6932ba)" + ] + } + }, + { + "version": "3.23.68", + "title": "[3.23.68](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.67...@standardnotes/desktop@3.23.68) (2022-07-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.67", + "title": "[3.23.67](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.66...@standardnotes/desktop@3.23.67) (2022-07-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.66", + "title": "[3.23.66](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.65...@standardnotes/desktop@3.23.66) (2022-07-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.65", + "title": "[3.23.65](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.64...@standardnotes/desktop@3.23.65) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.64", + "title": "[3.23.64](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.63...@standardnotes/desktop@3.23.64) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.63", + "title": "[3.23.63](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.62...@standardnotes/desktop@3.23.63) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.62", + "title": "[3.23.62](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.61...@standardnotes/desktop@3.23.62) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.61", + "title": "[3.23.61](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.60...@standardnotes/desktop@3.23.61) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.60", + "title": "[3.23.60](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.59...@standardnotes/desktop@3.23.60) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.59", + "title": "[3.23.59](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.58...@standardnotes/desktop@3.23.59) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.58", + "title": "[3.23.58](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.57...@standardnotes/desktop@3.23.58) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.57", + "title": "[3.23.57](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.56...@standardnotes/desktop@3.23.57) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.56", + "title": "[3.23.56](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.55...@standardnotes/desktop@3.23.56) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.55", + "title": "[3.23.55](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.54...@standardnotes/desktop@3.23.55) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.54", + "title": "[3.23.54](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.53...@standardnotes/desktop@3.23.54) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.53", + "title": "[3.23.53](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.52...@standardnotes/desktop@3.23.53) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.52", + "title": "[3.23.52](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.51...@standardnotes/desktop@3.23.52) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.51", + "title": "[3.23.51](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.50...@standardnotes/desktop@3.23.51) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.50", + "title": "[3.23.50](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.49...@standardnotes/desktop@3.23.50) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.49", + "title": "[3.23.49](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.48...@standardnotes/desktop@3.23.49) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.48", + "title": "[3.23.48](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.47...@standardnotes/desktop@3.23.48) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.47", + "title": "[3.23.47](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.46...@standardnotes/desktop@3.23.47) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.46", + "title": "[3.23.46](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.45...@standardnotes/desktop@3.23.46) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.45", + "title": "[3.23.45](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.44...@standardnotes/desktop@3.23.45) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.44", + "title": "[3.23.44](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.43...@standardnotes/desktop@3.23.44) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.43", + "title": "[3.23.43](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.42...@standardnotes/desktop@3.23.43) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.42", + "title": "[3.23.42](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.41...@standardnotes/desktop@3.23.42) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.41", + "title": "[3.23.41](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.40...@standardnotes/desktop@3.23.41) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.40", + "title": "[3.23.40](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.39...@standardnotes/desktop@3.23.40) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.39", + "title": "[3.23.39](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.38...@standardnotes/desktop@3.23.39) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.38", + "title": "[3.23.38](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.37...@standardnotes/desktop@3.23.38) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.37", + "title": "[3.23.37](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.36...@standardnotes/desktop@3.23.37) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.36", + "title": "[3.23.36](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.35...@standardnotes/desktop@3.23.36) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.35", + "title": "[3.23.35](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.34...@standardnotes/desktop@3.23.35) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.34", + "title": "[3.23.34](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.33...@standardnotes/desktop@3.23.34) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.33", + "title": "[3.23.33](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.32...@standardnotes/desktop@3.23.33) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.32", + "title": "[3.23.32](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.31...@standardnotes/desktop@3.23.32) (2022-07-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.31", + "title": "[3.23.31](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.30...@standardnotes/desktop@3.23.31) (2022-07-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.30", + "title": "[3.23.30](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.29...@standardnotes/desktop@3.23.30) (2022-07-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.29", + "title": "[3.23.29](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.28...@standardnotes/desktop@3.23.29) (2022-07-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.28", + "title": "[3.23.28](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.27...@standardnotes/desktop@3.23.28) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.27", + "title": "[3.23.27](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.26...@standardnotes/desktop@3.23.27) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.26", + "title": "[3.23.26](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.25...@standardnotes/desktop@3.23.26) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.25", + "title": "[3.23.25](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.24...@standardnotes/desktop@3.23.25) (2022-07-01)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** release notes ([44d6bdf](https://github.com/standardnotes/app/commit/44d6bdf147d26701683cc9f0819a1f68faed7a17))", + "parsed": { + "_": [ + "desktop: release notes (44d6bdf)" + ], + "Bug Fixes": [ + "desktop: release notes (44d6bdf)" + ] + } + }, + { + "version": "3.23.24", + "title": "[3.23.24](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.23...@standardnotes/desktop@3.23.24) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.23", + "title": "[3.23.23](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.22...@standardnotes/desktop@3.23.23) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.22", + "title": "[3.23.22](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.21...@standardnotes/desktop@3.23.22) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.21", + "title": "[3.23.21](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.20...@standardnotes/desktop@3.23.21) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.20", + "title": "[3.23.20](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.19...@standardnotes/desktop@3.23.20) (2022-06-30)", + "date": null, + "body": "### Bug Fixes\n\n* clear desktop web cache on first version launch ([#1184](https://github.com/standardnotes/app/issues/1184)) ([7851e12](https://github.com/standardnotes/app/commit/7851e12e9e9c52dba36ad2c2f3c362a07b95288b))", + "parsed": { + "_": [ + "clear desktop web cache on first version launch (#1184) (7851e12)" + ], + "Bug Fixes": [ + "clear desktop web cache on first version launch (#1184) (7851e12)" + ] + } + }, + { + "version": "3.23.19", + "title": "[3.23.19](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.18...@standardnotes/desktop@3.23.19) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.18", + "title": "[3.23.18](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.17...@standardnotes/desktop@3.23.18) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.17", + "title": "[3.23.17](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.16...@standardnotes/desktop@3.23.17) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.16", + "title": "[3.23.16](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.15...@standardnotes/desktop@3.23.16) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.15", + "title": "[3.23.15](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.14...@standardnotes/desktop@3.23.15) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.14", + "title": "[3.23.14](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.13...@standardnotes/desktop@3.23.14) (2022-06-29)", + "date": null, + "body": "### Bug Fixes\n\n* desktop backups directory change ([#1178](https://github.com/standardnotes/app/issues/1178)) ([b8efd82](https://github.com/standardnotes/app/commit/b8efd823ac7ab5997b92e74d7c99e8487b69c326))", + "parsed": { + "_": [ + "desktop backups directory change (#1178) (b8efd82)" + ], + "Bug Fixes": [ + "desktop backups directory change (#1178) (b8efd82)" + ] + } + }, + { + "version": "3.23.13", + "title": "[3.23.13](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.12...@standardnotes/desktop@3.23.13) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.12", + "title": "[3.23.12](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.11...@standardnotes/desktop@3.23.12) (2022-06-28)", + "date": null, + "body": "### Bug Fixes\n\n* search bar ([#1175](https://github.com/standardnotes/app/issues/1175)) ([5e5cf61](https://github.com/standardnotes/app/commit/5e5cf618c5d11fb40f3dc280f7dda50e6eab7a72))", + "parsed": { + "_": [ + "search bar (#1175) (5e5cf61)" + ], + "Bug Fixes": [ + "search bar (#1175) (5e5cf61)" + ] + } + }, + { + "version": "3.23.11", + "title": "[3.23.11](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.10...@standardnotes/desktop@3.23.11) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.10", + "title": "[3.23.10](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.9...@standardnotes/desktop@3.23.10) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.9", + "title": "[3.23.9](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.8...@standardnotes/desktop@3.23.9) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.8", + "title": "[3.23.8](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.7...@standardnotes/desktop@3.23.8) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.7", + "title": "[3.23.7](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.6...@standardnotes/desktop@3.23.7) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.6", + "title": "[3.23.6](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.5...@standardnotes/desktop@3.23.6) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.5", + "title": "[3.23.5](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.4...@standardnotes/desktop@3.23.5) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.4", + "title": "[3.23.4](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.3...@standardnotes/desktop@3.23.4) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.3", + "title": "[3.23.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.2...@standardnotes/desktop@3.23.3) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.2", + "title": "[3.23.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.1...@standardnotes/desktop@3.23.2) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.1", + "title": "[3.23.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.23.0...@standardnotes/desktop@3.23.1) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.23.0", + "title": "[3.23.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.21...@standardnotes/desktop@3.23.0) (2022-06-27)", + "date": null, + "body": "### Features\n\n* **web:** tailwind css ([#1147](https://github.com/standardnotes/app/issues/1147)) ([b80038f](https://github.com/standardnotes/app/commit/b80038f607d7411912fa99366abf559a44874ef3))", + "parsed": { + "_": [ + "web: tailwind css (#1147) (b80038f)" + ], + "Features": [ + "web: tailwind css (#1147) (b80038f)" + ] + } + }, + { + "version": "3.22.21", + "title": "[3.22.21](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.20...@standardnotes/desktop@3.22.21) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.20", + "title": "[3.22.20](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.19...@standardnotes/desktop@3.22.20) (2022-06-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.19", + "title": "[3.22.19](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.18...@standardnotes/desktop@3.22.19) (2022-06-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.18", + "title": "[3.22.18](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.17...@standardnotes/desktop@3.22.18) (2022-06-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.17", + "title": "[3.22.17](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.16...@standardnotes/desktop@3.22.17) (2022-06-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.16", + "title": "[3.22.16](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.16-alpha.2...@standardnotes/desktop@3.22.16) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.16-alpha.2", + "title": "[3.22.16-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.16-alpha.1...@standardnotes/desktop@3.22.16-alpha.2) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.16-alpha.1", + "title": "[3.22.16-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.16-alpha.0...@standardnotes/desktop@3.22.16-alpha.1) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.16-alpha.0", + "title": "[3.22.16-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.15...@standardnotes/desktop@3.22.16-alpha.0) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.15", + "title": "[3.22.15](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.15-alpha.3...@standardnotes/desktop@3.22.15) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.15-alpha.3", + "title": "[3.22.15-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.15-alpha.2...@standardnotes/desktop@3.22.15-alpha.3) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.15-alpha.2", + "title": "[3.22.15-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.15-alpha.1...@standardnotes/desktop@3.22.15-alpha.2) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.15-alpha.1", + "title": "[3.22.15-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.15-alpha.0...@standardnotes/desktop@3.22.15-alpha.1) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.15-alpha.0", + "title": "[3.22.15-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.14...@standardnotes/desktop@3.22.15-alpha.0) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.14", + "title": "[3.22.14](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.14-alpha.0...@standardnotes/desktop@3.22.14) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.14-alpha.0", + "title": "[3.22.14-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13...@standardnotes/desktop@3.22.14-alpha.0) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13", + "title": "[3.22.13](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.10...@standardnotes/desktop@3.22.13) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.10", + "title": "[3.22.13-alpha.10](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.9...@standardnotes/desktop@3.22.13-alpha.10) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.9", + "title": "[3.22.13-alpha.9](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.8...@standardnotes/desktop@3.22.13-alpha.9) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.8", + "title": "[3.22.13-alpha.8](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.7...@standardnotes/desktop@3.22.13-alpha.8) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.7", + "title": "[3.22.13-alpha.7](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.6...@standardnotes/desktop@3.22.13-alpha.7) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.6", + "title": "[3.22.13-alpha.6](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.5...@standardnotes/desktop@3.22.13-alpha.6) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.5", + "title": "[3.22.13-alpha.5](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.4...@standardnotes/desktop@3.22.13-alpha.5) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.4", + "title": "[3.22.13-alpha.4](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.3...@standardnotes/desktop@3.22.13-alpha.4) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.3", + "title": "[3.22.13-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.2...@standardnotes/desktop@3.22.13-alpha.3) (2022-06-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.2", + "title": "[3.22.13-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.1...@standardnotes/desktop@3.22.13-alpha.2) (2022-06-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.1", + "title": "[3.22.13-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.13-alpha.0...@standardnotes/desktop@3.22.13-alpha.1) (2022-06-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.13-alpha.0", + "title": "[3.22.13-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.12...@standardnotes/desktop@3.22.13-alpha.0) (2022-06-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.12", + "title": "[3.22.12](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.12-alpha.3...@standardnotes/desktop@3.22.12) (2022-06-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.12-alpha.3", + "title": "[3.22.12-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.12-alpha.2...@standardnotes/desktop@3.22.12-alpha.3) (2022-06-20)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** linux executableName ([296873d](https://github.com/standardnotes/app/commit/296873d671d6cc7cb8744747c09bf755e3a6f1e0))", + "parsed": { + "_": [ + "desktop: linux executableName (296873d)" + ], + "Bug Fixes": [ + "desktop: linux executableName (296873d)" + ] + } + }, + { + "version": "3.22.12-alpha.2", + "title": "[3.22.12-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.12-alpha.1...@standardnotes/desktop@3.22.12-alpha.2) (2022-06-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.12-alpha.1", + "title": "[3.22.12-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.12-alpha.0...@standardnotes/desktop@3.22.12-alpha.1) (2022-06-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.12-alpha.0", + "title": "[3.22.12-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.11...@standardnotes/desktop@3.22.12-alpha.0) (2022-06-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.11", + "title": "[3.22.11](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.11-alpha.0...@standardnotes/desktop@3.22.11) (2022-06-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.11-alpha.0", + "title": "[3.22.11-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.10...@standardnotes/desktop@3.22.11-alpha.0) (2022-06-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.10", + "title": "[3.22.10](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.10-alpha.0...@standardnotes/desktop@3.22.10) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.10-alpha.0", + "title": "[3.22.10-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.6...@standardnotes/desktop@3.22.10-alpha.0) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.9", + "title": "[3.22.9](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.4...@standardnotes/desktop@3.22.9) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.8", + "title": "[3.22.8](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.1...@standardnotes/desktop@3.22.8) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.7", + "title": "[3.22.7](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.1...@standardnotes/desktop@3.22.7) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.7-alpha.4", + "title": "[3.22.7-alpha.4](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.3...@standardnotes/desktop@3.22.7-alpha.4) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.7-alpha.3", + "title": "[3.22.7-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.2...@standardnotes/desktop@3.22.7-alpha.3) (2022-06-17)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** provide template version ([66241cb](https://github.com/standardnotes/app/commit/66241cb038753583d61d43bfef44ecdf158ac337))", + "parsed": { + "_": [ + "desktop: provide template version (66241cb)" + ], + "Bug Fixes": [ + "desktop: provide template version (66241cb)" + ] + } + }, + { + "version": "3.22.7-alpha.2", + "title": "[3.22.7-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.1...@standardnotes/desktop@3.22.7-alpha.2) (2022-06-17)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** use top level package json for versioning ([93e9701](https://github.com/standardnotes/app/commit/93e97013c113f054b59f5cc27c3ee579448c32cb))", + "parsed": { + "_": [ + "desktop: use top level package json for versioning (93e9701)" + ], + "Bug Fixes": [ + "desktop: use top level package json for versioning (93e9701)" + ] + } + }, + { + "version": "3.22.7-alpha.1", + "title": "[3.22.7-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.7-alpha.0...@standardnotes/desktop@3.22.7-alpha.1) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.7-alpha.0", + "title": "[3.22.7-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.6...@standardnotes/desktop@3.22.7-alpha.0) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.6", + "title": "[3.22.6](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.5...@standardnotes/desktop@3.22.6) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.5", + "title": "3.22.5 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.4", + "title": "3.22.4 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3", + "title": "[3.22.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.24...@standardnotes/desktop@3.22.3) (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.24", + "title": "[3.22.3-alpha.24](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.23...@standardnotes/desktop@3.22.3-alpha.24) (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.23", + "title": "3.22.3-alpha.23 (2022-06-16)", + "date": null, + "body": "### Bug Fixes\n\n* **desktop:** commit public env config ([fef253c](https://github.com/standardnotes/app/commit/fef253c62f0c51626b2bbcf7fa0cd97eb8d820d3))", + "parsed": { + "_": [ + "desktop: commit public env config (fef253c)" + ], + "Bug Fixes": [ + "desktop: commit public env config (fef253c)" + ] + } + }, + { + "version": "3.22.3-alpha.22", + "title": "[3.22.3-alpha.22](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.21...@standardnotes/desktop@3.22.3-alpha.22) (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.21", + "title": "3.22.3-alpha.21 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.20", + "title": "[3.22.3-alpha.20](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.19...@standardnotes/desktop@3.22.3-alpha.20) (2022-06-16)", + "date": null, + "body": "### Bug Fixes\n\n* desktop output name ([8cf1570](https://github.com/standardnotes/app/commit/8cf1570186fe53f71ae758d268dff9798da82c61))", + "parsed": { + "_": [ + "desktop output name (8cf1570)" + ], + "Bug Fixes": [ + "desktop output name (8cf1570)" + ] + } + }, + { + "version": "3.22.3-alpha.19", + "title": "3.22.3-alpha.19 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.18", + "title": "3.22.3-alpha.18 (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.17", + "title": "[3.22.3-alpha.17](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.16...@standardnotes/desktop@3.22.3-alpha.17) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.16", + "title": "[3.22.3-alpha.16](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.15...@standardnotes/desktop@3.22.3-alpha.16) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.15", + "title": "3.22.3-alpha.15 (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.14", + "title": "[3.22.3-alpha.14](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.13...@standardnotes/desktop@3.22.3-alpha.14) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.13", + "title": "[3.22.3-alpha.13](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.12...@standardnotes/desktop@3.22.3-alpha.13) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.12", + "title": "[3.22.3-alpha.12](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.11...@standardnotes/desktop@3.22.3-alpha.12) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.11", + "title": "[3.22.3-alpha.11](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.10...@standardnotes/desktop@3.22.3-alpha.11) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.10", + "title": "[3.22.3-alpha.10](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.9...@standardnotes/desktop@3.22.3-alpha.10) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.9", + "title": "[3.22.3-alpha.9](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.8...@standardnotes/desktop@3.22.3-alpha.9) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.8", + "title": "[3.22.3-alpha.8](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.7...@standardnotes/desktop@3.22.3-alpha.8) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.7", + "title": "[3.22.3-alpha.7](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.6...@standardnotes/desktop@3.22.3-alpha.7) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.3", + "title": "[3.22.3-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.2...@standardnotes/desktop@3.22.3-alpha.3) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.2", + "title": "[3.22.3-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.1...@standardnotes/desktop@3.22.3-alpha.2) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.1", + "title": "[3.22.3-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.3-alpha.0...@standardnotes/desktop@3.22.3-alpha.1) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.3-alpha.0", + "title": "[3.22.3-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.2...@standardnotes/desktop@3.22.3-alpha.0) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.2", + "title": "[3.22.2](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.1...@standardnotes/desktop@3.22.2) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.1", + "title": "[3.22.1](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.22.0...@standardnotes/desktop@3.22.1) (2022-06-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/desktop", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/desktop" + ] + } + }, + { + "version": "3.22.0", + "title": "3.22.0 (2022-06-10)", + "date": null, + "body": "### Bug Fixes\n\n* desktop ([#1080](https://github.com/standardnotes/app/issues/1080)) ([6801c3d](https://github.com/standardnotes/app/commit/6801c3dd3b931d9bfa3987c7867282da63c65266))\n* icons package ([4df06c1](https://github.com/standardnotes/app/commit/4df06c1d1a59f95ce735f87c106066ea28e5816c))\n\n### Features\n\n* add desktop repo ([#1071](https://github.com/standardnotes/app/issues/1071)) ([0b7ce82](https://github.com/standardnotes/app/commit/0b7ce82aaa21018da084149bb52b5c90b2273bc8))\n* mobile app package ([#1075](https://github.com/standardnotes/app/issues/1075)) ([8248a38](https://github.com/standardnotes/app/commit/8248a38280cb7c92da2b2e9c7db298f34ae8ffdf))\n* toast package ([#1073](https://github.com/standardnotes/app/issues/1073)) ([6d0b6e9](https://github.com/standardnotes/app/commit/6d0b6e9018b2a612b8df4827336883fe04033128))\n* **wip:** components monorepo ([#1082](https://github.com/standardnotes/app/issues/1082)) ([e3d6001](https://github.com/standardnotes/app/commit/e3d6001a178e11e619ca724b2b155b7c0405c023))", + "parsed": { + "_": [ + "desktop (#1080) (6801c3d)", + "icons package (4df06c1)", + "add desktop repo (#1071) (0b7ce82)", + "mobile app package (#1075) (8248a38)", + "toast package (#1073) (6d0b6e9)", + "wip: components monorepo (#1082) (e3d6001)" + ], + "Bug Fixes": [ + "desktop (#1080) (6801c3d)", + "icons package (4df06c1)" + ], + "Features": [ + "add desktop repo (#1071) (0b7ce82)", + "mobile app package (#1075) (8248a38)", + "toast package (#1073) (6d0b6e9)", + "wip: components monorepo (#1082) (e3d6001)" + ] + } + }, + { + "version": "3.21.0", + "title": "3.21.0 (2022-06-10)", + "date": null, + "body": "### Bug Fixes\n\n* desktop ([#1080](https://github.com/standardnotes/app/issues/1080)) ([6801c3d](https://github.com/standardnotes/app/commit/6801c3dd3b931d9bfa3987c7867282da63c65266))\n* icons package ([4df06c1](https://github.com/standardnotes/app/commit/4df06c1d1a59f95ce735f87c106066ea28e5816c))\n\n### Features\n\n* add desktop repo ([#1071](https://github.com/standardnotes/app/issues/1071)) ([0b7ce82](https://github.com/standardnotes/app/commit/0b7ce82aaa21018da084149bb52b5c90b2273bc8))\n* mobile app package ([#1075](https://github.com/standardnotes/app/issues/1075)) ([8248a38](https://github.com/standardnotes/app/commit/8248a38280cb7c92da2b2e9c7db298f34ae8ffdf))\n* toast package ([#1073](https://github.com/standardnotes/app/issues/1073)) ([6d0b6e9](https://github.com/standardnotes/app/commit/6d0b6e9018b2a612b8df4827336883fe04033128))\n* **wip:** components monorepo ([8c5e11c](https://github.com/standardnotes/app/commit/8c5e11c22b717ada7a6a9b3115fc4c9b757ec71c))", + "parsed": { + "_": [ + "desktop (#1080) (6801c3d)", + "icons package (4df06c1)", + "add desktop repo (#1071) (0b7ce82)", + "mobile app package (#1075) (8248a38)", + "toast package (#1073) (6d0b6e9)", + "wip: components monorepo (8c5e11c)" + ], + "Bug Fixes": [ + "desktop (#1080) (6801c3d)", + "icons package (4df06c1)" + ], + "Features": [ + "add desktop repo (#1071) (0b7ce82)", + "mobile app package (#1075) (8248a38)", + "toast package (#1073) (6d0b6e9)", + "wip: components monorepo (8c5e11c)" + ] + } + } + ], + "title": "Change Log", + "description": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines." +} \ No newline at end of file diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 7c893e130..4bd84e26f 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,6 @@ { "name": "@standardnotes/desktop", "main": "./app/dist/index.js", - "version": "3.101.2", "license": "AGPL-3.0-or-later", "author": "Standard Notes.", "private": true, diff --git a/packages/desktop/scripts/fixMacZip.js b/packages/desktop/scripts/fixMacZip.js index 8fa4ba6e7..e6207be46 100644 --- a/packages/desktop/scripts/fixMacZip.js +++ b/packages/desktop/scripts/fixMacZip.js @@ -31,7 +31,7 @@ async function getBlockMapInfo(fileName) { ;(async () => { try { - const { version } = JSON.parse(await fs.promises.readFile('package.json')) + const version = process.argv.slice(2)[0] const zipName = `standard-notes-${version}-mac-x64.zip` const zipPath = `dist/${zipName}` console.log(`Removing ${zipPath}`) diff --git a/packages/mobile/CHANGELOG.md.json b/packages/mobile/CHANGELOG.md.json new file mode 100644 index 000000000..eb1073869 --- /dev/null +++ b/packages/mobile/CHANGELOG.md.json @@ -0,0 +1,4587 @@ +{ + "versions": [ + { + "version": "3.46.31", + "title": "[3.46.31](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.30...@standardnotes/mobile@3.46.31) (2022-11-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.30", + "title": "[3.46.30](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.29...@standardnotes/mobile@3.46.30) (2022-11-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.29", + "title": "[3.46.29](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.28...@standardnotes/mobile@3.46.29) (2022-11-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.28", + "title": "[3.46.28](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.27...@standardnotes/mobile@3.46.28) (2022-11-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.27", + "title": "[3.46.27](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.26...@standardnotes/mobile@3.46.27) (2022-11-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.26", + "title": "[3.46.26](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.25...@standardnotes/mobile@3.46.26) (2022-11-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.25", + "title": "[3.46.25](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.24...@standardnotes/mobile@3.46.25) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.24", + "title": "[3.46.24](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.23...@standardnotes/mobile@3.46.24) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.23", + "title": "[3.46.23](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.22...@standardnotes/mobile@3.46.23) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.22", + "title": "[3.46.22](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.21...@standardnotes/mobile@3.46.22) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.21", + "title": "[3.46.21](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.20...@standardnotes/mobile@3.46.21) (2022-11-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.20", + "title": "[3.46.20](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.19...@standardnotes/mobile@3.46.20) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.19", + "title": "[3.46.19](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.18...@standardnotes/mobile@3.46.19) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.18", + "title": "[3.46.18](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.17...@standardnotes/mobile@3.46.18) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.17", + "title": "[3.46.17](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.16...@standardnotes/mobile@3.46.17) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.16", + "title": "[3.46.16](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.15...@standardnotes/mobile@3.46.16) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.15", + "title": "[3.46.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.14...@standardnotes/mobile@3.46.15) (2022-11-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.14", + "title": "[3.46.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.13...@standardnotes/mobile@3.46.14) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.13", + "title": "[3.46.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.12...@standardnotes/mobile@3.46.13) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.12", + "title": "[3.46.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.11...@standardnotes/mobile@3.46.12) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.11", + "title": "[3.46.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.10...@standardnotes/mobile@3.46.11) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.10", + "title": "[3.46.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.9...@standardnotes/mobile@3.46.10) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.9", + "title": "[3.46.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.8...@standardnotes/mobile@3.46.9) (2022-11-16)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** android build ([c3e5228](https://github.com/standardnotes/app/commit/c3e5228c9dd4e2e9cac926e40483c8d3073fb68d))", + "parsed": { + "_": [ + "mobile: android build (c3e5228)" + ], + "Bug Fixes": [ + "mobile: android build (c3e5228)" + ] + } + }, + { + "version": "3.46.8", + "title": "[3.46.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.7...@standardnotes/mobile@3.46.8) (2022-11-16)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** bump android targetSdkVersion to 31 ([66a8983](https://github.com/standardnotes/app/commit/66a898345af6ea48dfa3e7fae38fac97cb376cbe))", + "parsed": { + "_": [ + "mobile: bump android targetSdkVersion to 31 (66a8983)" + ], + "Bug Fixes": [ + "mobile: bump android targetSdkVersion to 31 (66a8983)" + ] + } + }, + { + "version": "3.46.7", + "title": "[3.46.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.6...@standardnotes/mobile@3.46.7) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.6", + "title": "[3.46.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.5...@standardnotes/mobile@3.46.6) (2022-11-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.5", + "title": "[3.46.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.4...@standardnotes/mobile@3.46.5) (2022-11-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.4", + "title": "[3.46.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.3...@standardnotes/mobile@3.46.4) (2022-11-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.3", + "title": "[3.46.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.2...@standardnotes/mobile@3.46.3) (2022-11-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.2", + "title": "[3.46.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.1...@standardnotes/mobile@3.46.2) (2022-11-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.46.1", + "title": "[3.46.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.46.0...@standardnotes/mobile@3.46.1) (2022-11-13)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** android build ([5777e51](https://github.com/standardnotes/app/commit/5777e511a95fb5c3f6c867b239d849290a71fcea))", + "parsed": { + "_": [ + "mobile: android build (5777e51)" + ], + "Bug Fixes": [ + "mobile: android build (5777e51)" + ] + } + }, + { + "version": "3.46.0", + "title": "[3.46.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.42...@standardnotes/mobile@3.46.0) (2022-11-13)", + "date": null, + "body": "### Features\n\n* iap ([#1996](https://github.com/standardnotes/app/issues/1996)) ([d519aca](https://github.com/standardnotes/app/commit/d519aca685b32f4b6f7079ba9562ecaf1a18aecb))", + "parsed": { + "_": [ + "iap (#1996) (d519aca)" + ], + "Features": [ + "iap (#1996) (d519aca)" + ] + } + }, + { + "version": "3.45.42", + "title": "[3.45.42](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.41...@standardnotes/mobile@3.45.42) (2022-11-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.41", + "title": "[3.45.41](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.40...@standardnotes/mobile@3.45.41) (2022-11-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.40", + "title": "[3.45.40](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.39...@standardnotes/mobile@3.45.40) (2022-11-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.39", + "title": "[3.45.39](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.38...@standardnotes/mobile@3.45.39) (2022-11-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.38", + "title": "[3.45.38](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.37...@standardnotes/mobile@3.45.38) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.37", + "title": "[3.45.37](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.36...@standardnotes/mobile@3.45.37) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.36", + "title": "[3.45.36](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.35...@standardnotes/mobile@3.45.36) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.35", + "title": "[3.45.35](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.34...@standardnotes/mobile@3.45.35) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.34", + "title": "[3.45.34](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.33...@standardnotes/mobile@3.45.34) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.33", + "title": "[3.45.33](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.32...@standardnotes/mobile@3.45.33) (2022-11-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.32", + "title": "[3.45.32](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.31...@standardnotes/mobile@3.45.32) (2022-11-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.31", + "title": "[3.45.31](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.30...@standardnotes/mobile@3.45.31) (2022-11-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.30", + "title": "[3.45.30](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.29...@standardnotes/mobile@3.45.30) (2022-11-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.29", + "title": "[3.45.29](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.28...@standardnotes/mobile@3.45.29) (2022-11-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.28", + "title": "[3.45.28](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.27...@standardnotes/mobile@3.45.28) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.27", + "title": "[3.45.27](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.26...@standardnotes/mobile@3.45.27) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.26", + "title": "[3.45.26](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.25...@standardnotes/mobile@3.45.26) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.25", + "title": "[3.45.25](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.24...@standardnotes/mobile@3.45.25) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.24", + "title": "[3.45.24](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.23...@standardnotes/mobile@3.45.24) (2022-11-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.23", + "title": "[3.45.23](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.22...@standardnotes/mobile@3.45.23) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.22", + "title": "[3.45.22](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.21...@standardnotes/mobile@3.45.22) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.21", + "title": "[3.45.21](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.20...@standardnotes/mobile@3.45.21) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.20", + "title": "[3.45.20](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.19...@standardnotes/mobile@3.45.20) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.19", + "title": "[3.45.19](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.18...@standardnotes/mobile@3.45.19) (2022-11-03)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** disable pinch zoom on mobile app UI ([dc4530b](https://github.com/standardnotes/app/commit/dc4530b2f33057ec3d44a94b28dc0407656d4098))", + "parsed": { + "_": [ + "mobile: disable pinch zoom on mobile app UI (dc4530b)" + ], + "Bug Fixes": [ + "mobile: disable pinch zoom on mobile app UI (dc4530b)" + ] + } + }, + { + "version": "3.45.18", + "title": "[3.45.18](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.17...@standardnotes/mobile@3.45.18) (2022-11-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.17", + "title": "[3.45.17](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.16...@standardnotes/mobile@3.45.17) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.16", + "title": "[3.45.16](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.15...@standardnotes/mobile@3.45.16) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.15", + "title": "[3.45.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.14...@standardnotes/mobile@3.45.15) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.14", + "title": "[3.45.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.13...@standardnotes/mobile@3.45.14) (2022-11-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.13", + "title": "[3.45.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.12...@standardnotes/mobile@3.45.13) (2022-11-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.12", + "title": "[3.45.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.11...@standardnotes/mobile@3.45.12) (2022-11-01)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** increase font sizes and other mobile-centric improvements ([#1907](https://github.com/standardnotes/app/issues/1907)) ([994f824](https://github.com/standardnotes/app/commit/994f824757e1143a4547c975b154fd84e3ebeedf))", + "parsed": { + "_": [ + "mobile: increase font sizes and other mobile-centric improvements (#1907) (994f824)" + ], + "Bug Fixes": [ + "mobile: increase font sizes and other mobile-centric improvements (#1907) (994f824)" + ] + } + }, + { + "version": "3.45.11", + "title": "[3.45.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.10...@standardnotes/mobile@3.45.11) (2022-10-31)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** bump minimum android sdk to 28 (9.0) ([50b0db3](https://github.com/standardnotes/app/commit/50b0db3baa4f27de3e7c13bbb59d9e33a360d949))", + "parsed": { + "_": [ + "mobile: bump minimum android sdk to 28 (9.0) (50b0db3)" + ], + "Bug Fixes": [ + "mobile: bump minimum android sdk to 28 (9.0) (50b0db3)" + ] + } + }, + { + "version": "3.45.10", + "title": "[3.45.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.9...@standardnotes/mobile@3.45.10) (2022-10-31)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** decrease iOS deployment target to 13 ([8b25c01](https://github.com/standardnotes/app/commit/8b25c01551ffde67a41d87ae79fd21d46a10eff3))\n* **mobile:** increase iOS deployment target to 14 ([50182fa](https://github.com/standardnotes/app/commit/50182fad4ff635fe1c54c8880fb82ef3f3c9c434))", + "parsed": { + "_": [ + "mobile: decrease iOS deployment target to 13 (8b25c01)", + "mobile: increase iOS deployment target to 14 (50182fa)" + ], + "Bug Fixes": [ + "mobile: decrease iOS deployment target to 13 (8b25c01)", + "mobile: increase iOS deployment target to 14 (50182fa)" + ] + } + }, + { + "version": "3.45.9", + "title": "[3.45.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.8...@standardnotes/mobile@3.45.9) (2022-10-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.8", + "title": "[3.45.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.7...@standardnotes/mobile@3.45.8) (2022-10-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.7", + "title": "[3.45.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.6...@standardnotes/mobile@3.45.7) (2022-10-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.6", + "title": "[3.45.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.5...@standardnotes/mobile@3.45.6) (2022-10-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.5", + "title": "[3.45.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.4...@standardnotes/mobile@3.45.5) (2022-10-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.4", + "title": "[3.45.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.3...@standardnotes/mobile@3.45.4) (2022-10-28)", + "date": null, + "body": "### Bug Fixes\n\n* color scheme handling on mobile ([#1902](https://github.com/standardnotes/app/issues/1902)) ([6071ebf](https://github.com/standardnotes/app/commit/6071ebffeb55c78eac79f39aecca07f6ebdbed93))", + "parsed": { + "_": [ + "color scheme handling on mobile (#1902) (6071ebf)" + ], + "Bug Fixes": [ + "color scheme handling on mobile (#1902) (6071ebf)" + ] + } + }, + { + "version": "3.45.3", + "title": "[3.45.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.2...@standardnotes/mobile@3.45.3) (2022-10-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.2", + "title": "[3.45.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.1...@standardnotes/mobile@3.45.2) (2022-10-28)", + "date": null, + "body": "### Bug Fixes\n\n* screenshot privacy setting not working on app relaunch ([#1900](https://github.com/standardnotes/app/issues/1900)) ([5a6f4fb](https://github.com/standardnotes/app/commit/5a6f4fb35c2e70a463e04ce5f71bde55bba4bb30))", + "parsed": { + "_": [ + "screenshot privacy setting not working on app relaunch (#1900) (5a6f4fb)" + ], + "Bug Fixes": [ + "screenshot privacy setting not working on app relaunch (#1900) (5a6f4fb)" + ] + } + }, + { + "version": "3.45.1", + "title": "[3.45.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.45.0...@standardnotes/mobile@3.45.1) (2022-10-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.45.0", + "title": "[3.45.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.44.5...@standardnotes/mobile@3.45.0) (2022-10-26)", + "date": null, + "body": "### Features\n\n* auto-activate biometrics prompt when mobile regains focus ([#1891](https://github.com/standardnotes/app/issues/1891)) ([3bd1ad3](https://github.com/standardnotes/app/commit/3bd1ad38ad05ba6ea0e99911693ed7b25e2f8380))", + "parsed": { + "_": [ + "auto-activate biometrics prompt when mobile regains focus (#1891) (3bd1ad3)" + ], + "Features": [ + "auto-activate biometrics prompt when mobile regains focus (#1891) (3bd1ad3)" + ] + } + }, + { + "version": "3.44.5", + "title": "[3.44.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.44.4...@standardnotes/mobile@3.44.5) (2022-10-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.44.4", + "title": "[3.44.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.44.3...@standardnotes/mobile@3.44.4) (2022-10-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.44.3", + "title": "[3.44.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.44.2...@standardnotes/mobile@3.44.3) (2022-10-25)", + "date": null, + "body": "### Bug Fixes\n\n* on mobile open links from editor in external browser ([#1860](https://github.com/standardnotes/app/issues/1860)) ([d9db73e](https://github.com/standardnotes/app/commit/d9db73ea056e2e6e2bde8e0c1de4a7090984ae9a))", + "parsed": { + "_": [ + "on mobile open links from editor in external browser (#1860) (d9db73e)" + ], + "Bug Fixes": [ + "on mobile open links from editor in external browser (#1860) (d9db73e)" + ] + } + }, + { + "version": "3.44.2", + "title": "[3.44.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.44.1...@standardnotes/mobile@3.44.2) (2022-10-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.44.1", + "title": "[3.44.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.44.0...@standardnotes/mobile@3.44.1) (2022-10-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.44.0", + "title": "[3.44.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.33...@standardnotes/mobile@3.44.0) (2022-10-24)", + "date": null, + "body": "### Features\n\n* add preference on android to not confirm when exiting ([#1870](https://github.com/standardnotes/app/issues/1870)) ([28ef905](https://github.com/standardnotes/app/commit/28ef9054fad5236bc9f1fc87768d3c17059da4fb))", + "parsed": { + "_": [ + "add preference on android to not confirm when exiting (#1870) (28ef905)" + ], + "Features": [ + "add preference on android to not confirm when exiting (#1870) (28ef905)" + ] + } + }, + { + "version": "3.43.33", + "title": "[3.43.33](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.32...@standardnotes/mobile@3.43.33) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.32", + "title": "[3.43.32](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.31...@standardnotes/mobile@3.43.32) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.31", + "title": "[3.43.31](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.30...@standardnotes/mobile@3.43.31) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.30", + "title": "[3.43.30](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.29...@standardnotes/mobile@3.43.30) (2022-10-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.29", + "title": "[3.43.29](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.28...@standardnotes/mobile@3.43.29) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.28", + "title": "[3.43.28](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.27...@standardnotes/mobile@3.43.28) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.27", + "title": "[3.43.27](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.26...@standardnotes/mobile@3.43.27) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.26", + "title": "[3.43.26](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.25...@standardnotes/mobile@3.43.26) (2022-10-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.25", + "title": "[3.43.25](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.24...@standardnotes/mobile@3.43.25) (2022-10-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.24", + "title": "[3.43.24](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.23...@standardnotes/mobile@3.43.24) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.23", + "title": "[3.43.23](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.22...@standardnotes/mobile@3.43.23) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.22", + "title": "[3.43.22](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.21...@standardnotes/mobile@3.43.22) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.21", + "title": "[3.43.21](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.20...@standardnotes/mobile@3.43.21) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.20", + "title": "[3.43.20](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.19...@standardnotes/mobile@3.43.20) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.19", + "title": "[3.43.19](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.18...@standardnotes/mobile@3.43.19) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.18", + "title": "[3.43.18](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.17...@standardnotes/mobile@3.43.18) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.17", + "title": "[3.43.17](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.16...@standardnotes/mobile@3.43.17) (2022-10-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.16", + "title": "[3.43.16](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.15...@standardnotes/mobile@3.43.16) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.15", + "title": "[3.43.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.14...@standardnotes/mobile@3.43.15) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.14", + "title": "[3.43.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.13...@standardnotes/mobile@3.43.14) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.13", + "title": "[3.43.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.12...@standardnotes/mobile@3.43.13) (2022-10-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.12", + "title": "[3.43.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.11...@standardnotes/mobile@3.43.12) (2022-10-20)", + "date": null, + "body": "### Bug Fixes\n\n* help & feedback links on mobile ([#1849](https://github.com/standardnotes/app/issues/1849)) ([fb72c2f](https://github.com/standardnotes/app/commit/fb72c2fdae277cb4e348ce5ee550f0545f281dcd))", + "parsed": { + "_": [ + "help & feedback links on mobile (#1849) (fb72c2f)" + ], + "Bug Fixes": [ + "help & feedback links on mobile (#1849) (fb72c2f)" + ] + } + }, + { + "version": "3.43.11", + "title": "[3.43.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.10...@standardnotes/mobile@3.43.11) (2022-10-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.10", + "title": "[3.43.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.9...@standardnotes/mobile@3.43.10) (2022-10-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.9", + "title": "[3.43.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.8...@standardnotes/mobile@3.43.9) (2022-10-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.8", + "title": "[3.43.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.7...@standardnotes/mobile@3.43.8) (2022-10-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.7", + "title": "[3.43.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.6...@standardnotes/mobile@3.43.7) (2022-10-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.6", + "title": "[3.43.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.5...@standardnotes/mobile@3.43.6) (2022-10-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.5", + "title": "[3.43.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.4...@standardnotes/mobile@3.43.5) (2022-10-14)", + "date": null, + "body": "### Bug Fixes\n\n* android build ([b849c12](https://github.com/standardnotes/app/commit/b849c122d62e023dbfd6d3fb0399ddffaacd689b))", + "parsed": { + "_": [ + "android build (b849c12)" + ], + "Bug Fixes": [ + "android build (b849c12)" + ] + } + }, + { + "version": "3.43.4", + "title": "[3.43.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.3...@standardnotes/mobile@3.43.4) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.3", + "title": "[3.43.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.2...@standardnotes/mobile@3.43.3) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.2", + "title": "[3.43.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.1...@standardnotes/mobile@3.43.2) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.1", + "title": "[3.43.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.43.0...@standardnotes/mobile@3.43.1) (2022-10-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.43.0", + "title": "[3.43.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.42.5...@standardnotes/mobile@3.43.0) (2022-10-13)", + "date": null, + "body": "### Features\n\n* focus secure text entry after successful biometrics input ([#1785](https://github.com/standardnotes/app/issues/1785)) ([8068fef](https://github.com/standardnotes/app/commit/8068fef4d3b3a31c2cc30f9e5521010e9ba9ca3b))", + "parsed": { + "_": [ + "focus secure text entry after successful biometrics input (#1785) (8068fef)" + ], + "Features": [ + "focus secure text entry after successful biometrics input (#1785) (8068fef)" + ] + } + }, + { + "version": "3.42.5", + "title": "[3.42.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.42.4...@standardnotes/mobile@3.42.5) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.42.4", + "title": "[3.42.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.42.3...@standardnotes/mobile@3.42.4) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.42.3", + "title": "[3.42.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.42.2...@standardnotes/mobile@3.42.3) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.42.2", + "title": "[3.42.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.42.1...@standardnotes/mobile@3.42.2) (2022-10-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.42.1", + "title": "[3.42.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.42.0...@standardnotes/mobile@3.42.1) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.42.0", + "title": "[3.42.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.10...@standardnotes/mobile@3.42.0) (2022-10-11)", + "date": null, + "body": "### Features\n\n* item linking ([#1779](https://github.com/standardnotes/app/issues/1779)) ([e3f2842](https://github.com/standardnotes/app/commit/e3f28421ff042c635ad2ae645c102c27e3e3f9c7))", + "parsed": { + "_": [ + "item linking (#1779) (e3f2842)" + ], + "Features": [ + "item linking (#1779) (e3f2842)" + ] + } + }, + { + "version": "3.41.10", + "title": "[3.41.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.9...@standardnotes/mobile@3.41.10) (2022-10-11)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** issue with black screen on iOS ([#1777](https://github.com/standardnotes/app/issues/1777)) ([9fc77d8](https://github.com/standardnotes/app/commit/9fc77d861e501d63ee97875bba2ddda51d14fd0b))", + "parsed": { + "_": [ + "mobile: issue with black screen on iOS (#1777) (9fc77d8)" + ], + "Bug Fixes": [ + "mobile: issue with black screen on iOS (#1777) (9fc77d8)" + ] + } + }, + { + "version": "3.41.9", + "title": "[3.41.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.8...@standardnotes/mobile@3.41.9) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.8", + "title": "[3.41.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.7...@standardnotes/mobile@3.41.8) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.7", + "title": "[3.41.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.6...@standardnotes/mobile@3.41.7) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.6", + "title": "[3.41.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.5...@standardnotes/mobile@3.41.6) (2022-10-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.5", + "title": "[3.41.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.4...@standardnotes/mobile@3.41.5) (2022-10-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.4", + "title": "[3.41.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.3...@standardnotes/mobile@3.41.4) (2022-10-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.3", + "title": "[3.41.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.2...@standardnotes/mobile@3.41.3) (2022-10-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.2", + "title": "[3.41.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.1...@standardnotes/mobile@3.41.2) (2022-10-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.1", + "title": "[3.41.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.41.0...@standardnotes/mobile@3.41.1) (2022-10-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.41.0", + "title": "[3.41.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.40.2...@standardnotes/mobile@3.41.0) (2022-10-07)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** disable landscape for iPhone ([a365c17](https://github.com/standardnotes/app/commit/a365c17c46f38e6d8cacade47542fd4ec625bc0d))\n\n### Features\n\n* **mobile:** delete account option in settings ([#1768](https://github.com/standardnotes/app/issues/1768)) ([7d21046](https://github.com/standardnotes/app/commit/7d21046b5189eb14a5957bda6fa788d743d8ebb6))", + "parsed": { + "_": [ + "mobile: disable landscape for iPhone (a365c17)", + "mobile: delete account option in settings (#1768) (7d21046)" + ], + "Bug Fixes": [ + "mobile: disable landscape for iPhone (a365c17)" + ], + "Features": [ + "mobile: delete account option in settings (#1768) (7d21046)" + ] + } + }, + { + "version": "3.40.2", + "title": "[3.40.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.40.1...@standardnotes/mobile@3.40.2) (2022-10-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.40.1", + "title": "[3.40.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.40.0...@standardnotes/mobile@3.40.1) (2022-10-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.40.0", + "title": "[3.40.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.12...@standardnotes/mobile@3.40.0) (2022-10-06)", + "date": null, + "body": "### Features\n\n* experimental 005 operator ([#1753](https://github.com/standardnotes/app/issues/1753)) ([cbbe913](https://github.com/standardnotes/app/commit/cbbe913cd6eb694dd27997927bd5c45e8a64cc09))", + "parsed": { + "_": [ + "experimental 005 operator (#1753) (cbbe913)" + ], + "Features": [ + "experimental 005 operator (#1753) (cbbe913)" + ] + } + }, + { + "version": "3.39.12", + "title": "[3.39.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.11...@standardnotes/mobile@3.39.12) (2022-10-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.11", + "title": "[3.39.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.10...@standardnotes/mobile@3.39.11) (2022-10-06)", + "date": null, + "body": "### Bug Fixes\n\n* add android platform check for status bar color sync ([1602d81](https://github.com/standardnotes/app/commit/1602d8157f9e61c6ad842bcce28f3aaf6a8f7154))", + "parsed": { + "_": [ + "add android platform check for status bar color sync (1602d81)" + ], + "Bug Fixes": [ + "add android platform check for status bar color sync (1602d81)" + ] + } + }, + { + "version": "3.39.10", + "title": "[3.39.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.9...@standardnotes/mobile@3.39.10) (2022-10-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.9", + "title": "[3.39.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.8...@standardnotes/mobile@3.39.9) (2022-10-05)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** passcode timing options ([#1744](https://github.com/standardnotes/app/issues/1744)) ([6c26b96](https://github.com/standardnotes/app/commit/6c26b96cdce0d69a4a459104709880850a401a92))", + "parsed": { + "_": [ + "mobile: passcode timing options (#1744) (6c26b96)" + ], + "Bug Fixes": [ + "mobile: passcode timing options (#1744) (6c26b96)" + ] + } + }, + { + "version": "3.39.8", + "title": "[3.39.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.7...@standardnotes/mobile@3.39.8) (2022-10-05)", + "date": null, + "body": "### Bug Fixes\n\n* prevent overflow bouncing on desktop and mobile ([#1743](https://github.com/standardnotes/app/issues/1743)) ([6bd5534](https://github.com/standardnotes/app/commit/6bd5534f749a35b5ddc35cb09115358ce9ee4115))", + "parsed": { + "_": [ + "prevent overflow bouncing on desktop and mobile (#1743) (6bd5534)" + ], + "Bug Fixes": [ + "prevent overflow bouncing on desktop and mobile (#1743) (6bd5534)" + ] + } + }, + { + "version": "3.39.7", + "title": "[3.39.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.6...@standardnotes/mobile@3.39.7) (2022-10-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.6", + "title": "[3.39.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.5...@standardnotes/mobile@3.39.6) (2022-10-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.5", + "title": "[3.39.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.4...@standardnotes/mobile@3.39.5) (2022-10-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.4", + "title": "[3.39.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.3...@standardnotes/mobile@3.39.4) (2022-10-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.3", + "title": "[3.39.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.2...@standardnotes/mobile@3.39.3) (2022-10-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.2", + "title": "[3.39.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.1...@standardnotes/mobile@3.39.2) (2022-10-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.1", + "title": "[3.39.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.39.0...@standardnotes/mobile@3.39.1) (2022-10-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.39.0", + "title": "[3.39.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.38.1...@standardnotes/mobile@3.39.0) (2022-10-02)", + "date": null, + "body": "### Features\n\n* use native preview for pdf in mobile webview ([#1728](https://github.com/standardnotes/app/issues/1728)) ([a90e4a5](https://github.com/standardnotes/app/commit/a90e4a50e820aa13b6af1f76ee9b2f935d12f211))", + "parsed": { + "_": [ + "use native preview for pdf in mobile webview (#1728) (a90e4a5)" + ], + "Features": [ + "use native preview for pdf in mobile webview (#1728) (a90e4a5)" + ] + } + }, + { + "version": "3.38.1", + "title": "[3.38.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.38.0...@standardnotes/mobile@3.38.1) (2022-10-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.38.0", + "title": "[3.38.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.14...@standardnotes/mobile@3.38.0) (2022-09-30)", + "date": null, + "body": "### Features\n\n* sync android status bar bg with theme bg color ([#1727](https://github.com/standardnotes/app/issues/1727)) ([47106fd](https://github.com/standardnotes/app/commit/47106fdf83ec89e67444e84a94350870645993cf))", + "parsed": { + "_": [ + "sync android status bar bg with theme bg color (#1727) (47106fd)" + ], + "Features": [ + "sync android status bar bg with theme bg color (#1727) (47106fd)" + ] + } + }, + { + "version": "3.37.14", + "title": "[3.37.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.13...@standardnotes/mobile@3.37.14) (2022-09-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.13", + "title": "[3.37.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.12...@standardnotes/mobile@3.37.13) (2022-09-30)", + "date": null, + "body": "### Bug Fixes\n\n* downloading backups in mobile webview ([#1703](https://github.com/standardnotes/app/issues/1703)) ([5f24e72](https://github.com/standardnotes/app/commit/5f24e7285e941b44e05cec5be32bee4589f4963c))", + "parsed": { + "_": [ + "downloading backups in mobile webview (#1703) (5f24e72)" + ], + "Bug Fixes": [ + "downloading backups in mobile webview (#1703) (5f24e72)" + ] + } + }, + { + "version": "3.37.12", + "title": "[3.37.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.11...@standardnotes/mobile@3.37.12) (2022-09-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.11", + "title": "[3.37.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.10...@standardnotes/mobile@3.37.11) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.10", + "title": "[3.37.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.9...@standardnotes/mobile@3.37.10) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.9", + "title": "[3.37.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.8...@standardnotes/mobile@3.37.9) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.8", + "title": "[3.37.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.7...@standardnotes/mobile@3.37.8) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.7", + "title": "[3.37.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.6...@standardnotes/mobile@3.37.7) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.6", + "title": "[3.37.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.5...@standardnotes/mobile@3.37.6) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.5", + "title": "[3.37.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.4...@standardnotes/mobile@3.37.5) (2022-09-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.4", + "title": "[3.37.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.3...@standardnotes/mobile@3.37.4) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.3", + "title": "[3.37.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.2...@standardnotes/mobile@3.37.3) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.2", + "title": "[3.37.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.1...@standardnotes/mobile@3.37.2) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.1", + "title": "[3.37.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.37.0...@standardnotes/mobile@3.37.1) (2022-09-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.37.0", + "title": "[3.37.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.18...@standardnotes/mobile@3.37.0) (2022-09-28)", + "date": null, + "body": "### Features\n\n* handle android back button on android ([#1656](https://github.com/standardnotes/app/issues/1656)) ([981d8a7](https://github.com/standardnotes/app/commit/981d8a7497ea2600e1535ad9170cb5559550ca4d))", + "parsed": { + "_": [ + "handle android back button on android (#1656) (981d8a7)" + ], + "Features": [ + "handle android back button on android (#1656) (981d8a7)" + ] + } + }, + { + "version": "3.36.18", + "title": "[3.36.18](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.17...@standardnotes/mobile@3.36.18) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.17", + "title": "[3.36.17](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.16...@standardnotes/mobile@3.36.17) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.16", + "title": "[3.36.16](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.15...@standardnotes/mobile@3.36.16) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.15", + "title": "[3.36.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.14...@standardnotes/mobile@3.36.15) (2022-09-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.14", + "title": "[3.36.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.13...@standardnotes/mobile@3.36.14) (2022-09-27)", + "date": null, + "body": "### Bug Fixes\n\n* export/sharing notes on mobile webview ([#1644](https://github.com/standardnotes/app/issues/1644)) ([6d5ebde](https://github.com/standardnotes/app/commit/6d5ebdeaa1777f31878b6e7d4dfc33fe83abc9fc))", + "parsed": { + "_": [ + "export/sharing notes on mobile webview (#1644) (6d5ebde)" + ], + "Bug Fixes": [ + "export/sharing notes on mobile webview (#1644) (6d5ebde)" + ] + } + }, + { + "version": "3.36.13", + "title": "[3.36.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.12...@standardnotes/mobile@3.36.13) (2022-09-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.12", + "title": "[3.36.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.11...@standardnotes/mobile@3.36.12) (2022-09-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.11", + "title": "[3.36.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.10...@standardnotes/mobile@3.36.11) (2022-09-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.10", + "title": "[3.36.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.9...@standardnotes/mobile@3.36.10) (2022-09-25)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** hide drawer on new mobile experience ([#1642](https://github.com/standardnotes/app/issues/1642)) ([8614a63](https://github.com/standardnotes/app/commit/8614a638a4bfc8fdf97020bf1fc147c62998cf3b))", + "parsed": { + "_": [ + "mobile: hide drawer on new mobile experience (#1642) (8614a63)" + ], + "Bug Fixes": [ + "mobile: hide drawer on new mobile experience (#1642) (8614a63)" + ] + } + }, + { + "version": "3.36.9", + "title": "[3.36.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.8...@standardnotes/mobile@3.36.9) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.8", + "title": "[3.36.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.7...@standardnotes/mobile@3.36.8) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.7", + "title": "[3.36.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.6...@standardnotes/mobile@3.36.7) (2022-09-24)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** accurate version number ([789a78b](https://github.com/standardnotes/app/commit/789a78bda33f12d214c12a63ae27d2ba0f39feab))", + "parsed": { + "_": [ + "mobile: accurate version number (789a78b)" + ], + "Bug Fixes": [ + "mobile: accurate version number (789a78b)" + ] + } + }, + { + "version": "3.36.6", + "title": "[3.36.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.5...@standardnotes/mobile@3.36.6) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.5", + "title": "[3.36.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.4...@standardnotes/mobile@3.36.5) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.4", + "title": "[3.36.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.3...@standardnotes/mobile@3.36.4) (2022-09-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.3", + "title": "[3.36.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.2...@standardnotes/mobile@3.36.3) (2022-09-23)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** adjust status bar color to match current theme ([#1624](https://github.com/standardnotes/app/issues/1624)) ([4d5429c](https://github.com/standardnotes/app/commit/4d5429cc89c15f870825f20e97844825102c6aec))", + "parsed": { + "_": [ + "mobile: adjust status bar color to match current theme (#1624) (4d5429c)" + ], + "Bug Fixes": [ + "mobile: adjust status bar color to match current theme (#1624) (4d5429c)" + ] + } + }, + { + "version": "3.36.2", + "title": "[3.36.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.1...@standardnotes/mobile@3.36.2) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.1", + "title": "[3.36.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.36.0...@standardnotes/mobile@3.36.1) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.36.0", + "title": "[3.36.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.16...@standardnotes/mobile@3.36.0) (2022-09-23)", + "date": null, + "body": "### Features\n\n* sync page theme color metadata with active theme bg ([#1623](https://github.com/standardnotes/app/issues/1623)) ([5de6f45](https://github.com/standardnotes/app/commit/5de6f459c106127f294693389f62fa1c3ed57798))", + "parsed": { + "_": [ + "sync page theme color metadata with active theme bg (#1623) (5de6f45)" + ], + "Features": [ + "sync page theme color metadata with active theme bg (#1623) (5de6f45)" + ] + } + }, + { + "version": "3.35.16", + "title": "[3.35.16](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.15...@standardnotes/mobile@3.35.16) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.15", + "title": "[3.35.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.14...@standardnotes/mobile@3.35.15) (2022-09-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.14", + "title": "[3.35.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.13...@standardnotes/mobile@3.35.14) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.13", + "title": "[3.35.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.12...@standardnotes/mobile@3.35.13) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.12", + "title": "[3.35.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.11...@standardnotes/mobile@3.35.12) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.11", + "title": "[3.35.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.10...@standardnotes/mobile@3.35.11) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.10", + "title": "[3.35.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.9...@standardnotes/mobile@3.35.10) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.9", + "title": "[3.35.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.8...@standardnotes/mobile@3.35.9) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.8", + "title": "[3.35.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.7...@standardnotes/mobile@3.35.8) (2022-09-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.7", + "title": "[3.35.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.6...@standardnotes/mobile@3.35.7) (2022-09-21)", + "date": null, + "body": "### Bug Fixes\n\n* iOS safe area using CSS ([#1610](https://github.com/standardnotes/app/issues/1610)) ([8fa5663](https://github.com/standardnotes/app/commit/8fa566336ceef8a3d7b559b1aaf342f7c51f21cd))", + "parsed": { + "_": [ + "iOS safe area using CSS (#1610) (8fa5663)" + ], + "Bug Fixes": [ + "iOS safe area using CSS (#1610) (8fa5663)" + ] + } + }, + { + "version": "3.35.6", + "title": "[3.35.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.5...@standardnotes/mobile@3.35.6) (2022-09-21)", + "date": null, + "body": "### Bug Fixes\n\n* iOS webview window size and padding ([#1605](https://github.com/standardnotes/app/issues/1605)) ([1ae64dc](https://github.com/standardnotes/app/commit/1ae64dcac4cc714f8931b2301fce1cb802570862))", + "parsed": { + "_": [ + "iOS webview window size and padding (#1605) (1ae64dc)" + ], + "Bug Fixes": [ + "iOS webview window size and padding (#1605) (1ae64dc)" + ] + } + }, + { + "version": "3.35.5", + "title": "[3.35.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.4...@standardnotes/mobile@3.35.5) (2022-09-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.4", + "title": "[3.35.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.3...@standardnotes/mobile@3.35.4) (2022-09-20)", + "date": null, + "body": "### Bug Fixes\n\n* move wrapped storage to unwrapped if not encrypted ([#1603](https://github.com/standardnotes/app/issues/1603)) ([c5e225d](https://github.com/standardnotes/app/commit/c5e225d335537257f44168b8ad05222afccb508a))", + "parsed": { + "_": [ + "move wrapped storage to unwrapped if not encrypted (#1603) (c5e225d)" + ], + "Bug Fixes": [ + "move wrapped storage to unwrapped if not encrypted (#1603) (c5e225d)" + ] + } + }, + { + "version": "3.35.3", + "title": "[3.35.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.2...@standardnotes/mobile@3.35.3) (2022-09-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.2", + "title": "[3.35.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.1...@standardnotes/mobile@3.35.2) (2022-09-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.1", + "title": "[3.35.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.35.0...@standardnotes/mobile@3.35.1) (2022-09-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.35.0", + "title": "[3.35.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.34.3...@standardnotes/mobile@3.35.0) (2022-09-19)", + "date": null, + "body": "### Features\n\n* mobile web bridge ([#1597](https://github.com/standardnotes/app/issues/1597)) ([c4d7761](https://github.com/standardnotes/app/commit/c4d776149677269bc766f24da6adc5ec816dbcfb))", + "parsed": { + "_": [ + "mobile web bridge (#1597) (c4d7761)" + ], + "Features": [ + "mobile web bridge (#1597) (c4d7761)" + ] + } + }, + { + "version": "3.34.3", + "title": "[3.34.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.34.2...@standardnotes/mobile@3.34.3) (2022-09-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.34.2", + "title": "[3.34.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.34.1...@standardnotes/mobile@3.34.2) (2022-09-19)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.34.1", + "title": "[3.34.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.34.0...@standardnotes/mobile@3.34.1) (2022-09-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.34.0", + "title": "[3.34.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.7...@standardnotes/mobile@3.34.0) (2022-09-16)", + "date": null, + "body": "### Features\n\n* add settings to fully switch between native/webview ([#1587](https://github.com/standardnotes/app/issues/1587)) ([85c90e0](https://github.com/standardnotes/app/commit/85c90e07fc8b1ce66eaa88df09f2728ac0fecf1c))", + "parsed": { + "_": [ + "add settings to fully switch between native/webview (#1587) (85c90e0)" + ], + "Features": [ + "add settings to fully switch between native/webview (#1587) (85c90e0)" + ] + } + }, + { + "version": "3.33.7", + "title": "[3.33.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.6...@standardnotes/mobile@3.33.7) (2022-09-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.33.6", + "title": "[3.33.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.5...@standardnotes/mobile@3.33.6) (2022-09-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.33.5", + "title": "[3.33.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.4...@standardnotes/mobile@3.33.5) (2022-09-15)", + "date": null, + "body": "### Bug Fixes\n\n* biometrics input on mobile webview challenge modal ([#1572](https://github.com/standardnotes/app/issues/1572)) ([3a15142](https://github.com/standardnotes/app/commit/3a15142940ef9391868442e1997c3d9d5eec33be))", + "parsed": { + "_": [ + "biometrics input on mobile webview challenge modal (#1572) (3a15142)" + ], + "Bug Fixes": [ + "biometrics input on mobile webview challenge modal (#1572) (3a15142)" + ] + } + }, + { + "version": "3.33.4", + "title": "[3.33.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.3...@standardnotes/mobile@3.33.4) (2022-09-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.33.3", + "title": "[3.33.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.2...@standardnotes/mobile@3.33.3) (2022-09-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.33.2", + "title": "[3.33.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.1...@standardnotes/mobile@3.33.2) (2022-09-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.33.1", + "title": "[3.33.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.33.0...@standardnotes/mobile@3.33.1) (2022-09-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.33.0", + "title": "[3.33.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.32.5...@standardnotes/mobile@3.33.0) (2022-09-14)", + "date": null, + "body": "### Features\n\n* mobile security prefs ([#1496](https://github.com/standardnotes/app/issues/1496)) ([d7aca2c](https://github.com/standardnotes/app/commit/d7aca2c13a99b81c2ee9d36a09f670b0a4c61bd1))", + "parsed": { + "_": [ + "mobile security prefs (#1496) (d7aca2c)" + ], + "Features": [ + "mobile security prefs (#1496) (d7aca2c)" + ] + } + }, + { + "version": "3.32.5", + "title": "[3.32.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.32.4...@standardnotes/mobile@3.32.5) (2022-09-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.32.4", + "title": "[3.32.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.32.3...@standardnotes/mobile@3.32.4) (2022-09-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.32.3", + "title": "[3.32.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.32.2...@standardnotes/mobile@3.32.3) (2022-09-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.32.2", + "title": "[3.32.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.32.1...@standardnotes/mobile@3.32.2) (2022-09-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.32.1", + "title": "[3.32.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.32.0...@standardnotes/mobile@3.32.1) (2022-09-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.32.0", + "title": "[3.32.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.29...@standardnotes/mobile@3.32.0) (2022-09-09)", + "date": null, + "body": "### Features\n\n* **mobile:** add setting to always open web view on launch ([#1500](https://github.com/standardnotes/app/issues/1500)) ([320fc3f](https://github.com/standardnotes/app/commit/320fc3fd9630731aabc9ecf30999afa7b74c277f))", + "parsed": { + "_": [ + "mobile: add setting to always open web view on launch (#1500) (320fc3f)" + ], + "Features": [ + "mobile: add setting to always open web view on launch (#1500) (320fc3f)" + ] + } + }, + { + "version": "3.31.29", + "title": "[3.31.29](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.28...@standardnotes/mobile@3.31.29) (2022-09-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.28", + "title": "[3.31.28](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.27...@standardnotes/mobile@3.31.28) (2022-09-08)", + "date": null, + "body": "### Bug Fixes\n\n* let Android to correctly recognize the NativeMobileWeb environment when opening WebView on Android ([#1503](https://github.com/standardnotes/app/issues/1503)) ([461ebc2](https://github.com/standardnotes/app/commit/461ebc27689a6e7dff65ae7345fc8eebf1daf703))", + "parsed": { + "_": [ + "let Android to correctly recognize the NativeMobileWeb environment when opening WebView on Android (#1503) (461ebc2)" + ], + "Bug Fixes": [ + "let Android to correctly recognize the NativeMobileWeb environment when opening WebView on Android (#1503) (461ebc2)" + ] + } + }, + { + "version": "3.31.27", + "title": "[3.31.27](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.26...@standardnotes/mobile@3.31.27) (2022-09-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.26", + "title": "[3.31.26](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.25...@standardnotes/mobile@3.31.26) (2022-09-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.25", + "title": "[3.31.25](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.24...@standardnotes/mobile@3.31.25) (2022-09-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.24", + "title": "[3.31.24](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.23...@standardnotes/mobile@3.31.24) (2022-09-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.23", + "title": "[3.31.23](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.22...@standardnotes/mobile@3.31.23) (2022-09-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.22", + "title": "[3.31.22](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.21...@standardnotes/mobile@3.31.22) (2022-08-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.21", + "title": "[3.31.21](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.20...@standardnotes/mobile@3.31.21) (2022-08-31)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.20", + "title": "[3.31.20](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.19...@standardnotes/mobile@3.31.20) (2022-08-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.19", + "title": "[3.31.19](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.18...@standardnotes/mobile@3.31.19) (2022-08-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.18", + "title": "[3.31.18](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.17...@standardnotes/mobile@3.31.18) (2022-08-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.17", + "title": "[3.31.17](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.16...@standardnotes/mobile@3.31.17) (2022-08-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.16", + "title": "[3.31.16](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.15...@standardnotes/mobile@3.31.16) (2022-08-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.15", + "title": "[3.31.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.14...@standardnotes/mobile@3.31.15) (2022-08-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.14", + "title": "[3.31.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.13...@standardnotes/mobile@3.31.14) (2022-08-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.13", + "title": "[3.31.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.12...@standardnotes/mobile@3.31.13) (2022-08-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.12", + "title": "[3.31.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.11...@standardnotes/mobile@3.31.12) (2022-08-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.11", + "title": "[3.31.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.10...@standardnotes/mobile@3.31.11) (2022-08-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.10", + "title": "[3.31.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.9...@standardnotes/mobile@3.31.10) (2022-08-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.9", + "title": "[3.31.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.8...@standardnotes/mobile@3.31.9) (2022-08-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.8", + "title": "[3.31.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.7...@standardnotes/mobile@3.31.8) (2022-08-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.7", + "title": "[3.31.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.6...@standardnotes/mobile@3.31.7) (2022-08-10)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.6", + "title": "[3.31.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.5...@standardnotes/mobile@3.31.6) (2022-08-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.5", + "title": "[3.31.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.4...@standardnotes/mobile@3.31.5) (2022-08-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.4", + "title": "[3.31.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.3...@standardnotes/mobile@3.31.4) (2022-08-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.3", + "title": "[3.31.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.2...@standardnotes/mobile@3.31.3) (2022-08-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.2", + "title": "[3.31.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.1...@standardnotes/mobile@3.31.2) (2022-08-05)", + "date": null, + "body": "### Bug Fixes\n\n* **files:** filepicker circular dependency ([183f68c](https://github.com/standardnotes/app/commit/183f68c9c1005567ec50bd1a66ca34f775e393dc))\n* **mobile:** add common to metro config ([8a1293f](https://github.com/standardnotes/app/commit/8a1293f66d4d9b17494969db4c7b182ad7338951))\n* **mobile:** add models to metro config ([c2159e7](https://github.com/standardnotes/app/commit/c2159e77f7f8ed5a52121696d49c3850acd78e51))\n* **mobile:** add responses to metro config ([94772bb](https://github.com/standardnotes/app/commit/94772bb7b68f2ee8fee730bb22fd560b60fc64e7))\n* **mobile:** bring back responses and models to metro resolution ([10f40f6](https://github.com/standardnotes/app/commit/10f40f662e6a92202e3fe694d4d0ce1dd2478540))\n* **mobile:** imports only from snjs ([3ce621e](https://github.com/standardnotes/app/commit/3ce621e24c564fe026786ea1269c8bc15bc67ebe))\n* **mobile:** replace component viewer usage with interface ([0825ced](https://github.com/standardnotes/app/commit/0825cedfbeeca1b37b1259b762754a1e3530f498))", + "parsed": { + "_": [ + "files: filepicker circular dependency (183f68c)", + "mobile: add common to metro config (8a1293f)", + "mobile: add models to metro config (c2159e7)", + "mobile: add responses to metro config (94772bb)", + "mobile: bring back responses and models to metro resolution (10f40f6)", + "mobile: imports only from snjs (3ce621e)", + "mobile: replace component viewer usage with interface (0825ced)" + ], + "Bug Fixes": [ + "files: filepicker circular dependency (183f68c)", + "mobile: add common to metro config (8a1293f)", + "mobile: add models to metro config (c2159e7)", + "mobile: add responses to metro config (94772bb)", + "mobile: bring back responses and models to metro resolution (10f40f6)", + "mobile: imports only from snjs (3ce621e)", + "mobile: replace component viewer usage with interface (0825ced)" + ] + } + }, + { + "version": "3.31.1", + "title": "[3.31.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.31.0...@standardnotes/mobile@3.31.1) (2022-08-03)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.31.0", + "title": "[3.31.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.38...@standardnotes/mobile@3.31.0) (2022-08-03)", + "date": null, + "body": "### Features\n\n* **web:** remove web-server and change web to a static website deployment ([#1360](https://github.com/standardnotes/app/issues/1360)) ([483cac9](https://github.com/standardnotes/app/commit/483cac90cfddb13854be1998e7b96b50aee86464))", + "parsed": { + "_": [ + "web: remove web-server and change web to a static website deployment (#1360) (483cac9)" + ], + "Features": [ + "web: remove web-server and change web to a static website deployment (#1360) (483cac9)" + ] + } + }, + { + "version": "3.30.38", + "title": "[3.30.38](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.37...@standardnotes/mobile@3.30.38) (2022-07-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.37", + "title": "[3.30.37](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.36...@standardnotes/mobile@3.30.37) (2022-07-26)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.36", + "title": "[3.30.36](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.35...@standardnotes/mobile@3.30.36) (2022-07-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.35", + "title": "[3.30.35](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.34...@standardnotes/mobile@3.30.35) (2022-07-20)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.34", + "title": "[3.30.34](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.33...@standardnotes/mobile@3.30.34) (2022-07-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.33", + "title": "[3.30.33](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.32...@standardnotes/mobile@3.30.33) (2022-07-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.32", + "title": "[3.30.32](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.31...@standardnotes/mobile@3.30.32) (2022-07-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.31", + "title": "[3.30.31](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.30...@standardnotes/mobile@3.30.31) (2022-07-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.30", + "title": "[3.30.30](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.29...@standardnotes/mobile@3.30.30) (2022-07-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.29", + "title": "[3.30.29](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.28...@standardnotes/mobile@3.30.29) (2022-07-13)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.28", + "title": "[3.30.28](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.27...@standardnotes/mobile@3.30.28) (2022-07-13)", + "date": null, + "body": "### Bug Fixes\n\n* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))", + "parsed": { + "_": [ + "upgrade jest with types to latest version (09e08ca)" + ], + "Bug Fixes": [ + "upgrade jest with types to latest version (09e08ca)" + ] + } + }, + { + "version": "3.30.27", + "title": "[3.30.27](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.26...@standardnotes/mobile@3.30.27) (2022-07-12)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.26", + "title": "[3.30.26](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.25...@standardnotes/mobile@3.30.26) (2022-07-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.25", + "title": "[3.30.25](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.24...@standardnotes/mobile@3.30.25) (2022-07-09)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.24", + "title": "[3.30.24](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.23...@standardnotes/mobile@3.30.24) (2022-07-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.23", + "title": "[3.30.23](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.22...@standardnotes/mobile@3.30.23) (2022-07-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.22", + "title": "[3.30.22](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.21...@standardnotes/mobile@3.30.22) (2022-07-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.21", + "title": "[3.30.21](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.20...@standardnotes/mobile@3.30.21) (2022-07-08)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.20", + "title": "[3.30.20](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.19...@standardnotes/mobile@3.30.20) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.19", + "title": "[3.30.19](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.18...@standardnotes/mobile@3.30.19) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.18", + "title": "[3.30.18](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.17...@standardnotes/mobile@3.30.18) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.17", + "title": "[3.30.17](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.16...@standardnotes/mobile@3.30.17) (2022-07-07)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** component viewer in mobile web ([d901461](https://github.com/standardnotes/app/commit/d9014615f0a146733fbf7d494d0d201068817086))", + "parsed": { + "_": [ + "mobile: component viewer in mobile web (d901461)" + ], + "Bug Fixes": [ + "mobile: component viewer in mobile web (d901461)" + ] + } + }, + { + "version": "3.30.16", + "title": "[3.30.16](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.15...@standardnotes/mobile@3.30.16) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.15", + "title": "[3.30.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.14...@standardnotes/mobile@3.30.15) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.14", + "title": "[3.30.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.13...@standardnotes/mobile@3.30.14) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.13", + "title": "[3.30.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.12...@standardnotes/mobile@3.30.13) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.12", + "title": "[3.30.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.11...@standardnotes/mobile@3.30.12) (2022-07-07)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.11", + "title": "[3.30.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.10...@standardnotes/mobile@3.30.11) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.10", + "title": "[3.30.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.9...@standardnotes/mobile@3.30.10) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.9", + "title": "[3.30.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.8...@standardnotes/mobile@3.30.9) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.8", + "title": "[3.30.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.7...@standardnotes/mobile@3.30.8) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.7", + "title": "[3.30.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.6...@standardnotes/mobile@3.30.7) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.6", + "title": "[3.30.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.5...@standardnotes/mobile@3.30.6) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.5", + "title": "[3.30.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.4...@standardnotes/mobile@3.30.5) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.4", + "title": "[3.30.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.3...@standardnotes/mobile@3.30.4) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.3", + "title": "[3.30.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.2...@standardnotes/mobile@3.30.3) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.2", + "title": "[3.30.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.1...@standardnotes/mobile@3.30.2) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.1", + "title": "[3.30.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.30.0...@standardnotes/mobile@3.30.1) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.30.0", + "title": "[3.30.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.29.0...@standardnotes/mobile@3.30.0) (2022-07-06)", + "date": null, + "body": "### Bug Fixes\n\n* deps on weba and mobile ([d380711](https://github.com/standardnotes/app/commit/d38071168ac343a952643647996fca5f1018f2b1))\n\n### Features\n\n* add snjs package ([0e40469](https://github.com/standardnotes/app/commit/0e40469e2fe868b88860f0f2541364696d8f7957))", + "parsed": { + "_": [ + "deps on weba and mobile (d380711)", + "add snjs package (0e40469)" + ], + "Bug Fixes": [ + "deps on weba and mobile (d380711)" + ], + "Features": [ + "add snjs package (0e40469)" + ] + } + }, + { + "version": "3.29.0", + "title": "[3.29.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.28.3...@standardnotes/mobile@3.29.0) (2022-07-06)", + "date": null, + "body": "### Bug Fixes\n\n* add dompurify to mobile package to fix the build process ([21d8a99](https://github.com/standardnotes/app/commit/21d8a99b3de3dc32e9625d00f9d0c818ff08ac66))\n* missing utils dep on mobile ([e2e9a11](https://github.com/standardnotes/app/commit/e2e9a119841a746d0a6b51e60026b5f542cdf163))\n\n### Features\n\n* add sncrypto client side packages ([6ec6679](https://github.com/standardnotes/app/commit/6ec66795d21bdfa5abfa08c3b79b19b5c4cd0449))", + "parsed": { + "_": [ + "add dompurify to mobile package to fix the build process (21d8a99)", + "missing utils dep on mobile (e2e9a11)", + "add sncrypto client side packages (6ec6679)" + ], + "Bug Fixes": [ + "add dompurify to mobile package to fix the build process (21d8a99)", + "missing utils dep on mobile (e2e9a11)" + ], + "Features": [ + "add sncrypto client side packages (6ec6679)" + ] + } + }, + { + "version": "3.28.3", + "title": "[3.28.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.28.2...@standardnotes/mobile@3.28.3) (2022-07-06)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.28.2", + "title": "[3.28.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.28.1...@standardnotes/mobile@3.28.2) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.28.1", + "title": "[3.28.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.28.0...@standardnotes/mobile@3.28.1) (2022-07-05)", + "date": null, + "body": "### Bug Fixes\n\n* mobile metro config for files and services ([f4cde8f](https://github.com/standardnotes/app/commit/f4cde8f75264d5d4342dd4f0f80dbd2e77061df1))", + "parsed": { + "_": [ + "mobile metro config for files and services (f4cde8f)" + ], + "Bug Fixes": [ + "mobile metro config for files and services (f4cde8f)" + ] + } + }, + { + "version": "3.28.0", + "title": "[3.28.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.13...@standardnotes/mobile@3.28.0) (2022-07-05)", + "date": null, + "body": "### Features\n\n* add filepicker package ([d4188a3](https://github.com/standardnotes/app/commit/d4188a3fa2914a48fd28d80d45269a3eb9a358a8))", + "parsed": { + "_": [ + "add filepicker package (d4188a3)" + ], + "Features": [ + "add filepicker package (d4188a3)" + ] + } + }, + { + "version": "3.27.13", + "title": "[3.27.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.12...@standardnotes/mobile@3.27.13) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.12", + "title": "[3.27.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.11...@standardnotes/mobile@3.27.12) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.11", + "title": "[3.27.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.10...@standardnotes/mobile@3.27.11) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.10", + "title": "[3.27.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.9...@standardnotes/mobile@3.27.10) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.9", + "title": "[3.27.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.8...@standardnotes/mobile@3.27.9) (2022-07-05)", + "date": null, + "body": "### Bug Fixes\n\n* add missing features package on mobile ([7ab2f7a](https://github.com/standardnotes/app/commit/7ab2f7a32d1dc202e8d52678a5f3c97c2b6c0b44))\n* workspace dependencies on mobile ([9c7f713](https://github.com/standardnotes/app/commit/9c7f713baace7d7beff96d997922f200c2004dc2))", + "parsed": { + "_": [ + "add missing features package on mobile (7ab2f7a)", + "workspace dependencies on mobile (9c7f713)" + ], + "Bug Fixes": [ + "add missing features package on mobile (7ab2f7a)", + "workspace dependencies on mobile (9c7f713)" + ] + } + }, + { + "version": "3.27.8", + "title": "[3.27.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.7...@standardnotes/mobile@3.27.8) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.7", + "title": "[3.27.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.6...@standardnotes/mobile@3.27.7) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.6", + "title": "[3.27.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.5...@standardnotes/mobile@3.27.6) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.5", + "title": "[3.27.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.4...@standardnotes/mobile@3.27.5) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.4", + "title": "[3.27.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.3...@standardnotes/mobile@3.27.4) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.3", + "title": "[3.27.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.2...@standardnotes/mobile@3.27.3) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.2", + "title": "[3.27.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.1...@standardnotes/mobile@3.27.2) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.1", + "title": "[3.27.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.27.0...@standardnotes/mobile@3.27.1) (2022-07-05)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.27.0", + "title": "[3.27.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.14...@standardnotes/mobile@3.27.0) (2022-07-05)", + "date": null, + "body": "### Features\n\n* add @standardnotes/encryption package ([#1199](https://github.com/standardnotes/app/issues/1199)) ([e5771fc](https://github.com/standardnotes/app/commit/e5771fcbde827afd178edde3b7bd872734cd3338))", + "parsed": { + "_": [ + "add @standardnotes/encryption package (#1199) (e5771fc)" + ], + "Features": [ + "add @standardnotes/encryption package (#1199) (e5771fc)" + ] + } + }, + { + "version": "3.26.14", + "title": "[3.26.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.13...@standardnotes/mobile@3.26.14) (2022-07-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.13", + "title": "[3.26.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.12...@standardnotes/mobile@3.26.13) (2022-07-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.12", + "title": "[3.26.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.11...@standardnotes/mobile@3.26.12) (2022-07-04)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.11", + "title": "[3.26.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.10...@standardnotes/mobile@3.26.11) (2022-07-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.10", + "title": "[3.26.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.9...@standardnotes/mobile@3.26.10) (2022-07-02)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.9", + "title": "[3.26.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.8...@standardnotes/mobile@3.26.9) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.8", + "title": "[3.26.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.7...@standardnotes/mobile@3.26.8) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.7", + "title": "[3.26.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.6...@standardnotes/mobile@3.26.7) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.6", + "title": "[3.26.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.5...@standardnotes/mobile@3.26.6) (2022-07-01)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.5", + "title": "[3.26.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.4...@standardnotes/mobile@3.26.5) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.4", + "title": "[3.26.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.3...@standardnotes/mobile@3.26.4) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.3", + "title": "[3.26.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.2...@standardnotes/mobile@3.26.3) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.2", + "title": "[3.26.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.1...@standardnotes/mobile@3.26.2) (2022-06-30)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** android icons loading issue ([98ed647](https://github.com/standardnotes/app/commit/98ed6472c079b5f32ee3d82a2c68a6eaca2a58ec))", + "parsed": { + "_": [ + "mobile: android icons loading issue (98ed647)" + ], + "Bug Fixes": [ + "mobile: android icons loading issue (98ed647)" + ] + } + }, + { + "version": "3.26.1", + "title": "[3.26.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.26.0...@standardnotes/mobile@3.26.1) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.26.0", + "title": "[3.26.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.15...@standardnotes/mobile@3.26.0) (2022-06-30)", + "date": null, + "body": "### Features\n\n* **dev:** option to render web app inside the mobile app ([#1164](https://github.com/standardnotes/app/issues/1164)) ([4f5d092](https://github.com/standardnotes/app/commit/4f5d092f89a5488dc4c9f74730a110845230f2b3))", + "parsed": { + "_": [ + "dev: option to render web app inside the mobile app (#1164) (4f5d092)" + ], + "Features": [ + "dev: option to render web app inside the mobile app (#1164) (4f5d092)" + ] + } + }, + { + "version": "3.25.15", + "title": "[3.25.15](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.14...@standardnotes/mobile@3.25.15) (2022-06-30)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.14", + "title": "[3.25.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.13...@standardnotes/mobile@3.25.14) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.13", + "title": "[3.25.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.12...@standardnotes/mobile@3.25.13) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.12", + "title": "[3.25.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.11...@standardnotes/mobile@3.25.12) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.11", + "title": "[3.25.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.10...@standardnotes/mobile@3.25.11) (2022-06-29)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.10", + "title": "[3.25.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.9...@standardnotes/mobile@3.25.10) (2022-06-28)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** turn native textview into uncontrolled component ([#1176](https://github.com/standardnotes/app/issues/1176)) ([d198625](https://github.com/standardnotes/app/commit/d198625cfab1d3fb579b897b748699f021e26578))", + "parsed": { + "_": [ + "mobile: turn native textview into uncontrolled component (#1176) (d198625)" + ], + "Bug Fixes": [ + "mobile: turn native textview into uncontrolled component (#1176) (d198625)" + ] + } + }, + { + "version": "3.25.9", + "title": "[3.25.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.8...@standardnotes/mobile@3.25.9) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.8", + "title": "[3.25.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.7...@standardnotes/mobile@3.25.8) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.7", + "title": "[3.25.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.6...@standardnotes/mobile@3.25.7) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.6", + "title": "[3.25.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.5...@standardnotes/mobile@3.25.6) (2022-06-28)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.5", + "title": "[3.25.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.4...@standardnotes/mobile@3.25.5) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.4", + "title": "[3.25.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.3...@standardnotes/mobile@3.25.4) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.3", + "title": "[3.25.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.2...@standardnotes/mobile@3.25.3) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.2", + "title": "[3.25.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.1...@standardnotes/mobile@3.25.2) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.1", + "title": "[3.25.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.25.0...@standardnotes/mobile@3.25.1) (2022-06-27)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.25.0", + "title": "[3.25.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.8...@standardnotes/mobile@3.25.0) (2022-06-27)", + "date": null, + "body": "### Features\n\n* deprecated editors ([#1166](https://github.com/standardnotes/app/issues/1166)) ([60ca415](https://github.com/standardnotes/app/commit/60ca4150446f9a14bb6a31416686c6d07a7d0cd9))", + "parsed": { + "_": [ + "deprecated editors (#1166) (60ca415)" + ], + "Features": [ + "deprecated editors (#1166) (60ca415)" + ] + } + }, + { + "version": "3.24.8", + "title": "[3.24.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.7...@standardnotes/mobile@3.24.8) (2022-06-25)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.7", + "title": "[3.24.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.6...@standardnotes/mobile@3.24.7) (2022-06-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.6", + "title": "[3.24.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.5...@standardnotes/mobile@3.24.6) (2022-06-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.5", + "title": "[3.24.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.4...@standardnotes/mobile@3.24.5) (2022-06-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.4", + "title": "[3.24.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.3...@standardnotes/mobile@3.24.4) (2022-06-24)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** force redownload of themes if unable to parse first time ([#1150](https://github.com/standardnotes/app/issues/1150)) ([e834527](https://github.com/standardnotes/app/commit/e83452785cb14a2e6e452bed5210d0fb2a6d7e28))", + "parsed": { + "_": [ + "mobile: force redownload of themes if unable to parse first time (#1150) (e834527)" + ], + "Bug Fixes": [ + "mobile: force redownload of themes if unable to parse first time (#1150) (e834527)" + ] + } + }, + { + "version": "3.24.3", + "title": "[3.24.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.2...@standardnotes/mobile@3.24.3) (2022-06-24)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.2", + "title": "[3.24.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.2-alpha.2...@standardnotes/mobile@3.24.2) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.2-alpha.2", + "title": "[3.24.2-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.2-alpha.1...@standardnotes/mobile@3.24.2-alpha.2) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.2-alpha.1", + "title": "[3.24.2-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.2-alpha.0...@standardnotes/mobile@3.24.2-alpha.1) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.2-alpha.0", + "title": "[3.24.2-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.1...@standardnotes/mobile@3.24.2-alpha.0) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.1", + "title": "[3.24.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.1-alpha.1...@standardnotes/mobile@3.24.1) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.1-alpha.1", + "title": "[3.24.1-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.1-alpha.0...@standardnotes/mobile@3.24.1-alpha.1) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.1-alpha.0", + "title": "[3.24.1-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0...@standardnotes/mobile@3.24.1-alpha.0) (2022-06-23)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.0", + "title": "[3.24.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.10...@standardnotes/mobile@3.24.0) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.0-alpha.10", + "title": "[3.24.0-alpha.10](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.9...@standardnotes/mobile@3.24.0-alpha.10) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.0-alpha.9", + "title": "[3.24.0-alpha.9](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.8...@standardnotes/mobile@3.24.0-alpha.9) (2022-06-22)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** enable workspaces ([#1139](https://github.com/standardnotes/app/issues/1139)) ([4db63e3](https://github.com/standardnotes/app/commit/4db63e3a63d18bb17ce62fb846455965b81195df))", + "parsed": { + "_": [ + "mobile: enable workspaces (#1139) (4db63e3)" + ], + "Bug Fixes": [ + "mobile: enable workspaces (#1139) (4db63e3)" + ] + } + }, + { + "version": "3.24.0-alpha.8", + "title": "[3.24.0-alpha.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.7...@standardnotes/mobile@3.24.0-alpha.8) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.0-alpha.7", + "title": "[3.24.0-alpha.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.6...@standardnotes/mobile@3.24.0-alpha.7) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.0-alpha.6", + "title": "[3.24.0-alpha.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.5...@standardnotes/mobile@3.24.0-alpha.6) (2022-06-22)", + "date": null, + "body": "### Bug Fixes\n\n* restore top border of \"Manage Sessions\" row ([#1134](https://github.com/standardnotes/app/issues/1134)) ([0608203](https://github.com/standardnotes/app/commit/0608203db5d6cee25a9245441333d55eae5b7f29))", + "parsed": { + "_": [ + "restore top border of \"Manage Sessions\" row (#1134) (0608203)" + ], + "Bug Fixes": [ + "restore top border of \"Manage Sessions\" row (#1134) (0608203)" + ] + } + }, + { + "version": "3.24.0-alpha.5", + "title": "[3.24.0-alpha.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.4...@standardnotes/mobile@3.24.0-alpha.5) (2022-06-22)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** workspaces keychain ([112ef2a](https://github.com/standardnotes/app/commit/112ef2a2c80f6f80a6b0571e89ad5daa50749d5c))", + "parsed": { + "_": [ + "mobile: workspaces keychain (112ef2a)" + ], + "Bug Fixes": [ + "mobile: workspaces keychain (112ef2a)" + ] + } + }, + { + "version": "3.24.0-alpha.4", + "title": "[3.24.0-alpha.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.3...@standardnotes/mobile@3.24.0-alpha.4) (2022-06-22)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.0-alpha.3", + "title": "[3.24.0-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.2...@standardnotes/mobile@3.24.0-alpha.3) (2022-06-21)", + "date": null, + "body": "### Bug Fixes\n\n* use a specific feature flag for workspace ([#1133](https://github.com/standardnotes/app/issues/1133)) ([b259190](https://github.com/standardnotes/app/commit/b25919099f4d98fd09aa312b3c02fd685fad2680))", + "parsed": { + "_": [ + "use a specific feature flag for workspace (#1133) (b259190)" + ], + "Bug Fixes": [ + "use a specific feature flag for workspace (#1133) (b259190)" + ] + } + }, + { + "version": "3.24.0-alpha.2", + "title": "[3.24.0-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.1...@standardnotes/mobile@3.24.0-alpha.2) (2022-06-21)", + "date": null, + "body": "### Bug Fixes\n\n* mobile workspace related fixes ([#1130](https://github.com/standardnotes/app/issues/1130)) ([3b4797c](https://github.com/standardnotes/app/commit/3b4797c243a12d014a830aa88412305e96fadf2f))", + "parsed": { + "_": [ + "mobile workspace related fixes (#1130) (3b4797c)" + ], + "Bug Fixes": [ + "mobile workspace related fixes (#1130) (3b4797c)" + ] + } + }, + { + "version": "3.24.0-alpha.1", + "title": "[3.24.0-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.24.0-alpha.0...@standardnotes/mobile@3.24.0-alpha.1) (2022-06-21)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.24.0-alpha.0", + "title": "[3.24.0-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.8...@standardnotes/mobile@3.24.0-alpha.0) (2022-06-21)", + "date": null, + "body": "### Features\n\n* mobile workspaces ([#1093](https://github.com/standardnotes/app/issues/1093)) ([7d60dfe](https://github.com/standardnotes/app/commit/7d60dfee73cbc5d2f887ef261337d3d76d3249b8))", + "parsed": { + "_": [ + "mobile workspaces (#1093) (7d60dfe)" + ], + "Features": [ + "mobile workspaces (#1093) (7d60dfe)" + ] + } + }, + { + "version": "3.23.8", + "title": "[3.23.8](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.8-alpha.0...@standardnotes/mobile@3.23.8) (2022-06-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.8-alpha.0", + "title": "[3.23.8-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.7...@standardnotes/mobile@3.23.8-alpha.0) (2022-06-18)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** white screen issue with switching notes on iPad ([ea37bbe](https://github.com/standardnotes/app/commit/ea37bbe53fb46269bd1d13bd5cf85d328690c232))", + "parsed": { + "_": [ + "mobile: white screen issue with switching notes on iPad (ea37bbe)" + ], + "Bug Fixes": [ + "mobile: white screen issue with switching notes on iPad (ea37bbe)" + ] + } + }, + { + "version": "3.23.7", + "title": "[3.23.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.7-alpha.0...@standardnotes/mobile@3.23.7) (2022-06-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.7-alpha.0", + "title": "[3.23.7-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.6...@standardnotes/mobile@3.23.7-alpha.0) (2022-06-18)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.6", + "title": "[3.23.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.6-alpha.0...@standardnotes/mobile@3.23.6) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.6-alpha.0", + "title": "[3.23.6-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.4-alpha.3...@standardnotes/mobile@3.23.6-alpha.0) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.5", + "title": "[3.23.5](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.4-alpha.1...@standardnotes/mobile@3.23.5) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.4", + "title": "[3.23.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.4-alpha.1...@standardnotes/mobile@3.23.4) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.4-alpha.1", + "title": "[3.23.4-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.4-alpha.0...@standardnotes/mobile@3.23.4-alpha.1) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.4-alpha.0", + "title": "[3.23.4-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.3...@standardnotes/mobile@3.23.4-alpha.0) (2022-06-17)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.3", + "title": "3.23.3 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.2", + "title": "3.23.2 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1", + "title": "[3.23.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.14...@standardnotes/mobile@3.23.1) (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.14", + "title": "[3.23.1-alpha.14](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.13...@standardnotes/mobile@3.23.1-alpha.14) (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.13", + "title": "[3.23.1-alpha.13](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.12...@standardnotes/mobile@3.23.1-alpha.13) (2022-06-16)", + "date": null, + "body": "### Bug Fixes\n\n* **mobile:** use package version directly ([c4642ce](https://github.com/standardnotes/app/commit/c4642ceb9967a4515dbe20cde5fec5c6f2dedaeb))", + "parsed": { + "_": [ + "mobile: use package version directly (c4642ce)" + ], + "Bug Fixes": [ + "mobile: use package version directly (c4642ce)" + ] + } + }, + { + "version": "3.23.1-alpha.12", + "title": "[3.23.1-alpha.12](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.11...@standardnotes/mobile@3.23.1-alpha.12) (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.11", + "title": "[3.23.1-alpha.11](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.10...@standardnotes/mobile@3.23.1-alpha.11) (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.10", + "title": "3.23.1-alpha.10 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.9", + "title": "3.23.1-alpha.9 (2022-06-16)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.8", + "title": "3.23.1-alpha.8 (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.7", + "title": "[3.23.1-alpha.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.6...@standardnotes/mobile@3.23.1-alpha.7) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.6", + "title": "[3.23.1-alpha.6](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.5...@standardnotes/mobile@3.23.1-alpha.6) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.5", + "title": "3.23.1-alpha.5 (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.4", + "title": "[3.23.1-alpha.4](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.3...@standardnotes/mobile@3.23.1-alpha.4) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.3", + "title": "[3.23.1-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.2...@standardnotes/mobile@3.23.1-alpha.3) (2022-06-15)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.2", + "title": "[3.23.1-alpha.2](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.1...@standardnotes/mobile@3.23.1-alpha.2) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.1", + "title": "[3.23.1-alpha.1](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.1-alpha.0...@standardnotes/mobile@3.23.1-alpha.1) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.1-alpha.0", + "title": "[3.23.1-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.0...@standardnotes/mobile@3.23.1-alpha.0) (2022-06-14)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/mobile", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/mobile" + ] + } + }, + { + "version": "3.23.0", + "title": "3.23.0 (2022-06-14)", + "date": null, + "body": "### Bug Fixes\n\n* icons package ([4df06c1](https://github.com/standardnotes/app/commit/4df06c1d1a59f95ce735f87c106066ea28e5816c))\n\n### Features\n\n* mobile app package ([#1075](https://github.com/standardnotes/app/issues/1075)) ([8248a38](https://github.com/standardnotes/app/commit/8248a38280cb7c92da2b2e9c7db298f34ae8ffdf))\n* **wip:** components monorepo ([#1082](https://github.com/standardnotes/app/issues/1082)) ([e3d6001](https://github.com/standardnotes/app/commit/e3d6001a178e11e619ca724b2b155b7c0405c023))", + "parsed": { + "_": [ + "icons package (4df06c1)", + "mobile app package (#1075) (8248a38)", + "wip: components monorepo (#1082) (e3d6001)" + ], + "Bug Fixes": [ + "icons package (4df06c1)" + ], + "Features": [ + "mobile app package (#1075) (8248a38)", + "wip: components monorepo (#1082) (e3d6001)" + ] + } + }, + { + "version": "3.22.0", + "title": "3.22.0 (2022-06-10)", + "date": null, + "body": "### Bug Fixes\n\n* icons package ([4df06c1](https://github.com/standardnotes/app/commit/4df06c1d1a59f95ce735f87c106066ea28e5816c))\n\n### Features\n\n* mobile app package ([#1075](https://github.com/standardnotes/app/issues/1075)) ([8248a38](https://github.com/standardnotes/app/commit/8248a38280cb7c92da2b2e9c7db298f34ae8ffdf))\n* **wip:** components monorepo ([#1082](https://github.com/standardnotes/app/issues/1082)) ([e3d6001](https://github.com/standardnotes/app/commit/e3d6001a178e11e619ca724b2b155b7c0405c023))", + "parsed": { + "_": [ + "icons package (4df06c1)", + "mobile app package (#1075) (8248a38)", + "wip: components monorepo (#1082) (e3d6001)" + ], + "Bug Fixes": [ + "icons package (4df06c1)" + ], + "Features": [ + "mobile app package (#1075) (8248a38)", + "wip: components monorepo (#1082) (e3d6001)" + ] + } + }, + { + "version": "3.21.0", + "title": "3.21.0 (2022-06-10)", + "date": null, + "body": "### Bug Fixes\n\n* icons package ([4df06c1](https://github.com/standardnotes/app/commit/4df06c1d1a59f95ce735f87c106066ea28e5816c))\n\n### Features\n\n* mobile app package ([#1075](https://github.com/standardnotes/app/issues/1075)) ([8248a38](https://github.com/standardnotes/app/commit/8248a38280cb7c92da2b2e9c7db298f34ae8ffdf))", + "parsed": { + "_": [ + "icons package (4df06c1)", + "mobile app package (#1075) (8248a38)" + ], + "Bug Fixes": [ + "icons package (4df06c1)" + ], + "Features": [ + "mobile app package (#1075) (8248a38)" + ] + } + } + ], + "title": "Change Log", + "description": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines." +} \ No newline at end of file diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 16cbe567b..d69506041 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,5 @@ { "name": "@standardnotes/mobile", - "version": "3.46.31", "author": "Standard Notes.", "private": true, "license": "AGPL-3.0-or-later", diff --git a/packages/mobile/src/MobileWebAppContainer.tsx b/packages/mobile/src/MobileWebAppContainer.tsx index 7bc1f0e28..070f620c2 100644 --- a/packages/mobile/src/MobileWebAppContainer.tsx +++ b/packages/mobile/src/MobileWebAppContainer.tsx @@ -4,7 +4,6 @@ import { Keyboard, Platform } from 'react-native' import VersionInfo from 'react-native-version-info' import { WebView, WebViewMessageEvent } from 'react-native-webview' import { OnShouldStartLoadWithRequest } from 'react-native-webview/lib/WebViewTypes' -import pjson from '../package.json' import { AndroidBackHandlerService } from './AndroidBackHandlerService' import { AppStateObserverService } from './AppStateObserverService' import { ColorSchemeObserverService } from './ColorSchemeObserverService' @@ -129,7 +128,7 @@ const MobileWebAppContents = ({ destroyAndReload }: { destroyAndReload: () => vo const WebProcessDeviceInterface = ` class WebProcessDeviceInterface { constructor(messageSender) { - this.appVersion = '${pjson.version} (${VersionInfo.buildVersion})' + this.appVersion = '${VersionInfo.appVersion} (${VersionInfo.buildVersion})' this.environment = 3 this.platform = ${device.platform} this.databases = [] diff --git a/packages/releases/src/build-json.mjs b/packages/releases/src/build-json.mjs index e7d9ac615..32af26539 100644 --- a/packages/releases/src/build-json.mjs +++ b/packages/releases/src/build-json.mjs @@ -5,13 +5,13 @@ import { writeJson, ensureDirExists } from '../../../scripts/ScriptUtils.mjs' const CdnUrl = 'https://github.com/standardnotes/app/releases/download/' const DesktopPackageName = '@standardnotes/desktop' -const DesktopVersion = Desktop.version +const DesktopVersion = Web.version const BaseFileName = `standard-notes-${DesktopVersion}` const ReleaseUrl = `${CdnUrl}${DesktopPackageName}@${DesktopVersion}/${BaseFileName}`.replaceAll('@', '%40') const Versions = { - [Desktop.name]: Desktop.version, - [Mobile.name]: Mobile.version, + [Desktop.name]: Web.version, + [Mobile.name]: Web.version, [Web.name]: Web.version, } diff --git a/packages/services/src/Domain/Storage/StorageKeys.ts b/packages/services/src/Domain/Storage/StorageKeys.ts index 67775fd1c..878fc3f4e 100644 --- a/packages/services/src/Domain/Storage/StorageKeys.ts +++ b/packages/services/src/Domain/Storage/StorageKeys.ts @@ -39,6 +39,7 @@ export enum StorageKey { DeinitMode = 'deinit_mode', CodeVerifier = 'code_verifier', LaunchPriorityUuids = 'launch_priority_uuids', + LastReadChangelogVersion = 'last_read_changelog_version', } export enum NonwrappedStorageKey { diff --git a/packages/snjs/lib/Application/Application.ts b/packages/snjs/lib/Application/Application.ts index 77bca2f47..14cbccc71 100644 --- a/packages/snjs/lib/Application/Application.ts +++ b/packages/snjs/lib/Application/Application.ts @@ -291,6 +291,10 @@ export class SNApplication implements ApplicationInterface, AppGroupManagedAppli return this.alertService } + public get storage(): ExternalServices.StorageServiceInterface { + return this.diskStorageService + } + public computePrivateUsername(username: string): Promise { return ComputePrivateUsername(this.options.crypto, username) } diff --git a/packages/ui-services/src/Changelog/Changelog.ts b/packages/ui-services/src/Changelog/Changelog.ts new file mode 100644 index 000000000..5bbd926f2 --- /dev/null +++ b/packages/ui-services/src/Changelog/Changelog.ts @@ -0,0 +1,13 @@ +export type ChangelogVersion = { + version: string | null + title: string + date: string | null + body: string + parsed: Record +} + +export interface Changelog { + title: string + description: string + versions: Array +} diff --git a/packages/ui-services/src/Changelog/ChangelogService.ts b/packages/ui-services/src/Changelog/ChangelogService.ts new file mode 100644 index 000000000..bf1790bb5 --- /dev/null +++ b/packages/ui-services/src/Changelog/ChangelogService.ts @@ -0,0 +1,78 @@ +import { Environment } from '@standardnotes/models' +import { StorageServiceInterface, StorageKey } from '@standardnotes/services' +import { Changelog, ChangelogVersion } from './Changelog' +import { ChangelogServiceInterface } from './ChangelogServiceInterface' +import { LegacyWebToDesktopVersionMapping } from './LegacyDesktopMapping' +import { LegacyWebToMobileVersionMapping } from './LegacyMobileMapping' + +const WebChangelogUrl = 'https://raw.githubusercontent.com/standardnotes/app/main/packages/web/CHANGELOG.md.json' +const DesktopDownloadsUrlBase = 'https://github.com/standardnotes/app/releases/tag/%40standardnotes%2Fdesktop%40' + +export class ChangelogService implements ChangelogServiceInterface { + private changeLog?: Changelog + + constructor(private environment: Environment, private diskService: StorageServiceInterface) {} + + private async performDownloadChangelog(): Promise { + const response = await fetch(WebChangelogUrl) + const changelog = await response.text() + const parsedData = JSON.parse(changelog) + return parsedData + } + + public async getChangelog(): Promise { + if (this.changeLog) { + return this.changeLog + } + + this.changeLog = await this.performDownloadChangelog() + + if (this.environment !== Environment.Web) { + const legacyMapping = this.getLegacyMapping() + + this.changeLog.versions = this.changeLog.versions.map((versionRecord) => { + const versionString = versionRecord.version || '' + return { + ...versionRecord, + version: legacyMapping[versionString] || versionRecord.version, + } + }) + } + + return this.changeLog + } + + public markAsRead(): void { + if (!this.changeLog) { + return + } + + this.diskService.setValue(StorageKey.LastReadChangelogVersion, this.changeLog.versions[0].version) + } + + public getLastReadVersion(): string | undefined { + return this.diskService.getValue(StorageKey.LastReadChangelogVersion) + } + + public async getVersions(): Promise { + const changelog = await this.getChangelog() + + return changelog.versions + } + + private getLegacyMapping(): Record { + return this.environment === Environment.Desktop + ? LegacyWebToDesktopVersionMapping + : this.environment === Environment.Mobile + ? LegacyWebToMobileVersionMapping + : {} + } + + public getDesktopDownloadsUrl(version: string): string { + return DesktopDownloadsUrlBase + version + } + + public getDesktopVersionForWebVersion(webVersion: string): string { + return LegacyWebToDesktopVersionMapping[webVersion] ?? webVersion + } +} diff --git a/packages/ui-services/src/Changelog/ChangelogServiceInterface.ts b/packages/ui-services/src/Changelog/ChangelogServiceInterface.ts new file mode 100644 index 000000000..d0313d5a2 --- /dev/null +++ b/packages/ui-services/src/Changelog/ChangelogServiceInterface.ts @@ -0,0 +1,10 @@ +import { Changelog, ChangelogVersion } from './Changelog' + +export interface ChangelogServiceInterface { + getChangelog(): Promise + getVersions(): Promise + getDesktopDownloadsUrl(version: string): string + getDesktopVersionForWebVersion(webVersion: string): string + markAsRead(): void + getLastReadVersion(): string | undefined +} diff --git a/packages/ui-services/src/Changelog/LegacyDesktopMapping.ts b/packages/ui-services/src/Changelog/LegacyDesktopMapping.ts new file mode 100644 index 000000000..b6c0c223a --- /dev/null +++ b/packages/ui-services/src/Changelog/LegacyDesktopMapping.ts @@ -0,0 +1,351 @@ +/** + * Before 11/23/2022, web and desktop used independent semantic versioning. After this point, desktop automatically + * uses web's versioning. The mapping below allows us to see what particular web version a legacy desktop version maps to + */ +export const LegacyWebToDesktopVersionMapping: Record = { + '3.107.0': '3.101.2', + '3.106.0': '3.101.1', + '3.105.0': '3.101.0', + '3.104.1': '3.100.18', + '3.104.0': '3.100.17', + '3.103.2': '3.100.16', + '3.103.1': '3.100.15', + '3.103.0': '3.100.14', + '3.102.0': '3.100.13', + '3.101.2': '3.100.12', + '3.101.1': '3.100.11', + '3.101.0': '3.100.10', + '3.100.8': '3.100.9', + '3.100.7': '3.100.8', + '3.100.6': '3.100.7', + '3.100.5': '3.100.6', + '3.100.4': '3.100.5', + '3.100.3': '3.100.4', + '3.100.2': '3.100.3', + '3.100.1': '3.100.2', + '3.100.0': '3.100.1', + '3.99.0': '3.100.0', + '3.98.2': '3.23.301', + '3.98.1': '3.23.300', + '3.98.0': '3.23.299', + '3.97.0': '3.23.298', + '3.96.1': '3.23.297', + '3.96.0': '3.23.296', + '3.95.1': '3.23.295', + '3.95.0': '3.23.294', + '3.94.2': '3.23.293', + '3.94.1': '3.23.292', + '3.94.0': '3.23.291', + '3.93.19': '3.23.290', + '3.93.18': '3.23.289', + '3.93.17': '3.23.288', + '3.93.16': '3.23.287', + '3.93.15': '3.23.286', + '3.93.14': '3.23.285', + '3.93.13': '3.23.284', + '3.93.12': '3.23.283', + '3.93.11': '3.23.282', + '3.93.10': '3.23.281', + '3.93.9': '3.23.280', + '3.93.8': '3.23.279', + '3.93.7': '3.23.278', + '3.93.6': '3.23.277', + '3.93.5': '3.23.276', + '3.93.4': '3.23.275', + '3.93.3': '3.23.274', + '3.93.2': '3.23.273', + '3.93.1': '3.23.272', + '3.93.0': '3.23.271', + '3.92.0': '3.23.270', + '3.91.1': '3.23.269', + '3.91.0': '3.23.268', + '3.90.11': '3.23.267', + '3.90.10': '3.23.266', + '3.90.9': '3.23.265', + '3.90.8': '3.23.264', + '3.90.7': '3.23.263', + '3.90.6': '3.23.262', + '3.90.5': '3.23.261', + '3.90.4': '3.23.260', + '3.90.3': '3.23.259', + '3.90.2': '3.23.258', + '3.90.1': '3.23.257', + '3.90.0': '3.23.256', + '3.89.0': '3.23.255', + '3.88.1': '3.23.254', + '3.88.0': '3.23.253', + '3.87.2': '3.23.252', + '3.87.1': '3.23.251', + '3.87.0': '3.23.250', + '3.86.0': '3.23.249', + '3.85.2': '3.23.248', + '3.85.1': '3.23.247', + '3.85.0': '3.23.246', + '3.84.7': '3.23.245', + '3.84.6': '3.23.244', + '3.84.5': '3.23.243', + '3.84.4': '3.23.242', + '3.84.3': '3.23.241', + '3.84.2': '3.23.240', + '3.84.1': '3.23.239', + '3.84.0': '3.23.238', + '3.83.0': '3.23.237', + '3.82.6': '3.23.236', + '3.82.5': '3.23.235', + '3.82.4': '3.23.234', + '3.82.3': '3.23.233', + '3.82.2': '3.23.232', + '3.82.1': '3.23.231', + '3.82.0': '3.23.230', + '3.81.0': '3.23.229', + '3.80.1': '3.23.228', + '3.80.0': '3.23.227', + '3.79.0': '3.23.226', + '3.78.1': '3.23.225', + '3.78.0': '3.23.224', + '3.77.1': '3.23.223', + '3.77.0': '3.23.222', + '3.76.2': '3.23.221', + '3.76.1': '3.23.220', + '3.76.0': '3.23.219', + '3.75.1': '3.23.218', + '3.75.0': '3.23.217', + '3.74.0': '3.23.216', + '3.73.0': '3.23.215', + '3.72.4': '3.23.214', + '3.72.3': '3.23.213', + '3.72.2': '3.23.212', + '3.72.1': '3.23.211', + '3.72.0': '3.23.210', + '3.71.8': '3.23.209', + '3.71.7': '3.23.208', + '3.71.6': '3.23.207', + '3.71.5': '3.23.206', + '3.71.4': '3.23.205', + '3.71.3': '3.23.204', + '3.71.2': '3.23.203', + '3.71.1': '3.23.202', + '3.71.0': '3.23.201', + '3.70.5': '3.23.200', + '3.70.4': '3.23.199', + '3.70.3': '3.23.198', + '3.70.2': '3.23.197', + '3.70.1': '3.23.196', + '3.70.0': '3.23.195', + '3.69.1': '3.23.194', + '3.69.0': '3.23.193', + '3.68.6': '3.23.192', + '3.68.5': '3.23.191', + '3.68.4': '3.23.190', + '3.68.3': '3.23.189', + '3.68.2': '3.23.188', + '3.68.1': '3.23.187', + '3.68.0': '3.23.186', + '3.67.4': '3.23.185', + '3.67.3': '3.23.184', + '3.67.2': '3.23.183', + '3.67.1': '3.23.182', + '3.67.0': '3.23.181', + '3.66.0': '3.23.180', + '3.65.0': '3.23.179', + '3.64.0': '3.23.178', + '3.63.3': '3.23.177', + '3.63.2': '3.23.176', + '3.63.1': '3.23.175', + '3.63.0': '3.23.174', + '3.62.4': '3.23.173', + '3.62.3': '3.23.172', + '3.62.2': '3.23.171', + '3.62.1': '3.23.170', + '3.62.0': '3.23.169', + '3.61.0': '3.23.168', + '3.60.0': '3.23.167', + '3.59.3': '3.23.166', + '3.59.2': '3.23.165', + '3.59.1': '3.23.164', + '3.59.0': '3.23.163', + '3.58.1': '3.23.162', + '3.58.0': '3.23.161', + '3.57.3': '3.23.160', + '3.57.2': '3.23.159', + '3.57.1': '3.23.158', + '3.57.0': '3.23.157', + '3.56.0': '3.23.156', + '3.55.2': '3.23.155', + '3.55.1': '3.23.154', + '3.55.0': '3.23.153', + '3.54.6': '3.23.152', + '3.54.5': '3.23.151', + '3.54.4': '3.23.150', + '3.54.3': '3.23.149', + '3.54.2': '3.23.148', + '3.54.1': '3.23.147', + '3.54.0': '3.23.146', + '3.53.0': '3.23.145', + '3.52.1': '3.23.144', + '3.52.0': '3.23.143', + '3.51.0': '3.23.142', + '3.50.6': '3.23.141', + '3.50.5': '3.23.140', + '3.50.4': '3.23.139', + '3.50.3': '3.23.138', + '3.50.2': '3.23.137', + '3.50.1': '3.23.136', + '3.50.0': '3.23.135', + '3.49.3': '3.23.134', + '3.49.2': '3.23.133', + '3.49.1': '3.23.132', + '3.49.0': '3.23.131', + '3.48.3': '3.23.130', + '3.48.2': '3.23.129', + '3.48.1': '3.23.128', + '3.48.0': '3.23.127', + '3.47.3': '3.23.126', + '3.47.2': '3.23.125', + '3.47.1': '3.23.124', + '3.47.0': '3.23.123', + '3.46.3': '3.23.122', + '3.46.2': '3.23.121', + '3.46.1': '3.23.120', + '3.46.0': '3.23.119', + '3.45.18': '3.23.118', + '3.45.17': '3.23.117', + '3.45.16': '3.23.116', + '3.45.15': '3.23.115', + '3.45.14': '3.23.114', + '3.45.13': '3.23.113', + '3.45.12': '3.23.112', + '3.45.11': '3.23.111', + '3.45.10': '3.23.110', + '3.45.9': '3.23.109', + '3.45.8': '3.23.108', + '3.45.7': '3.23.107', + '3.45.6': '3.23.106', + '3.45.5': '3.23.105', + '3.45.4': '3.23.104', + '3.45.3': '3.23.103', + '3.45.2': '3.23.102', + '3.45.1': '3.23.101', + '3.45.0': '3.23.100', + '3.44.7': '3.23.99', + '3.44.6': '3.23.98', + '3.44.5': '3.23.97', + '3.44.4': '3.23.96', + '3.44.3': '3.23.95', + '3.44.2': '3.23.94', + '3.44.1': '3.23.93', + '3.44.0': '3.23.92', + '3.43.1': '3.23.91', + '3.43.0': '3.23.90', + '3.42.1': '3.23.89', + '3.42.0': '3.23.88', + '3.41.3': '3.23.87', + '3.41.2': '3.23.86', + '3.41.1': '3.23.85', + '3.41.0': '3.23.84', + '3.40.7': '3.23.83', + '3.40.6': '3.23.82', + '3.40.5': '3.23.81', + '3.40.4': '3.23.80', + '3.40.3': '3.23.79', + '3.40.2': '3.23.78', + '3.40.1': '3.23.77', + '3.40.0': '3.23.76', + '3.39.1': '3.23.75', + '3.39.0': '3.23.74', + '3.38.6': '3.23.73', + '3.38.5': '3.23.72', + '3.38.4': '3.23.71', + '3.38.3': '3.23.70', + '3.38.2': '3.23.69', + '3.38.1': '3.23.68', + '3.38.0': '3.23.67', + '3.37.7': '3.23.66', + '3.37.6': '3.23.65', + '3.37.5': '3.23.64', + '3.37.4': '3.23.63', + '3.37.3': '3.23.62', + '3.37.2': '3.23.61', + '3.37.1': '3.23.60', + '3.37.0': '3.23.59', + '3.36.0': '3.23.58', + '3.35.2': '3.23.57', + '3.35.1': '3.23.56', + '3.35.0': '3.23.55', + '3.34.0': '3.23.54', + '3.33.8': '3.23.53', + '3.33.7': '3.23.52', + '3.33.6': '3.23.51', + '3.33.5': '3.23.50', + '3.33.4': '3.23.49', + '3.33.3': '3.23.48', + '3.33.2': '3.23.47', + '3.33.1': '3.23.46', + '3.33.0': '3.23.45', + '3.32.0': '3.23.44', + '3.31.1': '3.23.43', + '3.31.0': '3.23.42', + '3.30.0': '3.23.41', + '3.29.2': '3.23.40', + '3.29.1': '3.23.39', + '3.29.0': '3.23.38', + '3.28.1': '3.23.37', + '3.28.0': '3.23.36', + '3.27.7': '3.23.35', + '3.27.6': '3.23.34', + '3.27.5': '3.23.33', + '3.27.4': '3.23.32', + '3.27.3': '3.23.31', + '3.27.2': '3.23.30', + '3.27.1': '3.23.29', + '3.27.0': '3.23.28', + '3.26.4': '3.23.27', + '3.26.3': '3.23.26', + '3.26.2': '3.23.25', + '3.26.1': '3.23.24', + '3.26.0': '3.23.23', + '3.25.0': '3.23.22', + '3.24.6': '3.23.21', + '3.24.5': '3.23.20', + '3.24.4': '3.23.19', + '3.24.3': '3.23.18', + '3.24.3-alpha.1': '3.23.17', + '3.24.3-alpha.0': '3.23.16', + '3.24.2': '3.23.15', + '3.24.2-alpha.1': '3.23.14', + '3.24.2-alpha.0': '3.23.13', + '3.24.1': '3.23.12', + '3.24.1-alpha.0': '3.23.11', + '3.24.0': '3.23.10', + '3.24.0-alpha.7': '3.23.9', + '3.24.0-alpha.6': '3.23.8', + '3.24.0-alpha.5': '3.23.7', + '3.24.0-alpha.4': '3.23.6', + '3.24.0-alpha.3': '3.23.5', + '3.24.0-alpha.2': '3.23.4', + '3.24.0-alpha.1': '3.23.3', + '3.24.0-alpha.0': '3.23.2', + '3.23.0': '3.23.1', + '3.23.0-alpha.1': '3.23.0', + '3.23.0-alpha.0': '3.22.21', + '3.22.7-alpha.0': '3.22.20', + '3.22.6': '3.22.19', + '3.22.6-alpha.0': '3.22.18', + '3.22.5': '3.22.17', + '3.22.4': '3.22.13-alpha.9', + '3.22.3': '3.22.13-alpha.8', + '3.22.3-alpha.9': '3.22.16-alpha.1', + '3.22.3-alpha.8': '3.22.16-alpha.0', + '3.22.3-alpha.7': '3.22.15', + '3.22.3-alpha.6': '3.22.15-alpha.3', + '3.22.3-alpha.5': '3.22.15-alpha.2', + '3.22.3-alpha.4': '3.22.15-alpha.1', + '3.22.3-alpha.3': '3.22.15-alpha.0', + '3.22.3-alpha.2': '3.22.14', + '3.22.3-alpha.1': '3.22.14-alpha.0', + '3.22.3-alpha.0': '3.22.13', + '3.22.2': '3.22.13-alpha.10', + '3.22.1': '3.22.13-alpha.7', + '3.22.0': '3.22.13-alpha.6', + '3.21.0': '3.22.13-alpha.5', +} diff --git a/packages/ui-services/src/Changelog/LegacyMobileMapping.ts b/packages/ui-services/src/Changelog/LegacyMobileMapping.ts new file mode 100644 index 000000000..8cfc08e1a --- /dev/null +++ b/packages/ui-services/src/Changelog/LegacyMobileMapping.ts @@ -0,0 +1,351 @@ +/** + * Before 11/23/2022, web and mobile used independent semantic versioning. After this point, mobile automatically + * uses web's versioning. The mapping below allows us to see what particular web version a legacy mobile version maps to + */ +export const LegacyWebToMobileVersionMapping: Record = { + '3.107.0': '3.46.31', + '3.106.0': '3.46.30', + '3.105.0': '3.46.29', + '3.104.1': '3.46.28', + '3.104.0': '3.46.27', + '3.103.2': '3.46.26', + '3.103.1': '3.46.25', + '3.103.0': '3.46.24', + '3.102.0': '3.46.23', + '3.101.2': '3.46.22', + '3.101.1': '3.46.21', + '3.101.0': '3.46.20', + '3.100.8': '3.46.19', + '3.100.7': '3.46.18', + '3.100.6': '3.46.17', + '3.100.5': '3.46.16', + '3.100.4': '3.46.15', + '3.100.3': '3.46.14', + '3.100.2': '3.46.13', + '3.100.1': '3.46.12', + '3.100.0': '3.46.11', + '3.99.0': '3.46.10', + '3.98.2': '3.46.9', + '3.98.1': '3.46.8', + '3.98.0': '3.46.7', + '3.97.0': '3.46.6', + '3.96.1': '3.46.5', + '3.96.0': '3.46.4', + '3.95.1': '3.46.3', + '3.95.0': '3.46.2', + '3.94.2': '3.46.1', + '3.94.1': '3.46.0', + '3.94.0': '3.45.42', + '3.93.19': '3.45.41', + '3.93.18': '3.45.40', + '3.93.17': '3.45.39', + '3.93.16': '3.45.38', + '3.93.15': '3.45.37', + '3.93.14': '3.45.36', + '3.93.13': '3.45.35', + '3.93.12': '3.45.34', + '3.93.11': '3.45.33', + '3.93.10': '3.45.32', + '3.93.9': '3.45.31', + '3.93.8': '3.45.30', + '3.93.7': '3.45.29', + '3.93.6': '3.45.28', + '3.93.5': '3.45.27', + '3.93.4': '3.45.26', + '3.93.3': '3.45.25', + '3.93.2': '3.45.24', + '3.93.1': '3.45.23', + '3.93.0': '3.45.22', + '3.92.0': '3.45.21', + '3.91.1': '3.45.20', + '3.91.0': '3.45.19', + '3.90.11': '3.45.18', + '3.90.10': '3.45.17', + '3.90.9': '3.45.16', + '3.90.8': '3.45.15', + '3.90.7': '3.45.14', + '3.90.6': '3.45.13', + '3.90.5': '3.45.12', + '3.90.4': '3.45.11', + '3.90.3': '3.45.10', + '3.90.2': '3.45.9', + '3.90.1': '3.45.8', + '3.90.0': '3.45.7', + '3.89.0': '3.45.6', + '3.88.1': '3.45.5', + '3.88.0': '3.45.4', + '3.87.2': '3.45.3', + '3.87.1': '3.45.2', + '3.87.0': '3.45.1', + '3.86.0': '3.45.0', + '3.85.2': '3.44.5', + '3.85.1': '3.44.4', + '3.85.0': '3.44.3', + '3.84.7': '3.44.2', + '3.84.6': '3.44.1', + '3.84.5': '3.44.0', + '3.84.4': '3.43.33', + '3.84.3': '3.43.32', + '3.84.2': '3.43.31', + '3.84.1': '3.43.30', + '3.84.0': '3.43.29', + '3.83.0': '3.43.28', + '3.82.6': '3.43.27', + '3.82.5': '3.43.26', + '3.82.4': '3.43.25', + '3.82.3': '3.43.24', + '3.82.2': '3.43.23', + '3.82.1': '3.43.22', + '3.82.0': '3.43.21', + '3.81.0': '3.43.20', + '3.80.1': '3.43.19', + '3.80.0': '3.43.18', + '3.79.0': '3.43.17', + '3.78.1': '3.43.16', + '3.78.0': '3.43.15', + '3.77.1': '3.43.14', + '3.77.0': '3.43.13', + '3.76.2': '3.43.12', + '3.76.1': '3.43.11', + '3.76.0': '3.43.10', + '3.75.1': '3.43.9', + '3.75.0': '3.43.8', + '3.74.0': '3.43.7', + '3.73.0': '3.43.6', + '3.72.4': '3.43.5', + '3.72.3': '3.43.4', + '3.72.2': '3.43.3', + '3.72.1': '3.43.2', + '3.72.0': '3.43.1', + '3.71.8': '3.43.0', + '3.71.7': '3.42.5', + '3.71.6': '3.42.4', + '3.71.5': '3.42.3', + '3.71.4': '3.42.2', + '3.71.3': '3.42.1', + '3.71.2': '3.42.0', + '3.71.1': '3.41.10', + '3.71.0': '3.41.9', + '3.70.5': '3.41.8', + '3.70.4': '3.41.7', + '3.70.3': '3.41.6', + '3.70.2': '3.41.5', + '3.70.1': '3.41.4', + '3.70.0': '3.41.3', + '3.69.1': '3.41.2', + '3.69.0': '3.41.1', + '3.68.6': '3.41.0', + '3.68.5': '3.40.2', + '3.68.4': '3.40.1', + '3.68.3': '3.40.0', + '3.68.2': '3.39.12', + '3.68.1': '3.39.11', + '3.68.0': '3.39.10', + '3.67.4': '3.39.9', + '3.67.3': '3.39.8', + '3.67.2': '3.39.7', + '3.67.1': '3.39.6', + '3.67.0': '3.39.5', + '3.66.0': '3.39.4', + '3.65.0': '3.39.3', + '3.64.0': '3.39.2', + '3.63.3': '3.39.1', + '3.63.2': '3.39.0', + '3.63.1': '3.38.1', + '3.63.0': '3.38.0', + '3.62.4': '3.37.14', + '3.62.3': '3.37.13', + '3.62.2': '3.37.12', + '3.62.1': '3.37.11', + '3.62.0': '3.37.10', + '3.61.0': '3.37.9', + '3.60.0': '3.37.8', + '3.59.3': '3.37.7', + '3.59.2': '3.37.6', + '3.59.1': '3.37.5', + '3.59.0': '3.37.4', + '3.58.1': '3.37.3', + '3.58.0': '3.37.2', + '3.57.3': '3.37.1', + '3.57.2': '3.37.0', + '3.57.1': '3.36.18', + '3.57.0': '3.36.17', + '3.56.0': '3.36.16', + '3.55.2': '3.36.15', + '3.55.1': '3.36.14', + '3.55.0': '3.36.13', + '3.54.6': '3.36.12', + '3.54.5': '3.36.11', + '3.54.4': '3.36.10', + '3.54.3': '3.36.9', + '3.54.2': '3.36.8', + '3.54.1': '3.36.7', + '3.54.0': '3.36.6', + '3.53.0': '3.36.5', + '3.52.1': '3.36.4', + '3.52.0': '3.36.3', + '3.51.0': '3.36.2', + '3.50.6': '3.36.1', + '3.50.5': '3.36.0', + '3.50.4': '3.35.16', + '3.50.3': '3.35.15', + '3.50.2': '3.35.14', + '3.50.1': '3.35.13', + '3.50.0': '3.35.12', + '3.49.3': '3.35.11', + '3.49.2': '3.35.10', + '3.49.1': '3.35.9', + '3.49.0': '3.35.8', + '3.48.3': '3.35.7', + '3.48.2': '3.35.6', + '3.48.1': '3.35.5', + '3.48.0': '3.35.4', + '3.47.3': '3.35.3', + '3.47.2': '3.35.2', + '3.47.1': '3.35.1', + '3.47.0': '3.35.0', + '3.46.3': '3.34.3', + '3.46.2': '3.34.2', + '3.46.1': '3.34.1', + '3.46.0': '3.34.0', + '3.45.18': '3.33.7', + '3.45.17': '3.33.6', + '3.45.16': '3.33.5', + '3.45.15': '3.33.4', + '3.45.14': '3.33.3', + '3.45.13': '3.33.2', + '3.45.12': '3.33.1', + '3.45.11': '3.33.0', + '3.45.10': '3.32.5', + '3.45.9': '3.32.4', + '3.45.8': '3.32.3', + '3.45.7': '3.32.2', + '3.45.6': '3.32.1', + '3.45.5': '3.32.0', + '3.45.4': '3.31.29', + '3.45.3': '3.31.28', + '3.45.2': '3.31.27', + '3.45.1': '3.31.26', + '3.45.0': '3.31.25', + '3.44.7': '3.31.24', + '3.44.6': '3.31.23', + '3.44.5': '3.31.22', + '3.44.4': '3.31.21', + '3.44.3': '3.31.20', + '3.44.2': '3.31.19', + '3.44.1': '3.31.18', + '3.44.0': '3.31.17', + '3.43.1': '3.31.16', + '3.43.0': '3.31.15', + '3.42.1': '3.31.14', + '3.42.0': '3.31.13', + '3.41.3': '3.31.12', + '3.41.2': '3.31.11', + '3.41.1': '3.31.10', + '3.41.0': '3.31.9', + '3.40.7': '3.31.8', + '3.40.6': '3.31.7', + '3.40.5': '3.31.6', + '3.40.4': '3.31.5', + '3.40.3': '3.31.4', + '3.40.2': '3.31.3', + '3.40.1': '3.31.2', + '3.40.0': '3.31.1', + '3.39.1': '3.31.0', + '3.39.0': '3.30.38', + '3.38.6': '3.30.37', + '3.38.5': '3.30.36', + '3.38.4': '3.30.35', + '3.38.3': '3.30.34', + '3.38.2': '3.30.33', + '3.38.1': '3.30.32', + '3.38.0': '3.30.31', + '3.37.7': '3.30.30', + '3.37.6': '3.30.29', + '3.37.5': '3.30.28', + '3.37.4': '3.30.27', + '3.37.3': '3.30.26', + '3.37.2': '3.30.25', + '3.37.1': '3.30.24', + '3.37.0': '3.30.23', + '3.36.0': '3.30.22', + '3.35.2': '3.30.21', + '3.35.1': '3.30.20', + '3.35.0': '3.30.19', + '3.34.0': '3.30.18', + '3.33.8': '3.30.17', + '3.33.7': '3.30.16', + '3.33.6': '3.30.15', + '3.33.5': '3.30.14', + '3.33.4': '3.30.13', + '3.33.3': '3.30.12', + '3.33.2': '3.30.11', + '3.33.1': '3.30.10', + '3.33.0': '3.30.9', + '3.32.0': '3.30.8', + '3.31.1': '3.30.7', + '3.31.0': '3.30.6', + '3.30.0': '3.30.5', + '3.29.2': '3.30.4', + '3.29.1': '3.30.3', + '3.29.0': '3.30.2', + '3.28.1': '3.30.1', + '3.28.0': '3.30.0', + '3.27.7': '3.29.0', + '3.27.6': '3.28.3', + '3.27.5': '3.28.2', + '3.27.4': '3.28.1', + '3.27.3': '3.28.0', + '3.27.2': '3.27.13', + '3.27.1': '3.27.12', + '3.27.0': '3.27.11', + '3.26.4': '3.27.10', + '3.26.3': '3.27.9', + '3.26.2': '3.27.8', + '3.26.1': '3.27.7', + '3.26.0': '3.27.6', + '3.25.0': '3.27.5', + '3.24.6': '3.27.4', + '3.24.5': '3.27.3', + '3.24.4': '3.27.2', + '3.24.3': '3.27.1', + '3.24.3-alpha.1': '3.27.0', + '3.24.3-alpha.0': '3.26.14', + '3.24.2': '3.26.13', + '3.24.2-alpha.1': '3.26.12', + '3.24.2-alpha.0': '3.26.11', + '3.24.1': '3.26.10', + '3.24.1-alpha.0': '3.26.9', + '3.24.0': '3.26.8', + '3.24.0-alpha.7': '3.26.7', + '3.24.0-alpha.6': '3.26.6', + '3.24.0-alpha.5': '3.26.5', + '3.24.0-alpha.4': '3.26.4', + '3.24.0-alpha.3': '3.26.3', + '3.24.0-alpha.2': '3.26.2', + '3.24.0-alpha.1': '3.26.1', + '3.24.0-alpha.0': '3.26.0', + '3.23.0': '3.25.15', + '3.23.0-alpha.1': '3.25.14', + '3.23.0-alpha.0': '3.25.13', + '3.22.7-alpha.0': '3.25.12', + '3.22.6': '3.25.11', + '3.22.6-alpha.0': '3.25.10', + '3.22.5': '3.25.9', + '3.22.4': '3.24.4', + '3.22.3': '3.24.3', + '3.22.3-alpha.9': '3.25.6', + '3.22.3-alpha.8': '3.25.5', + '3.22.3-alpha.7': '3.25.4', + '3.22.3-alpha.6': '3.25.3', + '3.22.3-alpha.5': '3.25.2', + '3.22.3-alpha.4': '3.25.1', + '3.22.3-alpha.3': '3.25.0', + '3.22.3-alpha.2': '3.24.8', + '3.22.3-alpha.1': '3.24.7', + '3.22.3-alpha.0': '3.24.6', + '3.22.2': '3.24.5', + '3.22.1': '3.24.2', + '3.22.0': '3.24.2-alpha.2', + '3.21.0': '3.24.2-alpha.1', +} diff --git a/packages/ui-services/src/Preferences/PreferenceId.ts b/packages/ui-services/src/Preferences/PreferenceId.ts index a47d5ee46..923de784d 100644 --- a/packages/ui-services/src/Preferences/PreferenceId.ts +++ b/packages/ui-services/src/Preferences/PreferenceId.ts @@ -9,6 +9,7 @@ const PREFERENCE_IDS = [ 'accessibility', 'get-free-month', 'help-feedback', + 'whats-new', ] as const export type PreferenceId = typeof PREFERENCE_IDS[number] diff --git a/packages/ui-services/src/index.ts b/packages/ui-services/src/index.ts index 8526cc7c0..8fa1ab040 100644 --- a/packages/ui-services/src/index.ts +++ b/packages/ui-services/src/index.ts @@ -1,6 +1,9 @@ export * from './Alert/Functions' export * from './Alert/WebAlertService' export * from './Archive/ArchiveManager' +export * from './Changelog/Changelog' +export * from './Changelog/ChangelogService' +export * from './Changelog/ChangelogServiceInterface' export * from './Keyboard/KeyboardService' export * from './Keyboard/KeyboardShortcut' export * from './Keyboard/KeyboardCommands' diff --git a/packages/web/src/javascripts/Application/Application.ts b/packages/web/src/javascripts/Application/Application.ts index 5cf17064e..88b7b6ddd 100644 --- a/packages/web/src/javascripts/Application/Application.ts +++ b/packages/web/src/javascripts/Application/Application.ts @@ -29,6 +29,7 @@ import { DesktopManager } from './Device/DesktopManager' import { ArchiveManager, AutolockService, + ChangelogService, KeyboardService, PreferenceId, RouteService, @@ -97,6 +98,7 @@ export class WebApplication extends SNApplication implements WebApplicationInter ? new DesktopManager(this, deviceInterface) : undefined this.webServices.viewControllerManager = new ViewControllerManager(this, deviceInterface) + this.webServices.changelogService = new ChangelogService(this.environment, this.storage) if (this.isNativeMobileWeb()) { this.mobileWebReceiver = new MobileWebReceiver(this) @@ -193,6 +195,10 @@ export class WebApplication extends SNApplication implements WebApplicationInter return this.webServices.viewControllerManager.paneController } + public get changelogService() { + return this.webServices.changelogService + } + public get desktopDevice(): DesktopDeviceInterface | undefined { if (isDesktopDevice(this.deviceInterface)) { return this.deviceInterface diff --git a/packages/web/src/javascripts/Application/WebServices.ts b/packages/web/src/javascripts/Application/WebServices.ts index 727160ff8..7acca8b02 100644 --- a/packages/web/src/javascripts/Application/WebServices.ts +++ b/packages/web/src/javascripts/Application/WebServices.ts @@ -1,6 +1,12 @@ import { ViewControllerManager } from '@/Controllers/ViewControllerManager' import { DesktopManager } from './Device/DesktopManager' -import { ArchiveManager, AutolockService, KeyboardService, ThemeManager } from '@standardnotes/ui-services' +import { + ArchiveManager, + AutolockService, + ChangelogServiceInterface, + KeyboardService, + ThemeManager, +} from '@standardnotes/ui-services' export type WebServices = { viewControllerManager: ViewControllerManager @@ -9,4 +15,5 @@ export type WebServices = { archiveService: ArchiveManager themeService: ThemeManager keyboardService: KeyboardService + changelogService: ChangelogServiceInterface } diff --git a/packages/web/src/javascripts/Components/Preferences/PaneSelector.tsx b/packages/web/src/javascripts/Components/Preferences/PaneSelector.tsx index c05375287..e54280505 100644 --- a/packages/web/src/javascripts/Components/Preferences/PaneSelector.tsx +++ b/packages/web/src/javascripts/Components/Preferences/PaneSelector.tsx @@ -9,6 +9,7 @@ import Security from './Panes/Security/Security' import Listed from './Panes/Listed/Listed' import HelpAndFeedback from './Panes/HelpFeedback' import { PreferencesProps } from './PreferencesProps' +import WhatsNew from './Panes/WhatsNew/WhatsNew' const PaneSelector: FunctionComponent = ({ menu, @@ -51,6 +52,8 @@ const PaneSelector: FunctionComponent + case 'whats-new': + return default: return ( { + if (!items) { + return null + } + return ( +
+ {sectionName} +
    + {items.map((item, index) => ( +
  • {item}
  • + ))} +
+
+ ) +} + +const WhatsNew = ({ application }: { application: WebApplication }) => { + const [changelog, setChangelog] = useState(null) + + const appVersion = application.version + const lastReadVersion = useMemo(() => application.changelogService.getLastReadVersion(), [application]) + + useEffect(() => { + void application.changelogService.getChangelog().then(setChangelog) + }, [application]) + + useEffect(() => { + if (changelog) { + application.changelogService.markAsRead() + } + }, [changelog, application]) + + if (!changelog) { + return
Loading...
+ } + + return ( + + {changelog.versions.map((version, index) => { + const bugFixes = getSectionItems(version, 'Bug Fixes') + const features = getSectionItems(version, 'Features') + + if (!bugFixes && !features) { + return null + } + + if (!version.version) { + return null + } + + const isUnreadVersion = lastReadVersion && compareSemVersions(version.version, lastReadVersion) > 0 + + const isLatest = index === 0 + const isDesktopEnvironment = isDesktopApplication() + const showDownloadLink = isDesktopEnvironment && isLatest + + return ( + +
+
+
+ {version.version} + {version.version === appVersion && ( +
+ Your Version +
+ )} + {isLatest && ( +
+ Latest Version +
+ )} + {isUnreadVersion && ( +
+ New +
+ )} +
+ {showDownloadLink && ( + + )} +
+ + {features && bugFixes && } + +
+
+ ) + })} +
+ ) +} + +export default WhatsNew diff --git a/packages/web/src/javascripts/Components/Preferences/Panes/WhatsNew/getSectionItems.tsx b/packages/web/src/javascripts/Components/Preferences/Panes/WhatsNew/getSectionItems.tsx new file mode 100644 index 000000000..4a0e77da1 --- /dev/null +++ b/packages/web/src/javascripts/Components/Preferences/Panes/WhatsNew/getSectionItems.tsx @@ -0,0 +1,44 @@ +import { ChangelogVersion } from '@standardnotes/ui-services' +import { SectionKey } from './SectionKey' +import { IgnoreScopes } from './IgnoreScopes' + +function removeAnythingInParentheses(line: string): string { + return line.replace(/\(.*\)/g, '') +} + +function capitalizeFirstLetter(line: string): string { + return line.charAt(0).toUpperCase() + line.slice(1) +} + +export function formatChangelogLine(line: string): string { + let result = capitalizeFirstLetter(line) + + result = removeAnythingInParentheses(result) + + return result +} + +function lineHasIgnoredScope(line: string): boolean { + return IgnoreScopes.some((scope) => line.toLowerCase().includes(scope.toLowerCase())) +} + +function lineHasOnlyOneWord(line: string): boolean { + return line.trim().split(' ').length === 1 +} + +export function getSectionItems(version: ChangelogVersion, sectionKey: SectionKey): string[] | undefined { + const section = version.parsed[sectionKey] + if (!section) { + return undefined + } + + const filtered = section.map(formatChangelogLine).filter((item) => { + return !lineHasIgnoredScope(item) && !lineHasOnlyOneWord(item) + }) + + if (filtered.length === 0) { + return undefined + } + + return filtered +} diff --git a/packages/web/src/javascripts/Components/Preferences/PreferencesMenu.ts b/packages/web/src/javascripts/Components/Preferences/PreferencesMenu.ts index c9b731dad..1f344d32d 100644 --- a/packages/web/src/javascripts/Components/Preferences/PreferencesMenu.ts +++ b/packages/web/src/javascripts/Components/Preferences/PreferencesMenu.ts @@ -20,6 +20,7 @@ interface SelectableMenuItem extends PreferencesMenuItem { * Items are in order of appearance */ const PREFERENCES_MENU_ITEMS: PreferencesMenuItem[] = [ + { id: 'whats-new', label: "What's New", icon: 'asterisk' }, { id: 'account', label: 'Account', icon: 'user' }, { id: 'general', label: 'General', icon: 'settings' }, { id: 'security', label: 'Security', icon: 'security' }, @@ -33,6 +34,7 @@ const PREFERENCES_MENU_ITEMS: PreferencesMenuItem[] = [ ] const READY_PREFERENCES_MENU_ITEMS: PreferencesMenuItem[] = [ + { id: 'whats-new', label: "What's New", icon: 'asterisk' }, { id: 'account', label: 'Account', icon: 'user' }, { id: 'general', label: 'General', icon: 'settings' }, { id: 'security', label: 'Security', icon: 'security' }, diff --git a/scripts/ChangelogToJson.js b/scripts/ChangelogToJson.js new file mode 100644 index 000000000..1b2856a93 --- /dev/null +++ b/scripts/ChangelogToJson.js @@ -0,0 +1,16 @@ +const parseChangelog = require('changelog-parser') +const path = require('path') +const fs = require('fs') + +const FILES = ['packages/web/CHANGELOG.md'] + +async function saveJsonChangelogs() { + for (const file of FILES) { + const parsed = await parseChangelog(path.join(__dirname, `../${file}`)) + const json = JSON.stringify(parsed, null, 2) + const jsonPath = path.join(__dirname, `../${file}.json`) + fs.writeFileSync(jsonPath, json) + } +} + +saveJsonChangelogs() diff --git a/scripts/changelog-parser.js b/scripts/changelog-parser.js index 42e11e091..0dd62045d 100644 --- a/scripts/changelog-parser.js +++ b/scripts/changelog-parser.js @@ -1,7 +1,7 @@ const parseChangelog = require('changelog-parser') const path = require('path') -const scopes = ['mobile', 'web', 'desktop', 'components'] +const scopes = ['mobile', 'web', 'desktop'] async function parsePackages(packageNames) { let result = ''