diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index facd2abdd..fc616a0e2 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.23.1](https://github.com/standardnotes/app/compare/@standardnotes/api@1.23.0...@standardnotes/api@1.23.1) (2023-01-11) + +### Bug Fixes + +* **snjs:** simplify authenticator api for generating options ([#2147](https://github.com/standardnotes/app/issues/2147)) ([5d20a53](https://github.com/standardnotes/app/commit/5d20a53e6ea9ec08fdc1403a36a1b371ffaf9cd2)) + # [1.23.0](https://github.com/standardnotes/app/compare/@standardnotes/api@1.22.0...@standardnotes/api@1.23.0) (2023-01-09) ### Features diff --git a/packages/api/package.json b/packages/api/package.json index 0f15b2239..69acce3d2 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/api", - "version": "1.23.0", + "version": "1.23.1", "engines": { "node": ">=16.0.0 <17.0.0" }, diff --git a/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiService.ts b/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiService.ts index b6de0da15..bfd184210 100644 --- a/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiService.ts +++ b/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiService.ts @@ -58,10 +58,7 @@ export class AuthenticatorApiService implements AuthenticatorApiServiceInterface } } - async generateRegistrationOptions( - userUuid: string, - username: string, - ): Promise { + async generateRegistrationOptions(): Promise { if (this.operationsInProgress.get(AuthenticatorApiOperations.GenerateRegistrationOptions)) { throw new ApiCallError(ErrorMessage.GenericInProgress) } @@ -69,10 +66,7 @@ export class AuthenticatorApiService implements AuthenticatorApiServiceInterface this.operationsInProgress.set(AuthenticatorApiOperations.GenerateRegistrationOptions, true) try { - const response = await this.authenticatorServer.generateRegistrationOptions({ - username, - userUuid, - }) + const response = await this.authenticatorServer.generateRegistrationOptions() return response } catch (error) { @@ -116,7 +110,7 @@ export class AuthenticatorApiService implements AuthenticatorApiServiceInterface this.operationsInProgress.set(AuthenticatorApiOperations.GenerateAuthenticationOptions, true) try { - const response = await this.authenticatorServer.generateAuthenticationOptions({}) + const response = await this.authenticatorServer.generateAuthenticationOptions() return response } catch (error) { diff --git a/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiServiceInterface.ts b/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiServiceInterface.ts index 5619a8d42..ed814b68e 100644 --- a/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiServiceInterface.ts +++ b/packages/api/src/Domain/Client/Authenticator/AuthenticatorApiServiceInterface.ts @@ -10,10 +10,7 @@ import { export interface AuthenticatorApiServiceInterface { list(): Promise delete(authenticatorId: string): Promise - generateRegistrationOptions( - userUuid: string, - username: string, - ): Promise + generateRegistrationOptions(): Promise verifyRegistrationResponse( userUuid: string, name: string, diff --git a/packages/api/src/Domain/Request/Authenticator/GenerateAuthenticatorAuthenticationOptionsRequestParams.ts b/packages/api/src/Domain/Request/Authenticator/GenerateAuthenticatorAuthenticationOptionsRequestParams.ts deleted file mode 100644 index f5d5f4f26..000000000 --- a/packages/api/src/Domain/Request/Authenticator/GenerateAuthenticatorAuthenticationOptionsRequestParams.ts +++ /dev/null @@ -1,3 +0,0 @@ -export interface GenerateAuthenticatorAuthenticationOptionsRequestParams { - [additionalParam: string]: unknown -} diff --git a/packages/api/src/Domain/Request/Authenticator/GenerateAuthenticatorRegistrationOptionsRequestParams.ts b/packages/api/src/Domain/Request/Authenticator/GenerateAuthenticatorRegistrationOptionsRequestParams.ts deleted file mode 100644 index 80ecd9465..000000000 --- a/packages/api/src/Domain/Request/Authenticator/GenerateAuthenticatorRegistrationOptionsRequestParams.ts +++ /dev/null @@ -1,5 +0,0 @@ -export interface GenerateAuthenticatorRegistrationOptionsRequestParams { - userUuid: string - username: string - [additionalParam: string]: unknown -} diff --git a/packages/api/src/Domain/Request/index.ts b/packages/api/src/Domain/Request/index.ts index ee6c7e1be..ed13a52ca 100644 --- a/packages/api/src/Domain/Request/index.ts +++ b/packages/api/src/Domain/Request/index.ts @@ -1,7 +1,5 @@ export * from './ApiEndpointParam' export * from './Authenticator/DeleteAuthenticatorRequestParams' -export * from './Authenticator/GenerateAuthenticatorAuthenticationOptionsRequestParams' -export * from './Authenticator/GenerateAuthenticatorRegistrationOptionsRequestParams' export * from './Authenticator/ListAuthenticatorsRequestParams' export * from './Authenticator/VerifyAuthenticatorAuthenticationResponseRequestParams' export * from './Authenticator/VerifyAuthenticatorRegistrationResponseRequestParams' diff --git a/packages/api/src/Domain/Server/Authenticator/AuthenticatorServer.ts b/packages/api/src/Domain/Server/Authenticator/AuthenticatorServer.ts index f2511ba14..a7e51acf9 100644 --- a/packages/api/src/Domain/Server/Authenticator/AuthenticatorServer.ts +++ b/packages/api/src/Domain/Server/Authenticator/AuthenticatorServer.ts @@ -2,9 +2,7 @@ import { HttpServiceInterface } from '../../Http/HttpServiceInterface' import { ListAuthenticatorsRequestParams, DeleteAuthenticatorRequestParams, - GenerateAuthenticatorRegistrationOptionsRequestParams, VerifyAuthenticatorRegistrationResponseRequestParams, - GenerateAuthenticatorAuthenticationOptionsRequestParams, VerifyAuthenticatorAuthenticationResponseRequestParams, } from '../../Request' import { @@ -33,10 +31,8 @@ export class AuthenticatorServer implements AuthenticatorServerInterface { return response as DeleteAuthenticatorResponse } - async generateRegistrationOptions( - params: GenerateAuthenticatorRegistrationOptionsRequestParams, - ): Promise { - const response = await this.httpService.get(Paths.v1.generateRegistrationOptions, params) + async generateRegistrationOptions(): Promise { + const response = await this.httpService.get(Paths.v1.generateRegistrationOptions) return response as GenerateAuthenticatorRegistrationOptionsResponse } @@ -49,10 +45,8 @@ export class AuthenticatorServer implements AuthenticatorServerInterface { return response as VerifyAuthenticatorRegistrationResponseResponse } - async generateAuthenticationOptions( - params: GenerateAuthenticatorAuthenticationOptionsRequestParams, - ): Promise { - const response = await this.httpService.get(Paths.v1.generateAuthenticationOptions, params) + async generateAuthenticationOptions(): Promise { + const response = await this.httpService.get(Paths.v1.generateAuthenticationOptions) return response as GenerateAuthenticatorAuthenticationOptionsResponse } diff --git a/packages/api/src/Domain/Server/Authenticator/AuthenticatorServerInterface.ts b/packages/api/src/Domain/Server/Authenticator/AuthenticatorServerInterface.ts index c43704241..a1a8ed418 100644 --- a/packages/api/src/Domain/Server/Authenticator/AuthenticatorServerInterface.ts +++ b/packages/api/src/Domain/Server/Authenticator/AuthenticatorServerInterface.ts @@ -1,9 +1,7 @@ import { ListAuthenticatorsRequestParams, DeleteAuthenticatorRequestParams, - GenerateAuthenticatorRegistrationOptionsRequestParams, VerifyAuthenticatorRegistrationResponseRequestParams, - GenerateAuthenticatorAuthenticationOptionsRequestParams, VerifyAuthenticatorAuthenticationResponseRequestParams, } from '../../Request' import { @@ -18,15 +16,11 @@ import { export interface AuthenticatorServerInterface { list(params: ListAuthenticatorsRequestParams): Promise delete(params: DeleteAuthenticatorRequestParams): Promise - generateRegistrationOptions( - params: GenerateAuthenticatorRegistrationOptionsRequestParams, - ): Promise + generateRegistrationOptions(): Promise verifyRegistrationResponse( params: VerifyAuthenticatorRegistrationResponseRequestParams, ): Promise - generateAuthenticationOptions( - params: GenerateAuthenticatorAuthenticationOptionsRequestParams, - ): Promise + generateAuthenticationOptions(): Promise verifyAuthenticationResponse( params: VerifyAuthenticatorAuthenticationResponseRequestParams, ): Promise diff --git a/packages/blocks-editor/CHANGELOG.md b/packages/blocks-editor/CHANGELOG.md index 6af74c948..838a99caf 100644 --- a/packages/blocks-editor/CHANGELOG.md +++ b/packages/blocks-editor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.12.4](https://github.com/standardnotes/app/compare/@standardnotes/blocks-editor@1.12.3...@standardnotes/blocks-editor@1.12.4) (2023-01-11) + +**Note:** Version bump only for package @standardnotes/blocks-editor + ## [1.12.3](https://github.com/standardnotes/app/compare/@standardnotes/blocks-editor@1.12.2...@standardnotes/blocks-editor@1.12.3) (2023-01-11) **Note:** Version bump only for package @standardnotes/blocks-editor diff --git a/packages/blocks-editor/package.json b/packages/blocks-editor/package.json index 8a5369f2c..446508078 100644 --- a/packages/blocks-editor/package.json +++ b/packages/blocks-editor/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/blocks-editor", - "version": "1.12.3", + "version": "1.12.4", "private": true, "main": "./src/index.ts", "scripts": { diff --git a/packages/desktop/CHANGELOG.md b/packages/desktop/CHANGELOG.md index 6b312c0d0..27b62afe5 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.104.84](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.137.2...@standardnotes/desktop@3.104.84) (2023-01-11) + +**Note:** Version bump only for package @standardnotes/desktop + ## [3.104.83](https://github.com/standardnotes/app/compare/@standardnotes/desktop@3.137.1...@standardnotes/desktop@3.104.83) (2023-01-11) **Note:** Version bump only for package @standardnotes/desktop diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 1c51bfa22..f92eb0915 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@standardnotes/desktop", "main": "./app/dist/index.js", - "version": "3.104.83", + "version": "3.104.84", "license": "AGPL-3.0-or-later", "author": "Standard Notes.", "private": true, diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index 53cf48f8f..e0dfc8ff6 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.50.20](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.50.19...@standardnotes/mobile@3.50.20) (2023-01-11) + +**Note:** Version bump only for package @standardnotes/mobile + ## [3.50.19](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.50.18...@standardnotes/mobile@3.50.19) (2023-01-11) **Note:** Version bump only for package @standardnotes/mobile diff --git a/packages/mobile/package.json b/packages/mobile/package.json index fbef46147..4b88b31ad 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/mobile", - "version": "3.50.19", + "version": "3.50.20", "author": "Standard Notes.", "private": true, "license": "AGPL-3.0-or-later", diff --git a/packages/releases/CHANGELOG.md b/packages/releases/CHANGELOG.md index 8e947e2d9..1428f1763 100644 --- a/packages/releases/CHANGELOG.md +++ b/packages/releases/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.4.107](https://github.com/standardnotes/app/compare/@standardnotes/releases@1.4.106...@standardnotes/releases@1.4.107) (2023-01-11) + +**Note:** Version bump only for package @standardnotes/releases + ## [1.4.106](https://github.com/standardnotes/app/compare/@standardnotes/releases@1.4.105...@standardnotes/releases@1.4.106) (2023-01-11) **Note:** Version bump only for package @standardnotes/releases diff --git a/packages/releases/package.json b/packages/releases/package.json index efeed08f4..1df1acdad 100644 --- a/packages/releases/package.json +++ b/packages/releases/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/releases", - "version": "1.4.106", + "version": "1.4.107", "license": "AGPL-3.0-or-later", "main": "dist/releases.json", "types": "dist/index.d.ts", diff --git a/packages/services/CHANGELOG.md b/packages/services/CHANGELOG.md index 1d68ce273..b19274542 100644 --- a/packages/services/CHANGELOG.md +++ b/packages/services/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.55.1](https://github.com/standardnotes/app/compare/@standardnotes/services@1.55.0...@standardnotes/services@1.55.1) (2023-01-11) + +### Bug Fixes + +* **snjs:** simplify authenticator api for generating options ([#2147](https://github.com/standardnotes/app/issues/2147)) ([5d20a53](https://github.com/standardnotes/app/commit/5d20a53e6ea9ec08fdc1403a36a1b371ffaf9cd2)) + # [1.55.0](https://github.com/standardnotes/app/compare/@standardnotes/services@1.54.0...@standardnotes/services@1.55.0) (2023-01-11) ### Features diff --git a/packages/services/package.json b/packages/services/package.json index 45bf1bb2f..7ad61c8dd 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/services", - "version": "1.55.0", + "version": "1.55.1", "engines": { "node": ">=16.0.0 <17.0.0" }, diff --git a/packages/services/src/Domain/Authenticator/AuthenticatorClientInterface.ts b/packages/services/src/Domain/Authenticator/AuthenticatorClientInterface.ts index df11ab19f..aa7d9795d 100644 --- a/packages/services/src/Domain/Authenticator/AuthenticatorClientInterface.ts +++ b/packages/services/src/Domain/Authenticator/AuthenticatorClientInterface.ts @@ -1,9 +1,9 @@ -import { Username, Uuid } from '@standardnotes/domain-core' +import { Uuid } from '@standardnotes/domain-core' export interface AuthenticatorClientInterface { list(): Promise> delete(authenticatorId: Uuid): Promise - generateRegistrationOptions(userUuid: Uuid, username: Username): Promise | null> + generateRegistrationOptions(): Promise | null> verifyRegistrationResponse( userUuid: Uuid, name: string, diff --git a/packages/services/src/Domain/Authenticator/AuthenticatorManager.ts b/packages/services/src/Domain/Authenticator/AuthenticatorManager.ts index bd110ea9e..ddd1be832 100644 --- a/packages/services/src/Domain/Authenticator/AuthenticatorManager.ts +++ b/packages/services/src/Domain/Authenticator/AuthenticatorManager.ts @@ -1,7 +1,7 @@ /* istanbul ignore file */ import { AuthenticatorApiServiceInterface } from '@standardnotes/api' -import { Username, Uuid } from '@standardnotes/domain-core' +import { Uuid } from '@standardnotes/domain-core' import { InternalEventBusInterface } from '../Internal/InternalEventBusInterface' import { AbstractService } from '../Service/AbstractService' @@ -43,9 +43,9 @@ export class AuthenticatorManager extends AbstractService implements Authenticat } } - async generateRegistrationOptions(userUuid: Uuid, username: Username): Promise | null> { + async generateRegistrationOptions(): Promise | null> { try { - const result = await this.authenticatorApiService.generateRegistrationOptions(userUuid.value, username.value) + const result = await this.authenticatorApiService.generateRegistrationOptions() if (result.data.error) { return null diff --git a/packages/snjs/CHANGELOG.md b/packages/snjs/CHANGELOG.md index 60e74ee82..5dad26977 100644 --- a/packages/snjs/CHANGELOG.md +++ b/packages/snjs/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.163.1](https://github.com/standardnotes/app/compare/@standardnotes/snjs@2.163.0...@standardnotes/snjs@2.163.1) (2023-01-11) + +### Bug Fixes + +* **snjs:** simplify authenticator api for generating options ([#2147](https://github.com/standardnotes/app/issues/2147)) ([5d20a53](https://github.com/standardnotes/app/commit/5d20a53e6ea9ec08fdc1403a36a1b371ffaf9cd2)) + # [2.163.0](https://github.com/standardnotes/app/compare/@standardnotes/snjs@2.162.0...@standardnotes/snjs@2.163.0) (2023-01-11) ### Features diff --git a/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.spec.ts b/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.spec.ts index d229c2baf..3e239b4b5 100644 --- a/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.spec.ts +++ b/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.spec.ts @@ -23,7 +23,6 @@ describe('AddAuthenticator', () => { const result = await useCase.execute({ userUuid: 'invalid', - username: 'username', authenticatorName: 'authenticatorName', }) @@ -31,25 +30,11 @@ describe('AddAuthenticator', () => { expect(result.getError()).toBe('Could not generate authenticator registration options: Given value is not a valid uuid: invalid') }) - it('should return error if username is invalid', async () => { - const useCase = createUseCase() - - const result = await useCase.execute({ - userUuid: '00000000-0000-0000-0000-000000000000', - username: '', - authenticatorName: 'authenticatorName', - }) - - expect(result.isFailed()).toBe(true) - expect(result.getError()).toBe('Could not generate authenticator registration options: Username cannot be empty') - }) - it('should return error if authenticatorName is invalid', async () => { const useCase = createUseCase() const result = await useCase.execute({ userUuid: '00000000-0000-0000-0000-000000000000', - username: 'username', authenticatorName: '', }) @@ -64,7 +49,6 @@ describe('AddAuthenticator', () => { const result = await useCase.execute({ userUuid: '00000000-0000-0000-0000-000000000000', - username: 'username', authenticatorName: 'authenticator', }) @@ -79,7 +63,6 @@ describe('AddAuthenticator', () => { const result = await useCase.execute({ userUuid: '00000000-0000-0000-0000-000000000000', - username: 'username', authenticatorName: 'authenticator', }) @@ -96,7 +79,6 @@ describe('AddAuthenticator', () => { const result = await useCase.execute({ userUuid: '00000000-0000-0000-0000-000000000000', - username: 'username', authenticatorName: 'authenticator', }) @@ -111,7 +93,7 @@ describe('AddAuthenticator', () => { const result = await useCase.execute({ userUuid: '00000000-0000-0000-0000-000000000000', - username: 'username', + authenticatorName: 'authenticator', }) @@ -124,7 +106,6 @@ describe('AddAuthenticator', () => { const result = await useCase.execute({ userUuid: '00000000-0000-0000-0000-000000000000', - username: 'username', authenticatorName: 'authenticator', }) @@ -136,7 +117,6 @@ describe('AddAuthenticator', () => { const result = await useCase.execute({ userUuid: '00000000-0000-0000-0000-000000000000', - username: 'username', authenticatorName: 'authenticator', }) diff --git a/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.ts b/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.ts index b7de6ce2f..d8bceb528 100644 --- a/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.ts +++ b/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticator.ts @@ -1,5 +1,5 @@ import { AuthenticatorClientInterface } from '@standardnotes/services' -import { Result, UseCaseInterface, Username, Uuid, Validator } from '@standardnotes/domain-core' +import { Result, UseCaseInterface, Uuid, Validator } from '@standardnotes/domain-core' import { AddAuthenticatorDTO } from './AddAuthenticatorDTO' @@ -24,12 +24,6 @@ export class AddAuthenticator implements UseCaseInterface { } const userUuid = userUuidOrError.getValue() - const usernameOrError = Username.create(dto.username) - if (usernameOrError.isFailed()) { - return Result.fail(`Could not generate authenticator registration options: ${usernameOrError.getError()}`) - } - const username = usernameOrError.getValue() - const authenticatorNameValidatorResult = Validator.isNotEmpty(dto.authenticatorName) if (authenticatorNameValidatorResult.isFailed()) { return Result.fail( @@ -37,7 +31,7 @@ export class AddAuthenticator implements UseCaseInterface { ) } - const registrationOptions = await this.authenticatorClient.generateRegistrationOptions(userUuid, username) + const registrationOptions = await this.authenticatorClient.generateRegistrationOptions() if (registrationOptions === null) { return Result.fail('Could not generate authenticator registration options') } diff --git a/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticatorDTO.ts b/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticatorDTO.ts index abe33ab1a..77aa3d8bd 100644 --- a/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticatorDTO.ts +++ b/packages/snjs/lib/Domain/UseCase/AddAuthenticator/AddAuthenticatorDTO.ts @@ -1,5 +1,4 @@ export interface AddAuthenticatorDTO { userUuid: string - username: string authenticatorName: string } diff --git a/packages/snjs/package.json b/packages/snjs/package.json index cdc86c382..324afd873 100644 --- a/packages/snjs/package.json +++ b/packages/snjs/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/snjs", - "version": "2.163.0", + "version": "2.163.1", "engines": { "node": ">=16.0.0 <17.0.0" }, diff --git a/packages/ui-services/CHANGELOG.md b/packages/ui-services/CHANGELOG.md index c08b6b670..100753a2b 100644 --- a/packages/ui-services/CHANGELOG.md +++ b/packages/ui-services/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.23.9](https://github.com/standardnotes/app/compare/@standardnotes/ui-services@1.23.8...@standardnotes/ui-services@1.23.9) (2023-01-11) + +**Note:** Version bump only for package @standardnotes/ui-services + ## [1.23.8](https://github.com/standardnotes/app/compare/@standardnotes/ui-services@1.23.7...@standardnotes/ui-services@1.23.8) (2023-01-11) **Note:** Version bump only for package @standardnotes/ui-services diff --git a/packages/ui-services/package.json b/packages/ui-services/package.json index 972e8d82b..85e30cbc5 100644 --- a/packages/ui-services/package.json +++ b/packages/ui-services/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/ui-services", - "version": "1.23.8", + "version": "1.23.9", "engines": { "node": ">=16.0.0 <17.0.0" }, diff --git a/packages/web/CHANGELOG.md b/packages/web/CHANGELOG.md index 0c0a07d1a..a1792b92e 100644 --- a/packages/web/CHANGELOG.md +++ b/packages/web/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.137.3](https://github.com/standardnotes/app/compare/@standardnotes/web@3.137.2...@standardnotes/web@3.137.3) (2023-01-11) + +**Note:** Version bump only for package @standardnotes/web + ## [3.137.2](https://github.com/standardnotes/app/compare/@standardnotes/web@3.137.1...@standardnotes/web@3.137.2) (2023-01-11) **Note:** Version bump only for package @standardnotes/web diff --git a/packages/web/CHANGELOG.md.json b/packages/web/CHANGELOG.md.json index 83f289a9c..feee2a956 100644 --- a/packages/web/CHANGELOG.md.json +++ b/packages/web/CHANGELOG.md.json @@ -1,5 +1,16 @@ { "versions": [ + { + "version": "3.137.3", + "title": "[3.137.3](https://github.com/standardnotes/app/compare/@standardnotes/web@3.137.2...@standardnotes/web@3.137.3) (2023-01-11)", + "date": null, + "body": "**Note:** Version bump only for package @standardnotes/web", + "parsed": { + "_": [ + "Note: Version bump only for package @standardnotes/web" + ] + } + }, { "version": "3.137.2", "title": "[3.137.2](https://github.com/standardnotes/app/compare/@standardnotes/web@3.137.1...@standardnotes/web@3.137.2) (2023-01-11)", diff --git a/packages/web/package.json b/packages/web/package.json index 39cfab8a1..01621c244 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@standardnotes/web", - "version": "3.137.2", + "version": "3.137.3", "license": "AGPL-3.0-or-later", "main": "dist/app.js", "author": "Standard Notes.",