Compare commits

...
Author SHA1 Message Date
StandardNotes CI 12eee935b6 chore(release): publish
- @standardnotes/[email protected]
 - @standardnotes/[email protected].5
 - @standardnotes/[email protected]
 - @standardnotes/[email protected].3
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected].5
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected].5
2022-06-16 20:12:43 +00:00
Mo b7e4c47de7 chore(workflow): release glob patterns 2022-06-16 15:10:38 -05:00
Mo aa71252855 chore(release): continue on error 2022-06-16 14:45:44 -05:00
StandardNotes CI abc51be2fa chore(release): publish
- @standardnotes/[email protected]
 - @standardnotes/[email protected].4
 - @standardnotes/[email protected]
 - @standardnotes/[email protected].2
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected].4
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected]
 - @standardnotes/[email protected].4
2022-06-16 19:42:42 +00:00
Mo d6ece8ac78 chore(workflow): improve graduate fallback release 2022-06-16 14:40:20 -05:00
Mo ec5e5ac103 chore(workflow): handle graduate fallback release 2022-06-16 14:34:44 -05:00
Mo 4c50162546 chore(workflow): monorepo version 2022-06-16 14:22:51 -05:00
Mo ea9ffa79f8 chore(workflow): trigger 2022-06-16 14:19:34 -05:00
Mo e3f17dd8c1 chore(workflow): tags fix attempt 2022-06-16 14:19:05 -05:00
Mo 14cb2b29b5 Revert "ci(temp): disable files changed workflow"
This reverts commit 3c98a2442c.
2022-06-16 14:18:39 -05:00
64 changed files with 293 additions and 41 deletions
+3 -2
View File
@@ -3,8 +3,9 @@ name: Desktop Beta Release
on:
push:
tags:
- '@standardnotes/desktop@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*'
- '@standardnotes/desktop@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*'
- '*standardnotes/*desktop*beta*'
- '*standardnotes/*desktop*alpha*'
- '!*standardnotes/*inner-desktop*'
workflow_dispatch:
jobs:
+4 -1
View File
@@ -3,7 +3,10 @@ name: Desktop Prod Release
on:
push:
tags:
- '@standardnotes/desktop@!(*alpha*|*beta*)'
- '*standardnotes/*desktop*'
- '!*standardnotes/*desktop*beta*'
- '!*standardnotes/*desktop*alpha*'
- '!*standardnotes/*inner-desktop*'
workflow_dispatch:
jobs:
+2 -2
View File
@@ -3,8 +3,8 @@ name: Mobile Build Development
on:
push:
tags:
- '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*'
- '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*'
- '*standardnotes/*mobile*beta*'
- '*standardnotes/*mobile*alpha*'
workflow_dispatch:
jobs:
+3 -1
View File
@@ -3,7 +3,9 @@ name: Mobile Build Production
on:
push:
tags:
- '@standardnotes/mobile@!(*alpha*|*beta*)'
- '*standardnotes/mobile*'
- '!*standardnotes/mobile*beta*'
- '!*standardnotes/mobile*alpha*'
workflow_dispatch:
jobs:
+20 -2
View File
@@ -32,18 +32,36 @@ jobs:
- name: Install Dependencies
run: yarn install
- name: Get Changed Components Files
id: changed-component-files
uses: tj-actions/changed-files@v23
with:
files: packages/components/**
- name: Compile Components
if: steps.changed-component-files.outputs.any_changed == 'true'
run: yarn components:clean && yarn components:compile
working-directory: packages/components
- name: Package and Commit Components
if: steps.changed-component-files.outputs.any_changed == 'true'
run: |
node packages/components/scripts/package.mjs
git add .
(git commit -m 'chore(release): components') || true
- name: Bump Prod Version
- name: Bump Prod Version Graduate
continue-on-error: true
id: graduateRelease
if: ${{ github.ref == 'refs/heads/main' }}
run: yarn release:prod
run: yarn release:prod:graduate
- name: Bump Prod Version Fallback
if: ${{ always() && github.ref == 'refs/heads/main' && steps.graduateRelease.outcome == 'failure' }}
run: |
echo Falling back to non-graduate release due to https://github.com/lerna/lerna/issues/2532
git stash
yarn release:prod
- name: Bump Beta Version
if: ${{ github.ref == 'refs/heads/develop' }}
run: yarn release:beta
+2 -2
View File
@@ -7,8 +7,8 @@ concurrency:
on:
push:
tags:
- '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*'
- '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*'
- '*standardnotes/*web-server*beta*'
- '*standardnotes/*web-server*alpha*'
workflow_dispatch:
jobs:
+3 -1
View File
@@ -7,7 +7,9 @@ concurrency:
on:
push:
tags:
- '@standardnotes/web-server@!(*alpha*|*beta*)'
- '*standardnotes/*web-server*'
- '!*standardnotes/*web-server*beta*'
- '!*standardnotes/*web-server*alpha*'
jobs:
test:
+3 -1
View File
@@ -1,5 +1,6 @@
{
"name": "@standardnotes/app-monorepo",
"version": "0.0.1",
"private": true,
"author": "Standard Notes.",
"workspaces": {
@@ -25,7 +26,8 @@
"start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server",
"prepare": "husky install",
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock && yarn install",
"release:prod": "lerna version --conventional-graduate --conventional-commits --yes -m \"chore(release): publish\"",
"release:prod": "lerna version --conventional-commits --yes -m \"chore(release): publish\"",
"release:prod:graduate": "lerna version --conventional-graduate --conventional-commits --yes -m \"chore(release): publish\"",
"release:beta": "lerna version --conventional-prerelease --conventional-commits --yes -m \"chore(release): publish\"",
"version": "yarn install --no-immutable && git add yarn.lock",
"postversion": "./scripts/push-tags-one-by-one.sh",
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 2.1.2 (2022-06-16)
**Note:** Version bump only for package @standardnotes/components-meta
## 2.1.1 (2022-06-16)
**Note:** Version bump only for package @standardnotes/components-meta
# [2.1.0](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/components-meta
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/components-meta",
"version": "2.1.0",
"version": "2.1.2",
"private": true,
"author": "Standard Notes",
"main": "dist",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.0.4 (2022-06-16)
**Note:** Version bump only for package @standardnotes/advanced-checklist
## 0.0.3 (2022-06-16)
**Note:** Version bump only for package @standardnotes/advanced-checklist
## [0.0.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/advanced-checklist
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/advanced-checklist",
"version": "0.0.2",
"version": "0.0.4",
"description": "A task editor with grouping functionality.",
"author": "Standard Notes.",
"keywords": [
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.5.3 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-hybrid
## 1.5.2 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-hybrid
## [1.5.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-hybrid
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/markdown-hybrid",
"private": true,
"version": "1.5.1",
"version": "1.5.3",
"description": "A Standard Notes derived editor that offers full support for Markdown editing.",
"main": "dist/dist.js",
"author": "Standard Notes <[email protected]>",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.3.8 (2022-06-16)
**Note:** Version bump only for package @standardnotes/bold-editor
## 1.3.7 (2022-06-16)
**Note:** Version bump only for package @standardnotes/bold-editor
## [1.3.6](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/bold-editor
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/bold-editor",
"private": true,
"version": "1.3.6",
"version": "1.3.8",
"main": "dist/dist.js",
"scripts": {
"skip:components:lint": "eslint app/ --ext .js",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.3.15 (2022-06-16)
**Note:** Version bump only for package @standardnotes/classic-code-editor
## 1.3.14 (2022-06-16)
**Note:** Version bump only for package @standardnotes/classic-code-editor
## [1.3.13](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/classic-code-editor
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/classic-code-editor",
"private": true,
"version": "1.3.13",
"version": "1.3.15",
"description": "A code editor for Standard Notes",
"main": "dist/main.js",
"author": "Standard Notes <[email protected]>",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.3.9 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-math
## 1.3.8 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-math
## [1.3.7](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-math
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/markdown-math",
"private": true,
"version": "1.3.7",
"version": "1.3.9",
"description": "",
"main": "index.js",
"scripts": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.0.10 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-visual
## 1.0.9 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-visual
## [1.0.8](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-visual
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/markdown-visual",
"version": "1.0.8",
"version": "1.0.10",
"author": "Johnny Almonte <[email protected]>",
"description": "A lightweight WYSIWYG markdown editor for Standard Notes, derived from Milkdown.",
"keywords": [
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.3.12 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-minimal
## 1.3.11 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-minimal
## [1.3.10](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-minimal
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/markdown-minimal",
"private": true,
"version": "1.3.10",
"version": "1.3.12",
"description": "A minimal Markdown editor for Standard Notes.",
"main": "dist/dist.js",
"author": "Standard Notes <[email protected]>",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.6.4 (2022-06-16)
**Note:** Version bump only for package @standardnotes/rich-text
## 1.6.3 (2022-06-16)
**Note:** Version bump only for package @standardnotes/rich-text
## [1.6.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/rich-text
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/rich-text",
"private": true,
"version": "1.6.2",
"version": "1.6.4",
"description": "A rich text editor for Standard Notes",
"main": "dist/dist.js",
"author": "Standard Notes <[email protected]>",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.4.5 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-basic
## 1.4.4 (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-basic
## [1.4.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/markdown-basic
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/markdown-basic",
"private": true,
"version": "1.4.3",
"version": "1.4.5",
"main": "dist/dist.js",
"scripts": {
"skip:components:lint": "eslint --cache --ext .jsx,.js --format=node_modules/eslint-formatter-pretty .",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.3.13 (2022-06-16)
**Note:** Version bump only for package @standardnotes/simple-task-editor
## 1.3.12 (2022-06-16)
**Note:** Version bump only for package @standardnotes/simple-task-editor
## [1.3.11](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/simple-task-editor
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/simple-task-editor",
"private": true,
"version": "1.3.11",
"version": "1.3.13",
"main": "dist/dist.js",
"scripts": {
"components:compile": "webpack --config webpack.prod.js",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.4.7 (2022-06-16)
**Note:** Version bump only for package @standardnotes/spreadsheets
## 1.4.6 (2022-06-16)
**Note:** Version bump only for package @standardnotes/spreadsheets
## [1.4.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/spreadsheets
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/spreadsheets",
"private": true,
"version": "1.4.5",
"version": "1.4.7",
"main": "dist/dist.js",
"scripts": {
"skip:components:lint": "eslint app/ --ext .js",
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.0.7 (2022-06-16)
**Note:** Version bump only for package @standardnotes/autobiography-theme
## 1.0.6 (2022-06-16)
**Note:** Version bump only for package @standardnotes/autobiography-theme
## [1.0.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/autobiography-theme
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/autobiography-theme",
"version": "1.0.5",
"version": "1.0.7",
"main": "dist/dist.css",
"private": true,
"sn": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.0.7 (2022-06-16)
**Note:** Version bump only for package @standardnotes/dynamic-theme
## 1.0.6 (2022-06-16)
**Note:** Version bump only for package @standardnotes/dynamic-theme
## [1.0.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/dynamic-theme
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/dynamic-theme",
"version": "1.0.5",
"version": "1.0.7",
"main": "dist/dist.css",
"private": true,
"sn": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.12 (2022-06-16)
**Note:** Version bump only for package @standardnotes/focus-theme
## 1.2.11 (2022-06-16)
**Note:** Version bump only for package @standardnotes/focus-theme
## [1.2.10](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/focus-theme
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/focus-theme",
"version": "1.2.10",
"version": "1.2.12",
"main": "dist/dist.css",
"private": true,
"sn": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.12 (2022-06-16)
**Note:** Version bump only for package @standardnotes/futura-theme
## 1.2.11 (2022-06-16)
**Note:** Version bump only for package @standardnotes/futura-theme
## [1.2.10](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/futura-theme
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/futura-theme",
"version": "1.2.10",
"version": "1.2.12",
"main": "dist/dist.css",
"private": true,
"sn": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.11 (2022-06-16)
**Note:** Version bump only for package @standardnotes/midnight-theme
## 1.2.10 (2022-06-16)
**Note:** Version bump only for package @standardnotes/midnight-theme
## [1.2.9](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/midnight-theme
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/midnight-theme",
"version": "1.2.9",
"version": "1.2.11",
"main": "dist/dist.css",
"private": true,
"sn": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.10 (2022-06-16)
**Note:** Version bump only for package @standardnotes/solarized-dark-theme
## 1.2.9 (2022-06-16)
**Note:** Version bump only for package @standardnotes/solarized-dark-theme
## [1.2.8](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/solarized-dark-theme
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/solarized-dark-theme",
"version": "1.2.8",
"version": "1.2.10",
"main": "dist/dist.css",
"private": true,
"sn": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.11 (2022-06-16)
**Note:** Version bump only for package @standardnotes/titanium-theme
## 1.2.10 (2022-06-16)
**Note:** Version bump only for package @standardnotes/titanium-theme
## [1.2.9](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/titanium-theme
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/titanium-theme",
"version": "1.2.9",
"version": "1.2.11",
"main": "dist/dist.css",
"private": true,
"sn": {
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 2.0.13 (2022-06-16)
**Note:** Version bump only for package @standardnotes/authenticator
## 2.0.12 (2022-06-16)
**Note:** Version bump only for package @standardnotes/authenticator
## [2.0.11](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/authenticator
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/authenticator",
"version": "2.0.11",
"version": "2.0.13",
"main": "dist/dist.js",
"private": true,
"scripts": {
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 3.22.5 (2022-06-16)
**Note:** Version bump only for package @standardnotes/desktop
## 3.22.4 (2022-06-16)
**Note:** Version bump only for package @standardnotes/desktop
## [3.22.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/desktop
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 3.22.5 (2022-06-16)
**Note:** Version bump only for package @standardnotes/inner-desktop
## 3.22.4 (2022-06-16)
**Note:** Version bump only for package @standardnotes/inner-desktop
## [3.22.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/inner-desktop
+1 -1
View File
@@ -4,7 +4,7 @@
"private": true,
"description": "An end-to-end encrypted notes app for digitalists and professionals.",
"author": "Standard Notes <[email protected]>",
"version": "3.22.3",
"version": "3.22.5",
"main": "./dist/index.js",
"installConfig": {
"selfReferences": true
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/desktop",
"main": "./app/dist/index.js",
"version": "3.22.3",
"version": "3.22.5",
"license": "AGPL-3.0-or-later",
"author": "Standard Notes",
"private": true,
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.4.3 (2022-06-16)
**Note:** Version bump only for package @standardnotes/icons
## 1.4.2 (2022-06-16)
**Note:** Version bump only for package @standardnotes/icons
## [1.4.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/icons
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/icons",
"version": "1.4.1",
"version": "1.4.3",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 3.23.3 (2022-06-16)
**Note:** Version bump only for package @standardnotes/mobile
## 3.23.2 (2022-06-16)
**Note:** Version bump only for package @standardnotes/mobile
## [3.23.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/mobile
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/mobile",
"version": "3.23.1",
"version": "3.23.3",
"author": "Standard Notes.",
"private": true,
"license": "AGPL-3.0-or-later",
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.4 (2022-06-16)
**Note:** Version bump only for package @standardnotes/styles
## 1.2.3 (2022-06-16)
**Note:** Version bump only for package @standardnotes/styles
## [1.2.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/styles
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/styles",
"version": "1.2.2",
"version": "1.2.4",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.3 (2022-06-16)
**Note:** Version bump only for package @standardnotes/toast
## 1.2.2 (2022-06-16)
**Note:** Version bump only for package @standardnotes/toast
## [1.2.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/toast
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/toast",
"version": "1.2.1",
"version": "1.2.3",
"private": true,
"main": "./src/index.ts",
"scripts": {
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.9 (2022-06-16)
**Note:** Version bump only for package @standardnotes/web-server
## 1.2.8 (2022-06-16)
**Note:** Version bump only for package @standardnotes/web-server
## [1.2.7](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/web-server
+2 -2
View File
@@ -1,9 +1,9 @@
{
"name": "@standardnotes/web-server",
"version": "1.2.7",
"version": "1.2.9",
"license": "AGPL-3.0-or-later",
"private": true,
"author": "Standard Notes",
"author": "Standard Notes.",
"description": "Ruby on Rails web server for hosting the web application",
"engines": {
"node": ">=12.19.0 <17.0.0"
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 3.22.5 (2022-06-16)
**Note:** Version bump only for package @standardnotes/web
## 3.22.4 (2022-06-16)
**Note:** Version bump only for package @standardnotes/web
## [3.22.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-16)
**Note:** Version bump only for package @standardnotes/web
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/web",
"version": "3.22.3",
"version": "3.22.5",
"license": "AGPL-3.0-or-later",
"main": "dist/app.js",
"author": "Standard Notes",