diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f50cba523..95001bd053 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ executors: # Never do this in production or with any sensitive / non-test data: POSTGRES_HOST_AUTH_METHOD: trust POSTGRES_DB: bloom - JURISDICTION_NAME: Bloomington + JURISDICTION_NAME: Alameda environment: PORT: "3100" EMAIL_API_KEY: "SG.SOME-LONG-SECRET-KEY" @@ -23,7 +23,7 @@ executors: # DB URL for the jest tests per ormconfig.test.ts TEST_DATABASE_URL: "postgres://bloom-ci@localhost:5432/bloom" PARTNERS_PORTAL_URL: "http://localhost:3001" - JURISDICTION_NAME: Bloomington + JURISDICTION_NAME: Alameda standard-node: docker: - image: "cimg/node:18.14.2" @@ -33,7 +33,7 @@ executors: # Never do this in production or with any sensitive / non-test data: POSTGRES_HOST_AUTH_METHOD: trust POSTGRES_DB: bloom_prisma - JURISDICTION_NAME: Bloomington + JURISDICTION_NAME: Alameda jobs: setup: @@ -221,4 +221,4 @@ workflows: - cypress-partners: requires: - setup - - setup-backend \ No newline at end of file + - setup-backend diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index cbb3e5f9fc..500d558609 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,10 +13,10 @@ name: "CodeQL" on: push: - branches: [ dev, master ] + branches: [ dev, main ] pull_request: # The branches below must be a subset of the branches above - branches: [ dev ] + branches: [ dev, main ] schedule: - cron: '40 8 * * 5' diff --git a/.prettierignore b/.prettierignore index 22a8bae1f9..ca1c140777 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,5 @@ **/*.hbs +**/*.md .github ui-components/CHANGELOG.md sites/public/CHANGELOG.md diff --git a/README.md b/README.md index 33b89f221e..0dd8fe90a7 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,25 @@ These steps allow for two development patterns. You can edit ui-components withi Bloom will now be consuming the published version of @bloom-housing/ui-components specified in package.json and no local ui-component changes will be reflected. +### Bloom's UI-Component Development +- Because Bloom's ui-components package is a separate open source repository, developing within both repos locally requires linking the folders with the following steps: +### Directory Setup +1. Clone both Bloom and the [ui-components repository](https://github.com/bloom-housing/ui-components) on the same directory level. +### Symlinking UI-C +1. In the Bloom directory, run `yarn link:uic`. +2. Open the next.config.js file in the public and partner's directory. +3. Uncomment the experimental property at the bottom of each file. +4. Follow the directions above to run Bloom locally. +These steps allow for two development patterns. You can edit ui-components within the node_modules of Bloom and the changes will be reflected in your local version of ui-components. Alternatively, you can edit the local version of ui-components and the changes will be reflected in the node_modules in Bloom. Both patterns will display up-to-date changes on the local server. + +### Unlinking UI-C +1. In the Bloom directory, run `yarn unlink:uic`. +2. Open the next.config.js file in the public and partner's directory. +3. Comment out the experimental property at the bottom of each file. +4. Follow the directions above to run Bloom locally. +Bloom will now be consuming the published version of @bloom-housing/ui-components specified in package.json and no local ui-component changes will be reflected. + + ## Contributing Contributions to the core Bloom applications and services are welcomed. To help us meet the project's goals around quality and maintainability, we ask that all contributors read, understand, and agree to our guidelines. diff --git a/api/package.json b/api/package.json index 3833cae39c..dbc45c7cb9 100644 --- a/api/package.json +++ b/api/package.json @@ -23,11 +23,11 @@ "db:migration:run": "yarn prisma migrate deploy", "db:seed:production": "npx prisma db seed -- --environment production", "db:seed:staging": "npx prisma db seed -- --environment staging", - "db:seed:development": "npx prisma db seed -- --environment development --jurisdictionName Bloomington", + "db:seed:development": "npx prisma db seed -- --environment development --jurisdictionName Alameda", "generate:client": "ts-node scripts/generate-axios-client.ts && prettier -w ../shared-helpers/src/types/backend-swagger.ts", "test:e2e": "yarn db:resetup && yarn db:migration:run && jest --config ./test/jest-e2e.config.js", "db:setup": "yarn db:resetup && yarn db:migration:run && yarn db:seed:development", - "db:setup:staging": "yarn db:resetup && yarn db:migration:run && yarn db:seed:staging --jurisdictionName Bloomington", + "db:setup:staging": "yarn db:resetup && yarn db:migration:run && yarn db:seed:staging --jurisdictionName Alameda", "setup": "yarn install && yarn prisma generate && yarn build && yarn db:setup:staging", "db:migration:skip": "yarn prisma migrate resolve --applied ", "setup:dev": "yarn install && yarn prisma generate && yarn build && yarn db:setup" diff --git a/api/prisma/seed-staging.ts b/api/prisma/seed-staging.ts index 528a0e434d..9f0ec8d919 100644 --- a/api/prisma/seed-staging.ts +++ b/api/prisma/seed-staging.ts @@ -46,9 +46,12 @@ export const stagingSeed = async ( const jurisdiction = await prismaClient.jurisdictions.create({ data: jurisdictionFactory(jurisdictionName, [UserRoleEnum.admin]), }); - // add another jurisdiction + // add additional jurisdictions const additionalJurisdiction = await prismaClient.jurisdictions.create({ - data: jurisdictionFactory(randomNoun()), + data: jurisdictionFactory('San Mateo'), + }); + await prismaClient.jurisdictions.create({ + data: jurisdictionFactory('San Jose'), }); // create admin user await prismaClient.userAccounts.create({ diff --git a/api/src/controllers/auth.controller.ts b/api/src/controllers/auth.controller.ts index 497d01e4c8..bffbebee40 100644 --- a/api/src/controllers/auth.controller.ts +++ b/api/src/controllers/auth.controller.ts @@ -93,6 +93,19 @@ export class AuthController { return await this.authService.requestMfaCode(dto); } + @Post('request-single-use-code') + @ApiOperation({ + summary: 'Request single use code', + operationId: 'requestSingleUseCode', + }) + @ApiOkResponse({ type: SuccessDTO }) + async requestSingleUseCode( + @Request() req: ExpressRequest, + @Body() dto: RequestSingleUseCode, + ): Promise { + return await this.authService.requestSingleUseCode(dto, req); + } + @Get('requestNewToken') @ApiOperation({ summary: 'Requests a new token given a refresh token', diff --git a/api/src/services/auth.service.ts b/api/src/services/auth.service.ts index 4e5a995ad7..a751b06c39 100644 --- a/api/src/services/auth.service.ts +++ b/api/src/services/auth.service.ts @@ -4,7 +4,7 @@ import { NotFoundException, UnauthorizedException, } from '@nestjs/common'; -import { CookieOptions, Response } from 'express'; +import { CookieOptions, Request, Response } from 'express'; import { sign, verify } from 'jsonwebtoken'; import { Prisma } from '@prisma/client'; import { UpdatePassword } from '../dtos/auth/update-password.dto'; @@ -22,6 +22,8 @@ import { generateSingleUseCode } from '../utilities/generate-single-use-code'; import { Confirm } from '../dtos/auth/confirm.dto'; import { SmsService } from './sms.service'; import { EmailService } from './email.service'; +import { RequestSingleUseCode } from '../dtos/single-use-code/request-single-use-code.dto'; +import { OrderByEnum } from '../enums/shared/order-by-enum'; // since our local env doesn't have an https cert we can't be secure. Hosted envs should be secure const secure = process.env.NODE_ENV !== 'development'; @@ -244,6 +246,76 @@ export class AuthService { }; } + /** + * + * @param dto the incoming request with the email + * @returns a SuccessDTO always, and if the user exists it will send a code to the requester + */ + async requestSingleUseCode( + dto: RequestSingleUseCode, + req: Request, + ): Promise { + const user = await this.prisma.userAccounts.findFirst({ + where: { email: dto.email }, + include: { + jurisdictions: true, + }, + }); + if (!user) { + return { success: true }; + } + + const jurisName = req?.headers?.jurisdictionname; + if (!jurisName) { + throw new BadRequestException( + 'jurisdictionname is missing from the request headers', + ); + } + + const juris = await this.prisma.jurisdictions.findFirst({ + select: { + id: true, + allowSingleUseCodeLogin: true, + }, + where: { + name: jurisName as string, + }, + orderBy: { + allowSingleUseCodeLogin: OrderByEnum.DESC, + }, + }); + + if (!juris) { + throw new BadRequestException( + `Jurisidiction ${jurisName} does not exists`, + ); + } + + if (!juris.allowSingleUseCodeLogin) { + throw new BadRequestException( + `Single use code login is not setup for ${jurisName}`, + ); + } + + const singleUseCode = generateSingleUseCode(); + await this.prisma.userAccounts.update({ + data: { + singleUseCode, + singleUseCodeUpdatedAt: new Date(), + }, + where: { + id: user.id, + }, + }); + + await this.emailsService.sendSingleUseCode( + mapTo(User, user), + singleUseCode, + ); + + return { success: true }; + } + /* updates a user's password and logs them in */ diff --git a/api/src/services/sendgrid.service.ts b/api/src/services/sendgrid.service.ts index b6875ac57e..59fa05a8a2 100644 --- a/api/src/services/sendgrid.service.ts +++ b/api/src/services/sendgrid.service.ts @@ -13,7 +13,7 @@ export class SendGridService { private readonly mailService: MailService, private readonly configService: ConfigService, ) { - this.mailService.setApiKey(configService.get('EMAIL_API_KEY')); + this.mailService.setApiKey(this.configService.get('EMAIL_API_KEY')); } public async send( diff --git a/api/test/integration/auth.e2e-spec.ts b/api/test/integration/auth.e2e-spec.ts index fe04098905..5a4f96facf 100644 --- a/api/test/integration/auth.e2e-spec.ts +++ b/api/test/integration/auth.e2e-spec.ts @@ -14,7 +14,6 @@ import { TOKEN_COOKIE_NAME, } from '../../src/services/auth.service'; import { SmsService } from '../../src/services/sms.service'; -import { EmailService } from '../../src/services/email.service'; import { RequestMfaCode } from '../../src/dtos/mfa/request-mfa-code.dto'; import { UpdatePassword } from '../../src/dtos/auth/update-password.dto'; import { Confirm } from '../../src/dtos/auth/confirm.dto'; @@ -24,7 +23,6 @@ describe('Auth Controller Tests', () => { let app: INestApplication; let prisma: PrismaService; let smsService: SmsService; - let emailService: EmailService; beforeAll(async () => { const moduleFixture: TestingModule = await Test.createTestingModule({ @@ -35,7 +33,6 @@ describe('Auth Controller Tests', () => { app.use(cookieParser()); prisma = moduleFixture.get(PrismaService); smsService = moduleFixture.get(SmsService); - emailService = moduleFixture.get(EmailService); await app.init(); }); diff --git a/api/test/unit/services/auth.service.spec.ts b/api/test/unit/services/auth.service.spec.ts index 8e920525e9..dc7c49c3cc 100644 --- a/api/test/unit/services/auth.service.spec.ts +++ b/api/test/unit/services/auth.service.spec.ts @@ -1,7 +1,7 @@ import { Test, TestingModule } from '@nestjs/testing'; import { randomUUID } from 'crypto'; import { sign } from 'jsonwebtoken'; -import { Response } from 'express'; +import { Response, Request } from 'express'; import { ConfigService } from '@nestjs/config'; import { MailService } from '@sendgrid/mail'; import { @@ -29,7 +29,7 @@ import { JurisdictionService } from '../../../src/services/jurisdiction.service' import { GoogleTranslateService } from '../../../src/services/google-translate.service'; import { PermissionService } from '../../../src/services/permission.service'; import { Jurisdiction } from '../../../src/dtos/jurisdictions/jurisdiction.dto'; -import { generateSingleUseCode } from '../../../src/utilities/generate-single-use-code'; +import { OrderByEnum } from '../../../src/enums/shared/order-by-enum'; describe('Testing auth service', () => { let authService: AuthService; @@ -835,4 +835,219 @@ describe('Testing auth service', () => { ACCESS_TOKEN_AVAILABLE_OPTIONS, ); }); + + it('should request single use code but user does not exist', async () => { + const id = randomUUID(); + emailService.sendSingleUseCode = jest.fn(); + prisma.userAccounts.findFirst = jest.fn().mockResolvedValue(null); + prisma.userAccounts.update = jest.fn().mockResolvedValue({ + id, + }); + + const res = await authService.requestSingleUseCode( + { + email: 'example@exygy.com', + }, + { headers: { jurisdictionname: 'juris 1' } } as unknown as Request, + ); + + expect(prisma.userAccounts.findFirst).toHaveBeenCalledWith({ + where: { + email: 'example@exygy.com', + }, + include: { + jurisdictions: true, + }, + }); + expect(prisma.userAccounts.update).not.toHaveBeenCalled(); + expect(emailService.sendSingleUseCode).not.toHaveBeenCalled(); + expect(res).toEqual({ + success: true, + }); + }); + + it('should request single use code but jurisdiction does not exist', async () => { + const id = randomUUID(); + emailService.sendSingleUseCode = jest.fn(); + prisma.userAccounts.findFirst = jest.fn().mockResolvedValue({ + id, + }); + prisma.jurisdictions.findFirst = jest.fn().mockResolvedValue(null); + prisma.userAccounts.update = jest.fn().mockResolvedValue({ + id, + }); + + await expect( + async () => + await authService.requestSingleUseCode( + { + email: 'example@exygy.com', + }, + { headers: { jurisdictionname: 'juris 1' } } as unknown as Request, + ), + ).rejects.toThrowError('Jurisidiction juris 1 does not exists'); + + expect(prisma.userAccounts.findFirst).toHaveBeenCalledWith({ + where: { + email: 'example@exygy.com', + }, + include: { + jurisdictions: true, + }, + }); + expect(prisma.jurisdictions.findFirst).toHaveBeenCalledWith({ + select: { + id: true, + allowSingleUseCodeLogin: true, + }, + where: { + name: 'juris 1', + }, + orderBy: { + allowSingleUseCodeLogin: OrderByEnum.DESC, + }, + }); + expect(prisma.userAccounts.update).not.toHaveBeenCalled(); + expect(emailService.sendSingleUseCode).not.toHaveBeenCalled(); + }); + + it('should request single use code but jurisdiction disallows single use code login', async () => { + const id = randomUUID(); + emailService.sendSingleUseCode = jest.fn(); + prisma.userAccounts.findFirst = jest.fn().mockResolvedValue({ + id, + }); + prisma.jurisdictions.findFirst = jest.fn().mockResolvedValue({ + id: randomUUID(), + allowSingleUseCodeLogin: false, + }); + prisma.userAccounts.update = jest.fn().mockResolvedValue({ + id, + }); + + await expect( + async () => + await authService.requestSingleUseCode( + { + email: 'example@exygy.com', + }, + { headers: { jurisdictionname: 'juris 1' } } as unknown as Request, + ), + ).rejects.toThrowError('Single use code login is not setup for juris 1'); + + expect(prisma.userAccounts.findFirst).toHaveBeenCalledWith({ + where: { + email: 'example@exygy.com', + }, + include: { + jurisdictions: true, + }, + }); + expect(prisma.jurisdictions.findFirst).toHaveBeenCalledWith({ + select: { + id: true, + allowSingleUseCodeLogin: true, + }, + where: { + name: 'juris 1', + }, + orderBy: { + allowSingleUseCodeLogin: OrderByEnum.DESC, + }, + }); + expect(prisma.userAccounts.update).not.toHaveBeenCalled(); + expect(emailService.sendSingleUseCode).not.toHaveBeenCalled(); + }); + + it('should request single use code but jurisdictionname was not sent', async () => { + const id = randomUUID(); + emailService.sendSingleUseCode = jest.fn(); + prisma.userAccounts.findFirst = jest.fn().mockResolvedValue({ + id, + }); + prisma.jurisdictions.findFirst = jest.fn().mockResolvedValue({ + id, + }); + prisma.userAccounts.update = jest.fn().mockResolvedValue({ + id, + }); + + await expect( + async () => + await authService.requestSingleUseCode( + { + email: 'example@exygy.com', + }, + {} as unknown as Request, + ), + ).rejects.toThrowError( + 'jurisdictionname is missing from the request headers', + ); + + expect(prisma.userAccounts.findFirst).toHaveBeenCalledWith({ + where: { + email: 'example@exygy.com', + }, + include: { + jurisdictions: true, + }, + }); + expect(prisma.jurisdictions.findFirst).not.toHaveBeenCalled(); + expect(prisma.userAccounts.update).not.toHaveBeenCalled(); + expect(emailService.sendSingleUseCode).not.toHaveBeenCalled(); + }); + + it('should successfully request single use code', async () => { + const id = randomUUID(); + emailService.sendSingleUseCode = jest.fn(); + prisma.userAccounts.findFirst = jest.fn().mockResolvedValue({ + id, + }); + prisma.jurisdictions.findFirst = jest.fn().mockResolvedValue({ + id, + allowSingleUseCodeLogin: true, + }); + prisma.userAccounts.update = jest.fn().mockResolvedValue({ + id, + }); + + const res = await authService.requestSingleUseCode( + { + email: 'example@exygy.com', + }, + { headers: { jurisdictionname: 'juris 1' } } as unknown as Request, + ); + + expect(prisma.userAccounts.findFirst).toHaveBeenCalledWith({ + where: { + email: 'example@exygy.com', + }, + include: { + jurisdictions: true, + }, + }); + expect(prisma.jurisdictions.findFirst).toHaveBeenCalledWith({ + select: { + id: true, + allowSingleUseCodeLogin: true, + }, + where: { + name: 'juris 1', + }, + orderBy: { + allowSingleUseCodeLogin: OrderByEnum.DESC, + }, + }); + expect(prisma.userAccounts.update).toHaveBeenCalledWith({ + data: { + singleUseCode: expect.anything(), + singleUseCodeUpdatedAt: expect.anything(), + }, + where: { + id, + }, + }); + expect(emailService.sendSingleUseCode).toHaveBeenCalled(); + expect(res.success).toEqual(true); + }); }); diff --git a/backend/core/CHANGELOG.md b/backend/core/CHANGELOG.md index 19257162f0..00c0ff22d7 100644 --- a/backend/core/CHANGELOG.md +++ b/backend/core/CHANGELOG.md @@ -2175,62 +2175,63 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. ### Bug Fixes -* make isWaitlistOpen optional ([#2809](https://github.com/bloom-housing/bloom/issues/2809)) ([37c5a98](https://github.com/bloom-housing/bloom/commit/37c5a9803d7e88095d36a22c1e4d634b14d5f72a)) +* fix flaky test by configuring the thottler ([#3305](https://github.com/bloom-housing/bloom/issues/3305)) ([82e5755](https://github.com/bloom-housing/bloom/commit/82e5755de248b47eb2e81cfb4bea7dddc1cb9617)) -## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.10...@bloom-housing/backend-core@4.4.1-alpha.11) (2022-06-09) +# [7.7.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.6.0...@bloom-housing/backend-core@7.7.0) (2023-01-26) ### Features -* add settings page to partners ([#2789](https://github.com/bloom-housing/bloom/issues/2789)) ([3869946](https://github.com/bloom-housing/bloom/commit/3869946a016510f53b20854a06c5f32187c4de79)) - +* add marked and flagged as duplicate to all applications table ([#3214](https://github.com/bloom-housing/bloom/issues/3214)) ([f79f415](https://github.com/bloom-housing/bloom/commit/f79f415a917873e11b12b8795c2915f13737574f)) +### Reverts +* Revert "feat: switching to auth cookies" ([b493092](https://github.com/bloom-housing/bloom/commit/b4930925ba0f142078f900ca95a33366752f6c7a)) +* Revert "fix: update to fix hosted envs (#3235)" ([0e50494](https://github.com/bloom-housing/bloom/commit/0e5049454d462fca24036ed664ae2b2faff664f3)), closes [#3235](https://github.com/bloom-housing/bloom/issues/3235) -## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.9...@bloom-housing/backend-core@4.4.1-alpha.10) (2022-06-03) -**Note:** Version bump only for package @bloom-housing/backend-core +# [7.6.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.5.0...@bloom-housing/backend-core@7.6.0) (2022-12-23) -## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.8...@bloom-housing/backend-core@4.4.1-alpha.9) (2022-06-02) +### Features -**Note:** Version bump only for package @bloom-housing/backend-core +* add 5 bedroom option ([#3230](https://github.com/bloom-housing/bloom/issues/3230)) ([8ada8dc](https://github.com/bloom-housing/bloom/commit/8ada8dcea9d2c3bf3fdd6f574bbe8afd08eb1a9d)) -## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.7...@bloom-housing/backend-core@4.4.1-alpha.8) (2022-06-01) +# [7.5.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.4.0...@bloom-housing/backend-core@7.5.0) (2022-12-13) ### Features -* add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +* remove redis and correct the throttler ([#3201](https://github.com/bloom-housing/bloom/issues/3201)) ([28c2f33](https://github.com/bloom-housing/bloom/commit/28c2f330816e6b0c0fa8fba8abc48d6d240cc2bf)) -## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.6...@bloom-housing/backend-core@4.4.1-alpha.7) (2022-05-31) +# [7.4.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.3.1...@bloom-housing/backend-core@7.4.0) (2022-12-08) ### Features -* load overly to partner listings grid ([#2621](https://github.com/bloom-housing/bloom/issues/2621)) ([4785f34](https://github.com/bloom-housing/bloom/commit/4785f344831f97dac2164224e32247619e5ac808)) +* Updates from hba 12-07-2022 ([#3210](https://github.com/bloom-housing/bloom/issues/3210)) ([7d55de4](https://github.com/bloom-housing/bloom/commit/7d55de436194de31d91276c68038143c3fd56e92)), closes [#523](https://github.com/bloom-housing/bloom/issues/523) [#537](https://github.com/bloom-housing/bloom/issues/537) [#541](https://github.com/bloom-housing/bloom/issues/541) [#545](https://github.com/bloom-housing/bloom/issues/545) [#551](https://github.com/bloom-housing/bloom/issues/551) [#553](https://github.com/bloom-housing/bloom/issues/553) [#550](https://github.com/bloom-housing/bloom/issues/550) -## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.5...@bloom-housing/backend-core@4.4.1-alpha.6) (2022-05-31) +## [7.3.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.3.0...@bloom-housing/backend-core@7.3.1) (2022-12-06) **Note:** Version bump only for package @bloom-housing/backend-core @@ -2238,2491 +2239,3633 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.4...@bloom-housing/backend-core@4.4.1-alpha.5) (2022-05-31) - -**Note:** Version bump only for package @bloom-housing/backend-core - +# [7.3.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.2.0...@bloom-housing/backend-core@7.3.0) (2022-12-06) +### Features +* migrate afs job off of redis ([#3199](https://github.com/bloom-housing/bloom/issues/3199)) ([2d8afa2](https://github.com/bloom-housing/bloom/commit/2d8afa2836011b206f24c6de40cfebc015def388)) -## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.3...@bloom-housing/backend-core@4.4.1-alpha.4) (2022-05-26) -**Note:** Version bump only for package @bloom-housing/backend-core +# [7.2.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.1.0...@bloom-housing/backend-core@7.2.0) (2022-11-30) -## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.2...@bloom-housing/backend-core@4.4.1-alpha.3) (2022-05-25) +### Features -**Note:** Version bump only for package @bloom-housing/backend-core +* add startDate field to listing events ([#3167](https://github.com/bloom-housing/bloom/issues/3167)) ([3d0aa11](https://github.com/bloom-housing/bloom/commit/3d0aa11abf36db016fa3ce3117a72b5fdad88614)) -## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.1...@bloom-housing/backend-core@4.4.1-alpha.2) (2022-05-25) +# [7.1.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.2...@bloom-housing/backend-core@7.1.0) (2022-11-21) -**Note:** Version bump only for package @bloom-housing/backend-core +### Features +* adding UUID validation ([#3172](https://github.com/bloom-housing/bloom/issues/3172)) ([320c0f0](https://github.com/bloom-housing/bloom/commit/320c0f0e2e2ec8b40bcdddc39875456d53e7cca4)) -## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.0...@bloom-housing/backend-core@4.4.1-alpha.1) (2022-05-25) -### Performance Improvements +## [7.0.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.2-alpha.0...@bloom-housing/backend-core@7.0.2) (2022-11-14) -* user list and user getQb ([#2756](https://github.com/bloom-housing/bloom/issues/2756)) ([bc45879](https://github.com/bloom-housing/bloom/commit/bc45879f79934b5a1cf48a4d6a911048906e3184)) +**Note:** Version bump only for package @bloom-housing/backend-core -## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.3.1-alpha.1...@bloom-housing/backend-core@4.4.1-alpha.0) (2022-05-25) +## [7.0.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.1...@bloom-housing/backend-core@7.0.2-alpha.0) (2022-11-02) -* 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### Bug Fixes +* upgrade ioredis version ([#3161](https://github.com/bloom-housing/bloom/issues/3161)) ([8e8644b](https://github.com/bloom-housing/bloom/commit/8e8644b590e51f07cdcdb715bd09a1d8d09b1386)) -### BREAKING CHANGES -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +## [7.0.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.1-alpha.5...@bloom-housing/backend-core@7.0.1) (2022-10-26) +**Note:** Version bump only for package @bloom-housing/backend-core -# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.2.3...@bloom-housing/backend-core@4.4.0) (2022-05-24) -* 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +## [7.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.1-alpha.4...@bloom-housing/backend-core@7.0.1-alpha.5) (2022-10-26) -### BREAKING CHANGES +### Bug Fixes -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +* change the cron job logging level ([#3150](https://github.com/bloom-housing/bloom/issues/3150)) ([fe43154](https://github.com/bloom-housing/bloom/commit/fe4315423ffd17ee22d16018cc938271592dfcf5)) -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +## [7.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.1-alpha.3...@bloom-housing/backend-core@7.0.1-alpha.4) (2022-10-25) -## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.3.1-alpha.0...@bloom-housing/backend-core@4.3.1-alpha.1) (2022-05-24) +### Features -**Note:** Version bump only for package @bloom-housing/backend-core +* add thank you translations to email footer ([5f3c7b1](https://github.com/bloom-housing/bloom/commit/5f3c7b1e81357e1aff5f3f3532dbb7691ac243ce)) -## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.9...@bloom-housing/backend-core@4.3.1-alpha.0) (2022-05-16) +## [7.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.1-alpha.2...@bloom-housing/backend-core@7.0.1-alpha.3) (2022-10-21) ### Bug Fixes -* adds region to user phone # validation ([#2652](https://github.com/bloom-housing/bloom/issues/2652)) ([d3e0c40](https://github.com/bloom-housing/bloom/commit/d3e0c4041d9aba4d703da85596d59ec765ad179a)) -* ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([5e18eba](https://github.com/bloom-housing/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) -* app submission w/ no due date ([8e5a81c](https://github.com/bloom-housing/bloom/commit/8e5a81c37c4efc3404e5536bd54c10cd2962bca3)) -* authservice.token data null issue ([#2703](https://github.com/bloom-housing/bloom/issues/2703)) ([5430fa2](https://github.com/bloom-housing/bloom/commit/5430fa2802b2590c7514f228c200ae040eccf403)) -* await casbin enforcer ([d7eb196](https://github.com/bloom-housing/bloom/commit/d7eb196be0b05732325938e2db7b583d66cbc9cf)) -* cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/bloom-housing/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) -* csv export auth check ([#2488](https://github.com/bloom-housing/bloom/issues/2488)) ([6faf8f5](https://github.com/bloom-housing/bloom/commit/6faf8f59b115adf73e70d56c855ba5b6d325d22a)) -* fix for csv dempgraphics and preference patch ([0ffc090](https://github.com/bloom-housing/bloom/commit/0ffc0900fee73b34fd953e5355552e2e763c239c)) -* listings management keep empty strings, remove empty objects ([3aba274](https://github.com/bloom-housing/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) -* patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([21f517e](https://github.com/bloom-housing/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) -* recalculate units available on listing update ([9c3967f](https://github.com/bloom-housing/bloom/commit/9c3967f0b74526db39df4f5dbc7ad9a52741a6ea)) -* units with invalid ami chart ([621ff02](https://github.com/bloom-housing/bloom/commit/621ff0227270861047e885467f9ddd77459adec1)) -* updates household member count ([f822713](https://github.com/bloom-housing/bloom/commit/f82271397d02025629d7ea039b40cdac95877c45)) -* updates partner check for listing perm ([#2484](https://github.com/bloom-housing/bloom/issues/2484)) ([c2ab01f](https://github.com/bloom-housing/bloom/commit/c2ab01f6520b138bead01dec7352618b90635432)) - - -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) -* Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) +* update activity-log relationship to users for deletion ([#3139](https://github.com/bloom-housing/bloom/issues/3139)) ([f95532e](https://github.com/bloom-housing/bloom/commit/f95532e4ebe693c128d742399030054d0f735164)) -### Features -* add a phone number column to the user_accounts table ([44881da](https://github.com/bloom-housing/bloom/commit/44881da1a7ccc17b7d4db1fcf79513632c18066d)) -* Add San Jose email translations ([#2519](https://github.com/bloom-housing/bloom/issues/2519)) ([d1db032](https://github.com/bloom-housing/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) -* add SRO unit type ([a4c1403](https://github.com/bloom-housing/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) -* adding alameda prog and prefs ([#2696](https://github.com/bloom-housing/bloom/issues/2696)) ([85c0bf5](https://github.com/bloom-housing/bloom/commit/85c0bf5b41c86c4dddb0bfb99d65a652f8cad1a0)) -* adds jurisdictions to pref seeds ([8a70b68](https://github.com/bloom-housing/bloom/commit/8a70b688ec8c6eb785543d5ce91ae182f62af168)) -* adds new preferences, reserved community type ([90c0673](https://github.com/bloom-housing/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) -* adds whatToExpect to GTrans ([461961a](https://github.com/bloom-housing/bloom/commit/461961a4dd48d7a1c935e4dc03e9a62d2f455088)) -* adds whatToExpect to GTrans ([#2303](https://github.com/bloom-housing/bloom/issues/2303)) ([38e672a](https://github.com/bloom-housing/bloom/commit/38e672a4dbd6c39a7a01b04698f2096a62eed8a1)) -* ami chart jurisdictionalized ([b2e2537](https://github.com/bloom-housing/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) -* **backend:** add storing listing translations ([#2215](https://github.com/bloom-housing/bloom/issues/2215)) ([d6a1337](https://github.com/bloom-housing/bloom/commit/d6a1337fbe3da8a159e2b60638fc527aa65aaef0)) -* **backend:** all programs to csv export ([#2302](https://github.com/bloom-housing/bloom/issues/2302)) ([48b50f9](https://github.com/bloom-housing/bloom/commit/48b50f95be794773cc68ebee3144c1f44db26f04)) -* **backend:** fix translations table relation to jurisdiction ([#2506](https://github.com/bloom-housing/bloom/issues/2506)) ([22b9f23](https://github.com/bloom-housing/bloom/commit/22b9f23eb405f701796193515dff35058cc4f7dc)) -* better seed data for ami-charts ([24eb7e4](https://github.com/bloom-housing/bloom/commit/24eb7e41512963f8dc716b74e8a8684e1272e1b7)) -* feat(backend): make use of new application confirmation codes ([8f386e8](https://github.com/bloom-housing/bloom/commit/8f386e8e656c8d498d41de947f2e5246d3c16b19)) -* new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/bloom-housing/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/bloom-housing/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* temp disable terms and set mfa enabled to false ([#2595](https://github.com/bloom-housing/bloom/issues/2595)) ([6de2dcd](https://github.com/bloom-housing/bloom/commit/6de2dcd8baeb28166d7a6c383846a7ab9a84b0e2)) -* updates email confirmation for lottery ([768064a](https://github.com/bloom-housing/bloom/commit/768064a985ed858fae681caebcbcdb561319eaf9)) -### Reverts +## [7.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.1-alpha.1...@bloom-housing/backend-core@7.0.1-alpha.2) (2022-10-19) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### Bug Fixes -### BREAKING CHANGES +* correct the cron jobs ([407c0fb](https://github.com/bloom-housing/bloom/commit/407c0fbe10e3150047dadbb43c5248b768e8dc63)) -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +## [7.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@7.0.1-alpha.0...@bloom-housing/backend-core@7.0.1-alpha.1) (2022-10-13) -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +### Bug Fixes -* chore(release): version +* add back in eligibility translations ([#3134](https://github.com/bloom-housing/bloom/issues/3134)) ([a9ba463](https://github.com/bloom-housing/bloom/commit/a9ba463bfb414ff13820616f7045f43cc997dca2)) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +## [7.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@6.0.1-alpha.2...@bloom-housing/backend-core@7.0.1-alpha.0) (2022-10-05) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/backend-core - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* preferences model and relationships changed +# [7.0.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.19...@bloom-housing/backend-core@7.0.0) (2022-09-29) -* feat: feat(backend): extend UserUpdateDto to support email change -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +* Release/2022 09 29 (#3114) ([dd9cbd6](https://github.com/bloom-housing/bloom/commit/dd9cbd6e549c69a3410a0753011e8f157ef61f31)), closes [#3114](https://github.com/bloom-housing/bloom/issues/3114) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3056](https://github.com/bloom-housing/bloom/issues/3056) [#3075](https://github.com/bloom-housing/bloom/issues/3075) [#3095](https://github.com/bloom-housing/bloom/issues/3095) [#3090](https://github.com/bloom-housing/bloom/issues/3090) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) -* fix: 2056/user account edit fix -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +### BREAKING CHANGES -* refactor: 2085/adds top level catchAll exception filter +* The preference and program entities have been merged into a single entity called MultiselectQuestion -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +* chore(release): version -* feat: feat: Change unit number field type to text + - @bloom-housing/backend-core@5.1.1-alpha.8 + - @bloom-housing/shared-helpers@5.1.1-alpha.18 + - @bloom-housing/partners@5.1.1-alpha.20 + - @bloom-housing/public@5.1.1-alpha.18 + - @bloom-housing/ui-components@5.1.1-alpha.11 -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +## [6.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@6.0.1-alpha.0...@bloom-housing/backend-core@6.0.1-alpha.1) (2022-09-28) -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +### Features -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- add duplicates v2 feature ([11cd2b3](https://github.com/bloom-housing/bloom/commit/11cd2b3b4d39c69e10ca1c9a8c2c7199b4a08b6b)), closes [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) -* fix: adds programs service +### BREAKING CHANGES -* fix: fix lisitng e2e tests +- The preference and program entities have been merged into a single entity called MultiselectQuestion -* fix: fix member tests +- chore(release): version +* @bloom-housing/backend-core@5.1.1-alpha.8 +* @bloom-housing/shared-helpers@5.1.1-alpha.18 +* @bloom-housing/partners@5.1.1-alpha.20 +* @bloom-housing/public@5.1.1-alpha.18 +* @bloom-housing/ui-components@5.1.1-alpha.11 +## [6.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.24...@bloom-housing/backend-core@6.0.1-alpha.0) (2022-09-28) +**Note:** Version bump only for package @bloom-housing/backend-core +## [5.1.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.23...@bloom-housing/backend-core@5.1.1-alpha.24) (2022-09-28) -## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.2.2...@bloom-housing/backend-core@4.2.3) (2022-04-28) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/backend-core +- email tests ([#3095](https://github.com/bloom-housing/bloom/issues/3095)) ([a663dfd](https://github.com/bloom-housing/bloom/commit/a663dfd3df457f88130e59c37ea30d70ae2b6d0b)) + +## [5.1.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.22...@bloom-housing/backend-core@5.1.1-alpha.23) (2022-09-28) ### Features -* adding alameda prog and prefs ([#2696](https://github.com/seanmalbert/bloom/issues/2696)) ([85c0bf5](https://github.com/seanmalbert/bloom/commit/85c0bf5b41c86c4dddb0bfb99d65a652f8cad1a0)) -## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.8...@bloom-housing/backend-core@4.2.2-alpha.9) (2022-05-11) +- **preferences:** add delete preference button ([#3075](https://github.com/bloom-housing/bloom/issues/3075)) ([29a079e](https://github.com/bloom-housing/bloom/commit/29a079e23ecc5cd31589993fef0c9de661c6e8c8)) + +## [5.1.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.21...@bloom-housing/backend-core@5.1.1-alpha.22) (2022-09-26) **Note:** Version bump only for package @bloom-housing/backend-core +## [5.1.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.20...@bloom-housing/backend-core@5.1.1-alpha.21) (2022-09-22) + +### Bug Fixes +- update email confirmation what to expect copy ([#3061](https://github.com/bloom-housing/bloom/issues/3061)) ([2acb27c](https://github.com/bloom-housing/bloom/commit/2acb27ca066cf0a21a0f134182b455f766b29739)) +## [5.1.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.19...@bloom-housing/backend-core@5.1.1-alpha.20) (2022-09-13) +### Bug Fixes -## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.7...@bloom-housing/backend-core@4.2.2-alpha.8) (2022-05-11) +- return N/A string if rent and income is NaN ([#3040](https://github.com/bloom-housing/bloom/issues/3040)) ([be5c1a1](https://github.com/bloom-housing/bloom/commit/be5c1a1c7d68395264ea9bf7ddacf8c2ca9bfbef)) +## [5.1.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.18...@bloom-housing/backend-core@5.1.1-alpha.19) (2022-09-09) -### Features +### Bug Fixes -* **backend:** add search param to GET /user/list endpoint ([#2714](https://github.com/bloom-housing/bloom/issues/2714)) ([95c9a68](https://github.com/bloom-housing/bloom/commit/95c9a6838f534450c0da6919064f4a799898ed8f)) +- fix for big timeout on flagged set ([#2946](https://github.com/bloom-housing/bloom/issues/2946)) ([7c6e6c6](https://github.com/bloom-housing/bloom/commit/7c6e6c68daba9d506eb4d534c68b7a65a597aa0a)) +- 2022-08-24 release (#2993) ([6f1deac](https://github.com/bloom-housing/bloom/commit/6f1deac5370fa8286b051b09431d153d22901b3a)), closes [#2993](https://github.com/bloom-housing/bloom/issues/2993) [#2821](https://github.com/bloom-housing/bloom/issues/2821) [#2764](https://github.com/bloom-housing/bloom/issues/2764) [#2767](https://github.com/bloom-housing/bloom/issues/2767) [#2787](https://github.com/bloom-housing/bloom/issues/2787) [#2769](https://github.com/bloom-housing/bloom/issues/2769) [#2781](https://github.com/bloom-housing/bloom/issues/2781) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2847](https://github.com/bloom-housing/bloom/issues/2847) [#2830](https://github.com/bloom-housing/bloom/issues/2830) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2846](https://github.com/bloom-housing/bloom/issues/2846) [#2851](https://github.com/bloom-housing/bloom/issues/2851) [#2594](https://github.com/bloom-housing/bloom/issues/2594) [#2812](https://github.com/bloom-housing/bloom/issues/2812) [#2799](https://github.com/bloom-housing/bloom/issues/2799) [#2828](https://github.com/bloom-housing/bloom/issues/2828) [#2843](https://github.com/bloom-housing/bloom/issues/2843) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [#2875](https://github.com/bloom-housing/bloom/issues/2875) [#2859](https://github.com/bloom-housing/bloom/issues/2859) [#2848](https://github.com/bloom-housing/bloom/issues/2848) [#2785](https://github.com/bloom-housing/bloom/issues/2785) +### BREAKING CHANGES +- prop name change for header from "text" to "content" +- chore(release): version -## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.6...@bloom-housing/backend-core@4.2.2-alpha.7) (2022-05-03) +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 +## [5.1.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.12...@bloom-housing/backend-core@5.1.1-alpha.13) (2022-08-24) ### Features -* **backend:** improve ami chart dto definitions ([#2677](https://github.com/bloom-housing/bloom/issues/2677)) ([ca3890e](https://github.com/bloom-housing/bloom/commit/ca3890e2759f230824e31e6bd985300f40b0a0ed)) +- adds the ability to manage preference for partner admins ([#2985](https://github.com/bloom-housing/bloom/issues/2985)) ([0f1f470](https://github.com/bloom-housing/bloom/commit/0f1f470f00f4ef95a2e35a921701339fb813f1f5)) +## [5.1.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.11...@bloom-housing/backend-core@5.1.1-alpha.12) (2022-08-24) +### Bug Fixes +- update to fix some lingering migration issues ([#2991](https://github.com/bloom-housing/bloom/issues/2991)) ([3136c63](https://github.com/bloom-housing/bloom/commit/3136c637a63b1286dbccee67ec3e4a8f68e5d8e3)) +## [5.1.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.10...@bloom-housing/backend-core@5.1.1-alpha.11) (2022-08-24) -## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.5...@bloom-housing/backend-core@4.2.2-alpha.6) (2022-04-29) +### Features +- show preference details on listing form ([#2989](https://github.com/bloom-housing/bloom/issues/2989)) ([b4b2b9e](https://github.com/bloom-housing/bloom/commit/b4b2b9ee75c4895ea5b0694dddbf0c8979c0e251)) + +## [5.1.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.9...@bloom-housing/backend-core@5.1.1-alpha.10) (2022-08-23) ### Bug Fixes -* check for empty translations before sending to google translate service ([#2700](https://github.com/bloom-housing/bloom/issues/2700)) ([d116fdb](https://github.com/bloom-housing/bloom/commit/d116fdbdab3c874679abc8e3dba8e23179fc78e2)) +- Migration hotfix 2 ([#2990](https://github.com/bloom-housing/bloom/issues/2990)) ([a213238](https://github.com/bloom-housing/bloom/commit/a213238944cd23c36f55264c2a4a489f79d99702)) +## [5.1.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.8...@bloom-housing/backend-core@5.1.1-alpha.9) (2022-08-23) +### Bug Fixes +- update to get migration to run on dev ([#2987](https://github.com/bloom-housing/bloom/issues/2987)) ([f52ff59](https://github.com/bloom-housing/bloom/commit/f52ff59bbe345fab7b45656fd27dcdb11cc79d57)) +## [5.1.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.7...@bloom-housing/backend-core@5.1.1-alpha.8) (2022-08-23) -## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.4...@bloom-housing/backend-core@4.2.2-alpha.5) (2022-04-28) +- refactor!: preferences & programs data model merged (#2904) ([8e027ff](https://github.com/bloom-housing/bloom/commit/8e027ff905118f36c61bc0f974231d9bb8911131)), closes [#2904](https://github.com/bloom-housing/bloom/issues/2904) +### BREAKING CHANGES -### Bug Fixes +- The preference and program entities have been merged into a single entity called MultiselectQuestion -* authservice.token data null issue ([#2703](https://github.com/bloom-housing/bloom/issues/2703)) ([3b1b931](https://github.com/bloom-housing/bloom/commit/3b1b9316a6dd42adc22249b8e8dd836de2258406)) +## [5.1.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.6...@bloom-housing/backend-core@5.1.1-alpha.7) (2022-08-22) +**Note:** Version bump only for package @bloom-housing/backend-core +## [5.1.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.5...@bloom-housing/backend-core@5.1.1-alpha.6) (2022-08-18) +### Bug Fixes +- update to resolve issue with migration ([#2963](https://github.com/bloom-housing/bloom/issues/2963)) ([3282be8](https://github.com/bloom-housing/bloom/commit/3282be89c41a7a5111912cbd27495e4489d3392d)) -## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.3...@bloom-housing/backend-core@4.2.2-alpha.4) (2022-04-27) +## [5.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.4...@bloom-housing/backend-core@5.1.1-alpha.5) (2022-08-16) -**Note:** Version bump only for package @bloom-housing/backend-core +### Features +- **listings:** update default sort of listings ([#2947](https://github.com/bloom-housing/bloom/issues/2947)) ([a555192](https://github.com/bloom-housing/bloom/commit/a5551926209c13b9dcc228ebe36f4527c7bae41b)) +## [5.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.3...@bloom-housing/backend-core@5.1.1-alpha.4) (2022-08-16) +### Reverts +- Revert "feat(backend): add bull job scheduler for afs processing (#2889)" (#2960) ([d790b17](https://github.com/bloom-housing/bloom/commit/d790b17d9c2cabb57a5fff4abb23da420d904d0c)), closes [#2889](https://github.com/bloom-housing/bloom/issues/2889) [#2960](https://github.com/bloom-housing/bloom/issues/2960) -## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.2...@bloom-housing/backend-core@4.2.2-alpha.3) (2022-04-21) +## [5.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.2...@bloom-housing/backend-core@5.1.1-alpha.3) (2022-08-16) +### Features + +- adds includeDemographics if admin ([#2955](https://github.com/bloom-housing/bloom/issues/2955)) ([173b417](https://github.com/bloom-housing/bloom/commit/173b417dd87335788ba7f8bcd4ab260e96d9e573)) + +## [5.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.1...@bloom-housing/backend-core@5.1.1-alpha.2) (2022-08-16) ### Features -* **backend:** improve user queries ([#2676](https://github.com/bloom-housing/bloom/issues/2676)) ([4733e8a](https://github.com/bloom-housing/bloom/commit/4733e8a9909e47bb2522f9b319f45fe25923cdb5)) +- **backend:** add bull job scheduler for afs processing ([#2889](https://github.com/bloom-housing/bloom/issues/2889)) ([0354e18](https://github.com/bloom-housing/bloom/commit/0354e18da4daea41f12e573b9449433c5fbc1f94)) +## [5.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.1.1-alpha.0...@bloom-housing/backend-core@5.1.1-alpha.1) (2022-08-12) +### Bug Fixes +- fix for big timeout on flagged set ([#2946](https://github.com/bloom-housing/bloom/issues/2946)) ([82645b7](https://github.com/bloom-housing/bloom/commit/82645b7593b08ed735b48e6b4e23d669784f6e96)) +## [5.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.15...@bloom-housing/backend-core@5.1.1-alpha.0) (2022-07-27) -## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.1...@bloom-housing/backend-core@4.2.2-alpha.2) (2022-04-20) +- 2022-07-26 sync master (#2917) ([6f0dd1d](https://github.com/bloom-housing/bloom/commit/6f0dd1df4d2df12e0e94cb339c9232531a37f2a2)), closes [#2917](https://github.com/bloom-housing/bloom/issues/2917) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES -### Features +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* **backend:** add jurisdiction default rental assistance text ([#2604](https://github.com/bloom-housing/bloom/issues/2604)) ([00b684c](https://github.com/bloom-housing/bloom/commit/00b684cd8b8b1f9ef201b8aec78c13572a4125a5)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +# [5.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@5.0.0...@bloom-housing/backend-core@5.1.0) (2022-07-27) +### Bug Fixes +- adds region to user phone # validation ([#2652](https://github.com/seanmalbert/bloom/issues/2652)) ([f4ab660](https://github.com/seanmalbert/bloom/commit/f4ab660912a4c675073558d407880c8a98687530)) +- ami charts without all households ([#2430](https://github.com/seanmalbert/bloom/issues/2430)) ([92dfbad](https://github.com/seanmalbert/bloom/commit/92dfbad32c90d84ee1ec3a3468c084cb110aa8be)) +- authservice.token data null issue ([#2703](https://github.com/seanmalbert/bloom/issues/2703)) ([3b1b931](https://github.com/seanmalbert/bloom/commit/3b1b9316a6dd42adc22249b8e8dd836de2258406)) +- await casbin enforcer ([4feacec](https://github.com/seanmalbert/bloom/commit/4feacec44635135bc5469c0edd02a3424a2697cc)) +- **backend:** mfa_enabled migration fix ([#2503](https://github.com/seanmalbert/bloom/issues/2503)) ([a5b9a60](https://github.com/seanmalbert/bloom/commit/a5b9a604faccef55775dbbc54441251e29999fa4)) +- **backend:** nginx with heroku configuration ([#2196](https://github.com/seanmalbert/bloom/issues/2196)) ([a1e2630](https://github.com/seanmalbert/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) +- **backend:** translations input validator ([#2466](https://github.com/seanmalbert/bloom/issues/2466)) ([603c3dc](https://github.com/seanmalbert/bloom/commit/603c3dc52a400db815c4d81552a5aa74f397fe0f)) +- bump version ([#2349](https://github.com/seanmalbert/bloom/issues/2349)) ([b9e3ba1](https://github.com/seanmalbert/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/seanmalbert/bloom/issues/2350)) ([05863f5](https://github.com/seanmalbert/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- cannot remove some fields in listings management ([#2455](https://github.com/seanmalbert/bloom/issues/2455)) ([acd9b51](https://github.com/seanmalbert/bloom/commit/acd9b51bb49581b4728b445d56c5c0a3c43e2777)) +- cannot save custom mailing, dropoff, or pickup address ([#2207](https://github.com/seanmalbert/bloom/issues/2207)) ([96484b5](https://github.com/seanmalbert/bloom/commit/96484b5676ecb000e492851ee12766ba9e6cd86f)) +- check for empty translations before sending to google translate service ([#2700](https://github.com/seanmalbert/bloom/issues/2700)) ([d116fdb](https://github.com/seanmalbert/bloom/commit/d116fdbdab3c874679abc8e3dba8e23179fc78e2)) +- check for user lastLoginAt ([d78745a](https://github.com/seanmalbert/bloom/commit/d78745a4c8b770864c4f5e6140ee602e745b8bec)) +- checks for existance of image_id ([#2505](https://github.com/seanmalbert/bloom/issues/2505)) ([d2051af](https://github.com/seanmalbert/bloom/commit/d2051afa188ce62c42f3d6bf737fd2059f9b7599)) +- csv export auth check ([#2488](https://github.com/seanmalbert/bloom/issues/2488)) ([2471d4a](https://github.com/seanmalbert/bloom/commit/2471d4afdd747843f58c0c154d6e94a9c76d733d)) +- date validation issue ([#2464](https://github.com/seanmalbert/bloom/issues/2464)) ([158f7bf](https://github.com/seanmalbert/bloom/commit/158f7bf7fdc59954aebfebbd1ad3741239ed1a35)) +- dates showing as invalid in send by mail section ([#2362](https://github.com/seanmalbert/bloom/issues/2362)) ([3567388](https://github.com/seanmalbert/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +- fix sortig on applications partner grid ([f097037](https://github.com/seanmalbert/bloom/commit/f097037afd896eec8bb90cc5e2de07f222907870)) +- fixes linting error ([aaaf858](https://github.com/seanmalbert/bloom/commit/aaaf85822e3b03224fb336bae66209a2b6b88d1d)) +- fixes some issues with the deployment ([a0042ba](https://github.com/seanmalbert/bloom/commit/a0042badc5474dde413e41a7f4f84c8ee7b2f8f1)) +- fixes tests and also issue with user grid ([da07ba4](https://github.com/seanmalbert/bloom/commit/da07ba49459f77fe77e3f72555eb50a0cbaab095)) +- make isWaitlistOpen optional ([#2809](https://github.com/seanmalbert/bloom/issues/2809)) ([37c5a98](https://github.com/seanmalbert/bloom/commit/37c5a9803d7e88095d36a22c1e4d634b14d5f72a)) +- partners render issue ([#2395](https://github.com/seanmalbert/bloom/issues/2395)) ([7fb108d](https://github.com/seanmalbert/bloom/commit/7fb108d744fcafd6b9df42706d2a2f58fbc30f0a)) +- patches translations for preferences ([#2410](https://github.com/seanmalbert/bloom/issues/2410)) ([7906e6b](https://github.com/seanmalbert/bloom/commit/7906e6bc035fab4deea79ea51833a0ef29926d45)) +- unit accordion radio button not showing default value ([#2451](https://github.com/seanmalbert/bloom/issues/2451)) ([4ed8103](https://github.com/seanmalbert/bloom/commit/4ed81039b9130d0433b11df2bdabc495ce2b9f24)) +- units with invalid ami chart ([#2290](https://github.com/seanmalbert/bloom/issues/2290)) ([a6516e1](https://github.com/seanmalbert/bloom/commit/a6516e142ec13db5c3c8d2bb4f726be681e172e3)) +- update for subject line ([#2578](https://github.com/seanmalbert/bloom/issues/2578)) ([dace763](https://github.com/seanmalbert/bloom/commit/dace76332bbdb3ad104638f32a07e71fd85edc0c)) +- update to mfa text's text ([#2579](https://github.com/seanmalbert/bloom/issues/2579)) ([ac5b812](https://github.com/seanmalbert/bloom/commit/ac5b81242f3177de09ed176a60f06be871906178)) +- updates partner check for listing perm ([#2484](https://github.com/seanmalbert/bloom/issues/2484)) ([9b0a6f5](https://github.com/seanmalbert/bloom/commit/9b0a6f560ec5dd95f846b330afb71eed40cbfa1b)) +### Code Refactoring -## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.0...@bloom-housing/backend-core@4.2.2-alpha.1) (2022-04-14) +- remove backend dependencies from events components, consolidate ([#2495](https://github.com/seanmalbert/bloom/issues/2495)) ([d884689](https://github.com/seanmalbert/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +- 2022-07-26 release (#2916) ([af8d3df](https://github.com/seanmalbert/bloom/commit/af8d3dfc1974878cc21500272405ef5046dcfb50)), closes [#2916](https://github.com/seanmalbert/bloom/issues/2916) [#2821](https://github.com/seanmalbert/bloom/issues/2821) [#2764](https://github.com/seanmalbert/bloom/issues/2764) [#2767](https://github.com/seanmalbert/bloom/issues/2767) [#2787](https://github.com/seanmalbert/bloom/issues/2787) [#2769](https://github.com/seanmalbert/bloom/issues/2769) [#2781](https://github.com/seanmalbert/bloom/issues/2781) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2847](https://github.com/seanmalbert/bloom/issues/2847) [#2830](https://github.com/seanmalbert/bloom/issues/2830) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2846](https://github.com/seanmalbert/bloom/issues/2846) [#2851](https://github.com/seanmalbert/bloom/issues/2851) [#2594](https://github.com/seanmalbert/bloom/issues/2594) [#2812](https://github.com/seanmalbert/bloom/issues/2812) [#2799](https://github.com/seanmalbert/bloom/issues/2799) [#2828](https://github.com/seanmalbert/bloom/issues/2828) [#2843](https://github.com/seanmalbert/bloom/issues/2843) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [#2875](https://github.com/seanmalbert/bloom/issues/2875) [#2859](https://github.com/seanmalbert/bloom/issues/2859) [#2848](https://github.com/seanmalbert/bloom/issues/2848) [#2785](https://github.com/seanmalbert/bloom/issues/2785) +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/seanmalbert/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/seanmalbert/bloom/issues/2825) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/seanmalbert/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/seanmalbert/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/seanmalbert/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) ### Features -* **backend:** add order param to listings GET endpoint ([#2630](https://github.com/bloom-housing/bloom/issues/2630)) ([2a915f2](https://github.com/bloom-housing/bloom/commit/2a915f2bb0d07fb20e2c829896fa22a13e4da1bf)) +- add accessibility building features to listing ([#2755](https://github.com/seanmalbert/bloom/issues/2755)) ([0c8dfb8](https://github.com/seanmalbert/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +- add settings page to partners ([#2789](https://github.com/seanmalbert/bloom/issues/2789)) ([3869946](https://github.com/seanmalbert/bloom/commit/3869946a016510f53b20854a06c5f32187c4de79)) +- adds NULLS LAST to mostRecentlyClosed ([#2521](https://github.com/seanmalbert/bloom/issues/2521)) ([39737a3](https://github.com/seanmalbert/bloom/commit/39737a3207e22815d184fc19cb2eaf6b6390dda8)) +- adds partners re-request confirmation ([#2574](https://github.com/seanmalbert/bloom/issues/2574)) ([235af78](https://github.com/seanmalbert/bloom/commit/235af781914e5c36104bb3862dd55152a16e6750)), closes [#2577](https://github.com/seanmalbert/bloom/issues/2577) +- adds whatToExpect to GTrans ([#2303](https://github.com/seanmalbert/bloom/issues/2303)) ([6d7305b](https://github.com/seanmalbert/bloom/commit/6d7305b8e3b7e1c3a9776123e8e6d370ab803af0)) +- **backend:** add activity logging to listings module ([#2190](https://github.com/seanmalbert/bloom/issues/2190)) ([88d60e3](https://github.com/seanmalbert/bloom/commit/88d60e32d77381d6e830158ce77c058b1cfcc022)) +- **backend:** add appropriate http exception for password outdated login failure ([e5df66e](https://github.com/seanmalbert/bloom/commit/e5df66e4fe0f937f507d014f3b25c6c9b4b5deff)) +- **backend:** add jurisdiction default rental assistance text ([#2604](https://github.com/seanmalbert/bloom/issues/2604)) ([00b684c](https://github.com/seanmalbert/bloom/commit/00b684cd8b8b1f9ef201b8aec78c13572a4125a5)) +- **backend:** add listing order by mostRecentlyClosed param ([#2478](https://github.com/seanmalbert/bloom/issues/2478)) ([0f177c1](https://github.com/seanmalbert/bloom/commit/0f177c1847ac254f63837b0aca7fa8a705e3632c)) +- **backend:** add listings closing routine ([#2213](https://github.com/seanmalbert/bloom/issues/2213)) ([a747806](https://github.com/seanmalbert/bloom/commit/a747806282f80c92bd9a171a2b4d5c9b74d3b49a)) +- **backend:** add order param to listings GET endpoint ([#2630](https://github.com/seanmalbert/bloom/issues/2630)) ([2a915f2](https://github.com/seanmalbert/bloom/commit/2a915f2bb0d07fb20e2c829896fa22a13e4da1bf)) +- **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/seanmalbert/bloom/issues/2291)) ([5b10098](https://github.com/seanmalbert/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) +- **backend:** add partnerTerms to jurisdiction entity ([#2301](https://github.com/seanmalbert/bloom/issues/2301)) ([7ecf3ef](https://github.com/seanmalbert/bloom/commit/7ecf3ef24f261bf6b42fc38cf0080251a3c60e89)) +- **backend:** add password outdating only to users which are either admins or partners ([754546d](https://github.com/seanmalbert/bloom/commit/754546dfd5194f8c30e12963031791818566d22d)) +- **backend:** add publishedAt and closedAt to listing entity ([#2432](https://github.com/seanmalbert/bloom/issues/2432)) ([f3b0f86](https://github.com/seanmalbert/bloom/commit/f3b0f864a6d5d2ad3d886e828743454c3e8fca71)) +- **backend:** add search param to GET /user/list endpoint ([#2714](https://github.com/seanmalbert/bloom/issues/2714)) ([95c9a68](https://github.com/seanmalbert/bloom/commit/95c9a6838f534450c0da6919064f4a799898ed8f)) +- **backend:** add storing listing translations ([#2215](https://github.com/seanmalbert/bloom/issues/2215)) ([6ac63ea](https://github.com/seanmalbert/bloom/commit/6ac63eae82e14ab32d541b907c7e5dc800c1971f)) +- **backend:** add user password expiration ([107c2f0](https://github.com/seanmalbert/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) +- **backend:** all programs to csv export ([#2302](https://github.com/seanmalbert/bloom/issues/2302)) ([f4d6a62](https://github.com/seanmalbert/bloom/commit/f4d6a62920e3b859310898e3a040f8116b43cab3)) +- **backend:** fix translations table relation to jurisdiction (make … ([#2506](https://github.com/seanmalbert/bloom/issues/2506)) ([8e1e3a9](https://github.com/seanmalbert/bloom/commit/8e1e3a9eb0ff76412831e122390ac25ad7754645)) +- **backend:** improve ami chart dto definitions ([#2677](https://github.com/seanmalbert/bloom/issues/2677)) ([ca3890e](https://github.com/seanmalbert/bloom/commit/ca3890e2759f230824e31e6bd985300f40b0a0ed)) +- **backend:** improve user queries ([#2676](https://github.com/seanmalbert/bloom/issues/2676)) ([4733e8a](https://github.com/seanmalbert/bloom/commit/4733e8a9909e47bb2522f9b319f45fe25923cdb5)) +- **backend:** lock failed login attempts ([a8370ce](https://github.com/seanmalbert/bloom/commit/a8370ce1516f75180796d190a9a9f2697723e181)) +- **backend:** make listing image an array ([#2477](https://github.com/seanmalbert/bloom/issues/2477)) ([cab9800](https://github.com/seanmalbert/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +- **backend:** refactor applications module ([#2279](https://github.com/seanmalbert/bloom/issues/2279)) ([e0b4523](https://github.com/seanmalbert/bloom/commit/e0b4523817c7d3863c3802d8a9f61d1a1c8685d4)) +- **backend:** remove activity log interceptor from update-password ([2e56b98](https://github.com/seanmalbert/bloom/commit/2e56b9878969604bec2f7694a83dbf7061af9df2)) +- **backend:** remove assigning partner user as an application owner ([#2476](https://github.com/seanmalbert/bloom/issues/2476)) ([4f6edf7](https://github.com/seanmalbert/bloom/commit/4f6edf7ed882ae926e363e4db4e40e6f19ed4746)) +- creating setting wall for accessibility feat ([#2817](https://github.com/seanmalbert/bloom/issues/2817)) ([d26cad4](https://github.com/seanmalbert/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) +- load overly to partner listings grid ([#2621](https://github.com/seanmalbert/bloom/issues/2621)) ([4785f34](https://github.com/seanmalbert/bloom/commit/4785f344831f97dac2164224e32247619e5ac808)) +- outdated password messaging updates ([b14e19d](https://github.com/seanmalbert/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +- overrides fallback to english, tagalog support ([#2262](https://github.com/seanmalbert/bloom/issues/2262)) ([679ab9b](https://github.com/seanmalbert/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +- removes ListingLangCacheInterceptor from get by id ([7acbd82](https://github.com/seanmalbert/bloom/commit/7acbd82485edfa9a8aa5a82473d5bbe5cee571e7)) +- updates to mfa styling ([#2532](https://github.com/seanmalbert/bloom/issues/2532)) ([7654efc](https://github.com/seanmalbert/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) +### Performance Improvements +- user list and user getQb ([#2756](https://github.com/seanmalbert/bloom/issues/2756)) ([bc45879](https://github.com/seanmalbert/bloom/commit/bc45879f79934b5a1cf48a4d6a911048906e3184)) +### BREAKING CHANGES +- prop name change for header from "text" to "content" -## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.1-alpha.2...@bloom-housing/backend-core@4.2.2-alpha.0) (2022-04-13) +- chore(release): version +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 -* 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* feat: feat(backend): extend UserUpdateDto to support email change +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version - -* fix: choose-language context - -* chore(release): version - -* fix: applications/view hide prefs - -* chore(release): version - -* feat: overrides fallback to english, tagalog support - -* chore(release): version - -* fix: account translations - -* chore(release): version - -* fix: units with invalid ami chart - -* chore(release): version - -* fix: remove description for the partners programs - -* fix: fix modal styles on mobile - -* fix: visual improvement to programs form display - -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version +- chore: yarn.lock and backend-swagger - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: removes Duplicate identifier fieldGroupObjectToArray -* chore(release): version +- feat: skip preferences if not on listing - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -* chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version -## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.2.0...@bloom-housing/backend-core@4.2.1) (2022-04-11) +- fix: lottery results uploads now save +- chore(release): version -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- feat: add SRO unit type +- chore(release): version -### BREAKING CHANGES +- fix: paper application submission -* remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -* chore(release): version +- fix: choose-language context - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -* chore(release): version +- fix: applications/view hide prefs - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.1-alpha.1...@bloom-housing/backend-core@4.2.1-alpha.2) (2022-04-13) +- chore(release): version +- feat: overrides fallback to english, tagalog support -### Bug Fixes +- chore(release): version -* adds region to user phone # validation ([#2652](https://github.com/bloom-housing/bloom/issues/2652)) ([f4ab660](https://github.com/bloom-housing/bloom/commit/f4ab660912a4c675073558d407880c8a98687530)) +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs -## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.1-alpha.0...@bloom-housing/backend-core@4.2.1-alpha.1) (2022-04-07) +- fix: fix modal styles on mobile -**Note:** Version bump only for package @bloom-housing/backend-core +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.3-alpha.1...@bloom-housing/backend-core@4.2.1-alpha.0) (2022-04-06) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger +- chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray +- fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing +- feat: skip preferences if not on listing -* chore(release): version +- chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +- fix: cannot save custom mailing, dropoff, or pickup address -* chore(release): version +- chore(release): version -* chore: converge on one axios version, remove peer dependency +- chore: converge on one axios version, remove peer dependency -* chore(release): version +- chore(release): version -* feat: simplify Waitlist component and use more flexible schema +- feat: simplify Waitlist component and use more flexible schema -* chore(release): version +- chore(release): version -* fix: lottery results uploads now save +- fix: lottery results uploads now save -* chore(release): version +- chore(release): version -* feat: add SRO unit type +- feat: add SRO unit type -* chore(release): version +- chore(release): version -* fix: paper application submission +- fix: paper application submission -* chore(release): version +- chore(release): version -* fix: choose-language context +- fix: choose-language context -* chore(release): version +- chore(release): version -* fix: applications/view hide prefs +- fix: applications/view hide prefs -* chore(release): version +- chore(release): version -* feat: overrides fallback to english, tagalog support +- feat: overrides fallback to english, tagalog support -* chore(release): version +- chore(release): version -* fix: account translations +- fix: account translations -* chore(release): version +- chore(release): version -* fix: units with invalid ami chart +- fix: units with invalid ami chart -* chore(release): version +- chore(release): version -* fix: remove description for the partners programs +- fix: remove description for the partners programs -* fix: fix modal styles on mobile +- fix: fix modal styles on mobile -* fix: visual improvement to programs form display +- fix: visual improvement to programs form display -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* chore(release): version +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- remove applicationDueTime field and consolidated into applicationDueDate + +## [5.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.14...@bloom-housing/backend-core@5.0.1-alpha.15) (2022-07-27) + +### Bug Fixes + +- preview and juri admin perms for user access ([#2914](https://github.com/bloom-housing/bloom/issues/2914)) ([2db1fdb](https://github.com/bloom-housing/bloom/commit/2db1fdba2fcb366acfc436c3f58b1651550d2367)) + +## [5.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.13...@bloom-housing/backend-core@5.0.1-alpha.14) (2022-07-26) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.12...@bloom-housing/backend-core@5.0.1-alpha.13) (2022-07-26) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.11...@bloom-housing/backend-core@5.0.1-alpha.12) (2022-07-19) + +### Features + +- visuals for add preference, preference option drawers ([#2877](https://github.com/bloom-housing/bloom/issues/2877)) ([8611034](https://github.com/bloom-housing/bloom/commit/8611034845b45ce4d4e4eb44e790ac2adec0ba94)) + +## [5.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.10...@bloom-housing/backend-core@5.0.1-alpha.11) (2022-07-15) + +### Features + +- creating users as admin ([#2856](https://github.com/bloom-housing/bloom/issues/2856)) ([dd946d1](https://github.com/bloom-housing/bloom/commit/dd946d1777b4678e89832da527768180f474d129)) + +## [5.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.9...@bloom-housing/backend-core@5.0.1-alpha.10) (2022-07-13) + +### Features + +- **backend:** refactor listings query building ([#2855](https://github.com/bloom-housing/bloom/issues/2855)) ([2888d11](https://github.com/bloom-housing/bloom/commit/2888d118c51307a885e6fc0d424eab7940d21b3d)) + +## [5.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.8...@bloom-housing/backend-core@5.0.1-alpha.9) (2022-07-12) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.7...@bloom-housing/backend-core@5.0.1-alpha.8) (2022-07-11) + +### Bug Fixes + +- fix email from address ([#2875](https://github.com/bloom-housing/bloom/issues/2875)) ([ea69c92](https://github.com/bloom-housing/bloom/commit/ea69c9201cf7b3d57b8751bf1c0d3662f2d991aa)) + +## [5.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.6...@bloom-housing/backend-core@5.0.1-alpha.7) (2022-07-08) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.5...@bloom-housing/backend-core@5.0.1-alpha.6) (2022-07-07) + +### Features + +- populate jurisdictional preferences on settings page ([#2828](https://github.com/bloom-housing/bloom/issues/2828)) ([2ea5646](https://github.com/bloom-housing/bloom/commit/2ea5646a49dc6782fe0e83e942e1917929fde153)) + +## [5.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.4...@bloom-housing/backend-core@5.0.1-alpha.5) (2022-07-06) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.3...@bloom-housing/backend-core@5.0.1-alpha.4) (2022-07-06) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.2...@bloom-housing/backend-core@5.0.1-alpha.3) (2022-06-29) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.1...@bloom-housing/backend-core@5.0.1-alpha.2) (2022-06-22) + +### Features + +- **backend:** add jurisdictional admin relation ([#2764](https://github.com/bloom-housing/bloom/issues/2764)) ([8f951f9](https://github.com/bloom-housing/bloom/commit/8f951f9a4239bb5aad179cc5567f208d34533a45)), closes [#2767](https://github.com/bloom-housing/bloom/issues/2767) [#2787](https://github.com/bloom-housing/bloom/issues/2787) [#2769](https://github.com/bloom-housing/bloom/issues/2769) [#2781](https://github.com/bloom-housing/bloom/issues/2781) + +## [5.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@5.0.1-alpha.0...@bloom-housing/backend-core@5.0.1-alpha.1) (2022-06-17) + +**Note:** Version bump only for package @bloom-housing/backend-core + +## [5.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.13...@bloom-housing/backend-core@5.0.1-alpha.0) (2022-06-16) + +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/bloom-housing/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/bloom-housing/bloom/issues/2825) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) + +### BREAKING CHANGES + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +# [5.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.4.0...@bloom-housing/backend-core@5.0.0) (2022-06-16) + +- 2022-06-16 release (#2824) ([1abd991](https://github.com/seanmalbert/bloom/commit/1abd991136e28598b7856164b88bef462b8ff566)), closes [#2824](https://github.com/seanmalbert/bloom/issues/2824) [#2521](https://github.com/seanmalbert/bloom/issues/2521) [#2504](https://github.com/seanmalbert/bloom/issues/2504) [#2520](https://github.com/seanmalbert/bloom/issues/2520) [#2517](https://github.com/seanmalbert/bloom/issues/2517) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2529](https://github.com/seanmalbert/bloom/issues/2529) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2540](https://github.com/seanmalbert/bloom/issues/2540) [#2528](https://github.com/seanmalbert/bloom/issues/2528) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2545](https://github.com/seanmalbert/bloom/issues/2545) [#2526](https://github.com/seanmalbert/bloom/issues/2526) [#2532](https://github.com/seanmalbert/bloom/issues/2532) [#2551](https://github.com/seanmalbert/bloom/issues/2551) [#2562](https://github.com/seanmalbert/bloom/issues/2562) [#2566](https://github.com/seanmalbert/bloom/issues/2566) [#2572](https://github.com/seanmalbert/bloom/issues/2572) [#2546](https://github.com/seanmalbert/bloom/issues/2546) [#2578](https://github.com/seanmalbert/bloom/issues/2578) [#2579](https://github.com/seanmalbert/bloom/issues/2579) [#2581](https://github.com/seanmalbert/bloom/issues/2581) [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2574](https://github.com/seanmalbert/bloom/issues/2574) [#2577](https://github.com/seanmalbert/bloom/issues/2577) [#2590](https://github.com/seanmalbert/bloom/issues/2590) [#2592](https://github.com/seanmalbert/bloom/issues/2592) [#2560](https://github.com/seanmalbert/bloom/issues/2560) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2599](https://github.com/seanmalbert/bloom/issues/2599) [#2600](https://github.com/seanmalbert/bloom/issues/2600) [#2598](https://github.com/seanmalbert/bloom/issues/2598) [#2582](https://github.com/seanmalbert/bloom/issues/2582) [#2531](https://github.com/seanmalbert/bloom/issues/2531) [#2615](https://github.com/seanmalbert/bloom/issues/2615) [#2606](https://github.com/seanmalbert/bloom/issues/2606) [#2618](https://github.com/seanmalbert/bloom/issues/2618) [#2620](https://github.com/seanmalbert/bloom/issues/2620) [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2563](https://github.com/seanmalbert/bloom/issues/2563) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2635](https://github.com/seanmalbert/bloom/issues/2635) [#2624](https://github.com/seanmalbert/bloom/issues/2624) [#2642](https://github.com/seanmalbert/bloom/issues/2642) [#2652](https://github.com/seanmalbert/bloom/issues/2652) [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2658](https://github.com/seanmalbert/bloom/issues/2658) [#2653](https://github.com/seanmalbert/bloom/issues/2653) [#2630](https://github.com/seanmalbert/bloom/issues/2630) [#2612](https://github.com/seanmalbert/bloom/issues/2612) [#2672](https://github.com/seanmalbert/bloom/issues/2672) [#2558](https://github.com/seanmalbert/bloom/issues/2558) [#2604](https://github.com/seanmalbert/bloom/issues/2604) [#2625](https://github.com/seanmalbert/bloom/issues/2625) [#2650](https://github.com/seanmalbert/bloom/issues/2650) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2603](https://github.com/seanmalbert/bloom/issues/2603) [#2648](https://github.com/seanmalbert/bloom/issues/2648) [#2673](https://github.com/seanmalbert/bloom/issues/2673) [#2661](https://github.com/seanmalbert/bloom/issues/2661) [#2676](https://github.com/seanmalbert/bloom/issues/2676) [#2680](https://github.com/seanmalbert/bloom/issues/2680) [#2597](https://github.com/seanmalbert/bloom/issues/2597) [#2686](https://github.com/seanmalbert/bloom/issues/2686) [#2683](https://github.com/seanmalbert/bloom/issues/2683) [#2657](https://github.com/seanmalbert/bloom/issues/2657) [#2693](https://github.com/seanmalbert/bloom/issues/2693) [#2694](https://github.com/seanmalbert/bloom/issues/2694) [#2616](https://github.com/seanmalbert/bloom/issues/2616) [#2703](https://github.com/seanmalbert/bloom/issues/2703) [#2697](https://github.com/seanmalbert/bloom/issues/2697) [#2691](https://github.com/seanmalbert/bloom/issues/2691) [#2687](https://github.com/seanmalbert/bloom/issues/2687) [#2700](https://github.com/seanmalbert/bloom/issues/2700) [#2677](https://github.com/seanmalbert/bloom/issues/2677) [#2682](https://github.com/seanmalbert/bloom/issues/2682) [#2689](https://github.com/seanmalbert/bloom/issues/2689) [#2675](https://github.com/seanmalbert/bloom/issues/2675) [#2713](https://github.com/seanmalbert/bloom/issues/2713) [#2702](https://github.com/seanmalbert/bloom/issues/2702) [#2704](https://github.com/seanmalbert/bloom/issues/2704) [#2719](https://github.com/seanmalbert/bloom/issues/2719) [#2714](https://github.com/seanmalbert/bloom/issues/2714) [#2543](https://github.com/seanmalbert/bloom/issues/2543) [#2728](https://github.com/seanmalbert/bloom/issues/2728) [#2692](https://github.com/seanmalbert/bloom/issues/2692) [#2732](https://github.com/seanmalbert/bloom/issues/2732) [#2749](https://github.com/seanmalbert/bloom/issues/2749) [#2744](https://github.com/seanmalbert/bloom/issues/2744) [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) + +### Performance Improvements + +- user list and user getQb ([#2756](https://github.com/seanmalbert/bloom/issues/2756)) ([cd02be3](https://github.com/seanmalbert/bloom/commit/cd02be32f10560978a786abaf752ace7c32f5b0e)) + +### BREAKING CHANGES + +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change + +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a + +- fix: 2056/user account edit fix + +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 + +- refactor: 2085/adds top level catchAll exception filter + +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface + +- feat: feat: Change unit number field type to text + +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d + +- feat(backend): improve application flagged set saving efficiency + +- fix: fix: updates address order + +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 + +- fix: sets programs to optoinal and updates versions + +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 + +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 + +- fix: adds programs service + +- fix: fix lisitng e2e tests + +- fix: fix member tests + +- fix: adds jurisdictionId to useSWR path + +- fix: recalculate units available on listing update + +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 + +- feat: feat(backend): make use of new application confirmation codes + +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e + +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 + +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c + +- fix: app submission w/ no due date + +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc + +- feat: adds new preferences, reserved community type + +- feat: adds bottom border to preferences + +- feat: updates preference string + +- fix: preference cleanup for avance + +- refactor: remove applicationAddress + +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f + +- feat: refactor and add public site application flow cypress tests + +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 + +- feat: better seed data for ami-charts + +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 + +- feat: adds listing management cypress tests to partner portal + +- fix: listings management keep empty strings, remove empty objects + +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 + +- feat: one month rent + +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 + +- test: view.spec.ts test + +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb + +- refactor: removes jsonpath + +picked from dev deb39acc005607ce3076942b1f49590d08afc10c + +- feat: adds jurisdictions to pref seeds + +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 + +- feat: new demographics sub-race questions + +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 + +- feat: updates email confirmation for lottery + +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 + +- fix: add ariaHidden to Icon component + +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be + +- fix: add ariaLabel prop to Button component + +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 + +- fix: change the yes/no radio text to be more descriptive + +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f + +- fix: remove alameda reference in demographics + +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d + +- chore: release version + +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 + +- feat: ami chart jurisdictionalized + +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 + +- refactor: make backend a peer dependency in ui-components + +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 + +- feat: add a phone number column to the user_accounts table + +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a + +- chore: removes application program partners + +- chore: removes application program display + +- Revert "chore: removes application program display" + +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. + +- Revert "chore: removes application program partners" + +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. + +- chore: yarn.lock and backend-swagger + +- fix: removes Duplicate identifier fieldGroupObjectToArray + +- feat: skip preferences if not on listing + +- chore(release): version + +- fix: cannot save custom mailing, dropoff, or pickup address + +- chore(release): version + +- chore: converge on one axios version, remove peer dependency + +- chore(release): version + +- feat: simplify Waitlist component and use more flexible schema + +- chore(release): version + +- fix: lottery results uploads now save + +- chore(release): version + +- feat: add SRO unit type + +- chore(release): version + +- fix: paper application submission + +- chore(release): version + +- fix: choose-language context + +- chore(release): version + +- fix: applications/view hide prefs + +- chore(release): version + +- feat: overrides fallback to english, tagalog support + +- chore(release): version + +- fix: account translations + +- chore(release): version + +- fix: units with invalid ami chart + +- chore(release): version + +- fix: remove description for the partners programs + +- fix: fix modal styles on mobile + +- fix: visual improvement to programs form display + +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change + +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a + +- fix: 2056/user account edit fix + +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 + +- refactor: 2085/adds top level catchAll exception filter + +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface + +- feat: feat: Change unit number field type to text + +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d + +- feat(backend): improve application flagged set saving efficiency + +- fix: fix: updates address order + +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 + +- fix: sets programs to optoinal and updates versions + +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 + +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 + +- fix: adds programs service + +- fix: fix lisitng e2e tests + +- fix: fix member tests + +- fix: adds jurisdictionId to useSWR path + +- fix: recalculate units available on listing update + +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 + +- feat: feat(backend): make use of new application confirmation codes + +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e + +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 + +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c + +- fix: app submission w/ no due date + +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc + +- feat: adds new preferences, reserved community type + +- feat: adds bottom border to preferences + +- feat: updates preference string + +- fix: preference cleanup for avance + +- refactor: remove applicationAddress + +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f + +- feat: refactor and add public site application flow cypress tests + +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 + +- feat: better seed data for ami-charts + +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 + +- feat: adds listing management cypress tests to partner portal + +- fix: listings management keep empty strings, remove empty objects + +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 + +- feat: one month rent + +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 + +- test: view.spec.ts test + +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb + +- refactor: removes jsonpath + +picked from dev deb39acc005607ce3076942b1f49590d08afc10c + +- feat: adds jurisdictions to pref seeds + +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 + +- feat: new demographics sub-race questions + +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 + +- feat: updates email confirmation for lottery + +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 + +- fix: add ariaHidden to Icon component + +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be + +- fix: add ariaLabel prop to Button component + +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 + +- fix: change the yes/no radio text to be more descriptive + +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f + +- fix: remove alameda reference in demographics + +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d + +- chore: release version + +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 + +- feat: ami chart jurisdictionalized + +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 + +- refactor: make backend a peer dependency in ui-components + +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 + +- feat: add a phone number column to the user_accounts table + +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a + +- chore: removes application program partners + +- chore: removes application program display + +- Revert "chore: removes application program display" + +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. + +- Revert "chore: removes application program partners" + +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. + +- chore: yarn.lock and backend-swagger + +- fix: removes Duplicate identifier fieldGroupObjectToArray + +- feat: skip preferences if not on listing + +- chore(release): version + +- fix: cannot save custom mailing, dropoff, or pickup address + +- chore(release): version + +- chore: converge on one axios version, remove peer dependency + +- chore(release): version + +- feat: simplify Waitlist component and use more flexible schema + +- chore(release): version + +- fix: lottery results uploads now save + +- chore(release): version + +- feat: add SRO unit type + +- chore(release): version + +- fix: paper application submission + +- chore(release): version + +- fix: choose-language context + +- chore(release): version + +- fix: applications/view hide prefs + +- chore(release): version + +- feat: overrides fallback to english, tagalog support + +- chore(release): version + +- fix: account translations + +- chore(release): version + +- fix: units with invalid ami chart + +- chore(release): version + +- fix: remove description for the partners programs + +- fix: fix modal styles on mobile + +- fix: visual improvement to programs form display + +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change + +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a + +- fix: 2056/user account edit fix + +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 + +- refactor: 2085/adds top level catchAll exception filter + +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface + +- feat: feat: Change unit number field type to text + +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d + +- feat(backend): improve application flagged set saving efficiency + +- fix: fix: updates address order + +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 + +- fix: sets programs to optoinal and updates versions + +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 + +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 + +- fix: adds programs service + +- fix: fix lisitng e2e tests + +- fix: fix member tests + +- fix: adds jurisdictionId to useSWR path + +- fix: recalculate units available on listing update + +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 + +- feat: feat(backend): make use of new application confirmation codes + +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e + +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 + +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c + +- fix: app submission w/ no due date + +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* chore(release): version +- feat: adds new preferences, reserved community type - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.1.2...@bloom-housing/backend-core@4.2.0) (2022-04-06) +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -### BREAKING CHANGES +- feat: adds listing management cypress tests to partner portal -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: listings management keep empty strings, remove empty objects -* chore(release): version +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- feat: one month rent -* chore(release): version +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +- test: view.spec.ts test -* chore(release): version +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- refactor: removes jsonpath -* chore(release): version +picked from dev deb39acc005607ce3076942b1f49590d08afc10c - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery -## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.3-alpha.0...@bloom-housing/backend-core@4.1.3-alpha.1) (2022-04-04) +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -**Note:** Version bump only for package @bloom-housing/backend-core +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive -## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.3...@bloom-housing/backend-core@4.1.3-alpha.0) (2022-03-30) +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -**Note:** Version bump only for package @bloom-housing/backend-core +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized -## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.1.0...@bloom-housing/backend-core@4.1.2) (2022-03-29) +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -### Features +- refactor: make backend a peer dependency in ui-components + +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* temp disable terms and set mfa enabled to false ([#2595](https://github.com/seanmalbert/bloom/issues/2595)) ([6de2dcd](https://github.com/seanmalbert/bloom/commit/6de2dcd8baeb28166d7a6c383846a7ab9a84b0e2)) +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners -## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.2...@bloom-housing/backend-core@4.1.1-alpha.3) (2022-03-29) +- chore: removes application program display -**Note:** Version bump only for package @bloom-housing/backend-core +- Revert "chore: removes application program display" + +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.1...@bloom-housing/backend-core@4.1.1-alpha.2) (2022-03-28) +- feat: skip preferences if not on listing +- chore(release): version -### Features +- fix: cannot save custom mailing, dropoff, or pickup address -* adds partners re-request confirmation ([#2574](https://github.com/bloom-housing/bloom/issues/2574)) ([235af78](https://github.com/bloom-housing/bloom/commit/235af781914e5c36104bb3862dd55152a16e6750)), closes [#2577](https://github.com/bloom-housing/bloom/issues/2577) +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version -## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.0...@bloom-housing/backend-core@4.1.1-alpha.1) (2022-03-25) +- fix: lottery results uploads now save +- chore(release): version -### Bug Fixes +- feat: add SRO unit type -* update for subject line ([#2578](https://github.com/bloom-housing/bloom/issues/2578)) ([dace763](https://github.com/bloom-housing/bloom/commit/dace76332bbdb3ad104638f32a07e71fd85edc0c)) -* update to mfa text's text ([#2579](https://github.com/bloom-housing/bloom/issues/2579)) ([ac5b812](https://github.com/bloom-housing/bloom/commit/ac5b81242f3177de09ed176a60f06be871906178)) +- chore(release): version +- fix: paper application submission +- chore(release): version +- fix: choose-language context +- chore(release): version -## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2...@bloom-housing/backend-core@4.1.1-alpha.0) (2022-03-02) +- fix: applications/view hide prefs -**Note:** Version bump only for package @bloom-housing/backend-core +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version +- fix: account translations +- chore(release): version -## [3.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.45...@bloom-housing/backend-core@3.0.2) (2022-03-02) +- fix: units with invalid ami chart -**Note:** Version bump only for package @bloom-housing/backend-core -# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.0.3...@bloom-housing/backend-core@4.1.0) (2022-03-02) +- chore(release): version +- fix: remove description for the partners programs -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- fix: fix modal styles on mobile +- fix: visual improvement to programs form display -### BREAKING CHANGES +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -* chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. -## [3.0.2-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.44...@bloom-housing/backend-core@3.0.2-alpha.45) (2022-02-28) +- chore(release): version +* @bloom-housing/shared-helpers@4.2.2-alpha.10 +* @bloom-housing/partners@4.2.2-alpha.11 +* @bloom-housing/public@4.2.2-alpha.11 +* @bloom-housing/ui-components@4.2.2-alpha.10 -### Features +- the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings -* updates to mfa styling ([#2532](https://github.com/bloom-housing/bloom/issues/2532)) ([7654efc](https://github.com/bloom-housing/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) +- chore(release): version +* @bloom-housing/shared-helpers@4.2.2-alpha.23 +* @bloom-housing/partners@4.2.2-alpha.27 +* @bloom-housing/public@4.2.2-alpha.26 +* @bloom-housing/ui-components@4.2.2-alpha.23 +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set +- chore(release): version +* @bloom-housing/shared-helpers@4.2.2-alpha.24 +* @bloom-housing/partners@4.2.2-alpha.28 +* @bloom-housing/public@4.2.2-alpha.27 +* @bloom-housing/ui-components@4.2.2-alpha.24 -## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.0.2...@bloom-housing/backend-core@4.0.3) (2022-02-25) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### Bug Fixes +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* csv export auth check ([#2488](https://github.com/seanmalbert/bloom/issues/2488)) ([6faf8f5](https://github.com/seanmalbert/bloom/commit/6faf8f59b115adf73e70d56c855ba5b6d325d22a)) +## [4.4.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.12...@bloom-housing/backend-core@4.4.1-alpha.13) (2022-06-16) ### Features -* Add San Jose email translations ([#2519](https://github.com/seanmalbert/bloom/issues/2519)) ([d1db032](https://github.com/seanmalbert/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) -* **backend:** fix translations table relation to jurisdiction ([#2506](https://github.com/seanmalbert/bloom/issues/2506)) ([22b9f23](https://github.com/seanmalbert/bloom/commit/22b9f23eb405f701796193515dff35058cc4f7dc)) +- creating setting wall for accessibility feat ([#2817](https://github.com/bloom-housing/bloom/issues/2817)) ([d26cad4](https://github.com/bloom-housing/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) +## [4.4.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.11...@bloom-housing/backend-core@4.4.1-alpha.12) (2022-06-13) +### Bug Fixes +- make isWaitlistOpen optional ([#2809](https://github.com/bloom-housing/bloom/issues/2809)) ([37c5a98](https://github.com/bloom-housing/bloom/commit/37c5a9803d7e88095d36a22c1e4d634b14d5f72a)) +## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.10...@bloom-housing/backend-core@4.4.1-alpha.11) (2022-06-09) -## [3.0.2-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.43...@bloom-housing/backend-core@3.0.2-alpha.44) (2022-02-22) +### Features + +- add settings page to partners ([#2789](https://github.com/bloom-housing/bloom/issues/2789)) ([3869946](https://github.com/bloom-housing/bloom/commit/3869946a016510f53b20854a06c5f32187c4de79)) + +## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.9...@bloom-housing/backend-core@4.4.1-alpha.10) (2022-06-03) **Note:** Version bump only for package @bloom-housing/backend-core +## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.8...@bloom-housing/backend-core@4.4.1-alpha.9) (2022-06-02) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.7...@bloom-housing/backend-core@4.4.1-alpha.8) (2022-06-01) +### Features -## [3.0.2-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.42...@bloom-housing/backend-core@3.0.2-alpha.43) (2022-02-17) +- add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.6...@bloom-housing/backend-core@4.4.1-alpha.7) (2022-05-31) ### Features -* adds NULLS LAST to mostRecentlyClosed ([#2521](https://github.com/bloom-housing/bloom/issues/2521)) ([39737a3](https://github.com/bloom-housing/bloom/commit/39737a3207e22815d184fc19cb2eaf6b6390dda8)) +- load overly to partner listings grid ([#2621](https://github.com/bloom-housing/bloom/issues/2621)) ([4785f34](https://github.com/bloom-housing/bloom/commit/4785f344831f97dac2164224e32247619e5ac808)) +## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.5...@bloom-housing/backend-core@4.4.1-alpha.6) (2022-05-31) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.4...@bloom-housing/backend-core@4.4.1-alpha.5) (2022-05-31) +**Note:** Version bump only for package @bloom-housing/backend-core -## [3.0.2-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.41...@bloom-housing/backend-core@3.0.2-alpha.42) (2022-02-17) +## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.3...@bloom-housing/backend-core@4.4.1-alpha.4) (2022-05-26) +**Note:** Version bump only for package @bloom-housing/backend-core -### Features +## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.2...@bloom-housing/backend-core@4.4.1-alpha.3) (2022-05-25) -* **backend:** add listing order by mostRecentlyClosed param ([#2478](https://github.com/bloom-housing/bloom/issues/2478)) ([0f177c1](https://github.com/bloom-housing/bloom/commit/0f177c1847ac254f63837b0aca7fa8a705e3632c)) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.1...@bloom-housing/backend-core@4.4.1-alpha.2) (2022-05-25) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.4.1-alpha.0...@bloom-housing/backend-core@4.4.1-alpha.1) (2022-05-25) +### Performance Improvements -## [3.0.2-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.40...@bloom-housing/backend-core@3.0.2-alpha.41) (2022-02-16) +- user list and user getQb ([#2756](https://github.com/bloom-housing/bloom/issues/2756)) ([bc45879](https://github.com/bloom-housing/bloom/commit/bc45879f79934b5a1cf48a4d6a911048906e3184)) +## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.3.1-alpha.1...@bloom-housing/backend-core@4.4.1-alpha.0) (2022-05-25) -### Features +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* **backend:** fix translations table relation to jurisdiction (make … ([#2506](https://github.com/bloom-housing/bloom/issues/2506)) ([8e1e3a9](https://github.com/bloom-housing/bloom/commit/8e1e3a9eb0ff76412831e122390ac25ad7754645)) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.2.3...@bloom-housing/backend-core@4.4.0) (2022-05-24) -## [3.0.2-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.39...@bloom-housing/backend-core@3.0.2-alpha.40) (2022-02-16) +- 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES -### Bug Fixes +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* checks for existance of image_id ([#2505](https://github.com/bloom-housing/bloom/issues/2505)) ([d2051af](https://github.com/bloom-housing/bloom/commit/d2051afa188ce62c42f3d6bf737fd2059f9b7599)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.3.1-alpha.0...@bloom-housing/backend-core@4.3.1-alpha.1) (2022-05-24) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.9...@bloom-housing/backend-core@4.3.1-alpha.0) (2022-05-16) -## [3.0.2-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.38...@bloom-housing/backend-core@3.0.2-alpha.39) (2022-02-15) +### Bug Fixes +- adds region to user phone # validation ([#2652](https://github.com/bloom-housing/bloom/issues/2652)) ([d3e0c40](https://github.com/bloom-housing/bloom/commit/d3e0c4041d9aba4d703da85596d59ec765ad179a)) +- ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([5e18eba](https://github.com/bloom-housing/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) +- app submission w/ no due date ([8e5a81c](https://github.com/bloom-housing/bloom/commit/8e5a81c37c4efc3404e5536bd54c10cd2962bca3)) +- authservice.token data null issue ([#2703](https://github.com/bloom-housing/bloom/issues/2703)) ([5430fa2](https://github.com/bloom-housing/bloom/commit/5430fa2802b2590c7514f228c200ae040eccf403)) +- await casbin enforcer ([d7eb196](https://github.com/bloom-housing/bloom/commit/d7eb196be0b05732325938e2db7b583d66cbc9cf)) +- cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/bloom-housing/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) +- csv export auth check ([#2488](https://github.com/bloom-housing/bloom/issues/2488)) ([6faf8f5](https://github.com/bloom-housing/bloom/commit/6faf8f59b115adf73e70d56c855ba5b6d325d22a)) +- fix for csv dempgraphics and preference patch ([0ffc090](https://github.com/bloom-housing/bloom/commit/0ffc0900fee73b34fd953e5355552e2e763c239c)) +- listings management keep empty strings, remove empty objects ([3aba274](https://github.com/bloom-housing/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) +- patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([21f517e](https://github.com/bloom-housing/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) +- recalculate units available on listing update ([9c3967f](https://github.com/bloom-housing/bloom/commit/9c3967f0b74526db39df4f5dbc7ad9a52741a6ea)) +- units with invalid ami chart ([621ff02](https://github.com/bloom-housing/bloom/commit/621ff0227270861047e885467f9ddd77459adec1)) +- updates household member count ([f822713](https://github.com/bloom-housing/bloom/commit/f82271397d02025629d7ea039b40cdac95877c45)) +- updates partner check for listing perm ([#2484](https://github.com/bloom-housing/bloom/issues/2484)) ([c2ab01f](https://github.com/bloom-housing/bloom/commit/c2ab01f6520b138bead01dec7352618b90635432)) + +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) +- Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) ### Features -* **backend:** make listing image an array ([#2477](https://github.com/bloom-housing/bloom/issues/2477)) ([cab9800](https://github.com/bloom-housing/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +- add a phone number column to the user_accounts table ([44881da](https://github.com/bloom-housing/bloom/commit/44881da1a7ccc17b7d4db1fcf79513632c18066d)) +- Add San Jose email translations ([#2519](https://github.com/bloom-housing/bloom/issues/2519)) ([d1db032](https://github.com/bloom-housing/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) +- add SRO unit type ([a4c1403](https://github.com/bloom-housing/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) +- adding alameda prog and prefs ([#2696](https://github.com/bloom-housing/bloom/issues/2696)) ([85c0bf5](https://github.com/bloom-housing/bloom/commit/85c0bf5b41c86c4dddb0bfb99d65a652f8cad1a0)) +- adds jurisdictions to pref seeds ([8a70b68](https://github.com/bloom-housing/bloom/commit/8a70b688ec8c6eb785543d5ce91ae182f62af168)) +- adds new preferences, reserved community type ([90c0673](https://github.com/bloom-housing/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) +- adds whatToExpect to GTrans ([461961a](https://github.com/bloom-housing/bloom/commit/461961a4dd48d7a1c935e4dc03e9a62d2f455088)) +- adds whatToExpect to GTrans ([#2303](https://github.com/bloom-housing/bloom/issues/2303)) ([38e672a](https://github.com/bloom-housing/bloom/commit/38e672a4dbd6c39a7a01b04698f2096a62eed8a1)) +- ami chart jurisdictionalized ([b2e2537](https://github.com/bloom-housing/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) +- **backend:** add storing listing translations ([#2215](https://github.com/bloom-housing/bloom/issues/2215)) ([d6a1337](https://github.com/bloom-housing/bloom/commit/d6a1337fbe3da8a159e2b60638fc527aa65aaef0)) +- **backend:** all programs to csv export ([#2302](https://github.com/bloom-housing/bloom/issues/2302)) ([48b50f9](https://github.com/bloom-housing/bloom/commit/48b50f95be794773cc68ebee3144c1f44db26f04)) +- **backend:** fix translations table relation to jurisdiction ([#2506](https://github.com/bloom-housing/bloom/issues/2506)) ([22b9f23](https://github.com/bloom-housing/bloom/commit/22b9f23eb405f701796193515dff35058cc4f7dc)) +- better seed data for ami-charts ([24eb7e4](https://github.com/bloom-housing/bloom/commit/24eb7e41512963f8dc716b74e8a8684e1272e1b7)) +- feat(backend): make use of new application confirmation codes ([8f386e8](https://github.com/bloom-housing/bloom/commit/8f386e8e656c8d498d41de947f2e5246d3c16b19)) +- new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/bloom-housing/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/bloom-housing/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- temp disable terms and set mfa enabled to false ([#2595](https://github.com/bloom-housing/bloom/issues/2595)) ([6de2dcd](https://github.com/bloom-housing/bloom/commit/6de2dcd8baeb28166d7a6c383846a7ab9a84b0e2)) +- updates email confirmation for lottery ([768064a](https://github.com/bloom-housing/bloom/commit/768064a985ed858fae681caebcbcdb561319eaf9)) +### Reverts +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.2-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.37...@bloom-housing/backend-core@3.0.2-alpha.38) (2022-02-15) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### Code Refactoring +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* remove backend dependencies from events components, consolidate ([#2495](https://github.com/bloom-housing/bloom/issues/2495)) ([d884689](https://github.com/bloom-housing/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [3.0.2-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.36...@bloom-housing/backend-core@3.0.2-alpha.37) (2022-02-15) +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -### Bug Fixes +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* **backend:** mfa_enabled migration fix ([#2503](https://github.com/bloom-housing/bloom/issues/2503)) ([a5b9a60](https://github.com/bloom-housing/bloom/commit/a5b9a604faccef55775dbbc54441251e29999fa4)) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [3.0.2-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.35...@bloom-housing/backend-core@3.0.2-alpha.36) (2022-02-15) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -### Features +- chore(release): version -* **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/bloom-housing/bloom/issues/2291)) ([5b10098](https://github.com/bloom-housing/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- preferences model and relationships changed -## [3.0.2-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.34...@bloom-housing/backend-core@3.0.2-alpha.35) (2022-02-10) +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -### Bug Fixes +- fix: 2056/user account edit fix + +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* csv export auth check ([#2488](https://github.com/bloom-housing/bloom/issues/2488)) ([2471d4a](https://github.com/bloom-housing/bloom/commit/2471d4afdd747843f58c0c154d6e94a9c76d733d)) +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency -## [3.0.2-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.33...@bloom-housing/backend-core@3.0.2-alpha.34) (2022-02-10) +- fix: fix: updates address order -**Note:** Version bump only for package @bloom-housing/backend-core +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.0.1...@bloom-housing/backend-core@4.0.2) (2022-02-09) +- fix: adds programs service +- fix: fix lisitng e2e tests -### Bug Fixes +- fix: fix member tests -* updates partner check for listing perm ([#2484](https://github.com/seanmalbert/bloom/issues/2484)) ([c2ab01f](https://github.com/seanmalbert/bloom/commit/c2ab01f6520b138bead01dec7352618b90635432)) +## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.2.2...@bloom-housing/backend-core@4.2.3) (2022-04-28) +**Note:** Version bump only for package @bloom-housing/backend-core +### Features +- adding alameda prog and prefs ([#2696](https://github.com/seanmalbert/bloom/issues/2696)) ([85c0bf5](https://github.com/seanmalbert/bloom/commit/85c0bf5b41c86c4dddb0bfb99d65a652f8cad1a0)) +## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.8...@bloom-housing/backend-core@4.2.2-alpha.9) (2022-05-11) -## [3.0.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.32...@bloom-housing/backend-core@3.0.2-alpha.33) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.7...@bloom-housing/backend-core@4.2.2-alpha.8) (2022-05-11) ### Features -* **backend:** remove assigning partner user as an application owner ([#2476](https://github.com/bloom-housing/bloom/issues/2476)) ([4f6edf7](https://github.com/bloom-housing/bloom/commit/4f6edf7ed882ae926e363e4db4e40e6f19ed4746)) +- **backend:** add search param to GET /user/list endpoint ([#2714](https://github.com/bloom-housing/bloom/issues/2714)) ([95c9a68](https://github.com/bloom-housing/bloom/commit/95c9a6838f534450c0da6919064f4a799898ed8f)) + +## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.6...@bloom-housing/backend-core@4.2.2-alpha.7) (2022-05-03) +### Features +- **backend:** improve ami chart dto definitions ([#2677](https://github.com/bloom-housing/bloom/issues/2677)) ([ca3890e](https://github.com/bloom-housing/bloom/commit/ca3890e2759f230824e31e6bd985300f40b0a0ed)) +## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.5...@bloom-housing/backend-core@4.2.2-alpha.6) (2022-04-29) +### Bug Fixes -## [3.0.2-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.31...@bloom-housing/backend-core@3.0.2-alpha.32) (2022-02-09) +- check for empty translations before sending to google translate service ([#2700](https://github.com/bloom-housing/bloom/issues/2700)) ([d116fdb](https://github.com/bloom-housing/bloom/commit/d116fdbdab3c874679abc8e3dba8e23179fc78e2)) +## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.4...@bloom-housing/backend-core@4.2.2-alpha.5) (2022-04-28) ### Bug Fixes -* updates partner check for listing perm ([#2484](https://github.com/bloom-housing/bloom/issues/2484)) ([9b0a6f5](https://github.com/bloom-housing/bloom/commit/9b0a6f560ec5dd95f846b330afb71eed40cbfa1b)) +- authservice.token data null issue ([#2703](https://github.com/bloom-housing/bloom/issues/2703)) ([3b1b931](https://github.com/bloom-housing/bloom/commit/3b1b9316a6dd42adc22249b8e8dd836de2258406)) + +## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.3...@bloom-housing/backend-core@4.2.2-alpha.4) (2022-04-27) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.2...@bloom-housing/backend-core@4.2.2-alpha.3) (2022-04-21) +### Features +- **backend:** improve user queries ([#2676](https://github.com/bloom-housing/bloom/issues/2676)) ([4733e8a](https://github.com/bloom-housing/bloom/commit/4733e8a9909e47bb2522f9b319f45fe25923cdb5)) -## [3.0.2-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.30...@bloom-housing/backend-core@3.0.2-alpha.31) (2022-02-09) +## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.1...@bloom-housing/backend-core@4.2.2-alpha.2) (2022-04-20) +### Features -### Bug Fixes +- **backend:** add jurisdiction default rental assistance text ([#2604](https://github.com/bloom-housing/bloom/issues/2604)) ([00b684c](https://github.com/bloom-housing/bloom/commit/00b684cd8b8b1f9ef201b8aec78c13572a4125a5)) -* cannot remove some fields in listings management ([#2455](https://github.com/bloom-housing/bloom/issues/2455)) ([acd9b51](https://github.com/bloom-housing/bloom/commit/acd9b51bb49581b4728b445d56c5c0a3c43e2777)) +## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.2-alpha.0...@bloom-housing/backend-core@4.2.2-alpha.1) (2022-04-14) +### Features +- **backend:** add order param to listings GET endpoint ([#2630](https://github.com/bloom-housing/bloom/issues/2630)) ([2a915f2](https://github.com/bloom-housing/bloom/commit/2a915f2bb0d07fb20e2c829896fa22a13e4da1bf)) +## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.1-alpha.2...@bloom-housing/backend-core@4.2.2-alpha.0) (2022-04-13) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -## [3.0.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.29...@bloom-housing/backend-core@3.0.2-alpha.30) (2022-02-07) +### BREAKING CHANGES -**Note:** Version bump only for package @bloom-housing/backend-core +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix -## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.23...@bloom-housing/backend-core@4.0.1) (2022-02-03) +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -### Bug Fixes +- refactor: 2085/adds top level catchAll exception filter -* ami charts without all households ([#2430](https://github.com/seanmalbert/bloom/issues/2430)) ([5e18eba](https://github.com/seanmalbert/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) -* app submission w/ no due date ([8e5a81c](https://github.com/seanmalbert/bloom/commit/8e5a81c37c4efc3404e5536bd54c10cd2962bca3)) -* await casbin enforcer ([d7eb196](https://github.com/seanmalbert/bloom/commit/d7eb196be0b05732325938e2db7b583d66cbc9cf)) -* cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/seanmalbert/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) -* fix for csv dempgraphics and preference patch ([0ffc090](https://github.com/seanmalbert/bloom/commit/0ffc0900fee73b34fd953e5355552e2e763c239c)) -* listings management keep empty strings, remove empty objects ([3aba274](https://github.com/seanmalbert/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) -* patches translations for preferences ([#2410](https://github.com/seanmalbert/bloom/issues/2410)) ([21f517e](https://github.com/seanmalbert/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) -* recalculate units available on listing update ([9c3967f](https://github.com/seanmalbert/bloom/commit/9c3967f0b74526db39df4f5dbc7ad9a52741a6ea)) -* units with invalid ami chart ([621ff02](https://github.com/seanmalbert/bloom/commit/621ff0227270861047e885467f9ddd77459adec1)) -* updates household member count ([f822713](https://github.com/seanmalbert/bloom/commit/f82271397d02025629d7ea039b40cdac95877c45)) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text -* 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) -* Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -### Features +- feat(backend): improve application flagged set saving efficiency -* add a phone number column to the user_accounts table ([44881da](https://github.com/seanmalbert/bloom/commit/44881da1a7ccc17b7d4db1fcf79513632c18066d)) -* add SRO unit type ([a4c1403](https://github.com/seanmalbert/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) -* adds jurisdictions to pref seeds ([8a70b68](https://github.com/seanmalbert/bloom/commit/8a70b688ec8c6eb785543d5ce91ae182f62af168)) -* adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) -* adds whatToExpect to GTrans ([461961a](https://github.com/seanmalbert/bloom/commit/461961a4dd48d7a1c935e4dc03e9a62d2f455088)) -* adds whatToExpect to GTrans ([#2303](https://github.com/seanmalbert/bloom/issues/2303)) ([38e672a](https://github.com/seanmalbert/bloom/commit/38e672a4dbd6c39a7a01b04698f2096a62eed8a1)) -* ami chart jurisdictionalized ([b2e2537](https://github.com/seanmalbert/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) -* **backend:** add storing listing translations ([#2215](https://github.com/seanmalbert/bloom/issues/2215)) ([d6a1337](https://github.com/seanmalbert/bloom/commit/d6a1337fbe3da8a159e2b60638fc527aa65aaef0)) -* **backend:** all programs to csv export ([#2302](https://github.com/seanmalbert/bloom/issues/2302)) ([48b50f9](https://github.com/seanmalbert/bloom/commit/48b50f95be794773cc68ebee3144c1f44db26f04)) -* better seed data for ami-charts ([24eb7e4](https://github.com/seanmalbert/bloom/commit/24eb7e41512963f8dc716b74e8a8684e1272e1b7)) -* feat(backend): make use of new application confirmation codes ([8f386e8](https://github.com/seanmalbert/bloom/commit/8f386e8e656c8d498d41de947f2e5246d3c16b19)) -* new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* updates email confirmation for lottery ([768064a](https://github.com/seanmalbert/bloom/commit/768064a985ed858fae681caebcbcdb561319eaf9)) +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -### Reverts +- fix: sets programs to optoinal and updates versions -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -### BREAKING CHANGES +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: adds programs service -* chore(release): version +- fix: fix lisitng e2e tests - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* preferences model and relationships changed +- fix: fix member tests -* feat: feat(backend): extend UserUpdateDto to support email change +- fix: adds jurisdictionId to useSWR path -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: recalculate units available on listing update -* fix: 2056/user account edit fix +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- feat: feat(backend): make use of new application confirmation codes -* refactor: 2085/adds top level catchAll exception filter +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -* feat: feat: Change unit number field type to text +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- fix: app submission w/ no due date -* feat(backend): improve application flagged set saving efficiency +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* fix: fix: updates address order +- feat: adds new preferences, reserved community type -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- feat: adds bottom border to preferences -* fix: sets programs to optoinal and updates versions +- feat: updates preference string -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- fix: preference cleanup for avance -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- refactor: remove applicationAddress -* fix: adds programs service +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* fix: fix lisitng e2e tests +- feat: refactor and add public site application flow cypress tests -* fix: fix member tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects -## [3.0.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.28...@bloom-housing/backend-core@3.0.2-alpha.29) (2022-02-02) +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent -### Bug Fixes +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* unit accordion radio button not showing default value ([#2451](https://github.com/bloom-housing/bloom/issues/2451)) ([4ed8103](https://github.com/bloom-housing/bloom/commit/4ed81039b9130d0433b11df2bdabc495ce2b9f24)) +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds -## [3.0.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.27...@bloom-housing/backend-core@3.0.2-alpha.28) (2022-02-02) +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -**Note:** Version bump only for package @bloom-housing/backend-core +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component -## [3.0.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.26...@bloom-housing/backend-core@3.0.2-alpha.27) (2022-02-02) +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be + +- fix: add ariaLabel prop to Button component + +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive + +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f + +- fix: remove alameda reference in demographics + +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d + +- chore: release version + +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -### Bug Fixes +- feat: ami chart jurisdictionalized -* **backend:** translations input validator ([#2466](https://github.com/bloom-housing/bloom/issues/2466)) ([603c3dc](https://github.com/bloom-housing/bloom/commit/603c3dc52a400db815c4d81552a5aa74f397fe0f)) +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -## [3.0.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.25...@bloom-housing/backend-core@3.0.2-alpha.26) (2022-02-02) +- chore: removes application program partners -**Note:** Version bump only for package @bloom-housing/backend-core +- chore: removes application program display +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [3.0.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.24...@bloom-housing/backend-core@3.0.2-alpha.25) (2022-02-01) +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -### Bug Fixes +- feat: skip preferences if not on listing -* date validation issue ([#2464](https://github.com/bloom-housing/bloom/issues/2464)) ([158f7bf](https://github.com/bloom-housing/bloom/commit/158f7bf7fdc59954aebfebbd1ad3741239ed1a35)) +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version -## [3.0.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.23...@bloom-housing/backend-core@3.0.2-alpha.24) (2022-02-01) +- feat: simplify Waitlist component and use more flexible schema -**Note:** Version bump only for package @bloom-housing/backend-core +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type +- chore(release): version -## [3.0.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.22...@bloom-housing/backend-core@3.0.2-alpha.23) (2022-02-01) +- fix: paper application submission +- chore(release): version -### Bug Fixes +- fix: choose-language context -* await casbin enforcer ([4feacec](https://github.com/bloom-housing/bloom/commit/4feacec44635135bc5469c0edd02a3424a2697cc)) +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version -## [3.0.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.21...@bloom-housing/backend-core@3.0.2-alpha.22) (2022-02-01) +- fix: account translations -**Note:** Version bump only for package @bloom-housing/backend-core +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs +- fix: fix modal styles on mobile -## [3.0.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.20...@bloom-housing/backend-core@3.0.2-alpha.21) (2022-02-01) +- fix: visual improvement to programs form display -**Note:** Version bump only for package @bloom-housing/backend-core +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [3.0.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.19...@bloom-housing/backend-core@3.0.2-alpha.20) (2022-02-01) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -### Features +- chore(release): version -* **backend:** add publishedAt and closedAt to listing entity ([#2432](https://github.com/bloom-housing/bloom/issues/2432)) ([f3b0f86](https://github.com/bloom-housing/bloom/commit/f3b0f864a6d5d2ad3d886e828743454c3e8fca71)) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.2.0...@bloom-housing/backend-core@4.2.1) (2022-04-11) +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.18...@bloom-housing/backend-core@3.0.2-alpha.19) (2022-02-01) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/backend-core +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.1-alpha.1...@bloom-housing/backend-core@4.2.1-alpha.2) (2022-04-13) -## [3.0.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.17...@bloom-housing/backend-core@3.0.2-alpha.18) (2022-01-31) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/backend-core +- adds region to user phone # validation ([#2652](https://github.com/bloom-housing/bloom/issues/2652)) ([f4ab660](https://github.com/bloom-housing/bloom/commit/f4ab660912a4c675073558d407880c8a98687530)) +## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.2.1-alpha.0...@bloom-housing/backend-core@4.2.1-alpha.1) (2022-04-07) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.3-alpha.1...@bloom-housing/backend-core@4.2.1-alpha.0) (2022-04-06) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -## [3.0.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.16...@bloom-housing/backend-core@3.0.2-alpha.17) (2022-01-27) +### BREAKING CHANGES +- preferences model and relationships changed -### Features +- feat: feat(backend): extend UserUpdateDto to support email change -* outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -## [3.0.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.15...@bloom-housing/backend-core@3.0.2-alpha.16) (2022-01-24) +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -### Bug Fixes +- feat(backend): improve application flagged set saving efficiency -* ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([92dfbad](https://github.com/bloom-housing/bloom/commit/92dfbad32c90d84ee1ec3a3468c084cb110aa8be)) +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -## [3.0.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.14...@bloom-housing/backend-core@3.0.2-alpha.15) (2022-01-14) +- fix: adds programs service +- fix: fix lisitng e2e tests -### Bug Fixes +- fix: fix member tests -* patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([7906e6b](https://github.com/bloom-housing/bloom/commit/7906e6bc035fab4deea79ea51833a0ef29926d45)) +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes -## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.23...@bloom-housing/backend-core@3.0.1) (2022-01-13) +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -### Bug Fixes +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -* app submission w/ no due date ([8e5a81c](https://github.com/seanmalbert/bloom/commit/8e5a81c37c4efc3404e5536bd54c10cd2962bca3)) -* cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/seanmalbert/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) -* fix for csv dempgraphics and preference patch ([0ffc090](https://github.com/seanmalbert/bloom/commit/0ffc0900fee73b34fd953e5355552e2e763c239c)) -* listings management keep empty strings, remove empty objects ([3aba274](https://github.com/seanmalbert/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) -* recalculate units available on listing update ([9c3967f](https://github.com/seanmalbert/bloom/commit/9c3967f0b74526db39df4f5dbc7ad9a52741a6ea)) -* units with invalid ami chart ([621ff02](https://github.com/seanmalbert/bloom/commit/621ff0227270861047e885467f9ddd77459adec1)) -* updates household member count ([f822713](https://github.com/seanmalbert/bloom/commit/f82271397d02025629d7ea039b40cdac95877c45)) +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date -* Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -### Features +- feat: adds new preferences, reserved community type -* add a phone number column to the user_accounts table ([44881da](https://github.com/seanmalbert/bloom/commit/44881da1a7ccc17b7d4db1fcf79513632c18066d)) -* add SRO unit type ([a4c1403](https://github.com/seanmalbert/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) -* adds jurisdictions to pref seeds ([8a70b68](https://github.com/seanmalbert/bloom/commit/8a70b688ec8c6eb785543d5ce91ae182f62af168)) -* adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) -* adds whatToExpect to GTrans ([461961a](https://github.com/seanmalbert/bloom/commit/461961a4dd48d7a1c935e4dc03e9a62d2f455088)) -* ami chart jurisdictionalized ([b2e2537](https://github.com/seanmalbert/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) -* **backend:** all programs to csv export ([#2302](https://github.com/seanmalbert/bloom/issues/2302)) ([48b50f9](https://github.com/seanmalbert/bloom/commit/48b50f95be794773cc68ebee3144c1f44db26f04)) -* better seed data for ami-charts ([24eb7e4](https://github.com/seanmalbert/bloom/commit/24eb7e41512963f8dc716b74e8a8684e1272e1b7)) -* feat(backend): make use of new application confirmation codes ([8f386e8](https://github.com/seanmalbert/bloom/commit/8f386e8e656c8d498d41de947f2e5246d3c16b19)) -* new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* updates email confirmation for lottery ([768064a](https://github.com/seanmalbert/bloom/commit/768064a985ed858fae681caebcbcdb561319eaf9)) +- feat: adds bottom border to preferences +- feat: updates preference string -### Reverts +- fix: preference cleanup for avance -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -### BREAKING CHANGES +- feat: refactor and add public site application flow cypress tests -* preferences model and relationships changed +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: better seed data for ami-charts -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* fix: 2056/user account edit fix +- feat: adds listing management cypress tests to partner portal -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- fix: listings management keep empty strings, remove empty objects -* refactor: 2085/adds top level catchAll exception filter +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: one month rent -* feat: feat: Change unit number field type to text +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- test: view.spec.ts test -* feat(backend): improve application flagged set saving efficiency +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* fix: fix: updates address order +- refactor: removes jsonpath -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* fix: sets programs to optoinal and updates versions +- feat: adds jurisdictions to pref seeds -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- feat: new demographics sub-race questions -* fix: adds programs service +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* fix: fix lisitng e2e tests +- feat: updates email confirmation for lottery -* fix: fix member tests +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -## [3.0.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.13...@bloom-housing/backend-core@3.0.2-alpha.14) (2022-01-13) +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -### Bug Fixes +- fix: remove alameda reference in demographics -* partners render issue ([#2395](https://github.com/bloom-housing/bloom/issues/2395)) ([7fb108d](https://github.com/bloom-housing/bloom/commit/7fb108d744fcafd6b9df42706d2a2f58fbc30f0a)) +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -## [3.0.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.12...@bloom-housing/backend-core@3.0.2-alpha.13) (2022-01-13) +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -### Bug Fixes +- feat: add a phone number column to the user_accounts table -* dates showing as invalid in send by mail section ([#2362](https://github.com/bloom-housing/bloom/issues/2362)) ([3567388](https://github.com/bloom-housing/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners -### BREAKING CHANGES +- chore: removes application program display -* remove applicationDueTime field and consolidated into applicationDueDate +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger -## [3.0.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.11...@bloom-housing/backend-core@3.0.2-alpha.12) (2022-01-07) +- fix: removes Duplicate identifier fieldGroupObjectToArray -**Note:** Version bump only for package @bloom-housing/backend-core +- feat: skip preferences if not on listing +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency -## [3.0.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.10...@bloom-housing/backend-core@3.0.2-alpha.11) (2022-01-07) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/backend-core +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type -## [3.0.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.9...@bloom-housing/backend-core@3.0.2-alpha.10) (2022-01-04) +- chore(release): version +- fix: paper application submission -### Bug Fixes +- chore(release): version -* fix sortig on applications partner grid ([f097037](https://github.com/bloom-housing/bloom/commit/f097037afd896eec8bb90cc5e2de07f222907870)) -* fixes linting error ([aaaf858](https://github.com/bloom-housing/bloom/commit/aaaf85822e3b03224fb336bae66209a2b6b88d1d)) -* fixes some issues with the deployment ([a0042ba](https://github.com/bloom-housing/bloom/commit/a0042badc5474dde413e41a7f4f84c8ee7b2f8f1)) -* fixes tests and also issue with user grid ([da07ba4](https://github.com/bloom-housing/bloom/commit/da07ba49459f77fe77e3f72555eb50a0cbaab095)) +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support -## [3.0.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.8...@bloom-housing/backend-core@3.0.2-alpha.9) (2022-01-04) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/backend-core +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs -## [3.0.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.7...@bloom-housing/backend-core@3.0.2-alpha.8) (2022-01-03) +- fix: fix modal styles on mobile -**Note:** Version bump only for package @bloom-housing/backend-core +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1...@bloom-housing/backend-core@3.0.2-alpha.7) (2022-01-03) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### Bug Fixes +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) -* check for user lastLoginAt ([d78745a](https://github.com/bloom-housing/bloom/commit/d78745a4c8b770864c4f5e6140ee602e745b8bec)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -### Features +# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.1.2...@bloom-housing/backend-core@4.2.0) (2022-04-06) -* **backend:** add appropriate http exception for password outdated login failure ([e5df66e](https://github.com/bloom-housing/bloom/commit/e5df66e4fe0f937f507d014f3b25c6c9b4b5deff)) -* **backend:** add password outdating only to users which are either admins or partners ([754546d](https://github.com/bloom-housing/bloom/commit/754546dfd5194f8c30e12963031791818566d22d)) -* **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) -* **backend:** lock failed login attempts ([a8370ce](https://github.com/bloom-housing/bloom/commit/a8370ce1516f75180796d190a9a9f2697723e181)) -* **backend:** remove activity log interceptor from update-password ([2e56b98](https://github.com/bloom-housing/bloom/commit/2e56b9878969604bec2f7694a83dbf7061af9df2)) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [3.0.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1...@bloom-housing/backend-core@3.0.2-alpha.6) (2022-01-03) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### Bug Fixes +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) -* check for user lastLoginAt ([d78745a](https://github.com/bloom-housing/bloom/commit/d78745a4c8b770864c4f5e6140ee602e745b8bec)) +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -### Features +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* **backend:** add appropriate http exception for password outdated login failure ([e5df66e](https://github.com/bloom-housing/bloom/commit/e5df66e4fe0f937f507d014f3b25c6c9b4b5deff)) -* **backend:** add password outdating only to users which are either admins or partners ([754546d](https://github.com/bloom-housing/bloom/commit/754546dfd5194f8c30e12963031791818566d22d)) -* **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) -* **backend:** lock failed login attempts ([a8370ce](https://github.com/bloom-housing/bloom/commit/a8370ce1516f75180796d190a9a9f2697723e181)) -* **backend:** remove activity log interceptor from update-password ([2e56b98](https://github.com/bloom-housing/bloom/commit/2e56b9878969604bec2f7694a83dbf7061af9df2)) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.3-alpha.0...@bloom-housing/backend-core@4.1.3-alpha.1) (2022-04-04) +**Note:** Version bump only for package @bloom-housing/backend-core -## [3.0.2-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.0...@bloom-housing/backend-core@3.0.2-alpha.1) (2021-12-23) +## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.3...@bloom-housing/backend-core@4.1.3-alpha.0) (2022-03-30) **Note:** Version bump only for package @bloom-housing/backend-core +## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.1.0...@bloom-housing/backend-core@4.1.2) (2022-03-29) +### Features +- temp disable terms and set mfa enabled to false ([#2595](https://github.com/seanmalbert/bloom/issues/2595)) ([6de2dcd](https://github.com/seanmalbert/bloom/commit/6de2dcd8baeb28166d7a6c383846a7ab9a84b0e2)) +## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.2...@bloom-housing/backend-core@4.1.1-alpha.3) (2022-03-29) -## [3.0.2-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1...@bloom-housing/backend-core@3.0.2-alpha.0) (2021-12-23) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.1...@bloom-housing/backend-core@4.1.1-alpha.2) (2022-03-28) ### Features -* **backend:** lock failed login attempts ([a8370ce](https://github.com/seanmalbert/bloom/commit/a8370ce1516f75180796d190a9a9f2697723e181)) +- adds partners re-request confirmation ([#2574](https://github.com/bloom-housing/bloom/issues/2574)) ([235af78](https://github.com/bloom-housing/bloom/commit/235af781914e5c36104bb3862dd55152a16e6750)), closes [#2577](https://github.com/bloom-housing/bloom/issues/2577) + +## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@4.1.1-alpha.0...@bloom-housing/backend-core@4.1.1-alpha.1) (2022-03-25) +### Bug Fixes +- update for subject line ([#2578](https://github.com/bloom-housing/bloom/issues/2578)) ([dace763](https://github.com/bloom-housing/bloom/commit/dace76332bbdb3ad104638f32a07e71fd85edc0c)) +- update to mfa text's text ([#2579](https://github.com/bloom-housing/bloom/issues/2579)) ([ac5b812](https://github.com/bloom-housing/bloom/commit/ac5b81242f3177de09ed176a60f06be871906178)) +## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2...@bloom-housing/backend-core@4.1.1-alpha.0) (2022-03-02) +**Note:** Version bump only for package @bloom-housing/backend-core -## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.40...@bloom-housing/backend-core@3.0.1) (2021-12-22) +## [3.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.45...@bloom-housing/backend-core@3.0.2) (2022-03-02) **Note:** Version bump only for package @bloom-housing/backend-core +# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.0.3...@bloom-housing/backend-core@4.1.0) (2022-03-02) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.39...@bloom-housing/backend-core@3.0.1-alpha.40) (2021-12-15) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### Features +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* **backend:** refactor applications module ([#2279](https://github.com/bloom-housing/bloom/issues/2279)) ([e0b4523](https://github.com/bloom-housing/bloom/commit/e0b4523817c7d3863c3802d8a9f61d1a1c8685d4)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [3.0.2-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.44...@bloom-housing/backend-core@3.0.2-alpha.45) (2022-02-28) +### Features +- updates to mfa styling ([#2532](https://github.com/bloom-housing/bloom/issues/2532)) ([7654efc](https://github.com/bloom-housing/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) -## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.38...@bloom-housing/backend-core@3.0.1-alpha.39) (2021-12-14) +## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.0.2...@bloom-housing/backend-core@4.0.3) (2022-02-25) +### Bug Fixes + +- csv export auth check ([#2488](https://github.com/seanmalbert/bloom/issues/2488)) ([6faf8f5](https://github.com/seanmalbert/bloom/commit/6faf8f59b115adf73e70d56c855ba5b6d325d22a)) ### Features -* removes ListingLangCacheInterceptor from get by id ([7acbd82](https://github.com/bloom-housing/bloom/commit/7acbd82485edfa9a8aa5a82473d5bbe5cee571e7)) +- Add San Jose email translations ([#2519](https://github.com/seanmalbert/bloom/issues/2519)) ([d1db032](https://github.com/seanmalbert/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) +- **backend:** fix translations table relation to jurisdiction ([#2506](https://github.com/seanmalbert/bloom/issues/2506)) ([22b9f23](https://github.com/seanmalbert/bloom/commit/22b9f23eb405f701796193515dff35058cc4f7dc)) +## [3.0.2-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.43...@bloom-housing/backend-core@3.0.2-alpha.44) (2022-02-22) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.42...@bloom-housing/backend-core@3.0.2-alpha.43) (2022-02-17) +### Features -## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.37...@bloom-housing/backend-core@3.0.1-alpha.38) (2021-12-14) +- adds NULLS LAST to mostRecentlyClosed ([#2521](https://github.com/bloom-housing/bloom/issues/2521)) ([39737a3](https://github.com/bloom-housing/bloom/commit/39737a3207e22815d184fc19cb2eaf6b6390dda8)) +## [3.0.2-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.41...@bloom-housing/backend-core@3.0.2-alpha.42) (2022-02-17) ### Features -* **backend:** add partnerTerms to jurisdiction entity ([#2301](https://github.com/bloom-housing/bloom/issues/2301)) ([7ecf3ef](https://github.com/bloom-housing/bloom/commit/7ecf3ef24f261bf6b42fc38cf0080251a3c60e89)) +- **backend:** add listing order by mostRecentlyClosed param ([#2478](https://github.com/bloom-housing/bloom/issues/2478)) ([0f177c1](https://github.com/bloom-housing/bloom/commit/0f177c1847ac254f63837b0aca7fa8a705e3632c)) +## [3.0.2-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.40...@bloom-housing/backend-core@3.0.2-alpha.41) (2022-02-16) +### Features +- **backend:** fix translations table relation to jurisdiction (make … ([#2506](https://github.com/bloom-housing/bloom/issues/2506)) ([8e1e3a9](https://github.com/bloom-housing/bloom/commit/8e1e3a9eb0ff76412831e122390ac25ad7754645)) +## [3.0.2-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.39...@bloom-housing/backend-core@3.0.2-alpha.40) (2022-02-16) -## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.36...@bloom-housing/backend-core@3.0.1-alpha.37) (2021-12-13) +### Bug Fixes + +- checks for existance of image_id ([#2505](https://github.com/bloom-housing/bloom/issues/2505)) ([d2051af](https://github.com/bloom-housing/bloom/commit/d2051afa188ce62c42f3d6bf737fd2059f9b7599)) +## [3.0.2-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.38...@bloom-housing/backend-core@3.0.2-alpha.39) (2022-02-15) ### Features -* **backend:** all programs to csv export ([#2302](https://github.com/bloom-housing/bloom/issues/2302)) ([f4d6a62](https://github.com/bloom-housing/bloom/commit/f4d6a62920e3b859310898e3a040f8116b43cab3)) +- **backend:** make listing image an array ([#2477](https://github.com/bloom-housing/bloom/issues/2477)) ([cab9800](https://github.com/bloom-housing/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) + +## [3.0.2-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.37...@bloom-housing/backend-core@3.0.2-alpha.38) (2022-02-15) +### Code Refactoring +- remove backend dependencies from events components, consolidate ([#2495](https://github.com/bloom-housing/bloom/issues/2495)) ([d884689](https://github.com/bloom-housing/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.35...@bloom-housing/backend-core@3.0.1-alpha.36) (2021-12-13) +## [3.0.2-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.36...@bloom-housing/backend-core@3.0.2-alpha.37) (2022-02-15) + +### Bug Fixes + +- **backend:** mfa_enabled migration fix ([#2503](https://github.com/bloom-housing/bloom/issues/2503)) ([a5b9a60](https://github.com/bloom-housing/bloom/commit/a5b9a604faccef55775dbbc54441251e29999fa4)) +## [3.0.2-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.35...@bloom-housing/backend-core@3.0.2-alpha.36) (2022-02-15) ### Features -* **backend:** add activity logging to listings module ([#2190](https://github.com/bloom-housing/bloom/issues/2190)) ([88d60e3](https://github.com/bloom-housing/bloom/commit/88d60e32d77381d6e830158ce77c058b1cfcc022)) +- **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/bloom-housing/bloom/issues/2291)) ([5b10098](https://github.com/bloom-housing/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) + +## [3.0.2-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.34...@bloom-housing/backend-core@3.0.2-alpha.35) (2022-02-10) +### Bug Fixes +- csv export auth check ([#2488](https://github.com/bloom-housing/bloom/issues/2488)) ([2471d4a](https://github.com/bloom-housing/bloom/commit/2471d4afdd747843f58c0c154d6e94a9c76d733d)) +## [3.0.2-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.33...@bloom-housing/backend-core@3.0.2-alpha.34) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/backend-core -## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.34...@bloom-housing/backend-core@3.0.1-alpha.35) (2021-12-10) +## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@4.0.1...@bloom-housing/backend-core@4.0.2) (2022-02-09) +### Bug Fixes -### Features +- updates partner check for listing perm ([#2484](https://github.com/seanmalbert/bloom/issues/2484)) ([c2ab01f](https://github.com/seanmalbert/bloom/commit/c2ab01f6520b138bead01dec7352618b90635432)) -* adds whatToExpect to GTrans ([#2303](https://github.com/bloom-housing/bloom/issues/2303)) ([6d7305b](https://github.com/bloom-housing/bloom/commit/6d7305b8e3b7e1c3a9776123e8e6d370ab803af0)) +## [3.0.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.32...@bloom-housing/backend-core@3.0.2-alpha.33) (2022-02-09) +### Features +- **backend:** remove assigning partner user as an application owner ([#2476](https://github.com/bloom-housing/bloom/issues/2476)) ([4f6edf7](https://github.com/bloom-housing/bloom/commit/4f6edf7ed882ae926e363e4db4e40e6f19ed4746)) +## [3.0.2-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.31...@bloom-housing/backend-core@3.0.2-alpha.32) (2022-02-09) +### Bug Fixes -## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.33...@bloom-housing/backend-core@3.0.1-alpha.34) (2021-12-09) +- updates partner check for listing perm ([#2484](https://github.com/bloom-housing/bloom/issues/2484)) ([9b0a6f5](https://github.com/bloom-housing/bloom/commit/9b0a6f560ec5dd95f846b330afb71eed40cbfa1b)) +## [3.0.2-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.30...@bloom-housing/backend-core@3.0.2-alpha.31) (2022-02-09) ### Bug Fixes -* units with invalid ami chart ([#2290](https://github.com/bloom-housing/bloom/issues/2290)) ([a6516e1](https://github.com/bloom-housing/bloom/commit/a6516e142ec13db5c3c8d2bb4f726be681e172e3)) +- cannot remove some fields in listings management ([#2455](https://github.com/bloom-housing/bloom/issues/2455)) ([acd9b51](https://github.com/bloom-housing/bloom/commit/acd9b51bb49581b4728b445d56c5c0a3c43e2777)) +## [3.0.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.29...@bloom-housing/backend-core@3.0.2-alpha.30) (2022-02-07) +**Note:** Version bump only for package @bloom-housing/backend-core +## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.23...@bloom-housing/backend-core@4.0.1) (2022-02-03) +### Bug Fixes -## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.32...@bloom-housing/backend-core@3.0.1-alpha.33) (2021-12-07) +- ami charts without all households ([#2430](https://github.com/seanmalbert/bloom/issues/2430)) ([5e18eba](https://github.com/seanmalbert/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) +- app submission w/ no due date ([8e5a81c](https://github.com/seanmalbert/bloom/commit/8e5a81c37c4efc3404e5536bd54c10cd2962bca3)) +- await casbin enforcer ([d7eb196](https://github.com/seanmalbert/bloom/commit/d7eb196be0b05732325938e2db7b583d66cbc9cf)) +- cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/seanmalbert/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) +- fix for csv dempgraphics and preference patch ([0ffc090](https://github.com/seanmalbert/bloom/commit/0ffc0900fee73b34fd953e5355552e2e763c239c)) +- listings management keep empty strings, remove empty objects ([3aba274](https://github.com/seanmalbert/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) +- patches translations for preferences ([#2410](https://github.com/seanmalbert/bloom/issues/2410)) ([21f517e](https://github.com/seanmalbert/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) +- recalculate units available on listing update ([9c3967f](https://github.com/seanmalbert/bloom/commit/9c3967f0b74526db39df4f5dbc7ad9a52741a6ea)) +- units with invalid ami chart ([621ff02](https://github.com/seanmalbert/bloom/commit/621ff0227270861047e885467f9ddd77459adec1)) +- updates household member count ([f822713](https://github.com/seanmalbert/bloom/commit/f82271397d02025629d7ea039b40cdac95877c45)) +- 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) +- Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) ### Features -* overrides fallback to english, tagalog support ([#2262](https://github.com/bloom-housing/bloom/issues/2262)) ([679ab9b](https://github.com/bloom-housing/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +- add a phone number column to the user_accounts table ([44881da](https://github.com/seanmalbert/bloom/commit/44881da1a7ccc17b7d4db1fcf79513632c18066d)) +- add SRO unit type ([a4c1403](https://github.com/seanmalbert/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) +- adds jurisdictions to pref seeds ([8a70b68](https://github.com/seanmalbert/bloom/commit/8a70b688ec8c6eb785543d5ce91ae182f62af168)) +- adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) +- adds whatToExpect to GTrans ([461961a](https://github.com/seanmalbert/bloom/commit/461961a4dd48d7a1c935e4dc03e9a62d2f455088)) +- adds whatToExpect to GTrans ([#2303](https://github.com/seanmalbert/bloom/issues/2303)) ([38e672a](https://github.com/seanmalbert/bloom/commit/38e672a4dbd6c39a7a01b04698f2096a62eed8a1)) +- ami chart jurisdictionalized ([b2e2537](https://github.com/seanmalbert/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) +- **backend:** add storing listing translations ([#2215](https://github.com/seanmalbert/bloom/issues/2215)) ([d6a1337](https://github.com/seanmalbert/bloom/commit/d6a1337fbe3da8a159e2b60638fc527aa65aaef0)) +- **backend:** all programs to csv export ([#2302](https://github.com/seanmalbert/bloom/issues/2302)) ([48b50f9](https://github.com/seanmalbert/bloom/commit/48b50f95be794773cc68ebee3144c1f44db26f04)) +- better seed data for ami-charts ([24eb7e4](https://github.com/seanmalbert/bloom/commit/24eb7e41512963f8dc716b74e8a8684e1272e1b7)) +- feat(backend): make use of new application confirmation codes ([8f386e8](https://github.com/seanmalbert/bloom/commit/8f386e8e656c8d498d41de947f2e5246d3c16b19)) +- new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- updates email confirmation for lottery ([768064a](https://github.com/seanmalbert/bloom/commit/768064a985ed858fae681caebcbcdb561319eaf9)) +### Reverts +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.31...@bloom-housing/backend-core@3.0.1-alpha.32) (2021-12-06) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### Features +- preferences model and relationships changed -* **backend:** add listings closing routine ([#2213](https://github.com/bloom-housing/bloom/issues/2213)) ([a747806](https://github.com/bloom-housing/bloom/commit/a747806282f80c92bd9a171a2b4d5c9b74d3b49a)) +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.30...@bloom-housing/backend-core@3.0.1-alpha.31) (2021-12-03) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -**Note:** Version bump only for package @bloom-housing/backend-core +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.29...@bloom-housing/backend-core@3.0.1-alpha.30) (2021-12-03) +- fix: sets programs to optoinal and updates versions -**Note:** Version bump only for package @bloom-housing/backend-core +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests -## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.28...@bloom-housing/backend-core@3.0.1-alpha.29) (2021-12-03) +## [3.0.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.28...@bloom-housing/backend-core@3.0.2-alpha.29) (2022-02-02) +### Bug Fixes -### Features +- unit accordion radio button not showing default value ([#2451](https://github.com/bloom-housing/bloom/issues/2451)) ([4ed8103](https://github.com/bloom-housing/bloom/commit/4ed81039b9130d0433b11df2bdabc495ce2b9f24)) -* **backend:** add storing listing translations ([#2215](https://github.com/bloom-housing/bloom/issues/2215)) ([6ac63ea](https://github.com/bloom-housing/bloom/commit/6ac63eae82e14ab32d541b907c7e5dc800c1971f)) +## [3.0.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.27...@bloom-housing/backend-core@3.0.2-alpha.28) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.26...@bloom-housing/backend-core@3.0.2-alpha.27) (2022-02-02) +### Bug Fixes +- **backend:** translations input validator ([#2466](https://github.com/bloom-housing/bloom/issues/2466)) ([603c3dc](https://github.com/bloom-housing/bloom/commit/603c3dc52a400db815c4d81552a5aa74f397fe0f)) -## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.27...@bloom-housing/backend-core@3.0.1-alpha.28) (2021-12-01) +## [3.0.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.25...@bloom-housing/backend-core@3.0.2-alpha.26) (2022-02-02) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.24...@bloom-housing/backend-core@3.0.2-alpha.25) (2022-02-01) +### Bug Fixes +- date validation issue ([#2464](https://github.com/bloom-housing/bloom/issues/2464)) ([158f7bf](https://github.com/bloom-housing/bloom/commit/158f7bf7fdc59954aebfebbd1ad3741239ed1a35)) - -## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.26...@bloom-housing/backend-core@3.0.1-alpha.27) (2021-12-01) +## [3.0.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.23...@bloom-housing/backend-core@3.0.2-alpha.24) (2022-02-01) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.22...@bloom-housing/backend-core@3.0.2-alpha.23) (2022-02-01) +### Bug Fixes +- await casbin enforcer ([4feacec](https://github.com/bloom-housing/bloom/commit/4feacec44635135bc5469c0edd02a3424a2697cc)) +## [3.0.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.21...@bloom-housing/backend-core@3.0.2-alpha.22) (2022-02-01) -## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.25...@bloom-housing/backend-core@3.0.1-alpha.26) (2021-11-30) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.20...@bloom-housing/backend-core@3.0.2-alpha.21) (2022-02-01) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/backend-core -* **backend:** nginx with heroku configuration ([#2196](https://github.com/bloom-housing/bloom/issues/2196)) ([a1e2630](https://github.com/bloom-housing/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) +## [3.0.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.19...@bloom-housing/backend-core@3.0.2-alpha.20) (2022-02-01) +### Features +- **backend:** add publishedAt and closedAt to listing entity ([#2432](https://github.com/bloom-housing/bloom/issues/2432)) ([f3b0f86](https://github.com/bloom-housing/bloom/commit/f3b0f864a6d5d2ad3d886e828743454c3e8fca71)) +## [3.0.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.18...@bloom-housing/backend-core@3.0.2-alpha.19) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/backend-core -## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.24...@bloom-housing/backend-core@3.0.1-alpha.25) (2021-11-29) +## [3.0.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.17...@bloom-housing/backend-core@3.0.2-alpha.18) (2022-01-31) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.16...@bloom-housing/backend-core@3.0.2-alpha.17) (2022-01-27) +### Features +- outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +## [3.0.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.15...@bloom-housing/backend-core@3.0.2-alpha.16) (2022-01-24) -## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.23...@bloom-housing/backend-core@3.0.1-alpha.24) (2021-11-29) +### Bug Fixes +- ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([92dfbad](https://github.com/bloom-housing/bloom/commit/92dfbad32c90d84ee1ec3a3468c084cb110aa8be)) + +## [3.0.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.14...@bloom-housing/backend-core@3.0.2-alpha.15) (2022-01-14) ### Bug Fixes -* cannot save custom mailing, dropoff, or pickup address ([#2207](https://github.com/bloom-housing/bloom/issues/2207)) ([96484b5](https://github.com/bloom-housing/bloom/commit/96484b5676ecb000e492851ee12766ba9e6cd86f)) +- patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([7906e6b](https://github.com/bloom-housing/bloom/commit/7906e6bc035fab4deea79ea51833a0ef29926d45)) +## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.23...@bloom-housing/backend-core@3.0.1) (2022-01-13) +### Bug Fixes +- app submission w/ no due date ([8e5a81c](https://github.com/seanmalbert/bloom/commit/8e5a81c37c4efc3404e5536bd54c10cd2962bca3)) +- cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/seanmalbert/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) +- fix for csv dempgraphics and preference patch ([0ffc090](https://github.com/seanmalbert/bloom/commit/0ffc0900fee73b34fd953e5355552e2e763c239c)) +- listings management keep empty strings, remove empty objects ([3aba274](https://github.com/seanmalbert/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) +- recalculate units available on listing update ([9c3967f](https://github.com/seanmalbert/bloom/commit/9c3967f0b74526db39df4f5dbc7ad9a52741a6ea)) +- units with invalid ami chart ([621ff02](https://github.com/seanmalbert/bloom/commit/621ff0227270861047e885467f9ddd77459adec1)) +- updates household member count ([f822713](https://github.com/seanmalbert/bloom/commit/f82271397d02025629d7ea039b40cdac95877c45)) +- Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) -## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.22...@bloom-housing/backend-core@3.0.1-alpha.23) (2021-11-23) +### Features +- add a phone number column to the user_accounts table ([44881da](https://github.com/seanmalbert/bloom/commit/44881da1a7ccc17b7d4db1fcf79513632c18066d)) +- add SRO unit type ([a4c1403](https://github.com/seanmalbert/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) +- adds jurisdictions to pref seeds ([8a70b68](https://github.com/seanmalbert/bloom/commit/8a70b688ec8c6eb785543d5ce91ae182f62af168)) +- adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) +- adds whatToExpect to GTrans ([461961a](https://github.com/seanmalbert/bloom/commit/461961a4dd48d7a1c935e4dc03e9a62d2f455088)) +- ami chart jurisdictionalized ([b2e2537](https://github.com/seanmalbert/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) +- **backend:** all programs to csv export ([#2302](https://github.com/seanmalbert/bloom/issues/2302)) ([48b50f9](https://github.com/seanmalbert/bloom/commit/48b50f95be794773cc68ebee3144c1f44db26f04)) +- better seed data for ami-charts ([24eb7e4](https://github.com/seanmalbert/bloom/commit/24eb7e41512963f8dc716b74e8a8684e1272e1b7)) +- feat(backend): make use of new application confirmation codes ([8f386e8](https://github.com/seanmalbert/bloom/commit/8f386e8e656c8d498d41de947f2e5246d3c16b19)) +- new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- updates email confirmation for lottery ([768064a](https://github.com/seanmalbert/bloom/commit/768064a985ed858fae681caebcbcdb561319eaf9)) -### Features +### Reverts -* updates email confirmation for lottery ([#2200](https://github.com/bloom-housing/bloom/issues/2200)) ([1a5e824](https://github.com/bloom-housing/bloom/commit/1a5e824c96d8e23674c32ea92688b9f7255528d3)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.21...@bloom-housing/backend-core@3.0.1-alpha.22) (2021-11-23) +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -### Features +- refactor: 2085/adds top level catchAll exception filter -* new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order -## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.20...@bloom-housing/backend-core@3.0.1-alpha.21) (2021-11-22) +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -**Note:** Version bump only for package @bloom-housing/backend-core +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests -## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.19...@bloom-housing/backend-core@3.0.1-alpha.20) (2021-11-22) +- fix: fix member tests + +## [3.0.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.13...@bloom-housing/backend-core@3.0.2-alpha.14) (2022-01-13) +### Bug Fixes -### Features +- partners render issue ([#2395](https://github.com/bloom-housing/bloom/issues/2395)) ([7fb108d](https://github.com/bloom-housing/bloom/commit/7fb108d744fcafd6b9df42706d2a2f58fbc30f0a)) -* adds jurisdictions to pref seeds ([#2199](https://github.com/bloom-housing/bloom/issues/2199)) ([9e47cec](https://github.com/bloom-housing/bloom/commit/9e47cec3b1acfe769207ccbb33c07019cd742e33)) +## [3.0.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.12...@bloom-housing/backend-core@3.0.2-alpha.13) (2022-01-13) +### Bug Fixes +- dates showing as invalid in send by mail section ([#2362](https://github.com/bloom-housing/bloom/issues/2362)) ([3567388](https://github.com/bloom-housing/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.18...@bloom-housing/backend-core@3.0.1-alpha.19) (2021-11-22) +## [3.0.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.11...@bloom-housing/backend-core@3.0.2-alpha.12) (2022-01-07) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.10...@bloom-housing/backend-core@3.0.2-alpha.11) (2022-01-07) + +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.9...@bloom-housing/backend-core@3.0.2-alpha.10) (2022-01-04) +### Bug Fixes +- fix sortig on applications partner grid ([f097037](https://github.com/bloom-housing/bloom/commit/f097037afd896eec8bb90cc5e2de07f222907870)) +- fixes linting error ([aaaf858](https://github.com/bloom-housing/bloom/commit/aaaf85822e3b03224fb336bae66209a2b6b88d1d)) +- fixes some issues with the deployment ([a0042ba](https://github.com/bloom-housing/bloom/commit/a0042badc5474dde413e41a7f4f84c8ee7b2f8f1)) +- fixes tests and also issue with user grid ([da07ba4](https://github.com/bloom-housing/bloom/commit/da07ba49459f77fe77e3f72555eb50a0cbaab095)) -## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.17...@bloom-housing/backend-core@3.0.1-alpha.18) (2021-11-22) +## [3.0.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.8...@bloom-housing/backend-core@3.0.2-alpha.9) (2022-01-04) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.7...@bloom-housing/backend-core@3.0.2-alpha.8) (2022-01-03) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1...@bloom-housing/backend-core@3.0.2-alpha.7) (2022-01-03) +### Bug Fixes -## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.16...@bloom-housing/backend-core@3.0.1-alpha.17) (2021-11-17) +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- check for user lastLoginAt ([d78745a](https://github.com/bloom-housing/bloom/commit/d78745a4c8b770864c4f5e6140ee602e745b8bec)) +### Features -### Bug Fixes +- **backend:** add appropriate http exception for password outdated login failure ([e5df66e](https://github.com/bloom-housing/bloom/commit/e5df66e4fe0f937f507d014f3b25c6c9b4b5deff)) +- **backend:** add password outdating only to users which are either admins or partners ([754546d](https://github.com/bloom-housing/bloom/commit/754546dfd5194f8c30e12963031791818566d22d)) +- **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) +- **backend:** lock failed login attempts ([a8370ce](https://github.com/bloom-housing/bloom/commit/a8370ce1516f75180796d190a9a9f2697723e181)) +- **backend:** remove activity log interceptor from update-password ([2e56b98](https://github.com/bloom-housing/bloom/commit/2e56b9878969604bec2f7694a83dbf7061af9df2)) -* **backend:** fix view.spec.ts test ([#2175](https://github.com/bloom-housing/bloom/issues/2175)) ([324446c](https://github.com/bloom-housing/bloom/commit/324446c90138d8fac50aba445f515009b5a58bfb)) +## [3.0.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1...@bloom-housing/backend-core@3.0.2-alpha.6) (2022-01-03) +### Bug Fixes +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- check for user lastLoginAt ([d78745a](https://github.com/bloom-housing/bloom/commit/d78745a4c8b770864c4f5e6140ee602e745b8bec)) +### Features +- **backend:** add appropriate http exception for password outdated login failure ([e5df66e](https://github.com/bloom-housing/bloom/commit/e5df66e4fe0f937f507d014f3b25c6c9b4b5deff)) +- **backend:** add password outdating only to users which are either admins or partners ([754546d](https://github.com/bloom-housing/bloom/commit/754546dfd5194f8c30e12963031791818566d22d)) +- **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) +- **backend:** lock failed login attempts ([a8370ce](https://github.com/bloom-housing/bloom/commit/a8370ce1516f75180796d190a9a9f2697723e181)) +- **backend:** remove activity log interceptor from update-password ([2e56b98](https://github.com/bloom-housing/bloom/commit/2e56b9878969604bec2f7694a83dbf7061af9df2)) -## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.15...@bloom-housing/backend-core@3.0.1-alpha.16) (2021-11-16) +## [3.0.2-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.2-alpha.0...@bloom-housing/backend-core@3.0.2-alpha.1) (2021-12-23) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.2-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1...@bloom-housing/backend-core@3.0.2-alpha.0) (2021-12-23) +### Features +- **backend:** lock failed login attempts ([a8370ce](https://github.com/seanmalbert/bloom/commit/a8370ce1516f75180796d190a9a9f2697723e181)) - -## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.14...@bloom-housing/backend-core@3.0.1-alpha.15) (2021-11-15) +## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.40...@bloom-housing/backend-core@3.0.1) (2021-12-22) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.39...@bloom-housing/backend-core@3.0.1-alpha.40) (2021-12-15) +### Features +- **backend:** refactor applications module ([#2279](https://github.com/bloom-housing/bloom/issues/2279)) ([e0b4523](https://github.com/bloom-housing/bloom/commit/e0b4523817c7d3863c3802d8a9f61d1a1c8685d4)) +## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.38...@bloom-housing/backend-core@3.0.1-alpha.39) (2021-12-14) -## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.13...@bloom-housing/backend-core@3.0.1-alpha.14) (2021-11-15) - -**Note:** Version bump only for package @bloom-housing/backend-core +### Features +- removes ListingLangCacheInterceptor from get by id ([7acbd82](https://github.com/bloom-housing/bloom/commit/7acbd82485edfa9a8aa5a82473d5bbe5cee571e7)) +## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.37...@bloom-housing/backend-core@3.0.1-alpha.38) (2021-12-14) +### Features +- **backend:** add partnerTerms to jurisdiction entity ([#2301](https://github.com/bloom-housing/bloom/issues/2301)) ([7ecf3ef](https://github.com/bloom-housing/bloom/commit/7ecf3ef24f261bf6b42fc38cf0080251a3c60e89)) -## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.12...@bloom-housing/backend-core@3.0.1-alpha.13) (2021-11-15) +## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.36...@bloom-housing/backend-core@3.0.1-alpha.37) (2021-12-13) +### Features -### Reverts +- **backend:** all programs to csv export ([#2302](https://github.com/bloom-housing/bloom/issues/2302)) ([f4d6a62](https://github.com/bloom-housing/bloom/commit/f4d6a62920e3b859310898e3a040f8116b43cab3)) -* Revert "feat(backend): add nginx proxy-cache configuration (#2119)" ([d7a8951](https://github.com/bloom-housing/bloom/commit/d7a8951bc6686d4361f7c1100f09a45b29058fd0)), closes [#2119](https://github.com/bloom-housing/bloom/issues/2119) +## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.35...@bloom-housing/backend-core@3.0.1-alpha.36) (2021-12-13) +### Features +- **backend:** add activity logging to listings module ([#2190](https://github.com/bloom-housing/bloom/issues/2190)) ([88d60e3](https://github.com/bloom-housing/bloom/commit/88d60e32d77381d6e830158ce77c058b1cfcc022)) +## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.34...@bloom-housing/backend-core@3.0.1-alpha.35) (2021-12-10) +### Features -## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.11...@bloom-housing/backend-core@3.0.1-alpha.12) (2021-11-12) +- adds whatToExpect to GTrans ([#2303](https://github.com/bloom-housing/bloom/issues/2303)) ([6d7305b](https://github.com/bloom-housing/bloom/commit/6d7305b8e3b7e1c3a9776123e8e6d370ab803af0)) +## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.33...@bloom-housing/backend-core@3.0.1-alpha.34) (2021-12-09) ### Bug Fixes -* sapp submission w/ no due date ([4af1f5a](https://github.com/bloom-housing/bloom/commit/4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc)) +- units with invalid ami chart ([#2290](https://github.com/bloom-housing/bloom/issues/2290)) ([a6516e1](https://github.com/bloom-housing/bloom/commit/a6516e142ec13db5c3c8d2bb4f726be681e172e3)) + +## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.32...@bloom-housing/backend-core@3.0.1-alpha.33) (2021-12-07) + +### Features +- overrides fallback to english, tagalog support ([#2262](https://github.com/bloom-housing/bloom/issues/2262)) ([679ab9b](https://github.com/bloom-housing/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.31...@bloom-housing/backend-core@3.0.1-alpha.32) (2021-12-06) +### Features +- **backend:** add listings closing routine ([#2213](https://github.com/bloom-housing/bloom/issues/2213)) ([a747806](https://github.com/bloom-housing/bloom/commit/a747806282f80c92bd9a171a2b4d5c9b74d3b49a)) -## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.10...@bloom-housing/backend-core@3.0.1-alpha.11) (2021-11-12) +## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.30...@bloom-housing/backend-core@3.0.1-alpha.31) (2021-12-03) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.29...@bloom-housing/backend-core@3.0.1-alpha.30) (2021-12-03) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.28...@bloom-housing/backend-core@3.0.1-alpha.29) (2021-12-03) +### Features -## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.9...@bloom-housing/backend-core@3.0.1-alpha.10) (2021-11-11) +- **backend:** add storing listing translations ([#2215](https://github.com/bloom-housing/bloom/issues/2215)) ([6ac63ea](https://github.com/bloom-housing/bloom/commit/6ac63eae82e14ab32d541b907c7e5dc800c1971f)) +## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.27...@bloom-housing/backend-core@3.0.1-alpha.28) (2021-12-01) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/backend-core -* recalculate units available on listing update ([#2150](https://github.com/bloom-housing/bloom/issues/2150)) ([f1a3dbc](https://github.com/bloom-housing/bloom/commit/f1a3dbce6478b16542ed61ab20de5dfb9b797262)) +## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.26...@bloom-housing/backend-core@3.0.1-alpha.27) (2021-12-01) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.25...@bloom-housing/backend-core@3.0.1-alpha.26) (2021-11-30) +### Bug Fixes +- **backend:** nginx with heroku configuration ([#2196](https://github.com/bloom-housing/bloom/issues/2196)) ([a1e2630](https://github.com/bloom-housing/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) -## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.8...@bloom-housing/backend-core@3.0.1-alpha.9) (2021-11-10) +## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.24...@bloom-housing/backend-core@3.0.1-alpha.25) (2021-11-29) +**Note:** Version bump only for package @bloom-housing/backend-core -### Features +## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.23...@bloom-housing/backend-core@3.0.1-alpha.24) (2021-11-29) -* **backend:** add nginx proxy-cache configuration ([#2119](https://github.com/bloom-housing/bloom/issues/2119)) ([34d32e7](https://github.com/bloom-housing/bloom/commit/34d32e75ceae378a26c57f4c9b7feec8c88339e0)) +### Bug Fixes +- cannot save custom mailing, dropoff, or pickup address ([#2207](https://github.com/bloom-housing/bloom/issues/2207)) ([96484b5](https://github.com/bloom-housing/bloom/commit/96484b5676ecb000e492851ee12766ba9e6cd86f)) +## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.22...@bloom-housing/backend-core@3.0.1-alpha.23) (2021-11-23) +### Features +- updates email confirmation for lottery ([#2200](https://github.com/bloom-housing/bloom/issues/2200)) ([1a5e824](https://github.com/bloom-housing/bloom/commit/1a5e824c96d8e23674c32ea92688b9f7255528d3)) -## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.7...@bloom-housing/backend-core@3.0.1-alpha.8) (2021-11-09) +## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.21...@bloom-housing/backend-core@3.0.1-alpha.22) (2021-11-23) +### Features -### Bug Fixes +- new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) -* updates address order ([#2151](https://github.com/bloom-housing/bloom/issues/2151)) ([252e014](https://github.com/bloom-housing/bloom/commit/252e014dcbd2e4c305384ed552135f5a8e4e4767)) +## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.20...@bloom-housing/backend-core@3.0.1-alpha.21) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.19...@bloom-housing/backend-core@3.0.1-alpha.20) (2021-11-22) +### Features +- adds jurisdictions to pref seeds ([#2199](https://github.com/bloom-housing/bloom/issues/2199)) ([9e47cec](https://github.com/bloom-housing/bloom/commit/9e47cec3b1acfe769207ccbb33c07019cd742e33)) -## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.6...@bloom-housing/backend-core@3.0.1-alpha.7) (2021-11-09) +## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.18...@bloom-housing/backend-core@3.0.1-alpha.19) (2021-11-22) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.17...@bloom-housing/backend-core@3.0.1-alpha.18) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.16...@bloom-housing/backend-core@3.0.1-alpha.17) (2021-11-17) +### Bug Fixes -## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.5...@bloom-housing/backend-core@3.0.1-alpha.6) (2021-11-09) - -**Note:** Version bump only for package @bloom-housing/backend-core +- **backend:** fix view.spec.ts test ([#2175](https://github.com/bloom-housing/bloom/issues/2175)) ([324446c](https://github.com/bloom-housing/bloom/commit/324446c90138d8fac50aba445f515009b5a58bfb)) +## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.15...@bloom-housing/backend-core@3.0.1-alpha.16) (2021-11-16) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.14...@bloom-housing/backend-core@3.0.1-alpha.15) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/backend-core -## [3.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.4...@bloom-housing/backend-core@3.0.1-alpha.5) (2021-11-09) +## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.13...@bloom-housing/backend-core@3.0.1-alpha.14) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/backend-core -### Features +## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.12...@bloom-housing/backend-core@3.0.1-alpha.13) (2021-11-15) -* **backend:** improve application flagged set saving efficiency ([#2147](https://github.com/bloom-housing/bloom/issues/2147)) ([08a064c](https://github.com/bloom-housing/bloom/commit/08a064c319adabb5385e474f5751246d92dba9a2)) +### Reverts +- Revert "feat(backend): add nginx proxy-cache configuration (#2119)" ([d7a8951](https://github.com/bloom-housing/bloom/commit/d7a8951bc6686d4361f7c1100f09a45b29058fd0)), closes [#2119](https://github.com/bloom-housing/bloom/issues/2119) +## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.11...@bloom-housing/backend-core@3.0.1-alpha.12) (2021-11-12) +### Bug Fixes +- sapp submission w/ no due date ([4af1f5a](https://github.com/bloom-housing/bloom/commit/4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc)) -## [3.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.3...@bloom-housing/backend-core@3.0.1-alpha.4) (2021-11-09) +## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.10...@bloom-housing/backend-core@3.0.1-alpha.11) (2021-11-12) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.9...@bloom-housing/backend-core@3.0.1-alpha.10) (2021-11-11) +### Bug Fixes +- recalculate units available on listing update ([#2150](https://github.com/bloom-housing/bloom/issues/2150)) ([f1a3dbc](https://github.com/bloom-housing/bloom/commit/f1a3dbce6478b16542ed61ab20de5dfb9b797262)) - -## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.2...@bloom-housing/backend-core@3.0.1-alpha.3) (2021-11-08) - +## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.8...@bloom-housing/backend-core@3.0.1-alpha.9) (2021-11-10) ### Features -* add Programs section to listings management ([#2093](https://github.com/bloom-housing/bloom/issues/2093)) ([9bd1fe1](https://github.com/bloom-housing/bloom/commit/9bd1fe1033dee0fb7e73756254474471bc304f5e)) +- **backend:** add nginx proxy-cache configuration ([#2119](https://github.com/bloom-housing/bloom/issues/2119)) ([34d32e7](https://github.com/bloom-housing/bloom/commit/34d32e75ceae378a26c57f4c9b7feec8c88339e0)) +## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.7...@bloom-housing/backend-core@3.0.1-alpha.8) (2021-11-09) +### Bug Fixes +- updates address order ([#2151](https://github.com/bloom-housing/bloom/issues/2151)) ([252e014](https://github.com/bloom-housing/bloom/commit/252e014dcbd2e4c305384ed552135f5a8e4e4767)) +## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.6...@bloom-housing/backend-core@3.0.1-alpha.7) (2021-11-09) -## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.1...@bloom-housing/backend-core@3.0.1-alpha.2) (2021-11-08) +**Note:** Version bump only for package @bloom-housing/backend-core + +## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.5...@bloom-housing/backend-core@3.0.1-alpha.6) (2021-11-09) **Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.4...@bloom-housing/backend-core@3.0.1-alpha.5) (2021-11-09) +### Features +- **backend:** improve application flagged set saving efficiency ([#2147](https://github.com/bloom-housing/bloom/issues/2147)) ([08a064c](https://github.com/bloom-housing/bloom/commit/08a064c319adabb5385e474f5751246d92dba9a2)) +## [3.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.3...@bloom-housing/backend-core@3.0.1-alpha.4) (2021-11-09) -## [3.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.0...@bloom-housing/backend-core@3.0.1-alpha.1) (2021-11-08) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.2...@bloom-housing/backend-core@3.0.1-alpha.3) (2021-11-08) ### Features -* **backend:** extend UserUpdateDto to support email change with confirmation ([#2120](https://github.com/bloom-housing/bloom/issues/2120)) ([3e1fdbd](https://github.com/bloom-housing/bloom/commit/3e1fdbd0ea91d4773973d5c485a5ba61303db90a)) - +- add Programs section to listings management ([#2093](https://github.com/bloom-housing/bloom/issues/2093)) ([9bd1fe1](https://github.com/bloom-housing/bloom/commit/9bd1fe1033dee0fb7e73756254474471bc304f5e)) +## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.1...@bloom-housing/backend-core@3.0.1-alpha.2) (2021-11-08) +**Note:** Version bump only for package @bloom-housing/backend-core +## [3.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.1-alpha.0...@bloom-housing/backend-core@3.0.1-alpha.1) (2021-11-08) -## [3.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.0...@bloom-housing/backend-core@3.0.1-alpha.0) (2021-11-05) +### Features +- **backend:** extend UserUpdateDto to support email change with confirmation ([#2120](https://github.com/bloom-housing/bloom/issues/2120)) ([3e1fdbd](https://github.com/bloom-housing/bloom/commit/3e1fdbd0ea91d4773973d5c485a5ba61303db90a)) -* 1837/preferences cleanup 3 (#2144) ([3ce6d5e](https://github.com/bloom-housing/bloom/commit/3ce6d5eb5aac49431ec5bf4912dbfcbe9077d84e)), closes [#2144](https://github.com/bloom-housing/bloom/issues/2144) +## [3.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@3.0.0...@bloom-housing/backend-core@3.0.1-alpha.0) (2021-11-05) +- 1837/preferences cleanup 3 (#2144) ([3ce6d5e](https://github.com/bloom-housing/bloom/commit/3ce6d5eb5aac49431ec5bf4912dbfcbe9077d84e)), closes [#2144](https://github.com/bloom-housing/bloom/issues/2144) ### BREAKING CHANGES -* Preferences are now M-N relation with a listing and have an intermediate table with ordinal number +- Preferences are now M-N relation with a listing and have an intermediate table with ordinal number -* refactor(backend): preferences deduplication +- refactor(backend): preferences deduplication So far each listing referenced it's own unique Preferences. This change introduces Many to Many relationship between Preference and Listing entity and forces sharing Preferences between listings. -* feat(backend): extend preferences migration with moving existing relations to a new intermediate tab +- feat(backend): extend preferences migration with moving existing relations to a new intermediate tab -* feat(backend): add Preference - Jurisdiction ManyToMany relation +- feat(backend): add Preference - Jurisdiction ManyToMany relation -* feat: adapt frontend to backend changes +- feat: adapt frontend to backend changes -* fix(backend): typeORM preferences select statement +- fix(backend): typeORM preferences select statement -* fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator +- fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator -* fix(backend): fix missing import in preferences-filter-params.ts +- fix(backend): fix missing import in preferences-filter-params.ts -* refactor: rebase issue +- refactor: rebase issue -* feat: uptake jurisdictional preferences +- feat: uptake jurisdictional preferences -* fix: fixup tests +- fix: fixup tests -* fix: application preferences ignore page, always separate +- fix: application preferences ignore page, always separate -* Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts +- Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts -* fix: preference fetching and ordering/pages +- fix: preference fetching and ordering/pages -* Fix code style issues with Prettier +- Fix code style issues with Prettier -* fix(backend): query User__leasingAgentInListings__jurisdiction_User__leasingAgentIn specified more +- fix(backend): query User**leasingAgentInListings**jurisdiction_User\_\_leasingAgentIn specified more -* fix: perferences cypress tests +- fix: perferences cypress tests Co-authored-by: Michal Plebanski Co-authored-by: Emily Jablonski Co-authored-by: Lint Action - - - - # [3.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.7...@bloom-housing/backend-core@3.0.0) (2021-11-05) **Note:** Version bump only for package @bloom-housing/backend-core - - - - ## [2.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.6...@bloom-housing/backend-core@2.0.1-alpha.7) (2021-11-05) **Note:** Version bump only for package @bloom-housing/backend-core - - - - ## [2.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.5...@bloom-housing/backend-core@2.0.1-alpha.6) (2021-11-04) - ### Reverts -* Revert "refactor: listing preferences and adds jurisdictional filtering" ([41f72c0](https://github.com/bloom-housing/bloom/commit/41f72c0db49cf94d7930f5cfc88f6ee9d6040986)) - - - - +- Revert "refactor: listing preferences and adds jurisdictional filtering" ([41f72c0](https://github.com/bloom-housing/bloom/commit/41f72c0db49cf94d7930f5cfc88f6ee9d6040986)) ## [2.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.4...@bloom-housing/backend-core@2.0.1-alpha.5) (2021-11-04) - ### Bug Fixes -* **backend:** make it possible to filter portal users in /users endpoint ([#2078](https://github.com/bloom-housing/bloom/issues/2078)) ([29bf714](https://github.com/bloom-housing/bloom/commit/29bf714d28755916ec8ec896366c8c32c3a227c4)) - - - - +- **backend:** make it possible to filter portal users in /users endpoint ([#2078](https://github.com/bloom-housing/bloom/issues/2078)) ([29bf714](https://github.com/bloom-housing/bloom/commit/29bf714d28755916ec8ec896366c8c32c3a227c4)) ## [2.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.3...@bloom-housing/backend-core@2.0.1-alpha.4) (2021-11-04) - ### Features -* Updates application confirmation numbers ([#2072](https://github.com/bloom-housing/bloom/issues/2072)) ([75cd67b](https://github.com/bloom-housing/bloom/commit/75cd67bcb62280936bdeeaee8c9b7b2583a1339d)) - - - - +- Updates application confirmation numbers ([#2072](https://github.com/bloom-housing/bloom/issues/2072)) ([75cd67b](https://github.com/bloom-housing/bloom/commit/75cd67bcb62280936bdeeaee8c9b7b2583a1339d)) ## [2.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.2...@bloom-housing/backend-core@2.0.1-alpha.3) (2021-11-03) **Note:** Version bump only for package @bloom-housing/backend-core - - - - ## [2.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.1...@bloom-housing/backend-core@2.0.1-alpha.2) (2021-11-03) - ### Bug Fixes -* don't send email confirmation on paper app submission ([#2110](https://github.com/bloom-housing/bloom/issues/2110)) ([7f83b70](https://github.com/bloom-housing/bloom/commit/7f83b70327049245ecfba04ae3aea4e967929b2a)) - - - - +- don't send email confirmation on paper app submission ([#2110](https://github.com/bloom-housing/bloom/issues/2110)) ([7f83b70](https://github.com/bloom-housing/bloom/commit/7f83b70327049245ecfba04ae3aea4e967929b2a)) ## [2.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.1-alpha.0...@bloom-housing/backend-core@2.0.1-alpha.1) (2021-11-03) - ### Features -* jurisdictional email signatures ([#2111](https://github.com/bloom-housing/bloom/issues/2111)) ([7a146ff](https://github.com/bloom-housing/bloom/commit/7a146ffb5de88cfa2950e2a469a99e38d71b33c8)) - - - - +- jurisdictional email signatures ([#2111](https://github.com/bloom-housing/bloom/issues/2111)) ([7a146ff](https://github.com/bloom-housing/bloom/commit/7a146ffb5de88cfa2950e2a469a99e38d71b33c8)) ## [2.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0...@bloom-housing/backend-core@2.0.1-alpha.0) (2021-11-02) - ### Features -* two new common app questions - Household Changes and Household Student ([#2070](https://github.com/bloom-housing/bloom/issues/2070)) ([42a752e](https://github.com/bloom-housing/bloom/commit/42a752ec073c0f5b65374c7a68da1e34b0b1c949)) - - - - +- two new common app questions - Household Changes and Household Student ([#2070](https://github.com/bloom-housing/bloom/issues/2070)) ([42a752e](https://github.com/bloom-housing/bloom/commit/42a752ec073c0f5b65374c7a68da1e34b0b1c949)) # [2.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.16...@bloom-housing/backend-core@2.0.0) (2021-11-02) **Note:** Version bump only for package @bloom-housing/backend-core - - - - # [2.0.0-pre-tailwind.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.15...@bloom-housing/backend-core@2.0.0-pre-tailwind.16) (2021-11-02) - ### Code Refactoring -* listing preferences and adds jurisdictional filtering ([9f661b4](https://github.com/bloom-housing/bloom/commit/9f661b43921ec939bd1bf5709c934ad6f56dd859)) - +- listing preferences and adds jurisdictional filtering ([9f661b4](https://github.com/bloom-housing/bloom/commit/9f661b43921ec939bd1bf5709c934ad6f56dd859)) ### BREAKING CHANGES -* updates preference relationship with listings - - - - +- updates preference relationship with listings # [2.0.0-pre-tailwind.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.14...@bloom-housing/backend-core@2.0.0-pre-tailwind.15) (2021-11-01) - ### Bug Fixes -* reverts preferences to re-add as breaking/major bump ([508078e](https://github.com/bloom-housing/bloom/commit/508078e16649e4d5f669273c50ef62407aab995f)) -* reverts preferences to re-add as breaking/major bump ([4f7d893](https://github.com/bloom-housing/bloom/commit/4f7d89327361b3b28b368c23cfd24e6e8123a0a8)) - - - - +- reverts preferences to re-add as breaking/major bump ([508078e](https://github.com/bloom-housing/bloom/commit/508078e16649e4d5f669273c50ef62407aab995f)) +- reverts preferences to re-add as breaking/major bump ([4f7d893](https://github.com/bloom-housing/bloom/commit/4f7d89327361b3b28b368c23cfd24e6e8123a0a8)) # [2.0.0-pre-tailwind.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.13...@bloom-housing/backend-core@2.0.0-pre-tailwind.14) (2021-10-30) - ### Bug Fixes -* updates household member count ([#2112](https://github.com/bloom-housing/bloom/issues/2112)) ([3dee0f7](https://github.com/bloom-housing/bloom/commit/3dee0f7d676ff42d546ecf83a17659cd69d7e1bc)) - - - - +- updates household member count ([#2112](https://github.com/bloom-housing/bloom/issues/2112)) ([3dee0f7](https://github.com/bloom-housing/bloom/commit/3dee0f7d676ff42d546ecf83a17659cd69d7e1bc)) # [2.0.0-pre-tailwind.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.12...@bloom-housing/backend-core@2.0.0-pre-tailwind.13) (2021-10-30) - -* Preferences cleanup (#1947) ([7329a58](https://github.com/bloom-housing/bloom/commit/7329a58cc9242faf647459e46de1e3cff3fe9c9d)), closes [#1947](https://github.com/bloom-housing/bloom/issues/1947) - +- Preferences cleanup (#1947) ([7329a58](https://github.com/bloom-housing/bloom/commit/7329a58cc9242faf647459e46de1e3cff3fe9c9d)), closes [#1947](https://github.com/bloom-housing/bloom/issues/1947) ### BREAKING CHANGES -* Preferences are now M-N relation with a listing and have an intermediate table with ordinal number +- Preferences are now M-N relation with a listing and have an intermediate table with ordinal number -* refactor(backend): preferences deduplication +- refactor(backend): preferences deduplication So far each listing referenced it's own unique Preferences. This change introduces Many to Many relationship between Preference and Listing entity and forces sharing Preferences between listings. -* feat(backend): extend preferences migration with moving existing relations to a new intermediate tab +- feat(backend): extend preferences migration with moving existing relations to a new intermediate tab -* feat(backend): add Preference - Jurisdiction ManyToMany relation +- feat(backend): add Preference - Jurisdiction ManyToMany relation -* feat: adapt frontend to backend changes +- feat: adapt frontend to backend changes -* fix(backend): typeORM preferences select statement +- fix(backend): typeORM preferences select statement -* fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator +- fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator -* fix(backend): fix missing import in preferences-filter-params.ts +- fix(backend): fix missing import in preferences-filter-params.ts -* refactor: rebase issue +- refactor: rebase issue -* feat: uptake jurisdictional preferences +- feat: uptake jurisdictional preferences -* fix: fixup tests +- fix: fixup tests -* fix: application preferences ignore page, always separate +- fix: application preferences ignore page, always separate -* Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts +- Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts -* fix: preference fetching and ordering/pages +- fix: preference fetching and ordering/pages -* Fix code style issues with Prettier +- Fix code style issues with Prettier -* fix(backend): query User__leasingAgentInListings__jurisdiction_User__leasingAgentIn specified more +- fix(backend): query User**leasingAgentInListings**jurisdiction_User\_\_leasingAgentIn specified more -* fix: perferences cypress tests +- fix: perferences cypress tests Co-authored-by: Emily Jablonski Co-authored-by: Sean Albert Co-authored-by: Lint Action - - - - # [2.0.0-pre-tailwind.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.11...@bloom-housing/backend-core@2.0.0-pre-tailwind.12) (2021-10-29) - ### Bug Fixes -* fix for csv demographics and preference patch ([4768fb0](https://github.com/bloom-housing/bloom/commit/4768fb00be55957b3b1b197d149187c79374b48d)) - - - - +- fix for csv demographics and preference patch ([4768fb0](https://github.com/bloom-housing/bloom/commit/4768fb00be55957b3b1b197d149187c79374b48d)) # [2.0.0-pre-tailwind.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.10...@bloom-housing/backend-core@2.0.0-pre-tailwind.11) (2021-10-28) - ### Bug Fixes -* in listings management keep empty strings, remove empty objects ([#2064](https://github.com/bloom-housing/bloom/issues/2064)) ([c4b1e83](https://github.com/bloom-housing/bloom/commit/c4b1e833ec128f457015ac7ffa421ee6047083d9)) - - - - +- in listings management keep empty strings, remove empty objects ([#2064](https://github.com/bloom-housing/bloom/issues/2064)) ([c4b1e83](https://github.com/bloom-housing/bloom/commit/c4b1e833ec128f457015ac7ffa421ee6047083d9)) # [2.0.0-pre-tailwind.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.9...@bloom-housing/backend-core@2.0.0-pre-tailwind.10) (2021-10-27) **Note:** Version bump only for package @bloom-housing/backend-core - - - - # [2.0.0-pre-tailwind.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.8...@bloom-housing/backend-core@2.0.0-pre-tailwind.9) (2021-10-26) - ### Bug Fixes -* Incorrect listing status ([#2015](https://github.com/bloom-housing/bloom/issues/2015)) ([48aa14e](https://github.com/bloom-housing/bloom/commit/48aa14eb522cb8e4d0a25fdeadcc392b30d7f1a9)) - - - - +- Incorrect listing status ([#2015](https://github.com/bloom-housing/bloom/issues/2015)) ([48aa14e](https://github.com/bloom-housing/bloom/commit/48aa14eb522cb8e4d0a25fdeadcc392b30d7f1a9)) # [2.0.0-pre-tailwind.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.7...@bloom-housing/backend-core@2.0.0-pre-tailwind.8) (2021-10-22) - ### Bug Fixes -* alternate contact email now validated ([#2035](https://github.com/bloom-housing/bloom/issues/2035)) ([b411695](https://github.com/bloom-housing/bloom/commit/b411695350f8f8de39c6994f2fac2fcb4678f678)) - - - - +- alternate contact email now validated ([#2035](https://github.com/bloom-housing/bloom/issues/2035)) ([b411695](https://github.com/bloom-housing/bloom/commit/b411695350f8f8de39c6994f2fac2fcb4678f678)) # [2.0.0-pre-tailwind.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.6...@bloom-housing/backend-core@2.0.0-pre-tailwind.7) (2021-10-22) - ### Bug Fixes -* makes listing programs optional ([fbe7134](https://github.com/bloom-housing/bloom/commit/fbe7134348e59e3fdb86663cfdca7648655e7b4b)) - - - - +- makes listing programs optional ([fbe7134](https://github.com/bloom-housing/bloom/commit/fbe7134348e59e3fdb86663cfdca7648655e7b4b)) # [2.0.0-pre-tailwind.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.5...@bloom-housing/backend-core@2.0.0-pre-tailwind.6) (2021-10-22) - ### Features -* **backend:** add Program entity ([#1968](https://github.com/bloom-housing/bloom/issues/1968)) ([492ec4d](https://github.com/bloom-housing/bloom/commit/492ec4d333cf9b73af772a1aceed29813f405ba0)), closes [#2034](https://github.com/bloom-housing/bloom/issues/2034) - - - - +- **backend:** add Program entity ([#1968](https://github.com/bloom-housing/bloom/issues/1968)) ([492ec4d](https://github.com/bloom-housing/bloom/commit/492ec4d333cf9b73af772a1aceed29813f405ba0)), closes [#2034](https://github.com/bloom-housing/bloom/issues/2034) # [2.0.0-pre-tailwind.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.4...@bloom-housing/backend-core@2.0.0-pre-tailwind.5) (2021-10-22) **Note:** Version bump only for package @bloom-housing/backend-core - - - - # [2.0.0-pre-tailwind.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.3...@bloom-housing/backend-core@2.0.0-pre-tailwind.4) (2021-10-22) **Note:** Version bump only for package @bloom-housing/backend-core - - - - # [2.0.0-pre-tailwind.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.2...@bloom-housing/backend-core@2.0.0-pre-tailwind.3) (2021-10-21) **Note:** Version bump only for package @bloom-housing/backend-core - - - - # [2.0.0-pre-tailwind.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.1...@bloom-housing/backend-core@2.0.0-pre-tailwind.2) (2021-10-21) - ### Bug Fixes -* **backend:** enforces lower casing of emails ([#1972](https://github.com/bloom-housing/bloom/issues/1972)) ([2608e82](https://github.com/bloom-housing/bloom/commit/2608e8228830a2fc7e6b522c73cb587adbb5803b)) -* migration fix ([#2043](https://github.com/bloom-housing/bloom/issues/2043)) ([ffa4d45](https://github.com/bloom-housing/bloom/commit/ffa4d45e0f53ce071fc4dcf8079c06cf5e836ed3)) - +- **backend:** enforces lower casing of emails ([#1972](https://github.com/bloom-housing/bloom/issues/1972)) ([2608e82](https://github.com/bloom-housing/bloom/commit/2608e8228830a2fc7e6b522c73cb587adbb5803b)) +- migration fix ([#2043](https://github.com/bloom-housing/bloom/issues/2043)) ([ffa4d45](https://github.com/bloom-housing/bloom/commit/ffa4d45e0f53ce071fc4dcf8079c06cf5e836ed3)) ### Features -* adds jurisdiction filtering to listings ([#2027](https://github.com/bloom-housing/bloom/issues/2027)) ([219696b](https://github.com/bloom-housing/bloom/commit/219696ba784cfc079dd5aec74b24c3a8479160b6)) -* **backend:** add languages (Language[]) to Jurisdiction entity ([#1998](https://github.com/bloom-housing/bloom/issues/1998)) ([9ceed24](https://github.com/bloom-housing/bloom/commit/9ceed24d48b14888e6ea59b421b409f875d12b01)) -* **backend:** Add user delete endpoint and expose leasingAgentInList… ([#1996](https://github.com/bloom-housing/bloom/issues/1996)) ([a13f735](https://github.com/bloom-housing/bloom/commit/a13f73574b470beff2f8948abb226a6786856480)) -* **backend:** make use of new application confirmation codes ([#2014](https://github.com/bloom-housing/bloom/issues/2014)) ([3c45c29](https://github.com/bloom-housing/bloom/commit/3c45c2904818200eed4568931d4cc352fd2f449e)) -* **backend:** try fixing SETEX redis e2e tests flakiness ([#2044](https://github.com/bloom-housing/bloom/issues/2044)) ([4087c53](https://github.com/bloom-housing/bloom/commit/4087c532ddba672a415a048f4362e509aba7fd7f)) - - - - +- adds jurisdiction filtering to listings ([#2027](https://github.com/bloom-housing/bloom/issues/2027)) ([219696b](https://github.com/bloom-housing/bloom/commit/219696ba784cfc079dd5aec74b24c3a8479160b6)) +- **backend:** add languages (Language[]) to Jurisdiction entity ([#1998](https://github.com/bloom-housing/bloom/issues/1998)) ([9ceed24](https://github.com/bloom-housing/bloom/commit/9ceed24d48b14888e6ea59b421b409f875d12b01)) +- **backend:** Add user delete endpoint and expose leasingAgentInList… ([#1996](https://github.com/bloom-housing/bloom/issues/1996)) ([a13f735](https://github.com/bloom-housing/bloom/commit/a13f73574b470beff2f8948abb226a6786856480)) +- **backend:** make use of new application confirmation codes ([#2014](https://github.com/bloom-housing/bloom/issues/2014)) ([3c45c29](https://github.com/bloom-housing/bloom/commit/3c45c2904818200eed4568931d4cc352fd2f449e)) +- **backend:** try fixing SETEX redis e2e tests flakiness ([#2044](https://github.com/bloom-housing/bloom/issues/2044)) ([4087c53](https://github.com/bloom-housing/bloom/commit/4087c532ddba672a415a048f4362e509aba7fd7f)) # [2.0.0-pre-tailwind.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/backend-core@2.0.0-pre-tailwind.0...@bloom-housing/backend-core@2.0.0-pre-tailwind.1) (2021-10-19) diff --git a/backend/core/package.json b/backend/core/package.json index 184c70b1e0..75494da93e 100644 --- a/backend/core/package.json +++ b/backend/core/package.json @@ -102,6 +102,7 @@ "@types/axios": "^0.14.0", "@types/cookie-parser": "1.4.3", "@types/cron": "^1.7.3", + "@types/cookie-parser": "1.4.3", "@types/express": "^4.17.8", "@types/node": "^12.12.67", "@types/passport-jwt": "^3.0.3", diff --git a/backend/core/scripts/ami-chart-import-files/SMC-HUD-2023.ts b/backend/core/scripts/ami-chart-import-files/SMC-HUD-2023.ts new file mode 100644 index 0000000000..00734319a0 --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/SMC-HUD-2023.ts @@ -0,0 +1,248 @@ +import { AmiChartCreateDto } from "../../src/ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" +// THIS FILE WAS AUTOMATICALLY GENERATED FROM SMC-HUD-2023.txt. +export const ami: Omit = { + name: "San Mateo County HUD 2023", + items: [ + { + percentOfAmi: 15, + householdSize: 1, + income: 18400, + }, + { + percentOfAmi: 15, + householdSize: 2, + income: 21000, + }, + { + percentOfAmi: 15, + householdSize: 3, + income: 23650, + }, + { + percentOfAmi: 15, + householdSize: 4, + income: 26250, + }, + { + percentOfAmi: 15, + householdSize: 5, + income: 28350, + }, + { + percentOfAmi: 15, + householdSize: 6, + income: 30450, + }, + { + percentOfAmi: 15, + householdSize: 7, + income: 32550, + }, + { + percentOfAmi: 15, + householdSize: 8, + income: 34650, + }, + { + percentOfAmi: 30, + householdSize: 1, + income: 39150, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 44750, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 50350, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 55900, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 60400, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 64850, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 69350, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 73800, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 65250, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 74600, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 83900, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 93200, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 100700, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 108150, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 115600, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 123050, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 104400, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 119300, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 134200, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 149100, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 161050, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 173000, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 184900, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 196850, + }, + { + percentOfAmi: 100, + householdSize: 1, + income: 122500, + }, + { + percentOfAmi: 100, + householdSize: 2, + income: 140000, + }, + { + percentOfAmi: 100, + householdSize: 3, + income: 157500, + }, + { + percentOfAmi: 100, + householdSize: 4, + income: 175000, + }, + { + percentOfAmi: 100, + householdSize: 5, + income: 189000, + }, + { + percentOfAmi: 100, + householdSize: 6, + income: 203000, + }, + { + percentOfAmi: 100, + householdSize: 7, + income: 217000, + }, + { + percentOfAmi: 100, + householdSize: 8, + income: 231000, + }, + { + percentOfAmi: 120, + householdSize: 1, + income: 147000, + }, + { + percentOfAmi: 120, + householdSize: 2, + income: 168000, + }, + { + percentOfAmi: 120, + householdSize: 3, + income: 189000, + }, + { + percentOfAmi: 120, + householdSize: 4, + income: 210000, + }, + { + percentOfAmi: 120, + householdSize: 5, + income: 226800, + }, + { + percentOfAmi: 120, + householdSize: 6, + income: 243600, + }, + { + percentOfAmi: 120, + householdSize: 7, + income: 260400, + }, + { + percentOfAmi: 120, + householdSize: 8, + income: 277200, + }, + ], +} diff --git a/backend/core/scripts/ami-chart-import-files/SMC-HUD-2023.txt b/backend/core/scripts/ami-chart-import-files/SMC-HUD-2023.txt new file mode 100644 index 0000000000..c28ad6e1d6 --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/SMC-HUD-2023.txt @@ -0,0 +1,6 @@ +15 18400 21000 23650 26250 28350 30450 32550 34650 +30 39150 44750 50350 55900 60400 64850 69350 73800 +50 65250 74600 83900 93200 100700 108150 115600 123050 +80 104400 119300 134200 149100 161050 173000 184900 196850 +100 122500 140000 157500 175000 189000 203000 217000 231000 +120 147000 168000 189000 210000 226800 243600 260400 277200 diff --git a/backend/core/scripts/ami-chart-import-files/SMC-TCAC-2023.ts b/backend/core/scripts/ami-chart-import-files/SMC-TCAC-2023.ts new file mode 100644 index 0000000000..8335d168dd --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/SMC-TCAC-2023.ts @@ -0,0 +1,448 @@ +import { AmiChartCreateDto } from "../../src/ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" +// THIS FILE WAS AUTOMATICALLY GENERATED FROM SMC-TCAC-2023.txt. +export const ami: Omit = { + name: "San Mateo County TCAC 2023", + items: [ + { + percentOfAmi: 100, + householdSize: 1, + income: 130100, + }, + { + percentOfAmi: 100, + householdSize: 2, + income: 148700, + }, + { + percentOfAmi: 100, + householdSize: 3, + income: 167300, + }, + { + percentOfAmi: 100, + householdSize: 4, + income: 185800, + }, + { + percentOfAmi: 100, + householdSize: 5, + income: 200700, + }, + { + percentOfAmi: 100, + householdSize: 6, + income: 215600, + }, + { + percentOfAmi: 100, + householdSize: 7, + income: 230400, + }, + { + percentOfAmi: 100, + householdSize: 8, + income: 245300, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 104080, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 118960, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 133840, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 148640, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 160560, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 172480, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 184320, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 196240, + }, + { + percentOfAmi: 70, + householdSize: 1, + income: 91070, + }, + { + percentOfAmi: 70, + householdSize: 2, + income: 104090, + }, + { + percentOfAmi: 70, + householdSize: 3, + income: 117110, + }, + { + percentOfAmi: 70, + householdSize: 4, + income: 130060, + }, + { + percentOfAmi: 70, + householdSize: 5, + income: 140490, + }, + { + percentOfAmi: 70, + householdSize: 6, + income: 150920, + }, + { + percentOfAmi: 70, + householdSize: 7, + income: 161280, + }, + { + percentOfAmi: 70, + householdSize: 8, + income: 171710, + }, + { + percentOfAmi: 60, + householdSize: 1, + income: 78060, + }, + { + percentOfAmi: 60, + householdSize: 2, + income: 89220, + }, + { + percentOfAmi: 60, + householdSize: 3, + income: 100380, + }, + { + percentOfAmi: 60, + householdSize: 4, + income: 111480, + }, + { + percentOfAmi: 60, + householdSize: 5, + income: 120420, + }, + { + percentOfAmi: 60, + householdSize: 6, + income: 129360, + }, + { + percentOfAmi: 60, + householdSize: 7, + income: 138240, + }, + { + percentOfAmi: 60, + householdSize: 8, + income: 147180, + }, + { + percentOfAmi: 55, + householdSize: 1, + income: 71555, + }, + { + percentOfAmi: 55, + householdSize: 2, + income: 81785, + }, + { + percentOfAmi: 55, + householdSize: 3, + income: 92015, + }, + { + percentOfAmi: 55, + householdSize: 4, + income: 102190, + }, + { + percentOfAmi: 55, + householdSize: 5, + income: 110385, + }, + { + percentOfAmi: 55, + householdSize: 6, + income: 118580, + }, + { + percentOfAmi: 55, + householdSize: 7, + income: 126720, + }, + { + percentOfAmi: 55, + householdSize: 8, + income: 134915, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 65050, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 74350, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 83650, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 92900, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 100350, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 107800, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 115200, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 122650, + }, + { + percentOfAmi: 45, + householdSize: 1, + income: 58545, + }, + { + percentOfAmi: 45, + householdSize: 2, + income: 66915, + }, + { + percentOfAmi: 45, + householdSize: 3, + income: 75285, + }, + { + percentOfAmi: 45, + householdSize: 4, + income: 83610, + }, + { + percentOfAmi: 45, + householdSize: 5, + income: 90315, + }, + { + percentOfAmi: 45, + householdSize: 6, + income: 97020, + }, + { + percentOfAmi: 45, + householdSize: 7, + income: 103680, + }, + { + percentOfAmi: 45, + householdSize: 8, + income: 110385, + }, + { + percentOfAmi: 40, + householdSize: 1, + income: 52040, + }, + { + percentOfAmi: 40, + householdSize: 2, + income: 59480, + }, + { + percentOfAmi: 40, + householdSize: 3, + income: 66920, + }, + { + percentOfAmi: 40, + householdSize: 4, + income: 74320, + }, + { + percentOfAmi: 40, + householdSize: 5, + income: 80280, + }, + { + percentOfAmi: 40, + householdSize: 6, + income: 86240, + }, + { + percentOfAmi: 40, + householdSize: 7, + income: 92160, + }, + { + percentOfAmi: 40, + householdSize: 8, + income: 98120, + }, + { + percentOfAmi: 35, + householdSize: 1, + income: 45535, + }, + { + percentOfAmi: 35, + householdSize: 2, + income: 52045, + }, + { + percentOfAmi: 35, + householdSize: 3, + income: 58555, + }, + { + percentOfAmi: 35, + householdSize: 4, + income: 65030, + }, + { + percentOfAmi: 35, + householdSize: 5, + income: 70245, + }, + { + percentOfAmi: 35, + householdSize: 6, + income: 75460, + }, + { + percentOfAmi: 35, + householdSize: 7, + income: 80640, + }, + { + percentOfAmi: 35, + householdSize: 8, + income: 85855, + }, + { + percentOfAmi: 30, + householdSize: 1, + income: 39030, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 44610, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 50190, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 55740, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 60210, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 64680, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 69120, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 73590, + }, + { + percentOfAmi: 20, + householdSize: 1, + income: 26020, + }, + { + percentOfAmi: 20, + householdSize: 2, + income: 29740, + }, + { + percentOfAmi: 20, + householdSize: 3, + income: 33460, + }, + { + percentOfAmi: 20, + householdSize: 4, + income: 37160, + }, + { + percentOfAmi: 20, + householdSize: 5, + income: 40140, + }, + { + percentOfAmi: 20, + householdSize: 6, + income: 43120, + }, + { + percentOfAmi: 20, + householdSize: 7, + income: 46080, + }, + { + percentOfAmi: 20, + householdSize: 8, + income: 49060, + }, + ], +} diff --git a/backend/core/scripts/ami-chart-import-files/SMC-TCAC-2023.txt b/backend/core/scripts/ami-chart-import-files/SMC-TCAC-2023.txt new file mode 100644 index 0000000000..3e058e94d2 --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/SMC-TCAC-2023.txt @@ -0,0 +1,11 @@ +100 130100 148700 167300 185800 200700 215600 230400 245300 +80 104080 118960 133840 148640 160560 172480 184320 196240 +70 91070 104090 117110 130060 140490 150920 161280 171710 +60 78060 89220 100380 111480 120420 129360 138240 147180 +55 71555 81785 92015 102190 110385 118580 126720 134915 +50 65050 74350 83650 92900 100350 107800 115200 122650 +45 58545 66915 75285 83610 90315 97020 103680 110385 +40 52040 59480 66920 74320 80280 86240 92160 98120 +35 45535 52045 58555 65030 70245 75460 80640 85855 +30 39030 44610 50190 55740 60210 64680 69120 73590 +20 26020 29740 33460 37160 40140 43120 46080 49060 29740 33460 37160 40140 43120 46080 49060 diff --git a/backend/core/scripts/ami-chart-import-files/emeryville-2023.ts b/backend/core/scripts/ami-chart-import-files/emeryville-2023.ts new file mode 100644 index 0000000000..649b31a70f --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/emeryville-2023.ts @@ -0,0 +1,83 @@ +import { AmiChartCreateDto } from "../../src/ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" +// THIS FILE WAS AUTOMATICALLY GENERATED FROM emeryville-2023.txt. +export const ami: Omit = { + name: "Emeryville 2023", + items: [ + { + percentOfAmi: 32, + householdSize: 1, + income: 33152, + }, + { + percentOfAmi: 32, + householdSize: 2, + income: 37888, + }, + { + percentOfAmi: 32, + householdSize: 3, + income: 42624, + }, + { + percentOfAmi: 32, + householdSize: 4, + income: 47328, + }, + { + percentOfAmi: 32, + householdSize: 5, + income: 51136, + }, + { + percentOfAmi: 37, + householdSize: 1, + income: 38332, + }, + { + percentOfAmi: 37, + householdSize: 2, + income: 43808, + }, + { + percentOfAmi: 37, + householdSize: 3, + income: 49284, + }, + { + percentOfAmi: 37, + householdSize: 4, + income: 54723, + }, + { + percentOfAmi: 37, + householdSize: 5, + income: 59126, + }, + { + percentOfAmi: 42, + householdSize: 1, + income: 43512, + }, + { + percentOfAmi: 42, + householdSize: 2, + income: 49728, + }, + { + percentOfAmi: 42, + householdSize: 3, + income: 55944, + }, + { + percentOfAmi: 42, + householdSize: 4, + income: 62118, + }, + { + percentOfAmi: 42, + householdSize: 5, + income: 67166, + }, + ], +} diff --git a/backend/core/scripts/ami-chart-import-files/emeryville-2023.txt b/backend/core/scripts/ami-chart-import-files/emeryville-2023.txt new file mode 100644 index 0000000000..77a5c0991c --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/emeryville-2023.txt @@ -0,0 +1,3 @@ +32 33152 37888 42624 47328 51136 +37 38332 43808 49284 54723 59126 +42 43512 49728 55944 62118 67166 diff --git a/backend/core/scripts/ami-chart-import-files/oakland-2023.ts b/backend/core/scripts/ami-chart-import-files/oakland-2023.ts new file mode 100644 index 0000000000..157032caa6 --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/oakland-2023.ts @@ -0,0 +1,488 @@ +import { AmiChartCreateDto } from "../../src/ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" +// THIS FILE WAS AUTOMATICALLY GENERATED FROM oakland-2023.txt. +export const ami: Omit = { + name: "Oakland 2023", + items: [ + { + percentOfAmi: 20, + householdSize: 1, + income: 20700, + }, + { + percentOfAmi: 20, + householdSize: 2, + income: 23666, + }, + { + percentOfAmi: 20, + householdSize: 3, + income: 26633, + }, + { + percentOfAmi: 20, + householdSize: 4, + income: 29566, + }, + { + percentOfAmi: 20, + householdSize: 5, + income: 31933, + }, + { + percentOfAmi: 20, + householdSize: 6, + income: 34300, + }, + { + percentOfAmi: 20, + householdSize: 7, + income: 36666, + }, + { + percentOfAmi: 20, + householdSize: 8, + income: 39033, + }, + { + percentOfAmi: 25, + householdSize: 1, + income: 25875, + }, + { + percentOfAmi: 25, + householdSize: 2, + income: 29583, + }, + { + percentOfAmi: 25, + householdSize: 3, + income: 33291, + }, + { + percentOfAmi: 25, + householdSize: 4, + income: 36958, + }, + { + percentOfAmi: 25, + householdSize: 5, + income: 39916, + }, + { + percentOfAmi: 25, + householdSize: 6, + income: 42875, + }, + { + percentOfAmi: 25, + householdSize: 7, + income: 45833, + }, + { + percentOfAmi: 25, + householdSize: 8, + income: 48791, + }, + { + percentOfAmi: 30, + householdSize: 1, + income: 31050, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 35500, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 39950, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 44350, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 47900, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 51450, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 55000, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 58550, + }, + { + percentOfAmi: 35, + householdSize: 1, + income: 36260, + }, + { + percentOfAmi: 35, + householdSize: 2, + income: 41440, + }, + { + percentOfAmi: 35, + householdSize: 3, + income: 46620, + }, + { + percentOfAmi: 35, + householdSize: 4, + income: 51765, + }, + { + percentOfAmi: 35, + householdSize: 5, + income: 55930, + }, + { + percentOfAmi: 35, + householdSize: 6, + income: 60060, + }, + { + percentOfAmi: 35, + householdSize: 7, + income: 64190, + }, + { + percentOfAmi: 35, + householdSize: 8, + income: 68355, + }, + { + percentOfAmi: 40, + householdSize: 1, + income: 41440, + }, + { + percentOfAmi: 40, + householdSize: 2, + income: 47360, + }, + { + percentOfAmi: 40, + householdSize: 3, + income: 53280, + }, + { + percentOfAmi: 40, + householdSize: 4, + income: 59160, + }, + { + percentOfAmi: 40, + householdSize: 5, + income: 63920, + }, + { + percentOfAmi: 40, + householdSize: 6, + income: 68640, + }, + { + percentOfAmi: 40, + householdSize: 7, + income: 73360, + }, + { + percentOfAmi: 40, + householdSize: 8, + income: 78120, + }, + { + percentOfAmi: 45, + householdSize: 1, + income: 46620, + }, + { + percentOfAmi: 45, + householdSize: 2, + income: 53280, + }, + { + percentOfAmi: 45, + householdSize: 3, + income: 59940, + }, + { + percentOfAmi: 45, + householdSize: 4, + income: 66555, + }, + { + percentOfAmi: 45, + householdSize: 5, + income: 71910, + }, + { + percentOfAmi: 45, + householdSize: 6, + income: 77220, + }, + { + percentOfAmi: 45, + householdSize: 7, + income: 82530, + }, + { + percentOfAmi: 45, + householdSize: 8, + income: 87885, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 51800, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 59200, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 66600, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 73950, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 79900, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 85800, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 91700, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 97650, + }, + { + percentOfAmi: 55, + householdSize: 1, + income: 54003, + }, + { + percentOfAmi: 55, + householdSize: 2, + income: 61703, + }, + { + percentOfAmi: 55, + householdSize: 3, + income: 69403, + }, + { + percentOfAmi: 55, + householdSize: 4, + income: 77103, + }, + { + percentOfAmi: 55, + householdSize: 5, + income: 83290, + }, + { + percentOfAmi: 55, + householdSize: 6, + income: 89443, + }, + { + percentOfAmi: 55, + householdSize: 7, + income: 95631, + }, + { + percentOfAmi: 55, + householdSize: 8, + income: 101784, + }, + { + percentOfAmi: 60, + householdSize: 1, + income: 58912, + }, + { + percentOfAmi: 60, + householdSize: 2, + income: 67312, + }, + { + percentOfAmi: 60, + householdSize: 3, + income: 75712, + }, + { + percentOfAmi: 60, + householdSize: 4, + income: 84112, + }, + { + percentOfAmi: 60, + householdSize: 5, + income: 90863, + }, + { + percentOfAmi: 60, + householdSize: 6, + income: 97575, + }, + { + percentOfAmi: 60, + householdSize: 7, + income: 104325, + }, + { + percentOfAmi: 60, + householdSize: 8, + income: 111038, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 78550, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 89750, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 100950, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 112150, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 121150, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 130100, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 139100, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 148050, + }, + { + percentOfAmi: 100, + householdSize: 1, + income: 103550, + }, + { + percentOfAmi: 100, + householdSize: 2, + income: 118300, + }, + { + percentOfAmi: 100, + householdSize: 3, + income: 133100, + }, + { + percentOfAmi: 100, + householdSize: 4, + income: 147900, + }, + { + percentOfAmi: 100, + householdSize: 5, + income: 159750, + }, + { + percentOfAmi: 100, + householdSize: 6, + income: 171550, + }, + { + percentOfAmi: 100, + householdSize: 7, + income: 183400, + }, + { + percentOfAmi: 100, + householdSize: 8, + income: 195250, + }, + { + percentOfAmi: 120, + householdSize: 1, + income: 124250, + }, + { + percentOfAmi: 120, + householdSize: 2, + income: 142000, + }, + { + percentOfAmi: 120, + householdSize: 3, + income: 159750, + }, + { + percentOfAmi: 120, + householdSize: 4, + income: 177500, + }, + { + percentOfAmi: 120, + householdSize: 5, + income: 191700, + }, + { + percentOfAmi: 120, + householdSize: 6, + income: 205900, + }, + { + percentOfAmi: 120, + householdSize: 7, + income: 220100, + }, + { + percentOfAmi: 120, + householdSize: 8, + income: 234300, + }, + ], +} diff --git a/backend/core/scripts/ami-chart-import-files/oakland-2023.txt b/backend/core/scripts/ami-chart-import-files/oakland-2023.txt new file mode 100644 index 0000000000..ba65bf1ec0 --- /dev/null +++ b/backend/core/scripts/ami-chart-import-files/oakland-2023.txt @@ -0,0 +1,12 @@ +20 20700 23666 26633 29566 31933 34300 36666 39033 +25 25875 29583 33291 36958 39916 42875 45833 48791 +30 31050 35500 39950 44350 47900 51450 55000 58550 +35 36260 41440 46620 51765 55930 60060 64190 68355 +40 41440 47360 53280 59160 63920 68640 73360 78120 +45 46620 53280 59940 66555 71910 77220 82530 87885 +50 51800 59200 66600 73950 79900 85800 91700 97650 +55 54003 61703 69403 77103 83290 89443 95631 101784 +60 58912 67312 75712 84112 90863 97575 104325 111038 +80 78550 89750 100950 112150 121150 130100 139100 148050 +100 103550 118300 133100 147900 159750 171550 183400 195250 +120 124250 142000 159750 177500 191700 205900 220100 234300 diff --git a/backend/core/scripts/ami-chart-import.sh b/backend/core/scripts/ami-chart-import.sh new file mode 100644 index 0000000000..77644a8989 --- /dev/null +++ b/backend/core/scripts/ami-chart-import.sh @@ -0,0 +1,59 @@ +#!/bin/bash + +if [ -z "$1" ]; then + cat << EOF +Usage: ami-chart-import path/to/FILE +WARNING: overwrites the file path/to/FILE.ts +This script takes a formatted text file and writes a .ts file containing the JSON representation +of the AMI chart data. It is expecting 9 columns, the first one being the AMI percentage and then +8 columns representing the income for a household with 1..8 people corresponding to that AMI. Ex: +20% 10,000 11,000 12,000 13,000 14,000 15,000 16,000 17,000 +30% 15,000 16,000 17,000 18,000 19,000 20,000 21,000 22,000 +This format is based on the PDF format for published MSHDA charts. Output note: there must be a newline +at the end of the file or the last row will not be read in. +Once you have the generated ts file, you can create a migration that uses that ts file to create the new ami chart +EOF + exit +fi + +# Get the file name and the path separately. +DIRECTORY=$(dirname "$1") +FILE=$(basename "$1") +FILENAME=${FILE%.*} +OUTPUT_FILE="$DIRECTORY/$FILENAME.ts" + + +echo "Generating $OUTPUT_FILE" + +cat << EOF > $OUTPUT_FILE +import { AmiChartCreateDto } from "../../src/ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" +// THIS FILE WAS AUTOMATICALLY GENERATED FROM $FILE. +export const ami: Omit = { + "name": "$FILENAME", + "jurisdiction_id": "> $OUTPUT_FILE + { + "percentOfAmi": $AMI, + "householdSize": $i, + "income": ${INCOME[$i]}, + }, +EOF + done + done + +# Finish the JSON +cat << EOF >> $OUTPUT_FILE + ], +} +EOF \ No newline at end of file diff --git a/backend/core/src/app.module.ts b/backend/core/src/app.module.ts index 397560fa2c..0d8a758e6c 100644 --- a/backend/core/src/app.module.ts +++ b/backend/core/src/app.module.ts @@ -78,12 +78,12 @@ export class AppModule { return { module: AppModule, imports: [ + AuthModule, AmiChartsModule, ApplicationFlaggedSetsModule, ApplicationMethodsModule, ApplicationsModule, AssetsModule, - AuthModule, JurisdictionsModule, ListingsModule, PaperApplicationsModule, diff --git a/backend/core/src/applications/applications.controller.ts b/backend/core/src/applications/applications.controller.ts index bbf93d74e4..64f8e67464 100644 --- a/backend/core/src/applications/applications.controller.ts +++ b/backend/core/src/applications/applications.controller.ts @@ -24,7 +24,10 @@ import { applicationMultiselectQuestionApiExtraModels } from "./types/applicatio import { ApplicationsService } from "./services/applications.service" import { ActivityLogInterceptor } from "../activity-log/interceptors/activity-log.interceptor" import { PaginatedApplicationListQueryParams } from "./dto/paginated-application-list-query-params" -import { ApplicationsCsvListQueryParams } from "./dto/applications-csv-list-query-params" +import { + ApplicationsCsvListQueryParams, + RawApplicationsListQueryParams, +} from "./dto/applications-csv-list-query-params" import { ApplicationsApiExtraModel } from "./types/applications-api-extra-model" import { PaginatedApplicationDto } from "./dto/paginated-application.dto" import { ApplicationCreateDto } from "./dto/application-create.dto" @@ -65,6 +68,16 @@ export class ApplicationsController { return this.applicationsService.sendExport(queryParams) } + @Get(`rawApplicationsList`) + @ApiOperation({ summary: "Raw list of applications", operationId: "rawApplicationsList" }) + async rawApplicationsList( + @Query(new ValidationPipe(defaultValidationPipeOptions)) + queryParams: RawApplicationsListQueryParams + ): Promise { + queryParams.includeDemographics = true + return await this.applicationsService.rawListWithFlagged(queryParams) + } + @Post() @ApiOperation({ summary: "Create application", operationId: "create" }) async create(@Body() applicationCreateDto: ApplicationCreateDto): Promise { diff --git a/backend/core/src/applications/applications.module.ts b/backend/core/src/applications/applications.module.ts index 570b0b5036..310c485af0 100644 --- a/backend/core/src/applications/applications.module.ts +++ b/backend/core/src/applications/applications.module.ts @@ -1,4 +1,4 @@ -import { Module } from "@nestjs/common" +import { forwardRef, Module } from "@nestjs/common" import { TypeOrmModule } from "@nestjs/typeorm" import { Application } from "./entities/application.entity" import { ApplicationsController } from "./applications.controller" diff --git a/backend/core/src/applications/dto/applications-csv-list-query-params.ts b/backend/core/src/applications/dto/applications-csv-list-query-params.ts index 6a5ce099c9..252a61c50b 100644 --- a/backend/core/src/applications/dto/applications-csv-list-query-params.ts +++ b/backend/core/src/applications/dto/applications-csv-list-query-params.ts @@ -40,3 +40,13 @@ export class ApplicationsCsvListQueryParams extends OmitType(PaginatedApplicatio ) includeDemographics?: boolean } + +export class RawApplicationsListQueryParams extends OmitType(ApplicationsCsvListQueryParams, [ + "search", + "userId", + "orderBy", + "order", + "markedAsDuplicate", + "page", + "limit", +]) {} diff --git a/backend/core/src/applications/services/applications.service.ts b/backend/core/src/applications/services/applications.service.ts index 2f8c967a1a..68575bbccf 100644 --- a/backend/core/src/applications/services/applications.service.ts +++ b/backend/core/src/applications/services/applications.service.ts @@ -147,7 +147,9 @@ export class ApplicationsService { listing.applicationDueDate && applicationCreateDto.submissionDate > listing.applicationDueDate ) { - throw new BadRequestException("Listing is not open for application submission.") + throw new BadRequestException( + `Listing ${applicationCreateDto?.listing?.id} is not open for application submission.` + ) } await this.authorizeUserAction( diff --git a/backend/core/src/listings/listings.controller.ts b/backend/core/src/listings/listings.controller.ts index 7ff7a43443..95d5ad40b5 100644 --- a/backend/core/src/listings/listings.controller.ts +++ b/backend/core/src/listings/listings.controller.ts @@ -91,6 +91,29 @@ export class ListingsController { return { listingCsv, unitCsv } } + @Get(`external/:id`) + @ApiOperation({ + summary: "Get listing for external consumption by id", + operationId: "externalRetrieve", + }) + @UseInterceptors(ClassSerializerInterceptor) + @UsePipes(new ValidationPipe(defaultValidationPipeOptions)) + async retrieveForExternalConsumption( + @Headers("language") language: Language, + @Param("id", new ParseUUIDPipe({ version: "4" })) listingId: string, + @Query() queryParams: ListingsRetrieveQueryParams + ) { + if (listingId === undefined || listingId === "undefined") { + return mapTo(ListingDto, {}) + } + const listing = mapTo( + ListingDto, + await this.listingsService.findOne(listingId, language, queryParams.view) + ) + + return JSON.stringify(listing) + } + @Get(`:id`) @ApiOperation({ summary: "Get listing by id", operationId: "retrieve" }) @UseInterceptors(ClassSerializerInterceptor) diff --git a/backend/core/src/listings/listings.service.ts b/backend/core/src/listings/listings.service.ts index e1e556c68a..fb4e7797c3 100644 --- a/backend/core/src/listings/listings.service.ts +++ b/backend/core/src/listings/listings.service.ts @@ -24,6 +24,7 @@ import { EmailService } from "../email/email.service" import { JurisdictionsService } from "../jurisdictions/services/jurisdictions.service" import { ConfigService } from "@nestjs/config" import { UserRoleEnum } from "../../src/auth/enum/user-role-enum" +import { Jurisdiction } from "../jurisdictions/entities/jurisdiction.entity" @Injectable({ scope: Scope.REQUEST }) export class ListingsService { @@ -101,14 +102,38 @@ export class ListingsService { } } + getCountyName = (jurisdiction: Jurisdiction) => { + switch (jurisdiction.name) { + case "Alameda": + return "Alameda" + case "San Jose": + return "Santa Clara" + case "San Mateo": + return "San Mateo" + default: + return null + } + } + async create(listingDto: ListingCreateDto, user: User) { // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion await this.authzService.canOrThrow(this.req.user as User, "listing", authzActions.create, { jurisdictionId: listingDto.jurisdiction.id, }) + // Add the county to the listing. This is required for Doorway so that the county can be displayed + // on the listing details page. Only needed while Doorway is pulling listings from HBA + let buildingAddress = listingDto.buildingAddress + if (buildingAddress) { + const jurisdiction = await this.jurisdictionsService.findOne({ + where: { id: listingDto.jurisdiction.id }, + }) + buildingAddress = { ...buildingAddress, county: this.getCountyName(jurisdiction) } + } + const listing = this.listingRepository.create({ ...listingDto, + buildingAddress: buildingAddress, publishedAt: listingDto.status === ListingStatus.active ? new Date() : null, closedAt: listingDto.status === ListingStatus.closed ? new Date() : null, }) @@ -156,7 +181,8 @@ export class ListingsService { listingDto.unitsAvailable = availableUnits if (listing.status == ListingStatus.active && listingDto.status === ListingStatus.closed) { - await this.afsService.scheduleAfsProcessing() + // Commenting out for now as this is causing issues in closing listings + // await this.afsService.scheduleAfsProcessing() } if (listingDto.buildingSelectionCriteria) { @@ -171,10 +197,21 @@ export class ListingsService { listing.buildingSelectionCriteria = null } + // Add the county to the listing. This is required for Doorway so that the county can be displayed + // on the listing details page. Only needed while Doorway is pulling listings from HBA + let buildingAddress = listingDto.buildingAddress + if (buildingAddress) { + const jurisdiction = await this.jurisdictionsService.findOne({ + where: { id: listingDto.jurisdiction.id }, + }) + buildingAddress = { ...buildingAddress, county: this.getCountyName(jurisdiction) } + } + const previousStatus = listing.status const newStatus = listingDto.status Object.assign(listing, { ...listingDto, + buildingAddress: buildingAddress, publishedAt: listing.status !== ListingStatus.active && listingDto.status === ListingStatus.active ? new Date() diff --git a/backend/core/src/listings/tests/listings.service.spec.ts b/backend/core/src/listings/tests/listings.service.spec.ts index c9088697e2..704d3d43a8 100644 --- a/backend/core/src/listings/tests/listings.service.spec.ts +++ b/backend/core/src/listings/tests/listings.service.spec.ts @@ -186,6 +186,12 @@ describe("ListingsService", () => { getJurisdiction: jest.fn(), }, }, + { + provide: JurisdictionsService, + useValue: { + findOne: jest.fn(), + }, + }, { provide: EmailService, useValue: { diff --git a/backend/core/src/migration/1677173838581-ami-charts-and-translations.ts b/backend/core/src/migration/1677173838581-ami-charts-and-translations.ts new file mode 100644 index 0000000000..1986d90bd0 --- /dev/null +++ b/backend/core/src/migration/1677173838581-ami-charts-and-translations.ts @@ -0,0 +1,509 @@ +import { MigrationInterface, QueryRunner } from "typeorm" +import { alamedaTCAC2022 } from "../seeder/seeds/ami-charts/alameda-tcac-2022" +import { alamedaHUD2022 } from "../seeder/seeds/ami-charts/alameda-hud-2022" +import { sanMateoHUD } from "../seeder/seeds/ami-charts/sanMateoHUD" +import { sanMateoTCAC } from "../seeder/seeds/ami-charts/sanMateoTCAC" +import { sanJoseHcdIncomeLimits2022 } from "../seeder/seeds/ami-charts/san-jose-hcd-income-limits-2022" +import { sanJoseHudHome2022 } from "../seeder/seeds/ami-charts/san-jose-hud-home-2022" + +export class amiChartsAndTranslations1677173838581 implements MigrationInterface { + name = "amiChartsAndTranslations1677173838581" + + public async up(queryRunner: QueryRunner): Promise { + const [{ id: alamedaId }] = await queryRunner.query( + `SELECT id FROM jurisdictions WHERE name = 'Alameda'` + ) + await queryRunner.query( + `INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${alamedaTCAC2022.name}', '${JSON.stringify( + alamedaTCAC2022.items + )}', '${alamedaId}') + ` + ) + + await queryRunner.query( + `INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${alamedaHUD2022.name}', '${JSON.stringify( + alamedaHUD2022.items + )}', '${alamedaId}') + ` + ) + + const [{ id: smcId }] = await queryRunner.query( + `SELECT id FROM jurisdictions WHERE name = 'San Mateo'` + ) + await queryRunner.query( + `ALTER TABLE "jurisdictions" ALTER COLUMN "rental_assistance_default" DROP DEFAULT` + ) + + await queryRunner.query( + `INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${sanMateoHUD.name}', '${JSON.stringify(sanMateoHUD.items)}', '${smcId}') + ` + ) + + await queryRunner.query( + `INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${sanMateoTCAC.name}', '${JSON.stringify( + sanMateoTCAC.items + )}', '${alamedaId}') + ` + ) + + const [{ id: sjId }] = await queryRunner.query( + `SELECT id FROM jurisdictions WHERE name = 'San Jose'` + ) + + await queryRunner.query( + `INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${sanJoseHcdIncomeLimits2022.name}', '${JSON.stringify( + sanJoseHcdIncomeLimits2022.items + )}', '${sjId}') + ` + ) + + await queryRunner.query( + `INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${sanJoseHudHome2022.name}', '${JSON.stringify( + sanJoseHudHome2022.items + )}', '${sjId}') + ` + ) + + // Reset the translations table + await queryRunner.query(`DELETE FROM translations`) + + // English with no jurisdiction + const defaultTranslations = { + t: { hello: "Hello", seeListing: "See Listing" }, + footer: { + line1: + "Alameda County Housing Portal is a project of the Alameda County - Housing and Community Development (HCD) Department", + line2: "", + thankYou: "Thank you", + }, + header: { + logoUrl: + "https://res.cloudinary.com/exygy/image/upload/v1652459319/housingbayarea/163838489-d5a1bc08-7d69-4c4a-8a94-8485617d8b46_dkkqvw.png", + logoTitle: "Alameda County Housing Portal", + }, + invite: { + hello: "Welcome to the Partners Portal", + confirmMyAccount: "Confirm my account", + inviteManageListings: + "You will now be able to manage listings and applications that you are a part of from one centralized location.", + inviteWelcomeMessage: "Welcome to the Partners Portal at %{appUrl}.", + toCompleteAccountCreation: + "To complete your account creation, please click the link below:", + }, + register: { + welcome: "Welcome", + welcomeMessage: + "Thank you for setting up your account on %{appUrl}. It will now be easier for you to start, save, and submit online applications for listings that appear on the site.", + confirmMyAccount: "Confirm my account", + toConfirmAccountMessage: "To complete your account creation, please click the link below:", + }, + changeEmail: { + message: "An email address change has been requested for your account.", + changeMyEmail: "Confirm email change", + onChangeEmailMessage: + "To confirm the change to your email address, please click the link below:", + }, + confirmation: { + subject: "Your Application Confirmation", + eligible: { + fcfs: + "Eligible applicants will be contacted on a first come first serve basis until vacancies are filled.", + lottery: + "Once the application period closes, eligible applicants will be placed in order based on lottery rank order.", + waitlist: + "Eligible applicants will be placed on the waitlist on a first come first serve basis until waitlist spots are filled.", + fcfsPreference: + "Housing preferences, if applicable, will affect first come first serve order.", + waitlistContact: + "You may be contacted while on the waitlist to confirm that you wish to remain on the waitlist.", + lotteryPreference: "Housing preferences, if applicable, will affect lottery rank order.", + waitlistPreference: "Housing preferences, if applicable, will affect waitlist order.", + }, + interview: + "If you are contacted for an interview, you will be asked to fill out a more detailed application and provide supporting documents.", + whatToExpect: { + FCFS: + "Applicants will be contacted by the property agent on a first come first serve basis until vacancies are filled.", + lottery: + "Applicants will be contacted by the agent in lottery rank order until vacancies are filled.", + noLottery: + "Applicants will be contacted by the agent in waitlist order until vacancies are filled.", + }, + whileYouWait: + "While you wait, there are things you can do to prepare for potential next steps and future opportunities.", + shouldBeChosen: + "Should your application be chosen, be prepared to fill out a more detailed application and provide required supporting documents.", + whatHappensNext: "What happens next?", + whatToExpectNext: "What to expect next:", + needToMakeUpdates: "Need to make updates?", + applicationsClosed: "Application
closed", + applicationsRanked: "Application
ranked", + eligibleApplicants: { + FCFS: + "Eligible applicants will be placed in order based on first come first serve basis.", + lottery: + "Eligible applicants will be placed in order based on preference and lottery rank.", + lotteryDate: "The lottery will be held on %{lotteryDate}.", + }, + applicationReceived: "Application
received", + prepareForNextSteps: "Prepare for next steps", + thankYouForApplying: "Thanks for applying. We have received your application for", + readHowYouCanPrepare: "Read about how you can prepare for next steps", + yourConfirmationNumber: "Your Confirmation Number", + applicationPeriodCloses: + "Once the application period closes, the property manager will begin processing applications.", + contactedForAnInterview: + "If you are contacted for an interview, you will need to fill out a more detailed application and provide supporting documents.", + gotYourConfirmationNumber: "We got your application for", + }, + leasingAgent: { + officeHours: "Office Hours:", + propertyManager: "Property Manager", + contactAgentToUpdateInfo: + "If you need to update information on your application, do not apply again. Instead, contact the agent for this listing.", + }, + mfaCodeEmail: { + message: "Access token for your account has been requested.", + mfaCode: "Your access token is: %{mfaCode}", + }, + forgotPassword: { + subject: "Forgot your password?", + callToAction: + "If you did make this request, please click on the link below to reset your password:", + passwordInfo: + "Your password won't change until you access the link above and create a new one.", + resetRequest: + "A request to reset your Bloom Housing Portal website password for %{appUrl} has recently been made.", + ignoreRequest: "If you didn't request this, please ignore this email.", + changePassword: "Change my password", + }, + } + await queryRunner.query(`INSERT INTO translations (language, translations) VALUES ($1, $2)`, [ + "en", + JSON.stringify(defaultTranslations), + ]) + + // Alameda translations + const englishAlameda = { + footer: { + line1: "Alameda County Housing Portal is a project of the", + line2: "Alameda County - Housing and Community Development (HCD) Department", + footer: "Alameda County - Housing and Community Development (HCD) Department", + thankYou: "Thank you", + }, + header: { + logoUrl: + "https://res.cloudinary.com/exygy/image/upload/v1652459319/housingbayarea/163838489-d5a1bc08-7d69-4c4a-8a94-8485617d8b46_dkkqvw.png", + logoTitle: "Alameda County Housing Portal", + }, + changeEmail: { + message: "An email address change has been requested for your account.", + changeMyEmail: "Confirm email change", + onChangeEmailMessage: + "To confirm the change to your email address, please click the link below:", + }, + mfaCodeEmail: { + message: "Access token for your account has been requested.", + mfaCode: "Your access token is: %{mfaCode}", + }, + } + await queryRunner.query( + `INSERT INTO translations (language, translations, jurisdiction_id) VALUES ($1, $2, $3)`, + ["en", JSON.stringify(englishAlameda), alamedaId] + ) + + // San Jose translations + const sanJoseEnglish = { + footer: { + line1: "City of San José Housing Portal is a project of the", + line2: "City of San José - Housing Department", + footer: "City of San José, Housing Department", + thankYou: "Thanks!", + }, + header: { + logoUrl: + "https://res.cloudinary.com/exygy/image/upload/v1652459304/housingbayarea/163838487-7279a41f-4ec5-4da0-818b-4df3351a7971_yjnjh7.png", + logoTitle: "City of San José Housing Portal", + }, + changeEmail: { + message: "An email address change has been requested for your account.", + changeMyEmail: "Confirm email change", + onChangeEmailMessage: + "To confirm the change to your email address, please click the link below:", + }, + confirmation: { + thankYouForApplying: + "Thanks for applying for housing from the San Jose Doorway Portal. We have received your application for", + }, + mfaCodeEmail: { + message: "Access token for your account has been requested.", + mfaCode: "Your access token is: %{mfaCode}", + }, + } + await queryRunner.query( + `INSERT INTO translations (language, translations, jurisdiction_id) VALUES ($1, $2, $3)`, + ["en", JSON.stringify(sanJoseEnglish), sjId] + ) + + const sanJoseVi = { + t: { hello: "Xin chào", seeListing: "XEM DANH SÁCH" }, + footer: { + line1: "Cổng thông tin nhà ở thành phố San Jose là một dự án của", + line2: "Thành Phố San José - Bộ Gia Cư", + footer: "Thành Phố San José, Sở Gia Cư", + thankYou: "Cảm ơn!", + }, + register: { + welcome: "Chào mừng!", + welcomeMessage: + "Cảm ơn bạn đã thiết lập tài khoản của mình trên %{appUrl}. Giờ đây bạn sẽ dễ dàng hơn khi bắt đầu, lưu và gửi đơn đăng ký trực tuyến cho các danh sách có trên trang web.", + confirmMyAccount: "Xác nhận tài khoản của tôi", + toConfirmAccountMessage: + "Để hoàn tất việc tạo tài khoản của bạn, vui lòng nhấp vào liên kết bên dưới:", + }, + confirmation: { + subject: "Xác Nhận Đơn Đăng Ký Của Bạn", + eligible: { + fcfs: + "Những người nộp đơn hội đủ điều kiện sẽ được liên lạc trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.", + lottery: + "Sau khi thời gian nộp đơn kết thúc, những người nộp đơn hội đủ điều kiện sẽ được sắp xếp theo thứ tự dựa trên xếp hạng rút thăm.", + waitlist: + "Những người nộp đơn hội đủ điều kiện sẽ được ghi tên vào danh sách chờ trên cơ sở ai đến trước được phục vụ trước cho đến khi các vị trí trong danh sách chờ được lấp đầy.", + fcfsPreference: + "Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự ai đến trước được phục vụ trước.", + waitlistContact: + "Chúng tôi có thể liên lạc với quý vị khi quý vị đang ở trong danh sách chờ để xác nhận rằng quý vị muốn tiếp tục ở lại trong danh sách chờ.", + lotteryPreference: + "Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự xếp hạng rút thăm.", + waitlistPreference: + "Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự trong danh sách chờ.Housing preferences, if applicable, will affect waitlist order.", + }, + interview: + "Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.", + whatToExpect: { + FCFS: + "Các ứng viên sẽ được đại lý tài sản liên hệ trên cơ sở ai đến trước phục vụ trước cho đến khi các chỗ trống được chiếm ngụ.", + noLottery: + "Các ứng viên sẽ được đại diện liên hệ theo thứ tự trong danh sách chờ cho đến khi các chỗ trống được chiếm ngụ.", + }, + shouldBeChosen: + "Nếu đơn đăng ký của bạn được chọn, hãy chuẩn bị để điền vào đơn đăng ký chi tiết hơn và cung cấp các tài liệu hỗ trợ cần thiết.", + whatHappensNext: "Chuyện gì xảy ra tiếp theo?", + whatToExpectNext: "Điều gì sẽ xảy ra tiếp theo:", + needToMakeUpdates: "Cần thực hiện cập nhật?", + applicationsClosed: "Ứng dụng
đã đóng", + applicationsRanked: "Ứng dụng
được xếp hạng", + applicationReceived: "Ứng dụng
nhận được", + thankYouForApplying: + "Cảm ơn bạn đã nộp đơn xin gia cư từ Cổng thông tin San Jose Doorway. Chúng tôi đã nhận được đơn đăng ký của bạn cho", + yourConfirmationNumber: "Đây là số xác nhận của bạn:", + gotYourConfirmationNumber: "Chúng tôi đã nhận được ứng dụng của bạn cho:", + }, + leasingAgent: { + officeHours: "Giờ hành chính", + propertyManager: "Quản lý tài sản", + contactAgentToUpdateInfo: + "Nếu bạn cần cập nhật thông tin trên đơn đăng ký của mình, thì đừng đăng ký lại. Liên hệ với đại lý. Xem bên dưới để biết thông tin liên hệ với Đại lý cho danh sách này.", + }, + forgotPassword: { + subject: "Forgot your password?", + callToAction: + "Nếu bạn thực hiện yêu cầu này, vui lòng nhấp vào liên kết bên dưới để đặt lại mật khẩu của bạn:", + passwordInfo: + "Mật khẩu của bạn sẽ không thay đổi cho đến khi bạn truy cập vào liên kết ở trên và tạo một mật khẩu mới.", + resetRequest: + "Yêu cầu đặt lại mật khẩu trang web Bloom Housing Portal của bạn cho %{appUrl} gần đây đã được thực hiện.", + ignoreRequest: "Nếu bạn không yêu cầu điều này, vui lòng bỏ qua email này.", + changePassword: "Thay đổi mật khẩu của tôi", + }, + } + await queryRunner.query( + `INSERT INTO translations (language, translations, jurisdiction_id) VALUES ($1, $2, $3)`, + ["vi", JSON.stringify(sanJoseVi), sjId] + ) + + const sanJoseSpanish = { + t: { hello: "Hola", seeListing: "VER LISTADO" }, + footer: { + line1: "El Portal de la Vivienda de la Ciudad de San José es un proyecto de la", + line2: "Ciudad de San José - Departamento de Vivienda", + footer: "Ciudad de San José, Departamento de Vivienda", + thankYou: "¡Gracias!", + }, + register: { + welcome: "¡Bienvenido!", + welcomeMessage: + "Gracias por crear su cuenta en %{appUrl}. Ahora le será más fácil iniciar, guardar y enviar solicitudes en línea para los listados que aparecen en el sitio.", + confirmMyAccount: "Confirmar mi cuenta", + toConfirmAccountMessage: + "Para completar la creación de su cuenta, haga clic en el siguiente enlace:", + }, + confirmation: { + subject: "Confirmación de su solicitud", + eligible: { + fcfs: + "Se contactará a los solicitantes elegibles por orden hasta que se cubran las vacantes.", + lottery: + "Una vez finalizado el período de solicitud, los solicitantes elegibles se ordenarán según el resultado de la lotería.", + waitlist: + "Los solicitantes elegibles se colocarán en la lista de espera por orden de llegada hasta que se llenen los lugares de la lista de espera.", + fcfsPreference: + "Las preferencias para la vivienda, si corresponden, alterarán el orden de postulación.", + waitlistContact: + "Es posible que se comuniquen con usted mientras esté en la lista de espera para confirmar que desea permanecer en ella.", + lotteryPreference: + "Las preferencias para la vivienda, si corresponden, alterarán el orden resultante de la lotería.", + waitlistPreference: + "Las preferencias para la vivienda, si corresponden, alterarán el orden en la lista de espera.", + }, + interview: + "Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.", + whatToExpect: { + FCFS: + "El agente inmobiliario se pondrá en contacto con los solicitantes por orden de llegada hasta que se cubran las vacantes.", + noLottery: + "Los solicitantes serán contactados por el agente en orden de lista de espera hasta que se cubran las vacantes.", + }, + shouldBeChosen: + "Si su solicitud es elegida, prepárese para llenar una solicitud más detallada y proporcionar los documentos de apoyo necesarios.", + whatHappensNext: "¿Qué pasa después?", + whatToExpectNext: "Qué esperar a continuación:", + needToMakeUpdates: "¿Necesitas hacer actualizaciones?", + applicationsClosed: "Solicitud
cerrada", + applicationsRanked: "Solicitud
clasificada", + applicationReceived: "Aplicación
recibida", + thankYouForApplying: + "Gracias por solicitar una vivienda desde el Portal de San José. Hemos recibido su solicitud para", + yourConfirmationNumber: "Aquí tiene su número de confirmación:", + gotYourConfirmationNumber: "Recibimos tu solicitud para:", + }, + leasingAgent: { + officeHours: "Horas de oficina", + propertyManager: "Administrador de la propiedad", + contactAgentToUpdateInfo: + "Si necesita actualizar la información de su solicitud, no vuelva a presentarla. Póngase en contacto con el agente. Vea a continuación la información de contacto del agente para este listado.", + }, + forgotPassword: { + subject: "Forgot your password?", + callToAction: + "Si usted hizo esta solicitud, haga clic en el enlace de abajo para restablecer su contraseña:", + passwordInfo: + "Su contraseña no cambiará hasta que acceda al enlace anterior y cree una nueva.", + resetRequest: + "Recientemente se ha solicitado el restablecimiento de su contraseña del sitio web del Portal de Vivienda Bloom para %{appUrl}.", + ignoreRequest: "Si usted no lo solicitó, ignore este correo electrónico.", + changePassword: "Cambiar mi contraseña", + }, + } + await queryRunner.query( + `INSERT INTO translations (language, translations, jurisdiction_id) VALUES ($1, $2, $3)`, + ["es", JSON.stringify(sanJoseSpanish), sjId] + ) + + const sanJoseChinese = { + t: { hello: "您好", seeListing: "查看清單" }, + footer: { + line1: "聖何塞市住房門戶網站是", + line2: "聖何塞市 - 住房部", + footer: "聖荷西市住房局", + thankYou: "謝謝您!", + }, + register: { + welcome: "歡迎!", + welcomeMessage: + "感謝您在%{appUrl}建立帳戶。現在,您可以更輕鬆地針對網站列出的物業清單建立、儲存及提交線上申請。", + confirmMyAccount: "聖荷西市住房局", + toConfirmAccountMessage: "要完成建立帳戶,請按以下連結:", + }, + confirmation: { + subject: "您的申請確認", + eligible: { + fcfs: "我們將按照「先申請先入住」的原則聯絡合格的申請人,直至空置房被入住為止。", + lottery: "一旦申請期結束,合格的申請人將按抽籤名次進行排序。", + waitlist: "合格的申請人將按照「先申請先入住」的原則進入候補名單,直至候補名單額滿為止。", + fcfsPreference: "住房優惠(如果適用)將影響「先申請先入住」順序。", + waitlistContact: "我們可能會在您進入候補名單時與您聯絡,確認您希望繼續留在候補名單上。", + lotteryPreference: "住房優惠(如果適用)將影響抽籤名次。", + waitlistPreference: "住房優惠(如果適用)將影響候補名單的順序。", + }, + interview: "如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。", + whatToExpect: { + FCFS: "房地產代理人會以先到先得的方式聯繫申請人,直到額滿為止。", + noLottery: "代理人會按照候補名單順序聯繫申請人,直到額滿為止。", + }, + shouldBeChosen: "如果選中您的申請表,請準備填寫一份更詳細的申請表,並提供所需的證明文件。", + whatHappensNext: "接下來發生什麼?", + whatToExpectNext: "後續流程:", + needToMakeUpdates: "需要更新嗎?", + applicationsClosed: "申請
關閉", + applicationsRanked: "申請
排名", + applicationReceived: "申請
已收到", + thankYouForApplying: "感謝您透過聖荷西門戶網站申請住房。我們收到了您關於 的申請", + yourConfirmationNumber: "這是您的確認號碼:", + gotYourConfirmationNumber: "我們收到了您的申請:", + }, + leasingAgent: { + officeHours: "工作時間", + propertyManager: "物業經理", + contactAgentToUpdateInfo: + "如果您需要更新申請資訊,請勿再次申請。請聯繫租賃代理人。請參閱本物業清單所列代理人的聯繫資訊。", + }, + forgotPassword: { + subject: "Forgot your password?", + callToAction: "如果您確實提出請求,請按下方連結重設密碼:", + passwordInfo: "在您按上方連結並建立一個新密碼之前,您的密碼不會變更。", + resetRequest: "最近我們收到了您為%{appUrl}重設Bloom住房門戶網站密碼的請求。", + ignoreRequest: "如果您沒有提出請求,請勿理會本電子郵件。", + changePassword: "變更密碼", + }, + } + await queryRunner.query( + `INSERT INTO translations (language, translations, jurisdiction_id) VALUES ($1, $2, $3)`, + ["zh", JSON.stringify(sanJoseChinese), sjId] + ) + + // San Mateo translations + const sanMateoEnglish = { + footer: { + line1: "San Mateo County Housing Portal is a project of the", + line2: "San Mateo County - Department of Housing (DOH)", + footer: "San Mateo County - Department of Housing", + thankYou: "Thank you", + }, + header: { + logoUrl: + "https://res.cloudinary.com/exygy/image/upload/v1652459282/housingbayarea/163838485-87dd8976-b816-424c-a303-93e5473e931e_qvnsml.png", + logoTitle: "San Mateo County Housing", + }, + changeEmail: { + message: "An email address change has been requested for your account.", + changeMyEmail: "Confirm email change", + onChangeEmailMessage: + "To confirm the change to your email address, please click the link below:", + }, + mfaCodeEmail: { + message: "Access token for your account has been requested.", + mfaCode: "Your access token is: %{mfaCode}", + }, + } + await queryRunner.query( + `INSERT INTO translations (language, translations, jurisdiction_id) VALUES ($1, $2, $3)`, + ["en", JSON.stringify(sanMateoEnglish), smcId] + ) + } + + public async down(queryRunner: QueryRunner): Promise {} +} diff --git a/backend/core/src/migration/1677624538425-addSMConfirmationEmailTranslations.ts b/backend/core/src/migration/1677624538425-addSMConfirmationEmailTranslations.ts new file mode 100644 index 0000000000..e8995ceb1f --- /dev/null +++ b/backend/core/src/migration/1677624538425-addSMConfirmationEmailTranslations.ts @@ -0,0 +1,121 @@ +import {MigrationInterface, QueryRunner} from "typeorm"; +import { Language } from "../shared/types/language-enum" + +export class addSMConfirmationEmailTranslations1677624538425 implements MigrationInterface { + name = 'addSMConfirmationEmailTranslations1677624538425' + + public async up(queryRunner: QueryRunner): Promise { + const [{ id: sanMateoJurisdiction }] = await queryRunner.query( + `SELECT id FROM jurisdictions WHERE name = 'San Mateo' LIMIT 1` + ) + + const smSpanish = { + confirmation: { + gotYourConfirmationNumber: "Recibimos tu solicitud de", + yourConfirmationNumber: "Su número de confirmación", + applicationReceived: "Aplicación
recibida", + applicationsClosed: "Solicitud
cerrada", + applicationsRanked: "Solicitud
clasificada", + whatHappensNext: "¿Qué pasa después?", + needToMakeUpdates: "¿Necesitas hacer actualizaciones?", + interview: + "Si lo contactan para una entrevista, se le pedirá que llene una solicitud más detallada y proporcione documentos de respaldo.", + eligible: { + fcfs: + "Los solicitantes elegibles serán contactados por orden de llegada hasta que se llenen las vacantes.", + fcfsPreference: + "Las preferencias de alojamiento, si corresponde, afectarán el orden de llegada." + } + }, + leasingAgent: { + contactAgentToUpdateInfo: + "Si necesita actualizar la información de su solicitud, no vuelva a presentarla. En su lugar, comuníquese con el agente para este listado.", + propertyManager: "Administrador de la propiedad", + officeHours: "Horas de oficina", + }, + t: { + seeListing: "VER LISTADO", + }, + }; + + await queryRunner.query( + `INSERT into "translations" (jurisdiction_id, language, translations) VALUES ($1, $2, $3)`, + [sanMateoJurisdiction, Language.es, smSpanish] + ) + + const smChinese = { + jurisdictionId: sanMateoJurisdiction, + language: Language.zh, + confirmation: { + gotYourConfirmationNumber: "我們收到了您的申請", + yourConfirmationNumber: "您的確認號碼", + applicationReceived: "申請
已收到", + applicationsClosed: "申請
關閉", + applicationsRanked: "申請
排名", + whatHappensNext: "接下來發生什麼?", + needToMakeUpdates: "需要更新嗎?", + interview: + "如果聯繫您進行面試,您將被要求填寫更詳細的申請表並提供證明文件。", + eligible: { + fcfs: + "符合條件的申請人將以先到先得的方式聯繫,直到職位空缺被填補。", + fcfsPreference: + "住房偏好(如果適用)將影響先到先得的順序。", + }, + }, + leasingAgent: { + contactAgentToUpdateInfo: + "如果您需要更新申請信息,請勿再次申請。 相反,請聯繫此列表的代理。", + propertyManager: "物業經理", + officeHours: "工作時間", + }, + t: { + seeListing: "查看列表", + }, + }; + + await queryRunner.query( + `INSERT into "translations" (jurisdiction_id, language, translations) VALUES ($1, $2, $3)`, + [sanMateoJurisdiction, Language.zh, smChinese] + ) + + const smVietnamese = { + jurisdictionId: sanMateoJurisdiction, + language: Language.vi, + confirmation: { + gotYourConfirmationNumber: "Chúng tôi đã nhận được ứng dụng của bạn cho", + yourConfirmationNumber: "Số xác nhận của bạn", + applicationReceived: "Ứng dụng
nhận được", + applicationsClosed: "Ứng dụng
đã đóng", + applicationsRanked: "Ứng dụng
được xếp hạng", + whatHappensNext: "Chuyện gì xảy ra tiếp theo?", + needToMakeUpdates: "Cần thực hiện cập nhật?", + interview: + "Nếu bạn được liên hệ để phỏng vấn, bạn sẽ được yêu cầu điền vào một đơn đăng ký chi tiết hơn và cung cấp các tài liệu hỗ trợ.", + eligible: { + fcfs: + "Các ứng viên đủ điều kiện sẽ được liên hệ trên cơ sở ai đến trước được phục vụ trước cho đến khi các vị trí tuyển dụng được lấp đầy.", + fcfsPreference: + "Ưu đãi về nhà ở, nếu áp dụng, sẽ ảnh hưởng đến thứ tự ai đến trước được phục vụ trước.", + }, + }, + leasingAgent: { + contactAgentToUpdateInfo: + "Nếu bạn cần cập nhật thông tin trên ứng dụng của mình, đừng đăng ký lại. Thay vào đó, hãy liên hệ với đại lý cho danh sách này.", + propertyManager: "Quản lý tài sản", + officeHours: "Giờ hành chính", + }, + t: { + seeListing: "XEM DANH SÁCH", + }, + }; + + await queryRunner.query( + `INSERT into "translations" (jurisdiction_id, language, translations) VALUES ($1, $2, $3)`, + [sanMateoJurisdiction, Language.vi, smVietnamese] + ) + } + + public async down(queryRunner: QueryRunner): Promise {} + +} diff --git a/backend/core/src/migration/1677847240364-addAlamedaConfirmationEmailTranslations.ts b/backend/core/src/migration/1677847240364-addAlamedaConfirmationEmailTranslations.ts new file mode 100644 index 0000000000..2dc59b2f5f --- /dev/null +++ b/backend/core/src/migration/1677847240364-addAlamedaConfirmationEmailTranslations.ts @@ -0,0 +1,156 @@ +import {MigrationInterface, QueryRunner} from "typeorm"; +import { Language } from "../shared/types/language-enum" + +export class addAlamedaConfirmationEmailTranslations1677847240364 implements MigrationInterface { + name = 'addAlamedaConfirmationEmailTranslations1677847240364' + + public async up(queryRunner: QueryRunner): Promise { + const [{ id: alamedaJurisdiction }] = await queryRunner.query( + `SELECT id FROM jurisdictions WHERE name = 'Alameda' LIMIT 1` + ) + + const alaSpanish = { + confirmation: { + gotYourConfirmationNumber: "Recibimos tu solicitud para:", + yourConfirmationNumber: "Su número de confirmación", + applicationReceived: "Aplicación
recibida", + applicationsClosed: "Solicitud
cerrada", + applicationsRanked: "Solicitud
clasificada", + whatHappensNext: "¿Qué sucede luego?", + needToMakeUpdates: "¿Necesita hacer modificaciones?", + interview: "Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y presente documentos de respaldo.", + eligible: { + waitlist: "Los solicitantes que reúnan los requisitos quedarán en la lista de espera por orden de recepción de solicitud hasta que se cubran todos los lugares.", + waitlistPreference: "Las preferencias de vivienda, si corresponde, afectarán al orden de la lista de espera.", + waitlistContact: "Es posible que se comuniquen con usted mientras esté en la lista de espera para confirmar que desea permanecer en la lista.", + } + }, + leasingAgent: { + contactAgentToUpdateInfo: "Si necesita modificar información en su solicitud, no haga una solicitud nueva. Comuníquese con el agente de este listado.", + propertyManager: "Administrador de propiedades", + officeHours: "Horario de atención", + }, + t: { + seeListing: "VER EL LISTADO" + }, + footer: { + line1: "Alameda County Housing Portal es un proyecto del", + line2: "Departamento de Vivienda y Desarrollo Comunitario (Housing and Community Development, HCD)" + } + }; + + await queryRunner.query( + `INSERT into "translations" (jurisdiction_id, language, translations) VALUES ($1, $2, $3)`, + [alamedaJurisdiction, Language.es, alaSpanish] + ) + + const alaVietnamese = { + confirmation: { + gotYourConfirmationNumber: "Chúng tôi đã nhận được đơn đăng ký của bạn cho", + yourConfirmationNumber: "Số Xác Nhận Của Bạn", + applicationReceived: "Đơn đăng ký
đã nhận được", + applicationsClosed: "Đơn đăng ký
đã đóng", + applicationsRanked: "Đơn đăng ký
được xếp hạng", + whatHappensNext: "Điều gì diễn ra tiếp theo?", + needToMakeUpdates: "Bạn cần cập nhật thông tin?", + interview: "Nếu bạn được liên hệ để phỏng vấn, bạn sẽ được yêu cầu điền vào một đơn đăng ký chi tiết hơn và cung cấp các tài liệu hỗ trợ.", + eligible: { + waitlist: "Những người đăng ký đủ điều kiện sẽ được đưa vào danh sách chờ trên cơ sở ai đăng ký trước sẽ được đưa vào trước cho đến khi hết chỗ trong danh sách chờ.", + waitlistPreference: "Ưu tiên về nhà ở, nếu áp dụng, sẽ ảnh hưởng đến thứ tự trong danh sách chờ.", + waitlistContact: "Bạn có thể được liên hệ khi đang ở danh sách chờ để xác nhận rằng bạn muốn tiếp tục ở danh sách chờ.", + } + }, + + leasingAgent: { + contactAgentToUpdateInfo: "Nếu bạn cần cập nhật thông tin trong đơn đăng ký, đừng đăng ký lại. Thay vào đó, hãy liên hệ với người đại diện để được cập nhật.", + propertyManager: "Quản Lý Tài Sản", + officeHours: "Giờ Làm Việc", + }, + t: { + seeListing: "XEM DANH SÁCH" + }, + footer: { + line1: "Cổng Thông Tin Nhà Ở Quận Alameda là một dự án của", + line2: "Sở Phát Triển Cộng Đồng và Nhà Ở (HCD) Quận Alameda", + } + } + + await queryRunner.query( + `INSERT into "translations" (jurisdiction_id, language, translations) VALUES ($1, $2, $3)`, + [alamedaJurisdiction, Language.vi, alaVietnamese] + ) + + const alaChinese = { + confirmation:{ + gotYourConfirmationNumber: "我們已收到您的申請", + yourConfirmationNumber: "您的確認編號", + applicationReceived: "已收到
申請", + applicationsClosed: "申請
已結案", + applicationsRanked: "申請
等候中", + whatHappensNext: "下一步是什麼?", + needToMakeUpdates: "需要更新資料嗎?", + interview: "如果聯絡您進行面談,則需要填寫更詳細的申請書並提供證明文件。", + eligible: { + waitlist: "符合資格的申請者將按照先到先處理的原則加入等候名單,直至等候名單額滿。", + waitlistPreference: "申請者對住房的偏好(如適用)將影響等候名單的排序。", + waitlistContact: "當您已列入等候名單時,我們可能聯絡您以確認您希望保留在等候名單上。", + } + }, + leasingAgent: { + contactAgentToUpdateInfo: "如果需要,請更新申請資料,勿重新申請。若不需要,請聯絡本清單的代理。", + propertyManager: "物業經理", + officeHours: "辦公時間", + }, + t: { + seeListing: "查看名單", + }, + footer: { + line1: "阿拉米達縣住房入口網站", + line2: "阿拉米達縣–住房及社區發展 (HCD) 部", + }, + } + + await queryRunner.query( + `INSERT into "translations" (jurisdiction_id, language, translations) VALUES ($1, $2, $3)`, + [alamedaJurisdiction, Language.zh, alaChinese] + ) + + const alaTaglog = { + confirmation: { + gotYourConfirmationNumber: "Natanggap namin ang iyong aplikasyon para sa", + yourConfirmationNumber: "Ang Iyong Numero ng Kumpirmasyon", + applicationReceived: "Aplikasyon
na natanggap", + applicationsClosed: "Isinara
na ang aplikasyon", + applicationsRanked: "Na-rank
na aplikasyon", + whatHappensNext: "Ano ang susunod na mangyayari?", + needToMakeUpdates: "Kailangang gumawa ng mga update?", + interview: "Kung ikaw ay kinontak para sa isang panayam, hihilingin sa iyong punan ang mas detalyadong aplikasyon at magbigay ng mga karagdagang dokumento.", + eligible: { + waitlist: "Ang mga kwalipikadong aplikante ay ilalagay sa waitlist sa first come first serve basis hanggang sa mapunan ang mga puwesto sa waitlist.", + waitlistPreference: "Aga pagpipilian sa pabahay, kung naaangkop, ay makakaapekto sa pagkakasunod-sunod ng waitlist.", + waitlistContact: "Maaari kang kontakin habang nasa waitlist upang kumpirmahin na gusto mong manatili sa waitlist.", + } + }, + leasingAgent: { + contactAgentToUpdateInfo: "Kung kailangan mong i-update ang iyong impormasyon sa aplikasyon, huwag nang mag-apply muli. Sa halip ay kontakin ang ahente para sa listahan na ito.", + propertyManager: "Property Manager", + officeHours: "Oras ng Opisina", + }, + t: { + seeListing: "TINGNAN ANG LISTAHAN", + }, + footer: { + line1: "Ang Alameda County Housing Portal ay isang proyekto ng", + line2: "Alameda County – Departamento ng Housing and Community Development (HCD)", + } + } + + await queryRunner.query( + `INSERT into "translations" (jurisdiction_id, language, translations) VALUES ($1, $2, $3)`, + [alamedaJurisdiction, Language.tl, alaTaglog] + ) + } + + public async down(queryRunner: QueryRunner): Promise {} + +} diff --git a/backend/core/src/migration/1682009156841-translation-clean-up.ts b/backend/core/src/migration/1682009156841-translation-clean-up.ts index 2f8d3a6aa3..f8ba04ca49 100644 --- a/backend/core/src/migration/1682009156841-translation-clean-up.ts +++ b/backend/core/src/migration/1682009156841-translation-clean-up.ts @@ -22,7 +22,7 @@ export class translationCleanUp1682009156841 implements MigrationInterface { data = JSON.stringify(data) await queryRunner.query(` UPDATE translations - SET translations = '${data}' + SET translations = '${data.replace(/'/g, "''")}' WHERE id = '${translation.id}' `) } diff --git a/backend/core/src/migration/1689016479274-notificationsSignUpUrlSMC.ts b/backend/core/src/migration/1689016479274-notificationsSignUpUrlSMC.ts new file mode 100644 index 0000000000..7660d3fa1f --- /dev/null +++ b/backend/core/src/migration/1689016479274-notificationsSignUpUrlSMC.ts @@ -0,0 +1,21 @@ +import { MigrationInterface, QueryRunner } from "typeorm" + +export class notificationsSignUpUrlSMC1689016479274 implements MigrationInterface { + name = "notificationsSignUpUrlSMC1689016479274" + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query(` + UPDATE jurisdictions + SET notifications_sign_up_url = 'https://public.govdelivery.com/accounts/CASMATEO/subscriber/new?topic_id=CASMATEO_358' + WHERE name = 'San Mateo' + `) + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query(` + UPDATE jurisdictions + SET notifications_sign_up_url = null + WHERE name = 'San Mateo' + `) + } +} diff --git a/backend/core/src/migration/1693242578397-new-smc-ami-charts-2023.ts b/backend/core/src/migration/1693242578397-new-smc-ami-charts-2023.ts new file mode 100644 index 0000000000..e1ddc8e8a8 --- /dev/null +++ b/backend/core/src/migration/1693242578397-new-smc-ami-charts-2023.ts @@ -0,0 +1,29 @@ +import { MigrationInterface, QueryRunner } from "typeorm" +import { ami as SMC_HUD_2023 } from "../../scripts/ami-chart-import-files/SMC-HUD-2023" +import { ami as SMC_TCAC_2023 } from "../../scripts/ami-chart-import-files/SMC-TCAC-2023" + +export class newSmcAmiCharts20231693242578397 implements MigrationInterface { + name = "newSmcAmiCharts20231693242578397" + + public async up(queryRunner: QueryRunner): Promise { + const [{ id: smcJuris }] = await queryRunner.query( + `SELECT id FROM jurisdictions WHERE name = 'San Mateo'` + ) + + await queryRunner.query(` + INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${SMC_HUD_2023.name}', '${JSON.stringify(SMC_HUD_2023.items)}', '${smcJuris}') + `) + + await queryRunner.query(` + INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${SMC_TCAC_2023.name}', '${JSON.stringify(SMC_TCAC_2023.items)}', '${smcJuris}') + `) + } + + public async down(queryRunner: QueryRunner): Promise { + // there is no down migration + } +} diff --git a/backend/core/src/migration/1693604898155-new-oakland-ami-2023.ts b/backend/core/src/migration/1693604898155-new-oakland-ami-2023.ts new file mode 100644 index 0000000000..c6d74624c5 --- /dev/null +++ b/backend/core/src/migration/1693604898155-new-oakland-ami-2023.ts @@ -0,0 +1,20 @@ +import { MigrationInterface, QueryRunner } from "typeorm" +import { ami } from "../../scripts/ami-chart-import-files/oakland-2023" + +export class newOaklandAmi20231693604898155 implements MigrationInterface { + name = "newOaklandAmi20231693604898155" + + public async up(queryRunner: QueryRunner): Promise { + const [{ id }] = await queryRunner.query(`SELECT id FROM jurisdictions WHERE name = 'Alameda'`) + + await queryRunner.query(` + INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${ami.name}', '${JSON.stringify(ami.items)}', '${id}') + `) + } + + public async down(queryRunner: QueryRunner): Promise { + // there is no down migration + } +} diff --git a/backend/core/src/migration/1697654611220-turn-on-listing-approval.ts b/backend/core/src/migration/1697654611220-turn-on-listing-approval.ts new file mode 100644 index 0000000000..22bfe71b7b --- /dev/null +++ b/backend/core/src/migration/1697654611220-turn-on-listing-approval.ts @@ -0,0 +1,30 @@ +import { MigrationInterface, QueryRunner } from "typeorm" +import { EnumJurisdictionListingApprovalPermissions } from "../../types" + +export class turnOnListingApproval1697654611220 implements MigrationInterface { + name = "turnOnListingApproval1697654611220" + + public async up(queryRunner: QueryRunner): Promise { + const jurisdictions: { id: string }[] = await queryRunner.query(` + SELECT id + FROM jurisdictions + `) + + const approvalPermissions = [ + EnumJurisdictionListingApprovalPermissions.admin, + EnumJurisdictionListingApprovalPermissions.jurisdictionAdmin, + ].map((permission) => `'${permission}'::jurisdictions_listing_approval_permissions_enum`) + + jurisdictions.forEach(async (jurisdictionId) => { + await queryRunner.query(` + UPDATE jurisdictions + SET listing_approval_permissions = ARRAY [${approvalPermissions}] + WHERE id = '${jurisdictionId.id}' + `) + }) + } + + public async down(queryRunner: QueryRunner): Promise { + // no down migration + } +} diff --git a/backend/core/src/migration/1699486370874-emeryville-2023-ami-chart.ts b/backend/core/src/migration/1699486370874-emeryville-2023-ami-chart.ts new file mode 100644 index 0000000000..2d7e8e9ed2 --- /dev/null +++ b/backend/core/src/migration/1699486370874-emeryville-2023-ami-chart.ts @@ -0,0 +1,20 @@ +import { MigrationInterface, QueryRunner } from "typeorm" +import { ami } from "../../scripts/ami-chart-import-files/emeryville-2023" + +export class emeryville2023AmiChart1699486370874 implements MigrationInterface { + name = "emeryville2023AmiChart1699486370874" + + public async up(queryRunner: QueryRunner): Promise { + const [{ id: juris }] = await queryRunner.query( + `SELECT id FROM jurisdictions WHERE name = 'Alameda'` + ) + + await queryRunner.query(` + INSERT INTO ami_chart + (name, items, jurisdiction_id) + VALUES ('${ami.name}', '${JSON.stringify(ami.items)}', '${juris}') + `) + } + + public async down(queryRunner: QueryRunner): Promise {} +} diff --git a/backend/core/src/migration/1707508859920-multiselectTranslationFix.ts b/backend/core/src/migration/1707508859920-multiselectTranslationFix.ts new file mode 100644 index 0000000000..fa9e2bcb71 --- /dev/null +++ b/backend/core/src/migration/1707508859920-multiselectTranslationFix.ts @@ -0,0 +1,122 @@ +import { MigrationInterface, QueryRunner } from "typeorm" + +export class multiselectTranslationFix1707508859920 implements MigrationInterface { + name = "multiselectTranslationFix1707508859920" + + // construct translation object for multiselect questions + listingPrefencesTranslations = { + en: [ + { + text: "Historical BART Displacement ", + options: [ + "Someone in my household already has a BART Construction Displacement preference certificate.", + "Someone in my household is applying for, or will apply for, a BART Construction Displacement preference certificate.", + "Nobody in my household has been displaced, or has family that has been displaced, due to BART construction.", + ], + }, + { + text: "Households with Children ", + options: [ + "My household includes children under the age of 18.", + "My household does not include children", + ], + }, + { + text: "Displacement due to Eviction", + options: [ + "I, or a member of my household, was displaced due to no-fault or nonpayment-related eviction within the past seven years in Berkeley.", + "No one in my household was displaced due to no-fault or nonpayment-related eviction within the past seven years in Berkeley.", + ], + }, + { + text: "Displacement due to Foreclosure", + options: [ + "Someone in my household already has a Foreclosure Displacement preference certificate.", + "Someone in my household is applying for, or will apply for, a Foreclosure Displacement preference certificate.", + "Nobody in my household has been displaced due to foreclosure.", + ], + }, + { + text: "Residents or Former Residents of Redlined Neighborhoods", + options: [ + "I or a member of my household live or lived in a formerly redlined neighborhood in Berkeley.", + "No one in my household lives or formerly lived in a redlined neighborhood.", + ], + }, + { + text: "Descendants of Residents of Redlined Neighborhoods", + options: [ + "At least one of my parents or grandparents lives or lived in a formerly redlined neighborhood in Berkeley", + "I do not qualify for this preference", + ], + }, + { + text: "Homeless or at Risk of Homelessness", + options: [ + "I, or someone in my household, live in Berkeley, and I have somewhere to stay, but it isn't permanent.", + "I, or someone in my household, am/is homeless and living in Berkeley, or am homeless and had a previous address in Berkeley.", + "I do not qualify for this preference.", + ], + }, + { + text: "Berkeley Housing Authority Preference", + options: [ + "My household lives in the City of Berkeley or formerly lived in the City of Berkeley; or someone in my household works in the City of Berkeley or has been hired to work in the City of Berkeley", + "I or a member of my household is a veteran", + "I or someone in my household is 62 years or older and/or disabled", + "My household includes two or more people", + "I don't want to be considered for this preference", + ], + }, + ], + } + + public async up(queryRunner: QueryRunner): Promise { + // get application id, language, program, preference where application language was not english + const applications = await queryRunner.query(` + SELECT + a.id, + a.language, + a.preferences + FROM applications a + WHERE (a.programs != '[]') + AND a.language != 'en' + AND a.listing_id = '123f4226-3f3d-4311-9e54-49e47ecfb068' + ORDER BY a.created_at desc + `) + + const promiseArray: Promise[] = [] + for (const app of applications) { + promiseArray.push(this.untranslate(app, queryRunner)) + } + await Promise.all(promiseArray) + } + + public untranslateHelper(dataSet: any[]) { + return dataSet.map((preference) => { + const englishPreference = this.listingPrefencesTranslations.en.find( + (translation) => translation.text === preference.key + ) + const options = preference.options.map((option, index) => { + const newOption = { ...option, key: englishPreference.options[index] } + return newOption + }) + return { ...preference, options: options } + }) + } + + public untranslate(app: any, queryRunner: QueryRunner) { + const updatePreferences = this.untranslateHelper(app.preferences) + + return queryRunner.query( + ` + UPDATE applications + SET preferences = $1 + WHERE id = $2 + `, + [JSON.stringify(updatePreferences), app.id] + ) + } + + public async down(queryRunner: QueryRunner): Promise {} +} diff --git a/backend/core/src/migration/1707941488208-multiselectTranslationFix2.ts b/backend/core/src/migration/1707941488208-multiselectTranslationFix2.ts new file mode 100644 index 0000000000..86f6a33bbb --- /dev/null +++ b/backend/core/src/migration/1707941488208-multiselectTranslationFix2.ts @@ -0,0 +1,126 @@ +import { MigrationInterface, QueryRunner } from "typeorm" + +export class multiselectTranslationFix21707941488208 implements MigrationInterface { + name = "multiselectTranslationFix21707941488208" + + // construct translation object for multiselect questions + listingPrefencesTranslations = { + en: [ + { + text: "Historical BART Displacement ", + options: [ + "Someone in my household already has a BART Construction Displacement preference certificate.", + "Someone in my household is applying for, or will apply for, a BART Construction Displacement preference certificate.", + "Nobody in my household has been displaced, or has family that has been displaced, due to BART construction.", + ], + }, + { + text: "Households with Children ", + options: [ + "My household includes children under the age of 18.", + "My household does not include children", + ], + }, + { + text: "Displacement due to Eviction", + options: [ + "I, or a member of my household, was displaced due to no-fault or nonpayment-related eviction within the past seven years in Berkeley.", + "No one in my household was displaced due to no-fault or nonpayment-related eviction within the past seven years in Berkeley.", + ], + }, + { + text: "Displacement due to Foreclosure", + options: [ + "Someone in my household already has a Foreclosure Displacement preference certificate.", + "Someone in my household is applying for, or will apply for, a Foreclosure Displacement preference certificate.", + "Nobody in my household has been displaced due to foreclosure.", + ], + }, + { + text: "Residents or Former Residents of Redlined Neighborhoods", + options: [ + "I or a member of my household live or lived in a formerly redlined neighborhood in Berkeley.", + "No one in my household lives or formerly lived in a redlined neighborhood.", + ], + }, + { + text: "Descendants of Residents of Redlined Neighborhoods", + options: [ + "At least one of my parents or grandparents lives or lived in a formerly redlined neighborhood in Berkeley", + "I do not qualify for this preference", + ], + }, + { + text: "Homeless or at Risk of Homelessness", + options: [ + "I, or someone in my household, live in Berkeley, and I have somewhere to stay, but it isn't permanent.", + "I, or someone in my household, am/is homeless and living in Berkeley, or am homeless and had a previous address in Berkeley.", + "I do not qualify for this preference.", + ], + }, + { + text: "Berkeley Housing Authority Preference", + options: [ + "My household lives in the City of Berkeley or formerly lived in the City of Berkeley; or someone in my household works in the City of Berkeley or has been hired to work in the City of Berkeley", + "I or a member of my household is a veteran", + "I or someone in my household is 62 years or older and/or disabled", + "My household includes two or more people", + "I don't want to be considered for this preference", + ], + }, + ], + } + + public async up(queryRunner: QueryRunner): Promise { + // get application id, language, and preference where application was mistranslated + const applications = await queryRunner.query(` + SELECT + a.id, + a.language, + a.preferences + FROM applications a + WHERE + (a.id = 'ff9c3a9d-6604-46d5-ba36-8a8d17b08782' OR + a.id = '19e6f1f4-c7cb-49ec-baae-81ac74fca324' OR + a.id = 'fc149f1e-4fec-48ff-9b7e-2d1a8a6825c9' OR + a.id = 'ca972a3f-2a46-4982-a053-1f9def96e965' OR + a.id = 'a05e8463-adbc-470f-ba36-ef5d02d0cc82' OR + a.id = '975b21d5-8d96-495c-baaa-2e0323c2dc25') + ORDER BY a.created_at desc + `) + + const promiseArray: Promise[] = [] + for (const app of applications) { + promiseArray.push(this.untranslate(app, queryRunner)) + } + await Promise.all(promiseArray) + } + + public untranslateHelper(dataSet: any[]) { + return dataSet.map((preference) => { + const englishPreference = this.listingPrefencesTranslations.en.find( + (translation) => translation.text === preference.key + ) + const options = preference.options.map((option, index) => { + const newOption = { ...option, key: englishPreference.options[index] } + return newOption + }) + return { ...preference, options: options } + }) + } + + public untranslate(app: any, queryRunner: QueryRunner) { + const updatePreferences = this.untranslateHelper(app.preferences) + + return queryRunner.query( + ` + UPDATE applications + SET preferences = $1 + WHERE id = $2 + `, + [JSON.stringify(updatePreferences), app.id] + ) + } + + public async down(queryRunner: QueryRunner): Promise {} +} diff --git a/backend/core/src/seeder/seeds/ami-charts/alameda-hud-2022.ts b/backend/core/src/seeder/seeds/ami-charts/alameda-hud-2022.ts new file mode 100644 index 0000000000..7dcdb4e910 --- /dev/null +++ b/backend/core/src/seeder/seeds/ami-charts/alameda-hud-2022.ts @@ -0,0 +1,129 @@ +import { AmiChartCreateDto } from "../../../ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" + +// THIS FILE WAS AUTOMATICALLY GENERATED FROM a2.txt. +export const alamedaHUD2022: Omit = { + name: "Alameda County HUD 2022", + items: [ + { + percentOfAmi: 30, + householdSize: 1, + income: 30000, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 34300, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 38600, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 42850, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 46300, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 49750, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 53150, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 56600, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 50000, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 57150, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 64300, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 71400, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 77150, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 82850, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 88550, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 94250, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 74200, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 84800, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 95400, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 106000, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 114500, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 123000, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 131450, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 139950, + }, + ], +} diff --git a/backend/core/src/seeder/seeds/ami-charts/alameda-tcac-2022.ts b/backend/core/src/seeder/seeds/ami-charts/alameda-tcac-2022.ts new file mode 100644 index 0000000000..37e51bf51c --- /dev/null +++ b/backend/core/src/seeder/seeds/ami-charts/alameda-tcac-2022.ts @@ -0,0 +1,449 @@ +import { AmiChartCreateDto } from "../../../ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" + +// THIS FILE WAS AUTOMATICALLY GENERATED FROM a1.txt. +export const alamedaTCAC2022: Omit = { + name: "Alameda County TCAC 2022", + items: [ + { + percentOfAmi: 20, + householdSize: 1, + income: 20000, + }, + { + percentOfAmi: 20, + householdSize: 2, + income: 22860, + }, + { + percentOfAmi: 20, + householdSize: 3, + income: 25720, + }, + { + percentOfAmi: 20, + householdSize: 4, + income: 28560, + }, + { + percentOfAmi: 20, + householdSize: 5, + income: 30860, + }, + { + percentOfAmi: 20, + householdSize: 6, + income: 33140, + }, + { + percentOfAmi: 20, + householdSize: 7, + income: 35420, + }, + { + percentOfAmi: 20, + householdSize: 8, + income: 37700, + }, + { + percentOfAmi: 30, + householdSize: 1, + income: 30000, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 34290, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 38580, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 42840, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 46290, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 49710, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 53130, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 56550, + }, + { + percentOfAmi: 35, + householdSize: 1, + income: 35000, + }, + { + percentOfAmi: 35, + householdSize: 2, + income: 40005, + }, + { + percentOfAmi: 35, + householdSize: 3, + income: 45010, + }, + { + percentOfAmi: 35, + householdSize: 4, + income: 49980, + }, + { + percentOfAmi: 35, + householdSize: 5, + income: 54005, + }, + { + percentOfAmi: 35, + householdSize: 6, + income: 57995, + }, + { + percentOfAmi: 35, + householdSize: 7, + income: 61985, + }, + { + percentOfAmi: 35, + householdSize: 8, + income: 65975, + }, + { + percentOfAmi: 40, + householdSize: 1, + income: 40000, + }, + { + percentOfAmi: 40, + householdSize: 2, + income: 45720, + }, + { + percentOfAmi: 40, + householdSize: 3, + income: 51440, + }, + { + percentOfAmi: 40, + householdSize: 4, + income: 57120, + }, + { + percentOfAmi: 40, + householdSize: 5, + income: 61720, + }, + { + percentOfAmi: 40, + householdSize: 6, + income: 66280, + }, + { + percentOfAmi: 40, + householdSize: 7, + income: 70840, + }, + { + percentOfAmi: 40, + householdSize: 8, + income: 75400, + }, + { + percentOfAmi: 45, + householdSize: 1, + income: 45000, + }, + { + percentOfAmi: 45, + householdSize: 2, + income: 51435, + }, + { + percentOfAmi: 45, + householdSize: 3, + income: 57870, + }, + { + percentOfAmi: 45, + householdSize: 4, + income: 64260, + }, + { + percentOfAmi: 45, + householdSize: 5, + income: 69435, + }, + { + percentOfAmi: 45, + householdSize: 6, + income: 74565, + }, + { + percentOfAmi: 45, + householdSize: 7, + income: 79695, + }, + { + percentOfAmi: 45, + householdSize: 8, + income: 84825, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 50000, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 57150, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 64300, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 71400, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 77150, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 82850, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 88550, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 94250, + }, + { + percentOfAmi: 55, + householdSize: 1, + income: 55000, + }, + { + percentOfAmi: 55, + householdSize: 2, + income: 62865, + }, + { + percentOfAmi: 55, + householdSize: 3, + income: 70730, + }, + { + percentOfAmi: 55, + householdSize: 4, + income: 78540, + }, + { + percentOfAmi: 55, + householdSize: 5, + income: 84865, + }, + { + percentOfAmi: 55, + householdSize: 6, + income: 91135, + }, + { + percentOfAmi: 55, + householdSize: 7, + income: 97405, + }, + { + percentOfAmi: 55, + householdSize: 8, + income: 103675, + }, + { + percentOfAmi: 60, + householdSize: 1, + income: 60000, + }, + { + percentOfAmi: 60, + householdSize: 2, + income: 68580, + }, + { + percentOfAmi: 60, + householdSize: 3, + income: 77160, + }, + { + percentOfAmi: 60, + householdSize: 4, + income: 85680, + }, + { + percentOfAmi: 60, + householdSize: 5, + income: 92580, + }, + { + percentOfAmi: 60, + householdSize: 6, + income: 99420, + }, + { + percentOfAmi: 60, + householdSize: 7, + income: 106260, + }, + { + percentOfAmi: 60, + householdSize: 8, + income: 113100, + }, + { + percentOfAmi: 70, + householdSize: 1, + income: 70000, + }, + { + percentOfAmi: 70, + householdSize: 2, + income: 80010, + }, + { + percentOfAmi: 70, + householdSize: 3, + income: 90020, + }, + { + percentOfAmi: 70, + householdSize: 4, + income: 99960, + }, + { + percentOfAmi: 70, + householdSize: 5, + income: 108010, + }, + { + percentOfAmi: 70, + householdSize: 6, + income: 115990, + }, + { + percentOfAmi: 70, + householdSize: 7, + income: 123970, + }, + { + percentOfAmi: 70, + householdSize: 8, + income: 131950, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 80000, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 91440, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 102880, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 114240, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 123440, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 132560, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 141680, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 150800, + }, + { + percentOfAmi: 100, + householdSize: 1, + income: 100000, + }, + { + percentOfAmi: 100, + householdSize: 2, + income: 114300, + }, + { + percentOfAmi: 100, + householdSize: 3, + income: 128600, + }, + { + percentOfAmi: 100, + householdSize: 4, + income: 142800, + }, + { + percentOfAmi: 100, + householdSize: 5, + income: 154200, + }, + { + percentOfAmi: 100, + householdSize: 6, + income: 165650, + }, + { + percentOfAmi: 100, + householdSize: 7, + income: 177050, + }, + { + percentOfAmi: 100, + householdSize: 8, + income: 188500, + }, + ], +} diff --git a/backend/core/src/seeder/seeds/ami-charts/san-jose-hcd-income-limits-2022.ts b/backend/core/src/seeder/seeds/ami-charts/san-jose-hcd-income-limits-2022.ts new file mode 100644 index 0000000000..8047c82441 --- /dev/null +++ b/backend/core/src/seeder/seeds/ami-charts/san-jose-hcd-income-limits-2022.ts @@ -0,0 +1,572 @@ +import { AmiChartCreateDto } from "../../../ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" + +// THIS FILE WAS AUTOMATICALLY GENERATED FROM san-jose-hcd-income-limits-2022.txt. +export const sanJoseHcdIncomeLimits2022: Omit< + AmiChartCreateDto, + keyof BaseEntity | "jurisdiction" +> = { + name: "San Jose HCD Income Limits 2022", + items: [ + { + percentOfAmi: 15, + householdSize: 1, + income: 17685, + }, + { + percentOfAmi: 15, + householdSize: 2, + income: 20220, + }, + { + percentOfAmi: 15, + householdSize: 3, + income: 22755, + }, + { + percentOfAmi: 15, + householdSize: 4, + income: 25275, + }, + { + percentOfAmi: 15, + householdSize: 5, + income: 27300, + }, + { + percentOfAmi: 15, + householdSize: 6, + income: 29325, + }, + { + percentOfAmi: 15, + householdSize: 7, + income: 31355, + }, + { + percentOfAmi: 15, + householdSize: 8, + income: 33360, + }, + { + percentOfAmi: 20, + householdSize: 1, + income: 23580, + }, + { + percentOfAmi: 20, + householdSize: 2, + income: 26960, + }, + { + percentOfAmi: 20, + householdSize: 3, + income: 30340, + }, + { + percentOfAmi: 20, + householdSize: 4, + income: 33700, + }, + { + percentOfAmi: 20, + householdSize: 5, + income: 36400, + }, + { + percentOfAmi: 20, + householdSize: 6, + income: 39100, + }, + { + percentOfAmi: 20, + householdSize: 7, + income: 41780, + }, + { + percentOfAmi: 20, + householdSize: 8, + income: 44480, + }, + { + percentOfAmi: 25, + householdSize: 1, + income: 29475, + }, + { + percentOfAmi: 25, + householdSize: 2, + income: 33700, + }, + { + percentOfAmi: 25, + householdSize: 3, + income: 37925, + }, + { + percentOfAmi: 25, + householdSize: 4, + income: 41125, + }, + { + percentOfAmi: 25, + householdSize: 5, + income: 45500, + }, + { + percentOfAmi: 25, + householdSize: 6, + income: 48875, + }, + { + percentOfAmi: 25, + householdSize: 7, + income: 52225, + }, + { + percentOfAmi: 25, + householdSize: 8, + income: 55600, + }, + { + percentOfAmi: 30, + householdSize: 1, + income: 35370, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 40440, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 45510, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 50550, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 54600, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 58650, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 62670, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 66720, + }, + { + percentOfAmi: 35, + householdSize: 1, + income: 41265, + }, + { + percentOfAmi: 35, + householdSize: 2, + income: 47180, + }, + { + percentOfAmi: 35, + householdSize: 3, + income: 53095, + }, + { + percentOfAmi: 35, + householdSize: 4, + income: 58975, + }, + { + percentOfAmi: 35, + householdSize: 5, + income: 63700, + }, + { + percentOfAmi: 35, + householdSize: 6, + income: 68425, + }, + { + percentOfAmi: 35, + householdSize: 7, + income: 73115, + }, + { + percentOfAmi: 35, + householdSize: 8, + income: 77840, + }, + { + percentOfAmi: 40, + householdSize: 1, + income: 47160, + }, + { + percentOfAmi: 40, + householdSize: 2, + income: 53920, + }, + { + percentOfAmi: 40, + householdSize: 3, + income: 60680, + }, + { + percentOfAmi: 40, + householdSize: 4, + income: 67400, + }, + { + percentOfAmi: 40, + householdSize: 5, + income: 72800, + }, + { + percentOfAmi: 40, + householdSize: 6, + income: 78200, + }, + { + percentOfAmi: 40, + householdSize: 7, + income: 83560, + }, + { + percentOfAmi: 40, + householdSize: 8, + income: 88960, + }, + { + percentOfAmi: 45, + householdSize: 1, + income: 53055, + }, + { + percentOfAmi: 45, + householdSize: 2, + income: 60660, + }, + { + percentOfAmi: 45, + householdSize: 3, + income: 68265, + }, + { + percentOfAmi: 45, + householdSize: 4, + income: 75825, + }, + { + percentOfAmi: 45, + householdSize: 5, + income: 81900, + }, + { + percentOfAmi: 45, + householdSize: 6, + income: 87975, + }, + { + percentOfAmi: 45, + householdSize: 7, + income: 94005, + }, + { + percentOfAmi: 45, + householdSize: 8, + income: 100080, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 58950, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 67400, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 75850, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 84250, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 9100, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 97750, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 104450, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 111200, + }, + { + percentOfAmi: 55, + householdSize: 1, + income: 58950, + }, + { + percentOfAmi: 55, + householdSize: 2, + income: 67400, + }, + { + percentOfAmi: 55, + householdSize: 3, + income: 75850, + }, + { + percentOfAmi: 55, + householdSize: 4, + income: 84250, + }, + { + percentOfAmi: 55, + householdSize: 5, + income: 91000, + }, + { + percentOfAmi: 55, + householdSize: 6, + income: 97750, + }, + { + percentOfAmi: 55, + householdSize: 7, + income: 104450, + }, + { + percentOfAmi: 55, + householdSize: 8, + income: 111200, + }, + { + percentOfAmi: 60, + householdSize: 1, + income: 70740, + }, + { + percentOfAmi: 60, + householdSize: 2, + income: 80880, + }, + { + percentOfAmi: 60, + householdSize: 3, + income: 91020, + }, + { + percentOfAmi: 60, + householdSize: 4, + income: 101100, + }, + { + percentOfAmi: 60, + householdSize: 5, + income: 109200, + }, + { + percentOfAmi: 60, + householdSize: 6, + income: 117300, + }, + { + percentOfAmi: 60, + householdSize: 7, + income: 125340, + }, + { + percentOfAmi: 60, + householdSize: 8, + income: 133440, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 94320, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 107840, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 121360, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 134800, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 145600, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 156400, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 167120, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 177920, + }, + { + percentOfAmi: 100, + householdSize: 1, + income: 117900, + }, + { + percentOfAmi: 100, + householdSize: 2, + income: 134800, + }, + { + percentOfAmi: 100, + householdSize: 3, + income: 151700, + }, + { + percentOfAmi: 100, + householdSize: 4, + income: 168500, + }, + { + percentOfAmi: 100, + householdSize: 5, + income: 182000, + }, + { + percentOfAmi: 100, + householdSize: 6, + income: 195500, + }, + { + percentOfAmi: 100, + householdSize: 7, + income: 208900, + }, + { + percentOfAmi: 100, + householdSize: 8, + income: 222400, + }, + { + percentOfAmi: 110, + householdSize: 1, + income: 129690, + }, + { + percentOfAmi: 110, + householdSize: 2, + income: 148280, + }, + { + percentOfAmi: 110, + householdSize: 3, + income: 166870, + }, + { + percentOfAmi: 110, + householdSize: 4, + income: 185350, + }, + { + percentOfAmi: 110, + householdSize: 5, + income: 200200, + }, + { + percentOfAmi: 110, + householdSize: 6, + income: 215050, + }, + { + percentOfAmi: 110, + householdSize: 7, + income: 229790, + }, + { + percentOfAmi: 110, + householdSize: 8, + income: 244640, + }, + { + percentOfAmi: 120, + householdSize: 1, + income: 141480, + }, + { + percentOfAmi: 120, + householdSize: 2, + income: 161760, + }, + { + percentOfAmi: 120, + householdSize: 3, + income: 182040, + }, + { + percentOfAmi: 120, + householdSize: 4, + income: 202200, + }, + { + percentOfAmi: 120, + householdSize: 5, + income: 218400, + }, + { + percentOfAmi: 120, + householdSize: 6, + income: 234600, + }, + { + percentOfAmi: 120, + householdSize: 7, + income: 250680, + }, + { + percentOfAmi: 120, + householdSize: 8, + income: 266880, + }, + ], +} diff --git a/backend/core/src/seeder/seeds/ami-charts/san-jose-hud-home-2022.ts b/backend/core/src/seeder/seeds/ami-charts/san-jose-hud-home-2022.ts new file mode 100644 index 0000000000..589a0cd34b --- /dev/null +++ b/backend/core/src/seeder/seeds/ami-charts/san-jose-hud-home-2022.ts @@ -0,0 +1,89 @@ +import { AmiChartCreateDto } from "../../../ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" + +// THIS FILE WAS AUTOMATICALLY GENERATED FROM san-jose-hud-home-2022.txt. +export const sanJoseHudHome2022: Omit = { + name: "San Jose HUD/HOME 2022", + items: [ + { + percentOfAmi: 30, + householdSize: 1, + income: 35400, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 40450, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 45500, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 50550, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 54600, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 58650, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 62700, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 66750, + }, + { + percentOfAmi: 60, + householdSize: 1, + income: 70800, + }, + { + percentOfAmi: 60, + householdSize: 2, + income: 80880, + }, + { + percentOfAmi: 60, + householdSize: 3, + income: 91020, + }, + { + percentOfAmi: 60, + householdSize: 4, + income: 101100, + }, + { + percentOfAmi: 60, + householdSize: 5, + income: 109200, + }, + { + percentOfAmi: 60, + householdSize: 6, + income: 117300, + }, + { + percentOfAmi: 60, + householdSize: 7, + income: 125400, + }, + { + percentOfAmi: 60, + householdSize: 8, + income: 133500, + }, + ], +} diff --git a/backend/core/src/seeder/seeds/ami-charts/sanMateoHUD.ts b/backend/core/src/seeder/seeds/ami-charts/sanMateoHUD.ts new file mode 100644 index 0000000000..84124edaea --- /dev/null +++ b/backend/core/src/seeder/seeds/ami-charts/sanMateoHUD.ts @@ -0,0 +1,209 @@ +import { AmiChartCreateDto } from "../../../ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" + +// THIS FILE WAS AUTOMATICALLY GENERATED FROM a.txt. +export const sanMateoHUD: Omit = { + name: "San Mateo County HUD 2022", + items: [ + { + percentOfAmi: 30, + householdSize: 1, + income: 39150, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 44750, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 50350, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 55900, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 60400, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 64850, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 69350, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 73800, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 65250, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 74600, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 83900, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 93200, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 100700, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 108150, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 115600, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 123050, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 104400, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 119300, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 134200, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 149100, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 161050, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 173000, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 184900, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 196850, + }, + { + percentOfAmi: 100, + householdSize: 1, + income: 116200, + }, + { + percentOfAmi: 100, + householdSize: 2, + income: 132800, + }, + { + percentOfAmi: 100, + householdSize: 3, + income: 149400, + }, + { + percentOfAmi: 100, + householdSize: 4, + income: 166000, + }, + { + percentOfAmi: 100, + householdSize: 5, + income: 179300, + }, + { + percentOfAmi: 100, + householdSize: 6, + income: 192550, + }, + { + percentOfAmi: 100, + householdSize: 7, + income: 205850, + }, + { + percentOfAmi: 100, + householdSize: 8, + income: 219100, + }, + { + percentOfAmi: 120, + householdSize: 1, + income: 139450, + }, + { + percentOfAmi: 120, + householdSize: 2, + income: 159350, + }, + { + percentOfAmi: 120, + householdSize: 3, + income: 179300, + }, + { + percentOfAmi: 120, + householdSize: 4, + income: 199200, + }, + { + percentOfAmi: 120, + householdSize: 5, + income: 215150, + }, + { + percentOfAmi: 120, + householdSize: 6, + income: 231050, + }, + { + percentOfAmi: 120, + householdSize: 7, + income: 247000, + }, + { + percentOfAmi: 120, + householdSize: 8, + income: 262950, + }, + ], +} diff --git a/backend/core/src/seeder/seeds/ami-charts/sanMateoTCAC.ts b/backend/core/src/seeder/seeds/ami-charts/sanMateoTCAC.ts new file mode 100644 index 0000000000..c863a31103 --- /dev/null +++ b/backend/core/src/seeder/seeds/ami-charts/sanMateoTCAC.ts @@ -0,0 +1,449 @@ +import { AmiChartCreateDto } from "../../../ami-charts/dto/ami-chart.dto" +import { BaseEntity } from "typeorm" + +// THIS FILE WAS AUTOMATICALLY GENERATED FROM b.txt. +export const sanMateoTCAC: Omit = { + name: "San Mateo County TCAC", + items: [ + { + percentOfAmi: 20, + householdSize: 1, + income: 26100, + }, + { + percentOfAmi: 20, + householdSize: 2, + income: 29840, + }, + { + percentOfAmi: 20, + householdSize: 3, + income: 33560, + }, + { + percentOfAmi: 20, + householdSize: 4, + income: 37280, + }, + { + percentOfAmi: 20, + householdSize: 5, + income: 40280, + }, + { + percentOfAmi: 20, + householdSize: 6, + income: 43260, + }, + { + percentOfAmi: 20, + householdSize: 7, + income: 46240, + }, + { + percentOfAmi: 20, + householdSize: 8, + income: 49220, + }, + { + percentOfAmi: 30, + householdSize: 1, + income: 39150, + }, + { + percentOfAmi: 30, + householdSize: 2, + income: 44760, + }, + { + percentOfAmi: 30, + householdSize: 3, + income: 50340, + }, + { + percentOfAmi: 30, + householdSize: 4, + income: 55920, + }, + { + percentOfAmi: 30, + householdSize: 5, + income: 60420, + }, + { + percentOfAmi: 30, + householdSize: 6, + income: 64890, + }, + { + percentOfAmi: 30, + householdSize: 7, + income: 69360, + }, + { + percentOfAmi: 30, + householdSize: 8, + income: 73830, + }, + { + percentOfAmi: 35, + householdSize: 1, + income: 45675, + }, + { + percentOfAmi: 35, + householdSize: 2, + income: 52220, + }, + { + percentOfAmi: 35, + householdSize: 3, + income: 58730, + }, + { + percentOfAmi: 35, + householdSize: 4, + income: 65240, + }, + { + percentOfAmi: 35, + householdSize: 5, + income: 70490, + }, + { + percentOfAmi: 35, + householdSize: 6, + income: 75705, + }, + { + percentOfAmi: 35, + householdSize: 7, + income: 80920, + }, + { + percentOfAmi: 35, + householdSize: 8, + income: 86125, + }, + { + percentOfAmi: 40, + householdSize: 1, + income: 52200, + }, + { + percentOfAmi: 40, + householdSize: 2, + income: 59680, + }, + { + percentOfAmi: 40, + householdSize: 3, + income: 67120, + }, + { + percentOfAmi: 40, + householdSize: 4, + income: 74560, + }, + { + percentOfAmi: 40, + householdSize: 5, + income: 80560, + }, + { + percentOfAmi: 40, + householdSize: 6, + income: 86520, + }, + { + percentOfAmi: 40, + householdSize: 7, + income: 92480, + }, + { + percentOfAmi: 40, + householdSize: 8, + income: 98440, + }, + { + percentOfAmi: 45, + householdSize: 1, + income: 58725, + }, + { + percentOfAmi: 45, + householdSize: 2, + income: 67140, + }, + { + percentOfAmi: 45, + householdSize: 3, + income: 75510, + }, + { + percentOfAmi: 45, + householdSize: 4, + income: 83880, + }, + { + percentOfAmi: 45, + householdSize: 5, + income: 90630, + }, + { + percentOfAmi: 45, + householdSize: 6, + income: 97335, + }, + { + percentOfAmi: 45, + householdSize: 7, + income: 104040, + }, + { + percentOfAmi: 45, + householdSize: 8, + income: 110745, + }, + { + percentOfAmi: 50, + householdSize: 1, + income: 65250, + }, + { + percentOfAmi: 50, + householdSize: 2, + income: 74600, + }, + { + percentOfAmi: 50, + householdSize: 3, + income: 83900, + }, + { + percentOfAmi: 50, + householdSize: 4, + income: 93200, + }, + { + percentOfAmi: 50, + householdSize: 5, + income: 10700, + }, + { + percentOfAmi: 50, + householdSize: 6, + income: 108150, + }, + { + percentOfAmi: 50, + householdSize: 7, + income: 115600, + }, + { + percentOfAmi: 50, + householdSize: 8, + income: 123050, + }, + { + percentOfAmi: 55, + householdSize: 1, + income: 71775, + }, + { + percentOfAmi: 55, + householdSize: 2, + income: 82060, + }, + { + percentOfAmi: 55, + householdSize: 3, + income: 92290, + }, + { + percentOfAmi: 55, + householdSize: 4, + income: 102520, + }, + { + percentOfAmi: 55, + householdSize: 5, + income: 110770, + }, + { + percentOfAmi: 55, + householdSize: 6, + income: 118965, + }, + { + percentOfAmi: 55, + householdSize: 7, + income: 127160, + }, + { + percentOfAmi: 55, + householdSize: 8, + income: 135355, + }, + { + percentOfAmi: 60, + householdSize: 1, + income: 78300, + }, + { + percentOfAmi: 60, + householdSize: 2, + income: 89520, + }, + { + percentOfAmi: 60, + householdSize: 3, + income: 100680, + }, + { + percentOfAmi: 60, + householdSize: 4, + income: 111840, + }, + { + percentOfAmi: 60, + householdSize: 5, + income: 120840, + }, + { + percentOfAmi: 60, + householdSize: 6, + income: 129780, + }, + { + percentOfAmi: 60, + householdSize: 7, + income: 138320, + }, + { + percentOfAmi: 60, + householdSize: 8, + income: 147660, + }, + { + percentOfAmi: 70, + householdSize: 1, + income: 91350, + }, + { + percentOfAmi: 70, + householdSize: 2, + income: 104440, + }, + { + percentOfAmi: 70, + householdSize: 3, + income: 117460, + }, + { + percentOfAmi: 70, + householdSize: 4, + income: 130480, + }, + { + percentOfAmi: 70, + householdSize: 5, + income: 140980, + }, + { + percentOfAmi: 70, + householdSize: 6, + income: 151410, + }, + { + percentOfAmi: 70, + householdSize: 7, + income: 161840, + }, + { + percentOfAmi: 70, + householdSize: 8, + income: 172270, + }, + { + percentOfAmi: 80, + householdSize: 1, + income: 104400, + }, + { + percentOfAmi: 80, + householdSize: 2, + income: 119360, + }, + { + percentOfAmi: 80, + householdSize: 3, + income: 134240, + }, + { + percentOfAmi: 80, + householdSize: 4, + income: 149129, + }, + { + percentOfAmi: 80, + householdSize: 5, + income: 161120, + }, + { + percentOfAmi: 80, + householdSize: 6, + income: 173040, + }, + { + percentOfAmi: 80, + householdSize: 7, + income: 184960, + }, + { + percentOfAmi: 80, + householdSize: 8, + income: 196880, + }, + { + percentOfAmi: 100, + householdSize: 1, + income: 130500, + }, + { + percentOfAmi: 100, + householdSize: 2, + income: 149200, + }, + { + percentOfAmi: 100, + householdSize: 3, + income: 167800, + }, + { + percentOfAmi: 100, + householdSize: 4, + income: 186400, + }, + { + percentOfAmi: 100, + householdSize: 5, + income: 201400, + }, + { + percentOfAmi: 100, + householdSize: 6, + income: 216300, + }, + { + percentOfAmi: 100, + householdSize: 7, + income: 231200, + }, + { + percentOfAmi: 100, + householdSize: 8, + income: 246100, + }, + ], +} diff --git a/backend/core/src/translations/services/translations.service.ts b/backend/core/src/translations/services/translations.service.ts index 2603290401..40a7e33691 100644 --- a/backend/core/src/translations/services/translations.service.ts +++ b/backend/core/src/translations/services/translations.service.ts @@ -91,6 +91,7 @@ export class TranslationsService extends AbstractServiceFactory< "servicesOffered", "smokingPolicy", "unitAmenities", + "whatToExpect", ] for (let i = 0; i < listing.events.length; i++) { diff --git a/backend/core/test/applications/applications.e2e-spec.ts b/backend/core/test/applications/applications.e2e-spec.ts index 32883556d1..9fff1a703f 100644 --- a/backend/core/test/applications/applications.e2e-spec.ts +++ b/backend/core/test/applications/applications.e2e-spec.ts @@ -629,7 +629,7 @@ describe("Applications", () => { .send(body) .set(...setAuthorization(user1AccessToken)) .expect(400) - expect(res.body.message).toBe("Listing is not open for application submission.") + expect(res.body.message).toBe(`Listing ${listing1Id} is not open for application submission.`) listing.applicationDueDate = oldApplicationDueDate await supertest(app.getHttpServer()) diff --git a/backend/core/test/listings/listings.e2e-spec.ts b/backend/core/test/listings/listings.e2e-spec.ts index e9ca472917..b353e9571d 100644 --- a/backend/core/test/listings/listings.e2e-spec.ts +++ b/backend/core/test/listings/listings.e2e-spec.ts @@ -221,6 +221,18 @@ describe("Listings", () => { expect(modifiedListing.units[0].maxOccupancy).toBe(oldOccupancy + 1) }) + it("should add county to new listing", async () => { + const sanJoseJurisdiction = (await jurisdictionsRepository.findBy({ name: "San Jose" }))[0] + const newListingCreateDto = makeTestListing(sanJoseJurisdiction.id) + + newListingCreateDto.name = "new-listing" + const listingResponse = await supertest(app.getHttpServer()) + .post(`/listings`) + .send(newListingCreateDto) + .set(...setAuthorization(adminAccessToken)) + expect(listingResponse.body.buildingAddress.county).toBe("Santa Clara") + }) + it("should add/overwrite image in existing listing", async () => { const res = await supertest(app.getHttpServer()).get("/listings").expect(200) diff --git a/backend/core/test/utils/make-test-listing.ts b/backend/core/test/utils/make-test-listing.ts index 1e40e8310a..ef948947a6 100644 --- a/backend/core/test/utils/make-test-listing.ts +++ b/backend/core/test/utils/make-test-listing.ts @@ -44,7 +44,7 @@ export function makeTestListing(jurisdictionId: string): Omit implements IPagedResult { // customer definition // empty -export class AmiChartsService { +export class AuthService { /** - * List amiCharts + * Login */ - list( + login( params: { - /** */ - jurisdictionName?: string - /** */ - jurisdictionId?: string + /** requestBody */ + body?: Login } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/amiCharts" + let url = basePath + "/auth/login" - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - configs.params = { - jurisdictionName: params["jurisdictionName"], - jurisdictionId: params["jurisdictionId"], - } - let data = null + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + + let data = params.body configs.data = data axios(configs, resolve, reject) }) } /** - * Create amiChart + * Logout */ - create( - params: { - /** requestBody */ - body?: AmiChartCreate - } = {} as any, - options: IRequestOptions = {} - ): Promise { + logout(options: IRequestOptions = {}): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/amiCharts" + let url = basePath + "/auth/logout" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - let data = params.body + let data = null configs.data = data axios(configs, resolve, reject) }) } /** - * Delete amiChart by id + * Request mfa code */ - delete( + requestMfaCode( params: { /** requestBody */ - body?: Id + body?: RequestMfaCode } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/amiCharts" + let url = basePath + "/auth/request-mfa-code" - const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -159,19 +148,19 @@ export class AmiChartsService { }) } /** - * Update amiChart + * Get mfa info */ - update( + getMfaInfo( params: { /** requestBody */ - body?: AmiChartUpdate + body?: GetMfaInfo } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/amiCharts/{amiChartId}" + let url = basePath + "/auth/mfa-info" - const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -180,18 +169,11 @@ export class AmiChartsService { }) } /** - * Get amiChart by id + * Requests a new token given a refresh token */ - retrieve( - params: { - /** */ - amiChartId: string - } = {} as any, - options: IRequestOptions = {} - ): Promise { + requestNewToken(options: IRequestOptions = {}): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/amiCharts/{amiChartId}" - url = url.replace("{amiChartId}", params["amiChartId"] + "") + let url = basePath + "/auth/requestNewToken" const configs: IRequestConfig = getConfigs("get", "application/json", url, options) @@ -203,33 +185,16 @@ export class AmiChartsService { } } -export class ApplicationFlaggedSetsService { +export class UserService { /** - * Meta information for application flagged sets + * */ - meta( - params: { - /** */ - page?: number - /** */ - limit?: number - /** */ - listingId: string - /** */ - view?: string - } = {} as any, - options: IRequestOptions = {} - ): Promise { + userControllerProfile(options: IRequestOptions = {}): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationFlaggedSets/meta" + let url = basePath + "/user" const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - configs.params = { - page: params["page"], - limit: params["limit"], - listingId: params["listingId"], - view: params["view"], - } + let data = null configs.data = data @@ -237,71 +202,61 @@ export class ApplicationFlaggedSetsService { }) } /** - * List application flagged sets + * Create user */ - list( + create( params: { /** */ - page?: number - /** */ - limit?: number - /** */ - listingId: string - /** */ - view?: string + noWelcomeEmail?: boolean + /** requestBody */ + body?: UserCreate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationFlaggedSets" + let url = basePath + "/user" - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - configs.params = { - page: params["page"], - limit: params["limit"], - listingId: params["listingId"], - view: params["view"], - } - let data = null + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + configs.params = { noWelcomeEmail: params["noWelcomeEmail"] } + let data = params.body configs.data = data axios(configs, resolve, reject) }) } /** - * Retrieve application flagged set by id + * Delete user by id */ - retrieve( + delete( params: { - /** */ - afsId: string + /** requestBody */ + body?: Id } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationFlaggedSets/{afsId}" - url = url.replace("{afsId}", params["afsId"] + "") + let url = basePath + "/user" - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) - let data = null + let data = params.body configs.data = data axios(configs, resolve, reject) }) } /** - * Resolve application flagged set + * Resend confirmation */ - resolve( + resendPartnerConfirmation( params: { /** requestBody */ - body?: ApplicationFlaggedSetResolve + body?: Email } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationFlaggedSets/resolve" + let url = basePath + "/user/resend-partner-confirmation" const configs: IRequestConfig = getConfigs("post", "application/json", url, options) @@ -312,19 +267,19 @@ export class ApplicationFlaggedSetsService { }) } /** - * Reset flagged set confirmation alert + * Verifies token is valid */ - resetConfirmationAlert( + isUserConfirmationTokenValid( params: { /** requestBody */ - body?: Id + body?: Confirm } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationFlaggedSets/{id}" + let url = basePath + "/user/is-confirmation-token-valid" - const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -333,52 +288,61 @@ export class ApplicationFlaggedSetsService { }) } /** - * Trigger the duplicate check process + * Resend confirmation */ - process(options: IRequestOptions = {}): Promise { + resendConfirmation( + params: { + /** requestBody */ + body?: Email + } = {} as any, + options: IRequestOptions = {} + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationFlaggedSets/process" + let url = basePath + "/user/resend-confirmation" const configs: IRequestConfig = getConfigs("post", "application/json", url, options) - let data = null + let data = params.body configs.data = data axios(configs, resolve, reject) }) } -} - -export class ApplicationMethodsService { /** - * List applicationMethods + * Confirm email */ - list(options: IRequestOptions = {}): Promise { + confirm( + params: { + /** requestBody */ + body?: Confirm + } = {} as any, + options: IRequestOptions = {} + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationMethods" + let url = basePath + "/user/confirm" - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + const configs: IRequestConfig = getConfigs("put", "application/json", url, options) - let data = null + let data = params.body configs.data = data axios(configs, resolve, reject) }) } /** - * Create applicationMethod + * Forgot Password */ - create( + forgotPassword( params: { /** requestBody */ - body?: ApplicationMethodCreate + body?: ForgotPassword } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationMethods" + let url = basePath + "/user/forgot-password" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("put", "application/json", url, options) let data = params.body @@ -387,19 +351,19 @@ export class ApplicationMethodsService { }) } /** - * Delete applicationMethod by id + * Update Password */ - delete( + updatePassword( params: { /** requestBody */ - body?: Id + body?: UpdatePassword } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationMethods" + let url = basePath + "/user/update-password" - const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) + const configs: IRequestConfig = getConfigs("put", "application/json", url, options) let data = params.body @@ -408,17 +372,17 @@ export class ApplicationMethodsService { }) } /** - * Update applicationMethod + * Update user */ update( params: { /** requestBody */ - body?: ApplicationMethodUpdate + body?: UserUpdate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationMethods/{applicationMethodId}" + let url = basePath + "/user/{id}" const configs: IRequestConfig = getConfigs("put", "application/json", url, options) @@ -429,18 +393,18 @@ export class ApplicationMethodsService { }) } /** - * Get applicationMethod by id + * Get user by id */ retrieve( params: { /** */ - applicationMethodId: string + id: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applicationMethods/{applicationMethodId}" - url = url.replace("{applicationMethodId}", params["applicationMethodId"] + "") + let url = basePath + "/user/{id}" + url = url.replace("{id}", params["id"] + "") const configs: IRequestConfig = getConfigs("get", "application/json", url, options) @@ -450,46 +414,31 @@ export class ApplicationMethodsService { axios(configs, resolve, reject) }) } -} - -export class ApplicationsService { /** - * List applications + * List users */ list( params: { /** */ page?: number /** */ - limit?: number + limit?: number | "all" /** */ - listingId?: string + filter?: UserFilterParams[] /** */ search?: string - /** */ - userId?: string - /** */ - orderBy?: string - /** */ - order?: string - /** */ - markedAsDuplicate?: boolean } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications" + let url = basePath + "/user/list" const configs: IRequestConfig = getConfigs("get", "application/json", url, options) configs.params = { page: params["page"], limit: params["limit"], - listingId: params["listingId"], + filter: params["filter"], search: params["search"], - userId: params["userId"], - orderBy: params["orderBy"], - order: params["order"], - markedAsDuplicate: params["markedAsDuplicate"], } let data = null @@ -498,40 +447,34 @@ export class ApplicationsService { }) } /** - * Create application + * List users in CSV */ - create( - params: { - /** requestBody */ - body?: ApplicationCreate - } = {} as any, - options: IRequestOptions = {} - ): Promise { + listAsCsv(options: IRequestOptions = {}): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications" + let url = basePath + "/user/csv" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - let data = params.body + let data = null configs.data = data axios(configs, resolve, reject) }) } /** - * Delete application by id + * Invite user */ - delete( + invite( params: { /** requestBody */ - body?: Id + body?: UserInvite } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications" + let url = basePath + "/user/invite" - const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -539,72 +482,53 @@ export class ApplicationsService { axios(configs, resolve, reject) }) } +} + +export class UserProfileService { /** - * List applications as csv + * Update profile user */ - listAsCsv( + update( params: { - /** */ - page?: number - /** */ - limit?: number - /** */ - search?: string - /** */ - userId?: string - /** */ - orderBy?: string - /** */ - order?: string - /** */ - markedAsDuplicate?: boolean - /** */ - listingId: string - /** */ - timeZone?: string - /** */ - includeDemographics?: boolean + /** requestBody */ + body?: UserProfileUpdate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications/csv" + let url = basePath + "/userProfile/{id}" - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - configs.params = { - page: params["page"], - limit: params["limit"], - search: params["search"], - userId: params["userId"], - orderBy: params["orderBy"], - order: params["order"], - markedAsDuplicate: params["markedAsDuplicate"], - listingId: params["listingId"], - timeZone: params["timeZone"], - includeDemographics: params["includeDemographics"], - } - let data = null + const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + + let data = params.body configs.data = data axios(configs, resolve, reject) }) } +} + +export class AmiChartsService { /** - * Get application by id + * List amiCharts */ - retrieve( + list( params: { /** */ - id: string + jurisdictionName?: string + /** */ + jurisdictionId?: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications/{id}" - url = url.replace("{id}", params["id"] + "") + let url = basePath + "/amiCharts" const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - + configs.params = { + jurisdictionName: params["jurisdictionName"], + jurisdictionId: params["jurisdictionId"], + } let data = null configs.data = data @@ -612,22 +536,19 @@ export class ApplicationsService { }) } /** - * Update application by id + * Create amiChart */ - update( + create( params: { - /** */ - id: string /** requestBody */ - body?: ApplicationUpdate + body?: AmiChartCreate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications/{id}" - url = url.replace("{id}", params["id"] + "") + let url = basePath + "/amiCharts" - const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -636,19 +557,19 @@ export class ApplicationsService { }) } /** - * Submit application + * Delete amiChart by id */ - submit( + delete( params: { /** requestBody */ - body?: ApplicationCreate + body?: Id } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications/submit" + let url = basePath + "/amiCharts" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) let data = params.body @@ -657,19 +578,19 @@ export class ApplicationsService { }) } /** - * Verify application can be saved + * Update amiChart */ - submissionValidation( + update( params: { /** requestBody */ - body?: ApplicationCreate + body?: AmiChartUpdate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/applications/verify" + let url = basePath + "/amiCharts/{amiChartId}" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("put", "application/json", url, options) let data = params.body @@ -677,47 +598,57 @@ export class ApplicationsService { axios(configs, resolve, reject) }) } -} - -export class AssetsService { /** - * Create asset + * Get amiChart by id */ - create( + retrieve( params: { - /** requestBody */ - body?: AssetCreate + /** */ + amiChartId: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/assets" + let url = basePath + "/amiCharts/{amiChartId}" + url = url.replace("{amiChartId}", params["amiChartId"] + "") - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - let data = params.body + let data = null configs.data = data axios(configs, resolve, reject) }) } +} + +export class ApplicationFlaggedSetsService { /** - * List assets + * Meta information for application flagged sets */ - list( + meta( params: { /** */ page?: number /** */ limit?: number + /** */ + listingId: string + /** */ + view?: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/assets" + let url = basePath + "/applicationFlaggedSets/meta" const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - configs.params = { page: params["page"], limit: params["limit"] } + configs.params = { + page: params["page"], + limit: params["limit"], + listingId: params["listingId"], + view: params["view"], + } let data = null configs.data = data @@ -725,39 +656,50 @@ export class AssetsService { }) } /** - * Create presigned upload metadata + * List application flagged sets */ - createPresignedUploadMetadata( + list( params: { - /** requestBody */ - body?: CreatePresignedUploadMetadata + /** */ + page?: number + /** */ + limit?: number + /** */ + listingId: string + /** */ + view?: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/assets/presigned-upload-metadata" - - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + let url = basePath + "/applicationFlaggedSets" - let data = params.body + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + configs.params = { + page: params["page"], + limit: params["limit"], + listingId: params["listingId"], + view: params["view"], + } + let data = null configs.data = data axios(configs, resolve, reject) }) } /** - * Get asset by id + * Retrieve application flagged set by id */ retrieve( params: { /** */ - assetId: string + afsId: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/assets/{assetId}" - url = url.replace("{assetId}", params["assetId"] + "") + let url = basePath + "/applicationFlaggedSets/{afsId}" + url = url.replace("{afsId}", params["afsId"] + "") const configs: IRequestConfig = getConfigs("get", "application/json", url, options) @@ -767,21 +709,18 @@ export class AssetsService { axios(configs, resolve, reject) }) } -} - -export class AuthService { /** - * Login + * Resolve application flagged set */ - login( + resolve( params: { /** requestBody */ - body?: Login + body?: ApplicationFlaggedSetResolve } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/auth/login" + let url = basePath + "/applicationFlaggedSets/resolve" const configs: IRequestConfig = getConfigs("post", "application/json", url, options) @@ -792,11 +731,50 @@ export class AuthService { }) } /** - * Logout + * Reset flagged set confirmation alert */ - logout(options: IRequestOptions = {}): Promise { - return new Promise((resolve, reject) => { - let url = basePath + "/auth/logout" + resetConfirmationAlert( + params: { + /** requestBody */ + body?: Id + } = {} as any, + options: IRequestOptions = {} + ): Promise { + return new Promise((resolve, reject) => { + let url = basePath + "/applicationFlaggedSets/{id}" + + const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + + let data = params.body + + configs.data = data + axios(configs, resolve, reject) + }) + } + /** + * Trigger the duplicate check process + */ + process(options: IRequestOptions = {}): Promise { + return new Promise((resolve, reject) => { + let url = basePath + "/applicationFlaggedSets/process" + + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + + let data = null + + configs.data = data + axios(configs, resolve, reject) + }) + } +} + +export class ApplicationMethodsService { + /** + * List applicationMethods + */ + list(options: IRequestOptions = {}): Promise { + return new Promise((resolve, reject) => { + let url = basePath + "/applicationMethods" const configs: IRequestConfig = getConfigs("get", "application/json", url, options) @@ -807,17 +785,17 @@ export class AuthService { }) } /** - * Request mfa code + * Create applicationMethod */ - requestMfaCode( + create( params: { /** requestBody */ - body?: RequestMfaCode + body?: ApplicationMethodCreate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/auth/request-mfa-code" + let url = basePath + "/applicationMethods" const configs: IRequestConfig = getConfigs("post", "application/json", url, options) @@ -828,19 +806,19 @@ export class AuthService { }) } /** - * Get mfa info + * Delete applicationMethod by id */ - getMfaInfo( + delete( params: { /** requestBody */ - body?: GetMfaInfo + body?: Id } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/auth/mfa-info" + let url = basePath + "/applicationMethods" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) let data = params.body @@ -849,29 +827,39 @@ export class AuthService { }) } /** - * Requests a new token given a refresh token + * Update applicationMethod */ - requestNewToken(options: IRequestOptions = {}): Promise { + update( + params: { + /** requestBody */ + body?: ApplicationMethodUpdate + } = {} as any, + options: IRequestOptions = {} + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/auth/requestNewToken" + let url = basePath + "/applicationMethods/{applicationMethodId}" - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + const configs: IRequestConfig = getConfigs("put", "application/json", url, options) - let data = null + let data = params.body configs.data = data axios(configs, resolve, reject) }) } -} - -export class UserService { /** - * + * Get applicationMethod by id */ - userControllerProfile(options: IRequestOptions = {}): Promise { + retrieve( + params: { + /** */ + applicationMethodId: string + } = {} as any, + options: IRequestOptions = {} + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user" + let url = basePath + "/applicationMethods/{applicationMethodId}" + url = url.replace("{applicationMethodId}", params["applicationMethodId"] + "") const configs: IRequestConfig = getConfigs("get", "application/json", url, options) @@ -881,43 +869,67 @@ export class UserService { axios(configs, resolve, reject) }) } +} + +export class ApplicationsService { /** - * Create user + * List applications */ - create( + list( params: { /** */ - noWelcomeEmail?: boolean - /** requestBody */ - body?: UserCreate + page?: number + /** */ + limit?: number + /** */ + listingId?: string + /** */ + search?: string + /** */ + userId?: string + /** */ + orderBy?: string + /** */ + order?: string + /** */ + markedAsDuplicate?: boolean } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user" + let url = basePath + "/applications" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) - configs.params = { noWelcomeEmail: params["noWelcomeEmail"] } - let data = params.body + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + configs.params = { + page: params["page"], + limit: params["limit"], + listingId: params["listingId"], + search: params["search"], + userId: params["userId"], + orderBy: params["orderBy"], + order: params["order"], + markedAsDuplicate: params["markedAsDuplicate"], + } + let data = null configs.data = data axios(configs, resolve, reject) }) } /** - * Delete user by id + * Create application */ - delete( + create( params: { /** requestBody */ - body?: Id + body?: ApplicationCreate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user" + let url = basePath + "/applications" - const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -926,19 +938,19 @@ export class UserService { }) } /** - * Resend confirmation + * Delete application by id */ - resendPartnerConfirmation( + delete( params: { /** requestBody */ - body?: Email + body?: Id } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/resend-partner-confirmation" + let url = basePath + "/applications" - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + const configs: IRequestConfig = getConfigs("delete", "application/json", url, options) let data = params.body @@ -947,80 +959,121 @@ export class UserService { }) } /** - * Verifies token is valid + * List applications as csv */ - isUserConfirmationTokenValid( + listAsCsv( params: { - /** requestBody */ - body?: Confirm + /** */ + page?: number + /** */ + limit?: number + /** */ + search?: string + /** */ + userId?: string + /** */ + orderBy?: string + /** */ + order?: string + /** */ + markedAsDuplicate?: boolean + /** */ + listingId: string + /** */ + timeZone?: string + /** */ + includeDemographics?: boolean } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/is-confirmation-token-valid" - - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + let url = basePath + "/applications/csv" - let data = params.body + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + configs.params = { + page: params["page"], + limit: params["limit"], + search: params["search"], + userId: params["userId"], + orderBy: params["orderBy"], + order: params["order"], + markedAsDuplicate: params["markedAsDuplicate"], + listingId: params["listingId"], + timeZone: params["timeZone"], + includeDemographics: params["includeDemographics"], + } + let data = null configs.data = data axios(configs, resolve, reject) }) } /** - * Resend confirmation + * Raw list of applications */ - resendConfirmation( + rawApplicationsList( params: { - /** requestBody */ - body?: Email + /** */ + listingId: string + /** */ + timeZone?: string + /** */ + includeDemographics?: boolean } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/resend-confirmation" - - const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + let url = basePath + "/applications/rawApplicationsList" - let data = params.body + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + configs.params = { + listingId: params["listingId"], + timeZone: params["timeZone"], + includeDemographics: params["includeDemographics"], + } + let data = null configs.data = data axios(configs, resolve, reject) }) } /** - * Confirm email + * Get application by id */ - confirm( + retrieve( params: { - /** requestBody */ - body?: Confirm + /** */ + id: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/confirm" + let url = basePath + "/applications/{id}" + url = url.replace("{id}", params["id"] + "") - const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - let data = params.body + let data = null configs.data = data axios(configs, resolve, reject) }) } /** - * Forgot Password + * Update application by id */ - forgotPassword( + update( params: { + /** */ + id: string /** requestBody */ - body?: ForgotPassword + body?: ApplicationUpdate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/forgot-password" + let url = basePath + "/applications/{id}" + url = url.replace("{id}", params["id"] + "") const configs: IRequestConfig = getConfigs("put", "application/json", url, options) @@ -1031,19 +1084,19 @@ export class UserService { }) } /** - * Update Password + * Submit application */ - updatePassword( + submit( params: { /** requestBody */ - body?: UpdatePassword + body?: ApplicationCreate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/update-password" + let url = basePath + "/applications/submit" - const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -1052,19 +1105,19 @@ export class UserService { }) } /** - * Update user + * Verify application can be saved */ - update( + submissionValidation( params: { /** requestBody */ - body?: UserUpdate + body?: ApplicationCreate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/{id}" + let url = basePath + "/applications/verify" - const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) let data = params.body @@ -1072,69 +1125,47 @@ export class UserService { axios(configs, resolve, reject) }) } +} + +export class AssetsService { /** - * Get user by id + * Create asset */ - retrieve( + create( params: { - /** */ - id: string + /** requestBody */ + body?: AssetCreate } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/{id}" - url = url.replace("{id}", params["id"] + "") + let url = basePath + "/assets" - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) - let data = null + let data = params.body configs.data = data axios(configs, resolve, reject) }) } /** - * List users + * List assets */ list( params: { /** */ page?: number /** */ - limit?: number | "all" - /** */ - filter?: UserFilterParams[] - /** */ - search?: string + limit?: number } = {} as any, options: IRequestOptions = {} - ): Promise { - return new Promise((resolve, reject) => { - let url = basePath + "/user/list" - - const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - configs.params = { - page: params["page"], - limit: params["limit"], - filter: params["filter"], - search: params["search"], - } - let data = null - - configs.data = data - axios(configs, resolve, reject) - }) - } - /** - * List users in CSV - */ - listAsCsv(options: IRequestOptions = {}): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/csv" + let url = basePath + "/assets" const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - + configs.params = { page: params["page"], limit: params["limit"] } let data = null configs.data = data @@ -1142,17 +1173,17 @@ export class UserService { }) } /** - * Invite user + * Create presigned upload metadata */ - invite( + createPresignedUploadMetadata( params: { /** requestBody */ - body?: UserInvite + body?: CreatePresignedUploadMetadata } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/user/invite" + let url = basePath + "/assets/presigned-upload-metadata" const configs: IRequestConfig = getConfigs("post", "application/json", url, options) @@ -1162,25 +1193,23 @@ export class UserService { axios(configs, resolve, reject) }) } -} - -export class UserProfileService { /** - * Update profile user + * Get asset by id */ - update( + retrieve( params: { - /** requestBody */ - body?: UserProfileUpdate + /** */ + assetId: string } = {} as any, options: IRequestOptions = {} - ): Promise { + ): Promise { return new Promise((resolve, reject) => { - let url = basePath + "/userProfile/{id}" + let url = basePath + "/assets/{assetId}" + url = url.replace("{assetId}", params["assetId"] + "") - const configs: IRequestConfig = getConfigs("put", "application/json", url, options) + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) - let data = params.body + let data = null configs.data = data axios(configs, resolve, reject) @@ -1418,6 +1447,30 @@ export class ListingsService { axios(configs, resolve, reject) }) } + /** + * Get listing for external consumption by id + */ + externalRetrieve( + params: { + /** */ + id: string + /** */ + view?: string + } = {} as any, + options: IRequestOptions = {} + ): Promise { + return new Promise((resolve, reject) => { + let url = basePath + "/listings/external/{id}" + url = url.replace("{id}", params["id"] + "") + + const configs: IRequestConfig = getConfigs("get", "application/json", url, options) + configs.params = { view: params["view"] } + let data = null + + configs.data = data + axios(configs, resolve, reject) + }) + } /** * Get listing by id */ @@ -2353,178 +2406,115 @@ export class MapLayersService { } } -export interface AmiChartItem { - /** */ - percentOfAmi: number - - /** */ - householdSize: number - - /** */ - income: number -} - -export interface Id { +export interface UserErrorExtraModel { /** */ - id: string + userErrorMessages: EnumUserErrorExtraModelUserErrorMessages } -export interface AmiChart { - /** */ - id: string - - /** */ - createdAt: Date - +export interface Login { /** */ - updatedAt: Date + email: string /** */ - items: AmiChartItem[] + password: string /** */ - name: string + mfaCode?: string /** */ - jurisdiction: Id + mfaType?: EnumLoginMfaType } -export interface AmiChartCreate { - /** */ - items: AmiChartItem[] - - /** */ - name: string - +export interface Status { /** */ - jurisdiction: Id + status: string } -export interface AmiChartUpdate { - /** */ - items: AmiChartItem[] - - /** */ - name: string - - /** */ - jurisdiction: Id - +export interface LogoutResponse { /** */ - id?: string + success: boolean } -export interface ApplicationFlaggedSetMeta { - /** */ - totalCount?: number - +export interface RequestMfaCode { /** */ - totalResolvedCount?: number + email: string /** */ - totalPendingCount?: number + password: string /** */ - totalNamePendingCount?: number + mfaType: EnumRequestMfaCodeMfaType /** */ - totalEmailPendingCount?: number + phoneNumber?: string } -export interface Address { - /** */ - id: string - - /** */ - createdAt: Date - - /** */ - updatedAt: Date - +export interface RequestMfaCodeResponse { /** */ - placeName?: string + phoneNumber?: string /** */ - city: string + email?: string /** */ - county?: string + phoneNumberVerified?: boolean +} +export interface GetMfaInfo { /** */ - state: string + email: string /** */ - street: string + password: string +} +export interface GetMfaInfoResponse { /** */ - street2?: string + phoneNumber?: string /** */ - zipCode: string + email?: string /** */ - latitude?: number + isMfaEnabled: boolean /** */ - longitude?: number + mfaUsedInThePast: boolean } -export interface Applicant { - /** */ - address: Address - - /** */ - workAddress: Address - +export interface IdName { /** */ id: string /** */ - createdAt: Date - - /** */ - updatedAt: Date - - /** */ - firstName?: string - - /** */ - middleName?: string - - /** */ - lastName?: string - - /** */ - birthMonth?: string - - /** */ - birthDay?: string - - /** */ - birthYear?: string + name: string +} +export interface Id { /** */ - emailAddress?: string + id: string +} +export interface UserRoles { /** */ - noEmail?: boolean + user: Id /** */ - phoneNumber?: string + userId: string /** */ - phoneNumberType?: string + isAdmin?: boolean /** */ - noPhone?: boolean + isJurisdictionalAdmin?: boolean /** */ - workInRegion?: string + isPartner?: boolean } -export interface AlternateContact { +export interface Jurisdiction { /** */ - mailingAddress: Address + multiselectQuestions: Id[] /** */ id: string @@ -2536,123 +2526,84 @@ export interface AlternateContact { updatedAt: Date /** */ - type?: string - - /** */ - otherType?: string + name: string /** */ - firstName?: string + notificationsSignUpURL?: string /** */ - lastName?: string + languages: EnumJurisdictionLanguages[] /** */ - agency?: string + listingApprovalPermissions?: EnumJurisdictionListingApprovalPermissions[] /** */ - phoneNumber?: string + partnerTerms?: string /** */ - emailAddress?: string -} + publicUrl: string -export interface Accessibility { /** */ - mobility?: boolean + emailFromAddress: string /** */ - vision?: boolean + rentalAssistanceDefault: string /** */ - hearing?: boolean + enablePartnerSettings?: boolean /** */ - id: string + enableAccessibilityFeatures: boolean /** */ - createdAt: Date + enableUtilitiesIncluded: boolean /** */ - updatedAt: Date + enableGeocodingPreferences: boolean } -export interface Demographics { - /** */ - id: string - - /** */ - createdAt: Date - - /** */ - updatedAt: Date - - /** */ - ethnicity?: string - - /** */ - gender?: string - - /** */ - sexualOrientation?: string - +export interface User { /** */ - howDidYouHear: string[] + language?: Language /** */ - race?: string[] -} + leasingAgentInListings?: IdName[] -export interface HouseholdMember { /** */ - address: Address + roles?: CombinedRolesTypes /** */ - workAddress: Address + jurisdictions: Jurisdiction[] /** */ id: string /** */ - createdAt: Date - - /** */ - updatedAt: Date - - /** */ - orderId?: number - - /** */ - firstName?: string - - /** */ - middleName?: string + passwordUpdatedAt: Date /** */ - lastName?: string + passwordValidForDays: number /** */ - birthMonth?: string + confirmedAt?: Date /** */ - birthDay?: string + email: string /** */ - birthYear?: string + firstName: string /** */ - sameAddress?: string + middleName?: string /** */ - relationship?: string + lastName: string /** */ - workInRegion?: string -} + dob?: Date -export interface UnitType { /** */ - id: string + phoneNumber?: string /** */ createdAt: Date @@ -2661,489 +2612,498 @@ export interface UnitType { updatedAt: Date /** */ - name: string + mfaEnabled?: boolean /** */ - numBedrooms: number -} + lastLoginAt?: Date -export interface ApplicationMultiselectQuestionOption { /** */ - key: string + failedLoginAttemptsCount?: number /** */ - checked: boolean + phoneNumberVerified?: boolean /** */ - mapPinPosition?: string + agreedToTermsOfService: boolean /** */ - extraData?: AllExtraDataTypes[] -} + hitConfirmationURL?: Date -export interface ApplicationMultiselectQuestion { /** */ - key: string + activeAccessToken?: string /** */ - claimed: boolean + activeRefreshToken?: string +} +export interface UserCreate { /** */ - options: ApplicationMultiselectQuestionOption[] -} + language?: Language -export interface Application { /** */ - incomePeriod?: IncomePeriod + password: string /** */ - status: ApplicationStatus + passwordConfirmation: string /** */ - language?: Language + emailConfirmation: string /** */ - submissionType: ApplicationSubmissionType + appUrl?: string /** */ - reviewStatus?: ApplicationReviewStatus + jurisdictions?: Id[] /** */ - applicant: Applicant + email: string /** */ - listing: Id + confirmedAt?: Date /** */ - user?: Id + firstName: string /** */ - mailingAddress: Address + middleName?: string /** */ - alternateAddress: Address + lastName: string /** */ - alternateContact: AlternateContact + dob?: Date /** */ - accessibility: Accessibility + phoneNumber?: string /** */ - demographics: Demographics + phoneNumberVerified?: boolean /** */ - householdMembers: HouseholdMember[] + hitConfirmationURL?: Date /** */ - preferredUnit: UnitType[] + activeAccessToken?: string /** */ - id: string + activeRefreshToken?: string +} +export interface UserBasic { /** */ - createdAt: Date + language?: Language /** */ - updatedAt: Date + roles: UserRoles /** */ - deletedAt?: Date + jurisdictions: Jurisdiction[] /** */ - appUrl?: string + leasingAgentInListings?: Id[] /** */ - additionalPhone?: boolean + id: string /** */ - additionalPhoneNumber?: string + email: string /** */ - additionalPhoneNumberType?: string + firstName: string /** */ - contactPreferences: string[] + middleName?: string /** */ - householdSize?: number + lastName: string /** */ - housingStatus?: string + phoneNumber?: string +} +export interface Email { /** */ - sendMailToMailingAddress?: boolean + email: string /** */ - householdExpectingChanges?: boolean + appUrl?: string +} +export interface Confirm { /** */ - householdStudent?: boolean + token: string /** */ - incomeVouchers?: boolean + password?: string +} +export interface ForgotPassword { /** */ - income?: string + email: string /** */ - preferences: ApplicationMultiselectQuestion[] + appUrl?: string +} +export interface ForgotPasswordResponse { /** */ - programs?: ApplicationMultiselectQuestion[] + message: string +} +export interface UpdatePassword { /** */ - acceptedTerms?: boolean + password: string /** */ - submissionDate?: Date + passwordConfirmation: string /** */ - markedAsDuplicate: boolean + token: string +} +export interface UserRolesOnly { /** */ - flagged?: boolean + isAdmin?: boolean /** */ - confirmationCode: string + isJurisdictionalAdmin?: boolean + + /** */ + isPartner?: boolean } -export interface ApplicationFlaggedSet { +export interface UserUpdate { /** */ - resolvingUser: Id + language?: Language /** */ - applications: Application[] + id?: string /** */ - listing: Id + email?: string /** */ - id: string + password?: string /** */ - createdAt: Date + currentPassword?: string /** */ - updatedAt: Date + leasingAgentInListings?: Id[] /** */ - rule: EnumApplicationFlaggedSetRule + newEmail?: string /** */ - ruleKey: string + appUrl?: string /** */ - resolvedTime?: Date + jurisdictions: Id[] /** */ - listingId: string + roles?: UserRolesOnly /** */ - showConfirmationAlert: boolean + confirmedAt?: Date /** */ - status: EnumApplicationFlaggedSetStatus -} + firstName: string -export interface ApplicationFlaggedSetPaginationMeta { /** */ - totalFlagged: number + middleName?: string /** */ - currentPage: number + lastName: string /** */ - itemCount: number + dob?: Date /** */ - itemsPerPage: number + phoneNumber?: string /** */ - totalItems: number + phoneNumberVerified?: boolean /** */ - totalPages: number -} + agreedToTermsOfService: boolean -export interface PaginatedApplicationFlaggedSet { /** */ - items: ApplicationFlaggedSet[] + hitConfirmationURL?: Date /** */ - meta: ApplicationFlaggedSetPaginationMeta -} + activeAccessToken?: string -export interface ApplicationFlaggedSetResolve { /** */ - afsId: string + activeRefreshToken?: string +} +export interface UserFilterParams { /** */ - applications: Id[] + $comparison: EnumUserFilterParamsComparison /** */ - status: EnumApplicationFlaggedSetResolveStatus -} + isPartner?: boolean -export interface Status { /** */ - status: string + isPortalUser?: boolean } -export interface Asset { +export interface PaginationMeta { /** */ - id: string + currentPage: number /** */ - createdAt: Date + itemCount: number /** */ - updatedAt: Date + itemsPerPage: number /** */ - fileId: string + totalItems: number /** */ - label: string + totalPages: number } -export interface PaperApplication { +export interface PaginatedUserList { /** */ - language: Language + items: User[] /** */ - file?: CombinedFileTypes + meta: PaginationMeta +} +export interface UserRolesCreate { /** */ - id: string + isAdmin?: boolean /** */ - createdAt: Date + isJurisdictionalAdmin?: boolean /** */ - updatedAt: Date + isPartner?: boolean } -export interface ApplicationMethod { +export interface UserInvite { /** */ - type: ApplicationMethodType + language?: Language /** */ - paperApplications?: PaperApplication[] + jurisdictions: Id[] /** */ - listing: Id + leasingAgentInListings?: Id[] /** */ - id: string + roles?: UserRolesCreate /** */ - createdAt: Date + confirmedAt?: Date /** */ - updatedAt: Date + email: string /** */ - label?: string + firstName: string /** */ - externalReference?: string + middleName?: string /** */ - acceptsPostmarkedApplications?: boolean + lastName: string + + /** */ + dob?: Date /** */ phoneNumber?: string -} -export interface AssetCreate { /** */ - fileId: string + phoneNumberVerified?: boolean /** */ - label: string -} + hitConfirmationURL?: Date -export interface PaperApplicationCreate { /** */ - language: Language + activeAccessToken?: string /** */ - file?: CombinedFileTypes + activeRefreshToken?: string } -export interface ApplicationMethodCreate { +export interface UserProfileUpdate { + /** */ + language?: Language + + /** */ + password?: string + /** */ - type: ApplicationMethodType + currentPassword?: string /** */ - paperApplications?: PaperApplicationCreate[] + jurisdictions: Id[] /** */ - label?: string + newEmail?: string /** */ - externalReference?: string + appUrl?: string /** */ - acceptsPostmarkedApplications?: boolean + id: string /** */ - phoneNumber?: string + firstName: string /** */ - listing: Id -} + middleName?: string -export interface AssetUpdate { /** */ - id?: string + lastName: string /** */ - fileId: string + dob?: Date /** */ - label: string -} + createdAt: Date -export interface PaperApplicationUpdate { /** */ - language: Language + updatedAt: Date /** */ - id?: string + phoneNumber?: string /** */ - file?: CombinedFileTypes + agreedToTermsOfService: boolean } -export interface ApplicationMethodUpdate { +export interface AmiChartItem { /** */ - type: ApplicationMethodType + percentOfAmi: number /** */ - id?: string + householdSize: number /** */ - paperApplications?: PaperApplicationUpdate[] + income: number +} +export interface AmiChart { /** */ - label?: string + id: string /** */ - externalReference?: string + createdAt: Date /** */ - acceptsPostmarkedApplications?: boolean + updatedAt: Date /** */ - phoneNumber?: string + items: AmiChartItem[] /** */ - listing: Id + name: string + + /** */ + jurisdiction: Id } -export interface BooleanInput { +export interface AmiChartCreate { /** */ - type: InputType + items: AmiChartItem[] /** */ - key: string + name: string /** */ - value: boolean + jurisdiction: Id } -export interface TextInput { +export interface AmiChartUpdate { /** */ - type: InputType + items: AmiChartItem[] /** */ - key: string + name: string /** */ - value: string -} + jurisdiction: Id -export interface AddressCreate { /** */ - placeName?: string + id?: string +} +export interface ApplicationFlaggedSetMeta { /** */ - city: string + totalCount?: number /** */ - county?: string + totalResolvedCount?: number /** */ - state: string + totalPendingCount?: number /** */ - street: string + totalNamePendingCount?: number /** */ - street2?: string + totalEmailPendingCount?: number +} +export interface Address { /** */ - zipCode: string + id: string /** */ - latitude?: number + createdAt: Date /** */ - longitude?: number -} + updatedAt: Date -export interface AddressInput { /** */ - type: InputType + placeName?: string /** */ - key: string + city: string /** */ - value: AddressCreate -} + county?: string -export interface ApplicationsApiExtraModel { /** */ - orderBy?: EnumApplicationsApiExtraModelOrderBy + state: string /** */ - order?: EnumApplicationsApiExtraModelOrder -} + street: string -export interface PaginationMeta { /** */ - currentPage: number + street2?: string /** */ - itemCount: number + zipCode: string /** */ - itemsPerPage: number + latitude?: number /** */ - totalItems: number + longitude?: number +} +export interface Applicant { /** */ - totalPages: number -} + address: Address -export interface PaginatedApplication { /** */ - items: Application[] + workAddress: Address /** */ - meta: PaginationMeta -} + id: string -export interface ApplicantCreate { /** */ - address: AddressCreate + createdAt: Date /** */ - workAddress: AddressCreate + updatedAt: Date /** */ firstName?: string @@ -3182,9 +3142,18 @@ export interface ApplicantCreate { workInRegion?: string } -export interface AlternateContactCreate { +export interface AlternateContact { /** */ - mailingAddress: AddressCreate + mailingAddress: Address + + /** */ + id: string + + /** */ + createdAt: Date + + /** */ + updatedAt: Date /** */ type?: string @@ -3208,7 +3177,7 @@ export interface AlternateContactCreate { emailAddress?: string } -export interface AccessibilityCreate { +export interface Accessibility { /** */ mobility?: boolean @@ -3217,9 +3186,27 @@ export interface AccessibilityCreate { /** */ hearing?: boolean + + /** */ + id: string + + /** */ + createdAt: Date + + /** */ + updatedAt: Date } -export interface DemographicsCreate { +export interface Demographics { + /** */ + id: string + + /** */ + createdAt: Date + + /** */ + updatedAt: Date + /** */ ethnicity?: string @@ -3236,12 +3223,21 @@ export interface DemographicsCreate { race?: string[] } -export interface HouseholdMemberCreate { +export interface HouseholdMember { /** */ - address: AddressCreate + address: Address /** */ - workAddress: AddressCreate + workAddress: Address + + /** */ + id: string + + /** */ + createdAt: Date + + /** */ + updatedAt: Date /** */ orderId?: number @@ -3274,7 +3270,49 @@ export interface HouseholdMemberCreate { workInRegion?: string } -export interface ApplicationCreate { +export interface UnitType { + /** */ + id: string + + /** */ + createdAt: Date + + /** */ + updatedAt: Date + + /** */ + name: string + + /** */ + numBedrooms: number +} + +export interface ApplicationMultiselectQuestionOption { + /** */ + key: string + + /** */ + checked: boolean + + /** */ + mapPinPosition?: string + + /** */ + extraData?: AllExtraDataTypes[] +} + +export interface ApplicationMultiselectQuestion { + /** */ + key: string + + /** */ + claimed: boolean + + /** */ + options: ApplicationMultiselectQuestionOption[] +} + +export interface Application { /** */ incomePeriod?: IncomePeriod @@ -3290,32 +3328,47 @@ export interface ApplicationCreate { /** */ reviewStatus?: ApplicationReviewStatus + /** */ + applicant: Applicant + /** */ listing: Id /** */ - applicant: ApplicantCreate + user?: Id /** */ - mailingAddress: AddressCreate + mailingAddress: Address /** */ - alternateAddress: AddressCreate + alternateAddress: Address /** */ - alternateContact: AlternateContactCreate + alternateContact: AlternateContact /** */ - accessibility: AccessibilityCreate + accessibility: Accessibility /** */ - demographics: DemographicsCreate + demographics: Demographics + + /** */ + householdMembers: HouseholdMember[] + + /** */ + preferredUnit: UnitType[] + + /** */ + id: string + + /** */ + createdAt: Date /** */ - householdMembers: HouseholdMemberCreate[] + updatedAt: Date /** */ - preferredUnit: Id[] + deletedAt?: Date /** */ appUrl?: string @@ -3364,886 +3417,886 @@ export interface ApplicationCreate { /** */ submissionDate?: Date -} -export interface AddressUpdate { /** */ - id?: string + markedAsDuplicate: boolean /** */ - createdAt?: Date + flagged?: boolean /** */ - updatedAt?: Date + confirmationCode: string +} +export interface ApplicationFlaggedSet { /** */ - placeName?: string + resolvingUser: Id /** */ - city: string + applications: Application[] /** */ - county?: string + listing: Id /** */ - state: string + id: string /** */ - street: string + createdAt: Date /** */ - street2?: string + updatedAt: Date /** */ - zipCode: string + rule: EnumApplicationFlaggedSetRule /** */ - latitude?: number + ruleKey: string /** */ - longitude?: number -} + resolvedTime?: Date -export interface ApplicantUpdate { /** */ - id?: string + listingId: string /** */ - createdAt?: Date + showConfirmationAlert: boolean /** */ - updatedAt?: Date + status: EnumApplicationFlaggedSetStatus +} +export interface ApplicationFlaggedSetPaginationMeta { /** */ - address: AddressUpdate + totalFlagged: number /** */ - workAddress: AddressUpdate + currentPage: number /** */ - firstName?: string + itemCount: number /** */ - middleName?: string + itemsPerPage: number /** */ - lastName?: string + totalItems: number /** */ - birthMonth?: string + totalPages: number +} +export interface PaginatedApplicationFlaggedSet { /** */ - birthDay?: string + items: ApplicationFlaggedSet[] /** */ - birthYear?: string + meta: ApplicationFlaggedSetPaginationMeta +} +export interface ApplicationFlaggedSetResolve { /** */ - emailAddress?: string + afsId: string /** */ - noEmail?: boolean + applications: Id[] /** */ - phoneNumber?: string + status: EnumApplicationFlaggedSetResolveStatus +} +export interface Asset { /** */ - phoneNumberType?: string + id: string /** */ - noPhone?: boolean + createdAt: Date /** */ - workInRegion?: string -} + updatedAt: Date -export interface AlternateContactUpdate { /** */ - id?: string + fileId: string /** */ - createdAt?: Date + label: string +} +export interface PaperApplication { /** */ - updatedAt?: Date + language: Language /** */ - mailingAddress: AddressUpdate + file?: CombinedFileTypes /** */ - type?: string + id: string /** */ - otherType?: string + createdAt: Date /** */ - firstName?: string + updatedAt: Date +} +export interface ApplicationMethod { /** */ - lastName?: string + type: ApplicationMethodType /** */ - agency?: string + paperApplications?: PaperApplication[] /** */ - phoneNumber?: string + listing: Id /** */ - emailAddress?: string -} + id: string -export interface AccessibilityUpdate { /** */ - id?: string + createdAt: Date /** */ - createdAt?: Date + updatedAt: Date /** */ - updatedAt?: Date + label?: string /** */ - mobility?: boolean + externalReference?: string /** */ - vision?: boolean + acceptsPostmarkedApplications?: boolean /** */ - hearing?: boolean + phoneNumber?: string } -export interface DemographicsUpdate { +export interface AssetCreate { /** */ - id?: string + fileId: string /** */ - createdAt?: Date + label: string +} +export interface PaperApplicationCreate { /** */ - updatedAt?: Date + language: Language /** */ - ethnicity?: string + file?: CombinedFileTypes +} +export interface ApplicationMethodCreate { /** */ - gender?: string + type: ApplicationMethodType /** */ - sexualOrientation?: string + paperApplications?: PaperApplicationCreate[] /** */ - howDidYouHear: string[] + label?: string /** */ - race?: string[] -} + externalReference?: string -export interface HouseholdMemberUpdate { /** */ - id?: string + acceptsPostmarkedApplications?: boolean /** */ - createdAt?: Date + phoneNumber?: string /** */ - updatedAt?: Date + listing: Id +} +export interface AssetUpdate { /** */ - address: AddressUpdate + id?: string /** */ - workAddress: AddressUpdate + fileId: string /** */ - orderId?: number + label: string +} +export interface PaperApplicationUpdate { /** */ - firstName?: string + language: Language /** */ - middleName?: string + id?: string /** */ - lastName?: string + file?: CombinedFileTypes +} +export interface ApplicationMethodUpdate { /** */ - birthMonth?: string + type: ApplicationMethodType /** */ - birthDay?: string + id?: string /** */ - birthYear?: string + paperApplications?: PaperApplicationUpdate[] /** */ - sameAddress?: string + label?: string /** */ - relationship?: string + externalReference?: string /** */ - workInRegion?: string -} + acceptsPostmarkedApplications?: boolean -export interface ApplicationUpdate { /** */ - incomePeriod?: IncomePeriod + phoneNumber?: string /** */ - status: ApplicationStatus + listing: Id +} +export interface BooleanInput { /** */ - language?: Language + type: InputType /** */ - submissionType: ApplicationSubmissionType + key: string /** */ - reviewStatus?: ApplicationReviewStatus + value: boolean +} +export interface TextInput { /** */ - id?: string + type: InputType /** */ - deletedAt?: Date + key: string /** */ - listing: Id + value: string +} +export interface AddressCreate { /** */ - applicant: ApplicantUpdate + placeName?: string /** */ - mailingAddress: AddressUpdate + city: string /** */ - alternateAddress: AddressUpdate + county?: string /** */ - alternateContact: AlternateContactUpdate + state: string /** */ - accessibility: AccessibilityUpdate + street: string /** */ - demographics: DemographicsUpdate + street2?: string /** */ - householdMembers: HouseholdMemberUpdate[] + zipCode: string /** */ - preferredUnit: Id[] + latitude?: number /** */ - appUrl?: string + longitude?: number +} +export interface AddressInput { /** */ - additionalPhone?: boolean + type: InputType /** */ - additionalPhoneNumber?: string + key: string /** */ - additionalPhoneNumberType?: string + value: AddressCreate +} +export interface ApplicationsApiExtraModel { /** */ - contactPreferences: string[] + orderBy?: EnumApplicationsApiExtraModelOrderBy /** */ - householdSize?: number + order?: EnumApplicationsApiExtraModelOrder +} +export interface PaginatedApplication { /** */ - housingStatus?: string + items: Application[] /** */ - sendMailToMailingAddress?: boolean + meta: PaginationMeta +} +export interface ApplicantCreate { /** */ - householdExpectingChanges?: boolean + address: AddressCreate /** */ - householdStudent?: boolean + workAddress: AddressCreate /** */ - incomeVouchers?: boolean + firstName?: string /** */ - income?: string + middleName?: string /** */ - preferences: ApplicationMultiselectQuestion[] + lastName?: string /** */ - programs?: ApplicationMultiselectQuestion[] + birthMonth?: string /** */ - acceptedTerms?: boolean + birthDay?: string /** */ - submissionDate?: Date -} + birthYear?: string -export interface CreatePresignedUploadMetadata { /** */ - parametersToSign: object -} + emailAddress?: string -export interface CreatePresignedUploadMetadataResponse { /** */ - signature: string -} + noEmail?: boolean -export interface PaginatedAssets { /** */ - items: Asset[] + phoneNumber?: string /** */ - meta: PaginationMeta -} + phoneNumberType?: string -export interface UserErrorExtraModel { /** */ - userErrorMessages: EnumUserErrorExtraModelUserErrorMessages -} + noPhone?: boolean -export interface Login { /** */ - email: string + workInRegion?: string +} +export interface AlternateContactCreate { /** */ - password: string + mailingAddress: AddressCreate /** */ - mfaCode?: string + type?: string /** */ - mfaType?: EnumLoginMfaType -} + otherType?: string -export interface LogoutResponse { /** */ - success: boolean -} + firstName?: string -export interface RequestMfaCode { /** */ - email: string + lastName?: string /** */ - password: string + agency?: string /** */ - mfaType: EnumRequestMfaCodeMfaType + phoneNumber?: string /** */ - phoneNumber?: string + emailAddress?: string } -export interface RequestMfaCodeResponse { +export interface AccessibilityCreate { /** */ - phoneNumber?: string + mobility?: boolean /** */ - email?: string + vision?: boolean /** */ - phoneNumberVerified?: boolean + hearing?: boolean } -export interface GetMfaInfo { +export interface DemographicsCreate { /** */ - email: string + ethnicity?: string /** */ - password: string -} + gender?: string -export interface GetMfaInfoResponse { /** */ - phoneNumber?: string + sexualOrientation?: string /** */ - email?: string + howDidYouHear: string[] /** */ - isMfaEnabled: boolean + race?: string[] +} +export interface HouseholdMemberCreate { /** */ - mfaUsedInThePast: boolean -} + address: AddressCreate -export interface IdName { /** */ - id: string + workAddress: AddressCreate /** */ - name: string -} + orderId?: number -export interface UserRoles { /** */ - user: Id + firstName?: string /** */ - userId: string + middleName?: string /** */ - isAdmin?: boolean + lastName?: string /** */ - isJurisdictionalAdmin?: boolean + birthMonth?: string /** */ - isPartner?: boolean -} + birthDay?: string -export interface Jurisdiction { /** */ - multiselectQuestions: Id[] + birthYear?: string /** */ - id: string + sameAddress?: string /** */ - createdAt: Date + relationship?: string /** */ - updatedAt: Date + workInRegion?: string +} +export interface ApplicationCreate { /** */ - name: string + incomePeriod?: IncomePeriod /** */ - notificationsSignUpURL?: string + status: ApplicationStatus /** */ - languages: EnumJurisdictionLanguages[] + language?: Language /** */ - listingApprovalPermissions?: EnumJurisdictionListingApprovalPermissions[] + submissionType: ApplicationSubmissionType /** */ - partnerTerms?: string + reviewStatus?: ApplicationReviewStatus /** */ - publicUrl: string + listing: Id /** */ - emailFromAddress: string + applicant: ApplicantCreate /** */ - rentalAssistanceDefault: string + mailingAddress: AddressCreate /** */ - enablePartnerSettings?: boolean + alternateAddress: AddressCreate /** */ - enableAccessibilityFeatures: boolean + alternateContact: AlternateContactCreate /** */ - enableUtilitiesIncluded: boolean + accessibility: AccessibilityCreate /** */ - enableGeocodingPreferences: boolean -} + demographics: DemographicsCreate -export interface User { /** */ - language?: Language + householdMembers: HouseholdMemberCreate[] /** */ - leasingAgentInListings?: IdName[] + preferredUnit: Id[] /** */ - roles?: CombinedRolesTypes + appUrl?: string /** */ - jurisdictions: Jurisdiction[] + additionalPhone?: boolean /** */ - id: string + additionalPhoneNumber?: string /** */ - passwordUpdatedAt: Date + additionalPhoneNumberType?: string /** */ - passwordValidForDays: number + contactPreferences: string[] /** */ - confirmedAt?: Date + householdSize?: number /** */ - email: string + housingStatus?: string /** */ - firstName: string + sendMailToMailingAddress?: boolean /** */ - middleName?: string + householdExpectingChanges?: boolean /** */ - lastName: string + householdStudent?: boolean /** */ - dob?: Date + incomeVouchers?: boolean /** */ - phoneNumber?: string + income?: string /** */ - createdAt: Date + preferences: ApplicationMultiselectQuestion[] /** */ - updatedAt: Date + programs?: ApplicationMultiselectQuestion[] /** */ - mfaEnabled?: boolean + acceptedTerms?: boolean /** */ - lastLoginAt?: Date + submissionDate?: Date +} +export interface AddressUpdate { /** */ - failedLoginAttemptsCount?: number + id?: string /** */ - phoneNumberVerified?: boolean + createdAt?: Date /** */ - agreedToTermsOfService: boolean + updatedAt?: Date /** */ - hitConfirmationURL?: Date + placeName?: string /** */ - activeAccessToken?: string + city: string /** */ - activeRefreshToken?: string -} + county?: string -export interface UserCreate { /** */ - language?: Language + state: string /** */ - password: string + street: string /** */ - passwordConfirmation: string + street2?: string /** */ - emailConfirmation: string + zipCode: string /** */ - appUrl?: string + latitude?: number /** */ - jurisdictions?: Id[] + longitude?: number +} +export interface ApplicantUpdate { /** */ - email: string + id?: string /** */ - confirmedAt?: Date + createdAt?: Date /** */ - firstName: string + updatedAt?: Date /** */ - middleName?: string + address: AddressUpdate /** */ - lastName: string + workAddress: AddressUpdate /** */ - dob?: Date + firstName?: string /** */ - phoneNumber?: string + middleName?: string /** */ - phoneNumberVerified?: boolean + lastName?: string /** */ - hitConfirmationURL?: Date + birthMonth?: string /** */ - activeAccessToken?: string + birthDay?: string /** */ - activeRefreshToken?: string -} + birthYear?: string -export interface UserBasic { /** */ - language?: Language + emailAddress?: string /** */ - roles: UserRoles + noEmail?: boolean /** */ - jurisdictions: Jurisdiction[] + phoneNumber?: string /** */ - leasingAgentInListings?: Id[] + phoneNumberType?: string /** */ - id: string + noPhone?: boolean /** */ - email: string + workInRegion?: string +} +export interface AlternateContactUpdate { /** */ - firstName: string + id?: string /** */ - middleName?: string + createdAt?: Date /** */ - lastName: string + updatedAt?: Date /** */ - phoneNumber?: string -} + mailingAddress: AddressUpdate -export interface Email { /** */ - email: string + type?: string /** */ - appUrl?: string -} + otherType?: string -export interface Confirm { /** */ - token: string + firstName?: string /** */ - password?: string -} + lastName?: string -export interface ForgotPassword { /** */ - email: string + agency?: string /** */ - appUrl?: string -} + phoneNumber?: string -export interface ForgotPasswordResponse { /** */ - message: string + emailAddress?: string } -export interface UpdatePassword { +export interface AccessibilityUpdate { /** */ - password: string + id?: string /** */ - passwordConfirmation: string + createdAt?: Date /** */ - token: string -} + updatedAt?: Date -export interface UserRolesOnly { /** */ - isAdmin?: boolean + mobility?: boolean /** */ - isJurisdictionalAdmin?: boolean + vision?: boolean /** */ - isPartner?: boolean + hearing?: boolean } -export interface UserUpdate { - /** */ - language?: Language - +export interface DemographicsUpdate { /** */ id?: string /** */ - email?: string + createdAt?: Date /** */ - password?: string + updatedAt?: Date /** */ - currentPassword?: string + ethnicity?: string /** */ - leasingAgentInListings?: Id[] + gender?: string /** */ - newEmail?: string + sexualOrientation?: string /** */ - appUrl?: string + howDidYouHear: string[] /** */ - jurisdictions: Id[] + race?: string[] +} +export interface HouseholdMemberUpdate { /** */ - roles?: UserRolesOnly + id?: string /** */ - confirmedAt?: Date + createdAt?: Date /** */ - firstName: string + updatedAt?: Date /** */ - middleName?: string + address: AddressUpdate /** */ - lastName: string + workAddress: AddressUpdate /** */ - dob?: Date + orderId?: number /** */ - phoneNumber?: string + firstName?: string /** */ - phoneNumberVerified?: boolean + middleName?: string /** */ - agreedToTermsOfService: boolean + lastName?: string /** */ - hitConfirmationURL?: Date + birthMonth?: string /** */ - activeAccessToken?: string + birthDay?: string /** */ - activeRefreshToken?: string -} + birthYear?: string -export interface UserFilterParams { /** */ - $comparison: EnumUserFilterParamsComparison + sameAddress?: string /** */ - isPartner?: boolean + relationship?: string /** */ - isPortalUser?: boolean + workInRegion?: string } -export interface PaginatedUserList { +export interface ApplicationUpdate { /** */ - items: User[] + incomePeriod?: IncomePeriod /** */ - meta: PaginationMeta -} + status: ApplicationStatus -export interface UserRolesCreate { /** */ - isAdmin?: boolean + language?: Language /** */ - isJurisdictionalAdmin?: boolean + submissionType: ApplicationSubmissionType /** */ - isPartner?: boolean -} + reviewStatus?: ApplicationReviewStatus -export interface UserInvite { /** */ - language?: Language + id?: string /** */ - jurisdictions: Id[] + deletedAt?: Date /** */ - leasingAgentInListings?: Id[] + listing: Id /** */ - roles?: UserRolesCreate + applicant: ApplicantUpdate /** */ - confirmedAt?: Date + mailingAddress: AddressUpdate /** */ - email: string + alternateAddress: AddressUpdate /** */ - firstName: string + alternateContact: AlternateContactUpdate /** */ - middleName?: string + accessibility: AccessibilityUpdate /** */ - lastName: string + demographics: DemographicsUpdate /** */ - dob?: Date + householdMembers: HouseholdMemberUpdate[] /** */ - phoneNumber?: string + preferredUnit: Id[] /** */ - phoneNumberVerified?: boolean + appUrl?: string /** */ - hitConfirmationURL?: Date + additionalPhone?: boolean /** */ - activeAccessToken?: string + additionalPhoneNumber?: string /** */ - activeRefreshToken?: string -} + additionalPhoneNumberType?: string -export interface UserProfileUpdate { /** */ - language?: Language + contactPreferences: string[] /** */ - password?: string + householdSize?: number /** */ - currentPassword?: string + housingStatus?: string /** */ - jurisdictions: Id[] + sendMailToMailingAddress?: boolean /** */ - newEmail?: string + householdExpectingChanges?: boolean /** */ - appUrl?: string + householdStudent?: boolean /** */ - id: string + incomeVouchers?: boolean /** */ - firstName: string + income?: string /** */ - middleName?: string + preferences: ApplicationMultiselectQuestion[] /** */ - lastName: string + programs?: ApplicationMultiselectQuestion[] /** */ - dob?: Date + acceptedTerms?: boolean /** */ - createdAt: Date + submissionDate?: Date +} +export interface CreatePresignedUploadMetadata { /** */ - updatedAt: Date + parametersToSign: object +} +export interface CreatePresignedUploadMetadataResponse { /** */ - phoneNumber?: string + signature: string +} +export interface PaginatedAssets { /** */ - agreedToTermsOfService: boolean + items: Asset[] + + /** */ + meta: PaginationMeta } export interface JurisdictionCreate { @@ -6229,7 +6282,52 @@ export interface MapLayer { /** */ jurisdictionId: string } - +export enum EnumUserErrorExtraModelUserErrorMessages { + "accountConfirmed" = "accountConfirmed", + "accountNotConfirmed" = "accountNotConfirmed", + "errorSaving" = "errorSaving", + "emailNotFound" = "emailNotFound", + "tokenExpired" = "tokenExpired", + "tokenMissing" = "tokenMissing", + "emailInUse" = "emailInUse", + "passwordOutdated" = "passwordOutdated", +} +export enum EnumLoginMfaType { + "sms" = "sms", + "email" = "email", +} +export enum EnumRequestMfaCodeMfaType { + "sms" = "sms", + "email" = "email", +} +export enum Language { + "en" = "en", + "es" = "es", + "vi" = "vi", + "zh" = "zh", + "tl" = "tl", +} +export enum EnumJurisdictionLanguages { + "en" = "en", + "es" = "es", + "vi" = "vi", + "zh" = "zh", + "tl" = "tl", +} +export enum EnumJurisdictionListingApprovalPermissions { + "user" = "user", + "partner" = "partner", + "admin" = "admin", + "jurisdictionAdmin" = "jurisdictionAdmin", +} +export type CombinedRolesTypes = UserRoles +export enum EnumUserFilterParamsComparison { + "=" = "=", + "<>" = "<>", + "IN" = "IN", + ">=" = ">=", + "NA" = "NA", +} export enum IncomePeriod { "perMonth" = "perMonth", "perYear" = "perYear", @@ -6241,14 +6339,6 @@ export enum ApplicationStatus { "removed" = "removed", } -export enum Language { - "en" = "en", - "es" = "es", - "vi" = "vi", - "zh" = "zh", - "tl" = "tl", -} - export enum ApplicationSubmissionType { "paper" = "paper", "electronical" = "electronical", @@ -6301,45 +6391,6 @@ export enum EnumApplicationsApiExtraModelOrder { "ASC" = "ASC", "DESC" = "DESC", } -export enum EnumUserErrorExtraModelUserErrorMessages { - "accountConfirmed" = "accountConfirmed", - "accountNotConfirmed" = "accountNotConfirmed", - "errorSaving" = "errorSaving", - "emailNotFound" = "emailNotFound", - "tokenExpired" = "tokenExpired", - "tokenMissing" = "tokenMissing", - "emailInUse" = "emailInUse", - "passwordOutdated" = "passwordOutdated", -} -export enum EnumLoginMfaType { - "sms" = "sms", - "email" = "email", -} -export enum EnumRequestMfaCodeMfaType { - "sms" = "sms", - "email" = "email", -} -export enum EnumJurisdictionLanguages { - "en" = "en", - "es" = "es", - "vi" = "vi", - "zh" = "zh", - "tl" = "tl", -} -export enum EnumJurisdictionListingApprovalPermissions { - "user" = "user", - "partner" = "partner", - "admin" = "admin", - "jurisdictionAdmin" = "jurisdictionAdmin", -} -export type CombinedRolesTypes = UserRoles -export enum EnumUserFilterParamsComparison { - "=" = "=", - "<>" = "<>", - "IN" = "IN", - ">=" = ">=", - "NA" = "NA", -} export enum EnumJurisdictionCreateLanguages { "en" = "en", "es" = "es", diff --git a/package.json b/package.json index 0795b81a36..4ff60618d4 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "test:backend:new:e2e": "cd api && yarn jest --config ./test/jest-e2e.config.js --detectOpenHandles", "test:backend:new:cov": "cd api && yarn jest --config ./test/jest-with-coverage.config.js --detectOpenHandles --logHeapUsage", "test:backend:new:dbsetup": "cd api && yarn db:migration:run", - "test:backend:new:dbsetup:withseed": "cd api && yarn db:migration:run && yarn db:seed:staging --jurisdictionName Bloomington", + "test:backend:new:dbsetup:withseed": "cd api && yarn db:migration:run && yarn db:seed:staging --jurisdictionName Alameda", "backend:new:install": "cd api && yarn install", "prettier": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\"" }, diff --git a/shared-helpers/CHANGELOG.md b/shared-helpers/CHANGELOG.md index 5f33752c6f..e56007b0ba 100644 --- a/shared-helpers/CHANGELOG.md +++ b/shared-helpers/CHANGELOG.md @@ -2031,761 +2031,76 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. # [5.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.4.0...@bloom-housing/shared-helpers@5.0.0) (2022-06-16) -* 2022-06-16 release (#2824) ([1abd991](https://github.com/seanmalbert/bloom/commit/1abd991136e28598b7856164b88bef462b8ff566)), closes [#2824](https://github.com/seanmalbert/bloom/issues/2824) [#2521](https://github.com/seanmalbert/bloom/issues/2521) [#2504](https://github.com/seanmalbert/bloom/issues/2504) [#2520](https://github.com/seanmalbert/bloom/issues/2520) [#2517](https://github.com/seanmalbert/bloom/issues/2517) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2529](https://github.com/seanmalbert/bloom/issues/2529) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2540](https://github.com/seanmalbert/bloom/issues/2540) [#2528](https://github.com/seanmalbert/bloom/issues/2528) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2545](https://github.com/seanmalbert/bloom/issues/2545) [#2526](https://github.com/seanmalbert/bloom/issues/2526) [#2532](https://github.com/seanmalbert/bloom/issues/2532) [#2551](https://github.com/seanmalbert/bloom/issues/2551) [#2562](https://github.com/seanmalbert/bloom/issues/2562) [#2566](https://github.com/seanmalbert/bloom/issues/2566) [#2572](https://github.com/seanmalbert/bloom/issues/2572) [#2546](https://github.com/seanmalbert/bloom/issues/2546) [#2578](https://github.com/seanmalbert/bloom/issues/2578) [#2579](https://github.com/seanmalbert/bloom/issues/2579) [#2581](https://github.com/seanmalbert/bloom/issues/2581) [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2574](https://github.com/seanmalbert/bloom/issues/2574) [#2577](https://github.com/seanmalbert/bloom/issues/2577) [#2590](https://github.com/seanmalbert/bloom/issues/2590) [#2592](https://github.com/seanmalbert/bloom/issues/2592) [#2560](https://github.com/seanmalbert/bloom/issues/2560) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2599](https://github.com/seanmalbert/bloom/issues/2599) [#2600](https://github.com/seanmalbert/bloom/issues/2600) [#2598](https://github.com/seanmalbert/bloom/issues/2598) [#2582](https://github.com/seanmalbert/bloom/issues/2582) [#2531](https://github.com/seanmalbert/bloom/issues/2531) [#2615](https://github.com/seanmalbert/bloom/issues/2615) [#2606](https://github.com/seanmalbert/bloom/issues/2606) [#2618](https://github.com/seanmalbert/bloom/issues/2618) [#2620](https://github.com/seanmalbert/bloom/issues/2620) [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2563](https://github.com/seanmalbert/bloom/issues/2563) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2635](https://github.com/seanmalbert/bloom/issues/2635) [#2624](https://github.com/seanmalbert/bloom/issues/2624) [#2642](https://github.com/seanmalbert/bloom/issues/2642) [#2652](https://github.com/seanmalbert/bloom/issues/2652) [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2658](https://github.com/seanmalbert/bloom/issues/2658) [#2653](https://github.com/seanmalbert/bloom/issues/2653) [#2630](https://github.com/seanmalbert/bloom/issues/2630) [#2612](https://github.com/seanmalbert/bloom/issues/2612) [#2672](https://github.com/seanmalbert/bloom/issues/2672) [#2558](https://github.com/seanmalbert/bloom/issues/2558) [#2604](https://github.com/seanmalbert/bloom/issues/2604) [#2625](https://github.com/seanmalbert/bloom/issues/2625) [#2650](https://github.com/seanmalbert/bloom/issues/2650) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2603](https://github.com/seanmalbert/bloom/issues/2603) [#2648](https://github.com/seanmalbert/bloom/issues/2648) [#2673](https://github.com/seanmalbert/bloom/issues/2673) [#2661](https://github.com/seanmalbert/bloom/issues/2661) [#2676](https://github.com/seanmalbert/bloom/issues/2676) [#2680](https://github.com/seanmalbert/bloom/issues/2680) [#2597](https://github.com/seanmalbert/bloom/issues/2597) [#2686](https://github.com/seanmalbert/bloom/issues/2686) [#2683](https://github.com/seanmalbert/bloom/issues/2683) [#2657](https://github.com/seanmalbert/bloom/issues/2657) [#2693](https://github.com/seanmalbert/bloom/issues/2693) [#2694](https://github.com/seanmalbert/bloom/issues/2694) [#2616](https://github.com/seanmalbert/bloom/issues/2616) [#2703](https://github.com/seanmalbert/bloom/issues/2703) [#2697](https://github.com/seanmalbert/bloom/issues/2697) [#2691](https://github.com/seanmalbert/bloom/issues/2691) [#2687](https://github.com/seanmalbert/bloom/issues/2687) [#2700](https://github.com/seanmalbert/bloom/issues/2700) [#2677](https://github.com/seanmalbert/bloom/issues/2677) [#2682](https://github.com/seanmalbert/bloom/issues/2682) [#2689](https://github.com/seanmalbert/bloom/issues/2689) [#2675](https://github.com/seanmalbert/bloom/issues/2675) [#2713](https://github.com/seanmalbert/bloom/issues/2713) [#2702](https://github.com/seanmalbert/bloom/issues/2702) [#2704](https://github.com/seanmalbert/bloom/issues/2704) [#2719](https://github.com/seanmalbert/bloom/issues/2719) [#2714](https://github.com/seanmalbert/bloom/issues/2714) [#2543](https://github.com/seanmalbert/bloom/issues/2543) [#2728](https://github.com/seanmalbert/bloom/issues/2728) [#2692](https://github.com/seanmalbert/bloom/issues/2692) [#2732](https://github.com/seanmalbert/bloom/issues/2732) [#2749](https://github.com/seanmalbert/bloom/issues/2749) [#2744](https://github.com/seanmalbert/bloom/issues/2744) [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -### BREAKING CHANGES - -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version - -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 - -* feat: ami chart jurisdictionalized - -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 - -* refactor: make backend a peer dependency in ui-components - -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 - -* feat: add a phone number column to the user_accounts table - -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a - -* chore: removes application program partners - -* chore: removes application program display - -* Revert "chore: removes application program display" - -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. - -* Revert "chore: removes application program partners" - -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. - -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version - -* fix: choose-language context - -* chore(release): version - -* fix: applications/view hide prefs - -* chore(release): version - -* feat: overrides fallback to english, tagalog support - -* chore(release): version - -* fix: account translations - -* chore(release): version - -* fix: units with invalid ami chart - -* chore(release): version - -* fix: remove description for the partners programs - -* fix: fix modal styles on mobile - -* fix: visual improvement to programs form display - -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version - -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 - -* feat: ami chart jurisdictionalized - -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 - -* refactor: make backend a peer dependency in ui-components - -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 - -* feat: add a phone number column to the user_accounts table - -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a - -* chore: removes application program partners - -* chore: removes application program display - -* Revert "chore: removes application program display" - -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. - -* Revert "chore: removes application program partners" - -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. - -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version - -* fix: choose-language context - -* chore(release): version - -* fix: applications/view hide prefs - -* chore(release): version - -* feat: overrides fallback to english, tagalog support - -* chore(release): version -* fix: account translations - -* chore(release): version - -* fix: units with invalid ami chart - -* chore(release): version - -* fix: remove description for the partners programs - -* fix: fix modal styles on mobile - -* fix: visual improvement to programs form display - -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version - -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 - -* feat: ami chart jurisdictionalized - -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 - -* refactor: make backend a peer dependency in ui-components - -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 - -* feat: add a phone number column to the user_accounts table - -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a - -* chore: removes application program partners - -* chore: removes application program display - -* Revert "chore: removes application program display" - -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. - -* Revert "chore: removes application program partners" - -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. - -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version +# [7.3.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.2.0...@bloom-housing/shared-helpers@7.3.0) (2023-01-26) -* fix: cannot save custom mailing, dropoff, or pickup address -* chore(release): version +### Features -* chore: converge on one axios version, remove peer dependency +* add description for FCFS in listing aside ([#3255](https://github.com/bloom-housing/bloom/issues/3255)) ([4905c31](https://github.com/bloom-housing/bloom/commit/4905c3173e96835f072c692934e326b0a0d7f626)) +* delete ui-c folder ([#3229](https://github.com/bloom-housing/bloom/issues/3229)) ([7472558](https://github.com/bloom-housing/bloom/commit/74725586e0c10c504087ffa4f8f621863a471ebd)) -* chore(release): version -* feat: simplify Waitlist component and use more flexible schema -* chore(release): version -* fix: lottery results uploads now save -* chore(release): version +# [7.2.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.7...@bloom-housing/shared-helpers@7.2.0) (2022-12-23) -* feat: add SRO unit type -* chore(release): version +### Features -* fix: paper application submission +* add 5 bedroom option ([#3230](https://github.com/bloom-housing/bloom/issues/3230)) ([8ada8dc](https://github.com/bloom-housing/bloom/commit/8ada8dcea9d2c3bf3fdd6f574bbe8afd08eb1a9d)) -* chore(release): version -* fix: choose-language context -* chore(release): version -* fix: applications/view hide prefs -* chore(release): version +## [7.1.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.6...@bloom-housing/shared-helpers@7.1.7) (2022-12-22) -* feat: overrides fallback to english, tagalog support -* chore(release): version +### Bug Fixes -* fix: account translations +* public site user confirmation issue ([#561](https://github.com/bloom-housing/bloom/issues/561)) ([#3222](https://github.com/bloom-housing/bloom/issues/3222)) ([a6ee947](https://github.com/bloom-housing/bloom/commit/a6ee947d6a73689f9084a4f2599d1d6e22dd95e9)) -* chore(release): version -* fix: units with invalid ami chart -* chore(release): version -* fix: remove description for the partners programs -* fix: fix modal styles on mobile +## [7.1.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.5...@bloom-housing/shared-helpers@7.1.6) (2022-12-13) -* fix: visual improvement to programs form display +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [7.1.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.4...@bloom-housing/shared-helpers@7.1.5) (2022-12-08) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. -* chore(release): version - - @bloom-housing/shared-helpers@4.2.2-alpha.10 - - @bloom-housing/partners@4.2.2-alpha.11 - - @bloom-housing/public@4.2.2-alpha.11 - - @bloom-housing/ui-components@4.2.2-alpha.10 -* the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings -* chore(release): version - - @bloom-housing/shared-helpers@4.2.2-alpha.23 - - @bloom-housing/partners@4.2.2-alpha.27 - - @bloom-housing/public@4.2.2-alpha.26 - - @bloom-housing/ui-components@4.2.2-alpha.23 -* the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set +## [7.1.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.3...@bloom-housing/shared-helpers@7.1.4) (2022-12-08) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers - - @bloom-housing/shared-helpers@4.2.2-alpha.24 - - @bloom-housing/partners@4.2.2-alpha.28 - - @bloom-housing/public@4.2.2-alpha.27 - - @bloom-housing/ui-components@4.2.2-alpha.24 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 + + +## [7.1.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.2...@bloom-housing/shared-helpers@7.1.3) (2022-12-06) + +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.4.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.29...@bloom-housing/shared-helpers@4.4.1-alpha.30) (2022-06-16) +## [7.1.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.1...@bloom-housing/shared-helpers@7.1.2) (2022-12-06) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2793,7 +2108,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.28...@bloom-housing/shared-helpers@4.4.1-alpha.29) (2022-06-14) +## [7.1.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.1.0...@bloom-housing/shared-helpers@7.1.1) (2022-12-05) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2801,18 +2116,18 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.27...@bloom-housing/shared-helpers@4.4.1-alpha.28) (2022-06-13) +# [7.1.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.5...@bloom-housing/shared-helpers@7.1.0) (2022-11-30) -### Bug Fixes +### Features -* autofill skipping ([#2800](https://github.com/bloom-housing/bloom/issues/2800)) ([4b6ebbe](https://github.com/bloom-housing/bloom/commit/4b6ebbe4374ce774959f44e43ee62a670bf9dd9e)) +* add startDate field to listing events ([#3167](https://github.com/bloom-housing/bloom/issues/3167)) ([3d0aa11](https://github.com/bloom-housing/bloom/commit/3d0aa11abf36db016fa3ce3117a72b5fdad88614)) -## [4.4.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.26...@bloom-housing/shared-helpers@4.4.1-alpha.27) (2022-06-13) +## [7.0.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.4...@bloom-housing/shared-helpers@7.0.5) (2022-11-29) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2820,7 +2135,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.25...@bloom-housing/shared-helpers@4.4.1-alpha.26) (2022-06-13) +## [7.0.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.3...@bloom-housing/shared-helpers@7.0.4) (2022-11-21) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2828,7 +2143,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.24...@bloom-housing/shared-helpers@4.4.1-alpha.25) (2022-06-10) +## [7.0.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.2...@bloom-housing/shared-helpers@7.0.3) (2022-11-16) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2836,7 +2151,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.23...@bloom-housing/shared-helpers@4.4.1-alpha.24) (2022-06-10) +## [7.0.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.2-alpha.2...@bloom-housing/shared-helpers@7.0.2) (2022-11-14) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2844,15 +2159,18 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.22...@bloom-housing/shared-helpers@4.4.1-alpha.23) (2022-06-09) +## [7.0.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.2-alpha.1...@bloom-housing/shared-helpers@7.0.2-alpha.2) (2022-11-03) -**Note:** Version bump only for package @bloom-housing/shared-helpers + +### Bug Fixes + +* allow for more space for modals on mobile ([#3153](https://github.com/bloom-housing/bloom/issues/3153)) ([7e41703](https://github.com/bloom-housing/bloom/commit/7e41703ad8571eb160f4eaf53f40f9055f7639a3)) -## [4.4.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.21...@bloom-housing/shared-helpers@4.4.1-alpha.22) (2022-06-09) +## [7.0.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.2-alpha.0...@bloom-housing/shared-helpers@7.0.2-alpha.1) (2022-11-02) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2860,7 +2178,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.20...@bloom-housing/shared-helpers@4.4.1-alpha.21) (2022-06-09) +## [7.0.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1...@bloom-housing/shared-helpers@7.0.2-alpha.0) (2022-10-31) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2868,7 +2186,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.19...@bloom-housing/shared-helpers@4.4.1-alpha.20) (2022-06-09) +## [7.0.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.9...@bloom-housing/shared-helpers@7.0.1) (2022-10-26) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2876,7 +2194,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.18...@bloom-housing/shared-helpers@4.4.1-alpha.19) (2022-06-08) +## [7.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.8...@bloom-housing/shared-helpers@7.0.1-alpha.9) (2022-10-26) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2884,7 +2202,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.17...@bloom-housing/shared-helpers@4.4.1-alpha.18) (2022-06-08) +## [7.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.7...@bloom-housing/shared-helpers@7.0.1-alpha.8) (2022-10-25) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2892,7 +2210,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.16...@bloom-housing/shared-helpers@4.4.1-alpha.17) (2022-06-07) +## [7.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.6...@bloom-housing/shared-helpers@7.0.1-alpha.7) (2022-10-25) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2900,7 +2218,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.15...@bloom-housing/shared-helpers@4.4.1-alpha.16) (2022-06-07) +## [7.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.5...@bloom-housing/shared-helpers@7.0.1-alpha.6) (2022-10-24) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2908,7 +2226,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.14...@bloom-housing/shared-helpers@4.4.1-alpha.15) (2022-06-07) +## [7.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.4...@bloom-housing/shared-helpers@7.0.1-alpha.5) (2022-10-21) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2916,7 +2234,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.13...@bloom-housing/shared-helpers@4.4.1-alpha.14) (2022-06-06) +## [7.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.3...@bloom-housing/shared-helpers@7.0.1-alpha.4) (2022-10-20) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2924,7 +2242,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.12...@bloom-housing/shared-helpers@4.4.1-alpha.13) (2022-06-04) +## [7.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.2...@bloom-housing/shared-helpers@7.0.1-alpha.3) (2022-10-19) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2932,7 +2250,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.11...@bloom-housing/shared-helpers@4.4.1-alpha.12) (2022-06-03) +## [7.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.1...@bloom-housing/shared-helpers@7.0.1-alpha.2) (2022-10-13) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2940,7 +2258,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.10...@bloom-housing/shared-helpers@4.4.1-alpha.11) (2022-06-02) +## [7.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@7.0.1-alpha.0...@bloom-housing/shared-helpers@7.0.1-alpha.1) (2022-10-12) **Note:** Version bump only for package @bloom-housing/shared-helpers @@ -2948,2786 +2266,3996 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.9...@bloom-housing/shared-helpers@4.4.1-alpha.10) (2022-06-01) +## [7.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@6.0.1-alpha.4...@bloom-housing/shared-helpers@7.0.1-alpha.0) (2022-10-05) +**Note:** Version bump only for package @bloom-housing/shared-helpers -### Features -* add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +# [7.0.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.37...@bloom-housing/shared-helpers@7.0.0) (2022-09-29) -## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.8...@bloom-housing/shared-helpers@4.4.1-alpha.9) (2022-05-31) +* Release/2022 09 29 (#3114) ([dd9cbd6](https://github.com/bloom-housing/bloom/commit/dd9cbd6e549c69a3410a0753011e8f157ef61f31)), closes [#3114](https://github.com/bloom-housing/bloom/issues/3114) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3056](https://github.com/bloom-housing/bloom/issues/3056) [#3075](https://github.com/bloom-housing/bloom/issues/3075) [#3095](https://github.com/bloom-housing/bloom/issues/3095) [#3090](https://github.com/bloom-housing/bloom/issues/3090) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) -**Note:** Version bump only for package @bloom-housing/shared-helpers +### BREAKING CHANGES +* The preference and program entities have been merged into a single entity called MultiselectQuestion +* chore(release): version + - @bloom-housing/backend-core@5.1.1-alpha.8 + - @bloom-housing/shared-helpers@5.1.1-alpha.18 + - @bloom-housing/partners@5.1.1-alpha.20 + - @bloom-housing/public@5.1.1-alpha.18 + - @bloom-housing/ui-components@5.1.1-alpha.11 -## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.7...@bloom-housing/shared-helpers@4.4.1-alpha.8) (2022-05-31) -**Note:** Version bump only for package @bloom-housing/shared-helpers +## [6.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@6.0.1-alpha.0...@bloom-housing/shared-helpers@6.0.1-alpha.1) (2022-09-28) +### Features -## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.6...@bloom-housing/shared-helpers@4.4.1-alpha.7) (2022-05-31) +- add duplicates v2 feature ([11cd2b3](https://github.com/bloom-housing/bloom/commit/11cd2b3b4d39c69e10ca1c9a8c2c7199b4a08b6b)), closes [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) + +### BREAKING CHANGES + +- The preference and program entities have been merged into a single entity called MultiselectQuestion + +- chore(release): version + +* @bloom-housing/backend-core@5.1.1-alpha.8 +* @bloom-housing/shared-helpers@5.1.1-alpha.18 +* @bloom-housing/partners@5.1.1-alpha.20 +* @bloom-housing/public@5.1.1-alpha.18 +* @bloom-housing/ui-components@5.1.1-alpha.11 + +## [6.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.52...@bloom-housing/shared-helpers@6.0.1-alpha.0) (2022-09-28) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.51...@bloom-housing/shared-helpers@5.1.1-alpha.52) (2022-09-28) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.50...@bloom-housing/shared-helpers@5.1.1-alpha.51) (2022-09-28) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.5...@bloom-housing/shared-helpers@4.4.1-alpha.6) (2022-05-26) +## [5.1.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.49...@bloom-housing/shared-helpers@5.1.1-alpha.50) (2022-09-26) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.48...@bloom-housing/shared-helpers@5.1.1-alpha.49) (2022-09-26) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.47...@bloom-housing/shared-helpers@5.1.1-alpha.48) (2022-09-26) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.4...@bloom-housing/shared-helpers@4.4.1-alpha.5) (2022-05-26) +## [5.1.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.46...@bloom-housing/shared-helpers@5.1.1-alpha.47) (2022-09-26) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.45...@bloom-housing/shared-helpers@5.1.1-alpha.46) (2022-09-23) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.44...@bloom-housing/shared-helpers@5.1.1-alpha.45) (2022-09-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.3...@bloom-housing/shared-helpers@4.4.1-alpha.4) (2022-05-26) +## [5.1.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.43...@bloom-housing/shared-helpers@5.1.1-alpha.44) (2022-09-19) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.42...@bloom-housing/shared-helpers@5.1.1-alpha.43) (2022-09-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.41...@bloom-housing/shared-helpers@5.1.1-alpha.42) (2022-09-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.2...@bloom-housing/shared-helpers@4.4.1-alpha.3) (2022-05-25) +## [5.1.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.40...@bloom-housing/shared-helpers@5.1.1-alpha.41) (2022-09-14) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.39...@bloom-housing/shared-helpers@5.1.1-alpha.40) (2022-09-13) + +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.38...@bloom-housing/shared-helpers@5.1.1-alpha.39) (2022-09-13) +### Bug Fixes +- return N/A string if rent and income is NaN ([#3040](https://github.com/bloom-housing/bloom/issues/3040)) ([be5c1a1](https://github.com/bloom-housing/bloom/commit/be5c1a1c7d68395264ea9bf7ddacf8c2ca9bfbef)) -## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.1...@bloom-housing/shared-helpers@4.4.1-alpha.2) (2022-05-25) +## [5.1.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.37...@bloom-housing/shared-helpers@5.1.1-alpha.38) (2022-09-12) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.36...@bloom-housing/shared-helpers@5.1.1-alpha.37) (2022-09-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.35...@bloom-housing/shared-helpers@5.1.1-alpha.36) (2022-09-08) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.0...@bloom-housing/shared-helpers@4.4.1-alpha.1) (2022-05-25) +## [5.1.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.34...@bloom-housing/shared-helpers@5.1.1-alpha.35) (2022-08-31) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.33...@bloom-housing/shared-helpers@5.1.1-alpha.34) (2022-08-31) +**Note:** Version bump only for package @bloom-housing/shared-helpers +- 2022-08-24 release (#2993) ([6f1deac](https://github.com/bloom-housing/bloom/commit/6f1deac5370fa8286b051b09431d153d22901b3a)), closes [#2993](https://github.com/bloom-housing/bloom/issues/2993) [#2821](https://github.com/bloom-housing/bloom/issues/2821) [#2764](https://github.com/bloom-housing/bloom/issues/2764) [#2767](https://github.com/bloom-housing/bloom/issues/2767) [#2787](https://github.com/bloom-housing/bloom/issues/2787) [#2769](https://github.com/bloom-housing/bloom/issues/2769) [#2781](https://github.com/bloom-housing/bloom/issues/2781) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2847](https://github.com/bloom-housing/bloom/issues/2847) [#2830](https://github.com/bloom-housing/bloom/issues/2830) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2846](https://github.com/bloom-housing/bloom/issues/2846) [#2851](https://github.com/bloom-housing/bloom/issues/2851) [#2594](https://github.com/bloom-housing/bloom/issues/2594) [#2812](https://github.com/bloom-housing/bloom/issues/2812) [#2799](https://github.com/bloom-housing/bloom/issues/2799) [#2828](https://github.com/bloom-housing/bloom/issues/2828) [#2843](https://github.com/bloom-housing/bloom/issues/2843) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [#2875](https://github.com/bloom-housing/bloom/issues/2875) [#2859](https://github.com/bloom-housing/bloom/issues/2859) [#2848](https://github.com/bloom-housing/bloom/issues/2848) [#2785](https://github.com/bloom-housing/bloom/issues/2785) +### BREAKING CHANGES -## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.3.1-alpha.2...@bloom-housing/shared-helpers@4.4.1-alpha.0) (2022-05-25) +- prop name change for header from "text" to "content" +- chore(release): version -* 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 +## [5.1.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.22...@bloom-housing/shared-helpers@5.1.1-alpha.23) (2022-08-24) -### BREAKING CHANGES +### Features -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- adds the ability to manage preference for partner admins ([#2985](https://github.com/bloom-housing/bloom/issues/2985)) ([0f1f470](https://github.com/bloom-housing/bloom/commit/0f1f470f00f4ef95a2e35a921701339fb813f1f5)) -* chore(release): version +## [5.1.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.21...@bloom-housing/shared-helpers@5.1.1-alpha.22) (2022-08-24) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.20...@bloom-housing/shared-helpers@5.1.1-alpha.21) (2022-08-24) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.19...@bloom-housing/shared-helpers@5.1.1-alpha.20) (2022-08-23) +**Note:** Version bump only for package @bloom-housing/shared-helpers -# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.3...@bloom-housing/shared-helpers@4.4.0) (2022-05-24) +## [5.1.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.18...@bloom-housing/shared-helpers@5.1.1-alpha.19) (2022-08-23) +**Note:** Version bump only for package @bloom-housing/shared-helpers -* 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +## [5.1.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.17...@bloom-housing/shared-helpers@5.1.1-alpha.18) (2022-08-23) +- refactor!: preferences & programs data model merged (#2904) ([8e027ff](https://github.com/bloom-housing/bloom/commit/8e027ff905118f36c61bc0f974231d9bb8911131)), closes [#2904](https://github.com/bloom-housing/bloom/issues/2904) ### BREAKING CHANGES -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- The preference and program entities have been merged into a single entity called MultiselectQuestion -* chore(release): version +## [5.1.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.16...@bloom-housing/shared-helpers@5.1.1-alpha.17) (2022-08-23) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.15...@bloom-housing/shared-helpers@5.1.1-alpha.16) (2022-08-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.14...@bloom-housing/shared-helpers@5.1.1-alpha.15) (2022-08-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.3.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.3.1-alpha.1...@bloom-housing/shared-helpers@4.3.1-alpha.2) (2022-05-24) +## [5.1.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.13...@bloom-housing/shared-helpers@5.1.1-alpha.14) (2022-08-18) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.12...@bloom-housing/shared-helpers@5.1.1-alpha.13) (2022-08-18) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.11...@bloom-housing/shared-helpers@5.1.1-alpha.12) (2022-08-18) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.3.1-alpha.0...@bloom-housing/shared-helpers@4.3.1-alpha.1) (2022-05-24) +## [5.1.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.10...@bloom-housing/shared-helpers@5.1.1-alpha.11) (2022-08-16) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.9...@bloom-housing/shared-helpers@5.1.1-alpha.10) (2022-08-16) + +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.8...@bloom-housing/shared-helpers@5.1.1-alpha.9) (2022-08-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.7...@bloom-housing/shared-helpers@5.1.1-alpha.8) (2022-08-16) -## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.30...@bloom-housing/shared-helpers@4.3.1-alpha.0) (2022-05-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.6...@bloom-housing/shared-helpers@5.1.1-alpha.7) (2022-08-16) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/shared-helpers -* remove alameda reference in demographics ([cc6761b](https://github.com/bloom-housing/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) -* versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([c274a29](https://github.com/bloom-housing/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +## [5.1.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.5...@bloom-housing/shared-helpers@5.1.1-alpha.6) (2022-08-16) + +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.4...@bloom-housing/shared-helpers@5.1.1-alpha.5) (2022-08-12) -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) -* Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.3...@bloom-housing/shared-helpers@5.1.1-alpha.4) (2022-08-12) -### Features +**Note:** Version bump only for package @bloom-housing/shared-helpers -* add SRO unit type ([a4c1403](https://github.com/bloom-housing/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) -* new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +## [5.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.2...@bloom-housing/shared-helpers@5.1.1-alpha.3) (2022-08-03) +**Note:** Version bump only for package @bloom-housing/shared-helpers -### Reverts +## [5.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.1...@bloom-housing/shared-helpers@5.1.1-alpha.2) (2022-08-01) -* Revert "chore(release): version" ([47a2c67](https://github.com/bloom-housing/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [5.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.1.1-alpha.0...@bloom-housing/shared-helpers@5.1.1-alpha.1) (2022-08-01) + +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [5.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.38...@bloom-housing/shared-helpers@5.1.1-alpha.0) (2022-07-27) +- 2022-07-26 sync master (#2917) ([6f0dd1d](https://github.com/bloom-housing/bloom/commit/6f0dd1df4d2df12e0e94cb339c9232531a37f2a2)), closes [#2917](https://github.com/bloom-housing/bloom/issues/2917) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) ### BREAKING CHANGES -* remove applicationDueTime field and consolidated into applicationDueDate +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* chore(release): version +# [5.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@5.0.0...@bloom-housing/shared-helpers@5.1.0) (2022-07-27) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +### Bug Fixes -* chore(release): version +- autofill skipping ([#2800](https://github.com/seanmalbert/bloom/issues/2800)) ([4b6ebbe](https://github.com/seanmalbert/bloom/commit/4b6ebbe4374ce774959f44e43ee62a670bf9dd9e)) +- bump version ([#2349](https://github.com/seanmalbert/bloom/issues/2349)) ([b9e3ba1](https://github.com/seanmalbert/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/seanmalbert/bloom/issues/2350)) ([05863f5](https://github.com/seanmalbert/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- user status enum to camel case; gtm types ([fbb8004](https://github.com/seanmalbert/bloom/commit/fbb800496fa1c5f37d3d7738acf28755dd66f1dd)) +- versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([0b1d143](https://github.com/seanmalbert/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +### Code Refactoring -* chore(release): version +- remove backend dependencies from events components, consolidate ([#2495](https://github.com/seanmalbert/bloom/issues/2495)) ([d884689](https://github.com/seanmalbert/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +- remove backend dependencies from sidebar application components ([#2675](https://github.com/seanmalbert/bloom/issues/2675)) ([d2ebf87](https://github.com/seanmalbert/bloom/commit/d2ebf87c34af3f5b6168fa4e08663fea0a4a872c)) +- removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +- 2022-07-26 release (#2916) ([af8d3df](https://github.com/seanmalbert/bloom/commit/af8d3dfc1974878cc21500272405ef5046dcfb50)), closes [#2916](https://github.com/seanmalbert/bloom/issues/2916) [#2821](https://github.com/seanmalbert/bloom/issues/2821) [#2764](https://github.com/seanmalbert/bloom/issues/2764) [#2767](https://github.com/seanmalbert/bloom/issues/2767) [#2787](https://github.com/seanmalbert/bloom/issues/2787) [#2769](https://github.com/seanmalbert/bloom/issues/2769) [#2781](https://github.com/seanmalbert/bloom/issues/2781) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2847](https://github.com/seanmalbert/bloom/issues/2847) [#2830](https://github.com/seanmalbert/bloom/issues/2830) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2846](https://github.com/seanmalbert/bloom/issues/2846) [#2851](https://github.com/seanmalbert/bloom/issues/2851) [#2594](https://github.com/seanmalbert/bloom/issues/2594) [#2812](https://github.com/seanmalbert/bloom/issues/2812) [#2799](https://github.com/seanmalbert/bloom/issues/2799) [#2828](https://github.com/seanmalbert/bloom/issues/2828) [#2843](https://github.com/seanmalbert/bloom/issues/2843) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [#2875](https://github.com/seanmalbert/bloom/issues/2875) [#2859](https://github.com/seanmalbert/bloom/issues/2859) [#2848](https://github.com/seanmalbert/bloom/issues/2848) [#2785](https://github.com/seanmalbert/bloom/issues/2785) +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/seanmalbert/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/seanmalbert/bloom/issues/2825) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/seanmalbert/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/seanmalbert/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/seanmalbert/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022 03 28 sync master (#2593) ([580283d](https://github.com/seanmalbert/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) -* chore(release): version +### Features - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- add accessibility building features to listing ([#2755](https://github.com/seanmalbert/bloom/issues/2755)) ([0c8dfb8](https://github.com/seanmalbert/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +- adds event logging to most of the pages ([dc88c0a](https://github.com/seanmalbert/bloom/commit/dc88c0a8b6be317cd624921b868bb17e77e31f11)) +- adds gtm tracking to rest of pages ([#2545](https://github.com/seanmalbert/bloom/issues/2545)) ([1c96f71](https://github.com/seanmalbert/bloom/commit/1c96f7101017aefd8bca70731265f6efb1ab5cf0)) +- **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/seanmalbert/bloom/issues/2291)) ([5b10098](https://github.com/seanmalbert/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) +- **backend:** make listing image an array ([#2477](https://github.com/seanmalbert/bloom/issues/2477)) ([cab9800](https://github.com/seanmalbert/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +- new category table component ([#2648](https://github.com/seanmalbert/bloom/issues/2648)) ([3b3fe46](https://github.com/seanmalbert/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +- outdated password messaging updates ([b14e19d](https://github.com/seanmalbert/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +- refactor ada form fields ([#2612](https://github.com/seanmalbert/bloom/issues/2612)) ([f516f21](https://github.com/seanmalbert/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) +- updates for gtm ([0251cd3](https://github.com/seanmalbert/bloom/commit/0251cd3d73be19d60c148aae01d12ab35f29bc85)) +- updates for gtm ([13578bb](https://github.com/seanmalbert/bloom/commit/13578bb864ea1b1918d5908982cb3095756811c7)) +- updates to mfa styling ([#2532](https://github.com/seanmalbert/bloom/issues/2532)) ([7654efc](https://github.com/seanmalbert/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) + +### BREAKING CHANGES -* chore(release): version +- prop name change for header from "text" to "content" - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -* chore(release): version +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* chore(release): version +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* preferences model and relationships changed +- chore(release): version -* feat: feat(backend): extend UserUpdateDto to support email change +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes -## [4.2.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.29...@bloom-housing/shared-helpers@4.2.2-alpha.30) (2022-05-13) +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -**Note:** Version bump only for package @bloom-housing/shared-helpers +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type -## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.2...@bloom-housing/shared-helpers@4.2.3) (2022-04-28) -## [4.2.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.28...@bloom-housing/shared-helpers@4.2.2-alpha.29) (2022-05-11) +- feat: adds bottom border to preferences -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests -## [4.2.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.1...@bloom-housing/shared-helpers@4.2.2) (2022-04-19) -## [4.2.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.27...@bloom-housing/shared-helpers@4.2.2-alpha.28) (2022-05-11) +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -## [4.2.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.26...@bloom-housing/shared-helpers@4.2.2-alpha.27) (2022-05-10) +- feat: one month rent -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -## [4.2.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.25...@bloom-housing/shared-helpers@4.2.2-alpha.26) (2022-05-05) +- feat: adds jurisdictions to pref seeds -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -## [4.2.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.24...@bloom-housing/shared-helpers@4.2.2-alpha.25) (2022-05-04) +- fix: add ariaHidden to Icon component -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -## [4.2.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.23...@bloom-housing/shared-helpers@4.2.2-alpha.24) (2022-05-04) +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -### Code Refactoring +- chore: release version -* remove backend dependencies from sidebar application components ([#2675](https://github.com/bloom-housing/bloom/issues/2675)) ([d2ebf87](https://github.com/bloom-housing/bloom/commit/d2ebf87c34af3f5b6168fa4e08663fea0a4a872c)) +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized -### BREAKING CHANGES +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners -## [4.2.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.22...@bloom-housing/shared-helpers@4.2.2-alpha.23) (2022-05-04) +- chore: removes application program display -**Note:** Version bump only for package @bloom-housing/shared-helpers +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger -## [4.2.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.21...@bloom-housing/shared-helpers@4.2.2-alpha.22) (2022-05-03) +- fix: removes Duplicate identifier fieldGroupObjectToArray -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: skip preferences if not on listing +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency -## [4.2.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.20...@bloom-housing/shared-helpers@4.2.2-alpha.21) (2022-04-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type -## [4.2.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.19...@bloom-housing/shared-helpers@4.2.2-alpha.20) (2022-04-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: paper application submission +- chore(release): version +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs -## [4.2.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.18...@bloom-housing/shared-helpers@4.2.2-alpha.19) (2022-04-28) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: overrides fallback to english, tagalog support +- chore(release): version +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart -## [4.2.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.17...@bloom-housing/shared-helpers@4.2.2-alpha.18) (2022-04-28) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: remove description for the partners programs +- fix: fix modal styles on mobile +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.2.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.16...@bloom-housing/shared-helpers@4.2.2-alpha.17) (2022-04-28) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -## [4.2.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.15...@bloom-housing/shared-helpers@4.2.2-alpha.16) (2022-04-27) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -## [4.2.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.14...@bloom-housing/shared-helpers@4.2.2-alpha.15) (2022-04-26) +- refactor: 2085/adds top level catchAll exception filter -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order -## [4.2.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.13...@bloom-housing/shared-helpers@4.2.2-alpha.14) (2022-04-22) +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests -## [4.2.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.12...@bloom-housing/shared-helpers@4.2.2-alpha.13) (2022-04-22) +- fix: fix member tests -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -## [4.2.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.11...@bloom-housing/shared-helpers@4.2.2-alpha.12) (2022-04-22) +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences -## [4.2.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.10...@bloom-housing/shared-helpers@4.2.2-alpha.11) (2022-04-21) +- feat: updates preference string -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -## [4.2.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.9...@bloom-housing/shared-helpers@4.2.2-alpha.10) (2022-04-21) +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -### Features +- feat: adds listing management cypress tests to partner portal -* new category table component ([#2648](https://github.com/bloom-housing/bloom/issues/2648)) ([3b3fe46](https://github.com/bloom-housing/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -### BREAKING CHANGES +- feat: one month rent -* There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.8...@bloom-housing/shared-helpers@4.2.2-alpha.9) (2022-04-20) +- feat: adds jurisdictions to pref seeds -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.7...@bloom-housing/shared-helpers@4.2.2-alpha.8) (2022-04-20) +- fix: add ariaHidden to Icon component -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.6...@bloom-housing/shared-helpers@4.2.2-alpha.7) (2022-04-20) +- fix: remove alameda reference in demographics -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.5...@bloom-housing/shared-helpers@4.2.2-alpha.6) (2022-04-20) +- refactor: make backend a peer dependency in ui-components -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display -## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.4...@bloom-housing/shared-helpers@4.2.2-alpha.5) (2022-04-19) +- Revert "chore: removes application program display" -**Note:** Version bump only for package @bloom-housing/shared-helpers +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.3...@bloom-housing/shared-helpers@4.2.2-alpha.4) (2022-04-18) +- feat: skip preferences if not on listing -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version -## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.2...@bloom-housing/shared-helpers@4.2.2-alpha.3) (2022-04-18) +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version -### Features +- fix: lottery results uploads now save -* refactor ada form fields ([#2612](https://github.com/bloom-housing/bloom/issues/2612)) ([f516f21](https://github.com/bloom-housing/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) +- chore(release): version +- feat: add SRO unit type +- chore(release): version +- fix: paper application submission +- chore(release): version -## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.1...@bloom-housing/shared-helpers@4.2.2-alpha.2) (2022-04-14) +- fix: choose-language context -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version -## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.0...@bloom-housing/shared-helpers@4.2.2-alpha.1) (2022-04-13) +- fix: account translations -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs +- fix: fix modal styles on mobile -## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.4...@bloom-housing/shared-helpers@4.2.2-alpha.0) (2022-04-13) +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### BREAKING CHANGES +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* preferences model and relationships changed +- chore(release): version -* feat: feat(backend): extend UserUpdateDto to support email change +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive + +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f + +- fix: remove alameda reference in demographics + +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d + +- chore: release version + +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 + +- feat: ami chart jurisdictionalized + +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 + +- refactor: make backend a peer dependency in ui-components + +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 + +- feat: add a phone number column to the user_accounts table + +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a + +- chore: removes application program partners + +- chore: removes application program display + +- Revert "chore: removes application program display" + +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. + +- Revert "chore: removes application program partners" + +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. + +- chore: yarn.lock and backend-swagger + +- fix: removes Duplicate identifier fieldGroupObjectToArray + +- feat: skip preferences if not on listing + +- chore(release): version + +- fix: cannot save custom mailing, dropoff, or pickup address + +- chore(release): version + +- chore: converge on one axios version, remove peer dependency + +- chore(release): version + +- feat: simplify Waitlist component and use more flexible schema + +- chore(release): version + +- fix: lottery results uploads now save + +- chore(release): version + +- feat: add SRO unit type + +- chore(release): version + +- fix: paper application submission + +- chore(release): version + +- fix: choose-language context + +- chore(release): version + +- fix: applications/view hide prefs + +- chore(release): version + +- feat: overrides fallback to english, tagalog support + +- chore(release): version + +- fix: account translations + +- chore(release): version -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: units with invalid ami chart -* fix: remove alameda reference in demographics +- chore(release): version -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- fix: remove description for the partners programs -* chore: release version +- fix: fix modal styles on mobile -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- fix: visual improvement to programs form display -* feat: ami chart jurisdictionalized +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- chore(release): version -* refactor: make backend a peer dependency in ui-components +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* feat: add a phone number column to the user_accounts table +- chore(release): version -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* chore: removes application program partners +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore: removes application program display +- chore(release): version -* Revert "chore: removes application program display" +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- moved some helpers from ui-components to shared-helpers +- sign-in pages have been updated -* Revert "chore: removes application program partners" +## [5.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.37...@bloom-housing/shared-helpers@5.0.1-alpha.38) (2022-07-27) -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +**Note:** Version bump only for package @bloom-housing/shared-helpers -* chore: yarn.lock and backend-swagger +## [5.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.36...@bloom-housing/shared-helpers@5.0.1-alpha.37) (2022-07-27) -* fix: removes Duplicate identifier fieldGroupObjectToArray +**Note:** Version bump only for package @bloom-housing/shared-helpers -* feat: skip preferences if not on listing +## [5.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.35...@bloom-housing/shared-helpers@5.0.1-alpha.36) (2022-07-26) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: cannot save custom mailing, dropoff, or pickup address +## [5.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.34...@bloom-housing/shared-helpers@5.0.1-alpha.35) (2022-07-26) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* chore: converge on one axios version, remove peer dependency +## [5.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.33...@bloom-housing/shared-helpers@5.0.1-alpha.34) (2022-07-26) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* feat: simplify Waitlist component and use more flexible schema +## [5.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.32...@bloom-housing/shared-helpers@5.0.1-alpha.33) (2022-07-26) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: lottery results uploads now save +## [5.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.31...@bloom-housing/shared-helpers@5.0.1-alpha.32) (2022-07-26) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* feat: add SRO unit type +## [5.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.30...@bloom-housing/shared-helpers@5.0.1-alpha.31) (2022-07-22) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: paper application submission +## [5.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.29...@bloom-housing/shared-helpers@5.0.1-alpha.30) (2022-07-20) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: choose-language context +## [5.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.28...@bloom-housing/shared-helpers@5.0.1-alpha.29) (2022-07-20) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: applications/view hide prefs +## [5.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.27...@bloom-housing/shared-helpers@5.0.1-alpha.28) (2022-07-20) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* feat: overrides fallback to english, tagalog support +## [5.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.26...@bloom-housing/shared-helpers@5.0.1-alpha.27) (2022-07-20) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: account translations +## [5.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.25...@bloom-housing/shared-helpers@5.0.1-alpha.26) (2022-07-19) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: units with invalid ami chart +## [5.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.24...@bloom-housing/shared-helpers@5.0.1-alpha.25) (2022-07-19) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: remove description for the partners programs +## [5.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.23...@bloom-housing/shared-helpers@5.0.1-alpha.24) (2022-07-15) -* fix: fix modal styles on mobile +**Note:** Version bump only for package @bloom-housing/shared-helpers -* fix: visual improvement to programs form display +## [5.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.22...@bloom-housing/shared-helpers@5.0.1-alpha.23) (2022-07-13) -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/shared-helpers -* chore(release): version +## [5.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.21...@bloom-housing/shared-helpers@5.0.1-alpha.22) (2022-07-13) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/shared-helpers -* chore(release): version +## [5.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.20...@bloom-housing/shared-helpers@5.0.1-alpha.21) (2022-07-12) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +**Note:** Version bump only for package @bloom-housing/shared-helpers -* chore(release): version +## [5.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.19...@bloom-housing/shared-helpers@5.0.1-alpha.20) (2022-07-12) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.18...@bloom-housing/shared-helpers@5.0.1-alpha.19) (2022-07-12) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.17...@bloom-housing/shared-helpers@5.0.1-alpha.18) (2022-07-11) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.0...@bloom-housing/shared-helpers@4.2.1) (2022-04-11) +## [5.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.16...@bloom-housing/shared-helpers@5.0.1-alpha.17) (2022-07-11) +**Note:** Version bump only for package @bloom-housing/shared-helpers -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +## [5.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.15...@bloom-housing/shared-helpers@5.0.1-alpha.16) (2022-07-11) +**Note:** Version bump only for package @bloom-housing/shared-helpers -### BREAKING CHANGES +## [5.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.14...@bloom-housing/shared-helpers@5.0.1-alpha.15) (2022-07-08) -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/shared-helpers -* chore(release): version +## [5.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.13...@bloom-housing/shared-helpers@5.0.1-alpha.14) (2022-07-07) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +**Note:** Version bump only for package @bloom-housing/shared-helpers -* chore(release): version +## [5.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.12...@bloom-housing/shared-helpers@5.0.1-alpha.13) (2022-07-06) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.11...@bloom-housing/shared-helpers@5.0.1-alpha.12) (2022-07-06) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.10...@bloom-housing/shared-helpers@5.0.1-alpha.11) (2022-07-02) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.2.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.3...@bloom-housing/shared-helpers@4.2.1-alpha.4) (2022-04-13) +## [5.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.9...@bloom-housing/shared-helpers@5.0.1-alpha.10) (2022-06-29) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.8...@bloom-housing/shared-helpers@5.0.1-alpha.9) (2022-06-29) + +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.7...@bloom-housing/shared-helpers@5.0.1-alpha.8) (2022-06-28) +### Bug Fixes +- use lottery date in confirmation screen ([#2847](https://github.com/bloom-housing/bloom/issues/2847)) ([e4e9a7b](https://github.com/bloom-housing/bloom/commit/e4e9a7b0cb25abc4e412595e4c96c31f2fa857e0)) -## [4.2.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.2...@bloom-housing/shared-helpers@4.2.1-alpha.3) (2022-04-08) +## [5.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.6...@bloom-housing/shared-helpers@5.0.1-alpha.7) (2022-06-27) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.5...@bloom-housing/shared-helpers@5.0.1-alpha.6) (2022-06-23) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.4...@bloom-housing/shared-helpers@5.0.1-alpha.5) (2022-06-23) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.1...@bloom-housing/shared-helpers@4.2.1-alpha.2) (2022-04-07) +## [5.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.3...@bloom-housing/shared-helpers@5.0.1-alpha.4) (2022-06-23) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.2...@bloom-housing/shared-helpers@5.0.1-alpha.3) (2022-06-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.1...@bloom-housing/shared-helpers@5.0.1-alpha.2) (2022-06-21) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.0...@bloom-housing/shared-helpers@4.2.1-alpha.1) (2022-04-07) +## [5.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@5.0.1-alpha.0...@bloom-housing/shared-helpers@5.0.1-alpha.1) (2022-06-17) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [5.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.30...@bloom-housing/shared-helpers@5.0.1-alpha.0) (2022-06-16) +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/bloom-housing/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/bloom-housing/bloom/issues/2825) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.5...@bloom-housing/shared-helpers@4.2.1-alpha.0) (2022-04-06) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +# [5.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.4.0...@bloom-housing/shared-helpers@5.0.0) (2022-06-16) +- 2022-06-16 release (#2824) ([1abd991](https://github.com/seanmalbert/bloom/commit/1abd991136e28598b7856164b88bef462b8ff566)), closes [#2824](https://github.com/seanmalbert/bloom/issues/2824) [#2521](https://github.com/seanmalbert/bloom/issues/2521) [#2504](https://github.com/seanmalbert/bloom/issues/2504) [#2520](https://github.com/seanmalbert/bloom/issues/2520) [#2517](https://github.com/seanmalbert/bloom/issues/2517) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2529](https://github.com/seanmalbert/bloom/issues/2529) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2540](https://github.com/seanmalbert/bloom/issues/2540) [#2528](https://github.com/seanmalbert/bloom/issues/2528) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2545](https://github.com/seanmalbert/bloom/issues/2545) [#2526](https://github.com/seanmalbert/bloom/issues/2526) [#2532](https://github.com/seanmalbert/bloom/issues/2532) [#2551](https://github.com/seanmalbert/bloom/issues/2551) [#2562](https://github.com/seanmalbert/bloom/issues/2562) [#2566](https://github.com/seanmalbert/bloom/issues/2566) [#2572](https://github.com/seanmalbert/bloom/issues/2572) [#2546](https://github.com/seanmalbert/bloom/issues/2546) [#2578](https://github.com/seanmalbert/bloom/issues/2578) [#2579](https://github.com/seanmalbert/bloom/issues/2579) [#2581](https://github.com/seanmalbert/bloom/issues/2581) [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2574](https://github.com/seanmalbert/bloom/issues/2574) [#2577](https://github.com/seanmalbert/bloom/issues/2577) [#2590](https://github.com/seanmalbert/bloom/issues/2590) [#2592](https://github.com/seanmalbert/bloom/issues/2592) [#2560](https://github.com/seanmalbert/bloom/issues/2560) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2599](https://github.com/seanmalbert/bloom/issues/2599) [#2600](https://github.com/seanmalbert/bloom/issues/2600) [#2598](https://github.com/seanmalbert/bloom/issues/2598) [#2582](https://github.com/seanmalbert/bloom/issues/2582) [#2531](https://github.com/seanmalbert/bloom/issues/2531) [#2615](https://github.com/seanmalbert/bloom/issues/2615) [#2606](https://github.com/seanmalbert/bloom/issues/2606) [#2618](https://github.com/seanmalbert/bloom/issues/2618) [#2620](https://github.com/seanmalbert/bloom/issues/2620) [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2563](https://github.com/seanmalbert/bloom/issues/2563) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2635](https://github.com/seanmalbert/bloom/issues/2635) [#2624](https://github.com/seanmalbert/bloom/issues/2624) [#2642](https://github.com/seanmalbert/bloom/issues/2642) [#2652](https://github.com/seanmalbert/bloom/issues/2652) [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2658](https://github.com/seanmalbert/bloom/issues/2658) [#2653](https://github.com/seanmalbert/bloom/issues/2653) [#2630](https://github.com/seanmalbert/bloom/issues/2630) [#2612](https://github.com/seanmalbert/bloom/issues/2612) [#2672](https://github.com/seanmalbert/bloom/issues/2672) [#2558](https://github.com/seanmalbert/bloom/issues/2558) [#2604](https://github.com/seanmalbert/bloom/issues/2604) [#2625](https://github.com/seanmalbert/bloom/issues/2625) [#2650](https://github.com/seanmalbert/bloom/issues/2650) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2603](https://github.com/seanmalbert/bloom/issues/2603) [#2648](https://github.com/seanmalbert/bloom/issues/2648) [#2673](https://github.com/seanmalbert/bloom/issues/2673) [#2661](https://github.com/seanmalbert/bloom/issues/2661) [#2676](https://github.com/seanmalbert/bloom/issues/2676) [#2680](https://github.com/seanmalbert/bloom/issues/2680) [#2597](https://github.com/seanmalbert/bloom/issues/2597) [#2686](https://github.com/seanmalbert/bloom/issues/2686) [#2683](https://github.com/seanmalbert/bloom/issues/2683) [#2657](https://github.com/seanmalbert/bloom/issues/2657) [#2693](https://github.com/seanmalbert/bloom/issues/2693) [#2694](https://github.com/seanmalbert/bloom/issues/2694) [#2616](https://github.com/seanmalbert/bloom/issues/2616) [#2703](https://github.com/seanmalbert/bloom/issues/2703) [#2697](https://github.com/seanmalbert/bloom/issues/2697) [#2691](https://github.com/seanmalbert/bloom/issues/2691) [#2687](https://github.com/seanmalbert/bloom/issues/2687) [#2700](https://github.com/seanmalbert/bloom/issues/2700) [#2677](https://github.com/seanmalbert/bloom/issues/2677) [#2682](https://github.com/seanmalbert/bloom/issues/2682) [#2689](https://github.com/seanmalbert/bloom/issues/2689) [#2675](https://github.com/seanmalbert/bloom/issues/2675) [#2713](https://github.com/seanmalbert/bloom/issues/2713) [#2702](https://github.com/seanmalbert/bloom/issues/2702) [#2704](https://github.com/seanmalbert/bloom/issues/2704) [#2719](https://github.com/seanmalbert/bloom/issues/2719) [#2714](https://github.com/seanmalbert/bloom/issues/2714) [#2543](https://github.com/seanmalbert/bloom/issues/2543) [#2728](https://github.com/seanmalbert/bloom/issues/2728) [#2692](https://github.com/seanmalbert/bloom/issues/2692) [#2732](https://github.com/seanmalbert/bloom/issues/2732) [#2749](https://github.com/seanmalbert/bloom/issues/2749) [#2744](https://github.com/seanmalbert/bloom/issues/2744) [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) ### BREAKING CHANGES -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger +- chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray +- fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing +- feat: skip preferences if not on listing -* chore(release): version +- chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +- fix: cannot save custom mailing, dropoff, or pickup address -* chore(release): version +- chore(release): version -* chore: converge on one axios version, remove peer dependency +- chore: converge on one axios version, remove peer dependency -* chore(release): version +- chore(release): version -* feat: simplify Waitlist component and use more flexible schema +- feat: simplify Waitlist component and use more flexible schema -* chore(release): version +- chore(release): version -* fix: lottery results uploads now save +- fix: lottery results uploads now save -* chore(release): version +- chore(release): version -* feat: add SRO unit type +- feat: add SRO unit type -* chore(release): version +- chore(release): version + +- fix: paper application submission + +- chore(release): version + +- fix: choose-language context + +- chore(release): version + +- fix: applications/view hide prefs + +- chore(release): version + +- feat: overrides fallback to english, tagalog support + +- chore(release): version + +- fix: account translations + +- chore(release): version + +- fix: units with invalid ami chart + +- chore(release): version + +- fix: remove description for the partners programs + +- fix: fix modal styles on mobile + +- fix: visual improvement to programs form display + +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change + +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: paper application submission +- fix: 2056/user account edit fix -* chore(release): version +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* fix: choose-language context +- refactor: 2085/adds top level catchAll exception filter -* chore(release): version +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* fix: applications/view hide prefs +- feat: feat: Change unit number field type to text -* chore(release): version +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat: overrides fallback to english, tagalog support +- feat(backend): improve application flagged set saving efficiency -* chore(release): version +- fix: fix: updates address order -* fix: account translations +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* chore(release): version +- fix: sets programs to optoinal and updates versions -* fix: units with invalid ami chart +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore(release): version +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: remove description for the partners programs +- fix: adds programs service -* fix: fix modal styles on mobile +- fix: fix lisitng e2e tests -* fix: visual improvement to programs form display +- fix: fix member tests -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: adds jurisdictionId to useSWR path -* chore(release): version +- fix: recalculate units available on listing update - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* chore(release): version +- feat: feat(backend): make use of new application confirmation codes - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* chore(release): version +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences -# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.1.2...@bloom-housing/shared-helpers@4.2.0) (2022-04-06) +- feat: updates preference string +- fix: preference cleanup for avance -* 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -### BREAKING CHANGES +- feat: refactor and add public site application flow cypress tests -* remove applicationDueTime field and consolidated into applicationDueDate +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* chore(release): version +- feat: better seed data for ami-charts - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* chore(release): version +- feat: adds listing management cypress tests to partner portal - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: listings management keep empty strings, remove empty objects -* chore(release): version +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- feat: one month rent -* chore(release): version +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds -## [4.1.3-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.4...@bloom-housing/shared-helpers@4.1.3-alpha.5) (2022-04-05) +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component -## [4.1.3-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.3...@bloom-housing/shared-helpers@4.1.3-alpha.4) (2022-04-05) +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics -## [4.1.3-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.2...@bloom-housing/shared-helpers@4.1.3-alpha.3) (2022-04-04) +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components -## [4.1.3-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.1...@bloom-housing/shared-helpers@4.1.3-alpha.2) (2022-04-04) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" -## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.0...@bloom-housing/shared-helpers@4.1.3-alpha.1) (2022-04-04) +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -**Note:** Version bump only for package @bloom-housing/shared-helpers +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing -## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.3...@bloom-housing/shared-helpers@4.1.3-alpha.0) (2022-03-30) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema -## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.1.1...@bloom-housing/shared-helpers@4.1.2) (2022-03-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type +- chore(release): version +- fix: paper application submission -## [4.1.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.2...@bloom-housing/shared-helpers@4.1.2-alpha.3) (2022-03-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support -## [4.1.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.1...@bloom-housing/shared-helpers@4.1.2-alpha.2) (2022-03-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs -## [4.1.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.0...@bloom-housing/shared-helpers@4.1.2-alpha.1) (2022-03-28) +- fix: fix modal styles on mobile -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [4.1.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.5...@bloom-housing/shared-helpers@4.1.2-alpha.0) (2022-03-28) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* 2022 03 28 sync master (#2593) ([580283d](https://github.com/bloom-housing/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/bloom-housing/bloom/issues/2593) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger +- chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray +- fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing +- feat: skip preferences if not on listing -* chore(release): version +- chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +- fix: cannot save custom mailing, dropoff, or pickup address -* chore(release): version +- chore(release): version -* chore: converge on one axios version, remove peer dependency +- chore: converge on one axios version, remove peer dependency -* chore(release): version +- chore(release): version -* feat: simplify Waitlist component and use more flexible schema +- feat: simplify Waitlist component and use more flexible schema -* chore(release): version +- chore(release): version -* fix: lottery results uploads now save +- fix: lottery results uploads now save -* chore(release): version +- chore(release): version -* feat: add SRO unit type +- feat: add SRO unit type -* chore(release): version +- chore(release): version -* fix: paper application submission +- fix: paper application submission -* chore(release): version +- chore(release): version -* fix: choose-language context +- fix: choose-language context -* chore(release): version +- chore(release): version -* fix: applications/view hide prefs +- fix: applications/view hide prefs -* chore(release): version +- chore(release): version -* feat: overrides fallback to english, tagalog support +- feat: overrides fallback to english, tagalog support -* chore(release): version +- chore(release): version -* fix: account translations +- fix: account translations -* chore(release): version +- chore(release): version -* fix: units with invalid ami chart +- fix: units with invalid ami chart -* chore(release): version +- chore(release): version -* fix: remove description for the partners programs +- fix: remove description for the partners programs -* fix: fix modal styles on mobile +- fix: fix modal styles on mobile -* fix: visual improvement to programs form display +- fix: visual improvement to programs form display -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* chore(release): version +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -* chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +- chore(release): version -## [4.1.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.1.0...@bloom-housing/shared-helpers@4.1.1) (2022-03-28) -## [4.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.4...@bloom-housing/shared-helpers@4.1.1-alpha.5) (2022-03-28) +* @bloom-housing/shared-helpers@4.2.2-alpha.10 +* @bloom-housing/partners@4.2.2-alpha.11 +* @bloom-housing/public@4.2.2-alpha.11 +* @bloom-housing/ui-components@4.2.2-alpha.10 + +- the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings + +- chore(release): version + +* @bloom-housing/shared-helpers@4.2.2-alpha.23 +* @bloom-housing/partners@4.2.2-alpha.27 +* @bloom-housing/public@4.2.2-alpha.26 +* @bloom-housing/ui-components@4.2.2-alpha.23 + +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set + +- chore(release): version + +* @bloom-housing/shared-helpers@4.2.2-alpha.24 +* @bloom-housing/partners@4.2.2-alpha.28 +* @bloom-housing/public@4.2.2-alpha.27 +* @bloom-housing/ui-components@4.2.2-alpha.24 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +## [4.4.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.29...@bloom-housing/shared-helpers@4.4.1-alpha.30) (2022-06-16) + +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [4.4.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.28...@bloom-housing/shared-helpers@4.4.1-alpha.29) (2022-06-14) + +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [4.4.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.27...@bloom-housing/shared-helpers@4.4.1-alpha.28) (2022-06-13) + +### Bug Fixes + +- autofill skipping ([#2800](https://github.com/bloom-housing/bloom/issues/2800)) ([4b6ebbe](https://github.com/bloom-housing/bloom/commit/4b6ebbe4374ce774959f44e43ee62a670bf9dd9e)) + +## [4.4.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.26...@bloom-housing/shared-helpers@4.4.1-alpha.27) (2022-06-13) + +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [4.4.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.25...@bloom-housing/shared-helpers@4.4.1-alpha.26) (2022-06-13) + +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [4.4.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.24...@bloom-housing/shared-helpers@4.4.1-alpha.25) (2022-06-10) + +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [4.4.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.23...@bloom-housing/shared-helpers@4.4.1-alpha.24) (2022-06-10) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.22...@bloom-housing/shared-helpers@4.4.1-alpha.23) (2022-06-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.21...@bloom-housing/shared-helpers@4.4.1-alpha.22) (2022-06-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.3...@bloom-housing/shared-helpers@4.1.1-alpha.4) (2022-03-25) +## [4.4.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.20...@bloom-housing/shared-helpers@4.4.1-alpha.21) (2022-06-09) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.19...@bloom-housing/shared-helpers@4.4.1-alpha.20) (2022-06-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.18...@bloom-housing/shared-helpers@4.4.1-alpha.19) (2022-06-08) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.2...@bloom-housing/shared-helpers@4.1.1-alpha.3) (2022-03-22) +## [4.4.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.17...@bloom-housing/shared-helpers@4.4.1-alpha.18) (2022-06-08) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.16...@bloom-housing/shared-helpers@4.4.1-alpha.17) (2022-06-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.15...@bloom-housing/shared-helpers@4.4.1-alpha.16) (2022-06-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.1...@bloom-housing/shared-helpers@4.1.1-alpha.2) (2022-03-16) +## [4.4.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.14...@bloom-housing/shared-helpers@4.4.1-alpha.15) (2022-06-07) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.13...@bloom-housing/shared-helpers@4.4.1-alpha.14) (2022-06-06) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.12...@bloom-housing/shared-helpers@4.4.1-alpha.13) (2022-06-04) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.0...@bloom-housing/shared-helpers@4.1.1-alpha.1) (2022-03-10) +## [4.4.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.11...@bloom-housing/shared-helpers@4.4.1-alpha.12) (2022-06-03) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.10...@bloom-housing/shared-helpers@4.4.1-alpha.11) (2022-06-02) + +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.9...@bloom-housing/shared-helpers@4.4.1-alpha.10) (2022-06-01) +### Features +- add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) -## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.80...@bloom-housing/shared-helpers@4.1.1-alpha.0) (2022-03-02) +## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.8...@bloom-housing/shared-helpers@4.4.1-alpha.9) (2022-05-31) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.7...@bloom-housing/shared-helpers@4.4.1-alpha.8) (2022-05-31) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.6...@bloom-housing/shared-helpers@4.4.1-alpha.7) (2022-05-31) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.80...@bloom-housing/shared-helpers@4.0.1) (2022-03-02) +## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.5...@bloom-housing/shared-helpers@4.4.1-alpha.6) (2022-05-26) **Note:** Version bump only for package @bloom-housing/shared-helpers -# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.3...@bloom-housing/shared-helpers@4.1.0) (2022-03-02) +## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.4...@bloom-housing/shared-helpers@4.4.1-alpha.5) (2022-05-26) -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.3...@bloom-housing/shared-helpers@4.4.1-alpha.4) (2022-05-26) -### BREAKING CHANGES +**Note:** Version bump only for package @bloom-housing/shared-helpers -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.2...@bloom-housing/shared-helpers@4.4.1-alpha.3) (2022-05-25) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.1...@bloom-housing/shared-helpers@4.4.1-alpha.2) (2022-05-25) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/shared-helpers - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.4.1-alpha.0...@bloom-housing/shared-helpers@4.4.1-alpha.1) (2022-05-25) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.3.1-alpha.2...@bloom-housing/shared-helpers@4.4.1-alpha.0) (2022-05-25) +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES -## [4.0.1-alpha.80](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.79...@bloom-housing/shared-helpers@4.0.1-alpha.80) (2022-02-28) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### Features +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* updates to mfa styling ([#2532](https://github.com/bloom-housing/bloom/issues/2532)) ([7654efc](https://github.com/bloom-housing/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) +# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.3...@bloom-housing/shared-helpers@4.4.0) (2022-05-24) +- 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -## [4.0.1-alpha.79](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.78...@bloom-housing/shared-helpers@4.0.1-alpha.79) (2022-02-28) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +## [4.3.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.3.1-alpha.1...@bloom-housing/shared-helpers@4.3.1-alpha.2) (2022-05-24) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.3.1-alpha.0...@bloom-housing/shared-helpers@4.3.1-alpha.1) (2022-05-24) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.30...@bloom-housing/shared-helpers@4.3.1-alpha.0) (2022-05-16) +### Bug Fixes -## [4.0.1-alpha.78](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.77...@bloom-housing/shared-helpers@4.0.1-alpha.78) (2022-02-26) +- remove alameda reference in demographics ([cc6761b](https://github.com/bloom-housing/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) +- versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([c274a29](https://github.com/bloom-housing/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) +- Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) ### Features -* adds gtm tracking to rest of pages ([#2545](https://github.com/bloom-housing/bloom/issues/2545)) ([1c96f71](https://github.com/bloom-housing/bloom/commit/1c96f7101017aefd8bca70731265f6efb1ab5cf0)) - - - +- add SRO unit type ([a4c1403](https://github.com/bloom-housing/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) +- new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +### Reverts -## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.2...@bloom-housing/shared-helpers@4.0.3) (2022-02-25) +- Revert "chore(release): version" ([47a2c67](https://github.com/bloom-housing/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.0.1-alpha.77](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.76...@bloom-housing/shared-helpers@4.0.1-alpha.77) (2022-02-25) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.0.1-alpha.76](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.75...@bloom-housing/shared-helpers@4.0.1-alpha.76) (2022-02-25) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.0.1-alpha.75](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.74...@bloom-housing/shared-helpers@4.0.1-alpha.75) (2022-02-22) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.0.1-alpha.74](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.73...@bloom-housing/shared-helpers@4.0.1-alpha.74) (2022-02-18) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.72...@bloom-housing/shared-helpers@4.0.1-alpha.73) (2022-02-17) +- preferences model and relationships changed -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [4.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.71...@bloom-housing/shared-helpers@4.0.1-alpha.72) (2022-02-17) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -## [4.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.70...@bloom-housing/shared-helpers@4.0.1-alpha.71) (2022-02-17) +- fix: sets programs to optoinal and updates versions -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests -## [4.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.69...@bloom-housing/shared-helpers@4.0.1-alpha.70) (2022-02-16) +## [4.2.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.29...@bloom-housing/shared-helpers@4.2.2-alpha.30) (2022-05-13) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.2...@bloom-housing/shared-helpers@4.2.3) (2022-04-28) +## [4.2.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.28...@bloom-housing/shared-helpers@4.2.2-alpha.29) (2022-05-11) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.1...@bloom-housing/shared-helpers@4.2.2) (2022-04-19) -## [4.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.68...@bloom-housing/shared-helpers@4.0.1-alpha.69) (2022-02-16) +## [4.2.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.27...@bloom-housing/shared-helpers@4.2.2-alpha.28) (2022-05-11) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.26...@bloom-housing/shared-helpers@4.2.2-alpha.27) (2022-05-10) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.25...@bloom-housing/shared-helpers@4.2.2-alpha.26) (2022-05-05) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.67...@bloom-housing/shared-helpers@4.0.1-alpha.68) (2022-02-16) +## [4.2.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.24...@bloom-housing/shared-helpers@4.2.2-alpha.25) (2022-05-04) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.23...@bloom-housing/shared-helpers@4.2.2-alpha.24) (2022-05-04) +### Code Refactoring +- remove backend dependencies from sidebar application components ([#2675](https://github.com/bloom-housing/bloom/issues/2675)) ([d2ebf87](https://github.com/bloom-housing/bloom/commit/d2ebf87c34af3f5b6168fa4e08663fea0a4a872c)) +### BREAKING CHANGES -## [4.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.66...@bloom-housing/shared-helpers@4.0.1-alpha.67) (2022-02-16) - -**Note:** Version bump only for package @bloom-housing/shared-helpers +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set +## [4.2.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.22...@bloom-housing/shared-helpers@4.2.2-alpha.23) (2022-05-04) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.21...@bloom-housing/shared-helpers@4.2.2-alpha.22) (2022-05-03) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.66](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.65...@bloom-housing/shared-helpers@4.0.1-alpha.66) (2022-02-16) +## [4.2.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.20...@bloom-housing/shared-helpers@4.2.2-alpha.21) (2022-04-29) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.19...@bloom-housing/shared-helpers@4.2.2-alpha.20) (2022-04-29) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.18...@bloom-housing/shared-helpers@4.2.2-alpha.19) (2022-04-28) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.64...@bloom-housing/shared-helpers@4.0.1-alpha.65) (2022-02-16) +## [4.2.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.17...@bloom-housing/shared-helpers@4.2.2-alpha.18) (2022-04-28) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.16...@bloom-housing/shared-helpers@4.2.2-alpha.17) (2022-04-28) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.15...@bloom-housing/shared-helpers@4.2.2-alpha.16) (2022-04-27) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.63...@bloom-housing/shared-helpers@4.0.1-alpha.64) (2022-02-15) +## [4.2.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.14...@bloom-housing/shared-helpers@4.2.2-alpha.15) (2022-04-26) +**Note:** Version bump only for package @bloom-housing/shared-helpers -### Features +## [4.2.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.13...@bloom-housing/shared-helpers@4.2.2-alpha.14) (2022-04-22) -* **backend:** make listing image an array ([#2477](https://github.com/bloom-housing/bloom/issues/2477)) ([cab9800](https://github.com/bloom-housing/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.12...@bloom-housing/shared-helpers@4.2.2-alpha.13) (2022-04-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.11...@bloom-housing/shared-helpers@4.2.2-alpha.12) (2022-04-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.62...@bloom-housing/shared-helpers@4.0.1-alpha.63) (2022-02-15) +## [4.2.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.10...@bloom-housing/shared-helpers@4.2.2-alpha.11) (2022-04-21) +**Note:** Version bump only for package @bloom-housing/shared-helpers -### Code Refactoring +## [4.2.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.9...@bloom-housing/shared-helpers@4.2.2-alpha.10) (2022-04-21) -* remove backend dependencies from events components, consolidate ([#2495](https://github.com/bloom-housing/bloom/issues/2495)) ([d884689](https://github.com/bloom-housing/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +### Features +- new category table component ([#2648](https://github.com/bloom-housing/bloom/issues/2648)) ([3b3fe46](https://github.com/bloom-housing/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) ### BREAKING CHANGES -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - - - +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. - -## [4.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.61...@bloom-housing/shared-helpers@4.0.1-alpha.62) (2022-02-15) +## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.8...@bloom-housing/shared-helpers@4.2.2-alpha.9) (2022-04-20) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.7...@bloom-housing/shared-helpers@4.2.2-alpha.8) (2022-04-20) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.6...@bloom-housing/shared-helpers@4.2.2-alpha.7) (2022-04-20) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.60...@bloom-housing/shared-helpers@4.0.1-alpha.61) (2022-02-15) +## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.5...@bloom-housing/shared-helpers@4.2.2-alpha.6) (2022-04-20) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.4...@bloom-housing/shared-helpers@4.2.2-alpha.5) (2022-04-19) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.3...@bloom-housing/shared-helpers@4.2.2-alpha.4) (2022-04-18) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.59...@bloom-housing/shared-helpers@4.0.1-alpha.60) (2022-02-15) - +## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.2...@bloom-housing/shared-helpers@4.2.2-alpha.3) (2022-04-18) ### Features -* **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/bloom-housing/bloom/issues/2291)) ([5b10098](https://github.com/bloom-housing/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) +- refactor ada form fields ([#2612](https://github.com/bloom-housing/bloom/issues/2612)) ([f516f21](https://github.com/bloom-housing/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) - - - - -## [4.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.58...@bloom-housing/shared-helpers@4.0.1-alpha.59) (2022-02-14) +## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.1...@bloom-housing/shared-helpers@4.2.2-alpha.2) (2022-04-14) **Note:** Version bump only for package @bloom-housing/shared-helpers - - - - -## [4.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.57...@bloom-housing/shared-helpers@4.0.1-alpha.58) (2022-02-14) +## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.2-alpha.0...@bloom-housing/shared-helpers@4.2.2-alpha.1) (2022-04-13) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.4...@bloom-housing/shared-helpers@4.2.2-alpha.0) (2022-04-13) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- preferences model and relationships changed -## [4.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.56...@bloom-housing/shared-helpers@4.0.1-alpha.57) (2022-02-12) +- feat: feat(backend): extend UserUpdateDto to support email change -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -## [4.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.55...@bloom-housing/shared-helpers@4.0.1-alpha.56) (2022-02-10) +- feat: feat: Change unit number field type to text -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions -## [4.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.54...@bloom-housing/shared-helpers@4.0.1-alpha.55) (2022-02-10) +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path -## [4.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.53...@bloom-housing/shared-helpers@4.0.1-alpha.54) (2022-02-10) +- fix: recalculate units available on listing update -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.1...@bloom-housing/shared-helpers@4.0.2) (2022-02-09) +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string -## [4.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.52...@bloom-housing/shared-helpers@4.0.1-alpha.53) (2022-02-10) +- fix: preference cleanup for avance -**Note:** Version bump only for package @bloom-housing/shared-helpers +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts -## [4.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.51...@bloom-housing/shared-helpers@4.0.1-alpha.52) (2022-02-09) +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -## [4.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.50...@bloom-housing/shared-helpers@4.0.1-alpha.51) (2022-02-09) +- test: view.spec.ts test -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -## [4.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.49...@bloom-housing/shared-helpers@4.0.1-alpha.50) (2022-02-09) +- feat: new demographics sub-race questions -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -## [4.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.48...@bloom-housing/shared-helpers@4.0.1-alpha.49) (2022-02-09) +- fix: add ariaLabel prop to Button component -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -## [4.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.47...@bloom-housing/shared-helpers@4.0.1-alpha.48) (2022-02-09) +- chore: release version -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -## [4.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.46...@bloom-housing/shared-helpers@4.0.1-alpha.47) (2022-02-08) +- feat: add a phone number column to the user_accounts table -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -## [4.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.45...@bloom-housing/shared-helpers@4.0.1-alpha.46) (2022-02-07) +- Revert "chore: removes application program partners" -**Note:** Version bump only for package @bloom-housing/shared-helpers +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing +- chore(release): version -## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@3.0.1...@bloom-housing/shared-helpers@4.0.1) (2022-02-03) +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version -* 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) +- chore: converge on one axios version, remove peer dependency -### BREAKING CHANGES +- chore(release): version -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- feat: simplify Waitlist component and use more flexible schema -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 +- fix: lottery results uploads now save + +- chore(release): version +- feat: add SRO unit type +- chore(release): version +- fix: paper application submission +- chore(release): version -## [4.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.44...@bloom-housing/shared-helpers@4.0.1-alpha.45) (2022-02-02) +- fix: choose-language context -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version -## [4.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.43...@bloom-housing/shared-helpers@4.0.1-alpha.44) (2022-02-02) +- fix: account translations -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs +- fix: fix modal styles on mobile -## [4.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.42...@bloom-housing/shared-helpers@4.0.1-alpha.43) (2022-02-02) +- fix: visual improvement to programs form display -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.41...@bloom-housing/shared-helpers@4.0.1-alpha.42) (2022-02-02) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.2.0...@bloom-housing/shared-helpers@4.2.1) (2022-04-11) +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -## [4.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.40...@bloom-housing/shared-helpers@4.0.1-alpha.41) (2022-02-01) +### BREAKING CHANGES -**Note:** Version bump only for package @bloom-housing/shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -## [4.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.39...@bloom-housing/shared-helpers@4.0.1-alpha.40) (2022-02-01) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +## [4.2.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.3...@bloom-housing/shared-helpers@4.2.1-alpha.4) (2022-04-13) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.2...@bloom-housing/shared-helpers@4.2.1-alpha.3) (2022-04-08) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.1...@bloom-housing/shared-helpers@4.2.1-alpha.2) (2022-04-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.38...@bloom-housing/shared-helpers@4.0.1-alpha.39) (2022-02-01) +## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.2.1-alpha.0...@bloom-housing/shared-helpers@4.2.1-alpha.1) (2022-04-07) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.5...@bloom-housing/shared-helpers@4.2.1-alpha.0) (2022-04-06) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- preferences model and relationships changed -## [4.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.37...@bloom-housing/shared-helpers@4.0.1-alpha.38) (2022-02-01) +- feat: feat(backend): extend UserUpdateDto to support email change -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -## [4.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.36...@bloom-housing/shared-helpers@4.0.1-alpha.37) (2022-02-01) +- feat: feat: Change unit number field type to text -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions -## [4.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.35...@bloom-housing/shared-helpers@4.0.1-alpha.36) (2022-02-01) +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path -## [4.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.34...@bloom-housing/shared-helpers@4.0.1-alpha.35) (2022-02-01) +- fix: recalculate units available on listing update -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -## [4.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.33...@bloom-housing/shared-helpers@4.0.1-alpha.34) (2022-02-01) +- fix: app submission w/ no due date -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance -## [4.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.32...@bloom-housing/shared-helpers@4.0.1-alpha.33) (2022-02-01) +- refactor: remove applicationAddress -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -## [4.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.31...@bloom-housing/shared-helpers@4.0.1-alpha.32) (2022-01-31) +- feat: adds listing management cypress tests to partner portal -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test -## [4.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.30...@bloom-housing/shared-helpers@4.0.1-alpha.31) (2022-01-31) +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -**Note:** Version bump only for package @bloom-housing/shared-helpers +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions -## [4.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.29...@bloom-housing/shared-helpers@4.0.1-alpha.30) (2022-01-27) +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery -### Features +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive -## [4.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.28...@bloom-housing/shared-helpers@4.0.1-alpha.29) (2022-01-26) +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized -## [4.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.27...@bloom-housing/shared-helpers@4.0.1-alpha.28) (2022-01-26) +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners -## [4.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.26...@bloom-housing/shared-helpers@4.0.1-alpha.27) (2022-01-24) +- chore: removes application program display -**Note:** Version bump only for package @bloom-housing/shared-helpers +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger -## [4.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.25...@bloom-housing/shared-helpers@4.0.1-alpha.26) (2022-01-24) +- fix: removes Duplicate identifier fieldGroupObjectToArray -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: skip preferences if not on listing +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency -## [4.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.24...@bloom-housing/shared-helpers@4.0.1-alpha.25) (2022-01-21) +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema -### Bug Fixes +- chore(release): version -* user status enum to camel case; gtm types ([fbb8004](https://github.com/bloom-housing/bloom/commit/fbb800496fa1c5f37d3d7738acf28755dd66f1dd)) +- fix: lottery results uploads now save +- chore(release): version -### Features +- feat: add SRO unit type -* adds event logging to most of the pages ([dc88c0a](https://github.com/bloom-housing/bloom/commit/dc88c0a8b6be317cd624921b868bb17e77e31f11)) -* updates for gtm ([0251cd3](https://github.com/bloom-housing/bloom/commit/0251cd3d73be19d60c148aae01d12ab35f29bc85)) -* updates for gtm ([13578bb](https://github.com/bloom-housing/bloom/commit/13578bb864ea1b1918d5908982cb3095756811c7)) +- chore(release): version +- fix: paper application submission +- chore(release): version +- fix: choose-language context +- chore(release): version -## [4.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.23...@bloom-housing/shared-helpers@4.0.1-alpha.24) (2022-01-20) +- fix: applications/view hide prefs -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version +- fix: account translations +- chore(release): version -## [4.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.22...@bloom-housing/shared-helpers@4.0.1-alpha.23) (2022-01-14) +- fix: units with invalid ami chart -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore(release): version +- fix: remove description for the partners programs +- fix: fix modal styles on mobile +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.20...@bloom-housing/shared-helpers@3.0.1) (2022-01-13) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -### Bug Fixes +- chore(release): version -* versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### Features +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* add SRO unit type ([a4c1403](https://github.com/seanmalbert/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) +# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.1.2...@bloom-housing/shared-helpers@4.2.0) (2022-04-06) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -### Reverts +### BREAKING CHANGES -* Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -## [4.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.21...@bloom-housing/shared-helpers@4.0.1-alpha.22) (2022-01-13) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -## [4.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.20...@bloom-housing/shared-helpers@4.0.1-alpha.21) (2022-01-13) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +## [4.1.3-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.4...@bloom-housing/shared-helpers@4.1.3-alpha.5) (2022-04-05) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.3-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.3...@bloom-housing/shared-helpers@4.1.3-alpha.4) (2022-04-05) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.3-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.2...@bloom-housing/shared-helpers@4.1.3-alpha.3) (2022-04-04) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.19...@bloom-housing/shared-helpers@4.0.1-alpha.20) (2022-01-13) +## [4.1.3-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.1...@bloom-housing/shared-helpers@4.1.3-alpha.2) (2022-04-04) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.3-alpha.0...@bloom-housing/shared-helpers@4.1.3-alpha.1) (2022-04-04) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.3...@bloom-housing/shared-helpers@4.1.3-alpha.0) (2022-03-30) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.18...@bloom-housing/shared-helpers@4.0.1-alpha.19) (2022-01-11) +## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.1.1...@bloom-housing/shared-helpers@4.1.2) (2022-03-29) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.2...@bloom-housing/shared-helpers@4.1.2-alpha.3) (2022-03-29) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.1...@bloom-housing/shared-helpers@4.1.2-alpha.2) (2022-03-29) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [4.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.17...@bloom-housing/shared-helpers@4.0.1-alpha.18) (2022-01-08) +## [4.1.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.2-alpha.0...@bloom-housing/shared-helpers@4.1.2-alpha.1) (2022-03-28) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.5...@bloom-housing/shared-helpers@4.1.2-alpha.0) (2022-03-28) +- 2022 03 28 sync master (#2593) ([580283d](https://github.com/bloom-housing/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/bloom-housing/bloom/issues/2593) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- preferences model and relationships changed -## [4.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.16...@bloom-housing/shared-helpers@4.0.1-alpha.17) (2022-01-07) +- feat: feat(backend): extend UserUpdateDto to support email change -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -## [4.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.15...@bloom-housing/shared-helpers@4.0.1-alpha.16) (2022-01-07) +- feat: feat: Change unit number field type to text -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions -## [4.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.14...@bloom-housing/shared-helpers@4.0.1-alpha.15) (2022-01-07) +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path -## [4.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.13...@bloom-housing/shared-helpers@4.0.1-alpha.14) (2022-01-04) +- fix: recalculate units available on listing update -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -## [4.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.12...@bloom-housing/shared-helpers@4.0.1-alpha.13) (2022-01-04) +- fix: app submission w/ no due date -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance -## [4.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.11...@bloom-housing/shared-helpers@4.0.1-alpha.12) (2022-01-04) +- refactor: remove applicationAddress -**Note:** Version bump only for package @bloom-housing/shared-helpers +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -## [4.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.10...@bloom-housing/shared-helpers@4.0.1-alpha.11) (2022-01-03) +- feat: adds listing management cypress tests to partner portal -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test -## [4.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.9...@bloom-housing/shared-helpers@4.0.1-alpha.10) (2022-01-03) +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -**Note:** Version bump only for package @bloom-housing/shared-helpers +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions -## [4.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.8...@bloom-housing/shared-helpers@4.0.1-alpha.9) (2022-01-03) +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component -## [4.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.7...@bloom-housing/shared-helpers@4.0.1-alpha.8) (2022-01-03) +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -**Note:** Version bump only for package @bloom-housing/shared-helpers +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version -## [4.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.7) (2022-01-03) +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized -### Bug Fixes +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -### BREAKING CHANGES +- chore: removes application program partners -* sign-in pages have been updated +- chore: removes application program display +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.6) (2022-01-03) +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -### Bug Fixes +- feat: skip preferences if not on listing -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +- chore(release): version +- chore: converge on one axios version, remove peer dependency -### BREAKING CHANGES +- chore(release): version -* sign-in pages have been updated +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type -## [4.0.1-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.1) (2021-12-23) +- chore(release): version +- fix: paper application submission -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +- chore(release): version +- fix: choose-language context -### BREAKING CHANGES +- chore(release): version -* sign-in pages have been updated +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version +- fix: account translations -## [4.0.1-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.0) (2021-12-23) +- chore(release): version +- fix: units with invalid ami chart -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +- chore(release): version +- fix: remove description for the partners programs -### BREAKING CHANGES +- fix: fix modal styles on mobile -* sign-in pages have been updated +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -# [4.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.47...@bloom-housing/shared-helpers@4.0.0) (2021-12-22) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### Code Refactoring +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -### BREAKING CHANGES +## [4.1.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.1.0...@bloom-housing/shared-helpers@4.1.1) (2022-03-28) -* moved some helpers from ui-components to shared-helpers +## [4.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.4...@bloom-housing/shared-helpers@4.1.1-alpha.5) (2022-03-28) +**Note:** Version bump only for package @bloom-housing/shared-helpers + +## [4.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.3...@bloom-housing/shared-helpers@4.1.1-alpha.4) (2022-03-25) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.2...@bloom-housing/shared-helpers@4.1.1-alpha.3) (2022-03-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.46...@bloom-housing/shared-helpers@3.0.1-alpha.47) (2021-12-15) +## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.1...@bloom-housing/shared-helpers@4.1.1-alpha.2) (2022-03-16) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.1.1-alpha.0...@bloom-housing/shared-helpers@4.1.1-alpha.1) (2022-03-10) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.80...@bloom-housing/shared-helpers@4.1.1-alpha.0) (2022-03-02) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.45...@bloom-housing/shared-helpers@3.0.1-alpha.46) (2021-12-15) +## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.80...@bloom-housing/shared-helpers@4.0.1) (2022-03-02) **Note:** Version bump only for package @bloom-housing/shared-helpers +# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.3...@bloom-housing/shared-helpers@4.1.0) (2022-03-02) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.44...@bloom-housing/shared-helpers@3.0.1-alpha.45) (2021-12-15) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/shared-helpers +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.0.1-alpha.80](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.79...@bloom-housing/shared-helpers@4.0.1-alpha.80) (2022-02-28) -## [3.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.43...@bloom-housing/shared-helpers@3.0.1-alpha.44) (2021-12-14) +### Features -**Note:** Version bump only for package @bloom-housing/shared-helpers +- updates to mfa styling ([#2532](https://github.com/bloom-housing/bloom/issues/2532)) ([7654efc](https://github.com/bloom-housing/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) +## [4.0.1-alpha.79](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.78...@bloom-housing/shared-helpers@4.0.1-alpha.79) (2022-02-28) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.78](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.77...@bloom-housing/shared-helpers@4.0.1-alpha.78) (2022-02-26) +### Features -## [3.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.42...@bloom-housing/shared-helpers@3.0.1-alpha.43) (2021-12-14) +- adds gtm tracking to rest of pages ([#2545](https://github.com/bloom-housing/bloom/issues/2545)) ([1c96f71](https://github.com/bloom-housing/bloom/commit/1c96f7101017aefd8bca70731265f6efb1ab5cf0)) -**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.2...@bloom-housing/shared-helpers@4.0.3) (2022-02-25) +## [4.0.1-alpha.77](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.76...@bloom-housing/shared-helpers@4.0.1-alpha.77) (2022-02-25) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.76](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.75...@bloom-housing/shared-helpers@4.0.1-alpha.76) (2022-02-25) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.41...@bloom-housing/shared-helpers@3.0.1-alpha.42) (2021-12-13) +## [4.0.1-alpha.75](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.74...@bloom-housing/shared-helpers@4.0.1-alpha.75) (2022-02-22) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.74](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.73...@bloom-housing/shared-helpers@4.0.1-alpha.74) (2022-02-18) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.72...@bloom-housing/shared-helpers@4.0.1-alpha.73) (2022-02-17) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.39...@bloom-housing/shared-helpers@3.0.1-alpha.41) (2021-12-13) +## [4.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.71...@bloom-housing/shared-helpers@4.0.1-alpha.72) (2022-02-17) +**Note:** Version bump only for package @bloom-housing/shared-helpers -### Bug Fixes +## [4.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.70...@bloom-housing/shared-helpers@4.0.1-alpha.71) (2022-02-17) -* versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([0b1d143](https://github.com/bloom-housing/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.69...@bloom-housing/shared-helpers@4.0.1-alpha.70) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.68...@bloom-housing/shared-helpers@4.0.1-alpha.69) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.38...@bloom-housing/shared-helpers@3.0.1-alpha.39) (2021-12-10) +## [4.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.67...@bloom-housing/shared-helpers@4.0.1-alpha.68) (2022-02-16) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.66...@bloom-housing/shared-helpers@4.0.1-alpha.67) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.66](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.65...@bloom-housing/shared-helpers@4.0.1-alpha.66) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.37...@bloom-housing/shared-helpers@3.0.1-alpha.38) (2021-12-09) +## [4.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.64...@bloom-housing/shared-helpers@4.0.1-alpha.65) (2022-02-16) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.63...@bloom-housing/shared-helpers@4.0.1-alpha.64) (2022-02-15) +### Features +- **backend:** make listing image an array ([#2477](https://github.com/bloom-housing/bloom/issues/2477)) ([cab9800](https://github.com/bloom-housing/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +## [4.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.62...@bloom-housing/shared-helpers@4.0.1-alpha.63) (2022-02-15) -## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.36...@bloom-housing/shared-helpers@3.0.1-alpha.37) (2021-12-09) +### Code Refactoring -**Note:** Version bump only for package @bloom-housing/shared-helpers +- remove backend dependencies from events components, consolidate ([#2495](https://github.com/bloom-housing/bloom/issues/2495)) ([d884689](https://github.com/bloom-housing/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [4.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.61...@bloom-housing/shared-helpers@4.0.1-alpha.62) (2022-02-15) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.35...@bloom-housing/shared-helpers@3.0.1-alpha.36) (2021-12-09) +## [4.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.60...@bloom-housing/shared-helpers@4.0.1-alpha.61) (2022-02-15) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.59...@bloom-housing/shared-helpers@4.0.1-alpha.60) (2022-02-15) +### Features +- **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/bloom-housing/bloom/issues/2291)) ([5b10098](https://github.com/bloom-housing/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) - -## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.34...@bloom-housing/shared-helpers@3.0.1-alpha.35) (2021-12-09) +## [4.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.58...@bloom-housing/shared-helpers@4.0.1-alpha.59) (2022-02-14) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.57...@bloom-housing/shared-helpers@4.0.1-alpha.58) (2022-02-14) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.56...@bloom-housing/shared-helpers@4.0.1-alpha.57) (2022-02-12) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.33...@bloom-housing/shared-helpers@3.0.1-alpha.34) (2021-12-08) +## [4.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.55...@bloom-housing/shared-helpers@4.0.1-alpha.56) (2022-02-10) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.54...@bloom-housing/shared-helpers@4.0.1-alpha.55) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.53...@bloom-housing/shared-helpers@4.0.1-alpha.54) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.32...@bloom-housing/shared-helpers@3.0.1-alpha.33) (2021-12-07) +## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.1...@bloom-housing/shared-helpers@4.0.2) (2022-02-09) + +## [4.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.52...@bloom-housing/shared-helpers@4.0.1-alpha.53) (2022-02-10) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.51...@bloom-housing/shared-helpers@4.0.1-alpha.52) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.50...@bloom-housing/shared-helpers@4.0.1-alpha.51) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.31...@bloom-housing/shared-helpers@3.0.1-alpha.32) (2021-12-07) +## [4.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.49...@bloom-housing/shared-helpers@4.0.1-alpha.50) (2022-02-09) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.48...@bloom-housing/shared-helpers@4.0.1-alpha.49) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.47...@bloom-housing/shared-helpers@4.0.1-alpha.48) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.30...@bloom-housing/shared-helpers@3.0.1-alpha.31) (2021-12-07) +## [4.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.46...@bloom-housing/shared-helpers@4.0.1-alpha.47) (2022-02-08) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.45...@bloom-housing/shared-helpers@4.0.1-alpha.46) (2022-02-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@3.0.1...@bloom-housing/shared-helpers@4.0.1) (2022-02-03) +- 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) -## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.29...@bloom-housing/shared-helpers@3.0.1-alpha.30) (2021-12-06) +### BREAKING CHANGES -**Note:** Version bump only for package @bloom-housing/shared-helpers +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +## [4.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.44...@bloom-housing/shared-helpers@4.0.1-alpha.45) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.28...@bloom-housing/shared-helpers@3.0.1-alpha.29) (2021-12-03) +## [4.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.43...@bloom-housing/shared-helpers@4.0.1-alpha.44) (2022-02-02) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.42...@bloom-housing/shared-helpers@4.0.1-alpha.43) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.41...@bloom-housing/shared-helpers@4.0.1-alpha.42) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.27...@bloom-housing/shared-helpers@3.0.1-alpha.28) (2021-12-03) +## [4.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.40...@bloom-housing/shared-helpers@4.0.1-alpha.41) (2022-02-01) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.39...@bloom-housing/shared-helpers@4.0.1-alpha.40) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.38...@bloom-housing/shared-helpers@4.0.1-alpha.39) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.26...@bloom-housing/shared-helpers@3.0.1-alpha.27) (2021-12-03) +## [4.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.37...@bloom-housing/shared-helpers@4.0.1-alpha.38) (2022-02-01) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.36...@bloom-housing/shared-helpers@4.0.1-alpha.37) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.35...@bloom-housing/shared-helpers@4.0.1-alpha.36) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.25...@bloom-housing/shared-helpers@3.0.1-alpha.26) (2021-12-01) +## [4.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.34...@bloom-housing/shared-helpers@4.0.1-alpha.35) (2022-02-01) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.33...@bloom-housing/shared-helpers@4.0.1-alpha.34) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.32...@bloom-housing/shared-helpers@4.0.1-alpha.33) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.24...@bloom-housing/shared-helpers@3.0.1-alpha.25) (2021-12-01) +## [4.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.31...@bloom-housing/shared-helpers@4.0.1-alpha.32) (2022-01-31) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.30...@bloom-housing/shared-helpers@4.0.1-alpha.31) (2022-01-31) + +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.29...@bloom-housing/shared-helpers@4.0.1-alpha.30) (2022-01-27) +### Features +- outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) -## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.23...@bloom-housing/shared-helpers@3.0.1-alpha.24) (2021-11-30) +## [4.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.28...@bloom-housing/shared-helpers@4.0.1-alpha.29) (2022-01-26) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.27...@bloom-housing/shared-helpers@4.0.1-alpha.28) (2022-01-26) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.26...@bloom-housing/shared-helpers@4.0.1-alpha.27) (2022-01-24) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.22...@bloom-housing/shared-helpers@3.0.1-alpha.23) (2021-11-29) +## [4.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.25...@bloom-housing/shared-helpers@4.0.1-alpha.26) (2022-01-24) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.24...@bloom-housing/shared-helpers@4.0.1-alpha.25) (2022-01-21) + +### Bug Fixes +- user status enum to camel case; gtm types ([fbb8004](https://github.com/bloom-housing/bloom/commit/fbb800496fa1c5f37d3d7738acf28755dd66f1dd)) +### Features +- adds event logging to most of the pages ([dc88c0a](https://github.com/bloom-housing/bloom/commit/dc88c0a8b6be317cd624921b868bb17e77e31f11)) +- updates for gtm ([0251cd3](https://github.com/bloom-housing/bloom/commit/0251cd3d73be19d60c148aae01d12ab35f29bc85)) +- updates for gtm ([13578bb](https://github.com/bloom-housing/bloom/commit/13578bb864ea1b1918d5908982cb3095756811c7)) -## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.21...@bloom-housing/shared-helpers@3.0.1-alpha.22) (2021-11-29) +## [4.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.23...@bloom-housing/shared-helpers@4.0.1-alpha.24) (2022-01-20) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.22...@bloom-housing/shared-helpers@4.0.1-alpha.23) (2022-01-14) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.20...@bloom-housing/shared-helpers@3.0.1) (2022-01-13) +### Bug Fixes -## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.20...@bloom-housing/shared-helpers@3.0.1-alpha.21) (2021-11-29) - -**Note:** Version bump only for package @bloom-housing/shared-helpers +- versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +### Features +- add SRO unit type ([a4c1403](https://github.com/seanmalbert/bloom/commit/a4c140350a84a5bacfa65fb6714aa594e406945d)) +### Reverts +- Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) -## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.19...@bloom-housing/shared-helpers@3.0.1-alpha.20) (2021-11-23) +## [4.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.21...@bloom-housing/shared-helpers@4.0.1-alpha.22) (2022-01-13) +**Note:** Version bump only for package @bloom-housing/shared-helpers -### Bug Fixes +## [4.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.20...@bloom-housing/shared-helpers@4.0.1-alpha.21) (2022-01-13) -* remove alameda reference in demographics ([#2209](https://github.com/bloom-housing/bloom/issues/2209)) ([7d5991c](https://github.com/bloom-housing/bloom/commit/7d5991cbf6dbe0b61f2b14d265e87ce3687f743d)) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.19...@bloom-housing/shared-helpers@4.0.1-alpha.20) (2022-01-13) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.18...@bloom-housing/shared-helpers@4.0.1-alpha.19) (2022-01-11) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.18...@bloom-housing/shared-helpers@3.0.1-alpha.19) (2021-11-23) +## [4.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.17...@bloom-housing/shared-helpers@4.0.1-alpha.18) (2022-01-08) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.16...@bloom-housing/shared-helpers@4.0.1-alpha.17) (2022-01-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.15...@bloom-housing/shared-helpers@4.0.1-alpha.16) (2022-01-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.17...@bloom-housing/shared-helpers@3.0.1-alpha.18) (2021-11-23) +## [4.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.14...@bloom-housing/shared-helpers@4.0.1-alpha.15) (2022-01-07) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.13...@bloom-housing/shared-helpers@4.0.1-alpha.14) (2022-01-04) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.12...@bloom-housing/shared-helpers@4.0.1-alpha.13) (2022-01-04) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.16...@bloom-housing/shared-helpers@3.0.1-alpha.17) (2021-11-23) +## [4.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.11...@bloom-housing/shared-helpers@4.0.1-alpha.12) (2022-01-04) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.10...@bloom-housing/shared-helpers@4.0.1-alpha.11) (2022-01-03) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.9...@bloom-housing/shared-helpers@4.0.1-alpha.10) (2022-01-03) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.15...@bloom-housing/shared-helpers@3.0.1-alpha.16) (2021-11-23) +## [4.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.8...@bloom-housing/shared-helpers@4.0.1-alpha.9) (2022-01-03) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.1-alpha.7...@bloom-housing/shared-helpers@4.0.1-alpha.8) (2022-01-03) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.7) (2022-01-03) +### Bug Fixes -## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.14...@bloom-housing/shared-helpers@3.0.1-alpha.15) (2021-11-23) - +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) -### Features +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) -* new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) +### BREAKING CHANGES +- sign-in pages have been updated +## [4.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.6) (2022-01-03) +### Bug Fixes +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) -## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.13...@bloom-housing/shared-helpers@3.0.1-alpha.14) (2021-11-22) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) -**Note:** Version bump only for package @bloom-housing/shared-helpers +### BREAKING CHANGES +- sign-in pages have been updated +## [4.0.1-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.1) (2021-12-23) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +### BREAKING CHANGES -## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.12...@bloom-housing/shared-helpers@3.0.1-alpha.13) (2021-11-22) +- sign-in pages have been updated -**Note:** Version bump only for package @bloom-housing/shared-helpers +## [4.0.1-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@4.0.0...@bloom-housing/shared-helpers@4.0.1-alpha.0) (2021-12-23) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +### BREAKING CHANGES +- sign-in pages have been updated +# [4.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.47...@bloom-housing/shared-helpers@4.0.0) (2021-12-22) -## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.11...@bloom-housing/shared-helpers@3.0.1-alpha.12) (2021-11-22) +### Code Refactoring -**Note:** Version bump only for package @bloom-housing/shared-helpers +- removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) +### BREAKING CHANGES +- moved some helpers from ui-components to shared-helpers +## [3.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.46...@bloom-housing/shared-helpers@3.0.1-alpha.47) (2021-12-15) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.10...@bloom-housing/shared-helpers@3.0.1-alpha.11) (2021-11-22) +## [3.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.45...@bloom-housing/shared-helpers@3.0.1-alpha.46) (2021-12-15) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.44...@bloom-housing/shared-helpers@3.0.1-alpha.45) (2021-12-15) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.43...@bloom-housing/shared-helpers@3.0.1-alpha.44) (2021-12-14) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.9...@bloom-housing/shared-helpers@3.0.1-alpha.10) (2021-11-17) +## [3.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.42...@bloom-housing/shared-helpers@3.0.1-alpha.43) (2021-12-14) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.41...@bloom-housing/shared-helpers@3.0.1-alpha.42) (2021-12-13) + +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.39...@bloom-housing/shared-helpers@3.0.1-alpha.41) (2021-12-13) +### Bug Fixes +- versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([0b1d143](https://github.com/bloom-housing/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) -## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.8...@bloom-housing/shared-helpers@3.0.1-alpha.9) (2021-11-16) +## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.38...@bloom-housing/shared-helpers@3.0.1-alpha.39) (2021-12-10) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.37...@bloom-housing/shared-helpers@3.0.1-alpha.38) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.36...@bloom-housing/shared-helpers@3.0.1-alpha.37) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.7...@bloom-housing/shared-helpers@3.0.1-alpha.8) (2021-11-15) +## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.35...@bloom-housing/shared-helpers@3.0.1-alpha.36) (2021-12-09) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.34...@bloom-housing/shared-helpers@3.0.1-alpha.35) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.33...@bloom-housing/shared-helpers@3.0.1-alpha.34) (2021-12-08) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.6...@bloom-housing/shared-helpers@3.0.1-alpha.7) (2021-11-15) +## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.32...@bloom-housing/shared-helpers@3.0.1-alpha.33) (2021-12-07) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.31...@bloom-housing/shared-helpers@3.0.1-alpha.32) (2021-12-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.30...@bloom-housing/shared-helpers@3.0.1-alpha.31) (2021-12-07) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.5...@bloom-housing/shared-helpers@3.0.1-alpha.6) (2021-11-15) +## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.29...@bloom-housing/shared-helpers@3.0.1-alpha.30) (2021-12-06) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.28...@bloom-housing/shared-helpers@3.0.1-alpha.29) (2021-12-03) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.27...@bloom-housing/shared-helpers@3.0.1-alpha.28) (2021-12-03) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.4...@bloom-housing/shared-helpers@3.0.1-alpha.5) (2021-11-12) +## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.26...@bloom-housing/shared-helpers@3.0.1-alpha.27) (2021-12-03) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.25...@bloom-housing/shared-helpers@3.0.1-alpha.26) (2021-12-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.24...@bloom-housing/shared-helpers@3.0.1-alpha.25) (2021-12-01) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.3...@bloom-housing/shared-helpers@3.0.1-alpha.4) (2021-11-12) +## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.23...@bloom-housing/shared-helpers@3.0.1-alpha.24) (2021-11-30) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.22...@bloom-housing/shared-helpers@3.0.1-alpha.23) (2021-11-29) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.21...@bloom-housing/shared-helpers@3.0.1-alpha.22) (2021-11-29) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.2...@bloom-housing/shared-helpers@3.0.1-alpha.3) (2021-11-11) +## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.20...@bloom-housing/shared-helpers@3.0.1-alpha.21) (2021-11-29) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.19...@bloom-housing/shared-helpers@3.0.1-alpha.20) (2021-11-23) +### Bug Fixes +- remove alameda reference in demographics ([#2209](https://github.com/bloom-housing/bloom/issues/2209)) ([7d5991c](https://github.com/bloom-housing/bloom/commit/7d5991cbf6dbe0b61f2b14d265e87ce3687f743d)) - -## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.1...@bloom-housing/shared-helpers@3.0.1-alpha.2) (2021-11-10) +## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.18...@bloom-housing/shared-helpers@3.0.1-alpha.19) (2021-11-23) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.17...@bloom-housing/shared-helpers@3.0.1-alpha.18) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.16...@bloom-housing/shared-helpers@3.0.1-alpha.17) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [3.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.0...@bloom-housing/shared-helpers@3.0.1-alpha.1) (2021-11-09) +## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.15...@bloom-housing/shared-helpers@3.0.1-alpha.16) (2021-11-23) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.14...@bloom-housing/shared-helpers@3.0.1-alpha.15) (2021-11-23) +### Features +- new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) - -## [3.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.0...@bloom-housing/shared-helpers@3.0.1-alpha.0) (2021-11-09) +## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.13...@bloom-housing/shared-helpers@3.0.1-alpha.14) (2021-11-22) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.12...@bloom-housing/shared-helpers@3.0.1-alpha.13) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.11...@bloom-housing/shared-helpers@3.0.1-alpha.12) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers -# [3.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@2.0.0...@bloom-housing/shared-helpers@3.0.0) (2021-11-05) +## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.10...@bloom-housing/shared-helpers@3.0.1-alpha.11) (2021-11-22) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.9...@bloom-housing/shared-helpers@3.0.1-alpha.10) (2021-11-17) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.8...@bloom-housing/shared-helpers@3.0.1-alpha.9) (2021-11-16) +**Note:** Version bump only for package @bloom-housing/shared-helpers -# [2.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.5...@bloom-housing/shared-helpers@2.0.0) (2021-11-02) +## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.7...@bloom-housing/shared-helpers@3.0.1-alpha.8) (2021-11-15) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.6...@bloom-housing/shared-helpers@3.0.1-alpha.7) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.5...@bloom-housing/shared-helpers@3.0.1-alpha.6) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [1.0.6-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.4...@bloom-housing/shared-helpers@1.0.6-alpha.5) (2021-10-22) +## [3.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.4...@bloom-housing/shared-helpers@3.0.1-alpha.5) (2021-11-12) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.3...@bloom-housing/shared-helpers@3.0.1-alpha.4) (2021-11-12) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.2...@bloom-housing/shared-helpers@3.0.1-alpha.3) (2021-11-11) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [1.0.6-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.3...@bloom-housing/shared-helpers@1.0.6-alpha.4) (2021-10-22) +## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.1...@bloom-housing/shared-helpers@3.0.1-alpha.2) (2021-11-10) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.1-alpha.0...@bloom-housing/shared-helpers@3.0.1-alpha.1) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [3.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@3.0.0...@bloom-housing/shared-helpers@3.0.1-alpha.0) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [1.0.6-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.2...@bloom-housing/shared-helpers@1.0.6-alpha.3) (2021-10-22) +# [3.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@2.0.0...@bloom-housing/shared-helpers@3.0.0) (2021-11-05) **Note:** Version bump only for package @bloom-housing/shared-helpers +# [2.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.5...@bloom-housing/shared-helpers@2.0.0) (2021-11-02) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [1.0.6-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.4...@bloom-housing/shared-helpers@1.0.6-alpha.5) (2021-10-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers -## [1.0.6-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.1...@bloom-housing/shared-helpers@1.0.6-alpha.2) (2021-10-21) +## [1.0.6-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.3...@bloom-housing/shared-helpers@1.0.6-alpha.4) (2021-10-22) **Note:** Version bump only for package @bloom-housing/shared-helpers +## [1.0.6-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.2...@bloom-housing/shared-helpers@1.0.6-alpha.3) (2021-10-22) +**Note:** Version bump only for package @bloom-housing/shared-helpers +## [1.0.6-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.1...@bloom-housing/shared-helpers@1.0.6-alpha.2) (2021-10-21) +**Note:** Version bump only for package @bloom-housing/shared-helpers ## [1.0.6-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/shared-helpers@1.0.6-alpha.0...@bloom-housing/shared-helpers@1.0.6-alpha.1) (2021-10-19) diff --git a/shared-helpers/src/locales/es.json b/shared-helpers/src/locales/es.json index e8eb483555..4d09c30aef 100644 --- a/shared-helpers/src/locales/es.json +++ b/shared-helpers/src/locales/es.json @@ -253,6 +253,7 @@ "application.review.confirmation.applicationsClosed": "Solicitudes \ncerradas", "application.review.confirmation.applicationsRanked": "Solicitudes \nclasificadas", "application.review.confirmation.browseMore": "Ver más listados", + "application.review.confirmation.browseMoreDoorway": "Busque más listados en Doorway Housing Portal", "application.review.confirmation.createAccount": "### ¿Desea crear una cuenta?\n\nCrear una cuenta le permite guardar su información para solicitudes futuras, y usted puede verificar el estatus de esta solicitud en cualquier momento.", "application.review.confirmation.createAccountParagraph": "Crear una cuenta le permite guardar su información para solicitudes futuras, y usted puede verificar el estatus de esta solicitud en cualquier momento.", "application.review.confirmation.createAccountTitle": "¿Desea crear una cuenta?", diff --git a/shared-helpers/src/locales/general.json b/shared-helpers/src/locales/general.json index fbe99470ad..c2dc4a39be 100644 --- a/shared-helpers/src/locales/general.json +++ b/shared-helpers/src/locales/general.json @@ -375,6 +375,9 @@ "application.programs.disabilityOrMentalIllness.disabilityOrMentalIllness.label": "Yes", "application.programs.disabilityOrMentalIllness.doNotConsider.label": "No", "application.programs.disabilityOrMentalIllness.summary": "People with Developmental Disabilities or Mental Illness", + "application.programs.HOPWA.interested.label": "I'm interested", + "application.programs.HOPWA.notInterested.label": "I'm not interested", + "application.programs.HOPWA.summary": "HOPWA", "application.programs.housingSituation.doNotConsider.label": "No", "application.programs.housingSituation.homeless.description": "Includes living outside, or in your car, or staying at a shelter, or in a motel / hotel paid for with an emergency voucher", "application.programs.housingSituation.homeless.label": "I'm homeless", @@ -400,6 +403,7 @@ "application.review.confirmation.applicationsClosed": "Application \nclosed", "application.review.confirmation.applicationsRanked": "Application \nranked", "application.review.confirmation.browseMore": "Browse more listings", + "application.review.confirmation.browseMoreDoorway": "Browse more listings on Doorway Housing Portal", "application.review.confirmation.createAccount": "### Would you like to create an account?\n\nCreating an account will save your information for future applications, and you can check the status of this application anytime.", "application.review.confirmation.createAccountParagraph": "Creating an account will save your information for future applications, and you can check the status of this application anytime.", "application.review.confirmation.createAccountTitle": "Would you like to create an account?", @@ -1042,5 +1046,11 @@ "welcome.viewAdditionalHousing": "View additional housing opportunities and resources", "welcome.viewAdditionalHousingTruncated": "View opportunities and resources", "whatToExpect.default": "Applicants will be contacted by the property agent in rank order until vacancies are filled. All of the information that you have provided will be verified and your eligibility confirmed. Your application will be removed from the waitlist if you have made any fraudulent statements. If we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized. Should your application be chosen, be prepared to fill out a more detailed application and provide required supporting documents.", - "whatToExpect.label": "What to Expect" + "whatToExpect.label": "What to Expect", + "whatToExpect.waitlist": "

Applicants are applying for an open waitlist and not a currently vacant apartment.

Eligible applicants will be placed on the waitlist. When vacancies become available, applicants will contacted by the property manager on a first come, first serve basis.

If you are contacted by the property manager, all of the information that you have provided will be verified and your eligibility confirmed.

", + "whatToExpect.waitlistReadMore": "

Housing preferences, if applicable, will affect waitlist order.

Your application may be removed from the waitlist if you have made any fraudulent statements. For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.

If you are contacted by the property manager, be prepared to fill out a more detailed application and provide required supporting documents.

", + "whatToExpect.lottery": "

Applicants are applying to enter a lottery for currently vacant apartments.

Once the application period closes, eligible applicants will be placed in order based on lottery rank.

All of the information that you have provided will be verified and your eligibility confirmed.

", + "whatToExpect.lotteryReadMore": "

Housing preferences, if applicable, will affect lottery rank order.

Your application may be removed if you have made any fraudulent statements. For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.

If you are contacted by the property manager, be prepared to fill out a more detailed application and provide required supporting documents.

", + "whatToExpect.fcfs": "

Applicants are applying to currently vacant apartments on a first come, first serve basis.

Eligibile applicants will be contacted on a first come first serve basis until vacancies are filled.

All of the information that you have provided will be verified and your eligibility confirmed.

", + "whatToExpect.fcfsReadMore": "

Housing preferences, if applicable, will affect first come, first serve order.

Your application may be removed if you have made any fraudulent statements. For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.

If you are contacted by the property manager, be prepared to fill out a more detailed application and provide required supporting documents.

" } diff --git a/shared-helpers/src/locales/tl.json b/shared-helpers/src/locales/tl.json index f998a3aedf..905df3d48d 100644 --- a/shared-helpers/src/locales/tl.json +++ b/shared-helpers/src/locales/tl.json @@ -394,7 +394,7 @@ "errors.streetError": "Pakilagay ang address", "errors.timeError": "Pakilagay ang tamang oras", "errors.zipCodeError": "Pakilagay ang zipcode", - "footer.contact": "Contact", + "footer.contact": "Thông tin liên hệ", "footer.copyright": "Demonstration Jurisdiction © 2021 • Ang Lahat ng Karapatan ay Nakalaan", "footer.disclaimer": "Pagtatatuwa", "footer.forGeneralQuestions": "Para sa pangkalahatang katanungan ukol sa programa, maaari mo kaming tawagan sa 000-000-0000.", @@ -638,7 +638,7 @@ "t.readMore": "basahin ang marami", "t.relationship": "Relasyon", "t.rent": "Renta", - "t.review": "Review", + "t.review": "Repasuhin", "t.seconds": "segundo", "t.seeDetails": "Tingnan ang mga Detalye", "t.seeListing": "Tingnan ang mga Listahan", diff --git a/shared-helpers/src/locales/vi.json b/shared-helpers/src/locales/vi.json index bef713010c..e0bc42392d 100644 --- a/shared-helpers/src/locales/vi.json +++ b/shared-helpers/src/locales/vi.json @@ -253,6 +253,7 @@ "application.review.confirmation.applicationsClosed": "Đã đóng các \nđơn đăng ký", "application.review.confirmation.applicationsRanked": "Đã xếp hạng các \nđơn đăng ký", "application.review.confirmation.browseMore": "Xem nhiều danh sách nhà hơn", + "application.review.confirmation.browseMoreDoorway": "Duyệt thêm danh sách trên Cổng thông tin Nhà ở Doorway", "application.review.confirmation.createAccount": "### Quý vị có muốn tạo một tài khoản không?\n\nViệc tạo tài khoản sẽ lưu thông tin của quý vị cho các đơn ghi danh sau này và quý vị có thể kiểm tra tình trạng của đơn ghi danh này bất cứ lúc nào.", "application.review.confirmation.createAccountParagraph": "Việc tạo tài khoản sẽ lưu thông tin của quý vị cho các đơn ghi danh sau này và quý vị có thể kiểm tra tình trạng của đơn ghi danh này bất cứ lúc nào.", "application.review.confirmation.createAccountTitle": "Quý vị có muốn tạo một tài khoản không?", diff --git a/shared-helpers/src/locales/zh.json b/shared-helpers/src/locales/zh.json index 2bcfc03a44..5b7314b446 100644 --- a/shared-helpers/src/locales/zh.json +++ b/shared-helpers/src/locales/zh.json @@ -253,6 +253,7 @@ "application.review.confirmation.applicationsClosed": "申請已關閉\n", "application.review.confirmation.applicationsRanked": "申請已排名\n", "application.review.confirmation.browseMore": "瀏覽更多上市名單", + "application.review.confirmation.browseMoreDoorway": "在 Doorway Housing Portal 上瀏覽更多房源", "application.review.confirmation.createAccount": "### 您希望建立帳戶嗎?\n\n建立帳戶可儲存您的資料供日後申請之用,並且可以隨時查看這次申請的進展狀態。", "application.review.confirmation.createAccountParagraph": "建立帳戶可儲存您的資料供日後申請之用,並且可以隨時查看這次申請的進展狀態。", "application.review.confirmation.createAccountTitle": "您希望建立帳戶嗎?", diff --git a/shared-helpers/src/scripts/generate-translations.ts b/shared-helpers/src/scripts/generate-translations.ts index d8bed5722f..82258d704f 100644 --- a/shared-helpers/src/scripts/generate-translations.ts +++ b/shared-helpers/src/scripts/generate-translations.ts @@ -36,7 +36,7 @@ function main() { }) // Add new keys if not present - const newTranslationsFile: any = fs.readFileSync(filePath, "utf-8") + const newTranslationsFile: string = fs.readFileSync(filePath, "utf-8") const newTranslations = newTranslationsFile.split("\n") newTranslations.forEach((translation: string) => { const [key, ...values] = translation.split(",") diff --git a/shared-helpers/src/scripts/missing-translations.ts b/shared-helpers/src/scripts/missing-translations.ts index a27bec039a..89b990f4e3 100644 --- a/shared-helpers/src/scripts/missing-translations.ts +++ b/shared-helpers/src/scripts/missing-translations.ts @@ -1,48 +1,177 @@ /* eslint-disable @typescript-eslint/no-var-requires */ // Prints out keys/strings that exist in the english file but not in a foreign language translation file -// example: `ts-node missing-translations > missing-foreign-keys.json` -const englishTranslations = require("../locales/general.json") -const spanishTranslations = require("../locales/es.json") -const chineseTranslations = require("../locales/zh.json") -const vietnameseTranslations = require("../locales/vi.json") -const tagalogTranslations = require("../locales/tl.json") +// Temporarily update the ui-components tsconfig to include `"module": "commonjs"` +// from the scripts folder run `yarn ts-node scripts/missing-translations > hba-missing-translations.csv` function main() { type TranslationsType = { [key: string]: string } - const allTranslations = [ - { translationKeys: spanishTranslations, language: "Spanish" }, - { translationKeys: chineseTranslations, language: "Chinese" }, - { translationKeys: vietnameseTranslations, language: "Vietnamese" }, - { translationKeys: tagalogTranslations, language: "Tagalog" }, + type JurisdictionOverrideMap = { + [key: string]: MissingTranslation[] + } + + type MissingTranslation = { + [key: string]: TranslationInfo + } + + type TranslationInfo = { + value: string + location: string + jurisOverrides: string[] + } + const jurisdictions = ["alameda", "san_jose", "san_mateo"] + + const jurisOverrideTracker: JurisdictionOverrideMap[] = [] + + const enBaseTranslations = require("../locales/general.json") + const esBaseTranslations = require("../locales/es.json") + const zhBaseTranslations = require("../locales/zh.json") + const viBaseTranslations = require("../locales/vi.json") + const tlBaseTranslations = require("../locales/tl.json") + + const baseTranslations = [ + { + baseTranslations: esBaseTranslations, + language: "Spanish", + }, + { + baseTranslations: zhBaseTranslations, + language: "Chinese", + }, + { + baseTranslations: viBaseTranslations, + language: "Vietnamese", + }, + { + baseTranslations: tlBaseTranslations, + language: "Tagalog", + }, ] - const findMissingStrings = ( - baseTranslations: TranslationsType, - checkedTranslations: TranslationsType + const enOverrideTranslations = require("../../sites/public/page_content/locale_overrides/general.json") + + const findMissingBaseTranslations = ( + enBaseTranslations: TranslationsType, + checkBaseTranslations: TranslationsType, + jurisOverrideTracker: JurisdictionOverrideMap[] ) => { - const baseKeys = Object.keys(baseTranslations) - const checkedKeys = Object.keys(checkedTranslations) - const missingKeys: string[] = [] - baseKeys.forEach((key) => { - if (checkedKeys.indexOf(key) < 0) { - missingKeys.push(key) + const missingTranslations: MissingTranslation[] = [] + const enBaseKeys = Object.keys(enBaseTranslations) + const checkBaseKeys = Object.keys(checkBaseTranslations) + enBaseKeys.forEach((key) => { + const jurisOverrideArr: string[] = [] + Object.entries(jurisOverrideTracker).forEach((entry) => { + if (Object.keys(entry[1]).includes(key)) jurisOverrideArr.push(entry[0]) + }) + if ( + // not overriden by all jurisdictions + jurisOverrideArr.length !== jurisdictions.length && + // not overriden by hba-wide override file + !Object.keys(enOverrideTranslations).includes(key) && + // doesn't have translations + !checkBaseKeys.includes(key) + ) { + missingTranslations[key] = { + value: enBaseTranslations[key], + location: "ui-components", + jurisOverrides: jurisOverrideArr.toString(), + } } }) - return missingKeys + return missingTranslations } + jurisdictions.forEach((jurisdiction) => { + const enJurisTranslations = require(`../../sites/public/page_content/jurisdiction_overrides/${jurisdiction}/locale_overrides/general.json`) + const esJurisTranslations = require(`../../sites/public/page_content/jurisdiction_overrides/${jurisdiction}/locale_overrides/es.json`) + const zhJurisTranslations = require(`../../sites/public/page_content/jurisdiction_overrides/${jurisdiction}/locale_overrides/zh.json`) + const viJurisTranslations = require(`../../sites/public/page_content/jurisdiction_overrides/${jurisdiction}/locale_overrides/vi.json`) + let tlJurisTranslations = null + if (jurisdiction === "alameda") { + tlJurisTranslations = require(`../../sites/public/page_content/jurisdiction_overrides/${jurisdiction}/locale_overrides/tl.json`) + } + + const jurisTranslations = [ + { + jurisTranslations: esJurisTranslations, + language: "Spanish", + }, + { + jurisTranslations: zhJurisTranslations, + language: "Chinese", + }, + { + jurisTranslations: viJurisTranslations, + language: "Vietnamese", + }, + ] + + if (jurisdiction === "alameda") { + jurisTranslations.push({ + jurisTranslations: tlJurisTranslations, + language: "Tagalog", + }) + } - allTranslations.forEach((foreignKeys) => { - console.log("--------------------") - console.log(`Missing Public Site ${foreignKeys.language} Translations:`) - const missingPublicSiteTranslations = findMissingStrings( - englishTranslations, - foreignKeys.translationKeys + const findMissingOverrideTranslations = ( + enJurisTranslations: TranslationsType, + checkJurisTranslations: TranslationsType, + enOverrideTranslations: TranslationsType + ) => { + const missingTranslations: MissingTranslation[] = [] + //Comparison of jurisdictional files + const enJurisKeys = Object.keys(enJurisTranslations) + const checkJurisKeys = Object.keys(checkJurisTranslations) + enJurisKeys.forEach((key) => { + if (!checkJurisKeys.includes(key)) { + missingTranslations[key] = { + value: enJurisTranslations[key], + location: `${jurisdiction} override`, + } + } + }) + //Comparison of override files + const enOverrideKeys = Object.keys(enOverrideTranslations) + enOverrideKeys.forEach((key) => { + //don't need to check for translations since no other override files + if (!enJurisKeys.includes(key)) { + missingTranslations[key] = { + value: enOverrideTranslations[key], + location: "General Override", + } + } + }) + return missingTranslations + } + + console.log(`------------${jurisdiction} translations------------`) + jurisTranslations.forEach((translationSet) => { + console.log(`Missing Public Site ${translationSet.language} Translations:`) + const missingOverrideTranslations: MissingTranslation[] = findMissingOverrideTranslations( + enJurisTranslations, + translationSet.jurisTranslations, + enOverrideTranslations + ) + Object.entries(missingOverrideTranslations).forEach((entry) => + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions + console.log(`${entry[0]},${entry[1].location},"${entry[1].value}"`) + ) + }) + jurisOverrideTracker[jurisdiction] = enJurisTranslations + }) + console.log("------------Shared translations------------") + baseTranslations.forEach((translationSet) => { + const missingBaseTranslations = findMissingBaseTranslations( + enBaseTranslations, + translationSet.baseTranslations, + jurisOverrideTracker ) - missingPublicSiteTranslations.forEach((missingKey) => - console.log(`${missingKey}, ${JSON.stringify(englishTranslations[missingKey])}`) + Object.entries(missingBaseTranslations).forEach((entry) => + console.log( + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions + `${entry[0]},${entry[1].location},"${entry[1].value}","${entry[1].jurisOverrides}"` + ) ) }) } diff --git a/shared-helpers/src/types/backend-swagger.ts b/shared-helpers/src/types/backend-swagger.ts index e404db1961..a785078e91 100644 --- a/shared-helpers/src/types/backend-swagger.ts +++ b/shared-helpers/src/types/backend-swagger.ts @@ -1911,6 +1911,28 @@ export class AuthService { axios(configs, resolve, reject) }) } + /** + * Request single use code + */ + requestSingleUseCode( + params: { + /** requestBody */ + body?: RequestSingleUseCode + } = {} as any, + options: IRequestOptions = {} + ): Promise { + return new Promise((resolve, reject) => { + let url = basePath + "/auth/request-single-use-code" + + const configs: IRequestConfig = getConfigs("post", "application/json", url, options) + + let data = params.body + + configs.data = data + + axios(configs, resolve, reject) + }) + } /** * Requests a new token given a refresh token */ @@ -5135,6 +5157,11 @@ export interface RequestMfaCodeResponse { phoneNumberVerified?: boolean } +export interface RequestSingleUseCode { + /** */ + email: string +} + export interface UpdatePassword { /** */ password: string diff --git a/shared-helpers/src/views/multiselectQuestions.tsx b/shared-helpers/src/views/multiselectQuestions.tsx index e628e5b721..181bb0dcb4 100644 --- a/shared-helpers/src/views/multiselectQuestions.tsx +++ b/shared-helpers/src/views/multiselectQuestions.tsx @@ -1,4 +1,5 @@ import * as React from "react" + import { UseFormMethods } from "react-hook-form" import { ExpandableContent, diff --git a/sites/partners/.env.template b/sites/partners/.env.template index 2d9c370afd..ff8381386a 100644 --- a/sites/partners/.env.template +++ b/sites/partners/.env.template @@ -10,3 +10,4 @@ CLOUDINARY_KEY='abcxyz' CLOUDINARY_SIGNED_PRESET='test123' MAPBOX_TOKEN= SHOW_SMS_MFA=TRUE +FEATURE_LISTINGS_APPROVAL=FALSE diff --git a/sites/partners/.jest/setup-tests.js b/sites/partners/.jest/setup-tests.js index 6c8b0a0923..133527bcc0 100644 --- a/sites/partners/.jest/setup-tests.js +++ b/sites/partners/.jest/setup-tests.js @@ -3,7 +3,7 @@ import { addTranslation } from "@bloom-housing/ui-components" import generalTranslations from "@bloom-housing/shared-helpers/src/locales/general.json" import axios from "axios" import "@testing-library/jest-dom/extend-expect" -import general from "../page_content/locale_overrides/general.json" +import general from "../src/page_content/locale_overrides/general.json" addTranslation({ ...generalTranslations, ...general }) process.env.cloudinaryCloudName = "exygy" diff --git a/sites/partners/CHANGELOG.md b/sites/partners/CHANGELOG.md index fa2a21c31d..9fbdf44dbf 100644 --- a/sites/partners/CHANGELOG.md +++ b/sites/partners/CHANGELOG.md @@ -2261,820 +2261,186 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. # [5.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.4.0...@bloom-housing/partners@5.0.0) (2022-06-16) -* 2022-06-16 release (#2824) ([1abd991](https://github.com/seanmalbert/bloom/commit/1abd991136e28598b7856164b88bef462b8ff566)), closes [#2824](https://github.com/seanmalbert/bloom/issues/2824) [#2521](https://github.com/seanmalbert/bloom/issues/2521) [#2504](https://github.com/seanmalbert/bloom/issues/2504) [#2520](https://github.com/seanmalbert/bloom/issues/2520) [#2517](https://github.com/seanmalbert/bloom/issues/2517) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2529](https://github.com/seanmalbert/bloom/issues/2529) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2540](https://github.com/seanmalbert/bloom/issues/2540) [#2528](https://github.com/seanmalbert/bloom/issues/2528) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2545](https://github.com/seanmalbert/bloom/issues/2545) [#2526](https://github.com/seanmalbert/bloom/issues/2526) [#2532](https://github.com/seanmalbert/bloom/issues/2532) [#2551](https://github.com/seanmalbert/bloom/issues/2551) [#2562](https://github.com/seanmalbert/bloom/issues/2562) [#2566](https://github.com/seanmalbert/bloom/issues/2566) [#2572](https://github.com/seanmalbert/bloom/issues/2572) [#2546](https://github.com/seanmalbert/bloom/issues/2546) [#2578](https://github.com/seanmalbert/bloom/issues/2578) [#2579](https://github.com/seanmalbert/bloom/issues/2579) [#2581](https://github.com/seanmalbert/bloom/issues/2581) [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2574](https://github.com/seanmalbert/bloom/issues/2574) [#2577](https://github.com/seanmalbert/bloom/issues/2577) [#2590](https://github.com/seanmalbert/bloom/issues/2590) [#2592](https://github.com/seanmalbert/bloom/issues/2592) [#2560](https://github.com/seanmalbert/bloom/issues/2560) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2599](https://github.com/seanmalbert/bloom/issues/2599) [#2600](https://github.com/seanmalbert/bloom/issues/2600) [#2598](https://github.com/seanmalbert/bloom/issues/2598) [#2582](https://github.com/seanmalbert/bloom/issues/2582) [#2531](https://github.com/seanmalbert/bloom/issues/2531) [#2615](https://github.com/seanmalbert/bloom/issues/2615) [#2606](https://github.com/seanmalbert/bloom/issues/2606) [#2618](https://github.com/seanmalbert/bloom/issues/2618) [#2620](https://github.com/seanmalbert/bloom/issues/2620) [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2563](https://github.com/seanmalbert/bloom/issues/2563) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2635](https://github.com/seanmalbert/bloom/issues/2635) [#2624](https://github.com/seanmalbert/bloom/issues/2624) [#2642](https://github.com/seanmalbert/bloom/issues/2642) [#2652](https://github.com/seanmalbert/bloom/issues/2652) [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2658](https://github.com/seanmalbert/bloom/issues/2658) [#2653](https://github.com/seanmalbert/bloom/issues/2653) [#2630](https://github.com/seanmalbert/bloom/issues/2630) [#2612](https://github.com/seanmalbert/bloom/issues/2612) [#2672](https://github.com/seanmalbert/bloom/issues/2672) [#2558](https://github.com/seanmalbert/bloom/issues/2558) [#2604](https://github.com/seanmalbert/bloom/issues/2604) [#2625](https://github.com/seanmalbert/bloom/issues/2625) [#2650](https://github.com/seanmalbert/bloom/issues/2650) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2603](https://github.com/seanmalbert/bloom/issues/2603) [#2648](https://github.com/seanmalbert/bloom/issues/2648) [#2673](https://github.com/seanmalbert/bloom/issues/2673) [#2661](https://github.com/seanmalbert/bloom/issues/2661) [#2676](https://github.com/seanmalbert/bloom/issues/2676) [#2680](https://github.com/seanmalbert/bloom/issues/2680) [#2597](https://github.com/seanmalbert/bloom/issues/2597) [#2686](https://github.com/seanmalbert/bloom/issues/2686) [#2683](https://github.com/seanmalbert/bloom/issues/2683) [#2657](https://github.com/seanmalbert/bloom/issues/2657) [#2693](https://github.com/seanmalbert/bloom/issues/2693) [#2694](https://github.com/seanmalbert/bloom/issues/2694) [#2616](https://github.com/seanmalbert/bloom/issues/2616) [#2703](https://github.com/seanmalbert/bloom/issues/2703) [#2697](https://github.com/seanmalbert/bloom/issues/2697) [#2691](https://github.com/seanmalbert/bloom/issues/2691) [#2687](https://github.com/seanmalbert/bloom/issues/2687) [#2700](https://github.com/seanmalbert/bloom/issues/2700) [#2677](https://github.com/seanmalbert/bloom/issues/2677) [#2682](https://github.com/seanmalbert/bloom/issues/2682) [#2689](https://github.com/seanmalbert/bloom/issues/2689) [#2675](https://github.com/seanmalbert/bloom/issues/2675) [#2713](https://github.com/seanmalbert/bloom/issues/2713) [#2702](https://github.com/seanmalbert/bloom/issues/2702) [#2704](https://github.com/seanmalbert/bloom/issues/2704) [#2719](https://github.com/seanmalbert/bloom/issues/2719) [#2714](https://github.com/seanmalbert/bloom/issues/2714) [#2543](https://github.com/seanmalbert/bloom/issues/2543) [#2728](https://github.com/seanmalbert/bloom/issues/2728) [#2692](https://github.com/seanmalbert/bloom/issues/2692) [#2732](https://github.com/seanmalbert/bloom/issues/2732) [#2749](https://github.com/seanmalbert/bloom/issues/2749) [#2744](https://github.com/seanmalbert/bloom/issues/2744) [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -### Performance Improvements - -* user list and user getQb ([#2756](https://github.com/seanmalbert/bloom/issues/2756)) ([cd02be3](https://github.com/seanmalbert/bloom/commit/cd02be32f10560978a786abaf752ace7c32f5b0e)) - - -### BREAKING CHANGES - -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version - -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 - -* feat: ami chart jurisdictionalized - -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 - -* refactor: make backend a peer dependency in ui-components - -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 - -* feat: add a phone number column to the user_accounts table - -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a - -* chore: removes application program partners - -* chore: removes application program display - -* Revert "chore: removes application program display" - -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. - -* Revert "chore: removes application program partners" - -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. - -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version - -* fix: choose-language context - -* chore(release): version - -* fix: applications/view hide prefs - -* chore(release): version - -* feat: overrides fallback to english, tagalog support - -* chore(release): version - -* fix: account translations - -* chore(release): version - -* fix: units with invalid ami chart - -* chore(release): version - -* fix: remove description for the partners programs - -* fix: fix modal styles on mobile - -* fix: visual improvement to programs form display - -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version - -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 - -* feat: ami chart jurisdictionalized - -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 - -* refactor: make backend a peer dependency in ui-components - -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 - -* feat: add a phone number column to the user_accounts table - -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a - -* chore: removes application program partners - -* chore: removes application program display - -* Revert "chore: removes application program display" - -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. - -* Revert "chore: removes application program partners" - -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. - -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version - -* fix: choose-language context - -* chore(release): version - -* fix: applications/view hide prefs - -* chore(release): version - -* feat: overrides fallback to english, tagalog support - -* chore(release): version - -* fix: account translations - -* chore(release): version - -* fix: units with invalid ami chart - -* chore(release): version - -* fix: remove description for the partners programs - -* fix: fix modal styles on mobile - -* fix: visual improvement to programs form display - -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +## [7.6.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.6.0...@bloom-housing/partners@7.6.1) (2023-01-31) -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +### Bug Fixes -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +* change error message for invalid emails when adding a user in the partners site ([#3302](https://github.com/bloom-housing/bloom/issues/3302)) ([536785c](https://github.com/bloom-housing/bloom/commit/536785c0ef2d0f76f47d5f95203af0774aeacf27)) -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service -* fix: fix lisitng e2e tests -* fix: fix member tests -* fix: adds jurisdictionId to useSWR path +# [7.6.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.5.0...@bloom-housing/partners@7.6.0) (2023-01-26) -* fix: recalculate units available on listing update -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +### Features -* feat: feat(backend): make use of new application confirmation codes +* add description for FCFS in listing aside ([#3255](https://github.com/bloom-housing/bloom/issues/3255)) ([4905c31](https://github.com/bloom-housing/bloom/commit/4905c3173e96835f072c692934e326b0a0d7f626)) +* add marked and flagged as duplicate to all applications table ([#3214](https://github.com/bloom-housing/bloom/issues/3214)) ([f79f415](https://github.com/bloom-housing/bloom/commit/f79f415a917873e11b12b8795c2915f13737574f)) +* delete ui-c folder ([#3229](https://github.com/bloom-housing/bloom/issues/3229)) ([7472558](https://github.com/bloom-housing/bloom/commit/74725586e0c10c504087ffa4f8f621863a471ebd)) -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +# [7.5.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.4.4...@bloom-housing/partners@7.5.0) (2022-12-23) -* feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +### Features -* feat: updates preference string +* add 5 bedroom option ([#3230](https://github.com/bloom-housing/bloom/issues/3230)) ([8ada8dc](https://github.com/bloom-housing/bloom/commit/8ada8dcea9d2c3bf3fdd6f574bbe8afd08eb1a9d)) -* fix: preference cleanup for avance -* refactor: remove applicationAddress -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +## [7.4.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.4.3...@bloom-housing/partners@7.4.4) (2022-12-22) -* feat: better seed data for ami-charts +**Note:** Version bump only for package @bloom-housing/partners -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +## [7.4.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.4.2...@bloom-housing/partners@7.4.3) (2022-12-14) -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +**Note:** Version bump only for package @bloom-housing/partners -* test: view.spec.ts test -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath -picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +## [7.4.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.4.1...@bloom-housing/partners@7.4.2) (2022-12-13) -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +**Note:** Version bump only for package @bloom-housing/partners -* feat: new demographics sub-race questions -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +## [7.4.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.4.0...@bloom-housing/partners@7.4.1) (2022-12-08) -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +**Note:** Version bump only for package @bloom-housing/partners -* fix: add ariaLabel prop to Button component -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +# [7.4.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.3.5...@bloom-housing/partners@7.4.0) (2022-12-08) -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +### Features -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +* add email column to duplicates table ([ce2a1a8](https://github.com/bloom-housing/bloom/commit/ce2a1a88e34ab5734e0de3cad9556df3b939efae)) -* feat: ami chart jurisdictionalized -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +## [7.3.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.3.4...@bloom-housing/partners@7.3.5) (2022-12-08) -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +**Note:** Version bump only for package @bloom-housing/partners -* chore: removes application program partners -* chore: removes application program display -* Revert "chore: removes application program display" -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +## [7.3.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.3.3...@bloom-housing/partners@7.3.4) (2022-12-06) -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +**Note:** Version bump only for package @bloom-housing/partners -* chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing -* chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +## [7.3.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.3.2...@bloom-housing/partners@7.3.3) (2022-12-06) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners -* chore: converge on one axios version, remove peer dependency -* chore(release): version -* feat: simplify Waitlist component and use more flexible schema -* chore(release): version -* fix: lottery results uploads now save +## [7.3.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.3.1...@bloom-housing/partners@7.3.2) (2022-12-05) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners -* feat: add SRO unit type -* chore(release): version -* fix: paper application submission -* chore(release): version -* fix: choose-language context +## [7.3.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.3.0...@bloom-housing/partners@7.3.1) (2022-12-01) -* chore(release): version -* fix: applications/view hide prefs +### Reverts -* chore(release): version +* Revert "fix: cypress tests working again (#3180)" (#3194) ([4894a20](https://github.com/bloom-housing/bloom/commit/4894a2017906aae134860eef39c7f70a58c7d182)), closes [#3180](https://github.com/bloom-housing/bloom/issues/3180) [#3194](https://github.com/bloom-housing/bloom/issues/3194) -* feat: overrides fallback to english, tagalog support -* chore(release): version -* fix: account translations -* chore(release): version -* fix: units with invalid ami chart +# [7.3.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.2.2...@bloom-housing/partners@7.3.0) (2022-11-30) -* chore(release): version -* fix: remove description for the partners programs +### Features -* fix: fix modal styles on mobile +* add startDate field to listing events ([#3167](https://github.com/bloom-housing/bloom/issues/3167)) ([3d0aa11](https://github.com/bloom-housing/bloom/commit/3d0aa11abf36db016fa3ce3117a72b5fdad88614)) -* fix: visual improvement to programs form display -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +## [7.2.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.2.1...@bloom-housing/partners@7.2.2) (2022-11-29) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version +### Bug Fixes - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +* table a11y dynamic linting until performance issues are resolved ([#3178](https://github.com/bloom-housing/bloom/issues/3178)) ([7fe8886](https://github.com/bloom-housing/bloom/commit/7fe8886454621210c439d436d3e36068bed9a6ea)) -* chore(release): version - - @bloom-housing/shared-helpers@4.2.2-alpha.10 - - @bloom-housing/partners@4.2.2-alpha.11 - - @bloom-housing/public@4.2.2-alpha.11 - - @bloom-housing/ui-components@4.2.2-alpha.10 -* the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings -* chore(release): version - - @bloom-housing/shared-helpers@4.2.2-alpha.23 - - @bloom-housing/partners@4.2.2-alpha.27 - - @bloom-housing/public@4.2.2-alpha.26 - - @bloom-housing/ui-components@4.2.2-alpha.23 -* the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set -* chore(release): version +## [7.2.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.2.0...@bloom-housing/partners@7.2.1) (2022-11-22) - - @bloom-housing/shared-helpers@4.2.2-alpha.24 - - @bloom-housing/partners@4.2.2-alpha.28 - - @bloom-housing/public@4.2.2-alpha.27 - - @bloom-housing/ui-components@4.2.2-alpha.24 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version +### Bug Fixes - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +* cypress tests working again ([#3180](https://github.com/bloom-housing/bloom/issues/3180)) ([f480de5](https://github.com/bloom-housing/bloom/commit/f480de5861f949e45129a0298078f69d4371f1cc)) -## [4.4.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.31...@bloom-housing/partners@4.4.1-alpha.32) (2022-06-16) +# [7.2.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.1.0...@bloom-housing/partners@7.2.0) (2022-11-21) ### Features -* creating setting wall for accessibility feat ([#2817](https://github.com/bloom-housing/bloom/issues/2817)) ([d26cad4](https://github.com/bloom-housing/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) +* adding last run to pending page ([#3168](https://github.com/bloom-housing/bloom/issues/3168)) ([45fcda2](https://github.com/bloom-housing/bloom/commit/45fcda23364b79e6c88718d70c7bb8c0d5cbb4cd)) -## [4.4.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.30...@bloom-housing/partners@4.4.1-alpha.31) (2022-06-14) +# [7.1.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.3...@bloom-housing/partners@7.1.0) (2022-11-21) ### Features -* actionable row component ([#2810](https://github.com/bloom-housing/bloom/issues/2810)) ([da10703](https://github.com/bloom-housing/bloom/commit/da107038d05b7efd601af70673666a125293ffef)) - - - - - -## [4.4.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.29...@bloom-housing/partners@4.4.1-alpha.30) (2022-06-13) - -**Note:** Version bump only for package @bloom-housing/partners - - - - - -## [4.4.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.28...@bloom-housing/partners@4.4.1-alpha.29) (2022-06-13) - -**Note:** Version bump only for package @bloom-housing/partners - - - - - -## [4.4.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.27...@bloom-housing/partners@4.4.1-alpha.28) (2022-06-13) - -**Note:** Version bump only for package @bloom-housing/partners - - - - - -## [4.4.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.26...@bloom-housing/partners@4.4.1-alpha.27) (2022-06-10) - -**Note:** Version bump only for package @bloom-housing/partners +* adding UUID validation ([#3172](https://github.com/bloom-housing/bloom/issues/3172)) ([320c0f0](https://github.com/bloom-housing/bloom/commit/320c0f0e2e2ec8b40bcdddc39875456d53e7cca4)) -## [4.4.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.25...@bloom-housing/partners@4.4.1-alpha.26) (2022-06-10) +## [7.0.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.2...@bloom-housing/partners@7.0.3) (2022-11-16) **Note:** Version bump only for package @bloom-housing/partners @@ -3082,7 +2448,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.24...@bloom-housing/partners@4.4.1-alpha.25) (2022-06-09) +## [7.0.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.2-alpha.2...@bloom-housing/partners@7.0.2) (2022-11-14) **Note:** Version bump only for package @bloom-housing/partners @@ -3090,34 +2456,18 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.23...@bloom-housing/partners@4.4.1-alpha.24) (2022-06-09) - - -### Features - -* add settings page to partners ([#2789](https://github.com/bloom-housing/bloom/issues/2789)) ([3869946](https://github.com/bloom-housing/bloom/commit/3869946a016510f53b20854a06c5f32187c4de79)) - - - - - -## [4.4.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.22...@bloom-housing/partners@4.4.1-alpha.23) (2022-06-09) - -**Note:** Version bump only for package @bloom-housing/partners - - - +## [7.0.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.2-alpha.1...@bloom-housing/partners@7.0.2-alpha.2) (2022-11-03) -## [4.4.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.21...@bloom-housing/partners@4.4.1-alpha.22) (2022-06-09) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/partners +* allow for more space for modals on mobile ([#3153](https://github.com/bloom-housing/bloom/issues/3153)) ([7e41703](https://github.com/bloom-housing/bloom/commit/7e41703ad8571eb160f4eaf53f40f9055f7639a3)) -## [4.4.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.20...@bloom-housing/partners@4.4.1-alpha.21) (2022-06-08) +## [7.0.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.2-alpha.0...@bloom-housing/partners@7.0.2-alpha.1) (2022-11-02) **Note:** Version bump only for package @bloom-housing/partners @@ -3125,7 +2475,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.19...@bloom-housing/partners@4.4.1-alpha.20) (2022-06-08) +## [7.0.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1...@bloom-housing/partners@7.0.2-alpha.0) (2022-10-31) **Note:** Version bump only for package @bloom-housing/partners @@ -3133,7 +2483,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.18...@bloom-housing/partners@4.4.1-alpha.19) (2022-06-07) +## [7.0.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.9...@bloom-housing/partners@7.0.1) (2022-10-26) **Note:** Version bump only for package @bloom-housing/partners @@ -3141,7 +2491,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.17...@bloom-housing/partners@4.4.1-alpha.18) (2022-06-07) +## [7.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.8...@bloom-housing/partners@7.0.1-alpha.9) (2022-10-26) **Note:** Version bump only for package @bloom-housing/partners @@ -3149,7 +2499,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.16...@bloom-housing/partners@4.4.1-alpha.17) (2022-06-07) +## [7.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.7...@bloom-housing/partners@7.0.1-alpha.8) (2022-10-25) **Note:** Version bump only for package @bloom-housing/partners @@ -3157,18 +2507,15 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.15...@bloom-housing/partners@4.4.1-alpha.16) (2022-06-06) - - -### Features +## [7.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.6...@bloom-housing/partners@7.0.1-alpha.7) (2022-10-25) -* create table card component ([#2781](https://github.com/bloom-housing/bloom/issues/2781)) ([7cb3147](https://github.com/bloom-housing/bloom/commit/7cb31477268733b8b3d51dd77b2e33afb713ffbc)) +**Note:** Version bump only for package @bloom-housing/partners -## [4.4.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.14...@bloom-housing/partners@4.4.1-alpha.15) (2022-06-04) +## [7.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.5...@bloom-housing/partners@7.0.1-alpha.6) (2022-10-24) **Note:** Version bump only for package @bloom-housing/partners @@ -3176,7 +2523,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.13...@bloom-housing/partners@4.4.1-alpha.14) (2022-06-03) +## [7.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.4...@bloom-housing/partners@7.0.1-alpha.5) (2022-10-21) **Note:** Version bump only for package @bloom-housing/partners @@ -3184,7 +2531,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.12...@bloom-housing/partners@4.4.1-alpha.13) (2022-06-02) +## [7.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.3...@bloom-housing/partners@7.0.1-alpha.4) (2022-10-20) **Note:** Version bump only for package @bloom-housing/partners @@ -3192,3678 +2539,4695 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.11...@bloom-housing/partners@4.4.1-alpha.12) (2022-06-01) +## [7.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.2...@bloom-housing/partners@7.0.1-alpha.3) (2022-10-19) +**Note:** Version bump only for package @bloom-housing/partners -### Features -* add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +## [7.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.1...@bloom-housing/partners@7.0.1-alpha.2) (2022-10-13) +**Note:** Version bump only for package @bloom-housing/partners -## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.10...@bloom-housing/partners@4.4.1-alpha.11) (2022-05-31) -### Bug Fixes -* netlify oom build issues ([#2770](https://github.com/bloom-housing/bloom/issues/2770)) ([45b2cb5](https://github.com/bloom-housing/bloom/commit/45b2cb598d50f06d87d96edaad2b49edbb76a05b)) +## [7.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@7.0.1-alpha.0...@bloom-housing/partners@7.0.1-alpha.1) (2022-10-12) +**Note:** Version bump only for package @bloom-housing/partners -## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.9...@bloom-housing/partners@4.4.1-alpha.10) (2022-05-31) -### Features +## [7.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@6.0.1-alpha.5...@bloom-housing/partners@7.0.1-alpha.0) (2022-10-05) -* load overly to partner listings grid ([#2621](https://github.com/bloom-housing/bloom/issues/2621)) ([4785f34](https://github.com/bloom-housing/bloom/commit/4785f344831f97dac2164224e32247619e5ac808)) +**Note:** Version bump only for package @bloom-housing/partners -## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.8...@bloom-housing/partners@4.4.1-alpha.9) (2022-05-31) +# [7.0.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.39...@bloom-housing/partners@7.0.0) (2022-09-29) -**Note:** Version bump only for package @bloom-housing/partners +* Release/2022 09 29 (#3114) ([dd9cbd6](https://github.com/bloom-housing/bloom/commit/dd9cbd6e549c69a3410a0753011e8f157ef61f31)), closes [#3114](https://github.com/bloom-housing/bloom/issues/3114) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3056](https://github.com/bloom-housing/bloom/issues/3056) [#3075](https://github.com/bloom-housing/bloom/issues/3075) [#3095](https://github.com/bloom-housing/bloom/issues/3095) [#3090](https://github.com/bloom-housing/bloom/issues/3090) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) +### BREAKING CHANGES +* The preference and program entities have been merged into a single entity called MultiselectQuestion -## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.7...@bloom-housing/partners@4.4.1-alpha.8) (2022-05-31) +* chore(release): version -**Note:** Version bump only for package @bloom-housing/partners + - @bloom-housing/backend-core@5.1.1-alpha.8 + - @bloom-housing/shared-helpers@5.1.1-alpha.18 + - @bloom-housing/partners@5.1.1-alpha.20 + - @bloom-housing/public@5.1.1-alpha.18 + - @bloom-housing/ui-components@5.1.1-alpha.11 -## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.6...@bloom-housing/partners@4.4.1-alpha.7) (2022-05-26) +## [6.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@6.0.1-alpha.0...@bloom-housing/partners@6.0.1-alpha.1) (2022-09-28) -**Note:** Version bump only for package @bloom-housing/partners +### Features + +- add duplicates v2 feature ([11cd2b3](https://github.com/bloom-housing/bloom/commit/11cd2b3b4d39c69e10ca1c9a8c2c7199b4a08b6b)), closes [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) +### BREAKING CHANGES +- The preference and program entities have been merged into a single entity called MultiselectQuestion +- chore(release): version +* @bloom-housing/backend-core@5.1.1-alpha.8 +* @bloom-housing/shared-helpers@5.1.1-alpha.18 +* @bloom-housing/partners@5.1.1-alpha.20 +* @bloom-housing/public@5.1.1-alpha.18 +* @bloom-housing/ui-components@5.1.1-alpha.11 -## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.5...@bloom-housing/partners@4.4.1-alpha.6) (2022-05-26) +## [6.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.55...@bloom-housing/partners@6.0.1-alpha.0) (2022-09-28) **Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.54...@bloom-housing/partners@5.1.1-alpha.55) (2022-09-28) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.53...@bloom-housing/partners@5.1.1-alpha.54) (2022-09-28) +### Features -## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.4...@bloom-housing/partners@4.4.1-alpha.5) (2022-05-26) +- **preferences:** add delete preference button ([#3075](https://github.com/bloom-housing/bloom/issues/3075)) ([29a079e](https://github.com/bloom-housing/bloom/commit/29a079e23ecc5cd31589993fef0c9de661c6e8c8)) +## [5.1.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.52...@bloom-housing/partners@5.1.1-alpha.53) (2022-09-26) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/partners -* selectAndOrder drag and drop ([#2765](https://github.com/bloom-housing/bloom/issues/2765)) ([301a0eb](https://github.com/bloom-housing/bloom/commit/301a0eb8b6b018b3d664f2b84c3720f4055d452f)) +## [5.1.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.51...@bloom-housing/partners@5.1.1-alpha.52) (2022-09-26) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.50...@bloom-housing/partners@5.1.1-alpha.51) (2022-09-26) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.49...@bloom-housing/partners@5.1.1-alpha.50) (2022-09-26) -## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.3...@bloom-housing/partners@4.4.1-alpha.4) (2022-05-26) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/partners +- append copy text to copied preferences ([#3084](https://github.com/bloom-housing/bloom/issues/3084)) ([4881c9f](https://github.com/bloom-housing/bloom/commit/4881c9f09842af14662585ca09852c86c1c3881d)) +## [5.1.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.48...@bloom-housing/partners@5.1.1-alpha.49) (2022-09-26) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.47...@bloom-housing/partners@5.1.1-alpha.48) (2022-09-23) +**Note:** Version bump only for package @bloom-housing/partners -## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.2...@bloom-housing/partners@4.4.1-alpha.3) (2022-05-25) +## [5.1.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.46...@bloom-housing/partners@5.1.1-alpha.47) (2022-09-22) **Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.45...@bloom-housing/partners@5.1.1-alpha.46) (2022-09-19) +### Features +- add confirm modal when copying a preference ([#3041](https://github.com/bloom-housing/bloom/issues/3041)) ([b3d69e9](https://github.com/bloom-housing/bloom/commit/b3d69e9b557998489c828c86ff742c91feca799f)) - -## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.1...@bloom-housing/partners@4.4.1-alpha.2) (2022-05-25) +## [5.1.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.44...@bloom-housing/partners@5.1.1-alpha.45) (2022-09-16) **Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.43...@bloom-housing/partners@5.1.1-alpha.44) (2022-09-16) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.42...@bloom-housing/partners@5.1.1-alpha.43) (2022-09-14) +### Features -## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.0...@bloom-housing/partners@4.4.1-alpha.1) (2022-05-25) - - -### Performance Improvements +- allow alerts to be sticky under page header ([#3050](https://github.com/bloom-housing/bloom/issues/3050)) ([d776e84](https://github.com/bloom-housing/bloom/commit/d776e84f76a8bde3f24d1c6706ed35dd777dc66b)) -* user list and user getQb ([#2756](https://github.com/bloom-housing/bloom/issues/2756)) ([bc45879](https://github.com/bloom-housing/bloom/commit/bc45879f79934b5a1cf48a4d6a911048906e3184)) +## [5.1.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.41...@bloom-housing/partners@5.1.1-alpha.42) (2022-09-13) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.40...@bloom-housing/partners@5.1.1-alpha.41) (2022-09-13) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.39...@bloom-housing/partners@5.1.1-alpha.40) (2022-09-12) -## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.3...@bloom-housing/partners@4.4.1-alpha.0) (2022-05-25) +### Bug Fixes +- add unit tests to partners ([#3023](https://github.com/bloom-housing/bloom/issues/3023)) ([92889f5](https://github.com/bloom-housing/bloom/commit/92889f56f1fc6dc54be207ca0cf3dd9ce58176d1)) -* 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +## [5.1.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.38...@bloom-housing/partners@5.1.1-alpha.39) (2022-09-09) +**Note:** Version bump only for package @bloom-housing/partners -### BREAKING CHANGES +## [5.1.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.37...@bloom-housing/partners@5.1.1-alpha.38) (2022-09-08) -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.1.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.36...@bloom-housing/partners@5.1.1-alpha.37) (2022-08-31) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.35...@bloom-housing/partners@5.1.1-alpha.36) (2022-08-31) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.34...@bloom-housing/partners@5.1.1-alpha.35) (2022-08-31) +**Note:** Version bump only for package @bloom-housing/partners -# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.3...@bloom-housing/partners@4.4.0) (2022-05-24) +## [5.1.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.33...@bloom-housing/partners@5.1.1-alpha.34) (2022-08-31) +### Bug Fixes -* 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- fix for big timeout on flagged set ([#2946](https://github.com/bloom-housing/bloom/issues/2946)) ([7c6e6c6](https://github.com/bloom-housing/bloom/commit/7c6e6c68daba9d506eb4d534c68b7a65a597aa0a)) +- 2022-08-24 release (#2993) ([6f1deac](https://github.com/bloom-housing/bloom/commit/6f1deac5370fa8286b051b09431d153d22901b3a)), closes [#2993](https://github.com/bloom-housing/bloom/issues/2993) [#2821](https://github.com/bloom-housing/bloom/issues/2821) [#2764](https://github.com/bloom-housing/bloom/issues/2764) [#2767](https://github.com/bloom-housing/bloom/issues/2767) [#2787](https://github.com/bloom-housing/bloom/issues/2787) [#2769](https://github.com/bloom-housing/bloom/issues/2769) [#2781](https://github.com/bloom-housing/bloom/issues/2781) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2847](https://github.com/bloom-housing/bloom/issues/2847) [#2830](https://github.com/bloom-housing/bloom/issues/2830) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2846](https://github.com/bloom-housing/bloom/issues/2846) [#2851](https://github.com/bloom-housing/bloom/issues/2851) [#2594](https://github.com/bloom-housing/bloom/issues/2594) [#2812](https://github.com/bloom-housing/bloom/issues/2812) [#2799](https://github.com/bloom-housing/bloom/issues/2799) [#2828](https://github.com/bloom-housing/bloom/issues/2828) [#2843](https://github.com/bloom-housing/bloom/issues/2843) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [#2875](https://github.com/bloom-housing/bloom/issues/2875) [#2859](https://github.com/bloom-housing/bloom/issues/2859) [#2848](https://github.com/bloom-housing/bloom/issues/2848) [#2785](https://github.com/bloom-housing/bloom/issues/2785) ### BREAKING CHANGES -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version +- prop name change for header from "text" to "content" - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- chore(release): version +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 +## [5.1.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.24...@bloom-housing/partners@5.1.1-alpha.25) (2022-08-24) +### Features +- adds the ability to manage preference for partner admins ([#2985](https://github.com/bloom-housing/bloom/issues/2985)) ([0f1f470](https://github.com/bloom-housing/bloom/commit/0f1f470f00f4ef95a2e35a921701339fb813f1f5)) -## [4.3.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.2...@bloom-housing/partners@4.3.1-alpha.3) (2022-05-24) +## [5.1.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.23...@bloom-housing/partners@5.1.1-alpha.24) (2022-08-24) **Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.22...@bloom-housing/partners@5.1.1-alpha.23) (2022-08-24) + +### Features +- show preference details on listing form ([#2989](https://github.com/bloom-housing/bloom/issues/2989)) ([b4b2b9e](https://github.com/bloom-housing/bloom/commit/b4b2b9ee75c4895ea5b0694dddbf0c8979c0e251)) +## [5.1.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.21...@bloom-housing/partners@5.1.1-alpha.22) (2022-08-23) +**Note:** Version bump only for package @bloom-housing/partners -## [4.3.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.1...@bloom-housing/partners@4.3.1-alpha.2) (2022-05-24) +## [5.1.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.20...@bloom-housing/partners@5.1.1-alpha.21) (2022-08-23) +**Note:** Version bump only for package @bloom-housing/partners -### Bug Fixes +## [5.1.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.19...@bloom-housing/partners@5.1.1-alpha.20) (2022-08-23) -* check for empty url before rendering ([#2749](https://github.com/bloom-housing/bloom/issues/2749)) ([dc384de](https://github.com/bloom-housing/bloom/commit/dc384deaee2db64a857fbb257924a40be90266d4)) +- refactor!: preferences & programs data model merged (#2904) ([8e027ff](https://github.com/bloom-housing/bloom/commit/8e027ff905118f36c61bc0f974231d9bb8911131)), closes [#2904](https://github.com/bloom-housing/bloom/issues/2904) +### BREAKING CHANGES +- The preference and program entities have been merged into a single entity called MultiselectQuestion +## [5.1.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.18...@bloom-housing/partners@5.1.1-alpha.19) (2022-08-23) +**Note:** Version bump only for package @bloom-housing/partners -## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.0...@bloom-housing/partners@4.3.1-alpha.1) (2022-05-24) +## [5.1.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.17...@bloom-housing/partners@5.1.1-alpha.18) (2022-08-22) **Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.16...@bloom-housing/partners@5.1.1-alpha.17) (2022-08-22) +### Bug Fixes +- add a11y linting tools and fix errors ([#2974](https://github.com/bloom-housing/bloom/issues/2974)) ([e583d12](https://github.com/bloom-housing/bloom/commit/e583d1283511c83dd48f48f934be9a7794a67e74)) +## [5.1.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.15...@bloom-housing/partners@5.1.1-alpha.16) (2022-08-18) -## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.34...@bloom-housing/partners@4.3.1-alpha.0) (2022-05-16) +**Note:** Version bump only for package @bloom-housing/partners +## [5.1.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.14...@bloom-housing/partners@5.1.1-alpha.15) (2022-08-18) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/partners -* adds jurisdictionId to useSWR path ([c7d6adb](https://github.com/bloom-housing/bloom/commit/c7d6adba109aa50f3c1556c89c0ec714fd4c6e50)) -* ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([5e18eba](https://github.com/bloom-housing/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) -* cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/bloom-housing/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) -* listings management keep empty strings, remove empty objects ([3aba274](https://github.com/bloom-housing/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) -* listings pending translation for ag grid ([5b42ab0](https://github.com/bloom-housing/bloom/commit/5b42ab006abddc19a0fcc260fbf519c3903e44df)) -* lottery results uploads now save ([8c9dd0f](https://github.com/bloom-housing/bloom/commit/8c9dd0f043dd3835f12bc8f087b9a5519cbfd4f8)) -* paper application submission ([384b86b](https://github.com/bloom-housing/bloom/commit/384b86b624392012b56039dc4a289393f24653f5)) -* remove description for the partners programs ([d4478b8](https://github.com/bloom-housing/bloom/commit/d4478b8eaf68efdf4b23c55f15656e82a907dbc4)) -* removes Duplicate identifier fieldGroupObjectToArray ([a3a2f43](https://github.com/bloom-housing/bloom/commit/a3a2f434606628e4ad141250c401405ced10cdf4)) -* retnal assistance eror message ([09f583b](https://github.com/bloom-housing/bloom/commit/09f583be137336c92f7077beb1f1fbab2b82aefb)) -* updates lastName on application save ([a977ffd](https://github.com/bloom-housing/bloom/commit/a977ffd4b81fbf09122c51ccf066d0a3f3f6544c)) -* versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([c274a29](https://github.com/bloom-housing/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +## [5.1.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.13...@bloom-housing/partners@5.1.1-alpha.14) (2022-08-18) +### Features -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) -* Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) +- **lottery:** add edit lottery results functionality ([#2954](https://github.com/bloom-housing/bloom/issues/2954)) ([e6cb314](https://github.com/bloom-housing/bloom/commit/e6cb314e28a0e80fecbe3e6085737ce4f93eb4ef)) +## [5.1.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.12...@bloom-housing/partners@5.1.1-alpha.13) (2022-08-18) -### Features +**Note:** Version bump only for package @bloom-housing/partners -* adds listing management cypress tests to partner portal ([2e37eec](https://github.com/bloom-housing/bloom/commit/2e37eecf6344f6e25422a24ad7f4563fee4564de)) -* adds updating open listing modal ([#2288](https://github.com/bloom-housing/bloom/issues/2288)) ([d184326](https://github.com/bloom-housing/bloom/commit/d18432610a55a5e54f567ff6157bb863ed61cb21)) -* ami chart jurisdictionalized ([b2e2537](https://github.com/bloom-housing/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) -* filter partner users ([3dd8f9b](https://github.com/bloom-housing/bloom/commit/3dd8f9b3cc1f9f90916d49b7136d5f1f73df5291)) -* new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/bloom-housing/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/bloom-housing/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* overrides partner app website trans ([#2534](https://github.com/bloom-housing/bloom/issues/2534)) ([16c7a4e](https://github.com/bloom-housing/bloom/commit/16c7a4eb8f5ae05dbea9380702c2150a922ca3f0)) -* postmark date time fields partners ([#2239](https://github.com/bloom-housing/bloom/issues/2239)) ([cf20b88](https://github.com/bloom-housing/bloom/commit/cf20b88cb613b815c641cad34a38908e22722a4a)) -* simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/bloom-housing/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) -* temp disable terms and set mfa enabled to false ([#2595](https://github.com/bloom-housing/bloom/issues/2595)) ([6de2dcd](https://github.com/bloom-housing/bloom/commit/6de2dcd8baeb28166d7a6c383846a7ab9a84b0e2)) +## [5.1.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.11...@bloom-housing/partners@5.1.1-alpha.12) (2022-08-18) +### Bug Fixes -### Reverts +- **paperlistform:** adjust padding on add listing form ([#2945](https://github.com/bloom-housing/bloom/issues/2945)) ([b8b8846](https://github.com/bloom-housing/bloom/commit/b8b8846b6bd8c2b3e830dbf471a3a186efd9e773)) -* Revert "chore(release): version" ([47a2c67](https://github.com/bloom-housing/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +## [5.1.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.10...@bloom-housing/partners@5.1.1-alpha.11) (2022-08-16) +**Note:** Version bump only for package @bloom-housing/partners -### BREAKING CHANGES +## [5.1.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.9...@bloom-housing/partners@5.1.1-alpha.10) (2022-08-16) -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.1.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.8...@bloom-housing/partners@5.1.1-alpha.9) (2022-08-16) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.1.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.7...@bloom-housing/partners@5.1.1-alpha.8) (2022-08-16) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +### Features -* chore(release): version +- adds includeDemographics if admin ([#2955](https://github.com/bloom-housing/bloom/issues/2955)) ([173b417](https://github.com/bloom-housing/bloom/commit/173b417dd87335788ba7f8bcd4ab260e96d9e573)) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [5.1.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.6...@bloom-housing/partners@5.1.1-alpha.7) (2022-08-16) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +## [5.1.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.5...@bloom-housing/partners@5.1.1-alpha.6) (2022-08-16) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [5.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.4...@bloom-housing/partners@5.1.1-alpha.5) (2022-08-12) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +## [5.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.3...@bloom-housing/partners@5.1.1-alpha.4) (2022-08-12) -* chore(release): version +### Bug Fixes - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- fix for big timeout on flagged set ([#2946](https://github.com/bloom-housing/bloom/issues/2946)) ([82645b7](https://github.com/bloom-housing/bloom/commit/82645b7593b08ed735b48e6b4e23d669784f6e96)) -* chore(release): version +## [5.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.2...@bloom-housing/partners@5.1.1-alpha.3) (2022-08-03) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.1...@bloom-housing/partners@5.1.1-alpha.2) (2022-08-01) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* preferences model and relationships changed +**Note:** Version bump only for package @bloom-housing/partners -* feat: feat(backend): extend UserUpdateDto to support email change +## [5.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.1.1-alpha.0...@bloom-housing/partners@5.1.1-alpha.1) (2022-08-01) -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +**Note:** Version bump only for package @bloom-housing/partners -* fix: 2056/user account edit fix +## [5.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.39...@bloom-housing/partners@5.1.1-alpha.0) (2022-07-27) -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- 2022-07-26 sync master (#2917) ([6f0dd1d](https://github.com/bloom-housing/bloom/commit/6f0dd1df4d2df12e0e94cb339c9232531a37f2a2)), closes [#2917](https://github.com/bloom-housing/bloom/issues/2917) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* refactor: 2085/adds top level catchAll exception filter +### BREAKING CHANGES -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* feat: feat: Change unit number field type to text +- chore(release): version -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* feat(backend): improve application flagged set saving efficiency +# [5.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@5.0.0...@bloom-housing/partners@5.1.0) (2022-07-27) -* fix: fix: updates address order +### Bug Fixes -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- Add admins into users table ([#2683](https://github.com/seanmalbert/bloom/issues/2683)) ([f1e0972](https://github.com/seanmalbert/bloom/commit/f1e0972838116ed5e76814dff002556de625e2e7)), closes [#2657](https://github.com/seanmalbert/bloom/issues/2657) +- add test id ([d4b0ed2](https://github.com/seanmalbert/bloom/commit/d4b0ed2426b7f8aced3b2dd44baf2a438410838d)) +- added margin bottom to button on mobile in unit modal ([e26b763](https://github.com/seanmalbert/bloom/commit/e26b763b4ec4024f1e90131ee30d5ecbbb8a9daf)) +- added margin bottom to second button in unit modal, only on mobile ([a94f5f2](https://github.com/seanmalbert/bloom/commit/a94f5f2ca5b6687baff5f29dc7294e150cc106f3)) +- ami charts without all households ([#2430](https://github.com/seanmalbert/bloom/issues/2430)) ([92dfbad](https://github.com/seanmalbert/bloom/commit/92dfbad32c90d84ee1ec3a3468c084cb110aa8be)) +- applications drop off address ([d73cdf6](https://github.com/seanmalbert/bloom/commit/d73cdf69fa550bf178a7f433ca9a1bbe2ce678a2)) +- **backend:** nginx with heroku configuration ([#2196](https://github.com/seanmalbert/bloom/issues/2196)) ([a1e2630](https://github.com/seanmalbert/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) +- bump version ([#2349](https://github.com/seanmalbert/bloom/issues/2349)) ([b9e3ba1](https://github.com/seanmalbert/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/seanmalbert/bloom/issues/2350)) ([05863f5](https://github.com/seanmalbert/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- cannot remove some fields in listings management ([#2455](https://github.com/seanmalbert/bloom/issues/2455)) ([acd9b51](https://github.com/seanmalbert/bloom/commit/acd9b51bb49581b4728b445d56c5c0a3c43e2777)) +- cannot save custom mailing, dropoff, or pickup address ([#2207](https://github.com/seanmalbert/bloom/issues/2207)) ([96484b5](https://github.com/seanmalbert/bloom/commit/96484b5676ecb000e492851ee12766ba9e6cd86f)) +- check for empty url before rendering ([#2749](https://github.com/seanmalbert/bloom/issues/2749)) ([dc384de](https://github.com/seanmalbert/bloom/commit/dc384deaee2db64a857fbb257924a40be90266d4)) +- cypress coverage configs ([eec74ee](https://github.com/seanmalbert/bloom/commit/eec74eef138f6af275ae3cfe16262ed215b16907)) +- dates showing as invalid in send by mail section ([#2362](https://github.com/seanmalbert/bloom/issues/2362)) ([3567388](https://github.com/seanmalbert/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +- ensure dayjs parsing strings will work as expected ([eb44939](https://github.com/seanmalbert/bloom/commit/eb449395ebea3a3b4b58eb217df1e1313c722a0d)) +- feedback on the waitlist data and display ([9432542](https://github.com/seanmalbert/bloom/commit/9432542efd9ba2e4bf8dd7195895e75f5d2e0623)) +- helper imports of form types ([e58ed71](https://github.com/seanmalbert/bloom/commit/e58ed71c703a53a7ab4284e6d7e2c1857cb8ed7b)) +- jest tests in partners now allows jsx ([3fef534](https://github.com/seanmalbert/bloom/commit/3fef534925f8fee6a63a2a99def692b59df83bdd)) +- listings pending translation for ag grid ([4016b8f](https://github.com/seanmalbert/bloom/commit/4016b8fcbfb4f6646ef8c76f38a22f916b1b981f)) +- lottery results uploads now save ([#2226](https://github.com/seanmalbert/bloom/issues/2226)) ([8964bba](https://github.com/seanmalbert/bloom/commit/8964bba2deddbd077a049649c26f6fe8b576ed2f)) +- max update depth unit form issue ([#2682](https://github.com/seanmalbert/bloom/issues/2682)) ([57200b6](https://github.com/seanmalbert/bloom/commit/57200b69f3cb0b26965a1735196cb126a2754570)) +- netlify oom build issues ([#2770](https://github.com/seanmalbert/bloom/issues/2770)) ([45b2cb5](https://github.com/seanmalbert/bloom/commit/45b2cb598d50f06d87d96edaad2b49edbb76a05b)) +- open house events can now be edited and work cross-browser ([#2320](https://github.com/seanmalbert/bloom/issues/2320)) ([4af6efd](https://github.com/seanmalbert/bloom/commit/4af6efdd29787a93faf1a314073e2e201584214f)) +- partners render issue ([#2395](https://github.com/seanmalbert/bloom/issues/2395)) ([7fb108d](https://github.com/seanmalbert/bloom/commit/7fb108d744fcafd6b9df42706d2a2f58fbc30f0a)) +- partners shared-helpers version ([50f4a06](https://github.com/seanmalbert/bloom/commit/50f4a0658761b8675064a98f316b2dd35b0d3fe0)) +- partners user lisitngs all checkbox ([#2592](https://github.com/seanmalbert/bloom/issues/2592)) ([47fd4b3](https://github.com/seanmalbert/bloom/commit/47fd4b31dc710ef2ccc28473faefe5f047d614b4)) +- purge listing detail with wildcard ([4fd2137](https://github.com/seanmalbert/bloom/commit/4fd21374c2dc213dfe1b8dde004d41895126c1d6)) +- Remove description for the partners programs ([#2234](https://github.com/seanmalbert/bloom/issues/2234)) ([2bbbeb5](https://github.com/seanmalbert/bloom/commit/2bbbeb52868d8f4b5ee6723018fa34619073017b)), closes [#1901](https://github.com/seanmalbert/bloom/issues/1901) +- remove shared-helpers dependency from ui-components ([#2620](https://github.com/seanmalbert/bloom/issues/2620)) ([cd6ea54](https://github.com/seanmalbert/bloom/commit/cd6ea5450402a9b5d2a8681c403cbfcff6b6b1c9)) +- removed unused partner footer links ([#2590](https://github.com/seanmalbert/bloom/issues/2590)) ([318d42e](https://github.com/seanmalbert/bloom/commit/318d42e01f5374c7cd2d3e7b35a4bb44e3659c94)) +- select programs working with single jurisdiction ([#2598](https://github.com/seanmalbert/bloom/issues/2598)) ([7fec414](https://github.com/seanmalbert/bloom/commit/7fec414c8ede55f16679f2e099f58965773cf5a3)) +- selectAndOrder drag and drop ([#2765](https://github.com/seanmalbert/bloom/issues/2765)) ([301a0eb](https://github.com/seanmalbert/bloom/commit/301a0eb8b6b018b3d664f2b84c3720f4055d452f)) +- sets agreedToTermsOfService properly ([#2635](https://github.com/seanmalbert/bloom/issues/2635)) ([4d405ce](https://github.com/seanmalbert/bloom/commit/4d405ce96fcbc2ffad77277ed0d60a1356630f4d)) +- unit accordion radio button not showing default value ([#2451](https://github.com/seanmalbert/bloom/issues/2451)) ([4ed8103](https://github.com/seanmalbert/bloom/commit/4ed81039b9130d0433b11df2bdabc495ce2b9f24)) +- update naming ([b9c645c](https://github.com/seanmalbert/bloom/commit/b9c645cd1460567f9c35a54c7fd93bc5957d593e)) +- use drag n drop ([a354904](https://github.com/seanmalbert/bloom/commit/a3549045d4f0da64692318f84f0336f1287ad48a)) +- versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([0b1d143](https://github.com/seanmalbert/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) + +### Code Refactoring -* fix: sets programs to optoinal and updates versions +- removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- 2022-07-26 release (#2916) ([af8d3df](https://github.com/seanmalbert/bloom/commit/af8d3dfc1974878cc21500272405ef5046dcfb50)), closes [#2916](https://github.com/seanmalbert/bloom/issues/2916) [#2821](https://github.com/seanmalbert/bloom/issues/2821) [#2764](https://github.com/seanmalbert/bloom/issues/2764) [#2767](https://github.com/seanmalbert/bloom/issues/2767) [#2787](https://github.com/seanmalbert/bloom/issues/2787) [#2769](https://github.com/seanmalbert/bloom/issues/2769) [#2781](https://github.com/seanmalbert/bloom/issues/2781) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2847](https://github.com/seanmalbert/bloom/issues/2847) [#2830](https://github.com/seanmalbert/bloom/issues/2830) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2846](https://github.com/seanmalbert/bloom/issues/2846) [#2851](https://github.com/seanmalbert/bloom/issues/2851) [#2594](https://github.com/seanmalbert/bloom/issues/2594) [#2812](https://github.com/seanmalbert/bloom/issues/2812) [#2799](https://github.com/seanmalbert/bloom/issues/2799) [#2828](https://github.com/seanmalbert/bloom/issues/2828) [#2843](https://github.com/seanmalbert/bloom/issues/2843) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [#2875](https://github.com/seanmalbert/bloom/issues/2875) [#2859](https://github.com/seanmalbert/bloom/issues/2859) [#2848](https://github.com/seanmalbert/bloom/issues/2848) [#2785](https://github.com/seanmalbert/bloom/issues/2785) +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/seanmalbert/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/seanmalbert/bloom/issues/2825) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/seanmalbert/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/seanmalbert/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/seanmalbert/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022 03 28 sync master (#2593) ([580283d](https://github.com/seanmalbert/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +### Features -* fix: adds programs service +- actionable row component ([#2810](https://github.com/seanmalbert/bloom/issues/2810)) ([da10703](https://github.com/seanmalbert/bloom/commit/da107038d05b7efd601af70673666a125293ffef)) +- add accessibility building features to listing ([#2755](https://github.com/seanmalbert/bloom/issues/2755)) ([0c8dfb8](https://github.com/seanmalbert/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +- add settings page to partners ([#2789](https://github.com/seanmalbert/bloom/issues/2789)) ([3869946](https://github.com/seanmalbert/bloom/commit/3869946a016510f53b20854a06c5f32187c4de79)) +- adds partners re-request confirmation ([#2574](https://github.com/seanmalbert/bloom/issues/2574)) ([235af78](https://github.com/seanmalbert/bloom/commit/235af781914e5c36104bb3862dd55152a16e6750)), closes [#2577](https://github.com/seanmalbert/bloom/issues/2577) +- adds updating open listing modal ([#2288](https://github.com/seanmalbert/bloom/issues/2288)) ([4f6945f](https://github.com/seanmalbert/bloom/commit/4f6945f04d797fad1b3140bcdc74b134ea42810a)) +- **backend:** add jurisdiction default rental assistance text ([#2604](https://github.com/seanmalbert/bloom/issues/2604)) ([00b684c](https://github.com/seanmalbert/bloom/commit/00b684cd8b8b1f9ef201b8aec78c13572a4125a5)) +- **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/seanmalbert/bloom/issues/2291)) ([5b10098](https://github.com/seanmalbert/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) +- **backend:** add publishedAt and closedAt to listing entity ([#2432](https://github.com/seanmalbert/bloom/issues/2432)) ([f3b0f86](https://github.com/seanmalbert/bloom/commit/f3b0f864a6d5d2ad3d886e828743454c3e8fca71)) +- **backend:** add user password expiration ([107c2f0](https://github.com/seanmalbert/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) +- **backend:** improve user queries ([#2676](https://github.com/seanmalbert/bloom/issues/2676)) ([4733e8a](https://github.com/seanmalbert/bloom/commit/4733e8a9909e47bb2522f9b319f45fe25923cdb5)) +- **backend:** make listing image an array ([#2477](https://github.com/seanmalbert/bloom/issues/2477)) ([cab9800](https://github.com/seanmalbert/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +- create table card component ([#2781](https://github.com/seanmalbert/bloom/issues/2781)) ([7cb3147](https://github.com/seanmalbert/bloom/commit/7cb31477268733b8b3d51dd77b2e33afb713ffbc)) +- creating setting wall for accessibility feat ([#2817](https://github.com/seanmalbert/bloom/issues/2817)) ([d26cad4](https://github.com/seanmalbert/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) +- filter partner users ([63566f2](https://github.com/seanmalbert/bloom/commit/63566f206b154031a143b649b986aaecd5181313)) +- load overly to partner listings grid ([#2621](https://github.com/seanmalbert/bloom/issues/2621)) ([4785f34](https://github.com/seanmalbert/bloom/commit/4785f344831f97dac2164224e32247619e5ac808)) +- min max occupancy validation in Add Unit ([#2661](https://github.com/seanmalbert/bloom/issues/2661)) ([67a6723](https://github.com/seanmalbert/bloom/commit/67a67231e26ef407808f1e6f9137d60dbb442002)) +- new category table component ([#2648](https://github.com/seanmalbert/bloom/issues/2648)) ([3b3fe46](https://github.com/seanmalbert/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +- outdated password messaging updates ([b14e19d](https://github.com/seanmalbert/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +- overrides fallback to english, tagalog support ([#2262](https://github.com/seanmalbert/bloom/issues/2262)) ([679ab9b](https://github.com/seanmalbert/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +- overrides partner app website trans ([#2534](https://github.com/seanmalbert/bloom/issues/2534)) ([9e09b0b](https://github.com/seanmalbert/bloom/commit/9e09b0bbb3e394c92dcce18bb0cba74db03c49fa)) +- partners terms page ([#2440](https://github.com/seanmalbert/bloom/issues/2440)) ([63105bc](https://github.com/seanmalbert/bloom/commit/63105bcedfe371a4a9995e25b1e5aba67d06ad0c)) +- password reset message ([0cba6e6](https://github.com/seanmalbert/bloom/commit/0cba6e62b45622a430612672daef5c97c1e6b140)) +- refactor ada form fields ([#2612](https://github.com/seanmalbert/bloom/issues/2612)) ([f516f21](https://github.com/seanmalbert/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) +- simplify Waitlist component and use more flexible schema ([96df149](https://github.com/seanmalbert/bloom/commit/96df1496f377ddfa6f0e6c016c84954b6a43ff4a)) +- updates cache clear to separate individual and lists ([#2529](https://github.com/seanmalbert/bloom/issues/2529)) ([1521191](https://github.com/seanmalbert/bloom/commit/15211918b8bf0741ff6a25265b1bf3a60d5678b2)) +- updates to mfa styling ([#2532](https://github.com/seanmalbert/bloom/issues/2532)) ([7654efc](https://github.com/seanmalbert/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) -* fix: fix lisitng e2e tests +### Performance Improvements -* fix: fix member tests +- user list and user getQb ([#2756](https://github.com/seanmalbert/bloom/issues/2756)) ([bc45879](https://github.com/seanmalbert/bloom/commit/bc45879f79934b5a1cf48a4d6a911048906e3184)) +### BREAKING CHANGES +- prop name change for header from "text" to "content" +- chore(release): version +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 -## [4.2.2-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.33...@bloom-housing/partners@4.2.2-alpha.34) (2022-05-13) -## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.2...@bloom-housing/partners@4.2.3) (2022-04-28) -## [4.2.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.32...@bloom-housing/partners@4.2.2-alpha.33) (2022-05-11) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.2.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.32...@bloom-housing/partners@4.2.2-alpha.33) (2022-05-11) +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +- preferences model and relationships changed -**Note:** Version bump only for package @bloom-housing/partners +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [4.2.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.1...@bloom-housing/partners@4.2.2) (2022-04-19) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -### Bug Fixes +- feat: feat: Change unit number field type to text -* listings pending translation for ag grid ([5b42ab0](https://github.com/seanmalbert/bloom/commit/5b42ab006abddc19a0fcc260fbf519c3903e44df)) -## [4.2.2-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.31...@bloom-housing/partners@4.2.2-alpha.32) (2022-05-11) +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -**Note:** Version bump only for package @bloom-housing/partners +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -## [4.2.2-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.30...@bloom-housing/partners@4.2.2-alpha.31) (2022-05-10) +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -**Note:** Version bump only for package @bloom-housing/partners +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update -## [4.2.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.29...@bloom-housing/partners@4.2.2-alpha.30) (2022-05-05) +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -**Note:** Version bump only for package @bloom-housing/partners +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date -## [4.2.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.28...@bloom-housing/partners@4.2.2-alpha.29) (2022-05-04) +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -**Note:** Version bump only for package @bloom-housing/partners +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress -## [4.2.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.27...@bloom-housing/partners@4.2.2-alpha.28) (2022-05-04) +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -**Note:** Version bump only for package @bloom-housing/partners +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal -## [4.2.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.26...@bloom-housing/partners@4.2.2-alpha.27) (2022-05-04) +- fix: listings management keep empty strings, remove empty objects -**Note:** Version bump only for package @bloom-housing/partners +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -## [4.2.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.25...@bloom-housing/partners@4.2.2-alpha.26) (2022-05-04) +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -### Bug Fixes +- feat: adds jurisdictions to pref seeds -* max update depth unit form issue ([#2682](https://github.com/bloom-housing/bloom/issues/2682)) ([57200b6](https://github.com/bloom-housing/bloom/commit/57200b69f3cb0b26965a1735196cb126a2754570)) +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -## [4.2.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.24...@bloom-housing/partners@4.2.2-alpha.25) (2022-05-03) +- fix: add ariaHidden to Icon component -**Note:** Version bump only for package @bloom-housing/partners +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -## [4.2.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.23...@bloom-housing/partners@4.2.2-alpha.24) (2022-04-29) +- fix: remove alameda reference in demographics -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -## [4.2.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.22...@bloom-housing/partners@4.2.2-alpha.23) (2022-04-29) +- refactor: make backend a peer dependency in ui-components -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display -## [4.2.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.21...@bloom-housing/partners@4.2.2-alpha.22) (2022-04-28) +- Revert "chore: removes application program display" -**Note:** Version bump only for package @bloom-housing/partners +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -## [4.2.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.20...@bloom-housing/partners@4.2.2-alpha.21) (2022-04-28) +- feat: skip preferences if not on listing -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version -## [4.2.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.19...@bloom-housing/partners@4.2.2-alpha.20) (2022-04-28) +- feat: simplify Waitlist component and use more flexible schema -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type +- chore(release): version -## [4.2.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.18...@bloom-housing/partners@4.2.2-alpha.19) (2022-04-27) +- fix: paper application submission -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version -## [4.2.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.17...@bloom-housing/partners@4.2.2-alpha.18) (2022-04-26) +- feat: overrides fallback to english, tagalog support -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version -## [4.2.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.16...@bloom-housing/partners@4.2.2-alpha.17) (2022-04-25) +- fix: remove description for the partners programs +- fix: fix modal styles on mobile -### Bug Fixes +- fix: visual improvement to programs form display -* Add admins into users table ([#2683](https://github.com/bloom-housing/bloom/issues/2683)) ([f1e0972](https://github.com/bloom-housing/bloom/commit/f1e0972838116ed5e76814dff002556de625e2e7)), closes [#2657](https://github.com/bloom-housing/bloom/issues/2657) +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.2.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.15...@bloom-housing/partners@4.2.2-alpha.16) (2022-04-22) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/partners +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change -## [4.2.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.14...@bloom-housing/partners@4.2.2-alpha.15) (2022-04-22) +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -**Note:** Version bump only for package @bloom-housing/partners +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text -## [4.2.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.13...@bloom-housing/partners@4.2.2-alpha.14) (2022-04-22) +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -**Note:** Version bump only for package @bloom-housing/partners +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -## [4.2.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.12...@bloom-housing/partners@4.2.2-alpha.13) (2022-04-21) +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service -### Features +- fix: fix lisitng e2e tests -* **backend:** improve user queries ([#2676](https://github.com/bloom-housing/bloom/issues/2676)) ([4733e8a](https://github.com/bloom-housing/bloom/commit/4733e8a9909e47bb2522f9b319f45fe25923cdb5)) +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes -## [4.2.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.11...@bloom-housing/partners@4.2.2-alpha.12) (2022-04-21) +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -### Features +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* min max occupancy validation in Add Unit ([#2661](https://github.com/bloom-housing/bloom/issues/2661)) ([67a6723](https://github.com/bloom-housing/bloom/commit/67a67231e26ef407808f1e6f9137d60dbb442002)) +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string -## [4.2.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.10...@bloom-housing/partners@4.2.2-alpha.11) (2022-04-21) +- fix: preference cleanup for avance +- refactor: remove applicationAddress -### Features +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* new category table component ([#2648](https://github.com/bloom-housing/bloom/issues/2648)) ([3b3fe46](https://github.com/bloom-housing/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -### BREAKING CHANGES +- feat: better seed data for ami-charts -* There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent -## [4.2.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.9...@bloom-housing/partners@4.2.2-alpha.10) (2022-04-20) +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -**Note:** Version bump only for package @bloom-housing/partners +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds -## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.8...@bloom-housing/partners@4.2.2-alpha.9) (2022-04-20) +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -**Note:** Version bump only for package @bloom-housing/partners +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component -## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.7...@bloom-housing/partners@4.2.2-alpha.8) (2022-04-20) +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component -### Features +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* **backend:** add jurisdiction default rental assistance text ([#2604](https://github.com/bloom-housing/bloom/issues/2604)) ([00b684c](https://github.com/bloom-housing/bloom/commit/00b684cd8b8b1f9ef201b8aec78c13572a4125a5)) +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version -## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.6...@bloom-housing/partners@4.2.2-alpha.7) (2022-04-20) +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -**Note:** Version bump only for package @bloom-housing/partners +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table -## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.5...@bloom-housing/partners@4.2.2-alpha.6) (2022-04-19) +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -**Note:** Version bump only for package @bloom-housing/partners +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" -## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.4...@bloom-housing/partners@4.2.2-alpha.5) (2022-04-18) +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -**Note:** Version bump only for package @bloom-housing/partners +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address -## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.3...@bloom-housing/partners@4.2.2-alpha.4) (2022-04-18) +- chore(release): version +- chore: converge on one axios version, remove peer dependency -### Features +- chore(release): version -* refactor ada form fields ([#2612](https://github.com/bloom-housing/bloom/issues/2612)) ([f516f21](https://github.com/bloom-housing/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type -## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.2...@bloom-housing/partners@4.2.2-alpha.3) (2022-04-14) +- chore(release): version +- fix: paper application submission -### Bug Fixes +- chore(release): version -* listings pending translation for ag grid ([4016b8f](https://github.com/bloom-housing/bloom/commit/4016b8fcbfb4f6646ef8c76f38a22f916b1b981f)) +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support -## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.1...@bloom-housing/partners@4.2.2-alpha.2) (2022-04-14) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/partners +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs -## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.0...@bloom-housing/partners@4.2.2-alpha.1) (2022-04-13) +- fix: fix modal styles on mobile -**Note:** Version bump only for package @bloom-housing/partners +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.5...@bloom-housing/partners@4.2.2-alpha.0) (2022-04-13) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger +- chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray +- fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing +- feat: skip preferences if not on listing -* chore(release): version +- chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +- fix: cannot save custom mailing, dropoff, or pickup address -* chore(release): version +- chore(release): version -* chore: converge on one axios version, remove peer dependency +- chore: converge on one axios version, remove peer dependency -* chore(release): version +- chore(release): version -* feat: simplify Waitlist component and use more flexible schema +- feat: simplify Waitlist component and use more flexible schema -* chore(release): version +- chore(release): version -* fix: lottery results uploads now save +- fix: lottery results uploads now save + +- chore(release): version + +- feat: add SRO unit type + +- chore(release): version + +- fix: paper application submission + +- chore(release): version + +- fix: choose-language context + +- chore(release): version + +- fix: applications/view hide prefs + +- chore(release): version + +- feat: overrides fallback to english, tagalog support + +- chore(release): version + +- fix: account translations + +- chore(release): version + +- fix: units with invalid ami chart + +- chore(release): version + +- fix: remove description for the partners programs + +- fix: fix modal styles on mobile + +- fix: visual improvement to programs form display + +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- remove applicationDueTime field and consolidated into applicationDueDate +- moved some helpers from ui-components to shared-helpers +- sign-in pages have been updated + +## [5.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.38...@bloom-housing/partners@5.0.1-alpha.39) (2022-07-27) + +**Note:** Version bump only for package @bloom-housing/partners + +## [5.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.37...@bloom-housing/partners@5.0.1-alpha.38) (2022-07-27) + +### Bug Fixes + +- fix password confirmation validation in the reset password form ([23064fe](https://github.com/bloom-housing/bloom/commit/23064fe8135ee9f531bac41b1b1f7e0ce771905a)) + +## [5.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.36...@bloom-housing/partners@5.0.1-alpha.37) (2022-07-26) + +**Note:** Version bump only for package @bloom-housing/partners + +## [5.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.35...@bloom-housing/partners@5.0.1-alpha.36) (2022-07-26) + +**Note:** Version bump only for package @bloom-housing/partners + +## [5.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.34...@bloom-housing/partners@5.0.1-alpha.35) (2022-07-26) + +**Note:** Version bump only for package @bloom-housing/partners + +## [5.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.33...@bloom-housing/partners@5.0.1-alpha.34) (2022-07-26) + +**Note:** Version bump only for package @bloom-housing/partners + +## [5.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.32...@bloom-housing/partners@5.0.1-alpha.33) (2022-07-26) + +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.31...@bloom-housing/partners@5.0.1-alpha.32) (2022-07-22) -* feat: add SRO unit type +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.30...@bloom-housing/partners@5.0.1-alpha.31) (2022-07-20) -* fix: paper application submission +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.29...@bloom-housing/partners@5.0.1-alpha.30) (2022-07-20) -* fix: choose-language context +### Features -* chore(release): version +- creating users as juris admin ([#2863](https://github.com/bloom-housing/bloom/issues/2863)) ([bc0aede](https://github.com/bloom-housing/bloom/commit/bc0aede7c622d3ffe4c2aa0f0ce7826bc97af9bf)) -* fix: applications/view hide prefs +## [5.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.28...@bloom-housing/partners@5.0.1-alpha.29) (2022-07-20) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners -* feat: overrides fallback to english, tagalog support +## [5.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.27...@bloom-housing/partners@5.0.1-alpha.28) (2022-07-20) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners -* fix: account translations +## [5.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.26...@bloom-housing/partners@5.0.1-alpha.27) (2022-07-19) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners -* fix: units with invalid ami chart +## [5.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.25...@bloom-housing/partners@5.0.1-alpha.26) (2022-07-19) -* chore(release): version +### Features -* fix: remove description for the partners programs +- visuals for add preference, preference option drawers ([#2877](https://github.com/bloom-housing/bloom/issues/2877)) ([8611034](https://github.com/bloom-housing/bloom/commit/8611034845b45ce4d4e4eb44e790ac2adec0ba94)) -* fix: fix modal styles on mobile +## [5.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.24...@bloom-housing/partners@5.0.1-alpha.25) (2022-07-15) -* fix: visual improvement to programs form display +### Features -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- creating users as admin ([#2856](https://github.com/bloom-housing/bloom/issues/2856)) ([dd946d1](https://github.com/bloom-housing/bloom/commit/dd946d1777b4678e89832da527768180f474d129)) -* chore(release): version +## [5.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.23...@bloom-housing/partners@5.0.1-alpha.24) (2022-07-13) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.22...@bloom-housing/partners@5.0.1-alpha.23) (2022-07-13) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +**Note:** Version bump only for package @bloom-housing/partners -* chore(release): version +## [5.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.21...@bloom-housing/partners@5.0.1-alpha.22) (2022-07-12) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +### Features +- modal styling updates ([#2857](https://github.com/bloom-housing/bloom/issues/2857)) ([4faf6de](https://github.com/bloom-housing/bloom/commit/4faf6de448a7fff8d4fa1a7a1144674ace311732)) +## [5.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.20...@bloom-housing/partners@5.0.1-alpha.21) (2022-07-12) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.19...@bloom-housing/partners@5.0.1-alpha.20) (2022-07-12) -## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.0...@bloom-housing/partners@4.2.1) (2022-04-11) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.18...@bloom-housing/partners@5.0.1-alpha.19) (2022-07-12) -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.17...@bloom-housing/partners@5.0.1-alpha.18) (2022-07-11) -### BREAKING CHANGES +**Note:** Version bump only for package @bloom-housing/partners -* remove applicationDueTime field and consolidated into applicationDueDate +## [5.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.16...@bloom-housing/partners@5.0.1-alpha.17) (2022-07-11) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [5.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.15...@bloom-housing/partners@5.0.1-alpha.16) (2022-07-11) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +## [5.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.14...@bloom-housing/partners@5.0.1-alpha.15) (2022-07-08) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.13...@bloom-housing/partners@5.0.1-alpha.14) (2022-07-07) +### Features +- populate jurisdictional preferences on settings page ([#2828](https://github.com/bloom-housing/bloom/issues/2828)) ([2ea5646](https://github.com/bloom-housing/bloom/commit/2ea5646a49dc6782fe0e83e942e1917929fde153)) -## [4.2.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.4...@bloom-housing/partners@4.2.1-alpha.5) (2022-04-13) +## [5.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.12...@bloom-housing/partners@5.0.1-alpha.13) (2022-07-06) **Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.11...@bloom-housing/partners@5.0.1-alpha.12) (2022-07-06) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.10...@bloom-housing/partners@5.0.1-alpha.11) (2022-07-02) +**Note:** Version bump only for package @bloom-housing/partners -## [4.2.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.3...@bloom-housing/partners@4.2.1-alpha.4) (2022-04-08) +## [5.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.9...@bloom-housing/partners@5.0.1-alpha.10) (2022-06-29) **Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.8...@bloom-housing/partners@5.0.1-alpha.9) (2022-06-29) + +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.7...@bloom-housing/partners@5.0.1-alpha.8) (2022-06-28) +### Bug Fixes +- use lottery date in confirmation screen ([#2847](https://github.com/bloom-housing/bloom/issues/2847)) ([e4e9a7b](https://github.com/bloom-housing/bloom/commit/e4e9a7b0cb25abc4e412595e4c96c31f2fa857e0)) -## [4.2.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.2...@bloom-housing/partners@4.2.1-alpha.3) (2022-04-07) +## [5.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.6...@bloom-housing/partners@5.0.1-alpha.7) (2022-06-27) **Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.5...@bloom-housing/partners@5.0.1-alpha.6) (2022-06-23) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.4...@bloom-housing/partners@5.0.1-alpha.5) (2022-06-23) +**Note:** Version bump only for package @bloom-housing/partners -## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.1...@bloom-housing/partners@4.2.1-alpha.2) (2022-04-07) +## [5.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.3...@bloom-housing/partners@5.0.1-alpha.4) (2022-06-23) +**Note:** Version bump only for package @bloom-housing/partners -### Bug Fixes +## [5.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.2...@bloom-housing/partners@5.0.1-alpha.3) (2022-06-22) -* sets agreedToTermsOfService properly ([#2635](https://github.com/bloom-housing/bloom/issues/2635)) ([4d405ce](https://github.com/bloom-housing/bloom/commit/4d405ce96fcbc2ffad77277ed0d60a1356630f4d)) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.1...@bloom-housing/partners@5.0.1-alpha.2) (2022-06-21) +**Note:** Version bump only for package @bloom-housing/partners +## [5.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@5.0.1-alpha.0...@bloom-housing/partners@5.0.1-alpha.1) (2022-06-17) +**Note:** Version bump only for package @bloom-housing/partners -## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.0...@bloom-housing/partners@4.2.1-alpha.1) (2022-04-07) +## [5.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.32...@bloom-housing/partners@5.0.1-alpha.0) (2022-06-16) -**Note:** Version bump only for package @bloom-housing/partners +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/bloom-housing/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/bloom-housing/bloom/issues/2825) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.7...@bloom-housing/partners@4.2.1-alpha.0) (2022-04-06) +# [5.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.4.0...@bloom-housing/partners@5.0.0) (2022-06-16) +- 2022-06-16 release (#2824) ([1abd991](https://github.com/seanmalbert/bloom/commit/1abd991136e28598b7856164b88bef462b8ff566)), closes [#2824](https://github.com/seanmalbert/bloom/issues/2824) [#2521](https://github.com/seanmalbert/bloom/issues/2521) [#2504](https://github.com/seanmalbert/bloom/issues/2504) [#2520](https://github.com/seanmalbert/bloom/issues/2520) [#2517](https://github.com/seanmalbert/bloom/issues/2517) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2529](https://github.com/seanmalbert/bloom/issues/2529) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2540](https://github.com/seanmalbert/bloom/issues/2540) [#2528](https://github.com/seanmalbert/bloom/issues/2528) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2545](https://github.com/seanmalbert/bloom/issues/2545) [#2526](https://github.com/seanmalbert/bloom/issues/2526) [#2532](https://github.com/seanmalbert/bloom/issues/2532) [#2551](https://github.com/seanmalbert/bloom/issues/2551) [#2562](https://github.com/seanmalbert/bloom/issues/2562) [#2566](https://github.com/seanmalbert/bloom/issues/2566) [#2572](https://github.com/seanmalbert/bloom/issues/2572) [#2546](https://github.com/seanmalbert/bloom/issues/2546) [#2578](https://github.com/seanmalbert/bloom/issues/2578) [#2579](https://github.com/seanmalbert/bloom/issues/2579) [#2581](https://github.com/seanmalbert/bloom/issues/2581) [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2574](https://github.com/seanmalbert/bloom/issues/2574) [#2577](https://github.com/seanmalbert/bloom/issues/2577) [#2590](https://github.com/seanmalbert/bloom/issues/2590) [#2592](https://github.com/seanmalbert/bloom/issues/2592) [#2560](https://github.com/seanmalbert/bloom/issues/2560) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2599](https://github.com/seanmalbert/bloom/issues/2599) [#2600](https://github.com/seanmalbert/bloom/issues/2600) [#2598](https://github.com/seanmalbert/bloom/issues/2598) [#2582](https://github.com/seanmalbert/bloom/issues/2582) [#2531](https://github.com/seanmalbert/bloom/issues/2531) [#2615](https://github.com/seanmalbert/bloom/issues/2615) [#2606](https://github.com/seanmalbert/bloom/issues/2606) [#2618](https://github.com/seanmalbert/bloom/issues/2618) [#2620](https://github.com/seanmalbert/bloom/issues/2620) [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2563](https://github.com/seanmalbert/bloom/issues/2563) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2635](https://github.com/seanmalbert/bloom/issues/2635) [#2624](https://github.com/seanmalbert/bloom/issues/2624) [#2642](https://github.com/seanmalbert/bloom/issues/2642) [#2652](https://github.com/seanmalbert/bloom/issues/2652) [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2658](https://github.com/seanmalbert/bloom/issues/2658) [#2653](https://github.com/seanmalbert/bloom/issues/2653) [#2630](https://github.com/seanmalbert/bloom/issues/2630) [#2612](https://github.com/seanmalbert/bloom/issues/2612) [#2672](https://github.com/seanmalbert/bloom/issues/2672) [#2558](https://github.com/seanmalbert/bloom/issues/2558) [#2604](https://github.com/seanmalbert/bloom/issues/2604) [#2625](https://github.com/seanmalbert/bloom/issues/2625) [#2650](https://github.com/seanmalbert/bloom/issues/2650) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2603](https://github.com/seanmalbert/bloom/issues/2603) [#2648](https://github.com/seanmalbert/bloom/issues/2648) [#2673](https://github.com/seanmalbert/bloom/issues/2673) [#2661](https://github.com/seanmalbert/bloom/issues/2661) [#2676](https://github.com/seanmalbert/bloom/issues/2676) [#2680](https://github.com/seanmalbert/bloom/issues/2680) [#2597](https://github.com/seanmalbert/bloom/issues/2597) [#2686](https://github.com/seanmalbert/bloom/issues/2686) [#2683](https://github.com/seanmalbert/bloom/issues/2683) [#2657](https://github.com/seanmalbert/bloom/issues/2657) [#2693](https://github.com/seanmalbert/bloom/issues/2693) [#2694](https://github.com/seanmalbert/bloom/issues/2694) [#2616](https://github.com/seanmalbert/bloom/issues/2616) [#2703](https://github.com/seanmalbert/bloom/issues/2703) [#2697](https://github.com/seanmalbert/bloom/issues/2697) [#2691](https://github.com/seanmalbert/bloom/issues/2691) [#2687](https://github.com/seanmalbert/bloom/issues/2687) [#2700](https://github.com/seanmalbert/bloom/issues/2700) [#2677](https://github.com/seanmalbert/bloom/issues/2677) [#2682](https://github.com/seanmalbert/bloom/issues/2682) [#2689](https://github.com/seanmalbert/bloom/issues/2689) [#2675](https://github.com/seanmalbert/bloom/issues/2675) [#2713](https://github.com/seanmalbert/bloom/issues/2713) [#2702](https://github.com/seanmalbert/bloom/issues/2702) [#2704](https://github.com/seanmalbert/bloom/issues/2704) [#2719](https://github.com/seanmalbert/bloom/issues/2719) [#2714](https://github.com/seanmalbert/bloom/issues/2714) [#2543](https://github.com/seanmalbert/bloom/issues/2543) [#2728](https://github.com/seanmalbert/bloom/issues/2728) [#2692](https://github.com/seanmalbert/bloom/issues/2692) [#2732](https://github.com/seanmalbert/bloom/issues/2732) [#2749](https://github.com/seanmalbert/bloom/issues/2749) [#2744](https://github.com/seanmalbert/bloom/issues/2744) [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -* 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### Performance Improvements +- user list and user getQb ([#2756](https://github.com/seanmalbert/bloom/issues/2756)) ([cd02be3](https://github.com/seanmalbert/bloom/commit/cd02be32f10560978a786abaf752ace7c32f5b0e)) ### BREAKING CHANGES -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger +- chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray +- fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing +- feat: skip preferences if not on listing -* chore(release): version +- chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +- fix: cannot save custom mailing, dropoff, or pickup address -* chore(release): version +- chore(release): version -* chore: converge on one axios version, remove peer dependency +- chore: converge on one axios version, remove peer dependency -* chore(release): version +- chore(release): version -* feat: simplify Waitlist component and use more flexible schema +- feat: simplify Waitlist component and use more flexible schema -* chore(release): version +- chore(release): version -* fix: lottery results uploads now save +- fix: lottery results uploads now save -* chore(release): version +- chore(release): version -* feat: add SRO unit type +- feat: add SRO unit type -* chore(release): version +- chore(release): version -* fix: paper application submission +- fix: paper application submission -* chore(release): version +- chore(release): version -* fix: choose-language context +- fix: choose-language context -* chore(release): version +- chore(release): version -* fix: applications/view hide prefs +- fix: applications/view hide prefs -* chore(release): version +- chore(release): version -* feat: overrides fallback to english, tagalog support +- feat: overrides fallback to english, tagalog support -* chore(release): version +- chore(release): version -* fix: account translations +- fix: account translations -* chore(release): version +- chore(release): version -* fix: units with invalid ami chart +- fix: units with invalid ami chart -* chore(release): version +- chore(release): version -* fix: remove description for the partners programs +- fix: remove description for the partners programs -* fix: fix modal styles on mobile +- fix: fix modal styles on mobile -* fix: visual improvement to programs form display +- fix: visual improvement to programs form display -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* chore(release): version +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -* chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change -# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.1.2...@bloom-housing/partners@4.2.0) (2022-04-06) +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix -* 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -### BREAKING CHANGES +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* remove applicationDueTime field and consolidated into applicationDueDate +- feat: feat: Change unit number field type to text -* chore(release): version +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- feat(backend): improve application flagged set saving efficiency -* chore(release): version +- fix: fix: updates address order - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 + +- fix: sets programs to optoinal and updates versions + +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore(release): version +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- fix: adds programs service -* chore(release): version +- fix: fix lisitng e2e tests - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes -## [4.1.3-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.6...@bloom-housing/partners@4.1.3-alpha.7) (2022-04-05) +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -### Bug Fixes +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* remove shared-helpers dependency from ui-components ([#2620](https://github.com/bloom-housing/bloom/issues/2620)) ([cd6ea54](https://github.com/bloom-housing/bloom/commit/cd6ea5450402a9b5d2a8681c403cbfcff6b6b1c9)) +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string -## [4.1.3-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.5...@bloom-housing/partners@4.1.3-alpha.6) (2022-04-05) +- fix: preference cleanup for avance -**Note:** Version bump only for package @bloom-housing/partners +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts -## [4.1.3-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.4...@bloom-housing/partners@4.1.3-alpha.5) (2022-04-04) +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -**Note:** Version bump only for package @bloom-housing/partners +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -## [4.1.3-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.3...@bloom-housing/partners@4.1.3-alpha.4) (2022-04-04) +- test: view.spec.ts test -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -## [4.1.3-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.2...@bloom-housing/partners@4.1.3-alpha.3) (2022-04-04) +- feat: new demographics sub-race questions -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -## [4.1.3-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.1...@bloom-housing/partners@4.1.3-alpha.2) (2022-03-31) +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -### Bug Fixes +- fix: change the yes/no radio text to be more descriptive -* select programs working with single jurisdiction ([#2598](https://github.com/bloom-housing/bloom/issues/2598)) ([7fec414](https://github.com/bloom-housing/bloom/commit/7fec414c8ede55f16679f2e099f58965773cf5a3)) +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.0...@bloom-housing/partners@4.1.3-alpha.1) (2022-03-30) +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -### Bug Fixes +- refactor: make backend a peer dependency in ui-components -* added margin bottom to button on mobile in unit modal ([e26b763](https://github.com/bloom-housing/bloom/commit/e26b763b4ec4024f1e90131ee30d5ecbbb8a9daf)) -* added margin bottom to second button in unit modal, only on mobile ([a94f5f2](https://github.com/bloom-housing/bloom/commit/a94f5f2ca5b6687baff5f29dc7294e150cc106f3)) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display -## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.3...@bloom-housing/partners@4.1.3-alpha.0) (2022-03-30) +- Revert "chore: removes application program display" -**Note:** Version bump only for package @bloom-housing/partners +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.1.1...@bloom-housing/partners@4.1.2) (2022-03-29) +- feat: skip preferences if not on listing +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency -## [4.1.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.2...@bloom-housing/partners@4.1.2-alpha.3) (2022-03-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/partners +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type -## [4.1.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.1...@bloom-housing/partners@4.1.2-alpha.2) (2022-03-29) +- chore(release): version +- fix: paper application submission -### Bug Fixes +- chore(release): version -* partners user lisitngs all checkbox ([#2592](https://github.com/bloom-housing/bloom/issues/2592)) ([47fd4b3](https://github.com/bloom-housing/bloom/commit/47fd4b31dc710ef2ccc28473faefe5f047d614b4)) -* removed unused partner footer links ([#2590](https://github.com/bloom-housing/bloom/issues/2590)) ([318d42e](https://github.com/bloom-housing/bloom/commit/318d42e01f5374c7cd2d3e7b35a4bb44e3659c94)) +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support -## [4.1.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.0...@bloom-housing/partners@4.1.2-alpha.1) (2022-03-28) +- chore(release): version +- fix: account translations -### Features +- chore(release): version -* adds partners re-request confirmation ([#2574](https://github.com/bloom-housing/bloom/issues/2574)) ([235af78](https://github.com/bloom-housing/bloom/commit/235af781914e5c36104bb3862dd55152a16e6750)), closes [#2577](https://github.com/bloom-housing/bloom/issues/2577) +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs +- fix: fix modal styles on mobile +- fix: visual improvement to programs form display -## [4.1.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.5...@bloom-housing/partners@4.1.2-alpha.0) (2022-03-28) +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -* 2022 03 28 sync master (#2593) ([580283d](https://github.com/bloom-housing/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/bloom-housing/bloom/issues/2593) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -### BREAKING CHANGES +- chore(release): version -* preferences model and relationships changed +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* feat: feat(backend): extend UserUpdateDto to support email change +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- preferences model and relationships changed + +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray +- chore: yarn.lock and backend-swagger -* feat: skip preferences if not on listing +- fix: removes Duplicate identifier fieldGroupObjectToArray -* chore(release): version +- feat: skip preferences if not on listing -* fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version -* chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address -* chore: converge on one axios version, remove peer dependency +- chore(release): version -* chore(release): version +- chore: converge on one axios version, remove peer dependency -* feat: simplify Waitlist component and use more flexible schema +- chore(release): version -* chore(release): version +- feat: simplify Waitlist component and use more flexible schema -* fix: lottery results uploads now save +- chore(release): version -* chore(release): version +- fix: lottery results uploads now save -* feat: add SRO unit type +- chore(release): version -* chore(release): version +- feat: add SRO unit type -* fix: paper application submission +- chore(release): version -* chore(release): version +- fix: paper application submission -* fix: choose-language context +- chore(release): version -* chore(release): version +- fix: choose-language context -* fix: applications/view hide prefs +- chore(release): version -* chore(release): version +- fix: applications/view hide prefs -* feat: overrides fallback to english, tagalog support +- chore(release): version -* chore(release): version +- feat: overrides fallback to english, tagalog support -* fix: account translations +- chore(release): version -* chore(release): version +- fix: account translations -* fix: units with invalid ami chart +- chore(release): version -* chore(release): version +- fix: units with invalid ami chart -* fix: remove description for the partners programs +- chore(release): version -* fix: fix modal styles on mobile +- fix: remove description for the partners programs -* fix: visual improvement to programs form display +- fix: fix modal styles on mobile -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: visual improvement to programs form display -* chore(release): version +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -* chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. -## [4.1.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.1.0...@bloom-housing/partners@4.1.1) (2022-03-28) +- chore(release): version +* @bloom-housing/shared-helpers@4.2.2-alpha.10 +* @bloom-housing/partners@4.2.2-alpha.11 +* @bloom-housing/public@4.2.2-alpha.11 +* @bloom-housing/ui-components@4.2.2-alpha.10 +- the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings +- chore(release): version +* @bloom-housing/shared-helpers@4.2.2-alpha.23 +* @bloom-housing/partners@4.2.2-alpha.27 +* @bloom-housing/public@4.2.2-alpha.26 +* @bloom-housing/ui-components@4.2.2-alpha.23 -## [4.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.4...@bloom-housing/partners@4.1.1-alpha.5) (2022-03-28) +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +* @bloom-housing/shared-helpers@4.2.2-alpha.24 +* @bloom-housing/partners@4.2.2-alpha.28 +* @bloom-housing/public@4.2.2-alpha.27 +* @bloom-housing/ui-components@4.2.2-alpha.24 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.3...@bloom-housing/partners@4.1.1-alpha.4) (2022-03-25) +## [4.4.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.31...@bloom-housing/partners@4.4.1-alpha.32) (2022-06-16) -**Note:** Version bump only for package @bloom-housing/partners +### Features +- creating setting wall for accessibility feat ([#2817](https://github.com/bloom-housing/bloom/issues/2817)) ([d26cad4](https://github.com/bloom-housing/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) +## [4.4.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.30...@bloom-housing/partners@4.4.1-alpha.31) (2022-06-14) +### Features +- actionable row component ([#2810](https://github.com/bloom-housing/bloom/issues/2810)) ([da10703](https://github.com/bloom-housing/bloom/commit/da107038d05b7efd601af70673666a125293ffef)) -## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.2...@bloom-housing/partners@4.1.1-alpha.3) (2022-03-22) +## [4.4.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.29...@bloom-housing/partners@4.4.1-alpha.30) (2022-06-13) **Note:** Version bump only for package @bloom-housing/partners - - - - -## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.1...@bloom-housing/partners@4.1.1-alpha.2) (2022-03-16) +## [4.4.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.28...@bloom-housing/partners@4.4.1-alpha.29) (2022-06-13) **Note:** Version bump only for package @bloom-housing/partners - - - - -## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.0...@bloom-housing/partners@4.1.1-alpha.1) (2022-03-10) +## [4.4.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.27...@bloom-housing/partners@4.4.1-alpha.28) (2022-06-13) **Note:** Version bump only for package @bloom-housing/partners - - - - -## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.87...@bloom-housing/partners@4.1.1-alpha.0) (2022-03-02) +## [4.4.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.26...@bloom-housing/partners@4.4.1-alpha.27) (2022-06-10) **Note:** Version bump only for package @bloom-housing/partners - - - - -## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.1-alpha.87...@bloom-housing/partners@4.0.1) (2022-03-02) +## [4.4.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.25...@bloom-housing/partners@4.4.1-alpha.26) (2022-06-10) **Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.24...@bloom-housing/partners@4.4.1-alpha.25) (2022-06-09) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.23...@bloom-housing/partners@4.4.1-alpha.24) (2022-06-09) +### Features -# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.3...@bloom-housing/partners@4.1.0) (2022-03-02) +- add settings page to partners ([#2789](https://github.com/bloom-housing/bloom/issues/2789)) ([3869946](https://github.com/bloom-housing/bloom/commit/3869946a016510f53b20854a06c5f32187c4de79)) +## [4.4.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.22...@bloom-housing/partners@4.4.1-alpha.23) (2022-06-09) -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.21...@bloom-housing/partners@4.4.1-alpha.22) (2022-06-09) -### BREAKING CHANGES +**Note:** Version bump only for package @bloom-housing/partners -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +## [4.4.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.20...@bloom-housing/partners@4.4.1-alpha.21) (2022-06-08) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [4.4.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.19...@bloom-housing/partners@4.4.1-alpha.20) (2022-06-08) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/partners - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.4.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.18...@bloom-housing/partners@4.4.1-alpha.19) (2022-06-07) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.17...@bloom-housing/partners@4.4.1-alpha.18) (2022-06-07) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.16...@bloom-housing/partners@4.4.1-alpha.17) (2022-06-07) -## [4.0.1-alpha.87](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.86...@bloom-housing/partners@4.0.1-alpha.87) (2022-02-28) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.15...@bloom-housing/partners@4.4.1-alpha.16) (2022-06-06) ### Features -* updates to mfa styling ([#2532](https://github.com/bloom-housing/bloom/issues/2532)) ([7654efc](https://github.com/bloom-housing/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) - - +- create table card component ([#2781](https://github.com/bloom-housing/bloom/issues/2781)) ([7cb3147](https://github.com/bloom-housing/bloom/commit/7cb31477268733b8b3d51dd77b2e33afb713ffbc)) - - -## [4.0.1-alpha.86](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.85...@bloom-housing/partners@4.0.1-alpha.86) (2022-02-28) +## [4.4.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.14...@bloom-housing/partners@4.4.1-alpha.15) (2022-06-04) **Note:** Version bump only for package @bloom-housing/partners - - - - -## [4.0.1-alpha.85](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.84...@bloom-housing/partners@4.0.1-alpha.85) (2022-02-26) +## [4.4.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.13...@bloom-housing/partners@4.4.1-alpha.14) (2022-06-03) **Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.12...@bloom-housing/partners@4.4.1-alpha.13) (2022-06-02) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.11...@bloom-housing/partners@4.4.1-alpha.12) (2022-06-01) +### Features -## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.2...@bloom-housing/partners@4.0.3) (2022-02-25) - -## Features - -* overrides partner app website trans ([#2534](https://github.com/seanmalbert/bloom/issues/2534)) ([16c7a4e](https://github.com/seanmalbert/bloom/commit/16c7a4eb8f5ae05dbea9380702c2150a922ca3f0)) - - +- add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.10...@bloom-housing/partners@4.4.1-alpha.11) (2022-05-31) +### Bug Fixes -## [4.0.1-alpha.84](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.83...@bloom-housing/partners@4.0.1-alpha.84) (2022-02-25) +- netlify oom build issues ([#2770](https://github.com/bloom-housing/bloom/issues/2770)) ([45b2cb5](https://github.com/bloom-housing/bloom/commit/45b2cb598d50f06d87d96edaad2b49edbb76a05b)) -**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.9...@bloom-housing/partners@4.4.1-alpha.10) (2022-05-31) +### Features +- load overly to partner listings grid ([#2621](https://github.com/bloom-housing/bloom/issues/2621)) ([4785f34](https://github.com/bloom-housing/bloom/commit/4785f344831f97dac2164224e32247619e5ac808)) +## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.8...@bloom-housing/partners@4.4.1-alpha.9) (2022-05-31) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.83](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.82...@bloom-housing/partners@4.0.1-alpha.83) (2022-02-25) +## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.7...@bloom-housing/partners@4.4.1-alpha.8) (2022-05-31) **Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.6...@bloom-housing/partners@4.4.1-alpha.7) (2022-05-26) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.5...@bloom-housing/partners@4.4.1-alpha.6) (2022-05-26) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.82](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.81...@bloom-housing/partners@4.0.1-alpha.82) (2022-02-24) +## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.4...@bloom-housing/partners@4.4.1-alpha.5) (2022-05-26) +### Bug Fixes -### Features +- selectAndOrder drag and drop ([#2765](https://github.com/bloom-housing/bloom/issues/2765)) ([301a0eb](https://github.com/bloom-housing/bloom/commit/301a0eb8b6b018b3d664f2b84c3720f4055d452f)) -* overrides partner app website trans ([#2534](https://github.com/bloom-housing/bloom/issues/2534)) ([9e09b0b](https://github.com/bloom-housing/bloom/commit/9e09b0bbb3e394c92dcce18bb0cba74db03c49fa)) +## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.3...@bloom-housing/partners@4.4.1-alpha.4) (2022-05-26) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.2...@bloom-housing/partners@4.4.1-alpha.3) (2022-05-25) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.1...@bloom-housing/partners@4.4.1-alpha.2) (2022-05-25) -## [4.0.1-alpha.81](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.80...@bloom-housing/partners@4.0.1-alpha.81) (2022-02-22) +**Note:** Version bump only for package @bloom-housing/partners +## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.4.1-alpha.0...@bloom-housing/partners@4.4.1-alpha.1) (2022-05-25) -### Bug Fixes +### Performance Improvements -* purge listing detail with wildcard ([4fd2137](https://github.com/bloom-housing/bloom/commit/4fd21374c2dc213dfe1b8dde004d41895126c1d6)) +- user list and user getQb ([#2756](https://github.com/bloom-housing/bloom/issues/2756)) ([bc45879](https://github.com/bloom-housing/bloom/commit/bc45879f79934b5a1cf48a4d6a911048906e3184)) +## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.3...@bloom-housing/partners@4.4.1-alpha.0) (2022-05-25) +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -## [4.0.1-alpha.80](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.79...@bloom-housing/partners@4.0.1-alpha.80) (2022-02-22) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -### Features +# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.3...@bloom-housing/partners@4.4.0) (2022-05-24) -* updates cache clear to separate individual and lists ([#2529](https://github.com/bloom-housing/bloom/issues/2529)) ([1521191](https://github.com/bloom-housing/bloom/commit/15211918b8bf0741ff6a25265b1bf3a60d5678b2)) +- 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.0.1-alpha.79](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.78...@bloom-housing/partners@4.0.1-alpha.79) (2022-02-22) +## [4.3.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.2...@bloom-housing/partners@4.3.1-alpha.3) (2022-05-24) **Note:** Version bump only for package @bloom-housing/partners +## [4.3.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.1...@bloom-housing/partners@4.3.1-alpha.2) (2022-05-24) +### Bug Fixes +- check for empty url before rendering ([#2749](https://github.com/bloom-housing/bloom/issues/2749)) ([dc384de](https://github.com/bloom-housing/bloom/commit/dc384deaee2db64a857fbb257924a40be90266d4)) - -## [4.0.1-alpha.78](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.77...@bloom-housing/partners@4.0.1-alpha.78) (2022-02-18) +## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.3.1-alpha.0...@bloom-housing/partners@4.3.1-alpha.1) (2022-05-24) **Note:** Version bump only for package @bloom-housing/partners +## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.34...@bloom-housing/partners@4.3.1-alpha.0) (2022-05-16) +### Bug Fixes +- adds jurisdictionId to useSWR path ([c7d6adb](https://github.com/bloom-housing/bloom/commit/c7d6adba109aa50f3c1556c89c0ec714fd4c6e50)) +- ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([5e18eba](https://github.com/bloom-housing/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) +- cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/bloom-housing/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) +- listings management keep empty strings, remove empty objects ([3aba274](https://github.com/bloom-housing/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) +- listings pending translation for ag grid ([5b42ab0](https://github.com/bloom-housing/bloom/commit/5b42ab006abddc19a0fcc260fbf519c3903e44df)) +- lottery results uploads now save ([8c9dd0f](https://github.com/bloom-housing/bloom/commit/8c9dd0f043dd3835f12bc8f087b9a5519cbfd4f8)) +- paper application submission ([384b86b](https://github.com/bloom-housing/bloom/commit/384b86b624392012b56039dc4a289393f24653f5)) +- remove description for the partners programs ([d4478b8](https://github.com/bloom-housing/bloom/commit/d4478b8eaf68efdf4b23c55f15656e82a907dbc4)) +- removes Duplicate identifier fieldGroupObjectToArray ([a3a2f43](https://github.com/bloom-housing/bloom/commit/a3a2f434606628e4ad141250c401405ced10cdf4)) +- retnal assistance eror message ([09f583b](https://github.com/bloom-housing/bloom/commit/09f583be137336c92f7077beb1f1fbab2b82aefb)) +- updates lastName on application save ([a977ffd](https://github.com/bloom-housing/bloom/commit/a977ffd4b81fbf09122c51ccf066d0a3f3f6544c)) +- versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([c274a29](https://github.com/bloom-housing/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) + +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) +- Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) +### Features -## [4.0.1-alpha.77](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.76...@bloom-housing/partners@4.0.1-alpha.77) (2022-02-17) +- adds listing management cypress tests to partner portal ([2e37eec](https://github.com/bloom-housing/bloom/commit/2e37eecf6344f6e25422a24ad7f4563fee4564de)) +- adds updating open listing modal ([#2288](https://github.com/bloom-housing/bloom/issues/2288)) ([d184326](https://github.com/bloom-housing/bloom/commit/d18432610a55a5e54f567ff6157bb863ed61cb21)) +- ami chart jurisdictionalized ([b2e2537](https://github.com/bloom-housing/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) +- filter partner users ([3dd8f9b](https://github.com/bloom-housing/bloom/commit/3dd8f9b3cc1f9f90916d49b7136d5f1f73df5291)) +- new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/bloom-housing/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/bloom-housing/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- overrides partner app website trans ([#2534](https://github.com/bloom-housing/bloom/issues/2534)) ([16c7a4e](https://github.com/bloom-housing/bloom/commit/16c7a4eb8f5ae05dbea9380702c2150a922ca3f0)) +- postmark date time fields partners ([#2239](https://github.com/bloom-housing/bloom/issues/2239)) ([cf20b88](https://github.com/bloom-housing/bloom/commit/cf20b88cb613b815c641cad34a38908e22722a4a)) +- simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/bloom-housing/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) +- temp disable terms and set mfa enabled to false ([#2595](https://github.com/bloom-housing/bloom/issues/2595)) ([6de2dcd](https://github.com/bloom-housing/bloom/commit/6de2dcd8baeb28166d7a6c383846a7ab9a84b0e2)) -**Note:** Version bump only for package @bloom-housing/partners +### Reverts +- Revert "chore(release): version" ([47a2c67](https://github.com/bloom-housing/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.76](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.75...@bloom-housing/partners@4.0.1-alpha.76) (2022-02-17) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/partners +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.75](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.74...@bloom-housing/partners@4.0.1-alpha.75) (2022-02-17) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/partners +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.74](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.73...@bloom-housing/partners@4.0.1-alpha.74) (2022-02-16) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/partners +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.72...@bloom-housing/partners@4.0.1-alpha.73) (2022-02-16) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/partners +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.71...@bloom-housing/partners@4.0.1-alpha.72) (2022-02-16) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -**Note:** Version bump only for package @bloom-housing/partners +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -## [4.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.70...@bloom-housing/partners@4.0.1-alpha.71) (2022-02-16) +- refactor: 2085/adds top level catchAll exception filter -**Note:** Version bump only for package @bloom-housing/partners +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order -## [4.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.69...@bloom-housing/partners@4.0.1-alpha.70) (2022-02-16) +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -**Note:** Version bump only for package @bloom-housing/partners +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests -## [4.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.68...@bloom-housing/partners@4.0.1-alpha.69) (2022-02-16) +- fix: fix member tests -**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.33...@bloom-housing/partners@4.2.2-alpha.34) (2022-05-13) +## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.2...@bloom-housing/partners@4.2.3) (2022-04-28) +## [4.2.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.32...@bloom-housing/partners@4.2.2-alpha.33) (2022-05-11) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.32...@bloom-housing/partners@4.2.2-alpha.33) (2022-05-11) -## [4.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.67...@bloom-housing/partners@4.0.1-alpha.68) (2022-02-15) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.1...@bloom-housing/partners@4.2.2) (2022-04-19) -### Features +### Bug Fixes -* **backend:** make listing image an array ([#2477](https://github.com/bloom-housing/bloom/issues/2477)) ([cab9800](https://github.com/bloom-housing/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +- listings pending translation for ag grid ([5b42ab0](https://github.com/seanmalbert/bloom/commit/5b42ab006abddc19a0fcc260fbf519c3903e44df)) +## [4.2.2-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.31...@bloom-housing/partners@4.2.2-alpha.32) (2022-05-11) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.30...@bloom-housing/partners@4.2.2-alpha.31) (2022-05-10) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.66...@bloom-housing/partners@4.0.1-alpha.67) (2022-02-15) +## [4.2.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.29...@bloom-housing/partners@4.2.2-alpha.30) (2022-05-05) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.28...@bloom-housing/partners@4.2.2-alpha.29) (2022-05-04) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.27...@bloom-housing/partners@4.2.2-alpha.28) (2022-05-04) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.66](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.65...@bloom-housing/partners@4.0.1-alpha.66) (2022-02-15) +## [4.2.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.26...@bloom-housing/partners@4.2.2-alpha.27) (2022-05-04) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.25...@bloom-housing/partners@4.2.2-alpha.26) (2022-05-04) +### Bug Fixes +- max update depth unit form issue ([#2682](https://github.com/bloom-housing/bloom/issues/2682)) ([57200b6](https://github.com/bloom-housing/bloom/commit/57200b69f3cb0b26965a1735196cb126a2754570)) - -## [4.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.64...@bloom-housing/partners@4.0.1-alpha.65) (2022-02-15) +## [4.2.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.24...@bloom-housing/partners@4.2.2-alpha.25) (2022-05-03) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.23...@bloom-housing/partners@4.2.2-alpha.24) (2022-04-29) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.22...@bloom-housing/partners@4.2.2-alpha.23) (2022-04-29) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.63...@bloom-housing/partners@4.0.1-alpha.64) (2022-02-15) +## [4.2.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.21...@bloom-housing/partners@4.2.2-alpha.22) (2022-04-28) +**Note:** Version bump only for package @bloom-housing/partners -### Features +## [4.2.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.20...@bloom-housing/partners@4.2.2-alpha.21) (2022-04-28) -* **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/bloom-housing/bloom/issues/2291)) ([5b10098](https://github.com/bloom-housing/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.19...@bloom-housing/partners@4.2.2-alpha.20) (2022-04-28) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.18...@bloom-housing/partners@4.2.2-alpha.19) (2022-04-27) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.62...@bloom-housing/partners@4.0.1-alpha.63) (2022-02-14) +## [4.2.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.17...@bloom-housing/partners@4.2.2-alpha.18) (2022-04-26) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.16...@bloom-housing/partners@4.2.2-alpha.17) (2022-04-25) +### Bug Fixes +- Add admins into users table ([#2683](https://github.com/bloom-housing/bloom/issues/2683)) ([f1e0972](https://github.com/bloom-housing/bloom/commit/f1e0972838116ed5e76814dff002556de625e2e7)), closes [#2657](https://github.com/bloom-housing/bloom/issues/2657) - -## [4.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.61...@bloom-housing/partners@4.0.1-alpha.62) (2022-02-14) +## [4.2.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.15...@bloom-housing/partners@4.2.2-alpha.16) (2022-04-22) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.14...@bloom-housing/partners@4.2.2-alpha.15) (2022-04-22) +**Note:** Version bump only for package @bloom-housing/partners - - -## [4.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.60...@bloom-housing/partners@4.0.1-alpha.61) (2022-02-12) +## [4.2.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.13...@bloom-housing/partners@4.2.2-alpha.14) (2022-04-22) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.12...@bloom-housing/partners@4.2.2-alpha.13) (2022-04-21) + +### Features +- **backend:** improve user queries ([#2676](https://github.com/bloom-housing/bloom/issues/2676)) ([4733e8a](https://github.com/bloom-housing/bloom/commit/4733e8a9909e47bb2522f9b319f45fe25923cdb5)) +## [4.2.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.11...@bloom-housing/partners@4.2.2-alpha.12) (2022-04-21) +### Features -## [4.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.59...@bloom-housing/partners@4.0.1-alpha.60) (2022-02-10) +- min max occupancy validation in Add Unit ([#2661](https://github.com/bloom-housing/bloom/issues/2661)) ([67a6723](https://github.com/bloom-housing/bloom/commit/67a67231e26ef407808f1e6f9137d60dbb442002)) -**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.10...@bloom-housing/partners@4.2.2-alpha.11) (2022-04-21) +### Features +- new category table component ([#2648](https://github.com/bloom-housing/bloom/issues/2648)) ([3b3fe46](https://github.com/bloom-housing/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +### BREAKING CHANGES +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. -## [4.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.58...@bloom-housing/partners@4.0.1-alpha.59) (2022-02-10) +## [4.2.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.9...@bloom-housing/partners@4.2.2-alpha.10) (2022-04-20) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.8...@bloom-housing/partners@4.2.2-alpha.9) (2022-04-20) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.7...@bloom-housing/partners@4.2.2-alpha.8) (2022-04-20) +### Features -## [4.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.57...@bloom-housing/partners@4.0.1-alpha.58) (2022-02-10) - -**Note:** Version bump only for package @bloom-housing/partners +- **backend:** add jurisdiction default rental assistance text ([#2604](https://github.com/bloom-housing/bloom/issues/2604)) ([00b684c](https://github.com/bloom-housing/bloom/commit/00b684cd8b8b1f9ef201b8aec78c13572a4125a5)) +## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.6...@bloom-housing/partners@4.2.2-alpha.7) (2022-04-20) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.5...@bloom-housing/partners@4.2.2-alpha.6) (2022-04-19) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.56...@bloom-housing/partners@4.0.1-alpha.57) (2022-02-10) +## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.4...@bloom-housing/partners@4.2.2-alpha.5) (2022-04-18) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.3...@bloom-housing/partners@4.2.2-alpha.4) (2022-04-18) +### Features +- refactor ada form fields ([#2612](https://github.com/bloom-housing/bloom/issues/2612)) ([f516f21](https://github.com/bloom-housing/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) +## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.2...@bloom-housing/partners@4.2.2-alpha.3) (2022-04-14) -## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.1...@bloom-housing/partners@4.0.2) (2022-02-09) - +### Bug Fixes +- listings pending translation for ag grid ([4016b8f](https://github.com/bloom-housing/bloom/commit/4016b8fcbfb4f6646ef8c76f38a22f916b1b981f)) +## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.1...@bloom-housing/partners@4.2.2-alpha.2) (2022-04-14) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.55...@bloom-housing/partners@4.0.1-alpha.56) (2022-02-09) +## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.2-alpha.0...@bloom-housing/partners@4.2.2-alpha.1) (2022-04-13) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.5...@bloom-housing/partners@4.2.2-alpha.0) (2022-04-13) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- preferences model and relationships changed -## [4.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.54...@bloom-housing/partners@4.0.1-alpha.55) (2022-02-09) - -**Note:** Version bump only for package @bloom-housing/partners +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [4.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.53...@bloom-housing/partners@4.0.1-alpha.54) (2022-02-09) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -**Note:** Version bump only for package @bloom-housing/partners +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -## [4.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.52...@bloom-housing/partners@4.0.1-alpha.53) (2022-02-09) +- fix: sets programs to optoinal and updates versions -**Note:** Version bump only for package @bloom-housing/partners +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests -## [4.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.51...@bloom-housing/partners@4.0.1-alpha.52) (2022-02-09) +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update -### Bug Fixes +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* cannot remove some fields in listings management ([#2455](https://github.com/bloom-housing/bloom/issues/2455)) ([acd9b51](https://github.com/bloom-housing/bloom/commit/acd9b51bb49581b4728b445d56c5c0a3c43e2777)) +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date -## [4.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.50...@bloom-housing/partners@4.0.1-alpha.51) (2022-02-08) +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -**Note:** Version bump only for package @bloom-housing/partners +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress -## [4.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.49...@bloom-housing/partners@4.0.1-alpha.50) (2022-02-07) +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -**Note:** Version bump only for package @bloom-housing/partners +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal -## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@3.0.1...@bloom-housing/partners@4.0.1) (2022-02-03) +- fix: listings management keep empty strings, remove empty objects -## Bug Fixes +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* ami charts without all households ([#2430](https://github.com/seanmalbert/bloom/issues/2430)) ([5e18eba](https://github.com/seanmalbert/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -### BREAKING CHANGES +- refactor: removes jsonpath -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* chore(release): version +- feat: adds jurisdictions to pref seeds - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -## [4.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.48...@bloom-housing/partners@4.0.1-alpha.49) (2022-02-02) +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -### Bug Fixes +- fix: add ariaLabel prop to Button component -* unit accordion radio button not showing default value ([#2451](https://github.com/bloom-housing/bloom/issues/2451)) ([4ed8103](https://github.com/bloom-housing/bloom/commit/4ed81039b9130d0433b11df2bdabc495ce2b9f24)) +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -## [4.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.47...@bloom-housing/partners@4.0.1-alpha.48) (2022-02-02) +- chore: release version -**Note:** Version bump only for package @bloom-housing/partners +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -## [4.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.46...@bloom-housing/partners@4.0.1-alpha.47) (2022-02-02) +- feat: add a phone number column to the user_accounts table -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -## [4.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.45...@bloom-housing/partners@4.0.1-alpha.46) (2022-02-02) +- Revert "chore: removes application program partners" -**Note:** Version bump only for package @bloom-housing/partners +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing +- chore(release): version -## [4.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.44...@bloom-housing/partners@4.0.1-alpha.45) (2022-02-01) +- fix: cannot save custom mailing, dropoff, or pickup address -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version -## [4.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.43...@bloom-housing/partners@4.0.1-alpha.44) (2022-02-01) +- fix: lottery results uploads now save -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- feat: add SRO unit type +- chore(release): version +- fix: paper application submission +- chore(release): version -## [4.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.42...@bloom-housing/partners@4.0.1-alpha.43) (2022-02-01) +- fix: choose-language context -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version -## [4.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.41...@bloom-housing/partners@4.0.1-alpha.42) (2022-02-01) +- fix: account translations -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs +- fix: fix modal styles on mobile -## [4.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.40...@bloom-housing/partners@4.0.1-alpha.41) (2022-02-01) +- fix: visual improvement to programs form display -**Note:** Version bump only for package @bloom-housing/partners +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.39...@bloom-housing/partners@4.0.1-alpha.40) (2022-02-01) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -### Features +- chore(release): version -* partners terms page ([#2440](https://github.com/bloom-housing/bloom/issues/2440)) ([63105bc](https://github.com/bloom-housing/bloom/commit/63105bcedfe371a4a9995e25b1e5aba67d06ad0c)) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.2.0...@bloom-housing/partners@4.2.1) (2022-04-11) +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate -## [4.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.38...@bloom-housing/partners@4.0.1-alpha.39) (2022-02-01) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/partners +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.2.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.4...@bloom-housing/partners@4.2.1-alpha.5) (2022-04-13) -## [4.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.37...@bloom-housing/partners@4.0.1-alpha.38) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.3...@bloom-housing/partners@4.2.1-alpha.4) (2022-04-08) -### Features +**Note:** Version bump only for package @bloom-housing/partners -* **backend:** add publishedAt and closedAt to listing entity ([#2432](https://github.com/bloom-housing/bloom/issues/2432)) ([f3b0f86](https://github.com/bloom-housing/bloom/commit/f3b0f864a6d5d2ad3d886e828743454c3e8fca71)) +## [4.2.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.2...@bloom-housing/partners@4.2.1-alpha.3) (2022-04-07) +**Note:** Version bump only for package @bloom-housing/partners +## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.1...@bloom-housing/partners@4.2.1-alpha.2) (2022-04-07) +### Bug Fixes +- sets agreedToTermsOfService properly ([#2635](https://github.com/bloom-housing/bloom/issues/2635)) ([4d405ce](https://github.com/bloom-housing/bloom/commit/4d405ce96fcbc2ffad77277ed0d60a1356630f4d)) -## [4.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.36...@bloom-housing/partners@4.0.1-alpha.37) (2022-02-01) +## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.2.1-alpha.0...@bloom-housing/partners@4.2.1-alpha.1) (2022-04-07) **Note:** Version bump only for package @bloom-housing/partners +## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.7...@bloom-housing/partners@4.2.1-alpha.0) (2022-04-06) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- preferences model and relationships changed -## [4.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.35...@bloom-housing/partners@4.0.1-alpha.36) (2022-01-31) +- feat: feat(backend): extend UserUpdateDto to support email change -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -## [4.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.34...@bloom-housing/partners@4.0.1-alpha.35) (2022-01-31) +- feat: feat: Change unit number field type to text -**Note:** Version bump only for package @bloom-housing/partners +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions -## [4.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.33...@bloom-housing/partners@4.0.1-alpha.34) (2022-01-27) +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -### Features +- fix: adds programs service -* outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -## [4.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.32...@bloom-housing/partners@4.0.1-alpha.33) (2022-01-26) +- feat: feat(backend): make use of new application confirmation codes -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -## [4.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.31...@bloom-housing/partners@4.0.1-alpha.32) (2022-01-26) +- feat: adds new preferences, reserved community type -**Note:** Version bump only for package @bloom-housing/partners +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -## [4.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.30...@bloom-housing/partners@4.0.1-alpha.31) (2022-01-26) +- feat: refactor and add public site application flow cypress tests -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects -## [4.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.29...@bloom-housing/partners@4.0.1-alpha.30) (2022-01-24) +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -**Note:** Version bump only for package @bloom-housing/partners +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath -## [4.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.28...@bloom-housing/partners@4.0.1-alpha.29) (2022-01-24) +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds -### Bug Fixes +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([92dfbad](https://github.com/bloom-housing/bloom/commit/92dfbad32c90d84ee1ec3a3468c084cb110aa8be)) +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component -## [4.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.27...@bloom-housing/partners@4.0.1-alpha.28) (2022-01-21) +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -**Note:** Version bump only for package @bloom-housing/partners +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics -## [4.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.26...@bloom-housing/partners@4.0.1-alpha.27) (2022-01-21) +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -**Note:** Version bump only for package @bloom-housing/partners +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components -## [4.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.25...@bloom-housing/partners@4.0.1-alpha.26) (2022-01-20) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -**Note:** Version bump only for package @bloom-housing/partners +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" -## [4.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.24...@bloom-housing/partners@4.0.1-alpha.25) (2022-01-14) +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -**Note:** Version bump only for package @bloom-housing/partners +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing -## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@3.0.1-alpha.34...@bloom-housing/partners@3.0.1) (2022-01-13) +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address -### Bug Fixes +- chore(release): version -* adds jurisdictionId to useSWR path ([c7d6adb](https://github.com/seanmalbert/bloom/commit/c7d6adba109aa50f3c1556c89c0ec714fd4c6e50)) -* cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/seanmalbert/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) -* listings management keep empty strings, remove empty objects ([3aba274](https://github.com/seanmalbert/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) -* lottery results uploads now save ([8c9dd0f](https://github.com/seanmalbert/bloom/commit/8c9dd0f043dd3835f12bc8f087b9a5519cbfd4f8)) -* paper application submission ([384b86b](https://github.com/seanmalbert/bloom/commit/384b86b624392012b56039dc4a289393f24653f5)) -* remove description for the partners programs ([d4478b8](https://github.com/seanmalbert/bloom/commit/d4478b8eaf68efdf4b23c55f15656e82a907dbc4)) -* removes Duplicate identifier fieldGroupObjectToArray ([a3a2f43](https://github.com/seanmalbert/bloom/commit/a3a2f434606628e4ad141250c401405ced10cdf4)) -* retnal assistance eror message ([09f583b](https://github.com/seanmalbert/bloom/commit/09f583be137336c92f7077beb1f1fbab2b82aefb)) -* updates lastName on application save ([a977ffd](https://github.com/seanmalbert/bloom/commit/a977ffd4b81fbf09122c51ccf066d0a3f3f6544c)) -* versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +- chore: converge on one axios version, remove peer dependency +- chore(release): version -* Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save -### Features +- chore(release): version -* adds listing management cypress tests to partner portal ([2e37eec](https://github.com/seanmalbert/bloom/commit/2e37eecf6344f6e25422a24ad7f4563fee4564de)) -* adds updating open listing modal ([#2288](https://github.com/seanmalbert/bloom/issues/2288)) ([d184326](https://github.com/seanmalbert/bloom/commit/d18432610a55a5e54f567ff6157bb863ed61cb21)) -* ami chart jurisdictionalized ([b2e2537](https://github.com/seanmalbert/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) -* filter partner users ([3dd8f9b](https://github.com/seanmalbert/bloom/commit/3dd8f9b3cc1f9f90916d49b7136d5f1f73df5291)) -* new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* postmark date time fields partners ([#2239](https://github.com/seanmalbert/bloom/issues/2239)) ([cf20b88](https://github.com/seanmalbert/bloom/commit/cf20b88cb613b815c641cad34a38908e22722a4a)) -* simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/seanmalbert/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) +- feat: add SRO unit type +- chore(release): version -### Reverts +- fix: paper application submission -* Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +- chore(release): version +- fix: choose-language context +- chore(release): version -### BREAKING CHANGES +- fix: applications/view hide prefs -* preferences model and relationships changed +- chore(release): version -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: overrides fallback to english, tagalog support -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- chore(release): version -* fix: 2056/user account edit fix +- fix: account translations -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- chore(release): version -* refactor: 2085/adds top level catchAll exception filter +- fix: units with invalid ami chart -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- chore(release): version -* feat: feat: Change unit number field type to text +- fix: remove description for the partners programs -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- fix: fix modal styles on mobile -* feat(backend): improve application flagged set saving efficiency +- fix: visual improvement to programs form display -* fix: fix: updates address order +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- chore(release): version -* fix: sets programs to optoinal and updates versions +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore(release): version -* fix: adds programs service +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* fix: fix lisitng e2e tests +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* fix: fix member tests +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.1.2...@bloom-housing/partners@4.2.0) (2022-04-06) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES -## [4.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.23...@bloom-housing/partners@4.0.1-alpha.24) (2022-01-13) +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -### Bug Fixes +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* partners render issue ([#2395](https://github.com/bloom-housing/bloom/issues/2395)) ([7fb108d](https://github.com/bloom-housing/bloom/commit/7fb108d744fcafd6b9df42706d2a2f58fbc30f0a)) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.22...@bloom-housing/partners@4.0.1-alpha.23) (2022-01-13) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -### Bug Fixes +- chore(release): version -* dates showing as invalid in send by mail section ([#2362](https://github.com/bloom-housing/bloom/issues/2362)) ([3567388](https://github.com/bloom-housing/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.1.3-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.6...@bloom-housing/partners@4.1.3-alpha.7) (2022-04-05) -### BREAKING CHANGES +### Bug Fixes -* remove applicationDueTime field and consolidated into applicationDueDate +- remove shared-helpers dependency from ui-components ([#2620](https://github.com/bloom-housing/bloom/issues/2620)) ([cd6ea54](https://github.com/bloom-housing/bloom/commit/cd6ea5450402a9b5d2a8681c403cbfcff6b6b1c9)) +## [4.1.3-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.5...@bloom-housing/partners@4.1.3-alpha.6) (2022-04-05) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.3-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.4...@bloom-housing/partners@4.1.3-alpha.5) (2022-04-04) +**Note:** Version bump only for package @bloom-housing/partners -## [4.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.21...@bloom-housing/partners@4.0.1-alpha.22) (2022-01-13) +## [4.1.3-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.3...@bloom-housing/partners@4.1.3-alpha.4) (2022-04-04) **Note:** Version bump only for package @bloom-housing/partners +## [4.1.3-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.2...@bloom-housing/partners@4.1.3-alpha.3) (2022-04-04) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.3-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.1...@bloom-housing/partners@4.1.3-alpha.2) (2022-03-31) +### Bug Fixes -## [4.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.20...@bloom-housing/partners@4.0.1-alpha.21) (2022-01-11) +- select programs working with single jurisdiction ([#2598](https://github.com/bloom-housing/bloom/issues/2598)) ([7fec414](https://github.com/bloom-housing/bloom/commit/7fec414c8ede55f16679f2e099f58965773cf5a3)) +## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.3-alpha.0...@bloom-housing/partners@4.1.3-alpha.1) (2022-03-30) ### Bug Fixes -* open house events can now be edited and work cross-browser ([#2320](https://github.com/bloom-housing/bloom/issues/2320)) ([4af6efd](https://github.com/bloom-housing/bloom/commit/4af6efdd29787a93faf1a314073e2e201584214f)) +- added margin bottom to button on mobile in unit modal ([e26b763](https://github.com/bloom-housing/bloom/commit/e26b763b4ec4024f1e90131ee30d5ecbbb8a9daf)) +- added margin bottom to second button in unit modal, only on mobile ([a94f5f2](https://github.com/bloom-housing/bloom/commit/a94f5f2ca5b6687baff5f29dc7294e150cc106f3)) +## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.3...@bloom-housing/partners@4.1.3-alpha.0) (2022-03-30) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.1.1...@bloom-housing/partners@4.1.2) (2022-03-29) +## [4.1.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.2...@bloom-housing/partners@4.1.2-alpha.3) (2022-03-29) -## [4.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.19...@bloom-housing/partners@4.0.1-alpha.20) (2022-01-11) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.1...@bloom-housing/partners@4.1.2-alpha.2) (2022-03-29) ### Bug Fixes -* add test id ([d4b0ed2](https://github.com/bloom-housing/bloom/commit/d4b0ed2426b7f8aced3b2dd44baf2a438410838d)) -* update naming ([b9c645c](https://github.com/bloom-housing/bloom/commit/b9c645cd1460567f9c35a54c7fd93bc5957d593e)) -* use drag n drop ([a354904](https://github.com/bloom-housing/bloom/commit/a3549045d4f0da64692318f84f0336f1287ad48a)) +- partners user lisitngs all checkbox ([#2592](https://github.com/bloom-housing/bloom/issues/2592)) ([47fd4b3](https://github.com/bloom-housing/bloom/commit/47fd4b31dc710ef2ccc28473faefe5f047d614b4)) +- removed unused partner footer links ([#2590](https://github.com/bloom-housing/bloom/issues/2590)) ([318d42e](https://github.com/bloom-housing/bloom/commit/318d42e01f5374c7cd2d3e7b35a4bb44e3659c94)) +## [4.1.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.2-alpha.0...@bloom-housing/partners@4.1.2-alpha.1) (2022-03-28) +### Features +- adds partners re-request confirmation ([#2574](https://github.com/bloom-housing/bloom/issues/2574)) ([235af78](https://github.com/bloom-housing/bloom/commit/235af781914e5c36104bb3862dd55152a16e6750)), closes [#2577](https://github.com/bloom-housing/bloom/issues/2577) +## [4.1.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.5...@bloom-housing/partners@4.1.2-alpha.0) (2022-03-28) -## [4.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.18...@bloom-housing/partners@4.0.1-alpha.19) (2022-01-08) +- 2022 03 28 sync master (#2593) ([580283d](https://github.com/bloom-housing/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/bloom-housing/bloom/issues/2593) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES -### Bug Fixes +- preferences model and relationships changed -* ensure dayjs parsing strings will work as expected ([eb44939](https://github.com/bloom-housing/bloom/commit/eb449395ebea3a3b4b58eb217df1e1313c722a0d)) +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [4.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.17...@bloom-housing/partners@4.0.1-alpha.18) (2022-01-07) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -**Note:** Version bump only for package @bloom-housing/partners +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -## [4.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.16...@bloom-housing/partners@4.0.1-alpha.17) (2022-01-07) +- fix: sets programs to optoinal and updates versions -**Note:** Version bump only for package @bloom-housing/partners +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests -## [4.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.15...@bloom-housing/partners@4.0.1-alpha.16) (2022-01-07) +- fix: adds jurisdictionId to useSWR path -**Note:** Version bump only for package @bloom-housing/partners +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -## [4.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.14...@bloom-housing/partners@4.0.1-alpha.15) (2022-01-04) +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date -### Bug Fixes +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* applications drop off address ([d73cdf6](https://github.com/bloom-housing/bloom/commit/d73cdf69fa550bf178a7f433ca9a1bbe2ce678a2)) -* helper imports of form types ([e58ed71](https://github.com/bloom-housing/bloom/commit/e58ed71c703a53a7ab4284e6d7e2c1857cb8ed7b)) -* jest tests in partners now allows jsx ([3fef534](https://github.com/bloom-housing/bloom/commit/3fef534925f8fee6a63a2a99def692b59df83bdd)) +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress -## [4.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.13...@bloom-housing/partners@4.0.1-alpha.14) (2022-01-04) +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -**Note:** Version bump only for package @bloom-housing/partners +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal -## [4.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.12...@bloom-housing/partners@4.0.1-alpha.13) (2022-01-04) +- fix: listings management keep empty strings, remove empty objects -**Note:** Version bump only for package @bloom-housing/partners +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -## [4.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.11...@bloom-housing/partners@4.0.1-alpha.12) (2022-01-04) +- refactor: removes jsonpath -**Note:** Version bump only for package @bloom-housing/partners +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -## [4.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.10...@bloom-housing/partners@4.0.1-alpha.11) (2022-01-03) +- feat: updates email confirmation for lottery -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -## [4.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.9...@bloom-housing/partners@4.0.1-alpha.10) (2022-01-03) +- fix: change the yes/no radio text to be more descriptive -**Note:** Version bump only for package @bloom-housing/partners +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -## [4.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.8...@bloom-housing/partners@4.0.1-alpha.9) (2022-01-03) +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -### Bug Fixes +- refactor: make backend a peer dependency in ui-components -* cypress coverage configs ([eec74ee](https://github.com/bloom-housing/bloom/commit/eec74eef138f6af275ae3cfe16262ed215b16907)) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display -## [4.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.7...@bloom-housing/partners@4.0.1-alpha.8) (2022-01-03) +- Revert "chore: removes application program display" -**Note:** Version bump only for package @bloom-housing/partners +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -## [4.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.7) (2022-01-03) +- feat: skip preferences if not on listing +- chore(release): version -### Bug Fixes +- fix: cannot save custom mailing, dropoff, or pickup address -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- chore(release): version +- chore: converge on one axios version, remove peer dependency -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema -### Features +- chore(release): version -* **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) -* password reset message ([0cba6e6](https://github.com/bloom-housing/bloom/commit/0cba6e62b45622a430612672daef5c97c1e6b140)) +- fix: lottery results uploads now save +- chore(release): version -### BREAKING CHANGES +- feat: add SRO unit type -* sign-in pages have been updated +- chore(release): version +- fix: paper application submission +- chore(release): version +- fix: choose-language context +- chore(release): version -## [4.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.6) (2022-01-03) +- fix: applications/view hide prefs +- chore(release): version -### Bug Fixes +- feat: overrides fallback to english, tagalog support -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- chore(release): version +- fix: account translations -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +- chore(release): version +- fix: units with invalid ami chart -### Features +- chore(release): version -* **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) -* password reset message ([0cba6e6](https://github.com/bloom-housing/bloom/commit/0cba6e62b45622a430612672daef5c97c1e6b140)) +- fix: remove description for the partners programs +- fix: fix modal styles on mobile -### BREAKING CHANGES +- fix: visual improvement to programs form display -* sign-in pages have been updated +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -## [4.0.1-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.1) (2021-12-23) +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -### BREAKING CHANGES +## [4.1.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.1.0...@bloom-housing/partners@4.1.1) (2022-03-28) -* sign-in pages have been updated +## [4.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.4...@bloom-housing/partners@4.1.1-alpha.5) (2022-03-28) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.3...@bloom-housing/partners@4.1.1-alpha.4) (2022-03-25) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.2...@bloom-housing/partners@4.1.1-alpha.3) (2022-03-22) -## [4.0.1-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.0) (2021-12-23) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.1...@bloom-housing/partners@4.1.1-alpha.2) (2022-03-16) -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +**Note:** Version bump only for package @bloom-housing/partners +## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.1.1-alpha.0...@bloom-housing/partners@4.1.1-alpha.1) (2022-03-10) -### BREAKING CHANGES +**Note:** Version bump only for package @bloom-housing/partners -* sign-in pages have been updated +## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.87...@bloom-housing/partners@4.1.1-alpha.0) (2022-03-02) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.1-alpha.87...@bloom-housing/partners@4.0.1) (2022-03-02) +**Note:** Version bump only for package @bloom-housing/partners +# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.3...@bloom-housing/partners@4.1.0) (2022-03-02) -# [4.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@3.0.1-alpha.65...@bloom-housing/partners@4.0.0) (2021-12-22) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES -### Bug Fixes +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* partners shared-helpers version ([50f4a06](https://github.com/seanmalbert/bloom/commit/50f4a0658761b8675064a98f316b2dd35b0d3fe0)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### Code Refactoring +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +## [4.0.1-alpha.87](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.86...@bloom-housing/partners@4.0.1-alpha.87) (2022-02-28) ### Features -* adds updating open listing modal ([#2288](https://github.com/seanmalbert/bloom/issues/2288)) ([4f6945f](https://github.com/seanmalbert/bloom/commit/4f6945f04d797fad1b3140bcdc74b134ea42810a)) +- updates to mfa styling ([#2532](https://github.com/bloom-housing/bloom/issues/2532)) ([7654efc](https://github.com/bloom-housing/bloom/commit/7654efc8a7c5cba0f7436fda62b886f646fe8a03)) +## [4.0.1-alpha.86](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.85...@bloom-housing/partners@4.0.1-alpha.86) (2022-02-28) -### BREAKING CHANGES +**Note:** Version bump only for package @bloom-housing/partners -* moved some helpers from ui-components to shared-helpers +## [4.0.1-alpha.85](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.84...@bloom-housing/partners@4.0.1-alpha.85) (2022-02-26) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.2...@bloom-housing/partners@4.0.3) (2022-02-25) +## Features +- overrides partner app website trans ([#2534](https://github.com/seanmalbert/bloom/issues/2534)) ([16c7a4e](https://github.com/seanmalbert/bloom/commit/16c7a4eb8f5ae05dbea9380702c2150a922ca3f0)) -## [3.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.64...@bloom-housing/partners@3.0.1-alpha.65) (2021-12-15) +## [4.0.1-alpha.84](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.83...@bloom-housing/partners@4.0.1-alpha.84) (2022-02-25) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.83](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.82...@bloom-housing/partners@4.0.1-alpha.83) (2022-02-25) + +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.82](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.81...@bloom-housing/partners@4.0.1-alpha.82) (2022-02-24) +### Features +- overrides partner app website trans ([#2534](https://github.com/bloom-housing/bloom/issues/2534)) ([9e09b0b](https://github.com/bloom-housing/bloom/commit/9e09b0bbb3e394c92dcce18bb0cba74db03c49fa)) -## [3.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.63...@bloom-housing/partners@3.0.1-alpha.64) (2021-12-15) +## [4.0.1-alpha.81](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.80...@bloom-housing/partners@4.0.1-alpha.81) (2022-02-22) +### Bug Fixes -### Features +- purge listing detail with wildcard ([4fd2137](https://github.com/bloom-housing/bloom/commit/4fd21374c2dc213dfe1b8dde004d41895126c1d6)) -* filter partner users ([63566f2](https://github.com/bloom-housing/bloom/commit/63566f206b154031a143b649b986aaecd5181313)) +## [4.0.1-alpha.80](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.79...@bloom-housing/partners@4.0.1-alpha.80) (2022-02-22) +### Features +- updates cache clear to separate individual and lists ([#2529](https://github.com/bloom-housing/bloom/issues/2529)) ([1521191](https://github.com/bloom-housing/bloom/commit/15211918b8bf0741ff6a25265b1bf3a60d5678b2)) +## [4.0.1-alpha.79](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.78...@bloom-housing/partners@4.0.1-alpha.79) (2022-02-22) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.62...@bloom-housing/partners@3.0.1-alpha.63) (2021-12-15) +## [4.0.1-alpha.78](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.77...@bloom-housing/partners@4.0.1-alpha.78) (2022-02-18) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.77](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.76...@bloom-housing/partners@4.0.1-alpha.77) (2022-02-17) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.76](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.75...@bloom-housing/partners@4.0.1-alpha.76) (2022-02-17) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.61...@bloom-housing/partners@3.0.1-alpha.62) (2021-12-15) +## [4.0.1-alpha.75](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.74...@bloom-housing/partners@4.0.1-alpha.75) (2022-02-17) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.74](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.73...@bloom-housing/partners@4.0.1-alpha.74) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.72...@bloom-housing/partners@4.0.1-alpha.73) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.60...@bloom-housing/partners@3.0.1-alpha.61) (2021-12-14) +## [4.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.71...@bloom-housing/partners@4.0.1-alpha.72) (2022-02-16) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.70...@bloom-housing/partners@4.0.1-alpha.71) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.69...@bloom-housing/partners@4.0.1-alpha.70) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.59...@bloom-housing/partners@3.0.1-alpha.60) (2021-12-14) +## [4.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.68...@bloom-housing/partners@4.0.1-alpha.69) (2022-02-16) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.67...@bloom-housing/partners@4.0.1-alpha.68) (2022-02-15) + +### Features + +- **backend:** make listing image an array ([#2477](https://github.com/bloom-housing/bloom/issues/2477)) ([cab9800](https://github.com/bloom-housing/bloom/commit/cab98003e640c880be2218fa42321eadeec35e9c)) +## [4.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.66...@bloom-housing/partners@4.0.1-alpha.67) (2022-02-15) + +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.66](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.65...@bloom-housing/partners@4.0.1-alpha.66) (2022-02-15) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.58...@bloom-housing/partners@3.0.1-alpha.59) (2021-12-13) +## [4.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.64...@bloom-housing/partners@4.0.1-alpha.65) (2022-02-15) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.63...@bloom-housing/partners@4.0.1-alpha.64) (2022-02-15) +### Features +- **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/bloom-housing/bloom/issues/2291)) ([5b10098](https://github.com/bloom-housing/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) +## [4.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.62...@bloom-housing/partners@4.0.1-alpha.63) (2022-02-14) -## [3.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.56...@bloom-housing/partners@3.0.1-alpha.58) (2021-12-13) - +**Note:** Version bump only for package @bloom-housing/partners -### Bug Fixes +## [4.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.61...@bloom-housing/partners@4.0.1-alpha.62) (2022-02-14) -* versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([0b1d143](https://github.com/bloom-housing/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.60...@bloom-housing/partners@4.0.1-alpha.61) (2022-02-12) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.59...@bloom-housing/partners@4.0.1-alpha.60) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.55...@bloom-housing/partners@3.0.1-alpha.56) (2021-12-10) +## [4.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.58...@bloom-housing/partners@4.0.1-alpha.59) (2022-02-10) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.57...@bloom-housing/partners@4.0.1-alpha.58) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.56...@bloom-housing/partners@4.0.1-alpha.57) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.54...@bloom-housing/partners@3.0.1-alpha.55) (2021-12-09) +## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.1...@bloom-housing/partners@4.0.2) (2022-02-09) + +## [4.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.55...@bloom-housing/partners@4.0.1-alpha.56) (2022-02-09) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.54...@bloom-housing/partners@4.0.1-alpha.55) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.53...@bloom-housing/partners@4.0.1-alpha.54) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.53...@bloom-housing/partners@3.0.1-alpha.54) (2021-12-09) +## [4.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.52...@bloom-housing/partners@4.0.1-alpha.53) (2022-02-09) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.51...@bloom-housing/partners@4.0.1-alpha.52) (2022-02-09) +### Bug Fixes +- cannot remove some fields in listings management ([#2455](https://github.com/bloom-housing/bloom/issues/2455)) ([acd9b51](https://github.com/bloom-housing/bloom/commit/acd9b51bb49581b4728b445d56c5c0a3c43e2777)) +## [4.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.50...@bloom-housing/partners@4.0.1-alpha.51) (2022-02-08) -## [3.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.52...@bloom-housing/partners@3.0.1-alpha.53) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/partners + +## [4.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.49...@bloom-housing/partners@4.0.1-alpha.50) (2022-02-07) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@3.0.1...@bloom-housing/partners@4.0.1) (2022-02-03) + +## Bug Fixes +- ami charts without all households ([#2430](https://github.com/seanmalbert/bloom/issues/2430)) ([5e18eba](https://github.com/seanmalbert/bloom/commit/5e18eba1d24bff038b192477b72d9d3f1f05a39d)) +- 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) +### BREAKING CHANGES -## [3.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.51...@bloom-housing/partners@3.0.1-alpha.52) (2021-12-09) +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -**Note:** Version bump only for package @bloom-housing/partners +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +## [4.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.48...@bloom-housing/partners@4.0.1-alpha.49) (2022-02-02) +### Bug Fixes +- unit accordion radio button not showing default value ([#2451](https://github.com/bloom-housing/bloom/issues/2451)) ([4ed8103](https://github.com/bloom-housing/bloom/commit/4ed81039b9130d0433b11df2bdabc495ce2b9f24)) -## [3.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.50...@bloom-housing/partners@3.0.1-alpha.51) (2021-12-08) +## [4.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.47...@bloom-housing/partners@4.0.1-alpha.48) (2022-02-02) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.46...@bloom-housing/partners@4.0.1-alpha.47) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.45...@bloom-housing/partners@4.0.1-alpha.46) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.49...@bloom-housing/partners@3.0.1-alpha.50) (2021-12-07) +## [4.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.44...@bloom-housing/partners@4.0.1-alpha.45) (2022-02-01) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.43...@bloom-housing/partners@4.0.1-alpha.44) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.42...@bloom-housing/partners@4.0.1-alpha.43) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.48...@bloom-housing/partners@3.0.1-alpha.49) (2021-12-07) - +## [4.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.41...@bloom-housing/partners@4.0.1-alpha.42) (2022-02-01) -### Features +**Note:** Version bump only for package @bloom-housing/partners -* overrides fallback to english, tagalog support ([#2262](https://github.com/bloom-housing/bloom/issues/2262)) ([679ab9b](https://github.com/bloom-housing/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +## [4.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.40...@bloom-housing/partners@4.0.1-alpha.41) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.39...@bloom-housing/partners@4.0.1-alpha.40) (2022-02-01) +### Features +- partners terms page ([#2440](https://github.com/bloom-housing/bloom/issues/2440)) ([63105bc](https://github.com/bloom-housing/bloom/commit/63105bcedfe371a4a9995e25b1e5aba67d06ad0c)) -## [3.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.47...@bloom-housing/partners@3.0.1-alpha.48) (2021-12-07) +## [4.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.38...@bloom-housing/partners@4.0.1-alpha.39) (2022-02-01) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.37...@bloom-housing/partners@4.0.1-alpha.38) (2022-02-01) +### Features +- **backend:** add publishedAt and closedAt to listing entity ([#2432](https://github.com/bloom-housing/bloom/issues/2432)) ([f3b0f86](https://github.com/bloom-housing/bloom/commit/f3b0f864a6d5d2ad3d886e828743454c3e8fca71)) +## [4.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.36...@bloom-housing/partners@4.0.1-alpha.37) (2022-02-01) -## [3.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.46...@bloom-housing/partners@3.0.1-alpha.47) (2021-12-06) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.35...@bloom-housing/partners@4.0.1-alpha.36) (2022-01-31) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/partners -* Remove description for the partners programs ([#2234](https://github.com/bloom-housing/bloom/issues/2234)) ([2bbbeb5](https://github.com/bloom-housing/bloom/commit/2bbbeb52868d8f4b5ee6723018fa34619073017b)), closes [#1901](https://github.com/bloom-housing/bloom/issues/1901) +## [4.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.34...@bloom-housing/partners@4.0.1-alpha.35) (2022-01-31) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.33...@bloom-housing/partners@4.0.1-alpha.34) (2022-01-27) +### Features +- outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) -## [3.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.45...@bloom-housing/partners@3.0.1-alpha.46) (2021-12-06) +## [4.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.32...@bloom-housing/partners@4.0.1-alpha.33) (2022-01-26) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.31...@bloom-housing/partners@4.0.1-alpha.32) (2022-01-26) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.30...@bloom-housing/partners@4.0.1-alpha.31) (2022-01-26) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.44...@bloom-housing/partners@3.0.1-alpha.45) (2021-12-03) +## [4.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.29...@bloom-housing/partners@4.0.1-alpha.30) (2022-01-24) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.28...@bloom-housing/partners@4.0.1-alpha.29) (2022-01-24) +### Bug Fixes +- ami charts without all households ([#2430](https://github.com/bloom-housing/bloom/issues/2430)) ([92dfbad](https://github.com/bloom-housing/bloom/commit/92dfbad32c90d84ee1ec3a3468c084cb110aa8be)) - -## [3.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.43...@bloom-housing/partners@3.0.1-alpha.44) (2021-12-03) +## [4.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.27...@bloom-housing/partners@4.0.1-alpha.28) (2022-01-21) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.26...@bloom-housing/partners@4.0.1-alpha.27) (2022-01-21) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.25...@bloom-housing/partners@4.0.1-alpha.26) (2022-01-20) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.42...@bloom-housing/partners@3.0.1-alpha.43) (2021-12-03) +## [4.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.24...@bloom-housing/partners@4.0.1-alpha.25) (2022-01-14) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@3.0.1-alpha.34...@bloom-housing/partners@3.0.1) (2022-01-13) +### Bug Fixes +- adds jurisdictionId to useSWR path ([c7d6adb](https://github.com/seanmalbert/bloom/commit/c7d6adba109aa50f3c1556c89c0ec714fd4c6e50)) +- cannot save custom mailing, dropoff, or pickup address ([edcb068](https://github.com/seanmalbert/bloom/commit/edcb068ca23411e0a34f1dc2ff4c77ab489ac0fc)) +- listings management keep empty strings, remove empty objects ([3aba274](https://github.com/seanmalbert/bloom/commit/3aba274a751cdb2db55b65ade1cda5d1689ca681)) +- lottery results uploads now save ([8c9dd0f](https://github.com/seanmalbert/bloom/commit/8c9dd0f043dd3835f12bc8f087b9a5519cbfd4f8)) +- paper application submission ([384b86b](https://github.com/seanmalbert/bloom/commit/384b86b624392012b56039dc4a289393f24653f5)) +- remove description for the partners programs ([d4478b8](https://github.com/seanmalbert/bloom/commit/d4478b8eaf68efdf4b23c55f15656e82a907dbc4)) +- removes Duplicate identifier fieldGroupObjectToArray ([a3a2f43](https://github.com/seanmalbert/bloom/commit/a3a2f434606628e4ad141250c401405ced10cdf4)) +- retnal assistance eror message ([09f583b](https://github.com/seanmalbert/bloom/commit/09f583be137336c92f7077beb1f1fbab2b82aefb)) +- updates lastName on application save ([a977ffd](https://github.com/seanmalbert/bloom/commit/a977ffd4b81fbf09122c51ccf066d0a3f3f6544c)) +- versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +- Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) -## [3.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.41...@bloom-housing/partners@3.0.1-alpha.42) (2021-12-01) - -**Note:** Version bump only for package @bloom-housing/partners +### Features +- adds listing management cypress tests to partner portal ([2e37eec](https://github.com/seanmalbert/bloom/commit/2e37eecf6344f6e25422a24ad7f4563fee4564de)) +- adds updating open listing modal ([#2288](https://github.com/seanmalbert/bloom/issues/2288)) ([d184326](https://github.com/seanmalbert/bloom/commit/d18432610a55a5e54f567ff6157bb863ed61cb21)) +- ami chart jurisdictionalized ([b2e2537](https://github.com/seanmalbert/bloom/commit/b2e2537818d92ff41ea51fbbeb23d9d7e8c1cf52)) +- filter partner users ([3dd8f9b](https://github.com/seanmalbert/bloom/commit/3dd8f9b3cc1f9f90916d49b7136d5f1f73df5291)) +- new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- postmark date time fields partners ([#2239](https://github.com/seanmalbert/bloom/issues/2239)) ([cf20b88](https://github.com/seanmalbert/bloom/commit/cf20b88cb613b815c641cad34a38908e22722a4a)) +- simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/seanmalbert/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) +### Reverts +- Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES -## [3.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.40...@bloom-housing/partners@3.0.1-alpha.41) (2021-12-01) +- preferences model and relationships changed -**Note:** Version bump only for package @bloom-housing/partners +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [3.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.39...@bloom-housing/partners@3.0.1-alpha.40) (2021-12-01) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -**Note:** Version bump only for package @bloom-housing/partners +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.38...@bloom-housing/partners@3.0.1-alpha.39) (2021-11-30) +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -### Bug Fixes +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* lottery results uploads now save ([#2226](https://github.com/bloom-housing/bloom/issues/2226)) ([8964bba](https://github.com/bloom-housing/bloom/commit/8964bba2deddbd077a049649c26f6fe8b576ed2f)) +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +## [4.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.23...@bloom-housing/partners@4.0.1-alpha.24) (2022-01-13) +### Bug Fixes -## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.37...@bloom-housing/partners@3.0.1-alpha.38) (2021-11-30) +- partners render issue ([#2395](https://github.com/bloom-housing/bloom/issues/2395)) ([7fb108d](https://github.com/bloom-housing/bloom/commit/7fb108d744fcafd6b9df42706d2a2f58fbc30f0a)) +## [4.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.22...@bloom-housing/partners@4.0.1-alpha.23) (2022-01-13) ### Bug Fixes -* **backend:** nginx with heroku configuration ([#2196](https://github.com/bloom-housing/bloom/issues/2196)) ([a1e2630](https://github.com/bloom-housing/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) - +- dates showing as invalid in send by mail section ([#2362](https://github.com/bloom-housing/bloom/issues/2362)) ([3567388](https://github.com/bloom-housing/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate +## [4.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.21...@bloom-housing/partners@4.0.1-alpha.22) (2022-01-13) -## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.36...@bloom-housing/partners@3.0.1-alpha.37) (2021-11-29) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.20...@bloom-housing/partners@4.0.1-alpha.21) (2022-01-11) ### Bug Fixes -* feedback on the waitlist data and display ([9432542](https://github.com/bloom-housing/bloom/commit/9432542efd9ba2e4bf8dd7195895e75f5d2e0623)) +- open house events can now be edited and work cross-browser ([#2320](https://github.com/bloom-housing/bloom/issues/2320)) ([4af6efd](https://github.com/bloom-housing/bloom/commit/4af6efdd29787a93faf1a314073e2e201584214f)) +## [4.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.19...@bloom-housing/partners@4.0.1-alpha.20) (2022-01-11) -### Features - -* simplify Waitlist component and use more flexible schema ([96df149](https://github.com/bloom-housing/bloom/commit/96df1496f377ddfa6f0e6c016c84954b6a43ff4a)) +### Bug Fixes +- add test id ([d4b0ed2](https://github.com/bloom-housing/bloom/commit/d4b0ed2426b7f8aced3b2dd44baf2a438410838d)) +- update naming ([b9c645c](https://github.com/bloom-housing/bloom/commit/b9c645cd1460567f9c35a54c7fd93bc5957d593e)) +- use drag n drop ([a354904](https://github.com/bloom-housing/bloom/commit/a3549045d4f0da64692318f84f0336f1287ad48a)) +## [4.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.18...@bloom-housing/partners@4.0.1-alpha.19) (2022-01-08) +### Bug Fixes +- ensure dayjs parsing strings will work as expected ([eb44939](https://github.com/bloom-housing/bloom/commit/eb449395ebea3a3b4b58eb217df1e1313c722a0d)) -## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.35...@bloom-housing/partners@3.0.1-alpha.36) (2021-11-29) +## [4.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.17...@bloom-housing/partners@4.0.1-alpha.18) (2022-01-07) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.16...@bloom-housing/partners@4.0.1-alpha.17) (2022-01-07) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.15...@bloom-housing/partners@4.0.1-alpha.16) (2022-01-07) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.34...@bloom-housing/partners@3.0.1-alpha.35) (2021-11-29) - +## [4.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.14...@bloom-housing/partners@4.0.1-alpha.15) (2022-01-04) ### Bug Fixes -* cannot save custom mailing, dropoff, or pickup address ([#2207](https://github.com/bloom-housing/bloom/issues/2207)) ([96484b5](https://github.com/bloom-housing/bloom/commit/96484b5676ecb000e492851ee12766ba9e6cd86f)) +- applications drop off address ([d73cdf6](https://github.com/bloom-housing/bloom/commit/d73cdf69fa550bf178a7f433ca9a1bbe2ce678a2)) +- helper imports of form types ([e58ed71](https://github.com/bloom-housing/bloom/commit/e58ed71c703a53a7ab4284e6d7e2c1857cb8ed7b)) +- jest tests in partners now allows jsx ([3fef534](https://github.com/bloom-housing/bloom/commit/3fef534925f8fee6a63a2a99def692b59df83bdd)) +## [4.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.13...@bloom-housing/partners@4.0.1-alpha.14) (2022-01-04) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.12...@bloom-housing/partners@4.0.1-alpha.13) (2022-01-04) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.33...@bloom-housing/partners@3.0.1-alpha.34) (2021-11-23) +## [4.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.11...@bloom-housing/partners@4.0.1-alpha.12) (2022-01-04) **Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.10...@bloom-housing/partners@4.0.1-alpha.11) (2022-01-03) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.9...@bloom-housing/partners@4.0.1-alpha.10) (2022-01-03) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.32...@bloom-housing/partners@3.0.1-alpha.33) (2021-11-23) +## [4.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.8...@bloom-housing/partners@4.0.1-alpha.9) (2022-01-03) -**Note:** Version bump only for package @bloom-housing/partners +### Bug Fixes +- cypress coverage configs ([eec74ee](https://github.com/bloom-housing/bloom/commit/eec74eef138f6af275ae3cfe16262ed215b16907)) +## [4.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.1-alpha.7...@bloom-housing/partners@4.0.1-alpha.8) (2022-01-03) +**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.7) (2022-01-03) -## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.31...@bloom-housing/partners@3.0.1-alpha.32) (2021-11-23) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/partners +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +### Features +- **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) +- password reset message ([0cba6e6](https://github.com/bloom-housing/bloom/commit/0cba6e62b45622a430612672daef5c97c1e6b140)) +### BREAKING CHANGES -## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.30...@bloom-housing/partners@3.0.1-alpha.31) (2021-11-23) +- sign-in pages have been updated -**Note:** Version bump only for package @bloom-housing/partners +## [4.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.6) (2022-01-03) +### Bug Fixes +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +### Features -## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.29...@bloom-housing/partners@3.0.1-alpha.30) (2021-11-23) +- **backend:** add user password expiration ([107c2f0](https://github.com/bloom-housing/bloom/commit/107c2f06e2f8367b52cb7cc8f00e6d9aef751fe0)) +- password reset message ([0cba6e6](https://github.com/bloom-housing/bloom/commit/0cba6e62b45622a430612672daef5c97c1e6b140)) -**Note:** Version bump only for package @bloom-housing/partners +### BREAKING CHANGES +- sign-in pages have been updated +## [4.0.1-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.1) (2021-12-23) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +### BREAKING CHANGES -## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.28...@bloom-housing/partners@3.0.1-alpha.29) (2021-11-23) +- sign-in pages have been updated +## [4.0.1-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@4.0.0...@bloom-housing/partners@4.0.1-alpha.0) (2021-12-23) -### Features +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) -* new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) +### BREAKING CHANGES +- sign-in pages have been updated +# [4.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@3.0.1-alpha.65...@bloom-housing/partners@4.0.0) (2021-12-22) +### Bug Fixes +- partners shared-helpers version ([50f4a06](https://github.com/seanmalbert/bloom/commit/50f4a0658761b8675064a98f316b2dd35b0d3fe0)) -## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.27...@bloom-housing/partners@3.0.1-alpha.28) (2021-11-22) +### Code Refactoring -**Note:** Version bump only for package @bloom-housing/partners +- removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) +### Features +- adds updating open listing modal ([#2288](https://github.com/seanmalbert/bloom/issues/2288)) ([4f6945f](https://github.com/seanmalbert/bloom/commit/4f6945f04d797fad1b3140bcdc74b134ea42810a)) +### BREAKING CHANGES +- moved some helpers from ui-components to shared-helpers -## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.26...@bloom-housing/partners@3.0.1-alpha.27) (2021-11-22) +## [3.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.64...@bloom-housing/partners@3.0.1-alpha.65) (2021-12-15) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.63...@bloom-housing/partners@3.0.1-alpha.64) (2021-12-15) +### Features +- filter partner users ([63566f2](https://github.com/bloom-housing/bloom/commit/63566f206b154031a143b649b986aaecd5181313)) - -## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.25...@bloom-housing/partners@3.0.1-alpha.26) (2021-11-22) +## [3.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.62...@bloom-housing/partners@3.0.1-alpha.63) (2021-12-15) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.61...@bloom-housing/partners@3.0.1-alpha.62) (2021-12-15) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.60...@bloom-housing/partners@3.0.1-alpha.61) (2021-12-14) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.24...@bloom-housing/partners@3.0.1-alpha.25) (2021-11-22) +## [3.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.59...@bloom-housing/partners@3.0.1-alpha.60) (2021-12-14) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.58...@bloom-housing/partners@3.0.1-alpha.59) (2021-12-13) + +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.56...@bloom-housing/partners@3.0.1-alpha.58) (2021-12-13) +### Bug Fixes +- versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([0b1d143](https://github.com/bloom-housing/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) -## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.23...@bloom-housing/partners@3.0.1-alpha.24) (2021-11-17) +## [3.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.55...@bloom-housing/partners@3.0.1-alpha.56) (2021-12-10) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.54...@bloom-housing/partners@3.0.1-alpha.55) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.53...@bloom-housing/partners@3.0.1-alpha.54) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.22...@bloom-housing/partners@3.0.1-alpha.23) (2021-11-16) +## [3.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.52...@bloom-housing/partners@3.0.1-alpha.53) (2021-12-09) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.51...@bloom-housing/partners@3.0.1-alpha.52) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.50...@bloom-housing/partners@3.0.1-alpha.51) (2021-12-08) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.21...@bloom-housing/partners@3.0.1-alpha.22) (2021-11-16) +## [3.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.49...@bloom-housing/partners@3.0.1-alpha.50) (2021-12-07) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.48...@bloom-housing/partners@3.0.1-alpha.49) (2021-12-07) +### Features +- overrides fallback to english, tagalog support ([#2262](https://github.com/bloom-housing/bloom/issues/2262)) ([679ab9b](https://github.com/bloom-housing/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) - -## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.20...@bloom-housing/partners@3.0.1-alpha.21) (2021-11-16) +## [3.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.47...@bloom-housing/partners@3.0.1-alpha.48) (2021-12-07) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.46...@bloom-housing/partners@3.0.1-alpha.47) (2021-12-06) +### Bug Fixes +- Remove description for the partners programs ([#2234](https://github.com/bloom-housing/bloom/issues/2234)) ([2bbbeb5](https://github.com/bloom-housing/bloom/commit/2bbbeb52868d8f4b5ee6723018fa34619073017b)), closes [#1901](https://github.com/bloom-housing/bloom/issues/1901) - -## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.19...@bloom-housing/partners@3.0.1-alpha.20) (2021-11-16) +## [3.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.45...@bloom-housing/partners@3.0.1-alpha.46) (2021-12-06) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.44...@bloom-housing/partners@3.0.1-alpha.45) (2021-12-03) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.43...@bloom-housing/partners@3.0.1-alpha.44) (2021-12-03) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.18...@bloom-housing/partners@3.0.1-alpha.19) (2021-11-15) +## [3.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.42...@bloom-housing/partners@3.0.1-alpha.43) (2021-12-03) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.41...@bloom-housing/partners@3.0.1-alpha.42) (2021-12-01) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.40...@bloom-housing/partners@3.0.1-alpha.41) (2021-12-01) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.17...@bloom-housing/partners@3.0.1-alpha.18) (2021-11-15) +## [3.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.39...@bloom-housing/partners@3.0.1-alpha.40) (2021-12-01) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.38...@bloom-housing/partners@3.0.1-alpha.39) (2021-11-30) +### Bug Fixes +- lottery results uploads now save ([#2226](https://github.com/bloom-housing/bloom/issues/2226)) ([8964bba](https://github.com/bloom-housing/bloom/commit/8964bba2deddbd077a049649c26f6fe8b576ed2f)) +## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.37...@bloom-housing/partners@3.0.1-alpha.38) (2021-11-30) -## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.16...@bloom-housing/partners@3.0.1-alpha.17) (2021-11-15) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/partners +- **backend:** nginx with heroku configuration ([#2196](https://github.com/bloom-housing/bloom/issues/2196)) ([a1e2630](https://github.com/bloom-housing/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) +## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.36...@bloom-housing/partners@3.0.1-alpha.37) (2021-11-29) +### Bug Fixes +- feedback on the waitlist data and display ([9432542](https://github.com/bloom-housing/bloom/commit/9432542efd9ba2e4bf8dd7195895e75f5d2e0623)) +### Features -## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.15...@bloom-housing/partners@3.0.1-alpha.16) (2021-11-12) +- simplify Waitlist component and use more flexible schema ([96df149](https://github.com/bloom-housing/bloom/commit/96df1496f377ddfa6f0e6c016c84954b6a43ff4a)) + +## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.35...@bloom-housing/partners@3.0.1-alpha.36) (2021-11-29) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.34...@bloom-housing/partners@3.0.1-alpha.35) (2021-11-29) + +### Bug Fixes +- cannot save custom mailing, dropoff, or pickup address ([#2207](https://github.com/bloom-housing/bloom/issues/2207)) ([96484b5](https://github.com/bloom-housing/bloom/commit/96484b5676ecb000e492851ee12766ba9e6cd86f)) +## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.33...@bloom-housing/partners@3.0.1-alpha.34) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.14...@bloom-housing/partners@3.0.1-alpha.15) (2021-11-12) +## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.32...@bloom-housing/partners@3.0.1-alpha.33) (2021-11-23) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.31...@bloom-housing/partners@3.0.1-alpha.32) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.30...@bloom-housing/partners@3.0.1-alpha.31) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.13...@bloom-housing/partners@3.0.1-alpha.14) (2021-11-12) +## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.29...@bloom-housing/partners@3.0.1-alpha.30) (2021-11-23) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.28...@bloom-housing/partners@3.0.1-alpha.29) (2021-11-23) +### Features +- new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) - -## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.12...@bloom-housing/partners@3.0.1-alpha.13) (2021-11-11) +## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.27...@bloom-housing/partners@3.0.1-alpha.28) (2021-11-22) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.26...@bloom-housing/partners@3.0.1-alpha.27) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.25...@bloom-housing/partners@3.0.1-alpha.26) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.11...@bloom-housing/partners@3.0.1-alpha.12) (2021-11-11) - - -### Bug Fixes +## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.24...@bloom-housing/partners@3.0.1-alpha.25) (2021-11-22) -* fixes program, preference, ami-chart de-dupe ([#2169](https://github.com/bloom-housing/bloom/issues/2169)) ([3530757](https://github.com/bloom-housing/bloom/commit/35307575bd78f4a0ceee03ae21f07a61e9018bba)) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.23...@bloom-housing/partners@3.0.1-alpha.24) (2021-11-17) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.22...@bloom-housing/partners@3.0.1-alpha.23) (2021-11-16) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.10...@bloom-housing/partners@3.0.1-alpha.11) (2021-11-10) +## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.21...@bloom-housing/partners@3.0.1-alpha.22) (2021-11-16) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.20...@bloom-housing/partners@3.0.1-alpha.21) (2021-11-16) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.19...@bloom-housing/partners@3.0.1-alpha.20) (2021-11-16) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.9...@bloom-housing/partners@3.0.1-alpha.10) (2021-11-09) +## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.18...@bloom-housing/partners@3.0.1-alpha.19) (2021-11-15) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.17...@bloom-housing/partners@3.0.1-alpha.18) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.16...@bloom-housing/partners@3.0.1-alpha.17) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.8...@bloom-housing/partners@3.0.1-alpha.9) (2021-11-09) +## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.15...@bloom-housing/partners@3.0.1-alpha.16) (2021-11-12) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.14...@bloom-housing/partners@3.0.1-alpha.15) (2021-11-12) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.13...@bloom-housing/partners@3.0.1-alpha.14) (2021-11-12) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.7...@bloom-housing/partners@3.0.1-alpha.8) (2021-11-09) +## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.12...@bloom-housing/partners@3.0.1-alpha.13) (2021-11-11) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.11...@bloom-housing/partners@3.0.1-alpha.12) (2021-11-11) +### Bug Fixes +- fixes program, preference, ami-chart de-dupe ([#2169](https://github.com/bloom-housing/bloom/issues/2169)) ([3530757](https://github.com/bloom-housing/bloom/commit/35307575bd78f4a0ceee03ae21f07a61e9018bba)) - -## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.6...@bloom-housing/partners@3.0.1-alpha.7) (2021-11-09) +## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.10...@bloom-housing/partners@3.0.1-alpha.11) (2021-11-10) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.9...@bloom-housing/partners@3.0.1-alpha.10) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.8...@bloom-housing/partners@3.0.1-alpha.9) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/partners -## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.5...@bloom-housing/partners@3.0.1-alpha.6) (2021-11-09) +## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.7...@bloom-housing/partners@3.0.1-alpha.8) (2021-11-09) **Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.6...@bloom-housing/partners@3.0.1-alpha.7) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/partners +## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.5...@bloom-housing/partners@3.0.1-alpha.6) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/partners ## [3.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.4...@bloom-housing/partners@3.0.1-alpha.5) (2021-11-09) - ### Features -* Change unit number field type to text ([#2136](https://github.com/bloom-housing/bloom/issues/2136)) ([f54be7c](https://github.com/bloom-housing/bloom/commit/f54be7c7ba6aac8e00fee610dc86584b60cc212d)) - - - - +- Change unit number field type to text ([#2136](https://github.com/bloom-housing/bloom/issues/2136)) ([f54be7c](https://github.com/bloom-housing/bloom/commit/f54be7c7ba6aac8e00fee610dc86584b60cc212d)) ## [3.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.3...@bloom-housing/partners@3.0.1-alpha.4) (2021-11-09) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.2...@bloom-housing/partners@3.0.1-alpha.3) (2021-11-08) - ### Features -* add Programs section to listings management ([#2093](https://github.com/bloom-housing/bloom/issues/2093)) ([9bd1fe1](https://github.com/bloom-housing/bloom/commit/9bd1fe1033dee0fb7e73756254474471bc304f5e)) - - - - +- add Programs section to listings management ([#2093](https://github.com/bloom-housing/bloom/issues/2093)) ([9bd1fe1](https://github.com/bloom-housing/bloom/commit/9bd1fe1033dee0fb7e73756254474471bc304f5e)) ## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.1...@bloom-housing/partners@3.0.1-alpha.2) (2021-11-08) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [3.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.1-alpha.0...@bloom-housing/partners@3.0.1-alpha.1) (2021-11-08) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [3.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@3.0.0...@bloom-housing/partners@3.0.1-alpha.0) (2021-11-05) - -* 1837/preferences cleanup 3 (#2144) ([3ce6d5e](https://github.com/bloom-housing/bloom/commit/3ce6d5eb5aac49431ec5bf4912dbfcbe9077d84e)), closes [#2144](https://github.com/bloom-housing/bloom/issues/2144) - +- 1837/preferences cleanup 3 (#2144) ([3ce6d5e](https://github.com/bloom-housing/bloom/commit/3ce6d5eb5aac49431ec5bf4912dbfcbe9077d84e)), closes [#2144](https://github.com/bloom-housing/bloom/issues/2144) ### BREAKING CHANGES -* Preferences are now M-N relation with a listing and have an intermediate table with ordinal number +- Preferences are now M-N relation with a listing and have an intermediate table with ordinal number -* refactor(backend): preferences deduplication +- refactor(backend): preferences deduplication So far each listing referenced it's own unique Preferences. This change introduces Many to Many relationship between Preference and Listing entity and forces sharing Preferences between listings. -* feat(backend): extend preferences migration with moving existing relations to a new intermediate tab +- feat(backend): extend preferences migration with moving existing relations to a new intermediate tab -* feat(backend): add Preference - Jurisdiction ManyToMany relation +- feat(backend): add Preference - Jurisdiction ManyToMany relation -* feat: adapt frontend to backend changes +- feat: adapt frontend to backend changes -* fix(backend): typeORM preferences select statement +- fix(backend): typeORM preferences select statement -* fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator +- fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator -* fix(backend): fix missing import in preferences-filter-params.ts +- fix(backend): fix missing import in preferences-filter-params.ts -* refactor: rebase issue +- refactor: rebase issue -* feat: uptake jurisdictional preferences +- feat: uptake jurisdictional preferences -* fix: fixup tests +- fix: fixup tests -* fix: application preferences ignore page, always separate +- fix: application preferences ignore page, always separate -* Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts +- Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts -* fix: preference fetching and ordering/pages +- fix: preference fetching and ordering/pages -* Fix code style issues with Prettier +- Fix code style issues with Prettier -* fix(backend): query User__leasingAgentInListings__jurisdiction_User__leasingAgentIn specified more +- fix(backend): query User**leasingAgentInListings**jurisdiction_User\_\_leasingAgentIn specified more -* fix: perferences cypress tests +- fix: perferences cypress tests Co-authored-by: Michal Plebanski Co-authored-by: Emily Jablonski Co-authored-by: Lint Action - - - - # [3.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@2.0.1-alpha.9...@bloom-housing/partners@3.0.0) (2021-11-05) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [2.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.8...@bloom-housing/partners@2.0.1-alpha.9) (2021-11-05) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [2.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.7...@bloom-housing/partners@2.0.1-alpha.8) (2021-11-04) - ### Reverts -* Revert "refactor: listing preferences and adds jurisdictional filtering" ([41f72c0](https://github.com/bloom-housing/bloom/commit/41f72c0db49cf94d7930f5cfc88f6ee9d6040986)) - - - - +- Revert "refactor: listing preferences and adds jurisdictional filtering" ([41f72c0](https://github.com/bloom-housing/bloom/commit/41f72c0db49cf94d7930f5cfc88f6ee9d6040986)) ## [2.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.6...@bloom-housing/partners@2.0.1-alpha.7) (2021-11-04) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [2.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.5...@bloom-housing/partners@2.0.1-alpha.6) (2021-11-04) - ### Features -* Updates application confirmation numbers ([#2072](https://github.com/bloom-housing/bloom/issues/2072)) ([75cd67b](https://github.com/bloom-housing/bloom/commit/75cd67bcb62280936bdeeaee8c9b7b2583a1339d)) - - - - +- Updates application confirmation numbers ([#2072](https://github.com/bloom-housing/bloom/issues/2072)) ([75cd67b](https://github.com/bloom-housing/bloom/commit/75cd67bcb62280936bdeeaee8c9b7b2583a1339d)) ## [2.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.4...@bloom-housing/partners@2.0.1-alpha.5) (2021-11-03) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [2.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.3...@bloom-housing/partners@2.0.1-alpha.4) (2021-11-03) - ### Bug Fixes -* don't send email confirmation on paper app submission ([#2110](https://github.com/bloom-housing/bloom/issues/2110)) ([7f83b70](https://github.com/bloom-housing/bloom/commit/7f83b70327049245ecfba04ae3aea4e967929b2a)) - - - - +- don't send email confirmation on paper app submission ([#2110](https://github.com/bloom-housing/bloom/issues/2110)) ([7f83b70](https://github.com/bloom-housing/bloom/commit/7f83b70327049245ecfba04ae3aea4e967929b2a)) ## [2.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.2...@bloom-housing/partners@2.0.1-alpha.3) (2021-11-03) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [2.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.1...@bloom-housing/partners@2.0.1-alpha.2) (2021-11-02) - ### Features -* two new common app questions - Household Changes and Household Student ([#2070](https://github.com/bloom-housing/bloom/issues/2070)) ([42a752e](https://github.com/bloom-housing/bloom/commit/42a752ec073c0f5b65374c7a68da1e34b0b1c949)) - - - - +- two new common app questions - Household Changes and Household Student ([#2070](https://github.com/bloom-housing/bloom/issues/2070)) ([42a752e](https://github.com/bloom-housing/bloom/commit/42a752ec073c0f5b65374c7a68da1e34b0b1c949)) ## [2.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.1-alpha.0...@bloom-housing/partners@2.0.1-alpha.1) (2021-11-02) **Note:** Version bump only for package @bloom-housing/partners - - - - ## [2.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0...@bloom-housing/partners@2.0.1-alpha.0) (2021-11-02) - ### Bug Fixes -* Updates lastName on application save ([aff87ec](https://github.com/bloom-housing/bloom/commit/aff87ec99ad2fbd4a1f9a6853157ea7770f85a56)) - - - - +- Updates lastName on application save ([aff87ec](https://github.com/bloom-housing/bloom/commit/aff87ec99ad2fbd4a1f9a6853157ea7770f85a56)) # [2.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.26...@bloom-housing/partners@2.0.0) (2021-11-02) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.25...@bloom-housing/partners@2.0.0-pre-tailwind.26) (2021-11-02) - ### Code Refactoring -* listing preferences and adds jurisdictional filtering ([9f661b4](https://github.com/bloom-housing/bloom/commit/9f661b43921ec939bd1bf5709c934ad6f56dd859)) - +- listing preferences and adds jurisdictional filtering ([9f661b4](https://github.com/bloom-housing/bloom/commit/9f661b43921ec939bd1bf5709c934ad6f56dd859)) ### BREAKING CHANGES -* updates preference relationship with listings - - - - +- updates preference relationship with listings # [2.0.0-pre-tailwind.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.24...@bloom-housing/partners@2.0.0-pre-tailwind.25) (2021-11-01) - ### Bug Fixes -* reverts preferences to re-add as breaking/major bump ([4f7d893](https://github.com/bloom-housing/bloom/commit/4f7d89327361b3b28b368c23cfd24e6e8123a0a8)) - - - - +- reverts preferences to re-add as breaking/major bump ([4f7d893](https://github.com/bloom-housing/bloom/commit/4f7d89327361b3b28b368c23cfd24e6e8123a0a8)) # [2.0.0-pre-tailwind.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.23...@bloom-housing/partners@2.0.0-pre-tailwind.24) (2021-10-30) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.22...@bloom-housing/partners@2.0.0-pre-tailwind.23) (2021-10-30) - -* Preferences cleanup (#1947) ([7329a58](https://github.com/bloom-housing/bloom/commit/7329a58cc9242faf647459e46de1e3cff3fe9c9d)), closes [#1947](https://github.com/bloom-housing/bloom/issues/1947) - +- Preferences cleanup (#1947) ([7329a58](https://github.com/bloom-housing/bloom/commit/7329a58cc9242faf647459e46de1e3cff3fe9c9d)), closes [#1947](https://github.com/bloom-housing/bloom/issues/1947) ### BREAKING CHANGES -* Preferences are now M-N relation with a listing and have an intermediate table with ordinal number +- Preferences are now M-N relation with a listing and have an intermediate table with ordinal number -* refactor(backend): preferences deduplication +- refactor(backend): preferences deduplication So far each listing referenced it's own unique Preferences. This change introduces Many to Many relationship between Preference and Listing entity and forces sharing Preferences between listings. -* feat(backend): extend preferences migration with moving existing relations to a new intermediate tab +- feat(backend): extend preferences migration with moving existing relations to a new intermediate tab -* feat(backend): add Preference - Jurisdiction ManyToMany relation +- feat(backend): add Preference - Jurisdiction ManyToMany relation -* feat: adapt frontend to backend changes +- feat: adapt frontend to backend changes -* fix(backend): typeORM preferences select statement +- fix(backend): typeORM preferences select statement -* fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator +- fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator -* fix(backend): fix missing import in preferences-filter-params.ts +- fix(backend): fix missing import in preferences-filter-params.ts -* refactor: rebase issue +- refactor: rebase issue -* feat: uptake jurisdictional preferences +- feat: uptake jurisdictional preferences -* fix: fixup tests +- fix: fixup tests -* fix: application preferences ignore page, always separate +- fix: application preferences ignore page, always separate -* Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts +- Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts -* fix: preference fetching and ordering/pages +- fix: preference fetching and ordering/pages -* Fix code style issues with Prettier +- Fix code style issues with Prettier -* fix(backend): query User__leasingAgentInListings__jurisdiction_User__leasingAgentIn specified more +- fix(backend): query User**leasingAgentInListings**jurisdiction_User\_\_leasingAgentIn specified more -* fix: perferences cypress tests +- fix: perferences cypress tests Co-authored-by: Emily Jablonski Co-authored-by: Sean Albert Co-authored-by: Lint Action - - - - # [2.0.0-pre-tailwind.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.21...@bloom-housing/partners@2.0.0-pre-tailwind.22) (2021-10-29) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.20...@bloom-housing/partners@2.0.0-pre-tailwind.21) (2021-10-29) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.19...@bloom-housing/partners@2.0.0-pre-tailwind.20) (2021-10-29) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.18...@bloom-housing/partners@2.0.0-pre-tailwind.19) (2021-10-29) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.17...@bloom-housing/partners@2.0.0-pre-tailwind.18) (2021-10-29) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.16...@bloom-housing/partners@2.0.0-pre-tailwind.17) (2021-10-29) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.15...@bloom-housing/partners@2.0.0-pre-tailwind.16) (2021-10-28) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.14...@bloom-housing/partners@2.0.0-pre-tailwind.15) (2021-10-28) - ### Bug Fixes -* in listings management keep empty strings, remove empty objects ([#2064](https://github.com/bloom-housing/bloom/issues/2064)) ([c4b1e83](https://github.com/bloom-housing/bloom/commit/c4b1e833ec128f457015ac7ffa421ee6047083d9)) - - - - +- in listings management keep empty strings, remove empty objects ([#2064](https://github.com/bloom-housing/bloom/issues/2064)) ([c4b1e83](https://github.com/bloom-housing/bloom/commit/c4b1e833ec128f457015ac7ffa421ee6047083d9)) # [2.0.0-pre-tailwind.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.13...@bloom-housing/partners@2.0.0-pre-tailwind.14) (2021-10-27) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.12...@bloom-housing/partners@2.0.0-pre-tailwind.13) (2021-10-26) - ### Bug Fixes -* Incorrect listing status ([#2015](https://github.com/bloom-housing/bloom/issues/2015)) ([48aa14e](https://github.com/bloom-housing/bloom/commit/48aa14eb522cb8e4d0a25fdeadcc392b30d7f1a9)) - - - - +- Incorrect listing status ([#2015](https://github.com/bloom-housing/bloom/issues/2015)) ([48aa14e](https://github.com/bloom-housing/bloom/commit/48aa14eb522cb8e4d0a25fdeadcc392b30d7f1a9)) # [2.0.0-pre-tailwind.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.11...@bloom-housing/partners@2.0.0-pre-tailwind.12) (2021-10-25) - ### Bug Fixes -* duplicate unit during Copy & New and Save & New ([#1963](https://github.com/bloom-housing/bloom/issues/1963)) ([d597a3f](https://github.com/bloom-housing/bloom/commit/d597a3f57ed4c489804e10e3b6bac99e5f9bedcc)) - - - - +- duplicate unit during Copy & New and Save & New ([#1963](https://github.com/bloom-housing/bloom/issues/1963)) ([d597a3f](https://github.com/bloom-housing/bloom/commit/d597a3f57ed4c489804e10e3b6bac99e5f9bedcc)) # [2.0.0-pre-tailwind.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.10...@bloom-housing/partners@2.0.0-pre-tailwind.11) (2021-10-25) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.9...@bloom-housing/partners@2.0.0-pre-tailwind.10) (2021-10-22) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.8...@bloom-housing/partners@2.0.0-pre-tailwind.9) (2021-10-22) - ### Bug Fixes -* makes listing programs optional ([fbe7134](https://github.com/bloom-housing/bloom/commit/fbe7134348e59e3fdb86663cfdca7648655e7b4b)) - - - - +- makes listing programs optional ([fbe7134](https://github.com/bloom-housing/bloom/commit/fbe7134348e59e3fdb86663cfdca7648655e7b4b)) # [2.0.0-pre-tailwind.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.7...@bloom-housing/partners@2.0.0-pre-tailwind.8) (2021-10-22) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.6...@bloom-housing/partners@2.0.0-pre-tailwind.7) (2021-10-22) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.5...@bloom-housing/partners@2.0.0-pre-tailwind.6) (2021-10-22) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.4...@bloom-housing/partners@2.0.0-pre-tailwind.5) (2021-10-22) - ### Bug Fixes -* do not show login required on forgot password page ([6578dda](https://github.com/bloom-housing/bloom/commit/6578dda1db68b9d63058900ae7e847f7b7021912)) - - - - +- do not show login required on forgot password page ([6578dda](https://github.com/bloom-housing/bloom/commit/6578dda1db68b9d63058900ae7e847f7b7021912)) # [2.0.0-pre-tailwind.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.3...@bloom-housing/partners@2.0.0-pre-tailwind.4) (2021-10-22) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.2...@bloom-housing/partners@2.0.0-pre-tailwind.3) (2021-10-21) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.1...@bloom-housing/partners@2.0.0-pre-tailwind.2) (2021-10-21) **Note:** Version bump only for package @bloom-housing/partners - - - - # [2.0.0-pre-tailwind.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/partners@2.0.0-pre-tailwind.0...@bloom-housing/partners@2.0.0-pre-tailwind.1) (2021-10-19) ### Bug Fixes diff --git a/sites/partners/cypress/e2e/default/03-listing.spec.ts b/sites/partners/cypress/e2e/default/03-listing.spec.ts index 37276eab79..7a316d99da 100644 --- a/sites/partners/cypress/e2e/default/03-listing.spec.ts +++ b/sites/partners/cypress/e2e/default/03-listing.spec.ts @@ -18,7 +18,7 @@ describe("Listing Management Tests", () => { cy.getByID("name-error").contains("This field is required") cy.getByID("jurisdictions.id-error").contains("This field is required") // Fill out minimum fields and errors get removed - cy.getByID("jurisdictions.id").select("Bloomington") + cy.getByID("jurisdictions.id").select("Alameda") cy.getByID("jurisdictions.id-error").should("have.length", 0) cy.getByID("name").type("Test - error messaging") cy.getByID("name-error").should("to.be.empty") @@ -169,7 +169,6 @@ describe("Listing Management Tests", () => { cy.getByID("specialNotes").type(listing["specialNotes"]) cy.get("button").contains("Application Process").click() cy.getByID("reviewOrderFCFS").check() - cy.getByID("dueDateQuestionNo").check() cy.getByID("waitlistOpenNo").check() cy.getByID("leasingAgentName").type(listing["leasingAgentName"]) cy.getByID("leasingAgentEmail").type(listing["leasingAgentEmail"]) @@ -286,10 +285,6 @@ describe("Listing Management Tests", () => { cy.getByID("programRules").contains(listing["programRules"]) cy.getByID("specialNotes").contains(listing["specialNotes"]) cy.getByID("reviewOrderQuestion").contains("First come first serve") - cy.getByID("dueDateQuestion").contains("No") - cy.getByID("whatToExpect").contains( - "Applicants will be contacted by the property agent in rank order until vacancies are filled. All of the information that you have provided will be verified and your eligibility confirmed. Your application will be removed from the waitlist if you have made any fraudulent statements. If we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized. Should your application be chosen, be prepared to fill out a more detailed application and provide required supporting documents." - ) cy.getByID("leasingAgentName").contains(listing["leasingAgentName"]) cy.getByID("leasingAgentEmail").contains(listing["leasingAgentEmail"].toLowerCase()) cy.getByID("leasingAgentPhone").contains("(520) 245-8811") diff --git a/sites/partners/cypress/e2e/default/06-admin-user-mangement.spec.ts b/sites/partners/cypress/e2e/default/06-admin-user-mangement.spec.ts index 10d7cf253e..4235bca026 100644 --- a/sites/partners/cypress/e2e/default/06-admin-user-mangement.spec.ts +++ b/sites/partners/cypress/e2e/default/06-admin-user-mangement.spec.ts @@ -145,8 +145,8 @@ describe("Admin User Mangement Tests", () => { ) }) cy.getByTestId("jurisdictions").first().click() - cy.getByTestId("listings_Bloomington").first().click() - cy.getByTestId("listings_Bloomington").last().click() + cy.getByTestId("listings_Alameda").first().click() + cy.getByTestId("listings_Alameda").last().click() cy.getByID("invite-user").click() cy.getByTestId("alert-box").contains("Invite sent").should("have.text", "Invite sent") }) diff --git a/sites/partners/cypress/e2e/default/07-jurisdictional-admin-user-management.spec.ts b/sites/partners/cypress/e2e/default/07-jurisdictional-admin-user-management.spec.ts index 865232740c..cf79299aa5 100644 --- a/sites/partners/cypress/e2e/default/07-jurisdictional-admin-user-management.spec.ts +++ b/sites/partners/cypress/e2e/default/07-jurisdictional-admin-user-management.spec.ts @@ -82,8 +82,8 @@ describe("Jurisdictional Admin User Mangement Tests", () => { [] ) }) - cy.getByTestId("listings_Bloomington").first().click() - cy.getByTestId("listings_Bloomington").last().click() + cy.getByTestId("listings_Alameda").first().click() + cy.getByTestId("listings_Alameda").last().click() cy.getByID("invite-user").click() cy.getByTestId("alert-box").contains("Invite sent").should("have.text", "Invite sent") }) diff --git a/sites/partners/cypress/e2e/default/08-preference-management.spec.ts b/sites/partners/cypress/e2e/default/08-preference-management.spec.ts index 583e548f32..5bbd08aa4f 100644 --- a/sites/partners/cypress/e2e/default/08-preference-management.spec.ts +++ b/sites/partners/cypress/e2e/default/08-preference-management.spec.ts @@ -43,7 +43,7 @@ describe("Preference Management Tests", () => { cy.getByTestId("preference-opt-out-label").clear() cy.getByTestId("preference-opt-out-label").type("Preference Opt Out Label") - cy.getByTestId("preference-jurisdiction").select("Bloomington") + cy.getByTestId("preference-jurisdiction").select("Alameda") cy.getByID("preference-save-button").click() cy.getByTestId("alert-box") .contains("Preference Created") @@ -80,7 +80,7 @@ describe("Preference Management Tests", () => { cy.getByTestId("preference-opt-out-label").should("have.value", "Preference Opt Out Label") cy.getByTestId("show-on-listing-question-yes").should("have.value", "yes") - cy.getByTestId("preference-jurisdiction").contains("Bloomington") + cy.getByTestId("preference-jurisdiction").contains("Alameda") cy.getByID("preference-save-button").click() }) }) diff --git a/sites/partners/cypress/fixtures/createJurisdictionalAdminUser.json b/sites/partners/cypress/fixtures/createJurisdictionalAdminUser.json index 3afc884d3f..c02c77b8c5 100644 --- a/sites/partners/cypress/fixtures/createJurisdictionalAdminUser.json +++ b/sites/partners/cypress/fixtures/createJurisdictionalAdminUser.json @@ -3,5 +3,5 @@ "lastName": "Admin User", "email": "exampleAdminUser+jurisAdmin@example.com", "role": "jurisdictionalAdmin", - "jurisdictions": "Bloomington" + "jurisdictions": "Alameda" } diff --git a/sites/partners/cypress/fixtures/createJurisdictionalAdminUser2.json b/sites/partners/cypress/fixtures/createJurisdictionalAdminUser2.json index 9cbebf1feb..f8049b2581 100644 --- a/sites/partners/cypress/fixtures/createJurisdictionalAdminUser2.json +++ b/sites/partners/cypress/fixtures/createJurisdictionalAdminUser2.json @@ -3,5 +3,5 @@ "lastName": "Admin User 2", "email": "exampleAdminUser+jurisAdmin2@example.com", "role": "jurisdictionalAdmin", - "jurisdictions": "Bloomington" + "jurisdictions": "Alameda" } diff --git a/sites/partners/cypress/fixtures/createPartnerUser.json b/sites/partners/cypress/fixtures/createPartnerUser.json index 5457787fe8..2bd1b269da 100644 --- a/sites/partners/cypress/fixtures/createPartnerUser.json +++ b/sites/partners/cypress/fixtures/createPartnerUser.json @@ -3,5 +3,5 @@ "lastName": "Partner User", "email": "examplePartnerUser@example.com", "role": "partner", - "jurisdictions": "Bloomington" + "jurisdictions": "Alameda" } diff --git a/sites/partners/cypress/fixtures/createPartnerUser2.json b/sites/partners/cypress/fixtures/createPartnerUser2.json index 6832a6b7d7..90ad10c4c6 100644 --- a/sites/partners/cypress/fixtures/createPartnerUser2.json +++ b/sites/partners/cypress/fixtures/createPartnerUser2.json @@ -3,5 +3,5 @@ "lastName": "Partner User 2", "email": "examplePartnerUser2@example.com", "role": "partner", - "jurisdictions": "Bloomington" + "jurisdictions": "Alameda" } diff --git a/sites/partners/cypress/fixtures/listing.json b/sites/partners/cypress/fixtures/listing.json index 27a2b04f82..41a33fc8ef 100644 --- a/sites/partners/cypress/fixtures/listing.json +++ b/sites/partners/cypress/fixtures/listing.json @@ -1,5 +1,5 @@ { - "jurisdiction.id": "Bloomington", + "jurisdiction.id": "Alameda", "name": "Basic Test Listing", "developer": "Basic Test Developer", "buildingAddress.street": "548 Market St. #59930", diff --git a/sites/partners/src/components/listings/PaperListingDetails/sections/DetailRankingsAndResults.tsx b/sites/partners/src/components/listings/PaperListingDetails/sections/DetailRankingsAndResults.tsx index 9a68c83a62..043aef111f 100644 --- a/sites/partners/src/components/listings/PaperListingDetails/sections/DetailRankingsAndResults.tsx +++ b/sites/partners/src/components/listings/PaperListingDetails/sections/DetailRankingsAndResults.tsx @@ -73,7 +73,6 @@ const DetailRankingsAndResults = () => { )} - {getDetailFieldString(listing.whatToExpect)} diff --git a/sites/partners/src/components/listings/PaperListingForm/sections/ApplicationDates.tsx b/sites/partners/src/components/listings/PaperListingForm/sections/ApplicationDates.tsx index 59dbf4f1a6..20cda48489 100644 --- a/sites/partners/src/components/listings/PaperListingForm/sections/ApplicationDates.tsx +++ b/sites/partners/src/components/listings/PaperListingForm/sections/ApplicationDates.tsx @@ -1,8 +1,7 @@ import React, { useState, useMemo } from "react" -import { useWatch, useFormContext } from "react-hook-form" +import { useFormContext } from "react-hook-form" import { getDetailFieldDate, getDetailFieldTime } from "../../PaperListingDetails/sections/helpers" import dayjs from "dayjs" -import { YesNoEnum } from "@bloom-housing/shared-helpers/src/types/backend-swagger" import { t, DateField, TimeField, Drawer, MinimalTable, Modal } from "@bloom-housing/ui-components" import { Button, Link, Grid } from "@bloom-housing/ui-seeds" import { FormListing, TempEvent } from "../../../../lib/listings/formTypes" @@ -68,12 +67,7 @@ const ApplicationDates = ({ const formMethods = useFormContext() // eslint-disable-next-line @typescript-eslint/unbound-method - const { register, watch, control } = formMethods - - const enableDueDate = useWatch({ - control, - name: "dueDateQuestion", - }) + const { register, watch } = formMethods const [drawerOpenHouse, setDrawerOpenHouse] = useState(false) const [modalDeleteOpenHouse, setModalDeleteOpenHouse] = useState(null) @@ -114,7 +108,6 @@ const ApplicationDates = ({ register={register} watch={watch} note={t("listings.whenApplicationsClose")} - disabled={enableDueDate === YesNoEnum.no} defaultDate={{ month: listing?.applicationDueDate ? dayjs(new Date(listing?.applicationDueDate)).format("MM") @@ -135,22 +128,15 @@ const ApplicationDates = ({ id={"applicationDueTimeField"} register={register} watch={watch} - disabled={enableDueDate === YesNoEnum.no} defaultValues={{ hours: listing?.applicationDueDate ? dayjs(new Date(listing?.applicationDueDate)).format("hh") - : enableDueDate === YesNoEnum.no - ? null : "05", minutes: listing?.applicationDueDate ? dayjs(new Date(listing?.applicationDueDate)).format("mm") - : enableDueDate === YesNoEnum.no - ? null : "00", seconds: listing?.applicationDueDate ? dayjs(new Date(listing?.applicationDueDate)).format("ss") - : enableDueDate === YesNoEnum.no - ? null : "00", period: listing?.applicationDueDate ? new Date(listing?.applicationDueDate).getHours() >= 12 diff --git a/sites/partners/src/components/listings/PaperListingForm/sections/RankingsAndResults.tsx b/sites/partners/src/components/listings/PaperListingForm/sections/RankingsAndResults.tsx index 1a764bea44..4eb24c59bb 100644 --- a/sites/partners/src/components/listings/PaperListingForm/sections/RankingsAndResults.tsx +++ b/sites/partners/src/components/listings/PaperListingForm/sections/RankingsAndResults.tsx @@ -93,30 +93,6 @@ const RankingsAndResults = ({ listing }: RankingsAndResultsProps) => { )} - {reviewOrder === "reviewOrderFCFS" && ( - - -

{t("listings.dueDateQuestion")}

- -
-
- )} {reviewOrder === "reviewOrderLottery" && ( <> diff --git a/sites/partners/src/lib/listings/formTypes.ts b/sites/partners/src/lib/listings/formTypes.ts index 74f2845b14..fd707cfb1c 100644 --- a/sites/partners/src/lib/listings/formTypes.ts +++ b/sites/partners/src/lib/listings/formTypes.ts @@ -134,8 +134,6 @@ export const formDefaults: FormListing = { waitlistMaxSize: null, isWaitlistOpen: null, waitlistOpenSpots: null, - whatToExpect: - "Applicants will be contacted by the property agent in rank order until vacancies are filled. All of the information that you have provided will be verified and your eligibility confirmed. Your application will be removed from the waitlist if you have made any fraudulent statements. If we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized. Should your application be chosen, be prepared to fill out a more detailed application and provide required supporting documents.", units: [], accessibility: "", amenities: "", diff --git a/sites/partners/src/lib/translations.ts b/sites/partners/src/lib/translations.ts index 3f99876fdd..4d9a2bb6e9 100644 --- a/sites/partners/src/lib/translations.ts +++ b/sites/partners/src/lib/translations.ts @@ -4,7 +4,7 @@ import chineseTranslations from "@bloom-housing/shared-helpers/src/locales/zh.js import vietnameseTranslations from "@bloom-housing/shared-helpers/src/locales/vi.json" import tagalogTranslations from "@bloom-housing/shared-helpers/src/locales/tl.json" -import additionalGeneralTranslations from "../../page_content/locale_overrides/general.json" +import additionalGeneralTranslations from "../page_content/locale_overrides/general.json" /* eslint-disable @typescript-eslint/no-explicit-any */ export const translations = { diff --git a/sites/partners/page_content/locale_overrides/general.json b/sites/partners/src/page_content/locale_overrides/general.json similarity index 94% rename from sites/partners/page_content/locale_overrides/general.json rename to sites/partners/src/page_content/locale_overrides/general.json index df139e8ba3..47e1fec451 100644 --- a/sites/partners/page_content/locale_overrides/general.json +++ b/sites/partners/src/page_content/locale_overrides/general.json @@ -182,7 +182,6 @@ "listings.details.updatedDate": "Date Updated", "listings.developer": "Housing Developer", "listings.dropOffAddress": "Drop Off Address", - "listings.dueDateQuestion": "Is there an application due date?", "listings.editPreferences": "Edit Preferences", "listings.editPhotos": "Edit Photos", "listings.events.deleteConf": "Do you really want to delete this event?", @@ -453,5 +452,19 @@ "users.resendInvite": "Resend Invite", "users.totalUsers": "total users", "users.unconfirmed": "Unconfirmed", - "users.userDetails": "User Details" + "users.userDetails": "User Details", + "users.exportSuccess": "The File has been exported", + "application.programs.VHHP.veteran.label": "Veteran", + "application.programs.VHHP.veteranStatus.label": "Veteran Status", + "application.preferences.oaklandHousingAuthority.liveOrWork.label": "Live or Work", + "application.preferences.oaklandHousingAuthority.family.label": "Family", + "application.preferences.oaklandHousingAuthority.veteran.label": "Veteran", + "application.preferences.southAlamedaCounty.live.label": "Live in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.work.label": "Work in Fremont, Newark or Union City", + "application.preferences.fremontPref.live.label": "Live in Fremont: At least one member of my household lives* in the City of Fremont", + "application.preferences.fremontPref.title": "Live or work in the City of Fremont ", + "application.preferences.fremontPref.work.label": "Work in Fremont: At least one member of my household works** in the City of Fremont", + "application.preferences.emeryvillePref.live.label": "At least one member of my household lives in the Emeryville", + "application.preferences.emeryvillePref.work.label": "At least one member of my household works at least 50% of weekly hours in Emeryville", + "application.preferences.emeryvillePref.child.label": "I have a child enrolled in the Emeryville Unified School District (EUSD) or Emeryville Child Development Center (ECDC)" } diff --git a/sites/public/.env.template b/sites/public/.env.template index fc7defa67c..44d0714a81 100644 --- a/sites/public/.env.template +++ b/sites/public/.env.template @@ -16,13 +16,15 @@ NEW_RELIC_APP_NAME=Bloom Public NEW_RELIC_LICENSE_KEY= SENTRY_ORG= +GA_KEY=G-KRK27XFF6M +# this GTM key is for local development only +GTM_KEY=GTM-KF22FJP +DOORWAY_URL=https://dev.doorway.housingbayarea.org + # YYYY-MM-DD HH:mm Z,YYYY-MM-DD HH:mm Z # 2024-02-05 18:00 -08:00,2024-02-05 18:55 -08:00 MAINTENANCE_WINDOW= -# this GTM key is for local development only -GTM_KEY=GTM-KF22FJP - # feature toggles SHOW_MANDATED_ACCOUNTS=FALSE SHOW_PWDLESS=FALSE diff --git a/sites/public/CHANGELOG.md b/sites/public/CHANGELOG.md index 2aaf16afcb..713866291c 100644 --- a/sites/public/CHANGELOG.md +++ b/sites/public/CHANGELOG.md @@ -2187,792 +2187,114 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. # [5.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.4.0...@bloom-housing/public@5.0.0) (2022-06-16) +**Note:** Version bump only for package @bloom-housing/public -* 2022-06-16 release (#2824) ([1abd991](https://github.com/seanmalbert/bloom/commit/1abd991136e28598b7856164b88bef462b8ff566)), closes [#2824](https://github.com/seanmalbert/bloom/issues/2824) [#2521](https://github.com/seanmalbert/bloom/issues/2521) [#2504](https://github.com/seanmalbert/bloom/issues/2504) [#2520](https://github.com/seanmalbert/bloom/issues/2520) [#2517](https://github.com/seanmalbert/bloom/issues/2517) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2529](https://github.com/seanmalbert/bloom/issues/2529) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2540](https://github.com/seanmalbert/bloom/issues/2540) [#2528](https://github.com/seanmalbert/bloom/issues/2528) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2545](https://github.com/seanmalbert/bloom/issues/2545) [#2526](https://github.com/seanmalbert/bloom/issues/2526) [#2532](https://github.com/seanmalbert/bloom/issues/2532) [#2551](https://github.com/seanmalbert/bloom/issues/2551) [#2562](https://github.com/seanmalbert/bloom/issues/2562) [#2566](https://github.com/seanmalbert/bloom/issues/2566) [#2572](https://github.com/seanmalbert/bloom/issues/2572) [#2546](https://github.com/seanmalbert/bloom/issues/2546) [#2578](https://github.com/seanmalbert/bloom/issues/2578) [#2579](https://github.com/seanmalbert/bloom/issues/2579) [#2581](https://github.com/seanmalbert/bloom/issues/2581) [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2574](https://github.com/seanmalbert/bloom/issues/2574) [#2577](https://github.com/seanmalbert/bloom/issues/2577) [#2590](https://github.com/seanmalbert/bloom/issues/2590) [#2592](https://github.com/seanmalbert/bloom/issues/2592) [#2560](https://github.com/seanmalbert/bloom/issues/2560) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2599](https://github.com/seanmalbert/bloom/issues/2599) [#2600](https://github.com/seanmalbert/bloom/issues/2600) [#2598](https://github.com/seanmalbert/bloom/issues/2598) [#2582](https://github.com/seanmalbert/bloom/issues/2582) [#2531](https://github.com/seanmalbert/bloom/issues/2531) [#2615](https://github.com/seanmalbert/bloom/issues/2615) [#2606](https://github.com/seanmalbert/bloom/issues/2606) [#2618](https://github.com/seanmalbert/bloom/issues/2618) [#2620](https://github.com/seanmalbert/bloom/issues/2620) [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2563](https://github.com/seanmalbert/bloom/issues/2563) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2635](https://github.com/seanmalbert/bloom/issues/2635) [#2624](https://github.com/seanmalbert/bloom/issues/2624) [#2642](https://github.com/seanmalbert/bloom/issues/2642) [#2652](https://github.com/seanmalbert/bloom/issues/2652) [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2658](https://github.com/seanmalbert/bloom/issues/2658) [#2653](https://github.com/seanmalbert/bloom/issues/2653) [#2630](https://github.com/seanmalbert/bloom/issues/2630) [#2612](https://github.com/seanmalbert/bloom/issues/2612) [#2672](https://github.com/seanmalbert/bloom/issues/2672) [#2558](https://github.com/seanmalbert/bloom/issues/2558) [#2604](https://github.com/seanmalbert/bloom/issues/2604) [#2625](https://github.com/seanmalbert/bloom/issues/2625) [#2650](https://github.com/seanmalbert/bloom/issues/2650) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2603](https://github.com/seanmalbert/bloom/issues/2603) [#2648](https://github.com/seanmalbert/bloom/issues/2648) [#2673](https://github.com/seanmalbert/bloom/issues/2673) [#2661](https://github.com/seanmalbert/bloom/issues/2661) [#2676](https://github.com/seanmalbert/bloom/issues/2676) [#2680](https://github.com/seanmalbert/bloom/issues/2680) [#2597](https://github.com/seanmalbert/bloom/issues/2597) [#2686](https://github.com/seanmalbert/bloom/issues/2686) [#2683](https://github.com/seanmalbert/bloom/issues/2683) [#2657](https://github.com/seanmalbert/bloom/issues/2657) [#2693](https://github.com/seanmalbert/bloom/issues/2693) [#2694](https://github.com/seanmalbert/bloom/issues/2694) [#2616](https://github.com/seanmalbert/bloom/issues/2616) [#2703](https://github.com/seanmalbert/bloom/issues/2703) [#2697](https://github.com/seanmalbert/bloom/issues/2697) [#2691](https://github.com/seanmalbert/bloom/issues/2691) [#2687](https://github.com/seanmalbert/bloom/issues/2687) [#2700](https://github.com/seanmalbert/bloom/issues/2700) [#2677](https://github.com/seanmalbert/bloom/issues/2677) [#2682](https://github.com/seanmalbert/bloom/issues/2682) [#2689](https://github.com/seanmalbert/bloom/issues/2689) [#2675](https://github.com/seanmalbert/bloom/issues/2675) [#2713](https://github.com/seanmalbert/bloom/issues/2713) [#2702](https://github.com/seanmalbert/bloom/issues/2702) [#2704](https://github.com/seanmalbert/bloom/issues/2704) [#2719](https://github.com/seanmalbert/bloom/issues/2719) [#2714](https://github.com/seanmalbert/bloom/issues/2714) [#2543](https://github.com/seanmalbert/bloom/issues/2543) [#2728](https://github.com/seanmalbert/bloom/issues/2728) [#2692](https://github.com/seanmalbert/bloom/issues/2692) [#2732](https://github.com/seanmalbert/bloom/issues/2732) [#2749](https://github.com/seanmalbert/bloom/issues/2749) [#2744](https://github.com/seanmalbert/bloom/issues/2744) [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) - - -### BREAKING CHANGES - -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version - -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 - -* feat: ami chart jurisdictionalized - -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 - -* refactor: make backend a peer dependency in ui-components - -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 - -* feat: add a phone number column to the user_accounts table - -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a - -* chore: removes application program partners - -* chore: removes application program display - -* Revert "chore: removes application program display" - -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. - -* Revert "chore: removes application program partners" - -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. - -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version - -* fix: choose-language context - -* chore(release): version - -* fix: applications/view hide prefs - -* chore(release): version - -* feat: overrides fallback to english, tagalog support - -* chore(release): version - -* fix: account translations - -* chore(release): version - -* fix: units with invalid ami chart - -* chore(release): version - -* fix: remove description for the partners programs - -* fix: fix modal styles on mobile - -* fix: visual improvement to programs form display - -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version - -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 - -* feat: ami chart jurisdictionalized - -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 - -* refactor: make backend a peer dependency in ui-components - -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 - -* feat: add a phone number column to the user_accounts table - -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a - -* chore: removes application program partners - -* chore: removes application program display - -* Revert "chore: removes application program display" - -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. - -* Revert "chore: removes application program partners" - -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. - -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version - -* fix: choose-language context - -* chore(release): version - -* fix: applications/view hide prefs - -* chore(release): version - -* feat: overrides fallback to english, tagalog support - -* chore(release): version - -* fix: account translations - -* chore(release): version - -* fix: units with invalid ami chart - -* chore(release): version - -* fix: remove description for the partners programs - -* fix: fix modal styles on mobile - -* fix: visual improvement to programs form display - -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes - -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e - -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 - -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c - -* fix: app submission w/ no due date - -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc - -* feat: adds new preferences, reserved community type - -* feat: adds bottom border to preferences - -* feat: updates preference string - -* fix: preference cleanup for avance - -* refactor: remove applicationAddress - -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f - -* feat: refactor and add public site application flow cypress tests - -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 - -* feat: better seed data for ami-charts - -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 - -* feat: adds listing management cypress tests to partner portal - -* fix: listings management keep empty strings, remove empty objects - -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 - -* feat: one month rent - -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 - -* test: view.spec.ts test - -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb - -* refactor: removes jsonpath - -picked from dev deb39acc005607ce3076942b1f49590d08afc10c - -* feat: adds jurisdictions to pref seeds - -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - -* feat: new demographics sub-race questions - -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - -* feat: updates email confirmation for lottery - -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 - -* fix: add ariaHidden to Icon component - -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be - -* fix: add ariaLabel prop to Button component - -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 - -* fix: change the yes/no radio text to be more descriptive - -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f - -* fix: remove alameda reference in demographics - -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d - -* chore: release version -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +# [7.3.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.2.3...@bloom-housing/public@7.3.0) (2023-01-26) -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +### Features -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +* add description for FCFS in listing aside ([#3255](https://github.com/bloom-housing/bloom/issues/3255)) ([4905c31](https://github.com/bloom-housing/bloom/commit/4905c3173e96835f072c692934e326b0a0d7f626)) +* delete ui-c folder ([#3229](https://github.com/bloom-housing/bloom/issues/3229)) ([7472558](https://github.com/bloom-housing/bloom/commit/74725586e0c10c504087ffa4f8f621863a471ebd)) -* chore: removes application program partners -* chore: removes application program display -* Revert "chore: removes application program display" -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +## [7.2.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.2.2...@bloom-housing/public@7.2.3) (2022-12-23) -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +**Note:** Version bump only for package @bloom-housing/public -* chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing -* chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +## [7.2.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.2.1...@bloom-housing/public@7.2.2) (2022-12-22) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public -* chore: converge on one axios version, remove peer dependency -* chore(release): version -* feat: simplify Waitlist component and use more flexible schema -* chore(release): version -* fix: lottery results uploads now save +## [7.2.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.2.0...@bloom-housing/public@7.2.1) (2022-12-13) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public -* feat: add SRO unit type -* chore(release): version -* fix: paper application submission -* chore(release): version -* fix: choose-language context +# [7.2.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.1.4...@bloom-housing/public@7.2.0) (2022-12-08) -* chore(release): version -* fix: applications/view hide prefs +### Features -* chore(release): version +* Updates from hba 12-07-2022 ([#3210](https://github.com/bloom-housing/bloom/issues/3210)) ([7d55de4](https://github.com/bloom-housing/bloom/commit/7d55de436194de31d91276c68038143c3fd56e92)), closes [#523](https://github.com/bloom-housing/bloom/issues/523) [#537](https://github.com/bloom-housing/bloom/issues/537) [#541](https://github.com/bloom-housing/bloom/issues/541) [#545](https://github.com/bloom-housing/bloom/issues/545) [#551](https://github.com/bloom-housing/bloom/issues/551) [#553](https://github.com/bloom-housing/bloom/issues/553) [#550](https://github.com/bloom-housing/bloom/issues/550) -* feat: overrides fallback to english, tagalog support -* chore(release): version -* fix: account translations -* chore(release): version -* fix: units with invalid ami chart +## [7.1.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.1.3...@bloom-housing/public@7.1.4) (2022-12-08) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public -* fix: remove description for the partners programs -* fix: fix modal styles on mobile -* fix: visual improvement to programs form display -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +## [7.1.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.1.2...@bloom-housing/public@7.1.3) (2022-12-06) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/public -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. -* chore(release): version +## [7.1.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.1.1...@bloom-housing/public@7.1.2) (2022-12-06) - - @bloom-housing/shared-helpers@4.2.2-alpha.10 - - @bloom-housing/partners@4.2.2-alpha.11 - - @bloom-housing/public@4.2.2-alpha.11 - - @bloom-housing/ui-components@4.2.2-alpha.10 -* the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings +**Note:** Version bump only for package @bloom-housing/public -* chore(release): version - - @bloom-housing/shared-helpers@4.2.2-alpha.23 - - @bloom-housing/partners@4.2.2-alpha.27 - - @bloom-housing/public@4.2.2-alpha.26 - - @bloom-housing/ui-components@4.2.2-alpha.23 -* the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set -* chore(release): version - - @bloom-housing/shared-helpers@4.2.2-alpha.24 - - @bloom-housing/partners@4.2.2-alpha.28 - - @bloom-housing/public@4.2.2-alpha.27 - - @bloom-housing/ui-components@4.2.2-alpha.24 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version +## [7.1.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.1.0...@bloom-housing/public@7.1.1) (2022-12-05) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +**Note:** Version bump only for package @bloom-housing/public -## [4.4.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.30...@bloom-housing/public@4.4.1-alpha.31) (2022-06-16) +# [7.1.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.5...@bloom-housing/public@7.1.0) (2022-11-30) ### Features -* creating setting wall for accessibility feat ([#2817](https://github.com/bloom-housing/bloom/issues/2817)) ([d26cad4](https://github.com/bloom-housing/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) - - - - - -## [4.4.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.29...@bloom-housing/public@4.4.1-alpha.30) (2022-06-14) - -**Note:** Version bump only for package @bloom-housing/public +* add startDate field to listing events ([#3167](https://github.com/bloom-housing/bloom/issues/3167)) ([3d0aa11](https://github.com/bloom-housing/bloom/commit/3d0aa11abf36db016fa3ce3117a72b5fdad88614)) -## [4.4.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.28...@bloom-housing/public@4.4.1-alpha.29) (2022-06-13) +## [7.0.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.4...@bloom-housing/public@7.0.5) (2022-11-29) ### Bug Fixes -* autofill skipping ([#2800](https://github.com/bloom-housing/bloom/issues/2800)) ([4b6ebbe](https://github.com/bloom-housing/bloom/commit/4b6ebbe4374ce774959f44e43ee62a670bf9dd9e)) +* table a11y dynamic linting until performance issues are resolved ([#3178](https://github.com/bloom-housing/bloom/issues/3178)) ([7fe8886](https://github.com/bloom-housing/bloom/commit/7fe8886454621210c439d436d3e36068bed9a6ea)) -## [4.4.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.27...@bloom-housing/public@4.4.1-alpha.28) (2022-06-13) +## [7.0.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.3...@bloom-housing/public@7.0.4) (2022-11-21) **Note:** Version bump only for package @bloom-housing/public @@ -2980,7 +2302,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.26...@bloom-housing/public@4.4.1-alpha.27) (2022-06-13) +## [7.0.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.2...@bloom-housing/public@7.0.3) (2022-11-16) **Note:** Version bump only for package @bloom-housing/public @@ -2988,7 +2310,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.25...@bloom-housing/public@4.4.1-alpha.26) (2022-06-10) +## [7.0.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.2-alpha.2...@bloom-housing/public@7.0.2) (2022-11-14) **Note:** Version bump only for package @bloom-housing/public @@ -2996,23 +2318,18 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.24...@bloom-housing/public@4.4.1-alpha.25) (2022-06-10) - -**Note:** Version bump only for package @bloom-housing/public - - - +## [7.0.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.2-alpha.1...@bloom-housing/public@7.0.2-alpha.2) (2022-11-03) -## [4.4.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.23...@bloom-housing/public@4.4.1-alpha.24) (2022-06-09) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/public +* allow for more space for modals on mobile ([#3153](https://github.com/bloom-housing/bloom/issues/3153)) ([7e41703](https://github.com/bloom-housing/bloom/commit/7e41703ad8571eb160f4eaf53f40f9055f7639a3)) -## [4.4.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.22...@bloom-housing/public@4.4.1-alpha.23) (2022-06-09) +## [7.0.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.2-alpha.0...@bloom-housing/public@7.0.2-alpha.1) (2022-11-02) **Note:** Version bump only for package @bloom-housing/public @@ -3020,7 +2337,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.21...@bloom-housing/public@4.4.1-alpha.22) (2022-06-09) +## [7.0.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1...@bloom-housing/public@7.0.2-alpha.0) (2022-10-31) **Note:** Version bump only for package @bloom-housing/public @@ -3028,7 +2345,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.20...@bloom-housing/public@4.4.1-alpha.21) (2022-06-09) +## [7.0.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.10...@bloom-housing/public@7.0.1) (2022-10-26) **Note:** Version bump only for package @bloom-housing/public @@ -3036,7 +2353,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.19...@bloom-housing/public@4.4.1-alpha.20) (2022-06-08) +## [7.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.9...@bloom-housing/public@7.0.1-alpha.10) (2022-10-26) **Note:** Version bump only for package @bloom-housing/public @@ -3044,7 +2361,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.18...@bloom-housing/public@4.4.1-alpha.19) (2022-06-08) +## [7.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.8...@bloom-housing/public@7.0.1-alpha.9) (2022-10-25) **Note:** Version bump only for package @bloom-housing/public @@ -3052,23 +2369,20 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.17...@bloom-housing/public@4.4.1-alpha.18) (2022-06-07) - -**Note:** Version bump only for package @bloom-housing/public - - - +## [7.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.7...@bloom-housing/public@7.0.1-alpha.8) (2022-10-25) -## [4.4.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.16...@bloom-housing/public@4.4.1-alpha.17) (2022-06-07) +### Features -**Note:** Version bump only for package @bloom-housing/public +* accept only numeric values in currency field ([4638808](https://github.com/bloom-housing/bloom/commit/4638808e79d758d28f1f7befd2c77e892673374e)) +* display income currency value with commas ([343e36f](https://github.com/bloom-housing/bloom/commit/343e36f4eced424aa915c91192274c5dda65c25f)) +* submit income as a string ([0e43540](https://github.com/bloom-housing/bloom/commit/0e43540d008dc51a0195eac4c2b0f367b4978957)) -## [4.4.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.15...@bloom-housing/public@4.4.1-alpha.16) (2022-06-07) +## [7.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.6...@bloom-housing/public@7.0.1-alpha.7) (2022-10-24) **Note:** Version bump only for package @bloom-housing/public @@ -3076,7 +2390,7 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.14...@bloom-housing/public@4.4.1-alpha.15) (2022-06-06) +## [7.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.5...@bloom-housing/public@7.0.1-alpha.6) (2022-10-21) **Note:** Version bump only for package @bloom-housing/public @@ -3084,53 +2398,53 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.13...@bloom-housing/public@4.4.1-alpha.14) (2022-06-04) +## [7.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.4...@bloom-housing/public@7.0.1-alpha.5) (2022-10-20) -**Note:** Version bump only for package @bloom-housing/public +### Bug Fixes +* switch listing to server side props ([#3145](https://github.com/bloom-housing/bloom/issues/3145)) ([937faa9](https://github.com/bloom-housing/bloom/commit/937faa99dab0249b43bc90fd7cc8bd3dcacf6f38)) -## [4.4.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.12...@bloom-housing/public@4.4.1-alpha.13) (2022-06-03) -**Note:** Version bump only for package @bloom-housing/public +## [7.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.3...@bloom-housing/public@7.0.1-alpha.4) (2022-10-20) +### Features +* **expandablecontent:** remove classname from ExpandableContent ([a1068d9](https://github.com/bloom-housing/bloom/commit/a1068d92a88ec32a3f1108c5592a0c6bf55f31cf)), closes [#3140](https://github.com/bloom-housing/bloom/issues/3140) -## [4.4.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.11...@bloom-housing/public@4.4.1-alpha.12) (2022-06-02) -**Note:** Version bump only for package @bloom-housing/public +## [7.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.2...@bloom-housing/public@7.0.1-alpha.3) (2022-10-19) +**Note:** Version bump only for package @bloom-housing/public -## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.10...@bloom-housing/public@4.4.1-alpha.11) (2022-06-01) -### Features -* add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +## [7.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.1...@bloom-housing/public@7.0.1-alpha.2) (2022-10-13) +**Note:** Version bump only for package @bloom-housing/public -## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.9...@bloom-housing/public@4.4.1-alpha.10) (2022-05-31) -### Bug Fixes +## [7.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@7.0.1-alpha.0...@bloom-housing/public@7.0.1-alpha.1) (2022-10-12) -* netlify oom build issues ([#2770](https://github.com/bloom-housing/bloom/issues/2770)) ([45b2cb5](https://github.com/bloom-housing/bloom/commit/45b2cb598d50f06d87d96edaad2b49edbb76a05b)) +**Note:** Version bump only for package @bloom-housing/public -## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.8...@bloom-housing/public@4.4.1-alpha.9) (2022-05-31) +## [7.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@6.0.1-alpha.4...@bloom-housing/public@7.0.1-alpha.0) (2022-10-05) **Note:** Version bump only for package @bloom-housing/public @@ -3138,3703 +2452,4671 @@ This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.7...@bloom-housing/public@4.4.1-alpha.8) (2022-05-31) - -**Note:** Version bump only for package @bloom-housing/public +# [7.0.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.40...@bloom-housing/public@7.0.0) (2022-09-29) +* Release/2022 09 29 (#3114) ([dd9cbd6](https://github.com/bloom-housing/bloom/commit/dd9cbd6e549c69a3410a0753011e8f157ef61f31)), closes [#3114](https://github.com/bloom-housing/bloom/issues/3114) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3056](https://github.com/bloom-housing/bloom/issues/3056) [#3075](https://github.com/bloom-housing/bloom/issues/3075) [#3095](https://github.com/bloom-housing/bloom/issues/3095) [#3090](https://github.com/bloom-housing/bloom/issues/3090) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) +### BREAKING CHANGES -## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.6...@bloom-housing/public@4.4.1-alpha.7) (2022-05-31) +* The preference and program entities have been merged into a single entity called MultiselectQuestion -**Note:** Version bump only for package @bloom-housing/public +* chore(release): version + - @bloom-housing/backend-core@5.1.1-alpha.8 + - @bloom-housing/shared-helpers@5.1.1-alpha.18 + - @bloom-housing/partners@5.1.1-alpha.20 + - @bloom-housing/public@5.1.1-alpha.18 + - @bloom-housing/ui-components@5.1.1-alpha.11 -## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.5...@bloom-housing/public@4.4.1-alpha.6) (2022-05-26) +## [6.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@6.0.1-alpha.0...@bloom-housing/public@6.0.1-alpha.1) (2022-09-28) -### Bug Fixes +### Features -* visual design bugs ([#2737](https://github.com/bloom-housing/bloom/issues/2737)) ([dbac685](https://github.com/bloom-housing/bloom/commit/dbac685cd1e4d276b57a1d961eb5707decbc248b)) +- add duplicates v2 feature ([11cd2b3](https://github.com/bloom-housing/bloom/commit/11cd2b3b4d39c69e10ca1c9a8c2c7199b4a08b6b)), closes [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3093](https://github.com/bloom-housing/bloom/issues/3093) [#2974](https://github.com/bloom-housing/bloom/issues/2974) [#2909](https://github.com/bloom-housing/bloom/issues/2909) [#2958](https://github.com/bloom-housing/bloom/issues/2958) [#2904](https://github.com/bloom-housing/bloom/issues/2904) [#2987](https://github.com/bloom-housing/bloom/issues/2987) [#2990](https://github.com/bloom-housing/bloom/issues/2990) [#2989](https://github.com/bloom-housing/bloom/issues/2989) [#2991](https://github.com/bloom-housing/bloom/issues/2991) [#2985](https://github.com/bloom-housing/bloom/issues/2985) [#2994](https://github.com/bloom-housing/bloom/issues/2994) [#2995](https://github.com/bloom-housing/bloom/issues/2995) [#2999](https://github.com/bloom-housing/bloom/issues/2999) [#2950](https://github.com/bloom-housing/bloom/issues/2950) [#2968](https://github.com/bloom-housing/bloom/issues/2968) [#2784](https://github.com/bloom-housing/bloom/issues/2784) [#2988](https://github.com/bloom-housing/bloom/issues/2988) [#3016](https://github.com/bloom-housing/bloom/issues/3016) [#3018](https://github.com/bloom-housing/bloom/issues/3018) [#3017](https://github.com/bloom-housing/bloom/issues/3017) [#3005](https://github.com/bloom-housing/bloom/issues/3005) [#3012](https://github.com/bloom-housing/bloom/issues/3012) [#3014](https://github.com/bloom-housing/bloom/issues/3014) [#3000](https://github.com/bloom-housing/bloom/issues/3000) [#3021](https://github.com/bloom-housing/bloom/issues/3021) [#3027](https://github.com/bloom-housing/bloom/issues/3027) [#3036](https://github.com/bloom-housing/bloom/issues/3036) [#3023](https://github.com/bloom-housing/bloom/issues/3023) [#3040](https://github.com/bloom-housing/bloom/issues/3040) [#3054](https://github.com/bloom-housing/bloom/issues/3054) [#3050](https://github.com/bloom-housing/bloom/issues/3050) [#483](https://github.com/bloom-housing/bloom/issues/483) [#3073](https://github.com/bloom-housing/bloom/issues/3073) [#3070](https://github.com/bloom-housing/bloom/issues/3070) [#3041](https://github.com/bloom-housing/bloom/issues/3041) [#3061](https://github.com/bloom-housing/bloom/issues/3061) [#3077](https://github.com/bloom-housing/bloom/issues/3077) [#3063](https://github.com/bloom-housing/bloom/issues/3063) [#3084](https://github.com/bloom-housing/bloom/issues/3084) [#3088](https://github.com/bloom-housing/bloom/issues/3088) [#2892](https://github.com/bloom-housing/bloom/issues/2892) [#3006](https://github.com/bloom-housing/bloom/issues/3006) [#2961](https://github.com/bloom-housing/bloom/issues/2961) [#3020](https://github.com/bloom-housing/bloom/issues/3020) [#3086](https://github.com/bloom-housing/bloom/issues/3086) [#3102](https://github.com/bloom-housing/bloom/issues/3102) [#3101](https://github.com/bloom-housing/bloom/issues/3101) [#3104](https://github.com/bloom-housing/bloom/issues/3104) [#3105](https://github.com/bloom-housing/bloom/issues/3105) +### BREAKING CHANGES +- The preference and program entities have been merged into a single entity called MultiselectQuestion +- chore(release): version +* @bloom-housing/backend-core@5.1.1-alpha.8 +* @bloom-housing/shared-helpers@5.1.1-alpha.18 +* @bloom-housing/partners@5.1.1-alpha.20 +* @bloom-housing/public@5.1.1-alpha.18 +* @bloom-housing/ui-components@5.1.1-alpha.11 -## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.4...@bloom-housing/public@4.4.1-alpha.5) (2022-05-26) +## [6.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.56...@bloom-housing/public@6.0.1-alpha.0) (2022-09-28) **Note:** Version bump only for package @bloom-housing/public - - - - -## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.3...@bloom-housing/public@4.4.1-alpha.4) (2022-05-26) +## [5.1.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.55...@bloom-housing/public@5.1.1-alpha.56) (2022-09-28) **Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.54...@bloom-housing/public@5.1.1-alpha.55) (2022-09-28) +**Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.53...@bloom-housing/public@5.1.1-alpha.54) (2022-09-26) +**Note:** Version bump only for package @bloom-housing/public -## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.2...@bloom-housing/public@4.4.1-alpha.3) (2022-05-25) +## [5.1.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.52...@bloom-housing/public@5.1.1-alpha.53) (2022-09-26) **Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.51...@bloom-housing/public@5.1.1-alpha.52) (2022-09-26) +### Bug Fixes +- make pill style on listing card optional ([#3088](https://github.com/bloom-housing/bloom/issues/3088)) ([e574010](https://github.com/bloom-housing/bloom/commit/e57401067639e3e05a426f61dd0c3dc18dcda35d)) - -## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.1...@bloom-housing/public@4.4.1-alpha.2) (2022-05-25) +## [5.1.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.50...@bloom-housing/public@5.1.1-alpha.51) (2022-09-26) **Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.49...@bloom-housing/public@5.1.1-alpha.50) (2022-09-23) +**Note:** Version bump only for package @bloom-housing/public - - -## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.0...@bloom-housing/public@4.4.1-alpha.1) (2022-05-25) +## [5.1.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.48...@bloom-housing/public@5.1.1-alpha.49) (2022-09-22) **Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.47...@bloom-housing/public@5.1.1-alpha.48) (2022-09-21) +### Bug Fixes +- complete app section while navigating ([a288b8c](https://github.com/bloom-housing/bloom/commit/a288b8c3d8866149ba3737ec58176cb8abfa65b6)) +## [5.1.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.46...@bloom-housing/public@5.1.1-alpha.47) (2022-09-19) -## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.3.1-alpha.2...@bloom-housing/public@4.4.1-alpha.0) (2022-05-25) - +**Note:** Version bump only for package @bloom-housing/public -* 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +## [5.1.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.45...@bloom-housing/public@5.1.1-alpha.46) (2022-09-16) +**Note:** Version bump only for package @bloom-housing/public -### BREAKING CHANGES +## [5.1.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.44...@bloom-housing/public@5.1.1-alpha.45) (2022-09-16) -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +**Note:** Version bump only for package @bloom-housing/public -* chore(release): version +## [5.1.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.43...@bloom-housing/public@5.1.1-alpha.44) (2022-09-14) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +**Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.42...@bloom-housing/public@5.1.1-alpha.43) (2022-09-13) +**Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.41...@bloom-housing/public@5.1.1-alpha.42) (2022-09-13) +**Note:** Version bump only for package @bloom-housing/public -# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.3...@bloom-housing/public@4.4.0) (2022-05-24) +## [5.1.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.40...@bloom-housing/public@5.1.1-alpha.41) (2022-09-12) +**Note:** Version bump only for package @bloom-housing/public -* 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +## [5.1.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.39...@bloom-housing/public@5.1.1-alpha.40) (2022-09-09) +- 2022-08-24 release (#2993) ([6f1deac](https://github.com/bloom-housing/bloom/commit/6f1deac5370fa8286b051b09431d153d22901b3a)), closes [#2993](https://github.com/bloom-housing/bloom/issues/2993) [#2821](https://github.com/bloom-housing/bloom/issues/2821) [#2764](https://github.com/bloom-housing/bloom/issues/2764) [#2767](https://github.com/bloom-housing/bloom/issues/2767) [#2787](https://github.com/bloom-housing/bloom/issues/2787) [#2769](https://github.com/bloom-housing/bloom/issues/2769) [#2781](https://github.com/bloom-housing/bloom/issues/2781) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2847](https://github.com/bloom-housing/bloom/issues/2847) [#2830](https://github.com/bloom-housing/bloom/issues/2830) [#2788](https://github.com/bloom-housing/bloom/issues/2788) [#2842](https://github.com/bloom-housing/bloom/issues/2842) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/bloom-housing/bloom/issues/2822) [#2846](https://github.com/bloom-housing/bloom/issues/2846) [#2851](https://github.com/bloom-housing/bloom/issues/2851) [#2594](https://github.com/bloom-housing/bloom/issues/2594) [#2812](https://github.com/bloom-housing/bloom/issues/2812) [#2799](https://github.com/bloom-housing/bloom/issues/2799) [#2828](https://github.com/bloom-housing/bloom/issues/2828) [#2843](https://github.com/bloom-housing/bloom/issues/2843) [#2827](https://github.com/bloom-housing/bloom/issues/2827) [#2875](https://github.com/bloom-housing/bloom/issues/2875) [#2859](https://github.com/bloom-housing/bloom/issues/2859) [#2848](https://github.com/bloom-housing/bloom/issues/2848) [#2785](https://github.com/bloom-housing/bloom/issues/2785) ### BREAKING CHANGES -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection - -* chore(release): version +- prop name change for header from "text" to "content" - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- chore(release): version +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 +## [5.1.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.22...@bloom-housing/public@5.1.1-alpha.23) (2022-08-24) +### Features +- adds the ability to manage preference for partner admins ([#2985](https://github.com/bloom-housing/bloom/issues/2985)) ([0f1f470](https://github.com/bloom-housing/bloom/commit/0f1f470f00f4ef95a2e35a921701339fb813f1f5)) -## [4.3.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.3.1-alpha.1...@bloom-housing/public@4.3.1-alpha.2) (2022-05-24) +## [5.1.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.21...@bloom-housing/public@5.1.1-alpha.22) (2022-08-24) **Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.20...@bloom-housing/public@5.1.1-alpha.21) (2022-08-24) +**Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.19...@bloom-housing/public@5.1.1-alpha.20) (2022-08-23) +**Note:** Version bump only for package @bloom-housing/public -## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.3.1-alpha.0...@bloom-housing/public@4.3.1-alpha.1) (2022-05-24) +## [5.1.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.18...@bloom-housing/public@5.1.1-alpha.19) (2022-08-23) **Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.17...@bloom-housing/public@5.1.1-alpha.18) (2022-08-23) +- refactor!: preferences & programs data model merged (#2904) ([8e027ff](https://github.com/bloom-housing/bloom/commit/8e027ff905118f36c61bc0f974231d9bb8911131)), closes [#2904](https://github.com/bloom-housing/bloom/issues/2904) +### BREAKING CHANGES +- The preference and program entities have been merged into a single entity called MultiselectQuestion -## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.34...@bloom-housing/public@4.3.1-alpha.0) (2022-05-16) +## [5.1.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.16...@bloom-housing/public@5.1.1-alpha.17) (2022-08-23) +**Note:** Version bump only for package @bloom-housing/public -### Bug Fixes +## [5.1.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.15...@bloom-housing/public@5.1.1-alpha.16) (2022-08-22) -* 2259/fixes idle timeout not resetting properly ([#2292](https://github.com/bloom-housing/bloom/issues/2292)) ([1b89acb](https://github.com/bloom-housing/bloom/commit/1b89acb21dea913db4ae638b9e4566a444eb7190)) -* applications/view hide prefs ([eed00ab](https://github.com/bloom-housing/bloom/commit/eed00ab591b99c274fe4663c940ac76bc455edfd)) -* change the yes/no radio text to be more descriptive ([c48e6c8](https://github.com/bloom-housing/bloom/commit/c48e6c83070651800bb9a1df0520ad3df14ebdff)) -* choose-language context ([0d655f9](https://github.com/bloom-housing/bloom/commit/0d655f90838c4c76c7b1b6802bc62151adf472a4)) -* closed listings allowed apps ([#2317](https://github.com/bloom-housing/bloom/issues/2317)) ([557fde3](https://github.com/bloom-housing/bloom/commit/557fde3367c1eece8f80d9618b6a6ba7cd6eebbb)) -* demographics howDidYouHear options (2305) ([b80f21c](https://github.com/bloom-housing/bloom/commit/b80f21ca3e75b335222020130b96ef137be6b26f)) -* issues with public app and readds auto save (2428) ([ea5975f](https://github.com/bloom-housing/bloom/commit/ea5975f2fad9584766ab8f8f54c11f754440d1c1)) -* load blank application ([b28e9a3](https://github.com/bloom-housing/bloom/commit/b28e9a3d2258a8fd4e9fddc17599f614b382e172)) -* patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([21f517e](https://github.com/bloom-housing/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) -* preference cleanup for avance ([8ff5e6d](https://github.com/bloom-housing/bloom/commit/8ff5e6d1ccb4e93a355bb3e502974c99ada22b66)) -* prefUnits on autofill summary ([#2294](https://github.com/bloom-housing/bloom/issues/2294)) ([c027e96](https://github.com/bloom-housing/bloom/commit/c027e964f8f4e135cbc0fa70db5eaafa389ce53c)) -* remove alameda reference in demographics ([cc6761b](https://github.com/bloom-housing/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) -* submission tests not running ([78dd21e](https://github.com/bloom-housing/bloom/commit/78dd21ecf82680d38a97f762dfa128df3496fd91)) -* versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([c274a29](https://github.com/bloom-housing/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) -* visual improvement to programs form display ([33ef3db](https://github.com/bloom-housing/bloom/commit/33ef3dbdbafd561a79f17b90edb8d80b98a4c035)) - - -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) -* Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) +**Note:** Version bump only for package @bloom-housing/public +## [5.1.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.14...@bloom-housing/public@5.1.1-alpha.15) (2022-08-22) -### Features +### Bug Fixes -* Add San Jose email translations ([#2519](https://github.com/bloom-housing/bloom/issues/2519)) ([d1db032](https://github.com/bloom-housing/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) -* adds bottom border to preferences ([60fe76a](https://github.com/bloom-housing/bloom/commit/60fe76af140538216555bcf79b0747df3d565404)) -* adds new preferences, reserved community type ([90c0673](https://github.com/bloom-housing/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) -* new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/bloom-housing/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/bloom-housing/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* refactor and add public site application flow cypress tests ([a300d69](https://github.com/bloom-housing/bloom/commit/a300d69c895052a6c3c4def6121237fdc80a76c6)) -* simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/bloom-housing/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) -* skip preferences if not on listing ([644ba0e](https://github.com/bloom-housing/bloom/commit/644ba0eb7094b5d57c54df80f3cd11dcea0ca4a7)) -* update listing page to use getStaticProps again ([f546dda](https://github.com/bloom-housing/bloom/commit/f546ddadc280ecf3475b5f44fc0794173e06d9e5)) +- add a11y linting tools and fix errors ([#2974](https://github.com/bloom-housing/bloom/issues/2974)) ([e583d12](https://github.com/bloom-housing/bloom/commit/e583d1283511c83dd48f48f934be9a7794a67e74)) +## [5.1.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.13...@bloom-housing/public@5.1.1-alpha.14) (2022-08-18) -### Reverts +**Note:** Version bump only for package @bloom-housing/public -* Revert "chore(release): version" ([47a2c67](https://github.com/bloom-housing/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +## [5.1.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.12...@bloom-housing/public@5.1.1-alpha.13) (2022-08-18) +**Note:** Version bump only for package @bloom-housing/public -### BREAKING CHANGES +## [5.1.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.11...@bloom-housing/public@5.1.1-alpha.12) (2022-08-18) -* remove applicationDueTime field and consolidated into applicationDueDate +**Note:** Version bump only for package @bloom-housing/public -* chore(release): version +## [5.1.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.10...@bloom-housing/public@5.1.1-alpha.11) (2022-08-16) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +**Note:** Version bump only for package @bloom-housing/public -* chore(release): version +## [5.1.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.9...@bloom-housing/public@5.1.1-alpha.10) (2022-08-16) - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +### Features -* chore(release): version +- **listings:** update default sort of listings ([#2947](https://github.com/bloom-housing/bloom/issues/2947)) ([a555192](https://github.com/bloom-housing/bloom/commit/a5551926209c13b9dcc228ebe36f4527c7bae41b)) - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [5.1.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.8...@bloom-housing/public@5.1.1-alpha.9) (2022-08-16) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +## [5.1.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.7...@bloom-housing/public@5.1.1-alpha.8) (2022-08-16) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [5.1.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.6...@bloom-housing/public@5.1.1-alpha.7) (2022-08-16) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +## [5.1.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.5...@bloom-housing/public@5.1.1-alpha.6) (2022-08-16) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [5.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.4...@bloom-housing/public@5.1.1-alpha.5) (2022-08-12) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +## [5.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.3...@bloom-housing/public@5.1.1-alpha.4) (2022-08-12) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* preferences model and relationships changed +## [5.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.2...@bloom-housing/public@5.1.1-alpha.3) (2022-08-03) -* feat: feat(backend): extend UserUpdateDto to support email change +### Features -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- **expandabletext:** fix a broken ci check; fix a prop name ([e839c81](https://github.com/bloom-housing/bloom/commit/e839c811b237164b1cd26bbc888db512f66bc6b0)) +- **expandabletext:** remove translations;pass markdown props through component ([e21e88a](https://github.com/bloom-housing/bloom/commit/e21e88a5be527ec860b3515c1dc545a186713e06)), closes [#2925](https://github.com/bloom-housing/bloom/issues/2925) -* fix: 2056/user account edit fix +### BREAKING CHANGES -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- **expandabletext:** In uses of ExpandableText component, the translations are now being passed down + instead of done within the component. Any options for the Markdown component used within + ExpandableText also needs to be passed -* refactor: 2085/adds top level catchAll exception filter +## [5.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.1...@bloom-housing/public@5.1.1-alpha.2) (2022-08-01) -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +**Note:** Version bump only for package @bloom-housing/public -* feat: feat: Change unit number field type to text +## [5.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.1.1-alpha.0...@bloom-housing/public@5.1.1-alpha.1) (2022-08-01) -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +**Note:** Version bump only for package @bloom-housing/public -* feat(backend): improve application flagged set saving efficiency +## [5.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.38...@bloom-housing/public@5.1.1-alpha.0) (2022-07-27) -* fix: fix: updates address order +- 2022-07-26 sync master (#2917) ([6f0dd1d](https://github.com/bloom-housing/bloom/commit/6f0dd1df4d2df12e0e94cb339c9232531a37f2a2)), closes [#2917](https://github.com/bloom-housing/bloom/issues/2917) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +### BREAKING CHANGES -* fix: sets programs to optoinal and updates versions +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore(release): version -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* fix: adds programs service +# [5.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@5.0.0...@bloom-housing/public@5.1.0) (2022-07-27) -* fix: fix lisitng e2e tests +### Bug Fixes -* fix: fix member tests +- applications/view hide prefs ([89ff7bb](https://github.com/seanmalbert/bloom/commit/89ff7bb03380332b107be2a2a5321097ade99466)) +- autofill skipping ([#2800](https://github.com/seanmalbert/bloom/issues/2800)) ([4b6ebbe](https://github.com/seanmalbert/bloom/commit/4b6ebbe4374ce774959f44e43ee62a670bf9dd9e)) +- **backend:** nginx with heroku configuration ([#2196](https://github.com/seanmalbert/bloom/issues/2196)) ([a1e2630](https://github.com/seanmalbert/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) +- bump version ([#2349](https://github.com/seanmalbert/bloom/issues/2349)) ([b9e3ba1](https://github.com/seanmalbert/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/seanmalbert/bloom/issues/2350)) ([05863f5](https://github.com/seanmalbert/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- choose-language context ([f62bf46](https://github.com/seanmalbert/bloom/commit/f62bf4623b8ec0955b54727ba422357acaaed754)) +- closed listings allowed apps ([#2317](https://github.com/seanmalbert/bloom/issues/2317)) ([bb69347](https://github.com/seanmalbert/bloom/commit/bb693473aeb8757d6a09282c9331d356430b1f81)) +- cypress coverage configs ([eec74ee](https://github.com/seanmalbert/bloom/commit/eec74eef138f6af275ae3cfe16262ed215b16907)) +- dates showing as invalid in send by mail section ([#2362](https://github.com/seanmalbert/bloom/issues/2362)) ([3567388](https://github.com/seanmalbert/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +- demographics howDidYouHear options were not changing on language change ([#2305](https://github.com/seanmalbert/bloom/issues/2305)) ([a9859d1](https://github.com/seanmalbert/bloom/commit/a9859d1a718d88e0e1ff671a408887691306b4b9)) +- ensure dayjs parsing strings will work as expected ([eb44939](https://github.com/seanmalbert/bloom/commit/eb449395ebea3a3b4b58eb217df1e1313c722a0d)) +- feedback on the waitlist data and display ([9432542](https://github.com/seanmalbert/bloom/commit/9432542efd9ba2e4bf8dd7195895e75f5d2e0623)) +- fetchBaseListingData ([#2238](https://github.com/seanmalbert/bloom/issues/2238)) ([55dd01c](https://github.com/seanmalbert/bloom/commit/55dd01c2e49c383d010493f464092d3948351bd4)) +- Fix infinite page width ([#2434](https://github.com/seanmalbert/bloom/issues/2434)) ([12ac594](https://github.com/seanmalbert/bloom/commit/12ac594a7aa5a04370b20b19d6fff3189c0cfeee)), closes [#2374](https://github.com/seanmalbert/bloom/issues/2374) +- infinite page width ([#2459](https://github.com/seanmalbert/bloom/issues/2459)) ([190ff9a](https://github.com/seanmalbert/bloom/commit/190ff9a4760b0b64485094964c3e7a52fec12467)) +- issues with public app and readds auto save ([bb27a56](https://github.com/seanmalbert/bloom/commit/bb27a56835dcd27f2e8a0d7d14f07d0870d0079b)) +- more style tweaks for AlertBox ([#2526](https://github.com/seanmalbert/bloom/issues/2526)) ([bce3920](https://github.com/seanmalbert/bloom/commit/bce3920b7638be3def05d852d0192ab0cbb2e749)) +- netlify oom build issues ([#2770](https://github.com/seanmalbert/bloom/issues/2770)) ([45b2cb5](https://github.com/seanmalbert/bloom/commit/45b2cb598d50f06d87d96edaad2b49edbb76a05b)) +- no application message and loading spinner working ([#2603](https://github.com/seanmalbert/bloom/issues/2603)) ([0ae1596](https://github.com/seanmalbert/bloom/commit/0ae159671b3b62fa572e27a8a860d693fab86a2c)) +- patches translations for preferences ([#2410](https://github.com/seanmalbert/bloom/issues/2410)) ([7906e6b](https://github.com/seanmalbert/bloom/commit/7906e6bc035fab4deea79ea51833a0ef29926d45)) +- prefUnits on autofill summary ([#2294](https://github.com/seanmalbert/bloom/issues/2294)) ([2b370e9](https://github.com/seanmalbert/bloom/commit/2b370e9321ec652ed3d124319e08e01fc765d636)) +- remove next dependency from ui-components ([#2352](https://github.com/seanmalbert/bloom/issues/2352)) ([136e8a1](https://github.com/seanmalbert/bloom/commit/136e8a1af2b4f285644caa9a18d60121f4d82566)) +- remove shared-helpers dependency from ui-components ([#2620](https://github.com/seanmalbert/bloom/issues/2620)) ([cd6ea54](https://github.com/seanmalbert/bloom/commit/cd6ea5450402a9b5d2a8681c403cbfcff6b6b1c9)) +- remove space between minutes and AM/PM for ApplicationStatus ([#2566](https://github.com/seanmalbert/bloom/issues/2566)) ([5440b38](https://github.com/seanmalbert/bloom/commit/5440b38f3048d17e6e76b41f0aa81f5176368af2)) +- removes more closed listing application paths ([#2319](https://github.com/seanmalbert/bloom/issues/2319)) ([ff50205](https://github.com/seanmalbert/bloom/commit/ff50205f371ebd63d07168b290733d0f1e2d493c)) +- removes unnecessary ternary ([20edcd4](https://github.com/seanmalbert/bloom/commit/20edcd4810ee260f2e1705bfbbbbb69738b5b2f9)) +- removing console logs ([e8f50aa](https://github.com/seanmalbert/bloom/commit/e8f50aa29140167dae006f98c631baecca96f64b)) +- serverSideProps on listings bc of netlify limitations ([#2540](https://github.com/seanmalbert/bloom/issues/2540)) ([bc69140](https://github.com/seanmalbert/bloom/commit/bc69140b68c997e90e899803e00307bd79b28b15)) +- submission tests not running ([#2282](https://github.com/seanmalbert/bloom/issues/2282)) ([735cf2b](https://github.com/seanmalbert/bloom/commit/735cf2bcafdd81d45856d856102c6e0665742daa)) +- summary/review no listing ([cbc18f7](https://github.com/seanmalbert/bloom/commit/cbc18f77a9a0020b63aee570010e9a4ed6546cd2)) +- use appropriate copy for FCFS vs Lottery in Application Confirmation screen ([#2702](https://github.com/seanmalbert/bloom/issues/2702)) ([5289504](https://github.com/seanmalbert/bloom/commit/52895044cba64eeb7789c68f0a5eb957785055b5)) +- use the correct AlertBox component for preview listing notice ([#2497](https://github.com/seanmalbert/bloom/issues/2497)) ([f985c44](https://github.com/seanmalbert/bloom/commit/f985c444aaed31504a1e1ce7173c6e15194e2af6)) +- user status enum to camel case; gtm types ([fbb8004](https://github.com/seanmalbert/bloom/commit/fbb800496fa1c5f37d3d7738acf28755dd66f1dd)) +- ux updates for new listing card design ([#2687](https://github.com/seanmalbert/bloom/issues/2687)) ([c8814ae](https://github.com/seanmalbert/bloom/commit/c8814ae57b62fa6f932017bb70d47663b09fca1a)) +- versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([0b1d143](https://github.com/seanmalbert/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) +- visual design bugs ([#2737](https://github.com/seanmalbert/bloom/issues/2737)) ([dbac685](https://github.com/seanmalbert/bloom/commit/dbac685cd1e4d276b57a1d961eb5707decbc248b)) +- visual improvement to programs form display ([#2276](https://github.com/seanmalbert/bloom/issues/2276)) ([e8c87d1](https://github.com/seanmalbert/bloom/commit/e8c87d1323ed9a1de0865a172d02139aefe37967)) +### Code Refactoring +- remove backend dependencies from events components, consolidate ([#2495](https://github.com/seanmalbert/bloom/issues/2495)) ([d884689](https://github.com/seanmalbert/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +- remove backend dependencies from sidebar application components ([#2675](https://github.com/seanmalbert/bloom/issues/2675)) ([d2ebf87](https://github.com/seanmalbert/bloom/commit/d2ebf87c34af3f5b6168fa4e08663fea0a4a872c)) +- remove business logic, strings from waitlist component ([#2689](https://github.com/seanmalbert/bloom/issues/2689)) ([a5721db](https://github.com/seanmalbert/bloom/commit/a5721db518453ddbd777e50ca92fdeac19997aa9)) +- removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) +- 2022-07-26 release (#2916) ([af8d3df](https://github.com/seanmalbert/bloom/commit/af8d3dfc1974878cc21500272405ef5046dcfb50)), closes [#2916](https://github.com/seanmalbert/bloom/issues/2916) [#2821](https://github.com/seanmalbert/bloom/issues/2821) [#2764](https://github.com/seanmalbert/bloom/issues/2764) [#2767](https://github.com/seanmalbert/bloom/issues/2767) [#2787](https://github.com/seanmalbert/bloom/issues/2787) [#2769](https://github.com/seanmalbert/bloom/issues/2769) [#2781](https://github.com/seanmalbert/bloom/issues/2781) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2847](https://github.com/seanmalbert/bloom/issues/2847) [#2830](https://github.com/seanmalbert/bloom/issues/2830) [#2788](https://github.com/seanmalbert/bloom/issues/2788) [#2842](https://github.com/seanmalbert/bloom/issues/2842) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [Issue#2827](https://github.com/Issue/issues/2827) [#2822](https://github.com/seanmalbert/bloom/issues/2822) [#2846](https://github.com/seanmalbert/bloom/issues/2846) [#2851](https://github.com/seanmalbert/bloom/issues/2851) [#2594](https://github.com/seanmalbert/bloom/issues/2594) [#2812](https://github.com/seanmalbert/bloom/issues/2812) [#2799](https://github.com/seanmalbert/bloom/issues/2799) [#2828](https://github.com/seanmalbert/bloom/issues/2828) [#2843](https://github.com/seanmalbert/bloom/issues/2843) [#2827](https://github.com/seanmalbert/bloom/issues/2827) [#2875](https://github.com/seanmalbert/bloom/issues/2875) [#2859](https://github.com/seanmalbert/bloom/issues/2859) [#2848](https://github.com/seanmalbert/bloom/issues/2848) [#2785](https://github.com/seanmalbert/bloom/issues/2785) +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/seanmalbert/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/seanmalbert/bloom/issues/2825) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/seanmalbert/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/seanmalbert/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/seanmalbert/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022 03 28 sync master (#2593) ([580283d](https://github.com/seanmalbert/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +### Features -## [4.2.2-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.33...@bloom-housing/public@4.2.2-alpha.34) (2022-05-13) +- add accessibility building features to listing ([#2755](https://github.com/seanmalbert/bloom/issues/2755)) ([0c8dfb8](https://github.com/seanmalbert/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +- add disabled field to contactPreferencesOptions ([#2673](https://github.com/seanmalbert/bloom/issues/2673)) ([b858637](https://github.com/seanmalbert/bloom/commit/b858637b84e2ff98eacf51ca5eccce613ae13733)) +- adds done() to cy.sumbmitApplication ([81ca55a](https://github.com/seanmalbert/bloom/commit/81ca55a9f2bca5482985de62ec94e81b34a5ee55)) +- adds event logging to most of the pages ([dc88c0a](https://github.com/seanmalbert/bloom/commit/dc88c0a8b6be317cd624921b868bb17e77e31f11)) +- adds gtm tracking to rest of pages ([#2545](https://github.com/seanmalbert/bloom/issues/2545)) ([1c96f71](https://github.com/seanmalbert/bloom/commit/1c96f7101017aefd8bca70731265f6efb1ab5cf0)) +- **backend:** add listing order by mostRecentlyClosed param ([#2478](https://github.com/seanmalbert/bloom/issues/2478)) ([0f177c1](https://github.com/seanmalbert/bloom/commit/0f177c1847ac254f63837b0aca7fa8a705e3632c)) +- creating setting wall for accessibility feat ([#2817](https://github.com/seanmalbert/bloom/issues/2817)) ([d26cad4](https://github.com/seanmalbert/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) +- getStaticPaths fallback blocking test ([a42170d](https://github.com/seanmalbert/bloom/commit/a42170d5c514998dad2b2011b8a6b9021955f277)) +- listing card title redesign, multiple tags possible ([#2531](https://github.com/seanmalbert/bloom/issues/2531)) ([2b795cb](https://github.com/seanmalbert/bloom/commit/2b795cb6c47c084937e996332d1583e9e5bcbc54)) +- new category table component ([#2648](https://github.com/seanmalbert/bloom/issues/2648)) ([3b3fe46](https://github.com/seanmalbert/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +- outdated password messaging updates ([b14e19d](https://github.com/seanmalbert/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +- overrides fallback to english, tagalog support ([#2262](https://github.com/seanmalbert/bloom/issues/2262)) ([679ab9b](https://github.com/seanmalbert/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +- refactor ada form fields ([#2612](https://github.com/seanmalbert/bloom/issues/2612)) ([f516f21](https://github.com/seanmalbert/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) +- set gtm pageTitle to english only ([09b641c](https://github.com/seanmalbert/bloom/commit/09b641cd22df27c2ae401da1427f090b9a9c97ad)) +- skip preferences if not on listing ([2037b74](https://github.com/seanmalbert/bloom/commit/2037b7484c86cd9f3381c96f61c982a1bada80d5)) +- updates for gtm ([0251cd3](https://github.com/seanmalbert/bloom/commit/0251cd3d73be19d60c148aae01d12ab35f29bc85)) +- updates for gtm ([13578bb](https://github.com/seanmalbert/bloom/commit/13578bb864ea1b1918d5908982cb3095756811c7)) -**Note:** Version bump only for package @bloom-housing/public +### BREAKING CHANGES +- prop name change for header from "text" to "content" +- chore(release): version +* @bloom-housing/shared-helpers@5.0.1-alpha.2 +* @bloom-housing/partners@5.0.1-alpha.2 +* @bloom-housing/public@5.0.1-alpha.2 +* @bloom-housing/ui-components@5.0.1-alpha.1 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.2...@bloom-housing/public@4.2.3) (2022-04-28) -## [4.2.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.32...@bloom-housing/public@4.2.2-alpha.33) (2022-05-11) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set +- the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +- preferences model and relationships changed -## [4.2.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.1...@bloom-housing/public@4.2.2) (2022-04-19) -## [4.2.2-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.31...@bloom-housing/public@4.2.2-alpha.32) (2022-05-11) +- feat: feat(backend): extend UserUpdateDto to support email change -**Note:** Version bump only for package @bloom-housing/public +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix + +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text -## [4.2.2-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.30...@bloom-housing/public@4.2.2-alpha.31) (2022-05-10) +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -**Note:** Version bump only for package @bloom-housing/public +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -## [4.2.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.29...@bloom-housing/public@4.2.2-alpha.30) (2022-05-09) +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -**Note:** Version bump only for package @bloom-housing/public +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update -## [4.2.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.28...@bloom-housing/public@4.2.2-alpha.29) (2022-05-05) +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes -### Bug Fixes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* use appropriate copy for FCFS vs Lottery in Application Confirmation screen ([#2702](https://github.com/bloom-housing/bloom/issues/2702)) ([5289504](https://github.com/bloom-housing/bloom/commit/52895044cba64eeb7789c68f0a5eb957785055b5)) +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type -## [4.2.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.27...@bloom-housing/public@4.2.2-alpha.28) (2022-05-04) +- feat: adds bottom border to preferences -**Note:** Version bump only for package @bloom-housing/public +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests -## [4.2.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.26...@bloom-housing/public@4.2.2-alpha.27) (2022-05-04) +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts -### Code Refactoring +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* remove backend dependencies from sidebar application components ([#2675](https://github.com/bloom-housing/bloom/issues/2675)) ([d2ebf87](https://github.com/bloom-housing/bloom/commit/d2ebf87c34af3f5b6168fa4e08663fea0a4a872c)) +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects -### BREAKING CHANGES +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath -## [4.2.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.25...@bloom-housing/public@4.2.2-alpha.26) (2022-05-04) +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds -### Code Refactoring +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* remove business logic, strings from waitlist component ([#2689](https://github.com/bloom-housing/bloom/issues/2689)) ([a5721db](https://github.com/bloom-housing/bloom/commit/a5721db518453ddbd777e50ca92fdeac19997aa9)) +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -### BREAKING CHANGES +- feat: updates email confirmation for lottery -* the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -## [4.2.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.24...@bloom-housing/public@4.2.2-alpha.25) (2022-05-03) +- fix: change the yes/no radio text to be more descriptive -**Note:** Version bump only for package @bloom-housing/public +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -## [4.2.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.23...@bloom-housing/public@4.2.2-alpha.24) (2022-04-29) +- feat: ami chart jurisdictionalized -**Note:** Version bump only for package @bloom-housing/public +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -## [4.2.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.22...@bloom-housing/public@4.2.2-alpha.23) (2022-04-29) +- chore: removes application program partners +- chore: removes application program display -### Bug Fixes +- Revert "chore: removes application program display" -* ux updates for new listing card design ([#2687](https://github.com/bloom-housing/bloom/issues/2687)) ([c8814ae](https://github.com/bloom-housing/bloom/commit/c8814ae57b62fa6f932017bb70d47663b09fca1a)) +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray -## [4.2.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.21...@bloom-housing/public@4.2.2-alpha.22) (2022-04-28) +- feat: skip preferences if not on listing -**Note:** Version bump only for package @bloom-housing/public +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version -## [4.2.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.20...@bloom-housing/public@4.2.2-alpha.21) (2022-04-28) +- feat: simplify Waitlist component and use more flexible schema -**Note:** Version bump only for package @bloom-housing/public +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type +- chore(release): version -## [4.2.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.19...@bloom-housing/public@4.2.2-alpha.20) (2022-04-28) +- fix: paper application submission -**Note:** Version bump only for package @bloom-housing/public +- chore(release): version +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version -## [4.2.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.18...@bloom-housing/public@4.2.2-alpha.19) (2022-04-27) +- feat: overrides fallback to english, tagalog support -**Note:** Version bump only for package @bloom-housing/public +- chore(release): version +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version -## [4.2.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.17...@bloom-housing/public@4.2.2-alpha.18) (2022-04-26) +- fix: remove description for the partners programs -**Note:** Version bump only for package @bloom-housing/public +- fix: fix modal styles on mobile +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.2.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.16...@bloom-housing/public@4.2.2-alpha.17) (2022-04-26) +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -**Note:** Version bump only for package @bloom-housing/public +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.2.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.15...@bloom-housing/public@4.2.2-alpha.16) (2022-04-22) +- preferences model and relationships changed -**Note:** Version bump only for package @bloom-housing/public +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [4.2.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.14...@bloom-housing/public@4.2.2-alpha.15) (2022-04-22) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -**Note:** Version bump only for package @bloom-housing/public +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -## [4.2.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.13...@bloom-housing/public@4.2.2-alpha.14) (2022-04-22) +- fix: sets programs to optoinal and updates versions -**Note:** Version bump only for package @bloom-housing/public +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests -## [4.2.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.12...@bloom-housing/public@4.2.2-alpha.13) (2022-04-21) +- fix: adds jurisdictionId to useSWR path -**Note:** Version bump only for package @bloom-housing/public +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -## [4.2.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.11...@bloom-housing/public@4.2.2-alpha.12) (2022-04-21) +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date -### Features +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* add disabled field to contactPreferencesOptions ([#2673](https://github.com/bloom-housing/bloom/issues/2673)) ([b858637](https://github.com/bloom-housing/bloom/commit/b858637b84e2ff98eacf51ca5eccce613ae13733)) +- feat: adds new preferences, reserved community type +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress -## [4.2.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.10...@bloom-housing/public@4.2.2-alpha.11) (2022-04-21) +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests -### Features +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* new category table component ([#2648](https://github.com/bloom-housing/bloom/issues/2648)) ([3b3fe46](https://github.com/bloom-housing/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -### BREAKING CHANGES +- feat: adds listing management cypress tests to partner portal -* There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test -## [4.2.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.9...@bloom-housing/public@4.2.2-alpha.10) (2022-04-20) +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath -### Bug Fixes +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* no application message and loading spinner working ([#2603](https://github.com/bloom-housing/bloom/issues/2603)) ([0ae1596](https://github.com/bloom-housing/bloom/commit/0ae159671b3b62fa572e27a8a860d693fab86a2c)) +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery -## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.8...@bloom-housing/public@4.2.2-alpha.9) (2022-04-20) +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -**Note:** Version bump only for package @bloom-housing/public +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive -## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.7...@bloom-housing/public@4.2.2-alpha.8) (2022-04-20) +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -**Note:** Version bump only for package @bloom-housing/public +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized -## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.6...@bloom-housing/public@4.2.2-alpha.7) (2022-04-20) +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -**Note:** Version bump only for package @bloom-housing/public +- refactor: make backend a peer dependency in ui-components +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners -## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.5...@bloom-housing/public@4.2.2-alpha.6) (2022-04-20) +- chore: removes application program display -**Note:** Version bump only for package @bloom-housing/public +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger -## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.4...@bloom-housing/public@4.2.2-alpha.5) (2022-04-19) +- fix: removes Duplicate identifier fieldGroupObjectToArray -**Note:** Version bump only for package @bloom-housing/public +- feat: skip preferences if not on listing +- chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency -## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.3...@bloom-housing/public@4.2.2-alpha.4) (2022-04-18) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type -## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.2...@bloom-housing/public@4.2.2-alpha.3) (2022-04-18) +- chore(release): version +- fix: paper application submission -### Features +- chore(release): version -* refactor ada form fields ([#2612](https://github.com/bloom-housing/bloom/issues/2612)) ([f516f21](https://github.com/bloom-housing/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support -## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.1...@bloom-housing/public@4.2.2-alpha.2) (2022-04-14) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs -## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.0...@bloom-housing/public@4.2.2-alpha.1) (2022-04-13) +- fix: fix modal styles on mobile -**Note:** Version bump only for package @bloom-housing/public +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.4...@bloom-housing/public@4.2.2-alpha.0) (2022-04-13) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger - -* fix: removes Duplicate identifier fieldGroupObjectToArray - -* feat: skip preferences if not on listing - -* chore(release): version - -* fix: cannot save custom mailing, dropoff, or pickup address - -* chore(release): version - -* chore: converge on one axios version, remove peer dependency - -* chore(release): version - -* feat: simplify Waitlist component and use more flexible schema - -* chore(release): version - -* fix: lottery results uploads now save - -* chore(release): version - -* feat: add SRO unit type - -* chore(release): version - -* fix: paper application submission - -* chore(release): version +- chore: yarn.lock and backend-swagger -* fix: choose-language context +- fix: removes Duplicate identifier fieldGroupObjectToArray -* chore(release): version +- feat: skip preferences if not on listing -* fix: applications/view hide prefs +- chore(release): version -* chore(release): version +- fix: cannot save custom mailing, dropoff, or pickup address -* feat: overrides fallback to english, tagalog support +- chore(release): version -* chore(release): version +- chore: converge on one axios version, remove peer dependency -* fix: account translations +- chore(release): version -* chore(release): version +- feat: simplify Waitlist component and use more flexible schema -* fix: units with invalid ami chart +- chore(release): version -* chore(release): version +- fix: lottery results uploads now save -* fix: remove description for the partners programs +- chore(release): version -* fix: fix modal styles on mobile +- feat: add SRO unit type -* fix: visual improvement to programs form display +- chore(release): version -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: paper application submission -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: choose-language context -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- fix: applications/view hide prefs -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- feat: overrides fallback to english, tagalog support +- chore(release): version +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart -## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.0...@bloom-housing/public@4.2.1) (2022-04-11) +- chore(release): version +- fix: remove description for the partners programs -* 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- fix: fix modal styles on mobile +- fix: visual improvement to programs form display -### BREAKING CHANGES +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -* chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- remove applicationDueTime field and consolidated into applicationDueDate +- moved some helpers from ui-components to shared-helpers +- sign-in pages have been updated -## [4.2.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.3...@bloom-housing/public@4.2.1-alpha.4) (2022-04-13) +## [5.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.37...@bloom-housing/public@5.0.1-alpha.38) (2022-07-27) **Note:** Version bump only for package @bloom-housing/public +## [5.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.36...@bloom-housing/public@5.0.1-alpha.37) (2022-07-27) +### Bug Fixes +- fix password confirmation validation in the reset password form ([23064fe](https://github.com/bloom-housing/bloom/commit/23064fe8135ee9f531bac41b1b1f7e0ce771905a)) - -## [4.2.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.2...@bloom-housing/public@4.2.1-alpha.3) (2022-04-08) +## [5.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.35...@bloom-housing/public@5.0.1-alpha.36) (2022-07-26) **Note:** Version bump only for package @bloom-housing/public - - - - -## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.1...@bloom-housing/public@4.2.1-alpha.2) (2022-04-07) +## [5.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.34...@bloom-housing/public@5.0.1-alpha.35) (2022-07-26) **Note:** Version bump only for package @bloom-housing/public - - - - -## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.0...@bloom-housing/public@4.2.1-alpha.1) (2022-04-07) +## [5.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.33...@bloom-housing/public@5.0.1-alpha.34) (2022-07-26) **Note:** Version bump only for package @bloom-housing/public +## [5.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.32...@bloom-housing/public@5.0.1-alpha.33) (2022-07-26) +**Note:** Version bump only for package @bloom-housing/public +## [5.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.31...@bloom-housing/public@5.0.1-alpha.32) (2022-07-26) +**Note:** Version bump only for package @bloom-housing/public -## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.6...@bloom-housing/public@4.2.1-alpha.0) (2022-04-06) - - -* 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) - - -### BREAKING CHANGES - -* preferences model and relationships changed - -* feat: feat(backend): extend UserUpdateDto to support email change - -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a - -* fix: 2056/user account edit fix - -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 - -* refactor: 2085/adds top level catchAll exception filter - -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - -* feat: feat: Change unit number field type to text - -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - -* feat(backend): improve application flagged set saving efficiency - -* fix: fix: updates address order - -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 - -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 - -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 - -* fix: adds programs service - -* fix: fix lisitng e2e tests - -* fix: fix member tests - -* fix: adds jurisdictionId to useSWR path - -* fix: recalculate units available on listing update - -picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 - -* feat: feat(backend): make use of new application confirmation codes +## [5.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.30...@bloom-housing/public@5.0.1-alpha.31) (2022-07-22) -picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +**Note:** Version bump only for package @bloom-housing/public -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +## [5.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.29...@bloom-housing/public@5.0.1-alpha.30) (2022-07-20) -picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +**Note:** Version bump only for package @bloom-housing/public -* fix: app submission w/ no due date +## [5.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.28...@bloom-housing/public@5.0.1-alpha.29) (2022-07-20) -picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +**Note:** Version bump only for package @bloom-housing/public -* feat: adds new preferences, reserved community type +## [5.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.27...@bloom-housing/public@5.0.1-alpha.28) (2022-07-20) -* feat: adds bottom border to preferences +**Note:** Version bump only for package @bloom-housing/public -* feat: updates preference string +## [5.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.26...@bloom-housing/public@5.0.1-alpha.27) (2022-07-20) -* fix: preference cleanup for avance +**Note:** Version bump only for package @bloom-housing/public -* refactor: remove applicationAddress +## [5.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.25...@bloom-housing/public@5.0.1-alpha.26) (2022-07-19) -picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +**Note:** Version bump only for package @bloom-housing/public -* feat: refactor and add public site application flow cypress tests +## [5.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.24...@bloom-housing/public@5.0.1-alpha.25) (2022-07-19) -picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +**Note:** Version bump only for package @bloom-housing/public -* feat: better seed data for ami-charts +## [5.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.23...@bloom-housing/public@5.0.1-alpha.24) (2022-07-15) -picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +**Note:** Version bump only for package @bloom-housing/public -* feat: adds listing management cypress tests to partner portal +## [5.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.22...@bloom-housing/public@5.0.1-alpha.23) (2022-07-13) -* fix: listings management keep empty strings, remove empty objects +**Note:** Version bump only for package @bloom-housing/public -picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +## [5.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.21...@bloom-housing/public@5.0.1-alpha.22) (2022-07-13) -* feat: one month rent +**Note:** Version bump only for package @bloom-housing/public -picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +## [5.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.20...@bloom-housing/public@5.0.1-alpha.21) (2022-07-12) -* test: view.spec.ts test +**Note:** Version bump only for package @bloom-housing/public -picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +## [5.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.19...@bloom-housing/public@5.0.1-alpha.20) (2022-07-12) -* refactor: removes jsonpath +**Note:** Version bump only for package @bloom-housing/public -picked from dev deb39acc005607ce3076942b1f49590d08afc10c +## [5.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.18...@bloom-housing/public@5.0.1-alpha.19) (2022-07-12) -* feat: adds jurisdictions to pref seeds +**Note:** Version bump only for package @bloom-housing/public -picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +## [5.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.17...@bloom-housing/public@5.0.1-alpha.18) (2022-07-11) -* feat: new demographics sub-race questions +**Note:** Version bump only for package @bloom-housing/public -picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +## [5.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.16...@bloom-housing/public@5.0.1-alpha.17) (2022-07-11) -* feat: updates email confirmation for lottery +### Bug Fixes -picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- ux updates and bug fixes for sidebar components ([#2859](https://github.com/bloom-housing/bloom/issues/2859)) ([1bd3b36](https://github.com/bloom-housing/bloom/commit/1bd3b36415ff55be88ea5ada6184de2c232f2da5)) -* fix: add ariaHidden to Icon component +## [5.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.15...@bloom-housing/public@5.0.1-alpha.16) (2022-07-11) -picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +**Note:** Version bump only for package @bloom-housing/public -* fix: add ariaLabel prop to Button component +## [5.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.14...@bloom-housing/public@5.0.1-alpha.15) (2022-07-08) -picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +**Note:** Version bump only for package @bloom-housing/public -* fix: change the yes/no radio text to be more descriptive +## [5.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.13...@bloom-housing/public@5.0.1-alpha.14) (2022-07-07) -picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +**Note:** Version bump only for package @bloom-housing/public -* fix: remove alameda reference in demographics +## [5.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.12...@bloom-housing/public@5.0.1-alpha.13) (2022-07-06) -picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +**Note:** Version bump only for package @bloom-housing/public -* chore: release version +## [5.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.11...@bloom-housing/public@5.0.1-alpha.12) (2022-07-06) -picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +**Note:** Version bump only for package @bloom-housing/public -* feat: ami chart jurisdictionalized +## [5.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.10...@bloom-housing/public@5.0.1-alpha.11) (2022-07-02) -picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +**Note:** Version bump only for package @bloom-housing/public -* refactor: make backend a peer dependency in ui-components +## [5.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.9...@bloom-housing/public@5.0.1-alpha.10) (2022-06-29) -picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +**Note:** Version bump only for package @bloom-housing/public -* feat: add a phone number column to the user_accounts table +## [5.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.8...@bloom-housing/public@5.0.1-alpha.9) (2022-06-29) -picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +**Note:** Version bump only for package @bloom-housing/public -* chore: removes application program partners +## [5.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.7...@bloom-housing/public@5.0.1-alpha.8) (2022-06-28) -* chore: removes application program display +### Bug Fixes -* Revert "chore: removes application program display" +- use lottery date in confirmation screen ([#2847](https://github.com/bloom-housing/bloom/issues/2847)) ([e4e9a7b](https://github.com/bloom-housing/bloom/commit/e4e9a7b0cb25abc4e412595e4c96c31f2fa857e0)) -This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +## [5.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.6...@bloom-housing/public@5.0.1-alpha.7) (2022-06-27) -* Revert "chore: removes application program partners" +### Bug Fixes -This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- application due date sentence ([#2822](https://github.com/bloom-housing/bloom/issues/2822)) ([62a870e](https://github.com/bloom-housing/bloom/commit/62a870e3696849dc751e410282279e23071db544)) -* chore: yarn.lock and backend-swagger +## [5.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.5...@bloom-housing/public@5.0.1-alpha.6) (2022-06-23) -* fix: removes Duplicate identifier fieldGroupObjectToArray +**Note:** Version bump only for package @bloom-housing/public -* feat: skip preferences if not on listing +## [5.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.4...@bloom-housing/public@5.0.1-alpha.5) (2022-06-23) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public -* fix: cannot save custom mailing, dropoff, or pickup address +## [5.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.3...@bloom-housing/public@5.0.1-alpha.4) (2022-06-23) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public -* chore: converge on one axios version, remove peer dependency +## [5.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.2...@bloom-housing/public@5.0.1-alpha.3) (2022-06-22) -* chore(release): version +**Note:** Version bump only for package @bloom-housing/public -* feat: simplify Waitlist component and use more flexible schema +## [5.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.1...@bloom-housing/public@5.0.1-alpha.2) (2022-06-21) -* chore(release): version +### Features -* fix: lottery results uploads now save +- **listingcard:** add compatability for jsx elements in subheader ([#2821](https://github.com/bloom-housing/bloom/issues/2821)) ([77693dc](https://github.com/bloom-housing/bloom/commit/77693dcee60be8deba641595ed6ae5e141d14a51)) -* chore(release): version +### BREAKING CHANGES -* feat: add SRO unit type +- **listingcard:** prop name change for header from "text" to "content" -* chore(release): version +## [5.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@5.0.1-alpha.0...@bloom-housing/public@5.0.1-alpha.1) (2022-06-17) -* fix: paper application submission +**Note:** Version bump only for package @bloom-housing/public -* chore(release): version +## [5.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.31...@bloom-housing/public@5.0.1-alpha.0) (2022-06-16) -* fix: choose-language context +- 2022-06 -16 sync master (#2825) ([17dabfe](https://github.com/bloom-housing/bloom/commit/17dabfeaf77afb55d629f97fe8e90001df94dc04)), closes [#2825](https://github.com/bloom-housing/bloom/issues/2825) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) -* chore(release): version +### BREAKING CHANGES -* fix: applications/view hide prefs +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -* chore(release): version +- chore(release): version -* feat: overrides fallback to english, tagalog support +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* chore(release): version +# [5.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.4.0...@bloom-housing/public@5.0.0) (2022-06-16) -* fix: account translations +- 2022-06-16 release (#2824) ([1abd991](https://github.com/seanmalbert/bloom/commit/1abd991136e28598b7856164b88bef462b8ff566)), closes [#2824](https://github.com/seanmalbert/bloom/issues/2824) [#2521](https://github.com/seanmalbert/bloom/issues/2521) [#2504](https://github.com/seanmalbert/bloom/issues/2504) [#2520](https://github.com/seanmalbert/bloom/issues/2520) [#2517](https://github.com/seanmalbert/bloom/issues/2517) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2529](https://github.com/seanmalbert/bloom/issues/2529) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2540](https://github.com/seanmalbert/bloom/issues/2540) [#2528](https://github.com/seanmalbert/bloom/issues/2528) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2545](https://github.com/seanmalbert/bloom/issues/2545) [#2526](https://github.com/seanmalbert/bloom/issues/2526) [#2532](https://github.com/seanmalbert/bloom/issues/2532) [#2551](https://github.com/seanmalbert/bloom/issues/2551) [#2562](https://github.com/seanmalbert/bloom/issues/2562) [#2566](https://github.com/seanmalbert/bloom/issues/2566) [#2572](https://github.com/seanmalbert/bloom/issues/2572) [#2546](https://github.com/seanmalbert/bloom/issues/2546) [#2578](https://github.com/seanmalbert/bloom/issues/2578) [#2579](https://github.com/seanmalbert/bloom/issues/2579) [#2581](https://github.com/seanmalbert/bloom/issues/2581) [#2593](https://github.com/seanmalbert/bloom/issues/2593) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2574](https://github.com/seanmalbert/bloom/issues/2574) [#2577](https://github.com/seanmalbert/bloom/issues/2577) [#2590](https://github.com/seanmalbert/bloom/issues/2590) [#2592](https://github.com/seanmalbert/bloom/issues/2592) [#2560](https://github.com/seanmalbert/bloom/issues/2560) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2501](https://github.com/seanmalbert/bloom/issues/2501) [#2599](https://github.com/seanmalbert/bloom/issues/2599) [#2600](https://github.com/seanmalbert/bloom/issues/2600) [#2598](https://github.com/seanmalbert/bloom/issues/2598) [#2582](https://github.com/seanmalbert/bloom/issues/2582) [#2531](https://github.com/seanmalbert/bloom/issues/2531) [#2615](https://github.com/seanmalbert/bloom/issues/2615) [#2606](https://github.com/seanmalbert/bloom/issues/2606) [#2618](https://github.com/seanmalbert/bloom/issues/2618) [#2620](https://github.com/seanmalbert/bloom/issues/2620) [#2628](https://github.com/seanmalbert/bloom/issues/2628) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2563](https://github.com/seanmalbert/bloom/issues/2563) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2537](https://github.com/seanmalbert/bloom/issues/2537) [#2635](https://github.com/seanmalbert/bloom/issues/2635) [#2624](https://github.com/seanmalbert/bloom/issues/2624) [#2642](https://github.com/seanmalbert/bloom/issues/2642) [#2652](https://github.com/seanmalbert/bloom/issues/2652) [#2649](https://github.com/seanmalbert/bloom/issues/2649) [#2037](https://github.com/seanmalbert/bloom/issues/2037) [#2095](https://github.com/seanmalbert/bloom/issues/2095) [#2162](https://github.com/seanmalbert/bloom/issues/2162) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2519](https://github.com/seanmalbert/bloom/issues/2519) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2534](https://github.com/seanmalbert/bloom/issues/2534) [#2544](https://github.com/seanmalbert/bloom/issues/2544) [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2658](https://github.com/seanmalbert/bloom/issues/2658) [#2653](https://github.com/seanmalbert/bloom/issues/2653) [#2630](https://github.com/seanmalbert/bloom/issues/2630) [#2612](https://github.com/seanmalbert/bloom/issues/2612) [#2672](https://github.com/seanmalbert/bloom/issues/2672) [#2558](https://github.com/seanmalbert/bloom/issues/2558) [#2604](https://github.com/seanmalbert/bloom/issues/2604) [#2625](https://github.com/seanmalbert/bloom/issues/2625) [#2650](https://github.com/seanmalbert/bloom/issues/2650) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2481](https://github.com/seanmalbert/bloom/issues/2481) [#2603](https://github.com/seanmalbert/bloom/issues/2603) [#2648](https://github.com/seanmalbert/bloom/issues/2648) [#2673](https://github.com/seanmalbert/bloom/issues/2673) [#2661](https://github.com/seanmalbert/bloom/issues/2661) [#2676](https://github.com/seanmalbert/bloom/issues/2676) [#2680](https://github.com/seanmalbert/bloom/issues/2680) [#2597](https://github.com/seanmalbert/bloom/issues/2597) [#2686](https://github.com/seanmalbert/bloom/issues/2686) [#2683](https://github.com/seanmalbert/bloom/issues/2683) [#2657](https://github.com/seanmalbert/bloom/issues/2657) [#2693](https://github.com/seanmalbert/bloom/issues/2693) [#2694](https://github.com/seanmalbert/bloom/issues/2694) [#2616](https://github.com/seanmalbert/bloom/issues/2616) [#2703](https://github.com/seanmalbert/bloom/issues/2703) [#2697](https://github.com/seanmalbert/bloom/issues/2697) [#2691](https://github.com/seanmalbert/bloom/issues/2691) [#2687](https://github.com/seanmalbert/bloom/issues/2687) [#2700](https://github.com/seanmalbert/bloom/issues/2700) [#2677](https://github.com/seanmalbert/bloom/issues/2677) [#2682](https://github.com/seanmalbert/bloom/issues/2682) [#2689](https://github.com/seanmalbert/bloom/issues/2689) [#2675](https://github.com/seanmalbert/bloom/issues/2675) [#2713](https://github.com/seanmalbert/bloom/issues/2713) [#2702](https://github.com/seanmalbert/bloom/issues/2702) [#2704](https://github.com/seanmalbert/bloom/issues/2704) [#2719](https://github.com/seanmalbert/bloom/issues/2719) [#2714](https://github.com/seanmalbert/bloom/issues/2714) [#2543](https://github.com/seanmalbert/bloom/issues/2543) [#2728](https://github.com/seanmalbert/bloom/issues/2728) [#2692](https://github.com/seanmalbert/bloom/issues/2692) [#2732](https://github.com/seanmalbert/bloom/issues/2732) [#2749](https://github.com/seanmalbert/bloom/issues/2749) [#2744](https://github.com/seanmalbert/bloom/issues/2744) [#2754](https://github.com/seanmalbert/bloom/issues/2754) [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -* chore(release): version +### BREAKING CHANGES -* fix: units with invalid ami chart +- preferences model and relationships changed -* chore(release): version +- feat: feat(backend): extend UserUpdateDto to support email change -* fix: remove description for the partners programs +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: fix modal styles on mobile +- fix: 2056/user account edit fix -* fix: visual improvement to programs form display +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- refactor: 2085/adds top level catchAll exception filter -* chore(release): version +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- feat: feat: Change unit number field type to text -* chore(release): version +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- feat(backend): improve application flagged set saving efficiency -* chore(release): version +- fix: fix: updates address order - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service -# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.1.2...@bloom-housing/public@4.2.0) (2022-04-06) +- fix: fix lisitng e2e tests +- fix: fix member tests -* 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -* 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update -### Features +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* update listing page to use getStaticProps again ([f546dda](https://github.com/seanmalbert/bloom/commit/f546ddadc280ecf3475b5f44fc0794173e06d9e5)) +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -### BREAKING CHANGES +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 -* remove applicationDueTime field and consolidated into applicationDueDate +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* chore(release): version +- fix: app submission w/ no due date - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* chore(release): version +- feat: adds new preferences, reserved community type - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 -* remove applicationDueTime field and consolidated into applicationDueDate +- feat: adds bottom border to preferences -* chore(release): version +- feat: updates preference string - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- fix: preference cleanup for avance -* chore(release): version +- refactor: remove applicationAddress - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -## [4.1.3-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.5...@bloom-housing/public@4.1.3-alpha.6) (2022-04-05) +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects -### Bug Fixes +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* remove shared-helpers dependency from ui-components ([#2620](https://github.com/bloom-housing/bloom/issues/2620)) ([cd6ea54](https://github.com/bloom-housing/bloom/commit/cd6ea5450402a9b5d2a8681c403cbfcff6b6b1c9)) +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath -## [4.1.3-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.4...@bloom-housing/public@4.1.3-alpha.5) (2022-04-05) +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -**Note:** Version bump only for package @bloom-housing/public +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery -## [4.1.3-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.3...@bloom-housing/public@4.1.3-alpha.4) (2022-04-04) +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -**Note:** Version bump only for package @bloom-housing/public +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive -## [4.1.3-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.2...@bloom-housing/public@4.1.3-alpha.3) (2022-04-04) +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics -### Features +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* listing card title redesign, multiple tags possible ([#2531](https://github.com/bloom-housing/bloom/issues/2531)) ([2b795cb](https://github.com/bloom-housing/bloom/commit/2b795cb6c47c084937e996332d1583e9e5bcbc54)) +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components -## [4.1.3-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.1...@bloom-housing/public@4.1.3-alpha.2) (2022-04-04) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -**Note:** Version bump only for package @bloom-housing/public +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" -## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.0...@bloom-housing/public@4.1.3-alpha.1) (2022-03-30) +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -**Note:** Version bump only for package @bloom-housing/public +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing -## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.3...@bloom-housing/public@4.1.3-alpha.0) (2022-03-30) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema -## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.1.1...@bloom-housing/public@4.1.2) (2022-03-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type +- chore(release): version +- fix: paper application submission -## [4.1.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.2...@bloom-housing/public@4.1.2-alpha.3) (2022-03-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support -## [4.1.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.1...@bloom-housing/public@4.1.2-alpha.2) (2022-03-29) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs -## [4.1.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.0...@bloom-housing/public@4.1.2-alpha.1) (2022-03-28) +- fix: fix modal styles on mobile -**Note:** Version bump only for package @bloom-housing/public +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [4.1.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.5...@bloom-housing/public@4.1.2-alpha.0) (2022-03-28) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* 2022 03 28 sync master (#2593) ([580283d](https://github.com/bloom-housing/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/bloom-housing/bloom/issues/2593) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: adds programs service +- fix: adds programs service -* fix: fix lisitng e2e tests +- fix: fix lisitng e2e tests -* fix: fix member tests +- fix: fix member tests -* fix: adds jurisdictionId to useSWR path +- fix: adds jurisdictionId to useSWR path -* fix: recalculate units available on listing update +- fix: recalculate units available on listing update picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -* feat: feat(backend): make use of new application confirmation codes +- feat: feat(backend): make use of new application confirmation codes picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -* fix: app submission w/ no due date +- fix: app submission w/ no due date picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -* feat: adds new preferences, reserved community type +- feat: adds new preferences, reserved community type -* feat: adds bottom border to preferences +- feat: adds bottom border to preferences -* feat: updates preference string +- feat: updates preference string -* fix: preference cleanup for avance +- fix: preference cleanup for avance -* refactor: remove applicationAddress +- refactor: remove applicationAddress picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -* feat: refactor and add public site application flow cypress tests +- feat: refactor and add public site application flow cypress tests picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -* feat: better seed data for ami-charts +- feat: better seed data for ami-charts picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* feat: adds listing management cypress tests to partner portal +- feat: adds listing management cypress tests to partner portal -* fix: listings management keep empty strings, remove empty objects +- fix: listings management keep empty strings, remove empty objects picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* feat: one month rent +- feat: one month rent picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -* test: view.spec.ts test +- test: view.spec.ts test picked from dev 324446c90138d8fac50aba445f515009b5a58bfb -* refactor: removes jsonpath +- refactor: removes jsonpath picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* feat: adds jurisdictions to pref seeds +- feat: adds jurisdictions to pref seeds picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 -* feat: new demographics sub-race questions +- feat: new demographics sub-race questions picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* feat: updates email confirmation for lottery +- feat: updates email confirmation for lottery picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* fix: add ariaHidden to Icon component +- fix: add ariaHidden to Icon component picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* fix: add ariaLabel prop to Button component +- fix: add ariaLabel prop to Button component picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -* fix: change the yes/no radio text to be more descriptive +- fix: change the yes/no radio text to be more descriptive picked from dev 0c46054574535523d6f217bb0677bbe732b8945f -* fix: remove alameda reference in demographics +- fix: remove alameda reference in demographics picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -* chore: release version +- chore: release version picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -* feat: ami chart jurisdictionalized +- feat: ami chart jurisdictionalized picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* refactor: make backend a peer dependency in ui-components +- refactor: make backend a peer dependency in ui-components picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -* feat: add a phone number column to the user_accounts table +- feat: add a phone number column to the user_accounts table picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* chore: removes application program partners +- chore: removes application program partners -* chore: removes application program display +- chore: removes application program display -* Revert "chore: removes application program display" +- Revert "chore: removes application program display" This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -* Revert "chore: removes application program partners" +- Revert "chore: removes application program partners" This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -* chore: yarn.lock and backend-swagger +- chore: yarn.lock and backend-swagger -* fix: removes Duplicate identifier fieldGroupObjectToArray +- fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: skip preferences if not on listing +- feat: skip preferences if not on listing -* chore(release): version +- chore(release): version -* fix: cannot save custom mailing, dropoff, or pickup address +- fix: cannot save custom mailing, dropoff, or pickup address -* chore(release): version +- chore(release): version -* chore: converge on one axios version, remove peer dependency +- chore: converge on one axios version, remove peer dependency -* chore(release): version +- chore(release): version -* feat: simplify Waitlist component and use more flexible schema +- feat: simplify Waitlist component and use more flexible schema -* chore(release): version +- chore(release): version -* fix: lottery results uploads now save +- fix: lottery results uploads now save -* chore(release): version +- chore(release): version -* feat: add SRO unit type +- feat: add SRO unit type -* chore(release): version +- chore(release): version -* fix: paper application submission +- fix: paper application submission -* chore(release): version +- chore(release): version -* fix: choose-language context +- fix: choose-language context -* chore(release): version +- chore(release): version -* fix: applications/view hide prefs +- fix: applications/view hide prefs -* chore(release): version +- chore(release): version -* feat: overrides fallback to english, tagalog support +- feat: overrides fallback to english, tagalog support -* chore(release): version +- chore(release): version -* fix: account translations +- fix: account translations -* chore(release): version +- chore(release): version -* fix: units with invalid ami chart +- fix: units with invalid ami chart -* chore(release): version +- chore(release): version -* fix: remove description for the partners programs +- fix: remove description for the partners programs -* fix: fix modal styles on mobile +- fix: fix modal styles on mobile -* fix: visual improvement to programs form display +- fix: visual improvement to programs form display -* fix: submission tests not running -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -* chore(release): version +- chore(release): version - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* chore(release): version +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -* chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change -## [4.1.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.1.0...@bloom-housing/public@4.1.1) (2022-03-28) -## [4.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.4...@bloom-housing/public@4.1.1-alpha.5) (2022-03-28) +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -**Note:** Version bump only for package @bloom-housing/public +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text -## [4.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.3...@bloom-housing/public@4.1.1-alpha.4) (2022-03-25) +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -**Note:** Version bump only for package @bloom-housing/public +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.2...@bloom-housing/public@4.1.1-alpha.3) (2022-03-22) +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -**Note:** Version bump only for package @bloom-housing/public +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update -## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.1...@bloom-housing/public@4.1.1-alpha.2) (2022-03-16) +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes -### Bug Fixes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e -* remove space between minutes and AM/PM for ApplicationStatus ([#2566](https://github.com/bloom-housing/bloom/issues/2566)) ([5440b38](https://github.com/bloom-housing/bloom/commit/5440b38f3048d17e6e76b41f0aa81f5176368af2)) +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type -## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.0...@bloom-housing/public@4.1.1-alpha.1) (2022-03-10) +- feat: adds bottom border to preferences -**Note:** Version bump only for package @bloom-housing/public +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests -## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.84...@bloom-housing/public@4.1.1-alpha.0) (2022-03-02) +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -**Note:** Version bump only for package @bloom-housing/public +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.1-alpha.84...@bloom-housing/public@4.0.1) (2022-03-02) +- feat: one month rent -**Note:** Version bump only for package @bloom-housing/public -# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.3...@bloom-housing/public@4.1.0) (2022-03-02) +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test -* 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath -### BREAKING CHANGES +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate +- feat: adds jurisdictions to pref seeds -* chore(release): version +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- feat: new demographics sub-race questions -* chore(release): version +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 - - @bloom-housing/backend-core@3.0.2-alpha.38 - - @bloom-housing/shared-helpers@4.0.1-alpha.63 - - @bloom-housing/partners@4.0.1-alpha.67 - - @bloom-housing/public@4.0.1-alpha.66 - - @bloom-housing/ui-components@4.0.1-alpha.62 +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be +- fix: add ariaLabel prop to Button component -## [4.0.1-alpha.84](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.83...@bloom-housing/public@4.0.1-alpha.84) (2022-02-28) +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 -**Note:** Version bump only for package @bloom-housing/public +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version -## [4.0.1-alpha.83](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.82...@bloom-housing/public@4.0.1-alpha.83) (2022-02-28) +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized -### Bug Fixes +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 -* more style tweaks for AlertBox ([#2526](https://github.com/bloom-housing/bloom/issues/2526)) ([bce3920](https://github.com/bloom-housing/bloom/commit/bce3920b7638be3def05d852d0192ab0cbb2e749)) +- refactor: make backend a peer dependency in ui-components + +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display -## [4.0.1-alpha.82](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.81...@bloom-housing/public@4.0.1-alpha.82) (2022-02-26) +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -### Features +- Revert "chore: removes application program partners" -* adds gtm tracking to rest of pages ([#2545](https://github.com/bloom-housing/bloom/issues/2545)) ([1c96f71](https://github.com/bloom-housing/bloom/commit/1c96f7101017aefd8bca70731265f6efb1ab5cf0)) +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing +- chore(release): version -## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.2...@bloom-housing/public@4.0.3) (2022-02-25) +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version -* Add San Jose email translations ([#2519](https://github.com/seanmalbert/bloom/issues/2519)) ([d1db032](https://github.com/seanmalbert/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema +- chore(release): version +- fix: lottery results uploads now save -## [4.0.1-alpha.81](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.80...@bloom-housing/public@4.0.1-alpha.81) (2022-02-25) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- feat: add SRO unit type +- chore(release): version +- fix: paper application submission +- chore(release): version +- fix: choose-language context -## [4.0.1-alpha.80](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.79...@bloom-housing/public@4.0.1-alpha.80) (2022-02-25) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version +- fix: account translations -## [4.0.1-alpha.79](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.78...@bloom-housing/public@4.0.1-alpha.79) (2022-02-24) +- chore(release): version + +- fix: units with invalid ami chart + +- chore(release): version + +- fix: remove description for the partners programs + +- fix: fix modal styles on mobile + +- fix: visual improvement to programs form display + +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. + +- chore(release): version + +* @bloom-housing/shared-helpers@4.2.2-alpha.10 +* @bloom-housing/partners@4.2.2-alpha.11 +* @bloom-housing/public@4.2.2-alpha.11 +* @bloom-housing/ui-components@4.2.2-alpha.10 +- the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings + +- chore(release): version + +* @bloom-housing/shared-helpers@4.2.2-alpha.23 +* @bloom-housing/partners@4.2.2-alpha.27 +* @bloom-housing/public@4.2.2-alpha.26 +* @bloom-housing/ui-components@4.2.2-alpha.23 + +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set + +- chore(release): version + +* @bloom-housing/shared-helpers@4.2.2-alpha.24 +* @bloom-housing/partners@4.2.2-alpha.28 +* @bloom-housing/public@4.2.2-alpha.27 +* @bloom-housing/ui-components@4.2.2-alpha.24 + +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection + +- chore(release): version + +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 + +## [4.4.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.30...@bloom-housing/public@4.4.1-alpha.31) (2022-06-16) + +### Features + +- creating setting wall for accessibility feat ([#2817](https://github.com/bloom-housing/bloom/issues/2817)) ([d26cad4](https://github.com/bloom-housing/bloom/commit/d26cad463daf45995e5ed887a0132063d56c0ab5)) + +## [4.4.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.29...@bloom-housing/public@4.4.1-alpha.30) (2022-06-14) + +**Note:** Version bump only for package @bloom-housing/public + +## [4.4.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.28...@bloom-housing/public@4.4.1-alpha.29) (2022-06-13) ### Bug Fixes -* serverSideProps on listings bc of netlify limitations ([#2540](https://github.com/bloom-housing/bloom/issues/2540)) ([bc69140](https://github.com/bloom-housing/bloom/commit/bc69140b68c997e90e899803e00307bd79b28b15)) +- autofill skipping ([#2800](https://github.com/bloom-housing/bloom/issues/2800)) ([4b6ebbe](https://github.com/bloom-housing/bloom/commit/4b6ebbe4374ce774959f44e43ee62a670bf9dd9e)) +## [4.4.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.27...@bloom-housing/public@4.4.1-alpha.28) (2022-06-13) +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.26...@bloom-housing/public@4.4.1-alpha.27) (2022-06-13) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.78](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.77...@bloom-housing/public@4.0.1-alpha.78) (2022-02-22) +## [4.4.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.25...@bloom-housing/public@4.4.1-alpha.26) (2022-06-10) **Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.24...@bloom-housing/public@4.4.1-alpha.25) (2022-06-10) + +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.23...@bloom-housing/public@4.4.1-alpha.24) (2022-06-09) +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.22...@bloom-housing/public@4.4.1-alpha.23) (2022-06-09) -## [4.0.1-alpha.77](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.76...@bloom-housing/public@4.0.1-alpha.77) (2022-02-18) +**Note:** Version bump only for package @bloom-housing/public + +## [4.4.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.21...@bloom-housing/public@4.4.1-alpha.22) (2022-06-09) **Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.20...@bloom-housing/public@4.4.1-alpha.21) (2022-06-09) +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.19...@bloom-housing/public@4.4.1-alpha.20) (2022-06-08) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.76](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.75...@bloom-housing/public@4.0.1-alpha.76) (2022-02-17) +## [4.4.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.18...@bloom-housing/public@4.4.1-alpha.19) (2022-06-08) **Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.17...@bloom-housing/public@4.4.1-alpha.18) (2022-06-07) + +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.16...@bloom-housing/public@4.4.1-alpha.17) (2022-06-07) +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.15...@bloom-housing/public@4.4.1-alpha.16) (2022-06-07) -## [4.0.1-alpha.75](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.74...@bloom-housing/public@4.0.1-alpha.75) (2022-02-17) +**Note:** Version bump only for package @bloom-housing/public + +## [4.4.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.14...@bloom-housing/public@4.4.1-alpha.15) (2022-06-06) **Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.13...@bloom-housing/public@4.4.1-alpha.14) (2022-06-04) +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.12...@bloom-housing/public@4.4.1-alpha.13) (2022-06-03) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.74](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.73...@bloom-housing/public@4.0.1-alpha.74) (2022-02-17) +## [4.4.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.11...@bloom-housing/public@4.4.1-alpha.12) (2022-06-02) + +**Note:** Version bump only for package @bloom-housing/public + +## [4.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.10...@bloom-housing/public@4.4.1-alpha.11) (2022-06-01) + +### Features + +- add accessibility building features to listing ([#2755](https://github.com/bloom-housing/bloom/issues/2755)) ([0c8dfb8](https://github.com/bloom-housing/bloom/commit/0c8dfb833d0ef6d4f4927636c9f01bae6f48e4f1)) +## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.9...@bloom-housing/public@4.4.1-alpha.10) (2022-05-31) -### Features +### Bug Fixes -* **backend:** add listing order by mostRecentlyClosed param ([#2478](https://github.com/bloom-housing/bloom/issues/2478)) ([0f177c1](https://github.com/bloom-housing/bloom/commit/0f177c1847ac254f63837b0aca7fa8a705e3632c)) +- netlify oom build issues ([#2770](https://github.com/bloom-housing/bloom/issues/2770)) ([45b2cb5](https://github.com/bloom-housing/bloom/commit/45b2cb598d50f06d87d96edaad2b49edbb76a05b)) +## [4.4.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.8...@bloom-housing/public@4.4.1-alpha.9) (2022-05-31) +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.7...@bloom-housing/public@4.4.1-alpha.8) (2022-05-31) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.72...@bloom-housing/public@4.0.1-alpha.73) (2022-02-16) +## [4.4.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.6...@bloom-housing/public@4.4.1-alpha.7) (2022-05-31) **Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.5...@bloom-housing/public@4.4.1-alpha.6) (2022-05-26) + +### Bug Fixes +- visual design bugs ([#2737](https://github.com/bloom-housing/bloom/issues/2737)) ([dbac685](https://github.com/bloom-housing/bloom/commit/dbac685cd1e4d276b57a1d961eb5707decbc248b)) +## [4.4.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.4...@bloom-housing/public@4.4.1-alpha.5) (2022-05-26) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.71...@bloom-housing/public@4.0.1-alpha.72) (2022-02-16) +## [4.4.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.3...@bloom-housing/public@4.4.1-alpha.4) (2022-05-26) **Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.2...@bloom-housing/public@4.4.1-alpha.3) (2022-05-25) +**Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.1...@bloom-housing/public@4.4.1-alpha.2) (2022-05-25) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.70...@bloom-housing/public@4.0.1-alpha.71) (2022-02-16) +## [4.4.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.4.1-alpha.0...@bloom-housing/public@4.4.1-alpha.1) (2022-05-25) **Note:** Version bump only for package @bloom-housing/public +## [4.4.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.3.1-alpha.2...@bloom-housing/public@4.4.1-alpha.0) (2022-05-25) +- 2022 05 24 sync master (#2754) ([f52781f](https://github.com/bloom-housing/bloom/commit/f52781fe18fbdad071d6e9a8a2b29877596c5492)), closes [#2754](https://github.com/bloom-housing/bloom/issues/2754) [#2753](https://github.com/bloom-housing/bloom/issues/2753) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -## [4.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.69...@bloom-housing/public@4.0.1-alpha.70) (2022-02-16) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -### Bug Fixes +# [4.4.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.3...@bloom-housing/public@4.4.0) (2022-05-24) -* use the correct AlertBox component for preview listing notice ([#2497](https://github.com/bloom-housing/bloom/issues/2497)) ([f985c44](https://github.com/bloom-housing/bloom/commit/f985c444aaed31504a1e1ce7173c6e15194e2af6)) +- 2022-05-24 release (#2753) ([3beb6b7](https://github.com/seanmalbert/bloom/commit/3beb6b77f74e51ec37457d4676a1fd01d1304a65)), closes [#2753](https://github.com/seanmalbert/bloom/issues/2753) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.68...@bloom-housing/public@4.0.1-alpha.69) (2022-02-16) +## [4.3.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.3.1-alpha.1...@bloom-housing/public@4.3.1-alpha.2) (2022-05-24) **Note:** Version bump only for package @bloom-housing/public +## [4.3.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.3.1-alpha.0...@bloom-housing/public@4.3.1-alpha.1) (2022-05-24) +**Note:** Version bump only for package @bloom-housing/public +## [4.3.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.34...@bloom-housing/public@4.3.1-alpha.0) (2022-05-16) +### Bug Fixes -## [4.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.67...@bloom-housing/public@4.0.1-alpha.68) (2022-02-16) +- 2259/fixes idle timeout not resetting properly ([#2292](https://github.com/bloom-housing/bloom/issues/2292)) ([1b89acb](https://github.com/bloom-housing/bloom/commit/1b89acb21dea913db4ae638b9e4566a444eb7190)) +- applications/view hide prefs ([eed00ab](https://github.com/bloom-housing/bloom/commit/eed00ab591b99c274fe4663c940ac76bc455edfd)) +- change the yes/no radio text to be more descriptive ([c48e6c8](https://github.com/bloom-housing/bloom/commit/c48e6c83070651800bb9a1df0520ad3df14ebdff)) +- choose-language context ([0d655f9](https://github.com/bloom-housing/bloom/commit/0d655f90838c4c76c7b1b6802bc62151adf472a4)) +- closed listings allowed apps ([#2317](https://github.com/bloom-housing/bloom/issues/2317)) ([557fde3](https://github.com/bloom-housing/bloom/commit/557fde3367c1eece8f80d9618b6a6ba7cd6eebbb)) +- demographics howDidYouHear options (2305) ([b80f21c](https://github.com/bloom-housing/bloom/commit/b80f21ca3e75b335222020130b96ef137be6b26f)) +- issues with public app and readds auto save (2428) ([ea5975f](https://github.com/bloom-housing/bloom/commit/ea5975f2fad9584766ab8f8f54c11f754440d1c1)) +- load blank application ([b28e9a3](https://github.com/bloom-housing/bloom/commit/b28e9a3d2258a8fd4e9fddc17599f614b382e172)) +- patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([21f517e](https://github.com/bloom-housing/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) +- preference cleanup for avance ([8ff5e6d](https://github.com/bloom-housing/bloom/commit/8ff5e6d1ccb4e93a355bb3e502974c99ada22b66)) +- prefUnits on autofill summary ([#2294](https://github.com/bloom-housing/bloom/issues/2294)) ([c027e96](https://github.com/bloom-housing/bloom/commit/c027e964f8f4e135cbc0fa70db5eaafa389ce53c)) +- remove alameda reference in demographics ([cc6761b](https://github.com/bloom-housing/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) +- submission tests not running ([78dd21e](https://github.com/bloom-housing/bloom/commit/78dd21ecf82680d38a97f762dfa128df3496fd91)) +- versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([c274a29](https://github.com/bloom-housing/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +- visual improvement to programs form display ([33ef3db](https://github.com/bloom-housing/bloom/commit/33ef3dbdbafd561a79f17b90edb8d80b98a4c035)) + +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/bloom-housing/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/bloom-housing/bloom/issues/2646) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/bloom-housing/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/bloom-housing/bloom/issues/2627) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/bloom-housing/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/bloom-housing/bloom/issues/2614) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/bloom-housing/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +- 2022-01-27 release (#2439) ([860f6af](https://github.com/bloom-housing/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) +- Release 11 11 21 (#2162) ([4847469](https://github.com/bloom-housing/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/bloom-housing/bloom/issues/2162) -**Note:** Version bump only for package @bloom-housing/public +### Features +- Add San Jose email translations ([#2519](https://github.com/bloom-housing/bloom/issues/2519)) ([d1db032](https://github.com/bloom-housing/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) +- adds bottom border to preferences ([60fe76a](https://github.com/bloom-housing/bloom/commit/60fe76af140538216555bcf79b0747df3d565404)) +- adds new preferences, reserved community type ([90c0673](https://github.com/bloom-housing/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) +- new demographics sub-race questions ([910df6a](https://github.com/bloom-housing/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/bloom-housing/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/bloom-housing/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- refactor and add public site application flow cypress tests ([a300d69](https://github.com/bloom-housing/bloom/commit/a300d69c895052a6c3c4def6121237fdc80a76c6)) +- simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/bloom-housing/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) +- skip preferences if not on listing ([644ba0e](https://github.com/bloom-housing/bloom/commit/644ba0eb7094b5d57c54df80f3cd11dcea0ca4a7)) +- update listing page to use getStaticProps again ([f546dda](https://github.com/bloom-housing/bloom/commit/f546ddadc280ecf3475b5f44fc0794173e06d9e5)) +### Reverts +- Revert "chore(release): version" ([47a2c67](https://github.com/bloom-housing/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/bloom-housing/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/bloom-housing/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES -## [4.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.66...@bloom-housing/public@4.0.1-alpha.67) (2022-02-15) +- remove applicationDueTime field and consolidated into applicationDueDate -**Note:** Version bump only for package @bloom-housing/public +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -## [4.0.1-alpha.66](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.65...@bloom-housing/public@4.0.1-alpha.66) (2022-02-15) +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -### Code Refactoring +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* remove backend dependencies from events components, consolidate ([#2495](https://github.com/bloom-housing/bloom/issues/2495)) ([d884689](https://github.com/bloom-housing/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -## [4.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.64...@bloom-housing/public@4.0.1-alpha.65) (2022-02-15) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -**Note:** Version bump only for package @bloom-housing/public +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -## [4.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.63...@bloom-housing/public@4.0.1-alpha.64) (2022-02-15) +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -**Note:** Version bump only for package @bloom-housing/public +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- preferences model and relationships changed +- feat: feat(backend): extend UserUpdateDto to support email change -## [4.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.62...@bloom-housing/public@4.0.1-alpha.63) (2022-02-15) +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -**Note:** Version bump only for package @bloom-housing/public +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text -## [4.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.61...@bloom-housing/public@4.0.1-alpha.62) (2022-02-14) +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -**Note:** Version bump only for package @bloom-housing/public +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -## [4.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.60...@bloom-housing/public@4.0.1-alpha.61) (2022-02-14) +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -**Note:** Version bump only for package @bloom-housing/public +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +## [4.2.2-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.33...@bloom-housing/public@4.2.2-alpha.34) (2022-05-13) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.59...@bloom-housing/public@4.0.1-alpha.60) (2022-02-12) +## [4.2.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.2...@bloom-housing/public@4.2.3) (2022-04-28) -**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.32...@bloom-housing/public@4.2.2-alpha.33) (2022-05-11) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.1...@bloom-housing/public@4.2.2) (2022-04-19) +## [4.2.2-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.31...@bloom-housing/public@4.2.2-alpha.32) (2022-05-11) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.58...@bloom-housing/public@4.0.1-alpha.59) (2022-02-10) +## [4.2.2-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.30...@bloom-housing/public@4.2.2-alpha.31) (2022-05-10) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.29...@bloom-housing/public@4.2.2-alpha.30) (2022-05-09) + +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.28...@bloom-housing/public@4.2.2-alpha.29) (2022-05-05) +### Bug Fixes +- use appropriate copy for FCFS vs Lottery in Application Confirmation screen ([#2702](https://github.com/bloom-housing/bloom/issues/2702)) ([5289504](https://github.com/bloom-housing/bloom/commit/52895044cba64eeb7789c68f0a5eb957785055b5)) -## [4.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.57...@bloom-housing/public@4.0.1-alpha.58) (2022-02-10) +## [4.2.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.27...@bloom-housing/public@4.2.2-alpha.28) (2022-05-04) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.26...@bloom-housing/public@4.2.2-alpha.27) (2022-05-04) +### Code Refactoring +- remove backend dependencies from sidebar application components ([#2675](https://github.com/bloom-housing/bloom/issues/2675)) ([d2ebf87](https://github.com/bloom-housing/bloom/commit/d2ebf87c34af3f5b6168fa4e08663fea0a4a872c)) +### BREAKING CHANGES -## [4.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.56...@bloom-housing/public@4.0.1-alpha.57) (2022-02-10) +- the LeasingAgent component has been renamed to Contact with a new generalized prop set, the SidebarAddress component has been renamed to ContactAddress with a new generalized prop set -**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.25...@bloom-housing/public@4.2.2-alpha.26) (2022-05-04) +### Code Refactoring +- remove business logic, strings from waitlist component ([#2689](https://github.com/bloom-housing/bloom/issues/2689)) ([a5721db](https://github.com/bloom-housing/bloom/commit/a5721db518453ddbd777e50ca92fdeac19997aa9)) +### BREAKING CHANGES +- the Waitlist component was renamed to QuantityRowSection which also has a new prop set to account for a flexible number of rows and strings -## [4.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.55...@bloom-housing/public@4.0.1-alpha.56) (2022-02-10) +## [4.2.2-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.24...@bloom-housing/public@4.2.2-alpha.25) (2022-05-03) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.23...@bloom-housing/public@4.2.2-alpha.24) (2022-04-29) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.22...@bloom-housing/public@4.2.2-alpha.23) (2022-04-29) +### Bug Fixes -## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.1...@bloom-housing/public@4.0.2) (2022-02-09) +- ux updates for new listing card design ([#2687](https://github.com/bloom-housing/bloom/issues/2687)) ([c8814ae](https://github.com/bloom-housing/bloom/commit/c8814ae57b62fa6f932017bb70d47663b09fca1a)) +## [4.2.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.21...@bloom-housing/public@4.2.2-alpha.22) (2022-04-28) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.20...@bloom-housing/public@4.2.2-alpha.21) (2022-04-28) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.54...@bloom-housing/public@4.0.1-alpha.55) (2022-02-09) +## [4.2.2-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.19...@bloom-housing/public@4.2.2-alpha.20) (2022-04-28) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.18...@bloom-housing/public@4.2.2-alpha.19) (2022-04-27) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.17...@bloom-housing/public@4.2.2-alpha.18) (2022-04-26) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.53...@bloom-housing/public@4.0.1-alpha.54) (2022-02-09) +## [4.2.2-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.16...@bloom-housing/public@4.2.2-alpha.17) (2022-04-26) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.15...@bloom-housing/public@4.2.2-alpha.16) (2022-04-22) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.14...@bloom-housing/public@4.2.2-alpha.15) (2022-04-22) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.52...@bloom-housing/public@4.0.1-alpha.53) (2022-02-09) +## [4.2.2-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.13...@bloom-housing/public@4.2.2-alpha.14) (2022-04-22) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.12...@bloom-housing/public@4.2.2-alpha.13) (2022-04-21) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.11...@bloom-housing/public@4.2.2-alpha.12) (2022-04-21) +### Features -## [4.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.51...@bloom-housing/public@4.0.1-alpha.52) (2022-02-09) - -**Note:** Version bump only for package @bloom-housing/public +- add disabled field to contactPreferencesOptions ([#2673](https://github.com/bloom-housing/bloom/issues/2673)) ([b858637](https://github.com/bloom-housing/bloom/commit/b858637b84e2ff98eacf51ca5eccce613ae13733)) +## [4.2.2-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.10...@bloom-housing/public@4.2.2-alpha.11) (2022-04-21) +### Features +- new category table component ([#2648](https://github.com/bloom-housing/bloom/issues/2648)) ([3b3fe46](https://github.com/bloom-housing/bloom/commit/3b3fe46dda3d0e553664c10cea46849551ce064c)) +### BREAKING CHANGES -## [4.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.50...@bloom-housing/public@4.0.1-alpha.51) (2022-02-09) +- There is a new prop interface for the StandardTable component and all components that use it, which includes passing cell content within a new object, allowing us to support new cell options - all tables will need to pass data with the new format. -**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.9...@bloom-housing/public@4.2.2-alpha.10) (2022-04-20) +### Bug Fixes +- no application message and loading spinner working ([#2603](https://github.com/bloom-housing/bloom/issues/2603)) ([0ae1596](https://github.com/bloom-housing/bloom/commit/0ae159671b3b62fa572e27a8a860d693fab86a2c)) +## [4.2.2-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.8...@bloom-housing/public@4.2.2-alpha.9) (2022-04-20) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.49...@bloom-housing/public@4.0.1-alpha.50) (2022-02-08) +## [4.2.2-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.7...@bloom-housing/public@4.2.2-alpha.8) (2022-04-20) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.6...@bloom-housing/public@4.2.2-alpha.7) (2022-04-20) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.5...@bloom-housing/public@4.2.2-alpha.6) (2022-04-20) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.48...@bloom-housing/public@4.0.1-alpha.49) (2022-02-07) +## [4.2.2-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.4...@bloom-housing/public@4.2.2-alpha.5) (2022-04-19) **Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.3...@bloom-housing/public@4.2.2-alpha.4) (2022-04-18) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.2...@bloom-housing/public@4.2.2-alpha.3) (2022-04-18) +### Features -## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@3.0.1-alpha.34...@bloom-housing/public@4.0.1) (2022-02-03) - -### Bug Fixes +- refactor ada form fields ([#2612](https://github.com/bloom-housing/bloom/issues/2612)) ([f516f21](https://github.com/bloom-housing/bloom/commit/f516f2164249cea5b622b6bb5cd6efb5455003ca)) -* 2259/fixes idle timeout not resetting properly ([#2292](https://github.com/seanmalbert/bloom/issues/2292)) ([1b89acb](https://github.com/seanmalbert/bloom/commit/1b89acb21dea913db4ae638b9e4566a444eb7190)) -* applications/view hide prefs ([eed00ab](https://github.com/seanmalbert/bloom/commit/eed00ab591b99c274fe4663c940ac76bc455edfd)) -* change the yes/no radio text to be more descriptive ([c48e6c8](https://github.com/seanmalbert/bloom/commit/c48e6c83070651800bb9a1df0520ad3df14ebdff)) -* choose-language context ([0d655f9](https://github.com/seanmalbert/bloom/commit/0d655f90838c4c76c7b1b6802bc62151adf472a4)) -* closed listings allowed apps ([#2317](https://github.com/seanmalbert/bloom/issues/2317)) ([557fde3](https://github.com/seanmalbert/bloom/commit/557fde3367c1eece8f80d9618b6a6ba7cd6eebbb)) -* demographics howDidYouHear options (2305) ([b80f21c](https://github.com/seanmalbert/bloom/commit/b80f21ca3e75b335222020130b96ef137be6b26f)) -* issues with public app and readds auto save (2428) ([ea5975f](https://github.com/seanmalbert/bloom/commit/ea5975f2fad9584766ab8f8f54c11f754440d1c1)) -* load blank application ([b28e9a3](https://github.com/seanmalbert/bloom/commit/b28e9a3d2258a8fd4e9fddc17599f614b382e172)) -* patches translations for preferences ([#2410](https://github.com/seanmalbert/bloom/issues/2410)) ([21f517e](https://github.com/seanmalbert/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) -* preference cleanup for avance ([8ff5e6d](https://github.com/seanmalbert/bloom/commit/8ff5e6d1ccb4e93a355bb3e502974c99ada22b66)) -* prefUnits on autofill summary ([#2294](https://github.com/seanmalbert/bloom/issues/2294)) ([c027e96](https://github.com/seanmalbert/bloom/commit/c027e964f8f4e135cbc0fa70db5eaafa389ce53c)) -* remove alameda reference in demographics ([cc6761b](https://github.com/seanmalbert/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) -* submission tests not running ([78dd21e](https://github.com/seanmalbert/bloom/commit/78dd21ecf82680d38a97f762dfa128df3496fd91)) -* versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) -* visual improvement to programs form display ([33ef3db](https://github.com/seanmalbert/bloom/commit/33ef3dbdbafd561a79f17b90edb8d80b98a4c035)) - - -* 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) -* Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) +## [4.2.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.1...@bloom-housing/public@4.2.2-alpha.2) (2022-04-14) -### Features +**Note:** Version bump only for package @bloom-housing/public -* adds bottom border to preferences ([60fe76a](https://github.com/seanmalbert/bloom/commit/60fe76af140538216555bcf79b0747df3d565404)) -* adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) -* new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* refactor and add public site application flow cypress tests ([a300d69](https://github.com/seanmalbert/bloom/commit/a300d69c895052a6c3c4def6121237fdc80a76c6)) -* simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/seanmalbert/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) -* skip preferences if not on listing ([644ba0e](https://github.com/seanmalbert/bloom/commit/644ba0eb7094b5d57c54df80f3cd11dcea0ca4a7)) +## [4.2.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.2-alpha.0...@bloom-housing/public@4.2.2-alpha.1) (2022-04-13) +**Note:** Version bump only for package @bloom-housing/public -### Reverts +## [4.2.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.4...@bloom-housing/public@4.2.2-alpha.0) (2022-04-13) -* Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +- 2022-04-11 sync master (#2649) ([9d30acf](https://github.com/bloom-housing/bloom/commit/9d30acf7b53fca50a87fc8bd2658c11d3ed37427)), closes [#2649](https://github.com/bloom-housing/bloom/issues/2649) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) ### BREAKING CHANGES -* sign-in pages have been updated -* moved some helpers from ui-components to shared-helpers -* remove applicationDueTime field and consolidated into applicationDueDate - -* chore(release): version - - - @bloom-housing/backend-core@3.0.2-alpha.13 - - @bloom-housing/shared-helpers@4.0.1-alpha.21 - - @bloom-housing/partners@4.0.1-alpha.23 - - @bloom-housing/public@4.0.1-alpha.22 - - @bloom-housing/ui-components@4.0.1-alpha.21 -* preferences model and relationships changed +- preferences model and relationships changed -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: feat(backend): extend UserUpdateDto to support email change picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -* fix: 2056/user account edit fix +- fix: 2056/user account edit fix picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 -* refactor: 2085/adds top level catchAll exception filter +- refactor: 2085/adds top level catchAll exception filter picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -* feat: feat: Change unit number field type to text +- feat: feat: Change unit number field type to text picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* feat(backend): improve application flagged set saving efficiency +- feat(backend): improve application flagged set saving efficiency -* fix: fix: updates address order +- fix: fix: updates address order picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* fix: sets programs to optoinal and updates versions - -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- fix: sets programs to optoinal and updates versions -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -* fix: adds programs service +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -* fix: fix lisitng e2e tests +- fix: adds programs service -* fix: fix member tests +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -## [4.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.47...@bloom-housing/public@4.0.1-alpha.48) (2022-02-02) +- feat: feat(backend): make use of new application confirmation codes -**Note:** Version bump only for package @bloom-housing/public +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -## [4.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.46...@bloom-housing/public@4.0.1-alpha.47) (2022-02-02) +- feat: adds new preferences, reserved community type -**Note:** Version bump only for package @bloom-housing/public +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -## [4.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.45...@bloom-housing/public@4.0.1-alpha.46) (2022-02-02) +- feat: refactor and add public site application flow cypress tests -**Note:** Version bump only for package @bloom-housing/public +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects -## [4.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.44...@bloom-housing/public@4.0.1-alpha.45) (2022-02-02) +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -**Note:** Version bump only for package @bloom-housing/public +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath -## [4.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.43...@bloom-housing/public@4.0.1-alpha.44) (2022-02-01) +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -**Note:** Version bump only for package @bloom-housing/public +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery -## [4.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.42...@bloom-housing/public@4.0.1-alpha.43) (2022-02-01) +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component -### Bug Fixes +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* infinite page width ([#2459](https://github.com/bloom-housing/bloom/issues/2459)) ([190ff9a](https://github.com/bloom-housing/bloom/commit/190ff9a4760b0b64485094964c3e7a52fec12467)) +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics -## [4.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.41...@bloom-housing/public@4.0.1-alpha.42) (2022-02-01) +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -**Note:** Version bump only for package @bloom-housing/public +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 +- feat: ami chart jurisdictionalized +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components -## [4.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.40...@bloom-housing/public@4.0.1-alpha.41) (2022-02-01) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 -**Note:** Version bump only for package @bloom-housing/public +- feat: add a phone number column to the user_accounts table +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" -## [4.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.39...@bloom-housing/public@4.0.1-alpha.40) (2022-02-01) +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. -**Note:** Version bump only for package @bloom-housing/public +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing -## [4.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.38...@bloom-housing/public@4.0.1-alpha.39) (2022-02-01) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema -## [4.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.37...@bloom-housing/public@4.0.1-alpha.38) (2022-02-01) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: lottery results uploads now save +- chore(release): version +- feat: add SRO unit type +- chore(release): version +- fix: paper application submission -## [4.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.36...@bloom-housing/public@4.0.1-alpha.37) (2022-02-01) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support -## [4.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.35...@bloom-housing/public@4.0.1-alpha.36) (2022-02-01) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: account translations +- chore(release): version +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs -## [4.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.34...@bloom-housing/public@4.0.1-alpha.35) (2022-02-01) +- fix: fix modal styles on mobile -**Note:** Version bump only for package @bloom-housing/public +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [4.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.33...@bloom-housing/public@4.0.1-alpha.34) (2022-01-31) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.2.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.2.0...@bloom-housing/public@4.2.1) (2022-04-11) -## [4.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.32...@bloom-housing/public@4.0.1-alpha.33) (2022-01-31) +- 2022-04-08 release (#2646) ([aa9de52](https://github.com/seanmalbert/bloom/commit/aa9de524d5e849ffded475070abf529de77c9a92)), closes [#2646](https://github.com/seanmalbert/bloom/issues/2646) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -**Note:** Version bump only for package @bloom-housing/public +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -## [4.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.31...@bloom-housing/public@4.0.1-alpha.32) (2022-01-27) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -### Features +## [4.2.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.3...@bloom-housing/public@4.2.1-alpha.4) (2022-04-13) -* outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.2...@bloom-housing/public@4.2.1-alpha.3) (2022-04-08) +**Note:** Version bump only for package @bloom-housing/public +## [4.2.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.1...@bloom-housing/public@4.2.1-alpha.2) (2022-04-07) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.30...@bloom-housing/public@4.0.1-alpha.31) (2022-01-26) +## [4.2.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.2.1-alpha.0...@bloom-housing/public@4.2.1-alpha.1) (2022-04-07) **Note:** Version bump only for package @bloom-housing/public +## [4.2.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.6...@bloom-housing/public@4.2.1-alpha.0) (2022-04-06) +- 2022-04-06 sync master (#2628) ([bc31833](https://github.com/bloom-housing/bloom/commit/bc31833f7ea5720a242d93a01bb1b539181fbad4)), closes [#2628](https://github.com/bloom-housing/bloom/issues/2628) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- preferences model and relationships changed -## [4.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.29...@bloom-housing/public@4.0.1-alpha.30) (2022-01-26) +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -### Bug Fixes +- fix: 2056/user account edit fix + +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 + +- refactor: 2085/adds top level catchAll exception filter + +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface + +- feat: feat: Change unit number field type to text + +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* Fix infinite page width ([#2434](https://github.com/bloom-housing/bloom/issues/2434)) ([12ac594](https://github.com/bloom-housing/bloom/commit/12ac594a7aa5a04370b20b19d6fff3189c0cfeee)), closes [#2374](https://github.com/bloom-housing/bloom/issues/2374) +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -## [4.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.28...@bloom-housing/public@4.0.1-alpha.29) (2022-01-24) +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -**Note:** Version bump only for package @bloom-housing/public +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path +- fix: recalculate units available on listing update -## [4.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.27...@bloom-housing/public@4.0.1-alpha.28) (2022-01-24) +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 -**Note:** Version bump only for package @bloom-housing/public +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c +- fix: app submission w/ no due date -## [4.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.26...@bloom-housing/public@4.0.1-alpha.27) (2022-01-24) +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc +- feat: adds new preferences, reserved community type -### Bug Fixes +- feat: adds bottom border to preferences -* issues with public app and readds auto save ([bb27a56](https://github.com/bloom-housing/bloom/commit/bb27a56835dcd27f2e8a0d7d14f07d0870d0079b)) -* removing console logs ([e8f50aa](https://github.com/bloom-housing/bloom/commit/e8f50aa29140167dae006f98c631baecca96f64b)) +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f +- feat: refactor and add public site application flow cypress tests -## [4.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.25...@bloom-housing/public@4.0.1-alpha.26) (2022-01-21) +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 +- feat: better seed data for ami-charts -### Bug Fixes +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 -* removes unnecessary ternary ([20edcd4](https://github.com/bloom-housing/bloom/commit/20edcd4810ee260f2e1705bfbbbbb69738b5b2f9)) -* user status enum to camel case; gtm types ([fbb8004](https://github.com/bloom-housing/bloom/commit/fbb800496fa1c5f37d3d7738acf28755dd66f1dd)) +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects -### Features +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 -* adds event logging to most of the pages ([dc88c0a](https://github.com/bloom-housing/bloom/commit/dc88c0a8b6be317cd624921b868bb17e77e31f11)) -* set gtm pageTitle to english only ([09b641c](https://github.com/bloom-housing/bloom/commit/09b641cd22df27c2ae401da1427f090b9a9c97ad)) -* updates for gtm ([0251cd3](https://github.com/bloom-housing/bloom/commit/0251cd3d73be19d60c148aae01d12ab35f29bc85)) -* updates for gtm ([13578bb](https://github.com/bloom-housing/bloom/commit/13578bb864ea1b1918d5908982cb3095756811c7)) +- feat: one month rent +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath -## [4.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.24...@bloom-housing/public@4.0.1-alpha.25) (2022-01-20) +picked from dev deb39acc005607ce3076942b1f49590d08afc10c -**Note:** Version bump only for package @bloom-housing/public +- feat: adds jurisdictions to pref seeds +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 +- feat: updates email confirmation for lottery -## [4.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.23...@bloom-housing/public@4.0.1-alpha.24) (2022-01-14) +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 +- fix: add ariaHidden to Icon component -### Bug Fixes +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -* patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([7906e6b](https://github.com/bloom-housing/bloom/commit/7906e6bc035fab4deea79ea51833a0ef29926d45)) +- fix: add ariaLabel prop to Button component +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics -## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@3.0.1-alpha.34...@bloom-housing/public@3.0.1) (2022-01-13) +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -### Bug Fixes +- feat: ami chart jurisdictionalized -* 2259/fixes idle timeout not resetting properly ([#2292](https://github.com/seanmalbert/bloom/issues/2292)) ([1b89acb](https://github.com/seanmalbert/bloom/commit/1b89acb21dea913db4ae638b9e4566a444eb7190)) -* applications/view hide prefs ([eed00ab](https://github.com/seanmalbert/bloom/commit/eed00ab591b99c274fe4663c940ac76bc455edfd)) -* change the yes/no radio text to be more descriptive ([c48e6c8](https://github.com/seanmalbert/bloom/commit/c48e6c83070651800bb9a1df0520ad3df14ebdff)) -* choose-language context ([0d655f9](https://github.com/seanmalbert/bloom/commit/0d655f90838c4c76c7b1b6802bc62151adf472a4)) -* closed listings allowed apps ([#2317](https://github.com/seanmalbert/bloom/issues/2317)) ([557fde3](https://github.com/seanmalbert/bloom/commit/557fde3367c1eece8f80d9618b6a6ba7cd6eebbb)) -* demographics howDidYouHear options (2305) ([b80f21c](https://github.com/seanmalbert/bloom/commit/b80f21ca3e75b335222020130b96ef137be6b26f)) -* preference cleanup for avance ([8ff5e6d](https://github.com/seanmalbert/bloom/commit/8ff5e6d1ccb4e93a355bb3e502974c99ada22b66)) -* prefUnits on autofill summary ([#2294](https://github.com/seanmalbert/bloom/issues/2294)) ([c027e96](https://github.com/seanmalbert/bloom/commit/c027e964f8f4e135cbc0fa70db5eaafa389ce53c)) -* remove alameda reference in demographics ([cc6761b](https://github.com/seanmalbert/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) -* submission tests not running ([78dd21e](https://github.com/seanmalbert/bloom/commit/78dd21ecf82680d38a97f762dfa128df3496fd91)) -* versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) -* visual improvement to programs form display ([33ef3db](https://github.com/seanmalbert/bloom/commit/33ef3dbdbafd561a79f17b90edb8d80b98a4c035)) +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components -* Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table -### Features +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* adds bottom border to preferences ([60fe76a](https://github.com/seanmalbert/bloom/commit/60fe76af140538216555bcf79b0747df3d565404)) -* adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) -* new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) -* one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) -* overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) -* refactor and add public site application flow cypress tests ([a300d69](https://github.com/seanmalbert/bloom/commit/a300d69c895052a6c3c4def6121237fdc80a76c6)) -* simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/seanmalbert/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) -* skip preferences if not on listing ([644ba0e](https://github.com/seanmalbert/bloom/commit/644ba0eb7094b5d57c54df80f3cd11dcea0ca4a7)) +- chore: removes application program partners +- chore: removes application program display -### Reverts +- Revert "chore: removes application program display" -* Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) -* Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) -* Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. -### BREAKING CHANGES +- chore: yarn.lock and backend-swagger -* preferences model and relationships changed +- fix: removes Duplicate identifier fieldGroupObjectToArray -* feat: feat(backend): extend UserUpdateDto to support email change +- feat: skip preferences if not on listing -picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- chore(release): version -* fix: 2056/user account edit fix +- fix: cannot save custom mailing, dropoff, or pickup address -picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- chore(release): version -* refactor: 2085/adds top level catchAll exception filter +- chore: converge on one axios version, remove peer dependency -picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- chore(release): version -* feat: feat: Change unit number field type to text +- feat: simplify Waitlist component and use more flexible schema -picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- chore(release): version -* feat(backend): improve application flagged set saving efficiency +- fix: lottery results uploads now save -* fix: fix: updates address order +- chore(release): version -picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- feat: add SRO unit type -* fix: sets programs to optoinal and updates versions +- chore(release): version -* chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- fix: paper application submission -* chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- chore(release): version -* fix: adds programs service +- fix: choose-language context -* fix: fix lisitng e2e tests +- chore(release): version -* fix: fix member tests +- fix: applications/view hide prefs +- chore(release): version +- feat: overrides fallback to english, tagalog support +- chore(release): version +- fix: account translations -## [4.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.22...@bloom-housing/public@4.0.1-alpha.23) (2022-01-13) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +- fix: units with invalid ami chart +- chore(release): version +- fix: remove description for the partners programs +- fix: fix modal styles on mobile +- fix: visual improvement to programs form display -## [4.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.21...@bloom-housing/public@4.0.1-alpha.22) (2022-01-13) +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -### Bug Fixes +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* dates showing as invalid in send by mail section ([#2362](https://github.com/bloom-housing/bloom/issues/2362)) ([3567388](https://github.com/bloom-housing/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version -### BREAKING CHANGES +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -* remove applicationDueTime field and consolidated into applicationDueDate +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +# [4.2.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.1.2...@bloom-housing/public@4.2.0) (2022-04-06) +- 2022-04-05 release (#2627) ([485fb48](https://github.com/seanmalbert/bloom/commit/485fb48cfbad48bcabfef5e2e704025f608aee89)), closes [#2627](https://github.com/seanmalbert/bloom/issues/2627) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +- 2022-04-04 release (#2614) ([fecab85](https://github.com/seanmalbert/bloom/commit/fecab85c748a55ab4aff5d591c8e0ac702254559)), closes [#2614](https://github.com/seanmalbert/bloom/issues/2614) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) -## [4.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.20...@bloom-housing/public@4.0.1-alpha.21) (2022-01-13) +### Features -**Note:** Version bump only for package @bloom-housing/public +- update listing page to use getStaticProps again ([f546dda](https://github.com/seanmalbert/bloom/commit/f546ddadc280ecf3475b5f44fc0794173e06d9e5)) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.19...@bloom-housing/public@4.0.1-alpha.20) (2022-01-11) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection -**Note:** Version bump only for package @bloom-housing/public +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -## [4.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.18...@bloom-housing/public@4.0.1-alpha.19) (2022-01-08) +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version -### Bug Fixes +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 -* ensure dayjs parsing strings will work as expected ([eb44939](https://github.com/bloom-housing/bloom/commit/eb449395ebea3a3b4b58eb217df1e1313c722a0d)) +## [4.1.3-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.5...@bloom-housing/public@4.1.3-alpha.6) (2022-04-05) +### Bug Fixes +- remove shared-helpers dependency from ui-components ([#2620](https://github.com/bloom-housing/bloom/issues/2620)) ([cd6ea54](https://github.com/bloom-housing/bloom/commit/cd6ea5450402a9b5d2a8681c403cbfcff6b6b1c9)) +## [4.1.3-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.4...@bloom-housing/public@4.1.3-alpha.5) (2022-04-05) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.17...@bloom-housing/public@4.0.1-alpha.18) (2022-01-07) +## [4.1.3-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.3...@bloom-housing/public@4.1.3-alpha.4) (2022-04-04) **Note:** Version bump only for package @bloom-housing/public +## [4.1.3-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.2...@bloom-housing/public@4.1.3-alpha.3) (2022-04-04) +### Features +- listing card title redesign, multiple tags possible ([#2531](https://github.com/bloom-housing/bloom/issues/2531)) ([2b795cb](https://github.com/bloom-housing/bloom/commit/2b795cb6c47c084937e996332d1583e9e5bcbc54)) - -## [4.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.16...@bloom-housing/public@4.0.1-alpha.17) (2022-01-07) +## [4.1.3-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.1...@bloom-housing/public@4.1.3-alpha.2) (2022-04-04) **Note:** Version bump only for package @bloom-housing/public +## [4.1.3-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.3-alpha.0...@bloom-housing/public@4.1.3-alpha.1) (2022-03-30) +**Note:** Version bump only for package @bloom-housing/public +## [4.1.3-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.3...@bloom-housing/public@4.1.3-alpha.0) (2022-03-30) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.15...@bloom-housing/public@4.0.1-alpha.16) (2022-01-07) +## [4.1.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.1.1...@bloom-housing/public@4.1.2) (2022-03-29) **Note:** Version bump only for package @bloom-housing/public +## [4.1.2-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.2...@bloom-housing/public@4.1.2-alpha.3) (2022-03-29) +**Note:** Version bump only for package @bloom-housing/public +## [4.1.2-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.1...@bloom-housing/public@4.1.2-alpha.2) (2022-03-29) +**Note:** Version bump only for package @bloom-housing/public -## [4.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.14...@bloom-housing/public@4.0.1-alpha.15) (2022-01-06) +## [4.1.2-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.2-alpha.0...@bloom-housing/public@4.1.2-alpha.1) (2022-03-28) **Note:** Version bump only for package @bloom-housing/public +## [4.1.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.5...@bloom-housing/public@4.1.2-alpha.0) (2022-03-28) +- 2022 03 28 sync master (#2593) ([580283d](https://github.com/bloom-housing/bloom/commit/580283da22246b7d39978e7dfa08016b2c0c3757)), closes [#2593](https://github.com/bloom-housing/bloom/issues/2593) [#2037](https://github.com/bloom-housing/bloom/issues/2037) [#2095](https://github.com/bloom-housing/bloom/issues/2095) [#2162](https://github.com/bloom-housing/bloom/issues/2162) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2439](https://github.com/bloom-housing/bloom/issues/2439) [#2196](https://github.com/bloom-housing/bloom/issues/2196) [#2238](https://github.com/bloom-housing/bloom/issues/2238) [#2226](https://github.com/bloom-housing/bloom/issues/2226) [#2230](https://github.com/bloom-housing/bloom/issues/2230) [#2243](https://github.com/bloom-housing/bloom/issues/2243) [#2195](https://github.com/bloom-housing/bloom/issues/2195) [#2215](https://github.com/bloom-housing/bloom/issues/2215) [#2266](https://github.com/bloom-housing/bloom/issues/2266) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2270](https://github.com/bloom-housing/bloom/issues/2270) [#2188](https://github.com/bloom-housing/bloom/issues/2188) [#2213](https://github.com/bloom-housing/bloom/issues/2213) [#2234](https://github.com/bloom-housing/bloom/issues/2234) [#1901](https://github.com/bloom-housing/bloom/issues/1901) [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2280](https://github.com/bloom-housing/bloom/issues/2280) [#2253](https://github.com/bloom-housing/bloom/issues/2253) [#2276](https://github.com/bloom-housing/bloom/issues/2276) [#2282](https://github.com/bloom-housing/bloom/issues/2282) [#2262](https://github.com/bloom-housing/bloom/issues/2262) [#2278](https://github.com/bloom-housing/bloom/issues/2278) [#2293](https://github.com/bloom-housing/bloom/issues/2293) [#2295](https://github.com/bloom-housing/bloom/issues/2295) [#2296](https://github.com/bloom-housing/bloom/issues/2296) [#2294](https://github.com/bloom-housing/bloom/issues/2294) [#2277](https://github.com/bloom-housing/bloom/issues/2277) [#2290](https://github.com/bloom-housing/bloom/issues/2290) [#2299](https://github.com/bloom-housing/bloom/issues/2299) [#2292](https://github.com/bloom-housing/bloom/issues/2292) [#2303](https://github.com/bloom-housing/bloom/issues/2303) [#2305](https://github.com/bloom-housing/bloom/issues/2305) [#2306](https://github.com/bloom-housing/bloom/issues/2306) [#2308](https://github.com/bloom-housing/bloom/issues/2308) [#2190](https://github.com/bloom-housing/bloom/issues/2190) [#2239](https://github.com/bloom-housing/bloom/issues/2239) [#2311](https://github.com/bloom-housing/bloom/issues/2311) [#2302](https://github.com/bloom-housing/bloom/issues/2302) [#2301](https://github.com/bloom-housing/bloom/issues/2301) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#2313](https://github.com/bloom-housing/bloom/issues/2313) [#2289](https://github.com/bloom-housing/bloom/issues/2289) [#2279](https://github.com/bloom-housing/bloom/issues/2279) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2519](https://github.com/bloom-housing/bloom/issues/2519) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2534](https://github.com/bloom-housing/bloom/issues/2534) [#2544](https://github.com/bloom-housing/bloom/issues/2544) [#2550](https://github.com/bloom-housing/bloom/issues/2550) [#2288](https://github.com/bloom-housing/bloom/issues/2288) [#2317](https://github.com/bloom-housing/bloom/issues/2317) [#2319](https://github.com/bloom-housing/bloom/issues/2319) [#2108](https://github.com/bloom-housing/bloom/issues/2108) [#2326](https://github.com/bloom-housing/bloom/issues/2326) [#2349](https://github.com/bloom-housing/bloom/issues/2349) [#2350](https://github.com/bloom-housing/bloom/issues/2350) [#2351](https://github.com/bloom-housing/bloom/issues/2351) [#2348](https://github.com/bloom-housing/bloom/issues/2348) [#2352](https://github.com/bloom-housing/bloom/issues/2352) [#2316](https://github.com/bloom-housing/bloom/issues/2316) [#2356](https://github.com/bloom-housing/bloom/issues/2356) [#2353](https://github.com/bloom-housing/bloom/issues/2353) [#2338](https://github.com/bloom-housing/bloom/issues/2338) [#2377](https://github.com/bloom-housing/bloom/issues/2377) [#2320](https://github.com/bloom-housing/bloom/issues/2320) [#2386](https://github.com/bloom-housing/bloom/issues/2386) [#2362](https://github.com/bloom-housing/bloom/issues/2362) [#2395](https://github.com/bloom-housing/bloom/issues/2395) [#2410](https://github.com/bloom-housing/bloom/issues/2410) [#2407](https://github.com/bloom-housing/bloom/issues/2407) [#2430](https://github.com/bloom-housing/bloom/issues/2430) [#2418](https://github.com/bloom-housing/bloom/issues/2418) [#2434](https://github.com/bloom-housing/bloom/issues/2434) [#2374](https://github.com/bloom-housing/bloom/issues/2374) [#2435](https://github.com/bloom-housing/bloom/issues/2435) [#2420](https://github.com/bloom-housing/bloom/issues/2420) [#2412](https://github.com/bloom-housing/bloom/issues/2412) [#2438](https://github.com/bloom-housing/bloom/issues/2438) [#2429](https://github.com/bloom-housing/bloom/issues/2429) [#2452](https://github.com/bloom-housing/bloom/issues/2452) [#2458](https://github.com/bloom-housing/bloom/issues/2458) [#2423](https://github.com/bloom-housing/bloom/issues/2423) [#2432](https://github.com/bloom-housing/bloom/issues/2432) [#2437](https://github.com/bloom-housing/bloom/issues/2437) [#2440](https://github.com/bloom-housing/bloom/issues/2440) [#2441](https://github.com/bloom-housing/bloom/issues/2441) [#2460](https://github.com/bloom-housing/bloom/issues/2460) [#2459](https://github.com/bloom-housing/bloom/issues/2459) [#2464](https://github.com/bloom-housing/bloom/issues/2464) [#2465](https://github.com/bloom-housing/bloom/issues/2465) [#2466](https://github.com/bloom-housing/bloom/issues/2466) [#2436](https://github.com/bloom-housing/bloom/issues/2436) [#2451](https://github.com/bloom-housing/bloom/issues/2451) [#2415](https://github.com/bloom-housing/bloom/issues/2415) [#2354](https://github.com/bloom-housing/bloom/issues/2354) [#2455](https://github.com/bloom-housing/bloom/issues/2455) [#2484](https://github.com/bloom-housing/bloom/issues/2484) [#2482](https://github.com/bloom-housing/bloom/issues/2482) [#2483](https://github.com/bloom-housing/bloom/issues/2483) [#2476](https://github.com/bloom-housing/bloom/issues/2476) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2470](https://github.com/bloom-housing/bloom/issues/2470) [#2488](https://github.com/bloom-housing/bloom/issues/2488) [#2487](https://github.com/bloom-housing/bloom/issues/2487) [#2496](https://github.com/bloom-housing/bloom/issues/2496) [#2498](https://github.com/bloom-housing/bloom/issues/2498) [#2499](https://github.com/bloom-housing/bloom/issues/2499) [#2291](https://github.com/bloom-housing/bloom/issues/2291) [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485) [#2494](https://github.com/bloom-housing/bloom/issues/2494) [#2503](https://github.com/bloom-housing/bloom/issues/2503) [#2495](https://github.com/bloom-housing/bloom/issues/2495) [#2477](https://github.com/bloom-housing/bloom/issues/2477) [#2505](https://github.com/bloom-housing/bloom/issues/2505) [#2372](https://github.com/bloom-housing/bloom/issues/2372) [#2489](https://github.com/bloom-housing/bloom/issues/2489) [#2497](https://github.com/bloom-housing/bloom/issues/2497) [#2506](https://github.com/bloom-housing/bloom/issues/2506) [#2486](https://github.com/bloom-housing/bloom/issues/2486) +### BREAKING CHANGES +- preferences model and relationships changed -## [4.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.13...@bloom-housing/public@4.0.1-alpha.14) (2022-01-04) +- feat: feat(backend): extend UserUpdateDto to support email change -**Note:** Version bump only for package @bloom-housing/public +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface -## [4.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.12...@bloom-housing/public@4.0.1-alpha.13) (2022-01-04) +- feat: feat: Change unit number field type to text -**Note:** Version bump only for package @bloom-housing/public +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions -## [4.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.11...@bloom-housing/public@4.0.1-alpha.12) (2022-01-04) +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -**Note:** Version bump only for package @bloom-housing/public +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +- fix: adds jurisdictionId to useSWR path -## [4.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.10...@bloom-housing/public@4.0.1-alpha.11) (2022-01-03) +- fix: recalculate units available on listing update -**Note:** Version bump only for package @bloom-housing/public +picked form dev f1a3dbce6478b16542ed61ab20de5dfb9b797262 +- feat: feat(backend): make use of new application confirmation codes +picked from dev 3c45c2904818200eed4568931d4cc352fd2f449e +- revert: revert "chore(deps): bump axios from 0.21.1 to 0.21.2 +picked from dev 2b83bc0393afc42eed542e326d5ef75502ce119c -## [4.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.9...@bloom-housing/public@4.0.1-alpha.10) (2022-01-03) +- fix: app submission w/ no due date +picked from dev 4af1f5a8448f16d347b4a65ecb85fda4d6ed71fc -### Bug Fixes +- feat: adds new preferences, reserved community type -* remove next dependency from ui-components ([#2352](https://github.com/bloom-housing/bloom/issues/2352)) ([136e8a1](https://github.com/bloom-housing/bloom/commit/136e8a1af2b4f285644caa9a18d60121f4d82566)) +- feat: adds bottom border to preferences +- feat: updates preference string +- fix: preference cleanup for avance +- refactor: remove applicationAddress +picked from dev bf10632a62bf2f14922948c046ea3352ed010f4f -## [4.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.8...@bloom-housing/public@4.0.1-alpha.9) (2022-01-03) +- feat: refactor and add public site application flow cypress tests +picked from dev 9ec0e8d05f9570773110754e7fdaf49254d1eab8 -### Bug Fixes +- feat: better seed data for ami-charts -* cypress coverage configs ([eec74ee](https://github.com/bloom-housing/bloom/commit/eec74eef138f6af275ae3cfe16262ed215b16907)) +picked from dev d8b1d4d185731a589c563a32bd592d01537785f3 +- feat: adds listing management cypress tests to partner portal +- fix: listings management keep empty strings, remove empty objects +picked from dev c4b1e833ec128f457015ac7ffa421ee6047083d9 +- feat: one month rent -## [4.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.7...@bloom-housing/public@4.0.1-alpha.8) (2022-01-03) +picked from dev 883b0d53030e1c4d54f2f75bd5e188bb1d255f64 -**Note:** Version bump only for package @bloom-housing/public +- test: view.spec.ts test +picked from dev 324446c90138d8fac50aba445f515009b5a58bfb +- refactor: removes jsonpath +picked from dev deb39acc005607ce3076942b1f49590d08afc10c +- feat: adds jurisdictions to pref seeds -## [4.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.7) (2022-01-03) +picked from dev 9e47cec3b1acfe769207ccbb33c07019cd742e33 +- feat: new demographics sub-race questions -### Bug Fixes +picked from dev 9ab892694c1ad2fa8890b411b3b32af68ade1fc3 -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- feat: updates email confirmation for lottery +picked from dev 1a5e824c96d8e23674c32ea92688b9f7255528d3 -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +- fix: add ariaHidden to Icon component +picked from dev c7bb86aec6fd5ad386c7ca50087d0113b14503be -### BREAKING CHANGES +- fix: add ariaLabel prop to Button component -* sign-in pages have been updated +picked from dev 509ddc898ba44c05e26f8ed8c777f1ba456eeee5 +- fix: change the yes/no radio text to be more descriptive +picked from dev 0c46054574535523d6f217bb0677bbe732b8945f +- fix: remove alameda reference in demographics +picked from dev 7d5991cbf6dbe0b61f2b14d265e87ce3687f743d -## [4.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.6) (2022-01-03) +- chore: release version +picked from dev fe82f25dc349877d974ae62d228fea0354978fb7 -### Bug Fixes +- feat: ami chart jurisdictionalized -* bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) -* bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +picked from dev 0a5cbc88a9d9e3c2ff716fe0f44ca6c48f5dcc50 +- refactor: make backend a peer dependency in ui-components -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) +picked from dev 952aaa14a77e0960312ff0eeee51399d1d6af9f3 +- feat: add a phone number column to the user_accounts table -### BREAKING CHANGES +picked from dev 2647df9ab9888a525cc8a164d091dda6482c502a -* sign-in pages have been updated +- chore: removes application program partners +- chore: removes application program display +- Revert "chore: removes application program display" +This reverts commit 14825b4a6c9cd1a7235e32074e32af18a71b5c26. +- Revert "chore: removes application program partners" -## [4.0.1-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.1) (2021-12-23) +This reverts commit d7aa38c777972a2e21d9f816441caa27f98d3f86. +- chore: yarn.lock and backend-swagger -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +- fix: removes Duplicate identifier fieldGroupObjectToArray +- feat: skip preferences if not on listing -### BREAKING CHANGES +- chore(release): version -* sign-in pages have been updated +- fix: cannot save custom mailing, dropoff, or pickup address +- chore(release): version +- chore: converge on one axios version, remove peer dependency +- chore(release): version +- feat: simplify Waitlist component and use more flexible schema -## [4.0.1-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.0) (2021-12-23) +- chore(release): version +- fix: lottery results uploads now save -* 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +- chore(release): version +- feat: add SRO unit type -### BREAKING CHANGES +- chore(release): version -* sign-in pages have been updated +- fix: paper application submission +- chore(release): version +- fix: choose-language context +- chore(release): version +- fix: applications/view hide prefs -# [4.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@3.0.1-alpha.73...@bloom-housing/public@4.0.0) (2021-12-22) +- chore(release): version +- feat: overrides fallback to english, tagalog support -### Bug Fixes +- chore(release): version -* closed listings allowed apps ([#2317](https://github.com/seanmalbert/bloom/issues/2317)) ([bb69347](https://github.com/seanmalbert/bloom/commit/bb693473aeb8757d6a09282c9331d356430b1f81)) -* removes more closed listing application paths ([#2319](https://github.com/seanmalbert/bloom/issues/2319)) ([ff50205](https://github.com/seanmalbert/bloom/commit/ff50205f371ebd63d07168b290733d0f1e2d493c)) +- fix: account translations +- chore(release): version -### Code Refactoring +- fix: units with invalid ami chart -* removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) +- chore(release): version +- fix: remove description for the partners programs -### BREAKING CHANGES +- fix: fix modal styles on mobile -* moved some helpers from ui-components to shared-helpers +- fix: visual improvement to programs form display +- fix: submission tests not running +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.72...@bloom-housing/public@3.0.1-alpha.73) (2021-12-15) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.1.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.1.0...@bloom-housing/public@4.1.1) (2022-03-28) -## [3.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.71...@bloom-housing/public@3.0.1-alpha.72) (2021-12-15) +## [4.1.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.4...@bloom-housing/public@4.1.1-alpha.5) (2022-03-28) **Note:** Version bump only for package @bloom-housing/public +## [4.1.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.3...@bloom-housing/public@4.1.1-alpha.4) (2022-03-25) +**Note:** Version bump only for package @bloom-housing/public - - -## [3.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.70...@bloom-housing/public@3.0.1-alpha.71) (2021-12-15) +## [4.1.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.2...@bloom-housing/public@4.1.1-alpha.3) (2022-03-22) **Note:** Version bump only for package @bloom-housing/public +## [4.1.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.1...@bloom-housing/public@4.1.1-alpha.2) (2022-03-16) +### Bug Fixes +- remove space between minutes and AM/PM for ApplicationStatus ([#2566](https://github.com/bloom-housing/bloom/issues/2566)) ([5440b38](https://github.com/bloom-housing/bloom/commit/5440b38f3048d17e6e76b41f0aa81f5176368af2)) - -## [3.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.69...@bloom-housing/public@3.0.1-alpha.70) (2021-12-14) +## [4.1.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.1.1-alpha.0...@bloom-housing/public@4.1.1-alpha.1) (2022-03-10) **Note:** Version bump only for package @bloom-housing/public +## [4.1.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.84...@bloom-housing/public@4.1.1-alpha.0) (2022-03-02) +**Note:** Version bump only for package @bloom-housing/public - - -## [3.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.68...@bloom-housing/public@3.0.1-alpha.69) (2021-12-14) +## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.1-alpha.84...@bloom-housing/public@4.0.1) (2022-03-02) **Note:** Version bump only for package @bloom-housing/public +# [4.1.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.3...@bloom-housing/public@4.1.0) (2022-03-02) +- 2022-03-01 release (#2550) ([2f2264c](https://github.com/seanmalbert/bloom/commit/2f2264cffe41d0cc1ebb79ef5c894458694d9340)), closes [#2550](https://github.com/seanmalbert/bloom/issues/2550) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2438](https://github.com/seanmalbert/bloom/issues/2438) [#2429](https://github.com/seanmalbert/bloom/issues/2429) [#2452](https://github.com/seanmalbert/bloom/issues/2452) [#2458](https://github.com/seanmalbert/bloom/issues/2458) [#2423](https://github.com/seanmalbert/bloom/issues/2423) [#2432](https://github.com/seanmalbert/bloom/issues/2432) [#2437](https://github.com/seanmalbert/bloom/issues/2437) [#2440](https://github.com/seanmalbert/bloom/issues/2440) [#2441](https://github.com/seanmalbert/bloom/issues/2441) [#2460](https://github.com/seanmalbert/bloom/issues/2460) [#2459](https://github.com/seanmalbert/bloom/issues/2459) [#2464](https://github.com/seanmalbert/bloom/issues/2464) [#2465](https://github.com/seanmalbert/bloom/issues/2465) [#2466](https://github.com/seanmalbert/bloom/issues/2466) [#2436](https://github.com/seanmalbert/bloom/issues/2436) [#2451](https://github.com/seanmalbert/bloom/issues/2451) [#2415](https://github.com/seanmalbert/bloom/issues/2415) [#2354](https://github.com/seanmalbert/bloom/issues/2354) [#2455](https://github.com/seanmalbert/bloom/issues/2455) [#2484](https://github.com/seanmalbert/bloom/issues/2484) [#2482](https://github.com/seanmalbert/bloom/issues/2482) [#2483](https://github.com/seanmalbert/bloom/issues/2483) [#2476](https://github.com/seanmalbert/bloom/issues/2476) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2470](https://github.com/seanmalbert/bloom/issues/2470) [#2488](https://github.com/seanmalbert/bloom/issues/2488) [#2487](https://github.com/seanmalbert/bloom/issues/2487) [#2496](https://github.com/seanmalbert/bloom/issues/2496) [#2498](https://github.com/seanmalbert/bloom/issues/2498) [#2499](https://github.com/seanmalbert/bloom/issues/2499) [#2291](https://github.com/seanmalbert/bloom/issues/2291) [#2461](https://github.com/seanmalbert/bloom/issues/2461) [#2485](https://github.com/seanmalbert/bloom/issues/2485) [#2494](https://github.com/seanmalbert/bloom/issues/2494) [#2503](https://github.com/seanmalbert/bloom/issues/2503) [#2495](https://github.com/seanmalbert/bloom/issues/2495) [#2477](https://github.com/seanmalbert/bloom/issues/2477) [#2505](https://github.com/seanmalbert/bloom/issues/2505) [#2372](https://github.com/seanmalbert/bloom/issues/2372) [#2489](https://github.com/seanmalbert/bloom/issues/2489) [#2497](https://github.com/seanmalbert/bloom/issues/2497) [#2506](https://github.com/seanmalbert/bloom/issues/2506) [#2486](https://github.com/seanmalbert/bloom/issues/2486) +### BREAKING CHANGES +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.67...@bloom-housing/public@3.0.1-alpha.68) (2021-12-13) +- chore(release): version -**Note:** Version bump only for package @bloom-housing/public +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.38 +* @bloom-housing/shared-helpers@4.0.1-alpha.63 +* @bloom-housing/partners@4.0.1-alpha.67 +* @bloom-housing/public@4.0.1-alpha.66 +* @bloom-housing/ui-components@4.0.1-alpha.62 +## [4.0.1-alpha.84](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.83...@bloom-housing/public@4.0.1-alpha.84) (2022-02-28) -## [3.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.65...@bloom-housing/public@3.0.1-alpha.67) (2021-12-13) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.83](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.82...@bloom-housing/public@4.0.1-alpha.83) (2022-02-28) ### Bug Fixes -* versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([0b1d143](https://github.com/bloom-housing/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) +- more style tweaks for AlertBox ([#2526](https://github.com/bloom-housing/bloom/issues/2526)) ([bce3920](https://github.com/bloom-housing/bloom/commit/bce3920b7638be3def05d852d0192ab0cbb2e749)) +## [4.0.1-alpha.82](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.81...@bloom-housing/public@4.0.1-alpha.82) (2022-02-26) +### Features +- adds gtm tracking to rest of pages ([#2545](https://github.com/bloom-housing/bloom/issues/2545)) ([1c96f71](https://github.com/bloom-housing/bloom/commit/1c96f7101017aefd8bca70731265f6efb1ab5cf0)) +## [4.0.3](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.2...@bloom-housing/public@4.0.3) (2022-02-25) -## [3.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.64...@bloom-housing/public@3.0.1-alpha.65) (2021-12-10) +- Add San Jose email translations ([#2519](https://github.com/seanmalbert/bloom/issues/2519)) ([d1db032](https://github.com/seanmalbert/bloom/commit/d1db032672f40d325eba9e4a833d24f8b02464cc)) +## [4.0.1-alpha.81](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.80...@bloom-housing/public@4.0.1-alpha.81) (2022-02-25) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/public -* demographics howDidYouHear options were not changing on language change ([#2305](https://github.com/bloom-housing/bloom/issues/2305)) ([a9859d1](https://github.com/bloom-housing/bloom/commit/a9859d1a718d88e0e1ff671a408887691306b4b9)) +## [4.0.1-alpha.80](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.79...@bloom-housing/public@4.0.1-alpha.80) (2022-02-25) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.79](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.78...@bloom-housing/public@4.0.1-alpha.79) (2022-02-24) +### Bug Fixes +- serverSideProps on listings bc of netlify limitations ([#2540](https://github.com/bloom-housing/bloom/issues/2540)) ([bc69140](https://github.com/bloom-housing/bloom/commit/bc69140b68c997e90e899803e00307bd79b28b15)) -## [3.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.63...@bloom-housing/public@3.0.1-alpha.64) (2021-12-10) +## [4.0.1-alpha.78](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.77...@bloom-housing/public@4.0.1-alpha.78) (2022-02-22) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.77](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.76...@bloom-housing/public@4.0.1-alpha.77) (2022-02-18) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.76](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.75...@bloom-housing/public@4.0.1-alpha.76) (2022-02-17) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.62...@bloom-housing/public@3.0.1-alpha.63) (2021-12-10) +## [4.0.1-alpha.75](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.74...@bloom-housing/public@4.0.1-alpha.75) (2022-02-17) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.74](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.73...@bloom-housing/public@4.0.1-alpha.74) (2022-02-17) + +### Features +- **backend:** add listing order by mostRecentlyClosed param ([#2478](https://github.com/bloom-housing/bloom/issues/2478)) ([0f177c1](https://github.com/bloom-housing/bloom/commit/0f177c1847ac254f63837b0aca7fa8a705e3632c)) +## [4.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.72...@bloom-housing/public@4.0.1-alpha.73) (2022-02-16) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.61...@bloom-housing/public@3.0.1-alpha.62) (2021-12-09) +## [4.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.71...@bloom-housing/public@4.0.1-alpha.72) (2022-02-16) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.70...@bloom-housing/public@4.0.1-alpha.71) (2022-02-16) + +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.69...@bloom-housing/public@4.0.1-alpha.70) (2022-02-16) +### Bug Fixes +- use the correct AlertBox component for preview listing notice ([#2497](https://github.com/bloom-housing/bloom/issues/2497)) ([f985c44](https://github.com/bloom-housing/bloom/commit/f985c444aaed31504a1e1ce7173c6e15194e2af6)) -## [3.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.60...@bloom-housing/public@3.0.1-alpha.61) (2021-12-09) +## [4.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.68...@bloom-housing/public@4.0.1-alpha.69) (2022-02-16) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.67...@bloom-housing/public@4.0.1-alpha.68) (2022-02-16) + +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.66...@bloom-housing/public@4.0.1-alpha.67) (2022-02-15) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.66](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.65...@bloom-housing/public@4.0.1-alpha.66) (2022-02-15) -## [3.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.59...@bloom-housing/public@3.0.1-alpha.60) (2021-12-09) +### Code Refactoring -**Note:** Version bump only for package @bloom-housing/public +- remove backend dependencies from events components, consolidate ([#2495](https://github.com/bloom-housing/bloom/issues/2495)) ([d884689](https://github.com/bloom-housing/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f)) +### BREAKING CHANGES +- consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection +## [4.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.64...@bloom-housing/public@4.0.1-alpha.65) (2022-02-15) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.58...@bloom-housing/public@3.0.1-alpha.59) (2021-12-09) +## [4.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.63...@bloom-housing/public@4.0.1-alpha.64) (2022-02-15) +**Note:** Version bump only for package @bloom-housing/public -### Bug Fixes +## [4.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.62...@bloom-housing/public@4.0.1-alpha.63) (2022-02-15) -* prefUnits on autofill summary ([#2294](https://github.com/bloom-housing/bloom/issues/2294)) ([2b370e9](https://github.com/bloom-housing/bloom/commit/2b370e9321ec652ed3d124319e08e01fc765d636)) +**Note:** Version bump only for package @bloom-housing/public + +## [4.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.61...@bloom-housing/public@4.0.1-alpha.62) (2022-02-14) + +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.60...@bloom-housing/public@4.0.1-alpha.61) (2022-02-14) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.59...@bloom-housing/public@4.0.1-alpha.60) (2022-02-12) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.57...@bloom-housing/public@3.0.1-alpha.58) (2021-12-09) +## [4.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.58...@bloom-housing/public@4.0.1-alpha.59) (2022-02-10) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.57...@bloom-housing/public@4.0.1-alpha.58) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.56...@bloom-housing/public@4.0.1-alpha.57) (2022-02-10) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.56...@bloom-housing/public@3.0.1-alpha.57) (2021-12-09) +## [4.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.55...@bloom-housing/public@4.0.1-alpha.56) (2022-02-10) **Note:** Version bump only for package @bloom-housing/public +## [4.0.2](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.1...@bloom-housing/public@4.0.2) (2022-02-09) +## [4.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.54...@bloom-housing/public@4.0.1-alpha.55) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/public - -## [3.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.55...@bloom-housing/public@3.0.1-alpha.56) (2021-12-08) +## [4.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.53...@bloom-housing/public@4.0.1-alpha.54) (2022-02-09) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.52...@bloom-housing/public@4.0.1-alpha.53) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.51...@bloom-housing/public@4.0.1-alpha.52) (2022-02-09) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.54...@bloom-housing/public@3.0.1-alpha.55) (2021-12-07) +## [4.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.50...@bloom-housing/public@4.0.1-alpha.51) (2022-02-09) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.49...@bloom-housing/public@4.0.1-alpha.50) (2022-02-08) + +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.48...@bloom-housing/public@4.0.1-alpha.49) (2022-02-07) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@3.0.1-alpha.34...@bloom-housing/public@4.0.1) (2022-02-03) -## [3.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.53...@bloom-housing/public@3.0.1-alpha.54) (2021-12-07) +### Bug Fixes +- 2259/fixes idle timeout not resetting properly ([#2292](https://github.com/seanmalbert/bloom/issues/2292)) ([1b89acb](https://github.com/seanmalbert/bloom/commit/1b89acb21dea913db4ae638b9e4566a444eb7190)) +- applications/view hide prefs ([eed00ab](https://github.com/seanmalbert/bloom/commit/eed00ab591b99c274fe4663c940ac76bc455edfd)) +- change the yes/no radio text to be more descriptive ([c48e6c8](https://github.com/seanmalbert/bloom/commit/c48e6c83070651800bb9a1df0520ad3df14ebdff)) +- choose-language context ([0d655f9](https://github.com/seanmalbert/bloom/commit/0d655f90838c4c76c7b1b6802bc62151adf472a4)) +- closed listings allowed apps ([#2317](https://github.com/seanmalbert/bloom/issues/2317)) ([557fde3](https://github.com/seanmalbert/bloom/commit/557fde3367c1eece8f80d9618b6a6ba7cd6eebbb)) +- demographics howDidYouHear options (2305) ([b80f21c](https://github.com/seanmalbert/bloom/commit/b80f21ca3e75b335222020130b96ef137be6b26f)) +- issues with public app and readds auto save (2428) ([ea5975f](https://github.com/seanmalbert/bloom/commit/ea5975f2fad9584766ab8f8f54c11f754440d1c1)) +- load blank application ([b28e9a3](https://github.com/seanmalbert/bloom/commit/b28e9a3d2258a8fd4e9fddc17599f614b382e172)) +- patches translations for preferences ([#2410](https://github.com/seanmalbert/bloom/issues/2410)) ([21f517e](https://github.com/seanmalbert/bloom/commit/21f517e3f62dc5fefc8b4031d8915c8d7690677d)) +- preference cleanup for avance ([8ff5e6d](https://github.com/seanmalbert/bloom/commit/8ff5e6d1ccb4e93a355bb3e502974c99ada22b66)) +- prefUnits on autofill summary ([#2294](https://github.com/seanmalbert/bloom/issues/2294)) ([c027e96](https://github.com/seanmalbert/bloom/commit/c027e964f8f4e135cbc0fa70db5eaafa389ce53c)) +- remove alameda reference in demographics ([cc6761b](https://github.com/seanmalbert/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) +- submission tests not running ([78dd21e](https://github.com/seanmalbert/bloom/commit/78dd21ecf82680d38a97f762dfa128df3496fd91)) +- versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +- visual improvement to programs form display ([33ef3db](https://github.com/seanmalbert/bloom/commit/33ef3dbdbafd561a79f17b90edb8d80b98a4c035)) + +- 2022-01-27 release (#2439) ([860f6af](https://github.com/seanmalbert/bloom/commit/860f6af6204903e4dcddf671d7ba54f3ec04f121)), closes [#2439](https://github.com/seanmalbert/bloom/issues/2439) [#2196](https://github.com/seanmalbert/bloom/issues/2196) [#2238](https://github.com/seanmalbert/bloom/issues/2238) [#2226](https://github.com/seanmalbert/bloom/issues/2226) [#2230](https://github.com/seanmalbert/bloom/issues/2230) [#2243](https://github.com/seanmalbert/bloom/issues/2243) [#2195](https://github.com/seanmalbert/bloom/issues/2195) [#2215](https://github.com/seanmalbert/bloom/issues/2215) [#2266](https://github.com/seanmalbert/bloom/issues/2266) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2270](https://github.com/seanmalbert/bloom/issues/2270) [#2188](https://github.com/seanmalbert/bloom/issues/2188) [#2213](https://github.com/seanmalbert/bloom/issues/2213) [#2234](https://github.com/seanmalbert/bloom/issues/2234) [#1901](https://github.com/seanmalbert/bloom/issues/1901) [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2280](https://github.com/seanmalbert/bloom/issues/2280) [#2253](https://github.com/seanmalbert/bloom/issues/2253) [#2276](https://github.com/seanmalbert/bloom/issues/2276) [#2282](https://github.com/seanmalbert/bloom/issues/2282) [#2262](https://github.com/seanmalbert/bloom/issues/2262) [#2278](https://github.com/seanmalbert/bloom/issues/2278) [#2293](https://github.com/seanmalbert/bloom/issues/2293) [#2295](https://github.com/seanmalbert/bloom/issues/2295) [#2296](https://github.com/seanmalbert/bloom/issues/2296) [#2294](https://github.com/seanmalbert/bloom/issues/2294) [#2277](https://github.com/seanmalbert/bloom/issues/2277) [#2290](https://github.com/seanmalbert/bloom/issues/2290) [#2299](https://github.com/seanmalbert/bloom/issues/2299) [#2292](https://github.com/seanmalbert/bloom/issues/2292) [#2303](https://github.com/seanmalbert/bloom/issues/2303) [#2305](https://github.com/seanmalbert/bloom/issues/2305) [#2306](https://github.com/seanmalbert/bloom/issues/2306) [#2308](https://github.com/seanmalbert/bloom/issues/2308) [#2190](https://github.com/seanmalbert/bloom/issues/2190) [#2239](https://github.com/seanmalbert/bloom/issues/2239) [#2311](https://github.com/seanmalbert/bloom/issues/2311) [#2302](https://github.com/seanmalbert/bloom/issues/2302) [#2301](https://github.com/seanmalbert/bloom/issues/2301) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#2313](https://github.com/seanmalbert/bloom/issues/2313) [#2289](https://github.com/seanmalbert/bloom/issues/2289) [#2279](https://github.com/seanmalbert/bloom/issues/2279) [#2288](https://github.com/seanmalbert/bloom/issues/2288) [#2317](https://github.com/seanmalbert/bloom/issues/2317) [#2319](https://github.com/seanmalbert/bloom/issues/2319) [#2108](https://github.com/seanmalbert/bloom/issues/2108) [#2326](https://github.com/seanmalbert/bloom/issues/2326) [#2349](https://github.com/seanmalbert/bloom/issues/2349) [#2350](https://github.com/seanmalbert/bloom/issues/2350) [#2351](https://github.com/seanmalbert/bloom/issues/2351) [#2348](https://github.com/seanmalbert/bloom/issues/2348) [#2352](https://github.com/seanmalbert/bloom/issues/2352) [#2316](https://github.com/seanmalbert/bloom/issues/2316) [#2356](https://github.com/seanmalbert/bloom/issues/2356) [#2353](https://github.com/seanmalbert/bloom/issues/2353) [#2338](https://github.com/seanmalbert/bloom/issues/2338) [#2377](https://github.com/seanmalbert/bloom/issues/2377) [#2320](https://github.com/seanmalbert/bloom/issues/2320) [#2386](https://github.com/seanmalbert/bloom/issues/2386) [#2362](https://github.com/seanmalbert/bloom/issues/2362) [#2395](https://github.com/seanmalbert/bloom/issues/2395) [#2410](https://github.com/seanmalbert/bloom/issues/2410) [#2407](https://github.com/seanmalbert/bloom/issues/2407) [#2430](https://github.com/seanmalbert/bloom/issues/2430) [#2418](https://github.com/seanmalbert/bloom/issues/2418) [#2434](https://github.com/seanmalbert/bloom/issues/2434) [#2374](https://github.com/seanmalbert/bloom/issues/2374) [#2435](https://github.com/seanmalbert/bloom/issues/2435) [#2420](https://github.com/seanmalbert/bloom/issues/2420) [#2412](https://github.com/seanmalbert/bloom/issues/2412) [#2434](https://github.com/seanmalbert/bloom/issues/2434) +- Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) ### Features -* overrides fallback to english, tagalog support ([#2262](https://github.com/bloom-housing/bloom/issues/2262)) ([679ab9b](https://github.com/bloom-housing/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +- adds bottom border to preferences ([60fe76a](https://github.com/seanmalbert/bloom/commit/60fe76af140538216555bcf79b0747df3d565404)) +- adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) +- new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- refactor and add public site application flow cypress tests ([a300d69](https://github.com/seanmalbert/bloom/commit/a300d69c895052a6c3c4def6121237fdc80a76c6)) +- simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/seanmalbert/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) +- skip preferences if not on listing ([644ba0e](https://github.com/seanmalbert/bloom/commit/644ba0eb7094b5d57c54df80f3cd11dcea0ca4a7)) +### Reverts +- Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES +- sign-in pages have been updated +- moved some helpers from ui-components to shared-helpers +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.52...@bloom-housing/public@3.0.1-alpha.53) (2021-12-07) +- chore(release): version +* @bloom-housing/backend-core@3.0.2-alpha.13 +* @bloom-housing/shared-helpers@4.0.1-alpha.21 +* @bloom-housing/partners@4.0.1-alpha.23 +* @bloom-housing/public@4.0.1-alpha.22 +* @bloom-housing/ui-components@4.0.1-alpha.21 -### Bug Fixes +- preferences model and relationships changed -* submission tests not running ([#2282](https://github.com/bloom-housing/bloom/issues/2282)) ([735cf2b](https://github.com/bloom-housing/bloom/commit/735cf2bcafdd81d45856d856102c6e0665742daa)) +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a +- fix: 2056/user account edit fix +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter -## [3.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.51...@bloom-housing/public@3.0.1-alpha.52) (2021-12-07) +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text -### Bug Fixes +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -* visual improvement to programs form display ([#2276](https://github.com/bloom-housing/bloom/issues/2276)) ([e8c87d1](https://github.com/bloom-housing/bloom/commit/e8c87d1323ed9a1de0865a172d02139aefe37967)) +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 -## [3.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.50...@bloom-housing/public@3.0.1-alpha.51) (2021-12-07) +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 -**Note:** Version bump only for package @bloom-housing/public +- fix: adds programs service +- fix: fix lisitng e2e tests +- fix: fix member tests +## [4.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.47...@bloom-housing/public@4.0.1-alpha.48) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.49...@bloom-housing/public@3.0.1-alpha.50) (2021-12-06) +## [4.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.46...@bloom-housing/public@4.0.1-alpha.47) (2022-02-02) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.45...@bloom-housing/public@4.0.1-alpha.46) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.44...@bloom-housing/public@4.0.1-alpha.45) (2022-02-02) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.48...@bloom-housing/public@3.0.1-alpha.49) (2021-12-03) +## [4.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.43...@bloom-housing/public@4.0.1-alpha.44) (2022-02-01) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.42...@bloom-housing/public@4.0.1-alpha.43) (2022-02-01) +### Bug Fixes +- infinite page width ([#2459](https://github.com/bloom-housing/bloom/issues/2459)) ([190ff9a](https://github.com/bloom-housing/bloom/commit/190ff9a4760b0b64485094964c3e7a52fec12467)) - -## [3.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.47...@bloom-housing/public@3.0.1-alpha.48) (2021-12-03) +## [4.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.41...@bloom-housing/public@4.0.1-alpha.42) (2022-02-01) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.40...@bloom-housing/public@4.0.1-alpha.41) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.39...@bloom-housing/public@4.0.1-alpha.40) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.46...@bloom-housing/public@3.0.1-alpha.47) (2021-12-03) +## [4.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.38...@bloom-housing/public@4.0.1-alpha.39) (2022-02-01) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.37...@bloom-housing/public@4.0.1-alpha.38) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.36...@bloom-housing/public@4.0.1-alpha.37) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.45...@bloom-housing/public@3.0.1-alpha.46) (2021-12-02) +## [4.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.35...@bloom-housing/public@4.0.1-alpha.36) (2022-02-01) +**Note:** Version bump only for package @bloom-housing/public -### Bug Fixes +## [4.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.34...@bloom-housing/public@4.0.1-alpha.35) (2022-02-01) -* applications/view hide prefs ([89ff7bb](https://github.com/bloom-housing/bloom/commit/89ff7bb03380332b107be2a2a5321097ade99466)) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.33...@bloom-housing/public@4.0.1-alpha.34) (2022-01-31) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.32...@bloom-housing/public@4.0.1-alpha.33) (2022-01-31) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.44...@bloom-housing/public@3.0.1-alpha.45) (2021-12-02) +## [4.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.31...@bloom-housing/public@4.0.1-alpha.32) (2022-01-27) +### Features -### Bug Fixes +- outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111)) -* choose-language context ([f62bf46](https://github.com/bloom-housing/bloom/commit/f62bf4623b8ec0955b54727ba422357acaaed754)) +## [4.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.30...@bloom-housing/public@4.0.1-alpha.31) (2022-01-26) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.29...@bloom-housing/public@4.0.1-alpha.30) (2022-01-26) +### Bug Fixes +- Fix infinite page width ([#2434](https://github.com/bloom-housing/bloom/issues/2434)) ([12ac594](https://github.com/bloom-housing/bloom/commit/12ac594a7aa5a04370b20b19d6fff3189c0cfeee)), closes [#2374](https://github.com/bloom-housing/bloom/issues/2374) -## [3.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.43...@bloom-housing/public@3.0.1-alpha.44) (2021-12-01) +## [4.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.28...@bloom-housing/public@4.0.1-alpha.29) (2022-01-24) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.27...@bloom-housing/public@4.0.1-alpha.28) (2022-01-24) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.26...@bloom-housing/public@4.0.1-alpha.27) (2022-01-24) +### Bug Fixes -## [3.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.42...@bloom-housing/public@3.0.1-alpha.43) (2021-12-01) +- issues with public app and readds auto save ([bb27a56](https://github.com/bloom-housing/bloom/commit/bb27a56835dcd27f2e8a0d7d14f07d0870d0079b)) +- removing console logs ([e8f50aa](https://github.com/bloom-housing/bloom/commit/e8f50aa29140167dae006f98c631baecca96f64b)) -**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.25...@bloom-housing/public@4.0.1-alpha.26) (2022-01-21) +### Bug Fixes +- removes unnecessary ternary ([20edcd4](https://github.com/bloom-housing/bloom/commit/20edcd4810ee260f2e1705bfbbbbb69738b5b2f9)) +- user status enum to camel case; gtm types ([fbb8004](https://github.com/bloom-housing/bloom/commit/fbb800496fa1c5f37d3d7738acf28755dd66f1dd)) +### Features +- adds event logging to most of the pages ([dc88c0a](https://github.com/bloom-housing/bloom/commit/dc88c0a8b6be317cd624921b868bb17e77e31f11)) +- set gtm pageTitle to english only ([09b641c](https://github.com/bloom-housing/bloom/commit/09b641cd22df27c2ae401da1427f090b9a9c97ad)) +- updates for gtm ([0251cd3](https://github.com/bloom-housing/bloom/commit/0251cd3d73be19d60c148aae01d12ab35f29bc85)) +- updates for gtm ([13578bb](https://github.com/bloom-housing/bloom/commit/13578bb864ea1b1918d5908982cb3095756811c7)) -## [3.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.41...@bloom-housing/public@3.0.1-alpha.42) (2021-12-01) +## [4.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.24...@bloom-housing/public@4.0.1-alpha.25) (2022-01-20) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.23...@bloom-housing/public@4.0.1-alpha.24) (2022-01-14) +### Bug Fixes +- patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([7906e6b](https://github.com/bloom-housing/bloom/commit/7906e6bc035fab4deea79ea51833a0ef29926d45)) +## [3.0.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@3.0.1-alpha.34...@bloom-housing/public@3.0.1) (2022-01-13) -## [3.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.40...@bloom-housing/public@3.0.1-alpha.41) (2021-11-30) +### Bug Fixes +- 2259/fixes idle timeout not resetting properly ([#2292](https://github.com/seanmalbert/bloom/issues/2292)) ([1b89acb](https://github.com/seanmalbert/bloom/commit/1b89acb21dea913db4ae638b9e4566a444eb7190)) +- applications/view hide prefs ([eed00ab](https://github.com/seanmalbert/bloom/commit/eed00ab591b99c274fe4663c940ac76bc455edfd)) +- change the yes/no radio text to be more descriptive ([c48e6c8](https://github.com/seanmalbert/bloom/commit/c48e6c83070651800bb9a1df0520ad3df14ebdff)) +- choose-language context ([0d655f9](https://github.com/seanmalbert/bloom/commit/0d655f90838c4c76c7b1b6802bc62151adf472a4)) +- closed listings allowed apps ([#2317](https://github.com/seanmalbert/bloom/issues/2317)) ([557fde3](https://github.com/seanmalbert/bloom/commit/557fde3367c1eece8f80d9618b6a6ba7cd6eebbb)) +- demographics howDidYouHear options (2305) ([b80f21c](https://github.com/seanmalbert/bloom/commit/b80f21ca3e75b335222020130b96ef137be6b26f)) +- preference cleanup for avance ([8ff5e6d](https://github.com/seanmalbert/bloom/commit/8ff5e6d1ccb4e93a355bb3e502974c99ada22b66)) +- prefUnits on autofill summary ([#2294](https://github.com/seanmalbert/bloom/issues/2294)) ([c027e96](https://github.com/seanmalbert/bloom/commit/c027e964f8f4e135cbc0fa70db5eaafa389ce53c)) +- remove alameda reference in demographics ([cc6761b](https://github.com/seanmalbert/bloom/commit/cc6761b22616f28ff2a0393766a6273c918376fd)) +- submission tests not running ([78dd21e](https://github.com/seanmalbert/bloom/commit/78dd21ecf82680d38a97f762dfa128df3496fd91)) +- versioning issues ([#2311](https://github.com/seanmalbert/bloom/issues/2311)) ([c274a29](https://github.com/seanmalbert/bloom/commit/c274a2985061b389c2cae6386137a4caacd7f7c0)) +- visual improvement to programs form display ([33ef3db](https://github.com/seanmalbert/bloom/commit/33ef3dbdbafd561a79f17b90edb8d80b98a4c035)) + +- Release 11 11 21 (#2162) ([4847469](https://github.com/seanmalbert/bloom/commit/484746982e440c1c1c87c85089d86cd5968f1cae)), closes [#2162](https://github.com/seanmalbert/bloom/issues/2162) ### Features -* getStaticPaths fallback blocking test ([a42170d](https://github.com/bloom-housing/bloom/commit/a42170d5c514998dad2b2011b8a6b9021955f277)) +- adds bottom border to preferences ([60fe76a](https://github.com/seanmalbert/bloom/commit/60fe76af140538216555bcf79b0747df3d565404)) +- adds new preferences, reserved community type ([90c0673](https://github.com/seanmalbert/bloom/commit/90c0673779eeb028041717d0b1e0e69fb0766c71)) +- new demographics sub-race questions ([910df6a](https://github.com/seanmalbert/bloom/commit/910df6ad3985980becdc2798076ed5dfeeb310b5)) +- one month rent ([319743d](https://github.com/seanmalbert/bloom/commit/319743d23268f5b55e129c0878510edb4204b668)) +- overrides fallback to english, tagalog support ([b79fd10](https://github.com/seanmalbert/bloom/commit/b79fd1018619f618bd9be8e870d35c1180b81dfb)) +- refactor and add public site application flow cypress tests ([a300d69](https://github.com/seanmalbert/bloom/commit/a300d69c895052a6c3c4def6121237fdc80a76c6)) +- simplify Waitlist component and use more flexible schema ([aa8e006](https://github.com/seanmalbert/bloom/commit/aa8e00616d886e8d57316b2362d35c0c550007c6)) +- skip preferences if not on listing ([644ba0e](https://github.com/seanmalbert/bloom/commit/644ba0eb7094b5d57c54df80f3cd11dcea0ca4a7)) +### Reverts +- Revert "chore(release): version" ([47a2c67](https://github.com/seanmalbert/bloom/commit/47a2c67af5c7c41f360fafc6c5386476866ea403)) +- Revert "chore: removes application program partners" ([91e22d8](https://github.com/seanmalbert/bloom/commit/91e22d891104e8d4fc024d709a6a14cec1400733)) +- Revert "chore: removes application program display" ([740cf00](https://github.com/seanmalbert/bloom/commit/740cf00dc3a729eed037d56a8dfc5988decd2651)) +### BREAKING CHANGES +- preferences model and relationships changed -## [3.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.39...@bloom-housing/public@3.0.1-alpha.40) (2021-11-30) +- feat: feat(backend): extend UserUpdateDto to support email change +picked from dev 3e1fdbd0ea91d4773973d5c485a5ba61303db90a -### Bug Fixes +- fix: 2056/user account edit fix -* fetchBaseListingData ([#2238](https://github.com/bloom-housing/bloom/issues/2238)) ([55dd01c](https://github.com/bloom-housing/bloom/commit/55dd01c2e49c383d010493f464092d3948351bd4)) +picked from dev a15618c0cb548ff5b2ae913b802c9e08bb673f30 +- refactor: 2085/adds top level catchAll exception filter +picked from dev aeaa63d1af1fa3d11671e169cb3bd23d356fface +- feat: feat: Change unit number field type to text +picked from dev f54be7c7ba6aac8e00fee610dc86584b60cc212d -## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.38...@bloom-housing/public@3.0.1-alpha.39) (2021-11-30) +- feat(backend): improve application flagged set saving efficiency +- fix: fix: updates address order -### Bug Fixes +picked from dev 252e014dcbd2e4c305384ed552135f5a8e4e4767 -* **backend:** nginx with heroku configuration ([#2196](https://github.com/bloom-housing/bloom/issues/2196)) ([a1e2630](https://github.com/bloom-housing/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) +- fix: sets programs to optoinal and updates versions +- chore: chore(deps): bump electron from 13.1.7 to 13.3.0 +- chore: chore(deps): bump axios from 0.21.1 to 0.21.2 +- fix: adds programs service +- fix: fix lisitng e2e tests -## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.37...@bloom-housing/public@3.0.1-alpha.38) (2021-11-29) +- fix: fix member tests +## [4.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.22...@bloom-housing/public@4.0.1-alpha.23) (2022-01-13) -### Bug Fixes +**Note:** Version bump only for package @bloom-housing/public -* feedback on the waitlist data and display ([9432542](https://github.com/bloom-housing/bloom/commit/9432542efd9ba2e4bf8dd7195895e75f5d2e0623)) +## [4.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.21...@bloom-housing/public@4.0.1-alpha.22) (2022-01-13) +### Bug Fixes +- dates showing as invalid in send by mail section ([#2362](https://github.com/bloom-housing/bloom/issues/2362)) ([3567388](https://github.com/bloom-housing/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3)) +### BREAKING CHANGES +- remove applicationDueTime field and consolidated into applicationDueDate -## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.36...@bloom-housing/public@3.0.1-alpha.37) (2021-11-29) +## [4.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.20...@bloom-housing/public@4.0.1-alpha.21) (2022-01-13) **Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.19...@bloom-housing/public@4.0.1-alpha.20) (2022-01-11) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.18...@bloom-housing/public@4.0.1-alpha.19) (2022-01-08) +### Bug Fixes -## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.35...@bloom-housing/public@3.0.1-alpha.36) (2021-11-29) - -**Note:** Version bump only for package @bloom-housing/public +- ensure dayjs parsing strings will work as expected ([eb44939](https://github.com/bloom-housing/bloom/commit/eb449395ebea3a3b4b58eb217df1e1313c722a0d)) +## [4.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.17...@bloom-housing/public@4.0.1-alpha.18) (2022-01-07) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.16...@bloom-housing/public@4.0.1-alpha.17) (2022-01-07) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.34...@bloom-housing/public@3.0.1-alpha.35) (2021-11-29) +## [4.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.15...@bloom-housing/public@4.0.1-alpha.16) (2022-01-07) +**Note:** Version bump only for package @bloom-housing/public -### Bug Fixes +## [4.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.14...@bloom-housing/public@4.0.1-alpha.15) (2022-01-06) -* summary/review no listing ([cbc18f7](https://github.com/bloom-housing/bloom/commit/cbc18f77a9a0020b63aee570010e9a4ed6546cd2)) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.13...@bloom-housing/public@4.0.1-alpha.14) (2022-01-04) -### Features +**Note:** Version bump only for package @bloom-housing/public -* adds done() to cy.sumbmitApplication ([81ca55a](https://github.com/bloom-housing/bloom/commit/81ca55a9f2bca5482985de62ec94e81b34a5ee55)) -* skip preferences if not on listing ([2037b74](https://github.com/bloom-housing/bloom/commit/2037b7484c86cd9f3381c96f61c982a1bada80d5)) +## [4.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.12...@bloom-housing/public@4.0.1-alpha.13) (2022-01-04) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.11...@bloom-housing/public@4.0.1-alpha.12) (2022-01-04) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.10...@bloom-housing/public@4.0.1-alpha.11) (2022-01-03) -## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.33...@bloom-housing/public@3.0.1-alpha.34) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.9...@bloom-housing/public@4.0.1-alpha.10) (2022-01-03) ### Bug Fixes -* remove alameda reference in demographics ([#2209](https://github.com/bloom-housing/bloom/issues/2209)) ([7d5991c](https://github.com/bloom-housing/bloom/commit/7d5991cbf6dbe0b61f2b14d265e87ce3687f743d)) +- remove next dependency from ui-components ([#2352](https://github.com/bloom-housing/bloom/issues/2352)) ([136e8a1](https://github.com/bloom-housing/bloom/commit/136e8a1af2b4f285644caa9a18d60121f4d82566)) +## [4.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.8...@bloom-housing/public@4.0.1-alpha.9) (2022-01-03) +### Bug Fixes +- cypress coverage configs ([eec74ee](https://github.com/bloom-housing/bloom/commit/eec74eef138f6af275ae3cfe16262ed215b16907)) +## [4.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.1-alpha.7...@bloom-housing/public@4.0.1-alpha.8) (2022-01-03) -## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.32...@bloom-housing/public@3.0.1-alpha.33) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.7) (2022-01-03) ### Bug Fixes -* change the yes/no radio text to be more descriptive ([#2208](https://github.com/bloom-housing/bloom/issues/2208)) ([0c46054](https://github.com/bloom-housing/bloom/commit/0c46054574535523d6f217bb0677bbe732b8945f)) - - - +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) -## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.31...@bloom-housing/public@3.0.1-alpha.32) (2021-11-23) - -**Note:** Version bump only for package @bloom-housing/public +### BREAKING CHANGES +- sign-in pages have been updated +## [4.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.6) (2022-01-03) +### Bug Fixes +- bump version ([#2349](https://github.com/bloom-housing/bloom/issues/2349)) ([b9e3ba1](https://github.com/bloom-housing/bloom/commit/b9e3ba10aebd6534090f8be231a9ea77b3c929b6)) +- bump version ([#2350](https://github.com/bloom-housing/bloom/issues/2350)) ([05863f5](https://github.com/bloom-housing/bloom/commit/05863f55f3939bea4387bd7cf4eb1f34df106124)) -## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.30...@bloom-housing/public@3.0.1-alpha.31) (2021-11-23) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/bloom-housing/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/bloom-housing/bloom/issues/2260) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) [#1927](https://github.com/bloom-housing/bloom/issues/1927) -**Note:** Version bump only for package @bloom-housing/public +### BREAKING CHANGES +- sign-in pages have been updated +## [4.0.1-alpha.1](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.1) (2021-12-23) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +### BREAKING CHANGES -## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.29...@bloom-housing/public@3.0.1-alpha.30) (2021-11-23) +- sign-in pages have been updated -**Note:** Version bump only for package @bloom-housing/public +## [4.0.1-alpha.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@4.0.0...@bloom-housing/public@4.0.1-alpha.0) (2021-12-23) +- 2227/lock login attempts frontend (#2260) ([281ea43](https://github.com/seanmalbert/bloom/commit/281ea435e618a73a73f233a7a494f961fbac8fa2)), closes [#2260](https://github.com/seanmalbert/bloom/issues/2260) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) [#1927](https://github.com/seanmalbert/bloom/issues/1927) +### BREAKING CHANGES +- sign-in pages have been updated +# [4.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@3.0.1-alpha.73...@bloom-housing/public@4.0.0) (2021-12-22) -## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.28...@bloom-housing/public@3.0.1-alpha.29) (2021-11-23) +### Bug Fixes +- closed listings allowed apps ([#2317](https://github.com/seanmalbert/bloom/issues/2317)) ([bb69347](https://github.com/seanmalbert/bloom/commit/bb693473aeb8757d6a09282c9331d356430b1f81)) +- removes more closed listing application paths ([#2319](https://github.com/seanmalbert/bloom/issues/2319)) ([ff50205](https://github.com/seanmalbert/bloom/commit/ff50205f371ebd63d07168b290733d0f1e2d493c)) -### Features +### Code Refactoring -* new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) +- removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889)) +### BREAKING CHANGES +- moved some helpers from ui-components to shared-helpers +## [3.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.72...@bloom-housing/public@3.0.1-alpha.73) (2021-12-15) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.27...@bloom-housing/public@3.0.1-alpha.28) (2021-11-23) +## [3.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.71...@bloom-housing/public@3.0.1-alpha.72) (2021-12-15) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.70...@bloom-housing/public@3.0.1-alpha.71) (2021-12-15) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.69...@bloom-housing/public@3.0.1-alpha.70) (2021-12-14) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.26...@bloom-housing/public@3.0.1-alpha.27) (2021-11-22) +## [3.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.68...@bloom-housing/public@3.0.1-alpha.69) (2021-12-14) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.67...@bloom-housing/public@3.0.1-alpha.68) (2021-12-13) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.65...@bloom-housing/public@3.0.1-alpha.67) (2021-12-13) +### Bug Fixes -## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.25...@bloom-housing/public@3.0.1-alpha.26) (2021-11-22) +- versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([0b1d143](https://github.com/bloom-housing/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d)) -**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.64...@bloom-housing/public@3.0.1-alpha.65) (2021-12-10) +### Bug Fixes +- demographics howDidYouHear options were not changing on language change ([#2305](https://github.com/bloom-housing/bloom/issues/2305)) ([a9859d1](https://github.com/bloom-housing/bloom/commit/a9859d1a718d88e0e1ff671a408887691306b4b9)) +## [3.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.63...@bloom-housing/public@3.0.1-alpha.64) (2021-12-10) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.24...@bloom-housing/public@3.0.1-alpha.25) (2021-11-22) +## [3.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.62...@bloom-housing/public@3.0.1-alpha.63) (2021-12-10) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.61...@bloom-housing/public@3.0.1-alpha.62) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.60...@bloom-housing/public@3.0.1-alpha.61) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.23...@bloom-housing/public@3.0.1-alpha.24) (2021-11-22) +## [3.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.59...@bloom-housing/public@3.0.1-alpha.60) (2021-12-09) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.58...@bloom-housing/public@3.0.1-alpha.59) (2021-12-09) +### Bug Fixes +- prefUnits on autofill summary ([#2294](https://github.com/bloom-housing/bloom/issues/2294)) ([2b370e9](https://github.com/bloom-housing/bloom/commit/2b370e9321ec652ed3d124319e08e01fc765d636)) - -## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.22...@bloom-housing/public@3.0.1-alpha.23) (2021-11-17) +## [3.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.57...@bloom-housing/public@3.0.1-alpha.58) (2021-12-09) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.56...@bloom-housing/public@3.0.1-alpha.57) (2021-12-09) +**Note:** Version bump only for package @bloom-housing/public - - -## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.21...@bloom-housing/public@3.0.1-alpha.22) (2021-11-16) +## [3.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.55...@bloom-housing/public@3.0.1-alpha.56) (2021-12-08) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.54...@bloom-housing/public@3.0.1-alpha.55) (2021-12-07) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.53...@bloom-housing/public@3.0.1-alpha.54) (2021-12-07) +### Features -## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.20...@bloom-housing/public@3.0.1-alpha.21) (2021-11-16) +- overrides fallback to english, tagalog support ([#2262](https://github.com/bloom-housing/bloom/issues/2262)) ([679ab9b](https://github.com/bloom-housing/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7)) +## [3.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.52...@bloom-housing/public@3.0.1-alpha.53) (2021-12-07) ### Bug Fixes -* preference cleanup for avance ([d0aebbc](https://github.com/bloom-housing/bloom/commit/d0aebbcd334dfffc4a7a1a39e9964c90155c5bfb)) - +- submission tests not running ([#2282](https://github.com/bloom-housing/bloom/issues/2282)) ([735cf2b](https://github.com/bloom-housing/bloom/commit/735cf2bcafdd81d45856d856102c6e0665742daa)) +## [3.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.51...@bloom-housing/public@3.0.1-alpha.52) (2021-12-07) +### Bug Fixes +- visual improvement to programs form display ([#2276](https://github.com/bloom-housing/bloom/issues/2276)) ([e8c87d1](https://github.com/bloom-housing/bloom/commit/e8c87d1323ed9a1de0865a172d02139aefe37967)) -## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.19...@bloom-housing/public@3.0.1-alpha.20) (2021-11-16) +## [3.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.50...@bloom-housing/public@3.0.1-alpha.51) (2021-12-07) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.49...@bloom-housing/public@3.0.1-alpha.50) (2021-12-06) +**Note:** Version bump only for package @bloom-housing/public - - -## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.18...@bloom-housing/public@3.0.1-alpha.19) (2021-11-16) +## [3.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.48...@bloom-housing/public@3.0.1-alpha.49) (2021-12-03) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.47...@bloom-housing/public@3.0.1-alpha.48) (2021-12-03) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.46...@bloom-housing/public@3.0.1-alpha.47) (2021-12-03) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.17...@bloom-housing/public@3.0.1-alpha.18) (2021-11-15) +## [3.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.45...@bloom-housing/public@3.0.1-alpha.46) (2021-12-02) -**Note:** Version bump only for package @bloom-housing/public +### Bug Fixes +- applications/view hide prefs ([89ff7bb](https://github.com/bloom-housing/bloom/commit/89ff7bb03380332b107be2a2a5321097ade99466)) +## [3.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.44...@bloom-housing/public@3.0.1-alpha.45) (2021-12-02) +### Bug Fixes +- choose-language context ([f62bf46](https://github.com/bloom-housing/bloom/commit/f62bf4623b8ec0955b54727ba422357acaaed754)) -## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.16...@bloom-housing/public@3.0.1-alpha.17) (2021-11-15) +## [3.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.43...@bloom-housing/public@3.0.1-alpha.44) (2021-12-01) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.42...@bloom-housing/public@3.0.1-alpha.43) (2021-12-01) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.41...@bloom-housing/public@3.0.1-alpha.42) (2021-12-01) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.15...@bloom-housing/public@3.0.1-alpha.16) (2021-11-15) +## [3.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.40...@bloom-housing/public@3.0.1-alpha.41) (2021-11-30) -**Note:** Version bump only for package @bloom-housing/public +### Features +- getStaticPaths fallback blocking test ([a42170d](https://github.com/bloom-housing/bloom/commit/a42170d5c514998dad2b2011b8a6b9021955f277)) +## [3.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.39...@bloom-housing/public@3.0.1-alpha.40) (2021-11-30) +### Bug Fixes +- fetchBaseListingData ([#2238](https://github.com/bloom-housing/bloom/issues/2238)) ([55dd01c](https://github.com/bloom-housing/bloom/commit/55dd01c2e49c383d010493f464092d3948351bd4)) -## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.14...@bloom-housing/public@3.0.1-alpha.15) (2021-11-15) +## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.38...@bloom-housing/public@3.0.1-alpha.39) (2021-11-30) -**Note:** Version bump only for package @bloom-housing/public +### Bug Fixes +- **backend:** nginx with heroku configuration ([#2196](https://github.com/bloom-housing/bloom/issues/2196)) ([a1e2630](https://github.com/bloom-housing/bloom/commit/a1e26303bdd660b9ac267da55dc8d09661216f1c)) +## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.37...@bloom-housing/public@3.0.1-alpha.38) (2021-11-29) +### Bug Fixes +- feedback on the waitlist data and display ([9432542](https://github.com/bloom-housing/bloom/commit/9432542efd9ba2e4bf8dd7195895e75f5d2e0623)) -## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.13...@bloom-housing/public@3.0.1-alpha.14) (2021-11-12) +## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.36...@bloom-housing/public@3.0.1-alpha.37) (2021-11-29) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.35...@bloom-housing/public@3.0.1-alpha.36) (2021-11-29) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.34...@bloom-housing/public@3.0.1-alpha.35) (2021-11-29) +### Bug Fixes -## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.12...@bloom-housing/public@3.0.1-alpha.13) (2021-11-12) - +- summary/review no listing ([cbc18f7](https://github.com/bloom-housing/bloom/commit/cbc18f77a9a0020b63aee570010e9a4ed6546cd2)) ### Features -* refactor and add public site application flow cypress tests ([#2118](https://github.com/bloom-housing/bloom/issues/2118)) ([9ec0e8d](https://github.com/bloom-housing/bloom/commit/9ec0e8d05f9570773110754e7fdaf49254d1eab8)) +- adds done() to cy.sumbmitApplication ([81ca55a](https://github.com/bloom-housing/bloom/commit/81ca55a9f2bca5482985de62ec94e81b34a5ee55)) +- skip preferences if not on listing ([2037b74](https://github.com/bloom-housing/bloom/commit/2037b7484c86cd9f3381c96f61c982a1bada80d5)) +## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.33...@bloom-housing/public@3.0.1-alpha.34) (2021-11-23) +### Bug Fixes +- remove alameda reference in demographics ([#2209](https://github.com/bloom-housing/bloom/issues/2209)) ([7d5991c](https://github.com/bloom-housing/bloom/commit/7d5991cbf6dbe0b61f2b14d265e87ce3687f743d)) +## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.32...@bloom-housing/public@3.0.1-alpha.33) (2021-11-23) -## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.11...@bloom-housing/public@3.0.1-alpha.12) (2021-11-12) +### Bug Fixes -**Note:** Version bump only for package @bloom-housing/public +- change the yes/no radio text to be more descriptive ([#2208](https://github.com/bloom-housing/bloom/issues/2208)) ([0c46054](https://github.com/bloom-housing/bloom/commit/0c46054574535523d6f217bb0677bbe732b8945f)) +## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.31...@bloom-housing/public@3.0.1-alpha.32) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.30...@bloom-housing/public@3.0.1-alpha.31) (2021-11-23) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.10...@bloom-housing/public@3.0.1-alpha.11) (2021-11-11) +## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.29...@bloom-housing/public@3.0.1-alpha.30) (2021-11-23) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.28...@bloom-housing/public@3.0.1-alpha.29) (2021-11-23) +### Features +- new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3)) - -## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.9...@bloom-housing/public@3.0.1-alpha.10) (2021-11-10) +## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.27...@bloom-housing/public@3.0.1-alpha.28) (2021-11-23) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.26...@bloom-housing/public@3.0.1-alpha.27) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.25...@bloom-housing/public@3.0.1-alpha.26) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.8...@bloom-housing/public@3.0.1-alpha.9) (2021-11-09) +## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.24...@bloom-housing/public@3.0.1-alpha.25) (2021-11-22) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.23...@bloom-housing/public@3.0.1-alpha.24) (2021-11-22) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.22...@bloom-housing/public@3.0.1-alpha.23) (2021-11-17) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.7...@bloom-housing/public@3.0.1-alpha.8) (2021-11-09) +## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.21...@bloom-housing/public@3.0.1-alpha.22) (2021-11-16) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.20...@bloom-housing/public@3.0.1-alpha.21) (2021-11-16) +### Bug Fixes +- preference cleanup for avance ([d0aebbc](https://github.com/bloom-housing/bloom/commit/d0aebbcd334dfffc4a7a1a39e9964c90155c5bfb)) - -## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.6...@bloom-housing/public@3.0.1-alpha.7) (2021-11-09) +## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.19...@bloom-housing/public@3.0.1-alpha.20) (2021-11-16) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.18...@bloom-housing/public@3.0.1-alpha.19) (2021-11-16) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.17...@bloom-housing/public@3.0.1-alpha.18) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.5...@bloom-housing/public@3.0.1-alpha.6) (2021-11-09) +## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.16...@bloom-housing/public@3.0.1-alpha.17) (2021-11-15) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.15...@bloom-housing/public@3.0.1-alpha.16) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.14...@bloom-housing/public@3.0.1-alpha.15) (2021-11-15) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.4...@bloom-housing/public@3.0.1-alpha.5) (2021-11-09) +## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.13...@bloom-housing/public@3.0.1-alpha.14) (2021-11-12) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.12...@bloom-housing/public@3.0.1-alpha.13) (2021-11-12) +### Features +- refactor and add public site application flow cypress tests ([#2118](https://github.com/bloom-housing/bloom/issues/2118)) ([9ec0e8d](https://github.com/bloom-housing/bloom/commit/9ec0e8d05f9570773110754e7fdaf49254d1eab8)) - -## [3.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.3...@bloom-housing/public@3.0.1-alpha.4) (2021-11-09) +## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.11...@bloom-housing/public@3.0.1-alpha.12) (2021-11-12) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.10...@bloom-housing/public@3.0.1-alpha.11) (2021-11-11) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.9...@bloom-housing/public@3.0.1-alpha.10) (2021-11-10) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.2...@bloom-housing/public@3.0.1-alpha.3) (2021-11-08) +## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.8...@bloom-housing/public@3.0.1-alpha.9) (2021-11-09) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.7...@bloom-housing/public@3.0.1-alpha.8) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.6...@bloom-housing/public@3.0.1-alpha.7) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.1...@bloom-housing/public@3.0.1-alpha.2) (2021-11-08) +## [3.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.5...@bloom-housing/public@3.0.1-alpha.6) (2021-11-09) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.4...@bloom-housing/public@3.0.1-alpha.5) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.3...@bloom-housing/public@3.0.1-alpha.4) (2021-11-09) +**Note:** Version bump only for package @bloom-housing/public -## [3.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.0...@bloom-housing/public@3.0.1-alpha.1) (2021-11-08) +## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.2...@bloom-housing/public@3.0.1-alpha.3) (2021-11-08) **Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.1...@bloom-housing/public@3.0.1-alpha.2) (2021-11-08) +**Note:** Version bump only for package @bloom-housing/public +## [3.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.1-alpha.0...@bloom-housing/public@3.0.1-alpha.1) (2021-11-08) +**Note:** Version bump only for package @bloom-housing/public ## [3.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@3.0.0...@bloom-housing/public@3.0.1-alpha.0) (2021-11-05) - -* 1837/preferences cleanup 3 (#2144) ([3ce6d5e](https://github.com/bloom-housing/bloom/commit/3ce6d5eb5aac49431ec5bf4912dbfcbe9077d84e)), closes [#2144](https://github.com/bloom-housing/bloom/issues/2144) - +- 1837/preferences cleanup 3 (#2144) ([3ce6d5e](https://github.com/bloom-housing/bloom/commit/3ce6d5eb5aac49431ec5bf4912dbfcbe9077d84e)), closes [#2144](https://github.com/bloom-housing/bloom/issues/2144) ### BREAKING CHANGES -* Preferences are now M-N relation with a listing and have an intermediate table with ordinal number +- Preferences are now M-N relation with a listing and have an intermediate table with ordinal number -* refactor(backend): preferences deduplication +- refactor(backend): preferences deduplication So far each listing referenced it's own unique Preferences. This change introduces Many to Many relationship between Preference and Listing entity and forces sharing Preferences between listings. -* feat(backend): extend preferences migration with moving existing relations to a new intermediate tab +- feat(backend): extend preferences migration with moving existing relations to a new intermediate tab -* feat(backend): add Preference - Jurisdiction ManyToMany relation +- feat(backend): add Preference - Jurisdiction ManyToMany relation -* feat: adapt frontend to backend changes +- feat: adapt frontend to backend changes -* fix(backend): typeORM preferences select statement +- fix(backend): typeORM preferences select statement -* fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator +- fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator -* fix(backend): fix missing import in preferences-filter-params.ts +- fix(backend): fix missing import in preferences-filter-params.ts -* refactor: rebase issue +- refactor: rebase issue -* feat: uptake jurisdictional preferences +- feat: uptake jurisdictional preferences -* fix: fixup tests +- fix: fixup tests -* fix: application preferences ignore page, always separate +- fix: application preferences ignore page, always separate -* Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts +- Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts -* fix: preference fetching and ordering/pages +- fix: preference fetching and ordering/pages -* Fix code style issues with Prettier +- Fix code style issues with Prettier -* fix(backend): query User__leasingAgentInListings__jurisdiction_User__leasingAgentIn specified more +- fix(backend): query User**leasingAgentInListings**jurisdiction_User\_\_leasingAgentIn specified more -* fix: perferences cypress tests +- fix: perferences cypress tests Co-authored-by: Michal Plebanski Co-authored-by: Emily Jablonski Co-authored-by: Lint Action - - - - # [3.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@2.0.1-alpha.9...@bloom-housing/public@3.0.0) (2021-11-05) **Note:** Version bump only for package @bloom-housing/public - - - - ## [2.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.8...@bloom-housing/public@2.0.1-alpha.9) (2021-11-05) **Note:** Version bump only for package @bloom-housing/public - - - - ## [2.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.7...@bloom-housing/public@2.0.1-alpha.8) (2021-11-04) - ### Reverts -* Revert "refactor: listing preferences and adds jurisdictional filtering" ([41f72c0](https://github.com/bloom-housing/bloom/commit/41f72c0db49cf94d7930f5cfc88f6ee9d6040986)) - - - - +- Revert "refactor: listing preferences and adds jurisdictional filtering" ([41f72c0](https://github.com/bloom-housing/bloom/commit/41f72c0db49cf94d7930f5cfc88f6ee9d6040986)) ## [2.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.6...@bloom-housing/public@2.0.1-alpha.7) (2021-11-04) **Note:** Version bump only for package @bloom-housing/public - - - - ## [2.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.5...@bloom-housing/public@2.0.1-alpha.6) (2021-11-04) - ### Features -* Updates application confirmation numbers ([#2072](https://github.com/bloom-housing/bloom/issues/2072)) ([75cd67b](https://github.com/bloom-housing/bloom/commit/75cd67bcb62280936bdeeaee8c9b7b2583a1339d)) - - - - +- Updates application confirmation numbers ([#2072](https://github.com/bloom-housing/bloom/issues/2072)) ([75cd67b](https://github.com/bloom-housing/bloom/commit/75cd67bcb62280936bdeeaee8c9b7b2583a1339d)) ## [2.0.1-alpha.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.4...@bloom-housing/public@2.0.1-alpha.5) (2021-11-03) **Note:** Version bump only for package @bloom-housing/public - - - - ## [2.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.3...@bloom-housing/public@2.0.1-alpha.4) (2021-11-03) **Note:** Version bump only for package @bloom-housing/public - - - - ## [2.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.2...@bloom-housing/public@2.0.1-alpha.3) (2021-11-03) - ### Bug Fixes -* SiteHeader visual issues with long menu bars ([#2068](https://github.com/bloom-housing/bloom/issues/2068)) ([fd6686e](https://github.com/bloom-housing/bloom/commit/fd6686e206b4e53ae8b6ab757ad0506eaead0d01)) - - - - +- SiteHeader visual issues with long menu bars ([#2068](https://github.com/bloom-housing/bloom/issues/2068)) ([fd6686e](https://github.com/bloom-housing/bloom/commit/fd6686e206b4e53ae8b6ab757ad0506eaead0d01)) ## [2.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.1...@bloom-housing/public@2.0.1-alpha.2) (2021-11-02) - ### Bug Fixes -* household member cypress test ([#2113](https://github.com/bloom-housing/bloom/issues/2113)) ([a6cd580](https://github.com/bloom-housing/bloom/commit/a6cd580f042fb8ff3c1cf03bec7198debdf22029)) - - - - +- household member cypress test ([#2113](https://github.com/bloom-housing/bloom/issues/2113)) ([a6cd580](https://github.com/bloom-housing/bloom/commit/a6cd580f042fb8ff3c1cf03bec7198debdf22029)) ## [2.0.1-alpha.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.1-alpha.0...@bloom-housing/public@2.0.1-alpha.1) (2021-11-02) - ### Features -* two new common app questions - Household Changes and Household Student ([#2070](https://github.com/bloom-housing/bloom/issues/2070)) ([42a752e](https://github.com/bloom-housing/bloom/commit/42a752ec073c0f5b65374c7a68da1e34b0b1c949)) - - - - +- two new common app questions - Household Changes and Household Student ([#2070](https://github.com/bloom-housing/bloom/issues/2070)) ([42a752e](https://github.com/bloom-housing/bloom/commit/42a752ec073c0f5b65374c7a68da1e34b0b1c949)) ## [2.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0...@bloom-housing/public@2.0.1-alpha.0) (2021-11-02) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.26...@bloom-housing/public@2.0.0) (2021-11-02) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.25...@bloom-housing/public@2.0.0-pre-tailwind.26) (2021-11-02) - ### Code Refactoring -* listing preferences and adds jurisdictional filtering ([9f661b4](https://github.com/bloom-housing/bloom/commit/9f661b43921ec939bd1bf5709c934ad6f56dd859)) - +- listing preferences and adds jurisdictional filtering ([9f661b4](https://github.com/bloom-housing/bloom/commit/9f661b43921ec939bd1bf5709c934ad6f56dd859)) ### BREAKING CHANGES -* updates preference relationship with listings - - - - +- updates preference relationship with listings # [2.0.0-pre-tailwind.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.24...@bloom-housing/public@2.0.0-pre-tailwind.25) (2021-11-01) - ### Bug Fixes -* reverts preferences to re-add as breaking/major bump ([508078e](https://github.com/bloom-housing/bloom/commit/508078e16649e4d5f669273c50ef62407aab995f)) -* reverts preferences to re-add as breaking/major bump ([4f7d893](https://github.com/bloom-housing/bloom/commit/4f7d89327361b3b28b368c23cfd24e6e8123a0a8)) - - - - +- reverts preferences to re-add as breaking/major bump ([508078e](https://github.com/bloom-housing/bloom/commit/508078e16649e4d5f669273c50ef62407aab995f)) +- reverts preferences to re-add as breaking/major bump ([4f7d893](https://github.com/bloom-housing/bloom/commit/4f7d89327361b3b28b368c23cfd24e6e8123a0a8)) # [2.0.0-pre-tailwind.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.23...@bloom-housing/public@2.0.0-pre-tailwind.24) (2021-10-30) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.22...@bloom-housing/public@2.0.0-pre-tailwind.23) (2021-10-30) - -* Preferences cleanup (#1947) ([7329a58](https://github.com/bloom-housing/bloom/commit/7329a58cc9242faf647459e46de1e3cff3fe9c9d)), closes [#1947](https://github.com/bloom-housing/bloom/issues/1947) - +- Preferences cleanup (#1947) ([7329a58](https://github.com/bloom-housing/bloom/commit/7329a58cc9242faf647459e46de1e3cff3fe9c9d)), closes [#1947](https://github.com/bloom-housing/bloom/issues/1947) ### BREAKING CHANGES -* Preferences are now M-N relation with a listing and have an intermediate table with ordinal number +- Preferences are now M-N relation with a listing and have an intermediate table with ordinal number -* refactor(backend): preferences deduplication +- refactor(backend): preferences deduplication So far each listing referenced it's own unique Preferences. This change introduces Many to Many relationship between Preference and Listing entity and forces sharing Preferences between listings. -* feat(backend): extend preferences migration with moving existing relations to a new intermediate tab +- feat(backend): extend preferences migration with moving existing relations to a new intermediate tab -* feat(backend): add Preference - Jurisdiction ManyToMany relation +- feat(backend): add Preference - Jurisdiction ManyToMany relation -* feat: adapt frontend to backend changes +- feat: adapt frontend to backend changes -* fix(backend): typeORM preferences select statement +- fix(backend): typeORM preferences select statement -* fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator +- fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator -* fix(backend): fix missing import in preferences-filter-params.ts +- fix(backend): fix missing import in preferences-filter-params.ts -* refactor: rebase issue +- refactor: rebase issue -* feat: uptake jurisdictional preferences +- feat: uptake jurisdictional preferences -* fix: fixup tests +- fix: fixup tests -* fix: application preferences ignore page, always separate +- fix: application preferences ignore page, always separate -* Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts +- Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts -* fix: preference fetching and ordering/pages +- fix: preference fetching and ordering/pages -* Fix code style issues with Prettier +- Fix code style issues with Prettier -* fix(backend): query User__leasingAgentInListings__jurisdiction_User__leasingAgentIn specified more +- fix(backend): query User**leasingAgentInListings**jurisdiction_User\_\_leasingAgentIn specified more -* fix: perferences cypress tests +- fix: perferences cypress tests Co-authored-by: Emily Jablonski Co-authored-by: Sean Albert Co-authored-by: Lint Action - - - - # [2.0.0-pre-tailwind.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.21...@bloom-housing/public@2.0.0-pre-tailwind.22) (2021-10-29) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.20...@bloom-housing/public@2.0.0-pre-tailwind.21) (2021-10-29) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.19...@bloom-housing/public@2.0.0-pre-tailwind.20) (2021-10-29) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.18...@bloom-housing/public@2.0.0-pre-tailwind.19) (2021-10-29) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.17...@bloom-housing/public@2.0.0-pre-tailwind.18) (2021-10-29) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.16...@bloom-housing/public@2.0.0-pre-tailwind.17) (2021-10-29) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.15...@bloom-housing/public@2.0.0-pre-tailwind.16) (2021-10-28) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.14...@bloom-housing/public@2.0.0-pre-tailwind.15) (2021-10-28) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.13...@bloom-housing/public@2.0.0-pre-tailwind.14) (2021-10-27) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.12...@bloom-housing/public@2.0.0-pre-tailwind.13) (2021-10-26) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.11...@bloom-housing/public@2.0.0-pre-tailwind.12) (2021-10-25) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.10...@bloom-housing/public@2.0.0-pre-tailwind.11) (2021-10-25) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.9...@bloom-housing/public@2.0.0-pre-tailwind.10) (2021-10-22) - ### Bug Fixes -* alternate contact email now validated ([#2035](https://github.com/bloom-housing/bloom/issues/2035)) ([b411695](https://github.com/bloom-housing/bloom/commit/b411695350f8f8de39c6994f2fac2fcb4678f678)) - - - - +- alternate contact email now validated ([#2035](https://github.com/bloom-housing/bloom/issues/2035)) ([b411695](https://github.com/bloom-housing/bloom/commit/b411695350f8f8de39c6994f2fac2fcb4678f678)) # [2.0.0-pre-tailwind.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.8...@bloom-housing/public@2.0.0-pre-tailwind.9) (2021-10-22) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.7...@bloom-housing/public@2.0.0-pre-tailwind.8) (2021-10-22) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.6...@bloom-housing/public@2.0.0-pre-tailwind.7) (2021-10-22) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.5...@bloom-housing/public@2.0.0-pre-tailwind.6) (2021-10-22) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.5](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.4...@bloom-housing/public@2.0.0-pre-tailwind.5) (2021-10-22) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.3...@bloom-housing/public@2.0.0-pre-tailwind.4) (2021-10-22) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.2...@bloom-housing/public@2.0.0-pre-tailwind.3) (2021-10-21) **Note:** Version bump only for package @bloom-housing/public - - - - # [2.0.0-pre-tailwind.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.1...@bloom-housing/public@2.0.0-pre-tailwind.2) (2021-10-21) - ### Features -* adds jurisdiction filtering to listings ([#2027](https://github.com/bloom-housing/bloom/issues/2027)) ([219696b](https://github.com/bloom-housing/bloom/commit/219696ba784cfc079dd5aec74b24c3a8479160b6)) - - - - +- adds jurisdiction filtering to listings ([#2027](https://github.com/bloom-housing/bloom/issues/2027)) ([219696b](https://github.com/bloom-housing/bloom/commit/219696ba784cfc079dd5aec74b24c3a8479160b6)) # [2.0.0-pre-tailwind.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/public@2.0.0-pre-tailwind.0...@bloom-housing/public@2.0.0-pre-tailwind.1) (2021-10-19) diff --git a/sites/public/cypress.config.ts b/sites/public/cypress.config.ts index 2566bd324e..14cf6d2108 100644 --- a/sites/public/cypress.config.ts +++ b/sites/public/cypress.config.ts @@ -7,6 +7,7 @@ export default defineConfig({ video: true, videoUploadOnPasses: false, numTestsKeptInMemory: 0, + scrollBehavior: "bottom", env: { codeCoverage: { diff --git a/sites/public/cypress/e2e/pages/my-applications.spec.ts b/sites/public/cypress/e2e/pages/my-applications.spec.ts index f6729d1b87..9d1a66c825 100644 --- a/sites/public/cypress/e2e/pages/my-applications.spec.ts +++ b/sites/public/cypress/e2e/pages/my-applications.spec.ts @@ -5,6 +5,5 @@ describe("My applications page", function () { cy.url().should("include", "/account/dashboard") cy.getByID("account-dashboard-applications").click() cy.location("pathname").should("include", "/account/applications") - cy.signOut() }) }) diff --git a/sites/public/cypress/e2e/pages/submit-application.spec.ts b/sites/public/cypress/e2e/pages/submit-application.spec.ts index a1854fd53c..233d716139 100644 --- a/sites/public/cypress/e2e/pages/submit-application.spec.ts +++ b/sites/public/cypress/e2e/pages/submit-application.spec.ts @@ -2,6 +2,7 @@ import { ElmVillageApplication, minimalDataApplication } from "../../mockData/ap describe("Submit", function () { it("should submit an application for the Elm Village listing", function () { + cy.intercept("GET", "/geocoding/v5/**", { fixture: "address" }) cy.submitApplication("Elm Village", ElmVillageApplication, false) }) it("should submit a minimal application for the Test: Default, No Preferences", function () { diff --git a/sites/public/cypress/mockData/applicationData.ts b/sites/public/cypress/mockData/applicationData.ts index 766f232c12..b1fc7845bf 100644 --- a/sites/public/cypress/mockData/applicationData.ts +++ b/sites/public/cypress/mockData/applicationData.ts @@ -230,10 +230,10 @@ export const ElmVillageApplication = { checked: true, extraData: [], address: { - street: "1600 pennsylvania ave", + street: "2 15th St NW", city: "Washington", state: "District Of Columbia", - zipCode: "20005", + zipCode: "20024", }, }, ], diff --git a/sites/public/cypress/support/commands.js b/sites/public/cypress/support/commands.js index 2f1be24f1b..409c753686 100644 --- a/sites/public/cypress/support/commands.js +++ b/sites/public/cypress/support/commands.js @@ -416,7 +416,6 @@ Cypress.Commands.add("step15SelectPreferences", (application) => { optionsWithAddress?.forEach(() => { cy.goNext() }) - cy.goNext() }) if (preferenceClaimed) { diff --git a/sites/public/next.config.js b/sites/public/next.config.js index e96bf244dd..f8f673d1f5 100644 --- a/sites/public/next.config.js +++ b/sites/public/next.config.js @@ -31,6 +31,7 @@ const tailwindVars = require("@bloom-housing/ui-components/tailwind.tosass.js")( module.exports = withBundleAnalyzer({ env: { backendApiBase: BACKEND_API_BASE, + doorwayUrl: process.env.DOORWAY_URL, listingServiceUrl: BACKEND_API_BASE + LISTINGS_QUERY, listingPhotoSize: process.env.LISTING_PHOTO_SIZE || "1302", mapBoxToken: MAPBOX_TOKEN, diff --git a/sites/public/public/images/alameda-logo-white.svg b/sites/public/public/images/alameda-logo-white.svg new file mode 100644 index 0000000000..46992122b7 --- /dev/null +++ b/sites/public/public/images/alameda-logo-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sites/public/public/images/eho-logo-white.svg b/sites/public/public/images/eho-logo-white.svg new file mode 100644 index 0000000000..78d18b56e9 --- /dev/null +++ b/sites/public/public/images/eho-logo-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sites/public/public/images/san-jose-logo-white.png b/sites/public/public/images/san-jose-logo-white.png new file mode 100644 index 0000000000..720713e0af Binary files /dev/null and b/sites/public/public/images/san-jose-logo-white.png differ diff --git a/sites/public/src/RenderIf.tsx b/sites/public/src/RenderIf.tsx new file mode 100644 index 0000000000..ab55ef5b00 --- /dev/null +++ b/sites/public/src/RenderIf.tsx @@ -0,0 +1,19 @@ +import { useRouter } from "next/router" + +const RenderIf = (props: { language: string; children: JSX.Element }) => { + const router = useRouter() + + if (props.language == "all") { + return props.children + } else if (props.language == router.locale) { + return props.children + } else if (router.locale == "en" && props.language == "default") { + return props.children + } else if (props.language.includes(",") && props.language.split(",").includes(router.locale)) { + return props.children + } else { + return null + } +} + +export default RenderIf diff --git a/sites/public/src/Resource.tsx b/sites/public/src/Resource.tsx new file mode 100644 index 0000000000..2e6fac093e --- /dev/null +++ b/sites/public/src/Resource.tsx @@ -0,0 +1,40 @@ +import Markdown from "markdown-to-jsx" +import RenderIf from "./RenderIf" + +const Resource = ({ children }) => ( +
+ { + if (props.href?.startsWith("tel:") || props.href?.startsWith("mailto:")) { + return {children} + } else { + // Make sure standard web URLs will open in a new tab + return ( + + {children} + + ) + } + }, + }, + h3: { + component: ({ children, ...props }) => ( +
+

+ {children} +

+
+ ), + }, + }, + }} + children={children} + /> +
+) + +export default Resource diff --git a/sites/public/src/components/account/SignUpBenefits.tsx b/sites/public/src/components/account/SignUpBenefits.tsx index d706621328..9840332782 100644 --- a/sites/public/src/components/account/SignUpBenefits.tsx +++ b/sites/public/src/components/account/SignUpBenefits.tsx @@ -18,7 +18,6 @@ const SignUpBenefits = (props: SignUpBenefitsProps) => { : t("account.signUpSaveTime.resetPassword"), }, ] - const classNames = [styles["sign-up-benefits-container"]] if (props.className) classNames.push(props.className) return ( diff --git a/sites/public/src/components/listing/ListingView.tsx b/sites/public/src/components/listing/ListingView.tsx index 1e92097aa8..dc158a199b 100644 --- a/sites/public/src/components/listing/ListingView.tsx +++ b/sites/public/src/components/listing/ListingView.tsx @@ -70,6 +70,24 @@ interface ListingProps { jurisdiction?: Jurisdiction } +const getWhatToExpectContent = (listing: Listing) => { + if (listing.whatToExpect) return { content: listing.whatToExpect, expandableContent: null } + if (listing.reviewOrderType === ReviewOrderTypeEnum.lottery) + return { + content: t("whatToExpect.lottery"), + expandableContent: t("whatToExpect.lotteryReadMore"), + } + if (listing.reviewOrderType === ReviewOrderTypeEnum.waitlist) + return { + content: t("whatToExpect.waitlist"), + expandableContent: t("whatToExpect.waitlistReadMore"), + } + if (listing.reviewOrderType === ReviewOrderTypeEnum.firstComeFirstServe) + return { content: t("whatToExpect.fcfs"), expandableContent: t("whatToExpect.fcfsReadMore") } + + return null +} + export const ListingView = (props: ListingProps) => { const { initialStateLoaded, profile } = useContext(AuthContext) let buildingSelectionCriteria, preferencesSection @@ -352,6 +370,8 @@ export const ListingView = (props: ListingProps) => { return date ? dayjs(date).format(format) : null } + const whatToExpectContent = getWhatToExpectContent(listing) + const redirectIfSignedOut = () => process.env.showMandatedAccounts && initialStateLoaded && !profile @@ -815,7 +835,8 @@ export const ListingView = (props: ListingProps) => { )} {lotterySection} + {t("account.application.iconTitle")} + + + + + + + + + +) + +export const Profile = ( + + {t("account.settings.iconTitle")} + + + +) diff --git a/sites/public/src/layouts/application.module.scss b/sites/public/src/layouts/application.module.scss index b8b3903abd..f65784fcca 100644 --- a/sites/public/src/layouts/application.module.scss +++ b/sites/public/src/layouts/application.module.scss @@ -1,5 +1,5 @@ .site-alert-banner-container { - background-color: var(--seeds-color-alert-light); + background-color: var(--seeds-color-primary-light); width: 100%; display: flex; align-items: center; diff --git a/sites/public/src/layouts/application.tsx b/sites/public/src/layouts/application.tsx index e1355fea13..2024a44bbe 100644 --- a/sites/public/src/layouts/application.tsx +++ b/sites/public/src/layouts/application.tsx @@ -1,19 +1,17 @@ import React, { useContext } from "react" import dayjs from "dayjs" import { useRouter } from "next/router" -import Link from "next/link" import Head from "next/head" +import Markdown from "markdown-to-jsx" +import { JurisdictionFooterSection as SanMateoFooter } from "../page_content/jurisdiction_overrides/san_mateo/jurisdiction-footer-section" +import { JurisdictionFooterSection as SanJoseFooter } from "../page_content/jurisdiction_overrides/san_jose/jurisdiction-footer-section" +import { JurisdictionFooterSection as AlamedaFooter } from "../page_content/jurisdiction_overrides/alameda/jurisdiction-footer-section" +import { JursidictionSiteNotice as SanJoseNotice } from "../page_content/jurisdiction_overrides/san_jose/jurisdiction-site-notice" +import { JursidictionSiteNotice as AlamedaNotice } from "../page_content/jurisdiction_overrides/alameda/jurisdiction-site-notice" +import { JursidictionSiteNotice as SanMateoNotice } from "../page_content/jurisdiction_overrides/san_mateo/jurisdiction-site-notice" import { Message } from "@bloom-housing/ui-seeds" -import { - SiteHeader, - SiteFooter, - FooterNav, - FooterSection, - MenuLink, - t, - setSiteAlertMessage, -} from "@bloom-housing/ui-components" -import { AuthContext, ExygyFooter } from "@bloom-housing/shared-helpers" +import { SiteHeader, MenuLink, t, setSiteAlertMessage } from "@bloom-housing/ui-components" +import { AuthContext } from "@bloom-housing/shared-helpers" import styles from "./application.module.scss" const Layout = (props) => { @@ -82,11 +80,23 @@ const Layout = (props) => { const startWindow = convertWindowToDate(maintenanceWindow[0]) const endWindow = convertWindowToDate(maintenanceWindow[1]) const now = dayjs() - inMaintenance = now > startWindow && now < endWindow + inMaintenance = + now > startWindow && now < endWindow && process.env.jurisdictionName === "Alameda" } return inMaintenance } + let siteNotice =
+ if (process.env.jurisdictionName === "Alameda") { + siteNotice = + } + if (process.env.jurisdictionName === "San Jose") { + siteNotice = + } + if (process.env.jurisdictionName === "San Mateo") { + siteNotice = + } + return (
@@ -95,19 +105,15 @@ const Layout = (props) => { {getInMaintenance() && (
- - {t("alert.maintenance")} + + {t("alert.maintenance")}
)} - {t("nav.getFeedback")} - - } + notice={siteNotice} mainContentId="main-content" title={t("nav.siteTitle")} languages={languages.map((lang) => { @@ -127,15 +133,9 @@ const Layout = (props) => {
- - - {t("pageTitle.privacy")} - {t("pageTitle.disclaimer")} - - - - - + {process.env.jurisdictionName === "Alameda" && } + {process.env.jurisdictionName === "San Mateo" && } + {process.env.jurisdictionName === "San Jose" && }
) } diff --git a/sites/public/src/lib/applications/ApplicationConductor.ts b/sites/public/src/lib/applications/ApplicationConductor.ts index 1c4e99abb9..0478184e0b 100644 --- a/sites/public/src/lib/applications/ApplicationConductor.ts +++ b/sites/public/src/lib/applications/ApplicationConductor.ts @@ -208,6 +208,7 @@ export default class ApplicationConductor { if (typeof window !== "undefined") { window.sessionStorage.removeItem("bloom-app-autosave") window.sessionStorage.removeItem("bloom-app-listing") + window.sessionStorage.removeItem("bloom-app-doorway") } } diff --git a/sites/public/src/lib/customScripts.ts b/sites/public/src/lib/customScripts.ts index 3c1a000cae..4ebef7ca71 100644 --- a/sites/public/src/lib/customScripts.ts +++ b/sites/public/src/lib/customScripts.ts @@ -1,24 +1,35 @@ -export const headScript = () => { - const gtmKey = process.env.gtmKey - if (gtmKey) { - return ` - (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': - new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], - j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= - '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); - })(window,document,'script','dataLayer','${gtmKey}') - ` - } else { - return "" - } +export const gaLoadScript = () => { + const gaKey = process.env.gaKey + if (gaKey) { + const script = document.createElement("script") + script.async = true + script.src = `https://www.googletagmanager.com/gtag/js?id=${gaKey}` + return script + } else return null +} + +export const gaCaptureScript = () => { + const gaKey = process.env.gaKey + if (gaKey) { + const script = document.createElement("script") + script.innerHTML = ` + window.dataLayer = window.dataLayer || []; + function gtag(){dataLayer.push(arguments);} + gtag('js', new Date()); + gtag('config', '${gaKey}');` + return script + } else return null } -export const bodyTopTag = () => { +export const uaScript = () => { const gtmKey = process.env.gtmKey if (gtmKey) { - return ` - - ` + return `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= + '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); + })(window,document,'script','dataLayer','${gtmKey}') + ` } else { return "" } diff --git a/sites/public/src/lib/translations.ts b/sites/public/src/lib/translations.ts index 2c16434bd2..6f91bf3a76 100644 --- a/sites/public/src/lib/translations.ts +++ b/sites/public/src/lib/translations.ts @@ -4,7 +4,7 @@ import chineseTranslations from "@bloom-housing/shared-helpers/src/locales/zh.js import vietnameseTranslations from "@bloom-housing/shared-helpers/src/locales/vi.json" import tagalogTranslations from "@bloom-housing/shared-helpers/src/locales/tl.json" -import additionalGeneralTranslations from "../../page_content/locale_overrides/general.json" +import additionalGeneralTranslations from "../page_content/locale_overrides/general.json" export const translations = { general: generalTranslations, @@ -15,3 +15,23 @@ export const translations = { } as Record export const overrideTranslations = { en: additionalGeneralTranslations } as Record + +export const jurisdictionTranslations = async () => { + const [english, spanish, chinese, vietnamese, tagalog] = await Promise.allSettled( + ["general", "es", "zh", "vi", "tl"].map(async (locale) => { + return import( + `../page_content/jurisdiction_overrides/${process.env.jurisdictionName + .toLowerCase() + .replace(" ", "_")}/locale_overrides/${locale}.json` + ) + }) + ) + + return { + en: english.status === "fulfilled" ? english.value : null, + es: spanish.status === "fulfilled" ? spanish.value : null, + zh: chinese.status === "fulfilled" ? chinese.value : null, + vi: vietnamese.status === "fulfilled" ? vietnamese.value : null, + tl: tagalog.status === "fulfilled" ? tagalog.value : null, + } +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/additional-resources-section.tsx b/sites/public/src/page_content/jurisdiction_overrides/alameda/additional-resources-section.tsx new file mode 100644 index 0000000000..a360c28381 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/additional-resources-section.tsx @@ -0,0 +1,187 @@ +import React from "react" +import Markdown from "markdown-to-jsx" +import { t, InfoCardGrid, MarkdownSection, Heading } from "@bloom-housing/ui-components" +import Resource from "../../../Resource" +import RenderIf from "../../../RenderIf" + +// Import Markdown resource cards: +import sidebarContent from "./resources/sidebar.md" +import alaResourceFinder211 from "./resources/alaResourceFinder211.md" +import echoHousing from "./resources/echoHousing.md" +import hrc from "./resources/hrc.md" +import depositRentalAssistance from "./resources/depositRentalAssistance.md" +import hcdDepartment from "./resources/hcdDepartment.md" +import acBoost from "./resources/acBoost.md" +import acAntiDisplacement from "./resources/acAntiDisplacement.md" +import acEmergencyRental from "./resources/acEmergencyRental.md" +import acHomeownerServices from "./resources/acHomeownerServices.md" +import acHousingPreservation from "./resources/acHousingPreservation.md" +import haAlamedaCounty from "./resources/haAlamedaCounty.md" +import haBerkley from "./resources/haBerkley.md" +import haAlamedaCity from "./resources/haAlamedaCity.md" +import haLivermore from "./resources/haLivermore.md" +import haOakland from "./resources/haOakland.md" +import oaklandHeader from "./resources/oaklandHeader.md" +import baCommunityServiceOakland from "./resources/baCommunityServiceOakland.md" +import bossCoordinatedEntry from "./resources/bossCoordinatedEntry.md" +import eocpCoordinatedEntry from "./resources/eocpCoordinatedEntry.md" +import familyFrontDoorOakland from "./resources/familyFrontDoorOakland.md" +import keepOaklandHoused from "./resources/keepOaklandHoused.md" +import transitionalAgedYouth from "./resources/transitionalAgedYouth.md" +import northCountyHeader from "./resources/northCountyHeader.md" +import baCommunityServiceNorth from "./resources/baCommunityServiceNorth.md" +import familyFrontDoorNorth from "./resources/familyFrontDoorNorth.md" +import womensDropInCenter from "./resources/womensDropInCenter.md" +import midCountyHeader from "./resources/midCountyHeader.md" +import buildingFuturesSanLeandro from "./resources/buildingFuturesSanLeandro.md" +import buildingFuturesAlameda from "./resources/buildingFuturesAlameda.md" +import baCommunityServiceHayward from "./resources/baCommunityServiceHayward.md" +import eastCountyHeader from "./resources/eastCountyHeader.md" +import adobeServicesEast from "./resources/adobeServicesEast.md" +import adobeServicesSouth from "./resources/adobeServicesSouth.md" +import fremontFamily from "./resources/fremontFamily.md" +import southCountyHeader from "./resources/southCountyHeader.md" + +export const AdditionalResourcesSection = () => { + return ( +
+
+
+ + + {alaResourceFinder211} + {echoHousing} + {hrc} + {depositRentalAssistance} + + + {hcdDepartment} + {acBoost} + {acAntiDisplacement} + {acEmergencyRental} + {acHomeownerServices} + {acHousingPreservation} + + + {haAlamedaCounty} + {haBerkley} + {haAlamedaCity} + {haLivermore} + {haOakland} + +
+
+ + {t("additionalResources.cityRegionServices.title")} + +

+ + {t("additionalResources.cityRegionServices.description")} + +

+
+
+ + {oaklandHeader} + +
+ {baCommunityServiceOakland} + {bossCoordinatedEntry} + {eocpCoordinatedEntry} + {familyFrontDoorOakland} + {keepOaklandHoused} + {transitionalAgedYouth} +
+ + {northCountyHeader} + +
+ {baCommunityServiceNorth} + {familyFrontDoorNorth} + {womensDropInCenter} +
+ + {midCountyHeader} + +
+ {buildingFuturesSanLeandro} + {buildingFuturesAlameda} + {baCommunityServiceHayward} +
+ + {eastCountyHeader} + +
+ {adobeServicesEast} +
+ + {southCountyHeader} + +
+ {adobeServicesSouth} + {fremontFamily} +
+
+
+ +
+
+ ) +} + +export default AdditionalResourcesSection diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/disclaimer.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/disclaimer.md new file mode 100644 index 0000000000..e06f933afc --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/disclaimer.md @@ -0,0 +1,11 @@ +## External Link Policies + +The County of San Mateo uses link and search capabilities to point to public information posted on the Internet. The County of San Mateo does not endorse or provide preferential treatment to any third party websites or associated organizations or persons. Additionally, the County of San Mateo does not control third party sites and therefore it does not warrant that third party sites are accurate or, reliable, or that they have operational links. The privacy policies here do not necessarily apply to external websites. You may either contact the external websites or read their Privacy Policies or Statements to find out what their data collection and distribution polices are. + +--- + +## Ownership + +In general, information presented on this web site is considered in the public domain. It may be distributed or copied as permitted by law. However, the County of San Mateo does make some use of copyrighted data such as photographs which may require additional permissions prior to your use. In order to use any information on this web site not owned or created by the County of San Mateo, you must seek permission directly from the owning (or holding) sources. If you are unsure of whether information is in the public domain or privately owned, please contact [websupport@smcgov.org](mailto:websupport@smcgov.org). The County of San Mateo shall have the right to use for any purpose, at no charge, all information submitted on the San Mateo County site. This right may only be limited if a submission is made under separate legal contract. The County of San Mateo shall be free to use, for any purpose, any ideas, concepts, or techniques contained in information provided through this site. + +--- diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/get_assistance.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/get_assistance.md new file mode 100644 index 0000000000..da67a66e30 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/get_assistance.md @@ -0,0 +1,104 @@ + + + +## How to apply to affordable housing + +You can find and apply for affordable rental opportunities. + +[Read about how it works](/how-it-works) + +--- + + + +## Additional housing opportunities and resources + +We encourage you to browse other affordable housing resources. + +[View opportunities and resources](/additional-resources) + + + + + + +## Cómo solicitar una vivienda asequible + +Puede encontrar y solicitar oportunidades de alquiler asequibles. + +[Lea acerca de cómo funciona](/es/how-it-works) + +--- + + + +## Oportunidades adicionales de vivienda + +Le invitamos a consultar otros recursos de vivienda de precio accesible. + +[Ver oportunidades y recursos](/es/additional-resources) + + + + + + +## 如何申請經濟適用房 + +您可以找到併申請負擔得起的租賃機會。 + +[了解它是如何工作的](/zh/how-it-works) + +--- + + + +## 其他住房機會 + +我們建議您瀏覽其他可負擔房屋資源。 + +[查看機會及資源](/zh/additional-resources) + + + + + + +## Làm thế nào để đăng ký nhà ở giá cả phải chăng + +Bạn có thể tìm và đăng ký các cơ hội cho thuê với giá cả phải chăng. + +[Đọc về cách nó hoạt động](/vi/how-it-works) + +--- + + + +## Các Cơ hội Nhà ở Bổ sung + +Chúng tôi khuyến khích quý vị xem các nguồn thông tin trợ giúp về nhà ở giá phải chăng khác. + +[Xem các cơ hội và nguồn lực](/vi/additional-resources) + + + + + + +## Paano mag-apply sa abot-kayang pabahay + +Maaari kang maghanap at mag-aplay para sa abot-kayang pagkakataon sa pag-upa. + +[Basahin ang tungkol sa kung paano ito gumagana](/tl/how-it-works) + +--- + + + +## Karagdagang Mga Oportunidad at Mapagkukunan ng Pabahay + +Hinihikayat ka naming mag-browse ng iba pang mapagkukunan ng abot-kayang pabahay + +[Tingnan ang mga pagkakataon at mapagkukunan](/tl/additional-resources) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/homepage_how_it_works.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/homepage_how_it_works.md new file mode 100644 index 0000000000..00a07dc240 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/homepage_how_it_works.md @@ -0,0 +1,119 @@ + + +1. #### Find Apartments Accepting Applications (Listings) + + Find high-quality, affordable housing opportunities located throughout the Bay Area. + +2. #### Check Eligibility + + Determine if your household meets the requirements for the property. + +3. #### Apply Online + + You will be asked to complete a short application for a unit at that property. + +4. #### Get the Results + + Once ranking order is ready, results will be posted for you to download. + +5. #### Get Prepared for Placement + + You may be contacted by the property manager notifying you that you are moving forward. + + + + + +1. #### Encontrar Apartamentos que Acepten Solicitudes (Anuncios) + + Podrá encontrar viviendas de alta calidad y a precios accesibles ubicadas en todo el Condado de Alameda. + +2. #### Comprobar la elegibilidad + + Compruebe si la vivienda cumple con los requisitos para la propiedad. + +3. #### Realizar una solicitud en línea + + Deberá completar un breve formulario para solicitar una unidad en esa propiedad. + +4. #### Obtener resultados + + Una vez que la orden de clasificación esté lista, los resultados serán publicados para que pueda descargarlo. + +5. #### Prepárese para la asignación de una vivienda + + El gerente de la propiedad puede contactarlo para notificarle que está avanzando en el proceso. + + + + + +1. #### 尋找公寓受理申請(刊登資訊) + + 尋找阿拉米達郡全區中可負擔的優質住房機會。 + +2. #### 檢查資格 + + 判斷您的家戶是否符合房地產要求。 + +3. #### 線上申請 + + 您必須填寫該資產單位的簡短申請文件。 + +4. #### 取得結果 + + 排名順序準備就緒後,我們即會發佈結果且可供您下載。 + +5. #### 準備好進行安置 + + 房地產經理會聯絡並通知您進行後續程序。 + + + + + +1. #### Tìm các căn hộ đang nhận đơn đăng ký (Danh sách) + + Tìm cơ hội nhà ở chất lượng cao, giá cả phải chăng tại Quận Alameda. + +2. #### Kiểm tra tính đủ điều kiện + + Xác định xem hộ gia đình quý vị có đáp ứng các yêu cầu của khu nhà hay không. + +3. #### Đăng ký trực tuyến + + Quý vị sẽ được yêu cầu hoàn thành đơn đăng ký ngắn cho một căn hộ tại khu nhà. + +4. #### Nhận kết quả + + Sau khi có thứ tự xếp hạng, kết quả sẽ được đăng để quý vị tải xuống. + +5. #### Chuẩn bị sắp xếp + + Quý vị có thể được người quản lý khu nhà liên hệ để thông báo rằng quý vị có thể tiếp tục tham gia quy trình. + + + + + +1. #### Maghanap ng mga Apartment na Tumatanggap ng Application (Mga Lista) + + Maghanap ng mataas ang kalidad, abot-kayang oportunidad ng pabahay na matatagpuan sa buong Alameda County. + +2. #### Tingnan Kung Kwalipikado + + Alamin kung ang sambahayan mo ay nakatutugon sa mga kinakailangan para sa property. + +3. #### Mag-apply Online + + Hihilingin sa iyo na kumpletuhin ang maikling application para sa unit sa property na iyon. + +4. #### Tanggapin ang Resulta + + Kapag handa na ang ranking order, ang resulta ay ipo-post para ma-download mo. + +5. #### Maging Handa Para sa Placement + + Maaari kang kontakin ng property manager para abisuhan ka na magpapatuloy ka sa proseso. + + \ No newline at end of file diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/how_it_works.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/how_it_works.md new file mode 100644 index 0000000000..a290efe2e0 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/how_it_works.md @@ -0,0 +1,742 @@ + + +1. ## Find Apartments Accepting Applications (Listings) + +

Find high-quality, affordable rental housing opportunities located throughout Alameda County on the listing page of this Housing Portal.

+ + The simplest way to find opportunities that are accepting applications is to visit the affordable housing portal within the area you wish to live. + + + + Another way to find Affordable Housing is to search the list of [Additional Housing Opportunities and Resources](/additional-resources) available on the affordable housing portal. +
+ These housing opportunities and resources provide the names, locations, and contact information for affordable housing programs and properties. You may also check our sister site [AC Housing Choices](https://achousingchoices.org/) for a list of additional affordable apartment properties. However, property managers of apartments on those lists may not be able to accept applications because they already have a lot of applications that must be processed before they are able to accept new applications. Start by identifying properties that meet your needs and then contact the associated properties to find out if those properties are accepting applications. For access to other programs, including housing authority Section 8 housing assistance, please reach out to the listed contacts on the [Additional Housing Opportunities and Resources](/additional-resources) page. + +
+ +2. ## Check Eligibility + +

Determine if your household meets the requirements for the property.

+ + Affordable housing is reserved for people with limited income and/or other special circumstances. Applicants will need to assess their ability to meet the population and income requirements at the property for which they choose to apply. + + + + ### Population Requirements + + Most affordable housing properties are available to people with limited income. However, a small percentage is designated for specific populations as well. Examples include: + + * Seniors: These may include apartments designated as “senior” housing for individuals over a particular age. + * People with developmental disabilities: All of the units in a property, or a percentage of units within a property, may be designated for people with disabilities. + * Transition Age Youth (TAY): Transition Age Youth are individuals between the ages of 16 and 24 years old who are in transition from state custody or foster care environments and are at-risk. + * Special needs: Special needs covers various populations, including, but not limited to, households experiencing homelessness, or that are at risk of homelessness, as well as individuals with developmental disabilities. Homes in these particular communities typically include services or features that support the Special Needs population. + + Be sure to read about the population requirements by going to the property’s listing on the affordable housing portal before contacting the property manager. + + ### Income Requirements + + Your total household income cannot exceed the maximum household income limits for the property, based on the following definitions: + + * Household: A “household” may be just one person, or two or more persons. All household members that will be living in the home must be included in the application. + * Household income: The combined annual income from all persons over 18 years old who are part of the household. + * Maximum household income: You will be asked to provide the “gross” Maximum Income (also known as Gross Household Income). This refers to the total income before taxes or other deductions. + * Minimum household income: The minimum monthly income required to be eligible for the property, typically equal to 1.5 or 2 times monthly rent. + + There are three ways to determine if your household meets the minimum and maximum income requirements. + + #### 1\. View the Income Requirements for Properties listed on the Alameda County Housing Portal + + Properties that are listed on the Alameda County Housing Portal will show the minimum and maximum household income requirements for applicants. Click on the link for the specific property listing in which you are interested. Scroll down to the tables which list the minimum and maximum income required for each apartment. + + #### 2\. Contact the property manager + + If the property you are interested in is not listed on the Alameda County Housing Portal, it is most likely not accepting applications at the present time. However, you may contact the property manager listed for that property to find out the eligibility requirements. + + #### 3\. Check the income tables published by the housing agency in your area + + You may also check the income tables published on the housing agency website in the area in which your desired affordable housing is located. These tables are produced by the U.S Department of Housing and Urban Development (HUD) and are updated annually. [Tables for Alameda County are provided here.](https://www.acgov.org/cda/hcd/hud-income-rent_limits.htm) A household would typically be considered eligible for most affordable housing if the household income is 60% of Area Median Income (AMI) or below. However, some properties have rents that are restricted to “moderate” income households with incomes up to 120% of AMI. If you have questions regarding these tables, please contact the agency in the area for which you are looking for affordable housing. + + #### Preferences + + Some cities have adopted “preferences” that provide applicants who meet the preference criteria with a greater chance of being selected. A common example is a preference for applicants who live or work in the area in which the affordable housing site is located. Be sure to provide all the information requested on the application as it may allow you to qualify for any available preferences. + + If you need help applying, go to the [Resources](/additional-resources) page. + + + +3. ## Apply Online + +

You will be asked to complete a short application for a unit at that property.

+ + Be sure to complete your application by the date specified on the property. Properties listed on the web portal require a minimum amount of information to be submitted on a “short-form” digital or paper application. + + + + After you submit your application, you may be contacted by the property manager. If contacted, you will be asked to provide documentation on your income and finances. If you are not immediately selected for a placement interview, this doesn’t mean that you were not eligible to live at the property. A property manager may keep your application for several years before contacting you. Stay in touch with the property manager by periodically checking in regarding the status of your application. +
+ Due to the high demand for affordable housing, it can take a while before you get contacted for potential placement at a specific apartment. Therefore, it is important that you apply for housing at multiple properties that meet your housing needs and keep track of the properties that you have applied to. It is also important to complete Step 5 (Get Prepared for Placement ) even if you are not contacted right away by the property manager for placement in an apartment. Getting your finances in order, including reviewing your household budget, taking care of your credit, and gathering the required documents, will prepare you for when you are contacted by a property manager. + +
+ +4. ## Get the results + +

You will be contacted by the property manager with further instructions.

+ + The time between submitting your application and being contacted by the property manager depends on the number of vacancies in the property. It may vary from a couple of weeks to months and in some cases can take up to several years. Some people will not be selected for the next step in the process because they do not qualify to live in the apartment due to their income or other reasons. + + + + There are two methods that property managers use to determine the order in which applicants are selected to move forward in the application process. One method is to organize the applications by the date and time that the application was received (“first come, first serve”). The second method is to randomize the applications on a computer to generate an order for all applications. Randomization of the applications only takes place after the application due date. +
+ If you receive a letter or email from the property manager notifying you that you are moving forward in the application process, you are one step closer to being selected for an apartment. You should keep a record of any documentation that you receive from property managers. + +
+ +5. ## Get Prepared for Placement + +

If you are notified that you are moving forward in the application process, there will be two next steps: 1) submitting identification documents and financial information to the property manager; and 2) meeting with the property manager.

+ + + + ### 1\. Submitting identification documents and financial information + + The property manager will ask for documents to verify the information provided in your application. Gathering this information before you are contacted by the property manager will help you prepare for selection as a tenant in an apartment. + + The documents that a property manager may require are summarized below into two different categories: A) identification documents and B) financial information. The set of documents requested may vary, depending upon the property’s requirements for placement. + + #### A\. Identification Documents + + The documents listed below are not necessarily required, but they may help the property manager review your application. + + * Photo identification for everyone in your household who is 18 or older + * Birth Certificate, or Social Security Card, or passport for everyone under 18. + + #### B\. Financial Information + + * Income: You will be asked to provide all sources of income for each member of your household over 18 years of age. Examples include: + * Welfare, Veteran benefits, social security letter + * Rental assistance voucher + * Recent paystubs from your current employer + * Self-Employment proof + * Alimony + * Current pension or retirement income + + + * Expenses: + * Checking account statements + * Savings account statements + * Most recent credit card statement + * Alimony payments + + + * Other Financial Information: + * The last official statement of 401k or IRA + * Assets – i.e., vehicles, stocks or real estate + + The property manager will review your credit as part of reviewing your financial information. There are many resources available online to help you understand and improve your credit score. One article is [How to Improve Your Credit Score: Tips & Tricks (debt.org)](https://www.debt.org/credit/improving-your-score/). + + As stated, **you do _not_ need to possess these documents to submit your initial application** via the Alameda County Housing Portal. However, gathering these documents will help you prepare you for the next step in the application process. If you do not possess these documents, you can get assistance from a housing counselor, who can help you obtain them. Contact the housing agency in your area to find out how to obtain housing counseling. + + ### 2\. Meeting with the Property Manager + + The placement interview is the last step in the application process. Depending on the property, the property manager may request a meeting with you before or after you have gathered the requested documents. The property manager may request that all of your household members attend the meeting. The property manager will review your documents with you and determine whether or not you are qualified to live in the apartment. + + + +
+ + + +1. ## Encontrar Apartamentos a través de la Aceptación de Solicitudes (Anuncios) + +

Podrá encontrar alquileres de viviendas de alta calidad y económicos en todo el Condado de Alameda en la página del anuncio en este Portal de Viviendas.

+ + La manera más simple de encontrar propietarios que estén aceptando solicitudes es visitar el portal de viviendas económicas dentro del área que usted desea vivir. + + + + Otra forma de encontrar viviendas económicas es a través de la lista de [Oportunidades y Recursos Adicionales de Vivienda](/additional-resources) que está disponible en el portal de viviendas económicas. +
+ Estas oportunidades y recursos de vivienda brindan información de los nombres, ubicaciones y datos de contacto para programas y propiedades de vivienda económicas. En nuestro sitio afiliado [AC Housing Choices](https://achousingchoices.org/) podrá encontrar listas con más propiedades y departamentos económicos. No obstante, es posible que los administradores de los apartamentos que figuran en esas listas no puedan aceptar solicitudes porque ya recibieron muchas solicitudes que deben ser procesadas antes de que puedan aceptar nuevas solicitudes. Primero, deberá identificar las propiedades que satisfagan sus necesidades y luego deberá contactarse con los administradores de esas propiedades para saber si están aceptando nuevas solicitudes. Si desea acceder a otros programas, incluyendo la ayuda de vivienda de la Sección 8 de la Autoridad de Vivienda, por favor, comuníquese con los contactos publicados en la página de [Oportunidades y Recursos Adicionales de Vivienda](/additional-resources). + +
+ +2. ## Comprobar la elegibilidad + +

Compruebe si la vivienda cumple con los requisitos para la propiedad.

+ + Solamente las personas con ingresos limitados y/o que están en circunstancias especiales podrán acceder a una vivienda económica. Las personas que solicitan viviendas económicas deberán que evaluar si cumplen con los requisitos de población e ingresos que la propiedad establece. + + + + ### Necesidades de población + + La mayoría de las viviendas económicas están disponibles para personas con ingresos limitados. No obstante, también se indica un pequeño porcentaje para poblaciones específicas. Entre los ejemplos se incluyen: + + * Personas Mayores: Las personas mayores pueden solicitar el acceso a viviendas “senior” que están designadas para personas que superan una edad determinada. + * Personas con discapacidades de desarrollo: Todas las unidades en una propiedad, o un porcentaje de unidades dentro de una propiedad, pueden ser designadas para personas con discapacidades. + * Jóvenes en Edad de Transición (TAY por sus siglas en inglés): Se considera a Jóvenes en Edad de Transición a personas que tienen entre 16 y 24 años que están en transición de la custodia estatal o que estén bajo adopción y estén en riesgo. + * Personas con Necesidades especiales: Se considera a personas con necesidades especiales a varias poblaciones. En estos grupos de poblaciones se incluye, pero no limita a, familias que no tienen un hogar o que están en riesgo de perder su hogar, así como personas con discapacidades del desarrollo. Hay muchas viviendas dentro de estas comunidades que, por lo general, incluyen servicios o tienen características que apoyan a personas con Necesidades Especiales. + + Es importante leer primero los requisitos de población del anuncio de la propiedad en el portal de viviendas económicas antes de comunicarse con el gerente de la propiedad. + + ### Requisitos de ingresos + + Los ingresos totales de su hogar no pueden exceder los límites máximos de ingresos del hogar que establece la propiedad. Este índice está basado en las siguientes definiciones: + + * Vivienda: Una “vivienda” puede estar habitada por una, dos o más personas. Todos los miembros que habitarán la vivienda deben ser incluidos en la solicitud. + * Ingresos del hogar: Este índice está basado en el ingreso anual en conjunto con todas las personas mayores de 18 años que habitan la vivienda. + * Ingreso máximo del hogar: En la solicitud, se deberá establecer el ingreso máximo “bruto” (también conocido como Ingreso Bruto de la Familia). El ingreso bruto es el ingreso total sin contemplar a los impuestos u otras deducciones. + * Ingreso mínimo del hogar: El ingreso mensual mínimo para ser elegible para la propiedad por lo general es igual a 1.5 o 2 veces el alquiler mensual. + + Hay tres maneras de saber si cumple con los requisitos de ingresos mínimos y máximos que la vivienda requiere. + + #### 1\. Infórmese sobre los Requisitos mínimos y máximos de Ingresos que establecen las Propiedades y que figuran en el Portal de Viviendas del Condado de Alameda + + Las propiedades que están publicadas en el Portal de Viviendas del Condado de Alameda tienen en su descripción que ingresos mínimos y máximos debe tener un solicitante. Haga clic en el enlace de la propiedad que le interesa. En la parte inferior de la página, podrá encontrar las tablas donde se enumeran los ingresos mínimos y máximos requeridos para cada apartamento. + + #### 2\. Comuníquese con el administrador de la propiedad + + Si la propiedad en la que está interesado no figura en el Portal de Viviendas del Condado de Alameda, probablemente se deba a que el propietario no esté aceptando solicitudes actualmente. De todos modos, puede ponerse en contacto con el administrador de la propiedad para averiguar los requisitos de elegibilidad. + + #### 3\. Consulte las tablas de ingresos publicadas por la agencia de vivienda en su área + + Para más información, puede consultar las tablas de ingresos. Estas tablas de ingresos están publicadas en el sitio web de la agencia de vivienda en el área en la que se encuentra la vivienda económica que está buscando. Estas tablas fueron elaboradas por el Departamento de Vivienda y Desarrollo Urbano de los Estados Unidos (HUD por sus siglas en inglés) y son actualizadas anualmente. [Las tablas del Condado de Alameda aparecen aquí.](https://www.acgov.org/cda/hcd/hud-income-rent_limits.htm) Por lo general, una familia o un hogar se consideraría elegible para acceder a una vivienda económica si el ingreso del hogar es del 60% de la Media de Ingresos de la Zona (AMI por sus siglas en inglés) o menos. No obstante, algunas propiedades tienen rentas que se limitan a familias u hogares que tienen ingresos “moderados” de hasta el 120% de la Media de Ingresos de la Zona. Si desea recibir más información sobre estas tablas, por favor comuníquese con la agencia del área donde usted está buscando la vivienda económica. + + #### Preferencias + + Algunas ciudades han adoptado ciertas "preferencias" para que los solicitantes que cumplen con determinados criterios tengan más probabilidades de ser seleccionados. Por ejemplo, los solicitantes que viven o trabajan en el área en la que se encuentra la vivienda económica, tienen una mayor “preferencia”. Es importante que los solicitantes brinden la mayor información posible al momento de completar la solicitud, ya que esto les permite calificar para cualquier preferencia disponible. + + En caso de necesitar ayuda para realizar una solicitud, diríjase a la página de [Recursos](/additional-resources). + + + +3. ## Realizar una solicitud en línea + +

Deberá completar un breve formulario para solicitar una unidad en esa propiedad.

+ + Deberá completar su solicitud antes de la fecha especificada en la propiedad. Las propiedades que aparecen en el portal web requieren que complete una cantidad mínima de información en un “formulario corto” a través de una solicitud digital o en papel. + + + + Luego de presentar la solicitud, es posible que el administrador de la propiedad se comunique con usted. En caso de ser contactado por el administrador de la propiedad, se le pedirá que brinde documentación sobre sus ingresos y sus finanzas. +
+ En caso de no ser seleccionado inmediatamente para una entrevista, no significa que no es elegible para habitar en la propiedad. Un administrador de propiedad puede mantener su solicitud por varios años antes de comunicarse con usted. Puede mantenerse en contacto con el administrador de la propiedad comprobando de manera periódica el estado de su solicitud. +
+ Debido a la alta demanda de viviendas económicas, es posible tarde un poco de tiempo antes que algún administrador de propiedad se ponga en contacto con usted. Por eso, es importante que usted realice varias solicitudes de propiedades que satisfagan sus necesidades. Además, le recomendamos que realice un seguimiento de las propiedades a las que ha aplicado. Es importante que complete el Paso 5 (Preparación para la asignación de vivienda) incluso si el administrador de la propiedad no se comunica con usted inmediatamente. Si el solicitante revisa su presupuesto familiar, cuida de su crédito, y reúne los documentos que se solicitan, tendrá todo listo para cuando un administrador de una propiedad lo contacte. + +
+ +4. ## Resultados + +

El administrador de la propiedad se comunicará con usted y le enviará instrucciones adicionales.

+ + El tiempo entre presentar su solicitud y ser contactado por el administrador de la propiedad dependerá del número de vacantes que tiene la propiedad. El tiempo que transcurre puede variar desde un par de semanas hasta meses. En algunos casos puede tomar hasta varios años. Es posible que algunos solicitantes no queden seleccionados para el siguiente paso debido a que no reúnen las características necesarias para vivir en el apartamento debido a sus ingresos u otras razones. + + + + Existen dos métodos que utilizan los administradores de propiedades para determinar el orden en que se seleccionan los solicitantes para avanzar en el proceso. El primer método consiste en organizar las solicitudes por la fecha y hora (“por orden de llegada”). El segundo método consiste en distribuir las solicitudes de manera aleatoria en una computadora y así generar una orden para todas las solicitudes. La asignación aleatoria de las solicitudes solo se realizará después de la fecha de vencimiento de la solicitud. +
+ En caso de recibir una carta o un correo electrónico por parte del administrador de la propiedad notificándole que está avanzando en el proceso de solicitud, significa que está cada vez más cerca de ser seleccionado para un apartamento. Es muy importante que el solicitante mantenga un registro de cualquier documentación que reciba por parte de los administradores de propiedades. + +
+ +5. ## Prepárese para el Siguiente Paso + +

Si se le notifica que está avanzando en el proceso de solicitud, deberá realizar los siguientes pasos: 1) Deberá presentar documentos de identificación e información financiera al administrador de la propiedad; y, además 2) deberá reunirse con el administrador de la propiedad.

+ + + + ### 1\. Presentación de documentos de identificación e información financiera + + El administrador de la propiedad le solicitará documentos para corroborar la información que usted brindó en su solicitud. Es muy importante que el solicitante tenga la documentación preparada antes de que el administrador se comunique ya que le ayudará a prepararse para ser seleccionado como inquilino en un apartamento. + + Los documentos que un administrador puede solicitarle se resumen a continuación en dos categorías diferentes: A) documentos de identificación y B) información financiera. Los documentos pueden variar y va a depender de los requisitos de la propiedad. + + #### A\. Documentos de Identificación + + Los documentos que se mencionan a continuación no siempre se solicitan, pero pueden ayudar al administrador de la propiedad a revisar su solicitud. + + * Identificación fotográfica de todas las personas físicas que viven en su hogar que tengan 18 años o más + * Acta de Nacimiento, o Tarjeta de Seguro Social, o Pasaporte en caso de haber menores de 18 años. + + #### B\. Información financiera + + * Ingresos: Deberá brindar información relacionada a todas las fuentes de ingresos de cada miembro de su hogar mayor de 18 años de edad. Entre los ejemplos se incluyen: + * Servicios de Asistencia Pública, Beneficios para Veteranos, Seguridad social + * Bonos de Asistencia de Alquiler + * Recibos de Sueldo Recientes de su Empleador Actual + * Comprobantes de Trabajo por Cuenta Propia + * Pensión Alimentaria + * Ingresos actuales de pensiones o jubilaciones + + + * Gastos: + * Estados de cuenta corriente + * Estados de caja de ahorros + * Estado de cuenta de la tarjeta de crédito más reciente + * Pagos de Pensión Alimentaria + + + * Información financiera adicional: + * Última declaración oficial de 401k o Cuentas de Retiro Individual (IRA por sus siglas en inglés) + * Activos como por ejemplo: vehículos, acciones o bienes raíces + + El administrador de la propiedad revisará su crédito como parte su información financiera. Puede acceder a recursos disponibles en línea que le ayudarán a entender y mejorar el puntaje de su crédito. Un artículo que le ayudará es [“¿Cómo puedo mejorar mi puntuación de crédito?”: Consejos y Recomendaciones (debt.org)](https://www.debt.org/credit/improving-your-score/). + + Tal como indicó previamente, **no es necesario poseer estos documentos para poder presentar una solicitud inicial** a través del Portal de Viviendas del Condado de Alameda. De todos modos, recopilar estos documentos le ayudará a estar listo para el siguiente paso. Si usted no posee estos documentos, puede pedirle ayuda de un asesor de vivienda. Póngase en contacto con la agencia de vivienda de su área para obtener asesoría de vivienda. + + ### 2\. Reunión con el administrador de la propiedad + + El último paso en el proceso de solicitud será la entrevista con el administrador. Dependiendo de la propiedad, el administrador podrá solicitar una reunión con usted antes o después de haber reunido los documentos que le haya solicitado. El administrador de la propiedad puede solicitar la asistencia a la reunión de todos los miembros de su hogar. El administrador revisará sus documentos y decidirá si usted está calificado o no para vivir en el apartamento. + + + +
+ + + +1. ## 尋找公寓受理申請(刊登資訊) + +

在此住房入口網站的刊登資訊頁面上,尋找阿拉米達郡全區中可負擔的優質租屋機會。

+ + 若要尋找最易於受理申請的機會,可瀏覽欲居住地區的可負擔住房入口網站。 + + + + 另外一個尋找可負擔住房的方式即為:在可負擔住房入口網站中,搜尋其他可用住房機會和資源的刊登資訊。[Additional Housing Opportunities and Resources](/additional-resources) +
+ 這些住房機會和資源會提供可負擔住房計畫和房地產的名稱、位置及聯絡資訊。您也可以查看我們的姊妹網站:[AC 住房選擇 (AC Housing Choices)](https://achousingchoices.org/),以便取得其他可負擔公寓房地產的刊登資訊。但是,那些刊登資訊上的公寓房地產經理可能無法受理申請,因為目前已有大量必須受理的申請,以至於暫時無法接受新申請。請先確認符合您需求的房地產,然後聯絡相關房地產以深入了解是否受理申請。如需存取住房委員會第八類住房補助等其他計畫,請在「[其他住房機會和資源](/additional-resources)」頁面上聯絡列表聯絡人。 + +
+ +2. ## 檢查資格 + +

判斷您的家戶是否符合房地產要求。

+ + 可負擔住房會保留給具備有限收入和/或其他特殊狀況的人士。申請人必須針對欲申請房地產評估其滿足群體和收入要求的能力。 + + + + ### 群體要求 + + 大多數可負擔住房房地產皆可供具備有限收入的人士申請。但是,一小部分同樣適用於特定群體。範例包括: + + * 長者: 這些可能包括提供給年滿特定年齡人士的「長者」專用住房。 + * 發展障礙人士: 房地產中所有或部分單位可能會提供給障礙人士申請。 + * 過渡年齡青少年 (TAY): 過渡年齡青少前為 16 至 24 歲之間,目前自國家監護或寄養環境過渡並處於風險的人士。 + * 特殊需求: 特殊需求涵蓋各種群體,包括但不限於遭遇無家可歸或具有風險的家戶,以及發展障礙人士。這些特定社區的家庭通常包括支援特殊需求群體的服務或功能。 + + 請務必先行前往可負擔住房入口網站上的房地產刊登資訊並閱讀群體要求,然後聯絡房地產經理。 + + ### 收入要求 + + 您的家戶總收入不得超過該房地產提出的最高家戶收入,基礎定義如下: + + * 家戶: 「家戶」可能只有一個成員,或是兩個以上的成員。申請中必須包含所有將會居住在一起的家戶成員。 + * 家戶收入: 所有年滿 18 歲家戶成員的綜合年度收入。 + * 最高家戶收入: 您必須提供最高「總」收入(也稱為家戶總收入)。這指的是稅前或其他扣除額前的總收入。 + * 最低家戶收入: 一般來說,房地產必要的最低每月收入資格等於每月租金的 1.5 或 2 倍。 + + 共有三種方式可判斷您的家戶是否符合最低和最高收入要求。 + + #### 1\. 檢視阿拉米達郡住房入口網站上的房地產收入要求 + + 刊登於阿拉米達郡住房入口網站上的房地產會向申請人顯示最低和最高家戶收入要求。按一下您有興趣了解的特定房地產刊登資訊連結。向下捲動至列明每個公寓要求之最低和最高收入的表格。 + + #### 2\. 聯絡房地產經理 + + 如果阿拉米達郡住房入口網站未刊登您有興趣了解的房地產,極有可能是目前不受理申請。但是,您可以聯絡該房地產刊登資訊的房地產經理,以便深入了解資格要求。 + + #### 3\. 查看您所在地區住房仲介業者發佈的收入表 + + 您也可以針對想要的可負擔住房所在地區,查看住房仲介業者發佈的收入表。這些表格由美國住房及城市發展部 (U.S Department of Housing and Urban Development, HUD) 製作並每年更新內容。[這裡也提供阿拉米達郡的表格](https://www.acgov.org/cda/hcd/hud-income-rent_limits.htm)。如果家戶收入落在地區收入中位數 (AMI) 的 60% 以下,則該家戶通常可視為符合大多數可負擔住房的資格。 但是,部分房地產的租金對象則受限於「中等」收入家戶,且收入高達 AMI 的 120%。如果您對這些表格有疑問,請聯絡尋找可負擔住房所在地區的仲介業者。 + + #### 優先順序 + + 有些城市目前採用的「優先順序」,可為符合優先順序標準的申請人大幅提升獲選機會。常見範例為適用於居住或任職於可負擔住房所在地區之申請人的優先順序。請務必提供該申請要求的所有資訊,因為這會讓您取得任何可用優先順序的資格。 + + 如果您申請時需要協助,請前往「[資源](/additional-resources)」頁面。 + + + +3. ## 線上申請 + +

您必須填寫該資產單位的簡短申請文件。

+ + 請務必在房地產指定日期前填寫您的申請。如果是網頁入口網站所刊登的房地產,則有以「簡易格式」的數位或紙本申請提交最少量資訊的要求。 + + + + 提交申請後,房地產經理可能會與您聯絡。如果收到聯絡,您就必須提供收入和財務的證明文件。 +
+ 如果您未立即獲選進入安置面談程序,這不表示您不符合該房地產的居住資格。房地產經理可能會將您的申請留存多年才與您聯絡。定期查看與您申請相關的狀態,藉此與房地產經理保持聯絡。 +
+ 由於可負擔住房的高度需求,因此在您收到聯絡並進行特定公寓可能的安置程序前需要一段時間。因此,請務必針對多個符合住房需求的房地產提出住房申請,並追蹤您已申請的房地產。另請務必完成步驟 5(準備好進行安置),即使房地產經理不會立即針對公寓安置與您聯絡。排序您的財務狀況,包括檢閱您的家戶預算、關心您的信用並收集必要文件,上述步驟可讓您在收到房地產經理的聯絡時準備就緒。 + +
+ +4. ## 取得結果 + +

房地產經理將與您聯絡並進一步向您說明。

+ + 從提交申請至收到房地產經理聯絡的時間,取決於該房地產的空房件數。這可能是幾週到幾月,有些情況下還會長達數年。有些人不會獲選進入流程後續步驟,因為他們基於其收入或其他原因不符合該公寓的居住資格。 + + + + 房地產經理會使用兩種方式來判斷申請人獲選的順序,以便進入下一個申請流程。一種方式為依收到申請日期和時間整理申請文件的順序(「先到先得」)。第二種方式為透過電腦隨機為申請文件排出申請順序。過了申請期限後,才會隨機排序申請文件。 +
+ 如果您收到房地產經理的信函或電子郵件,通知您進入下一個申請流程,您距離獲選公寓資格就更近了。房地產經理如有向您傳送任何證明文件,請務必留存記錄。 + +
+ +5. ## 準備好進行安置 + +

如果您收到了進入下一個申請流程的通知,以下是兩個後續步驟:1) 向房地產經理提交身分識別文件和財務資訊;並 2) 與房地產經理會面。

+ + + + ### 1\. 提交身分識別文件和財務資訊 + + 房地產經理會要求您提供文件,以便驗證您在申請中提交的資訊。在您收到房地產經理的聯絡前收集此資訊,即有助於為公寓承租人遴選做好準備。 + + 下方已概述房地產經理可能要求的文件,並分成兩個不同的類別:A) 身分識別文件和 B) 財務資訊。所要求文件的組合可能視乎房地產安置要求而有所不同。 + + #### A\. 身分識別文件:下方刊登了不一定需要的文件,但這些可能有助於房地產經理審核您的申請。 + + 下方刊登了不一定需要的文件,但這些可能有助於房地產經理審核您的申請。 + + * 在您家戶中每位年滿 18 歲成員的照片識別 + * 每位未滿 18 歲成員的出生證明、社會安全卡或護照。 + + #### B\. 財務資訊 + + * 收入: 您必須提供每位年滿 18 歲以上成員的所有收入來源。範例包括: + * 社會福利、退伍軍人福利、社會安全局信函 + * 租金援助補助券 + * 您目前雇主提供的薪資明細表 + * 自雇證明 + * 贍養費 + * 目前退休金或退休收入 + + + * 開銷: + * 支票帳戶對帳單 + * 儲蓄帳戶對帳單 + * 最近期信用卡月結單 + * 贍養費付款 + + + * 其他財務資訊: + * 最新的 401k 或 IRA 官方聲明 + * 資產,例如汽車、股票或不動產 + + 房地產經理審核您的財務資訊時也會審核您的信用。如需了解並提升您的信用分數,網路上有很多資源可供運用。關於[「如何提升您的信用分數」的文章:秘訣和技巧 (debt.org)](https://www.debt.org/credit/improving-your-score/)。 + + 如規定內容,**您不需要持有這些文件即可提交第一次申請**(透過阿拉米達郡住房入口網站)。但是,收集這些文件可協助您準備好進行申請程序中的後續步驟。如果您未持有這些文件,您可以諮詢有能力協助準備完整文件的住房顧問。聯絡您所在地區的住房仲介業者,以便深入了解如何取得住房諮詢服務。 + + ### 2\. 與房地產經理會面 + + 申請流程中最後一個步驟就是安置面談。視乎各種房地產而不同,在您收集必要文件的前後日期,房地產經理可能會要求與您會面。 房地產經理可能會要求您所有的家戶成員參加會面。房地產經理會與您一起審核您的文件,並判斷您是否符合該公寓的居住資格。 + + + +
+ + + +1. ## Tìm các căn hộ đang nhận đơn đăng ký (Danh sách) + +

Tìm các cơ hội thuê nhà chất lượng cao, giá cả phải chăng tại Quận Alameda trên trang danh sách của Cổng thông tin nhà ở này.

+ + Cách đơn giản nhất để tìm các cơ hội đang nhận đơn đăng ký là truy cập cổng thông tin nhà ở giá cả phải chăng trong khu vực quý vị muốn sinh sống. + + + + Một cách khác để tìm Nhà ở giá cả phải chăng là tìm kiếm danh sách [Cơ hội và nguồn hỗ trợ nhà ở bổ sung](/additional-resources) có sẵn trên cổng thông tin nhà ở giá cả phải chăng. +
+ Các cơ hội và nguồn hỗ trợ nhà ở này cung cấp tên, địa điểm và thông tin liên lạc cho các chương trình và khu nhà ở giá cả phải chăng. Quý vị cũng có thể vào trang web [Lựa chọn nhà ở AC](https://achousingchoices.org/) của chúng tôi để xem thêm danh sách các căn hộ chung cư có giá cả phải chăng. Tuy nhiên, những người quản lý khu nhà của các căn hộ trong danh sách đó có thể không nhận đơn đăng ký được vì họ đã có rất nhiều đơn đăng ký phải xử lý trước khi có thể nhận đơn đăng ký mới. Bắt đầu bằng cách xác định các khu nhà đáp ứng nhu cầu của quý vị, sau đó liên hệ với các khu nhà có liên quan để tìm hiểu xem các khu nhà đó có đang nhận đơn đăng ký hay không. Để truy cập vào các chương trình khác, bao gồm hỗ trợ nhà ở Mục 8 của cơ quan quản lý nhà ở, vui lòng liên hệ với các địa chỉ liên hệ được liệt kê trên trang [Cơ hội và nguồn hỗ trợ nhà ở bổ sung](/additional-resources). + +
+ +2. ## Kiểm tra tính đủ điều kiện + +

Xác định xem hộ gia đình quý vị có đáp ứng các yêu cầu của khu nhà hay không.

+ + Nhà ở giá cả phải chăng dành cho những người có thu nhập hạn chế và/hoặc các hoàn cảnh đặc biệt khác. Người nộp đơn sẽ cần phải đánh giá khả năng đáp ứng các yêu cầu về nhóm dân cư và thu nhập tại khu nhà mà họ chọn nộp đơn. + + + + ### Yêu cầu về nhóm dân cư + + Hầu hết các khu nhà ở giá cả phải chăng đều dành cho những người có thu nhập hạn chế. Tuy nhiên, một tỷ lệ nhỏ cũng được chỉ định cho các nhóm dân cư cụ thể. Các ví dụ bao gồm: + + * Người cao tuổi: Mục này có thể bao gồm các căn hộ được chỉ định là nhà ở cho “người cao tuổi” dành cho các cá nhân trên một độ tuổi nào đó. + * Người bị khuyết tật phát triển: Tất cả các căn hộ trong khu nhà, hoặc một phần căn hộ trong khu nhà, có thể được chỉ định cho người khuyết tật. + * Thanh niên trong độ tuổi chuyển tiếp (TAY): Thanh niên trong độ tuổi chuyển tiếp là những cá nhân trong độ tuổi từ 16 đến 24 đang chuyển tiếp từ môi trường chăm sóc nuôi dưỡng hoặc giám hộ của tiểu bang và có nguy cơ gặp rủi ro. + * Các nhu cầu đặc biệt: Các nhu cầu đặc biệt dành cho các nhóm dân cư khác nhau, bao gồm, nhưng không giới hạn ở các hộ gia đình vô gia cư, hoặc có nguy cơ vô gia cư, cũng như các cá nhân bị khuyết tật phát triển. Những ngôi nhà trong các cộng đồng cụ thể này thường bao gồm các dịch vụ hoặc tính năng hỗ trợ nhóm dân cư có Nhu cầu đặc biệt. + + Hãy nhớ đọc các yêu cầu về nhóm dân cư bằng cách truy cập danh sách các khu nhà trên cổng thông tin nhà ở giá cả phải chăng trước khi liên hệ với người quản lý khu nhà. + + ### Yêu cầu về thu nhập + + Tổng thu nhập hộ gia đình của quý vị không được vượt quá giới hạn thu nhập hộ gia đình tối đa cho khu nhà, dựa trên các định nghĩa sau: + + * Hộ gia đình: Một “hộ gia đình” có thể chỉ là một người, hoặc hai người trở lên. Phải liệt kê tất cả các thành viên trong hộ gia đình sẽ sống trong nhà trong đơn đăng ký. + * Thu nhập hộ gia đình: Thu nhập hàng năm tổng hợp từ tất cả những người trên 18 tuổi thuộc hộ gia đình. + * Thu nhập hộ gia đình tối đa: Quý vị sẽ được yêu cầu cung cấp “tổng” Thu nhập tối đa (còn được gọi là Tổng thu nhập hộ gia đình). Trong đó bao gồm tổng thu nhập trước thuế hoặc các khoản khấu trừ khác. + * Thu nhập hộ gia đình tối thiểu: Thu nhập tối thiểu hàng tháng cần có để đủ điều kiện cho khu nhà, thường bằng 1,5 hoặc 2 lần tiền thuê hàng tháng. + + Có ba cách để xác định xem hộ gia đình của quý vị có đáp ứng các yêu cầu về thu nhập tối thiểu và tối đa hay không. + + #### 1\. Xem các Yêu cầu về thu nhập đối với các khu nhà được liệt kê trên Cổng thông tin nhà ở tại Quận Alameda + + Các khu nhà được liệt kê trên Cổng thông tin nhà ở tại Quận Alameda sẽ hiển thị các yêu cầu về thu nhập tối thiểu và tối đa của hộ gia đình đối với người nộp đơn. Nhấp vào liên kết để xem danh sách các khu nhà cụ thể mà quý vị quan tâm. Cuộn xuống các bảng liệt kê thu nhập tối thiểu và tối đa mà mỗi căn hộ yêu cầu. + + #### 2\. Liên hệ với người quản lý khu nhà + + Nếu khu nhà quý vị quan tâm không được liệt kê trên Cổng thông tin nhà ở tại Quận Alameda, thì rất có thể nơi đó sẽ không nhận đơn đăng ký vào thời điểm hiện tại. Tuy nhiên, quý vị có thể liên hệ với người quản lý khu nhà được liệt kê cho khu nhà đó để tìm hiểu các yêu cầu về tính đủ điều kiện. + + #### 3\. Xem các bảng thu nhập được công bố bởi cơ quan nhà ở trong khu vực của quý vị + + Quý vị cũng có thể xem các bảng thu nhập được công bố trên trang web của cơ quan nhà ở trong khu vực có nhà ở giá cả phải chăng mong muốn của quý vị. Các bảng này do Bộ Gia cư và Phát triển Đô thị Hoa Kỳ (HUD) sản xuất và được cập nhật hàng năm. [Các bảng cho Quận Alameda được cung cấp tại đây.](https://www.acgov.org/cda/hcd/hud-income-rent_limits.htm)) Một hộ gia đình thường sẽ được xem là đủ điều kiện cho nhà ở giá cả phải chăng nhất nếu thu nhập của hộ gia đình bằng 60% Thu nhập Trung bình Khu vực (AMI) trở xuống. Tuy nhiên, một số khu nhà có giá thuê được giới hạn cho các hộ gia đình có thu nhập “trung bình” với thu nhập lên đến 120% AMI. Nếu quý vị có thắc mắc liên quan đến các bảng này, vui lòng liên hệ với cơ quan trong khu vực mà quý vị đang tìm kiếm nhà ở giá cả phải chăng. + + #### Ưu tiên + + Một số thành phố đã áp dụng “ưu tiên” để cung cấp cho những người nộp đơn đáp ứng các tiêu chí ưu tiên có cơ hội được chọn cao hơn. Một ví dụ phổ biến là ưu tiên cho những người nộp đơn đang sống hoặc làm việc trong khu vực có nhà ở giá cả phải chăng. Hãy nhớ cung cấp tất cả thông tin được yêu cầu trong đơn đăng ký vì thông tin đó có thể giúp quý vị đủ điều kiện có được bất kỳ sự ưu tiên có sẵn nào. + + Nếu quý vị cần trợ giúp đăng ký, hãy truy cập trang [Tài nguyên](/additional-resources). + + + +3. ## Đăng ký trực tuyến + +

Quý vị sẽ được yêu cầu hoàn thành đơn đăng ký ngắn cho một căn hộ tại khu nhà.

+ + Hãy nhớ hoàn thành đơn đăng ký trước ngày được chỉ định tại khu nhà. Các khu nhà được liệt kê trên cổng thông tin trên trang web yêu cầu một lượng thông tin tối thiểu phải được gửi trên đơn đăng ký giấy hoặc kỹ thuật số “dạng ngắn”. + + + + Sau khi gửi đơn đăng ký, quý vị có thể được người quản lý khu nhà liên hệ. Nếu được liên hệ, quý vị sẽ được yêu cầu cung cấp tài liệu về thu nhập và tài chính của mình. +
+ Nếu quý vị không được chọn ngay lập tức cho một cuộc phỏng vấn bố trí, điều này không có nghĩa là quý vị không đủ điều kiện sống tại khu nhà. Người quản lý khu nhà có thể giữ đơn đăng ký của quý vị trong vài năm trước khi liên hệ với quý vị. Hãy giữ liên lạc với người quản lý khu nhà bằng cách kiểm tra định kỳ về tình trạng đơn đăng ký của quý vị. +
+ Do nhu cầu cao về nhà ở giá phải chăng, có thể mất một thời gian trước khi quý vị được liên hệ để có cơ hội được bố trí một căn hộ. Do đó, điều quan trọng là quý vị phải nộp đơn đăng ký nhà ở tại nhiều khu nhà đáp ứng nhu cầu về nhà ở của quý vị và theo dõi các khu nhà mà quý vị đã đăng ký. Điều quan trọng nữa là phải hoàn thành Bước 5 (Chuẩn bị sắp xếp) ngay cả khi quý vị chưa được người quản lý khu nhà liên hệ ngay để sắp xếp căn hộ. Hãy sắp xếp tài chính của quý vị, bao gồm xem xét ngân sách gia đình, xem xét tín dụng và thu thập các tài liệu cần thiết, làm như vậy sẽ giúp quý vị chuẩn bị sẵn sàng khi được người quản lý khu nhà liên hệ. + +
+ +4. ## Nhận kết quả + +

Quý vị sẽ được người quản lý khu nhà liên hệ để hướng dẫn thêm.

+ + Thời gian từ khi gửi đơn đăng ký đến khi được người quản lý khu nhà liên hệ tùy thuộc vào số lượng căn hộ trống trong khu nhà. Thời gian có thể từ vài tuần đến vài tháng và trong một số trường hợp có thể mất đến vài năm. Một số người sẽ không được chọn cho bước tiếp theo trong quy trình vì họ không đủ điều kiện sống trong căn hộ do thu nhập hoặc các lý do khác. + + + + Có hai phương pháp mà người quản lý khu nhà sử dụng để xác định thứ tự mà người nộp đơn được chọn để tiếp tục thực hiện quy trình nộp đơn. Một phương pháp là sắp xếp các đơn đăng ký theo ngày và giờ nhận được (“ai đến trước được phục vụ trước”). Phương pháp thứ hai là lấy ngẫu nhiên các đơn đăng ký trên máy tính để tạo thứ tự cho tất cả các đơn đăng ký. Việc lấy ngẫu nhiên các đơn đăng ký chỉ diễn ra sau ngày hết hạn nộp đơn. +
+ Nếu quý vị nhận được thư hoặc email từ người quản lý khu nhà thông báo rằng quý vị có thể tiếp tục thực hiện quy trình đăng ký, quý vị đã tiến gần hơn một bước nữa để được chọn cho một căn hộ. Quý vị nên lưu lại bất kỳ tài liệu nào nhận được từ người quản lý khu nhà. + +
+ +5. ## Chuẩn bị sắp xếp + +

Nếu quý vị được thông báo rằng quý vị có thể tiếp tục thực hiện quy trình đăng ký, sẽ có hai bước tiếp theo: 1) nộp giấy tờ tùy thân và thông tin tài chính cho người quản lý khu nhà; và 2) họp với người quản lý khu nhà.

+ + + + ### 1\. Nộp giấy tờ tùy thân và thông tin tài chính + + Người quản lý khu nhà sẽ yêu cầu các tài liệu để xác minh thông tin được cung cấp trong đơn đăng ký của quý vị. Hãy thu thập thông tin này trước khi quý vị được người quản lý khu nhà liên hệ, làm như vậy sẽ giúp quý vị chuẩn bị cho việc lựa chọn làm người thuê trong một căn hộ. + + Các tài liệu mà người quản lý khu nhà có thể yêu cầu được tóm tắt dưới đây thành hai loại khác nhau: A) giấy tờ tùy thân và B) thông tin tài chính. Bộ tài liệu được yêu cầu có thể khác nhau, tùy thuộc vào yêu cầu sắp xếp của khu nhà. + + #### A\. Giấy tờ tùy thân + + Các tài liệu được liệt kê dưới đây không nhất thiết phải có, nhưng có thể giúp người quản lý khu nhà xem xét đơn đăng ký của quý vị. + + * Giấy tờ tùy thân có ảnh của tất cả mọi người trong hộ gia đình từ 18 tuổi trở lên + * Giấy khai sinh hoặc Thẻ An sinh Xã hội hoặc hộ chiếu của tất cả mọi người dưới 18 tuổi. + + #### B\. Thông tin tài chính + + * Thu nhập: Quý vị sẽ được yêu cầu cung cấp tất cả các nguồn thu nhập của mỗi thành viên trong hộ gia đình trên 18 tuổi. Các ví dụ bao gồm: + * Phúc lợi, trợ cấp Cựu chiến binh, thư an sinh xã hội + * Phiếu hỗ trợ thuê nhà + * Các bảng lương gần đây từ chủ sử dụng lao động hiện tại của quý vị + * Bằng chứng tự kinh doanh + * Tiền cấp dưỡng + * Lương hưu hoặc thu nhập hưu trí hiện tại + + + * Chi tiêu: + * Sao kê tài khoản vãng lai + * Sao kê tài khoản tiết kiệm + * Sao kê thẻ tín dụng gần đây nhất + * Chi trả tiền cấp dưỡng + + + * Thông tin tài chính khác: + * Sao kê chính thức cuối cùng của 401k hoặc IRA + * Tài sản – như xe cộ, cổ phiếu hoặc bất động sản + + Người quản lý khu nhà sẽ xem xét tín dụng của quý vị trong quá trình xem xét thông tin tài chính. Có rất nhiều tài nguyên trực tuyến có sẵn để giúp quý vị hiểu và cải thiện điểm tín dụng. Một bài viết là [Cách cải thiện điểm tín dụng: Mẹo & Thủ thuật (debt.org)](https://www.debt.org/credit/improving-your-score/). + + Như đã nêu, **quý vị không cần phải có những tài liệu này để nộp đơn đăng ký ban đầu** qua Cổng thông tin nhà ở tại Quận Alameda. Tuy nhiên, việc thu thập những tài liệu này sẽ giúp quý vị chuẩn bị cho bước tiếp theo trong quy trình nộp đơn. Nếu quý vị không có những tài liệu này, quý vị có thể nhờ nhân viên tư vấn nhà ở hỗ trợ, người này có thể giúp quý vị lấy được tài liệu. Liên hệ với cơ quan nhà ở trong khu vực của quý vị để tìm hiểu cách nhận tư vấn về nhà ở. + + ### 2\. Họp với người quản lý khu nhà + + Phỏng vấn bố trí là bước cuối cùng trong quy trình đăng ký. Tùy thuộc vào khu nhà, người quản lý khu nhà có thể yêu cầu họp với quý vị trước hoặc sau khi quý vị đã thu thập các tài liệu được yêu cầu. Người quản lý khu nhà có thể yêu cầu tất cả các thành viên trong hộ gia đình tham gia cuộc họp. Người quản lý khu nhà sẽ cùng quý vị xem xét các tài liệu và xác định xem quý vị có đủ tiêu chuẩn để sống trong căn hộ hay không. + + + +
+ + + +1. ## Maghanap ng mga Apartment na Tumatanggap ng Application (Mga Lista) + +

Maghanap ng mataas ang kalidad, abot-kayang oportunidad ng pabahay na matatagpuan sa buong Alameda County.

+ + Ang pinakasimpleng paraan upang makahanap ng mga oportunidad na tumatanggap ng mga application ay bisitahin ang portal ng abot-kayang pabahay sa loob ng lugar na nais mong tirahan. + + + + Ang isa pang paraan para makahanap ng Abot-kayang Pabahay ay ang paghahanap sa listahan ng [Mga Karagdagang Oportunidad at Resources](/additional-resources) ng Pabahay na makukuha sa portal ng abot-kayang pabahay. + + Ang mga oportunidad ng pabahay na ito at resource ay nagbibigay ng mga pangalan, lokasyon, at impormasyon ng kontak para sa mga programa ng abot-kayang pabahay at property. Maaari mo ring tingnan ang aming kapatid na website ang [AC Housing Choices](https://achousingchoices.org/) para sa listahan ng dagdag na abot-kayang mga apartment property. Gayunpaman, ang mga tagapamahala ng ari-arian ng mga apartment sa mga listahang iyon ay maaaring hindi makatanggap ng mga application dahil mayroon na silang maraming application na dapat iproseso bago sila makatanggap ng mga bagong application. Magsimula sa pamamagitan ng pagtukoy sa mga property na nakakatugon sa iyong mga pangangailangan at pagkatapos ay makipag-ugnayan sa mga nauugnay na property para malaman kung ang mga property na iyon ay tumatanggap ng mga application. Para sa access sa iba pang mga programa, kabilang ang housing authority Seksyon 8 tulong sa pabahay, makipag-ugnayan sa mga nakalistang contact sa page ng [Karagdagang Mga Oportunidad ng Pabahay at Resource](/additional-resources). + + + +2. ## Tingnan Kung Kwalipikado + +

Alamin kung natutugunan ng iyong sambahayan ang mga kinakailangan para sa property.

+ + Ang abot-kayang pabahay ay nakalaan para sa mga taong may limitadong kita at/o iba pang mga espesyal na kalagayan. Kakailanganin ng mga aplikante na suriin ang kanilang kakayahang matugunan ang mga kinakailangan sa populasyon at kita sa property kung saan nila piniling mag-apply. + + + + ### Mga Kinakailangan ng Populasyon + + Karamihan sa mga abot-kayang pabahay ay available sa mga taong may limitadong kita. Gayunpaman, ang isang maliit na porsyento ay itinalaga rin para sa mga partikular na populasyon. Kasama sa mga halimbawa ang: + + * Mga senior: Maaaring kabilang dito ang mga apartment na itinalaga bilang pabahay sa “senior” para sa mga indibidwal na lampas na sa partikular na edad. + * Mga taong may kapansanan sa pag-unlad: Ang lahat ng unit sa isang property, o isang porsyento ng mga unit sa loob ng isang property, ay maaaring italaga para sa mga taong may mga kapansanan. + * Transition Age Youth (TAY): Ang Transition Age Youth ay mga indibidwal sa pagitan ng edad na 16 at 24 na taong gulang na nasa transition mula sa kustodiya ng estado o mga lugar ng foster care at nasa panganib. + * Espesyal na mga pangangailangan: Sinasaklaw ng mga espesyal na pangangailangan ang iba't ibang populasyon, kabilang ngunit hindi limitado sa mga sambahayan na nakakaranas ng kawalan ng tirahan, o nasa panganib ng mawalan ng tirahan, gayundin ang mga indibidwal na may kapansanan sa pag-unlad. Ang mga tahanan sa mga partikular na komunidad na ito ay karaniwang may kasamang mga serbisyo o feature na sumusuporta sa populasyon ng Espesyal na Pangangailangan. + + Siguruhin na nabasa ang tungkol sa mga kinakailangan ng populasyon sa pamamagitan ng pagpunta sa listahan ng property sa portal ng abot-kayang pabahay bago makipag-ugnayan sa tagapamahala ng property. + + ### Mga Kinakailangang Kita + + Ang kabuuang kita ng iyong sambahayan ay hindi maaaring lumampas sa pinakamataas na limitasyon ng kita ng sambahayan para sa ari-arian, batay sa mga sumusunod na kahulugan: + + * Sambahayan: Ang “sambahayan” ay maaaring isang tao lamang, o dalawa o maraming tao. Lahat ng miyembro ng sambahayan na maninirahan sa bahay ay dapat kasama sa application. + * Kita ng sambahayan: Ang pinagsama-samang taunang kita mula sa lahat ng mga taong higit sa 18 taong gulang na bahagi ng sambahayan. + * Pinakamataas na kita ng sambahayan: Hihilingin sa iyo na magbigay ng “Kabuuang” Pinakamataas na Kita (na kilala rin bilang Kabuuang Kita ng Sambahayan). Ito ay tumutukoy sa kabuuang kita bago kaltasan ng buwis o iba pang kaltas. + * Pinakamababang kita ng sambahayan: Ang minimum na buwanang kita na kinakailangan upang maging karapat-dapat para sa property ay karaniwang katumbas ng 1.5 o 2 beses na buwanang renta. + + May tatlong paraan upang matukoy kung natutugunan ng iyong sambahayan ang pinakamababa at pinakamataas na mga kinakailangan sa kita. + + #### 1\. Tingnan ang Mga Kinakailangan sa Kita para sa Mga Property na nakalista sa Portal ng Alameda County Housing + + Ang mga property na nakalista sa Portal ng Alameda County Housing ay magpapakita ng kinakailangan sa pinakamababa at pinakamataas na mga kinakailangan sa kita ng sambahayan para sa mga aplikante. Mag-click sa link para sa partikular na listahan ng property kung saan ka interesado. Mag-scroll pababa sa mga talahanayan na naglilista ng kinakailangan sa pinakamababa at pinakamataas na kita para sa bawat apartment. + + #### 2\. Kontakin ang property manager + + Kung ang gusto mong property ay hindi nakalista sa Portal ng Alameda County Housing, malamang na hindi ito tumatanggap ng mga application sa kasalukuyan. Gayunpaman, maaari kang makipag-ugnayan sa property manager na nakalista para sa property na iyon para malaman ang mga kinakailangan sa pagiging kwalipikado. + + #### 3\. Tingnan ang mga talahanayan ng kita na inilathala ng housing agency sa inyong lugar + + Maaari mo ring tingnan ang mga talahanayan ng kita na inilathala sa website ng housing agency sa lugar kung saan matatagpuan ang iyong gustong abot-kayang pabahay. Ang mga talahanayang ito ay ginawa ng U.S Department of Housing and Urban Development (HUD) at ina-update taun-taon. [Ang mga talahanayan para sa County ng Alameda ay ibinibigay dito.](https://www.acgov.org/cda/hcd/hud-income-rent_limits.htm) Ang isang sambahayan ay karaniwang itinuturing na kwalipikado para sa pinaka-abot-kayang pabahay kung ang kita ng sambahayan ay 60% ng Area Median Income (AMI) o mas mababa. Gayunpaman, ang ilang mga property ay limitadong nagpaparenta sa “katamtamang” kita na mga sambahayan na may mga kita na hanggang 120% ng AMI. Kung mayroon kang mga katanungan tungkol sa mga talahanayang ito, mangyaring makipag-ugnayan sa ahensya sa lugar kung saan ka naghahanap ng abot-kayang pabahay. + + #### Mga Pagpipilian + + Ang ilan sa mga lungsod ay gumamit ng “mga pagpipilian” na nagbibigay sa mga aplikante na nakakatugon sa mga pamantayan sa kagustuhan ng mas malaking pagkakataong mapili. Ang karaniwang halimbawa ay isang pagpipilian para sa mga aplikante na nakatira o nagtatrabaho sa lugar kung saan matatagpuan ang abot-kayang pabahay. Tiyaking naibigay ang lahat ng impormasyong hinihiling sa application dahil maaari itong magpapahintulot sa iyo na maging kwalipikado para sa anumang available na mga pagpipilian. + + Kung kailangan mo ng tulong sa pag-a-apply, magpunta sa page ng [Mga Resource](/additional-resources). + + + +3. ## Mag-apply Online + +

Hihilingin sa iyo na kumpletuhin ang maikling application para sa unit sa property na iyon.

+ + Siguruhing nakumpleto ang iyong application sa petsang tinukoy ng property. Ang mga property na nakalista sa web portal ay humihingi ng minimum na dami ng impormasyon na isusumite sa “short-form” digital o paper application. + + + + Pagkatapos mong isumite ang iyong application, maaari kang tawagan ng property manager. Kapag tinawagan, hihilingin sa iyo na magbigay ng dokumento sa iyong kita at pananalapi. + + Kung hindi ka agad napili para sa isang placement interview, hindi ito nangangahulugan na hindi ka kwalipikadong manirahan sa property. Maaaring ingatan ng property manager ang iyong application sa loob ng ilang taon bago makipag-ugnayan sa iyo. Patuloy na makipag-ugnayan sa property manager sa pamamagitan ng pana-panahong pag-check in tungkol sa status ng iyong application. + + Dahil sa mataas na pangangailangan para sa abot-kayang pabahay, maaaring magtagal bago ka makontak para sa potensyal na placement sa isang partikular na apartment. Samakatuwid, mahalagang mag-apply ka para sa pabahay sa maraming property na nakakatugon sa iyong mga pangangailangan sa pabahay at subaybayan ang mga ari-arian kung saan ka nag-apply. Mahalaga rin na kumpletuhin ang Hakbang 5 (Maghanda para sa Placement) kahit na hindi ka kaagad nakontak ng property manager para sa placement sa isang apartment. Ang pagsasaayos ng iyong pananalapi, kabilang ang pagsusuri sa badyet ng iyong sambahayan, pag-aalaga sa iyong kredito, at pangangalap ng mga kinakailangang dokumento, ay maghahanda sa iyo kapag nakipag-ugnayan sa iyo ang isang property manager. + + + +4. ## Tanggapin ang resulta + +

Makikipag-ugnayan sa iyo ang property manager para sa karagdagang mga tagubilin.

+ + Ang oras sa pagitan ng pagsusumite ng iyong application at pakikipag-ugnayan ng property manager ay depende sa bilang ng mga bakante sa property. Maaaring magkakaiba ito mula sa ilang linggo hanggang ilang buwan at sa ilang mga kaso ay maaaring tumagal ng hanggang ilang taon. Ang ilang mga tao ay hindi pinipili para sa susunod na hakbang sa proseso dahil hindi sila kwalipikadong manirahan sa apartment dahil sa kanilang kita o iba pang dahilan. + + + + Mayroong dalawang paraan na ginagamit ng mga property manager upang matukoy ang pagkakasunud-sunod kung saan ang mga aplikante ay piniling magpatuloy sa proseso ng application. Ang isang paraan ay ayusin ang mga application ayon sa petsa at oras na natanggap ang application (“first come, first serve”). Ang pangalawang paraan ay ang pag-randomize ng mga application sa isang computer upang makabuo ng pagkakasunod-sunod para sa lahat ng mga application. Ang randomization ng mga application ay nagaganap lamang pagkatapos ng takdang petsa ng application. + + Kung nakatanggap ka ng sulat o email mula sa property manager na nag-aabiso sa iyo na sumusulong ka sa proseso ng application, malapit ka nang mapili para sa isang apartment. Dapat mong ingatan ang record ng anumang dokumentong natatanggap mo mula sa property manager. + + + +5. ## Maging Handa para sa Placement + +

Kung inabisuhan ka na sumusulong ka sa proseso ng application, magkakaroon ng dalawang susunod na hakbang: 1) pagsusumite ng mga dokumento ng pagkakakilanlan at impormasyong pinansyal sa property manager; at 2) pakikipag-usap sa property manager.

+ + + + ### 1\. Pagsusumite ng mga dokumento ng pagkakakilanlan at pinansyal na impormasyon + + Hihilingin ng property manager ang mga dokumento para ma-verify ang impormasyong ibinigay sa iyong application. Ang pangangalap ng impormasyong ito bago ka tawagan ng property manager ay makakatulong sa iyong maghanda para sa pagpili bilang nangungupahan sa isang apartment. + + Ang mga dokumento na maaaring kailanganin ng isang property manager ay ibubuod sa ibaba sa dalawang magkaibang kategorya: A) mga dokumento ng pagkakakilanlan at B) impormasyong pinansyal. Maaaring iba’t iba ang hanay ng mga dokumentong hinihingi, depende sa mga kinakailangan ng property para sa placement. + + #### A\. Mga Dokumento ng Pagkakakilanlan + + Ang mga dokumentong nakalista sa ibaba ay hindi kinakailangan, ngunit maaaring makatulong ang mga ito sa property manager na suriin ang iyong application. + + * Pagkakakilanlang mga larawan ng bawat isa sa inyong sambahayan na 18 o mas matanda + * Sertipiko ng Kapanganakan, o Social Security Card, o pasaporte ng lahat na wala pang 18. + + #### B\. Pinansiyal na Impormasyon + + * Kita: Hihilingin sa iyo na ibigay ang lahat ng source ng kita para sa bawat miyembro ng iyong sambahayan na higit sa 18 taong gulang. Kasama sa mga halimbawa ang: + * Welfare, Mga benepisyo ng Betarano, social security letter + * Voucher ng tulong sa pagrenta + * Kamakailang mga paystub mula sa iyong kasalukuyang employer + * Patunay ng Self-Employment + * Sustento + * Kasalukuyang kita ng pensiyon o pagreretiro + + + * Mga gastos: + * Mga Checking account statement + * Mga Savings account statement + * Pinakabagong credit card statement + * Pagbabayad ng sustento + + + * Iba Pang Pinansyal na Impormasyon: + * Ang huling opisyal na pahayag ng 401k o IRA + * Mga asset – sa ibang salita ay, mga sasakyan, stocks o real estate + + Susuriin ng property manager ang iyong kredito bilang bahagi ng pagsusuri sa iyong impormasyon sa pananalapi. Maraming mga mapagkukunan na magagamit online upang matulungan kang maunawaan at mapabuti ang iyong credit score. Ang isang artikulo ay [Paano Mapapabuti ang Iyong Credit Score: Mga Tips at Trick (debt.org)](https://www.debt.org/credit/improving-your-score/). + + Tulad ng nabanggit, **Hindi mo na kailangang magkaroon ng mga dokumentong ito para isumite ang iyong paunang application** sa pamamagitan Portal ng Alameda County Housing. Gayunpaman, ang pangangalap ng mga dokumentong ito ay makakatulong sa iyong maghanda para sa susunod na hakbang sa proseso ng application. Kung wala ka ng mga dokumentong ito, maaari kang makakuha ng tulong mula sa isang tagapayo sa pabahay, na makakatulong sa iyong makuha ang mga ito. Makipag-ugnayan sa ahensya ng pabahay sa iyong lugar upang malaman kung paano makakuha ng pagpapayo sa pabahay. + + ### 2\. Pakikipag-usap sa Property Manager + + Ang placement interview ay ang huling hakbang sa proseso ng application. Depende sa property, maaaring hilingin ng property manager na makipag-usap sa iyo bago o pagkatapos mong kolektahin ang mga hininging dokumento. Maaaring hilingin ng property manager na dumalo sa pagpupulong ang lahat ng miyembro ng iyong sambahayan. Susuriin ng property manager ang iyong mga dokumento kasama mo at aalamin kung kwalipikado ka o hindi na manirahan sa apartment. + + + +
\ No newline at end of file diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/jurisdiction-footer-section.tsx b/sites/public/src/page_content/jurisdiction_overrides/alameda/jurisdiction-footer-section.tsx new file mode 100644 index 0000000000..2afef3615d --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/jurisdiction-footer-section.tsx @@ -0,0 +1,68 @@ +import React from "react" +import { FooterNav, FooterSection, SiteFooter, t } from "@bloom-housing/ui-components" +import { ExygyFooter } from "@bloom-housing/shared-helpers" +import Link from "next/link" + +export const JurisdictionFooterSection = () => { + return ( + + + Alameda County + + +

+ {t("footer.header")} +
+ + {t("footer.headerLink")} + +

+

{t("footer.forListingQuestions")}

+

{t("footer.forGeneralInquiries")}

+

+ {t("footer.forAdditionalOpportunities")} +
+ + {t("footer.DoorwayHousingPortal")} + + | + + {t("footer.SFHousingPortal")} + + | + + {t("footer.SMCHousingPortal")} + + | + + {t("footer.SJHousingPortal")} + +

+
+ + Equal Housing Opportunity Logo + + + + {t("footer.giveFeedback")} + + {t("footer.contact")} + + {t("footer.disclaimer")} + + {t("footer.privacyPolicy")} + + + + +
+ ) +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/jurisdiction-site-notice.tsx b/sites/public/src/page_content/jurisdiction_overrides/alameda/jurisdiction-site-notice.tsx new file mode 100644 index 0000000000..bf22989307 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/jurisdiction-site-notice.tsx @@ -0,0 +1,17 @@ +import React from "react" +import { t } from "@bloom-housing/ui-components" + +export const JursidictionSiteNotice = () => { + return ( + <> + {t("nav.getFeedback")} + + {t("nav.yourFeedback")} + + + ) +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/es.json b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/es.json new file mode 100644 index 0000000000..31afd19857 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/es.json @@ -0,0 +1,98 @@ +{ + "alert.maintenance": "La Autoridad de Vivienda del Condado de Alameda (HACA) abrirá su lista de espera del 2 al 5 de abril. Obtenga más información en www.haca.net.", + "application.contact.doYouWorkIn": "¿Trabaja usted en %{county}?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "¿Trabaja él o ella en %{county}?", + "application.household.member.workInRegionNote": "", + "application.review.confirmation.whatHappensNext.fcfs": "### ¿Qué sucede ahora?\n\n* Se contactará a los solicitantes elegibles por orden hasta que se cubran las vacantes.\n\n* Las preferencias para la vivienda, si corresponden, alterarán el orden de postulación.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.", + "application.review.confirmation.whatHappensNext.lottery": "### ¿Qué sucede ahora?\n\n* Una vez finalizado el período de solicitud, los solicitantes elegibles se ordenarán según el resultado de la lotería.\n\n* Las preferencias para la vivienda, si corresponden, alterarán el orden resultante de la lotería.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.", + "application.review.confirmation.whatHappensNext.waitlist": "### ¿Qué sucede ahora?\n\n* Los solicitantes elegibles se colocarán en la lista de espera por orden de llegada hasta que se llenen los lugares de la lista de espera.\n\n* Las preferencias para la vivienda, si corresponden, alterarán el orden en la lista de espera.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Es posible que se comuniquen con usted mientras esté en la lista de espera para confirmar que desea permanecer en ella.", + "application.review.terms.textSubmissionDate": "Esta solicitud debe ser presentada por %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* Los solicitantes se postulan a apartamentos actualmente vacantes según su orden de postulación.\n\n* Se contactará a los solicitantes elegibles por orden hasta que se cubran las vacantes.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.\n\nPara obtener más información, comuníquese con el promotor inmobiliario o el administrador de la propiedad que aparece en la oferta de la vivienda.\n\nCompletar esta solicitud no le da derecho a la vivienda ni indica que usted es elegible para ella. Todos los solicitantes se evaluarán según se describe en los Criterios de selección de residentes de la propiedad.\n\nUsted no puede cambiar su solicitud en línea después de enviarla.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.review.terms.lottery.text": "* Los solicitantes se postulan para ingresar a una lotería para apartamentos actualmente vacantes.\n\n* Una vez finalizado el período de solicitud, los solicitantes elegibles se ordenarán según el resultado de la lotería.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.\n\nPara obtener más información, comuníquese con el promotor inmobiliario o el administrador de la propiedad que aparece en la oferta de la vivienda.\n\nCompletar esta solicitud no le da derecho a la vivienda ni indica que usted es elegible para ella. Todos los solicitantes se evaluarán según se describe en los Criterios de selección de residentes de la propiedad.\n\nUsted no puede cambiar su solicitud en línea después de enviarla.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.review.terms.waitlist.text": "* Los solicitantes se postulan a una lista de espera abierta y no para un apartamento actualmente vacante.\n\n* Cuando haya vacantes disponibles, el administrador de la propiedad se comunicará con los solicitantes elegibles por orden de postulación.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.\n\n* Es posible que se comuniquen con usted mientras esté en la lista de espera para confirmar que desea permanecer en ella.\n\nPara obtener más información, comuníquese con el promotor inmobiliario o el administrador de la propiedad que aparece en la oferta de la vivienda.\n\nCompletar esta solicitud no le da derecho a la vivienda ni indica que usted es elegible para ella. Todos los solicitantes se evaluarán según se describe en los Criterios de selección de residentes de la propiedad.\n\nUsted no puede cambiar su solicitud en línea después de enviarla.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.preferences.dontWant": "No quiero solicitar ninguna de estas preferencias", + "application.preferences.dontWantSingular": "No quiero solicitar esta preferencia", + "application.preferences.liveWork.live.label": "Preferencia de vivir en %{county}", + "application.preferences.liveWork.live.description": "Al menos un miembro de mi hogar vive en %{county}", + "application.preferences.liveWork.work.label": "Preferencia de trabajar en %{county}", + "application.preferences.liveWork.work.description": "Al menos un miembro de mi hogar trabaja o le han ofrecido trabajo en %{county}", + "application.preferences.liveWorkCity.live.label": "Preferencia de vivir en Ciudad de %{county}", + "application.preferences.liveWorkCity.live.description": "Al menos un miembro de mi hogar vive en Ciudad de %{county}", + "application.preferences.liveWorkCity.work.label": "Preferencia de trabajar en Ciudad de %{county}", + "application.preferences.liveWorkCity.work.description": "Al menos un miembro de mi hogar trabaja o le han ofrecido trabajo en Ciudad de %{county}", + "application.preferences.displacedTenant.general.label": "Preferencia de vivienda para inquilinos desplazados", + "application.preferences.displacedTenant.general.description": "Al menos un miembro de mi hogar fue desplazado de una propiedad residencial debido a la actividad de reurbanización por parte de la Autoridad de Vivienda de Hayward, la Agencia de Reurbanización o la Ciudad de Hayward.", + "application.preferences.displacedTenant.missionCorridor.label": "Preferencia de vivienda para inquilinos desplazados de Mission Boulevard Corridor (SR 238)", + "application.preferences.displacedTenant.missionCorridor.description": "Al menos un miembro de mi hogar es Participante del Programa de SR 238 de acuerdo con lo requerido por los términos del Proyecto de Implementación del Acuerdo de SR 238. Los participantes del programa son inquilinos de propiedades de Caltrans vendidas anteriormente a lo largo del corredor de SR 238 Mission Boulevard y se les dará preferencia de ocupación cuando se construyan nuevas viviendas por debajo del valor del mercado en el corredor.", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.review.confirmation.prepareForNextSteps": "### Prepárese para los siguientes pasos\n\nMientras espera a ser contactado, puede ir preparando documentación para los posibles próximos pasos y oportunidades futuras.\n\n[Continúe leyendo sobre cómo puede prepararse para los siguientes pasos](/es/how-it-works#prepárese-para-el-siguiente-paso)", + "application.start.whatToExpect.fcfs.steps": "1. Primero, le preguntaremos sobre las personas con las que piensa vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Finalmente, evaluaremos si califica para cualquier preferencia para la vivienda asequible, si corresponde.", + "application.start.whatToExpect.fcfs.finePrint": "* Los solicitantes se postulan a apartamentos actualmente vacantes según su orden de postulación.\n* Tenga en cuenta que cada miembro del hogar solo puede aparecer en una sola solicitud para cada vivienda ofrecida.\n* El administrador de la propiedad se comunicará con los solicitantes por orden de postulación hasta que se cubran las vacantes.\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.", + "application.start.whatToExpect.lottery.steps": "1. Primero, le preguntaremos sobre las personas con las que piensa vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Finalmente, evaluaremos si usted califica para cualquier preferencia para la lotería de vivienda asequible, si corresponde.", + "application.start.whatToExpect.lottery.finePrint": "* Los solicitantes se postulan para ingresar a una lotería para apartamentos actualmente vacantes.\n* Tenga en cuenta que cada miembro del hogar solo puede aparecer en una sola solicitud para cada vivienda ofrecida.\n* El agente de la propiedad se comunicará con los solicitantes según el orden resultante de la lotería hasta que se cubran las vacantes.\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.", + "application.start.whatToExpect.waitlist.steps": "1. Primero, le preguntaremos sobre las personas con las que piensa vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Finalmente, evaluaremos si califica para cualquier preferencia para la vivienda asequible, si corresponde.", + "application.start.whatToExpect.waitlist.finePrint": "* Los solicitantes se postulan a una lista de espera abierta y no a un apartamento actualmente disponible.\n* Tenga en cuenta que cada miembro del hogar solo puede aparecer en una sola solicitud para cada vivienda ofrecida.\n*Cuando haya vacantes disponibles, el administrador de la propiedad se comunicará con los solicitantes elegibles por orden de postulación.\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.", + "footer.copyRight": "Condado de Alameda © 2020 • Todos los derechos reservados", + "footer.disclaimer": "Exención de responsabilidades", + "footer.getAssistance": "Obtener asistencia", + "footer.giveFeedback": "Proporcione sus comentarios", + "footer.header": "El Portal de Vivienda del Condado de Alameda es un proyecto del", + "footer.headerUrl": "https://www.acgov.org/cda/hcd/", + "footer.headerLink": "Condado de Alameda - Departamento de Desarrollo Comunitario y de Vivienda (HCD)", + "footer.forAdditionalOpportunities": "Para ver oportunidades adicionales en el Área de la Bahía, sírvase visitar:", + "footer.forGeneralInquiries": "Para obtener información general sobre el programa, o acceder a servicios de traducción del contenido de este sitio web por teléfono, puede llamar al HCD del Condado de Alameda al 510-670-5404.", + "footer.forListingQuestions": "Si tiene alguna pregunta relacionada con los listados y la solicitud, sírvase poner en contacto con el Agente de la Propiedad que aparece indicado en cada listado.", + "footer.privacyPolicy": "Política de privacidad", + "footer.DoorwayHousingPortal": "Vivienda Portal de Doorway", + "footer.SFHousingPortal": "Portal de Vivienda de San Francisco", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SMCHousingPortal": "Portal de vivienda del condado de San Mateo", + "footer.SMCHousingUrl": "https://smc.housingbayarea.org/", + "footer.SJHousingPortal": "Portal de vivienda de la ciudad de San Jose", + "footer.SJHousingUrl": "https://housing.sanjoseca.gov/", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "LOTERÍA", + "nav.siteTitle": "Portal de Vivienda del Condado de Alameda", + "nav.getFeedback": "¡Nos encantaría recibir ", + "nav.yourFeedback": "sus comentarios!", + "nav.bonusFeedback": "", + "pageDescription.additionalResources": "Le invitamos a consultar otros recursos de vivienda de precio accesible.", + "pageDescription.howItWorks": "Obtenga más información sobre cómo encontrar y solicitar alquileres económicos.", + "pageTitle.additionalResources": "Oportunidades adicionales de vivienda", + "pageTitle.howItWorks": "¿Cómo funciona?", + "region.name": "Condado de Alameda", + "listings.availableUnits": "Unidades disponibles", + "listings.waitlist.currentSize": "Tamaño actual de la lista de espera", + "listings.waitlist.finalSize": "Tamaño final de la lista de espera", + "listings.waitlist.openSlots": "Vacantes en la lista de espera", + "listings.waitlist.isOpen": "La lista de espera está abierta", + "listings.waitlist.submitForWaitlist": "Envíe una solicitud para una vacante en la lista de espera", + "additionalResources.immediateHousing.title": "Asistencia de vivienda inmediata", + "additionalResources.immediateHousing.description": "Si está huyendo de violencia doméstica, agresión sexual o trata de personas y está en peligro inmediato, llame al 911.", + "additionalResources.alaCountyHCD.title": "Programas de vivienda de Desarrollo Comunitario y de Vivienda (Housing & Community Development, HCD) del Condado de Alameda.", + "additionalResources.alaHousingAuthorities.title": "Autoridades de Vivienda del Condado de Alameda", + "additionalResources.alaHousingAuthorities.description": "Las Autoridades de Vivienda Pública (PHAs) generalmente supervisan dos programas que proporcionan asistencia directa a inquilinos: supervisando unidades de vivienda pública, y administrando el programa de Cupones Section 8 Housing Choice. Sin embargo, algunas PHA ya no administran viviendas públicas, y la escala de estos programas también puede variar ampliamente. Sírvase poner en contacto con su PHA local para informarse sobre cómo pueden ayudarle.", + "additionalResources.cityRegionServices.title": "SERVICIOS RELACIONADOS CON LA CIUDAD Y LA REGIÓN", + "additionalResources.cityRegionServices.description": "Como los datos cambian, puede ver la información actualizada en el horario de atención sin turno.", + "t.units": "unidades", + "welcome.howDoesItWork": "¿Cómo funciona?", + "welcome.learnHowToApply": "Obtenga más información sobre cómo encontrar y solicitar alquileres económicos.", + "welcome.readAboutHowItWorks": "Lea acerca de cómo funciona", + "whatToExpect.waitlist": "

Los solicitantes se postulan a una lista de espera abierta y no para un apartamento actualmente vacante.

Los solicitantes elegibles se incluirán en la lista de espera. Cuando haya vacantes disponibles, el administrador de la propiedad se comunicará con los solicitantes por orden de postulación.

Si el administrador de la propiedad se comunica con usted, se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.

", + "whatToExpect.waitlistReadMore": "

Las preferencias para la vivienda, si corresponden, alterarán el orden en la lista de espera.

Su solicitud puede eliminarse de la lista de espera si usted proporcionó información fraudulenta. Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.

Si el administrador de la propiedad se comunica con usted, debe estar preparado para completar una solicitud más detallada y proporcionar los documentos de respaldo requeridos.

", + "whatToExpect.lottery": "

Los solicitantes se postulan para ingresar a una lotería para apartamentos actualmente vacantes.

Una vez finalizado el período de solicitud, los solicitantes elegibles se ordenarán según el resultado de la lotería.

Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.

", + "whatToExpect.lotteryReadMore": "

Las preferencias para la vivienda, si corresponden, alterarán el orden resultante de la lotería.

Su solicitud puede eliminarse de la lista de espera si usted proporcionó información fraudulenta. Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.

Si el administrador de la propiedad se comunica con usted, se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.

", + "whatToExpect.fcfs": "

Los solicitantes se postulan a apartamentos actualmente vacantes según su orden de postulación.

Se contactará a los solicitantes elegibles por orden hasta que se cubran las vacantes.

Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.

", + "whatToExpect.fcfsReadMore": "

Las preferencias para la vivienda, si corresponden, alterarán el orden de postulación.

Su solicitud puede eliminarse de la lista de espera si usted proporcionó información fraudulenta. Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.

Si el administrador de la propiedad se comunica con usted, se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/general.json b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/general.json new file mode 100644 index 0000000000..1778302f6c --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/general.json @@ -0,0 +1,128 @@ +{ + "alert.maintenance": "The Alameda County Housing Authority (HACA) will be opening its waitlist April 2 through April 5. Find out more at www.haca.net.", + "application.contact.doYouWorkIn": "Do you work in %{county} County?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "Do they work in the %{county} County?", + "application.household.member.workInRegionNote": "", + "application.referralApplication.instructions": "The permanent supportive housing units are referred directly through Alameda County's Coordinated Entry System. Households experiencing homelessness can call 211 in order to get connected to an Access Point to learn more about the coordinated entry system and access housing-related resources and information. Although this property is only accepting applications through the Permanent Supportive Housing (PSH) target list, calling 211 can help you with other homeless resources through the Coordinated Entry System.", + "application.referralApplication.furtherInformation": "For further information", + "application.referralApplication.phoneNumber": "211", + "application.review.confirmation.prepareForNextSteps": "### Prepare for next steps\n\nWhile you wait, there are things you can do to prepare for potential next steps and future opportunities.\n\n[Read about how you can prepare for next steps](/how-it-works#get-prepared-for-placement)", + "application.preferences.liveWork.title": "Live or Work in %{county} County", + "application.preferences.liveWork.live.label": "Live in %{county} County Preference", + "application.preferences.liveWork.live.description": "At least one member of my household lives in the %{county} County", + "application.preferences.liveWork.work.label": "Work in %{county} County Preference", + "application.preferences.liveWork.work.description": "At least one member of my household works or has been offered work in the %{county} County", + "application.preferences.liveWorkCity.title": "Live or Work in the City of %{county}", + "application.preferences.liveWorkCity.live.label": "Live in the City of %{county} Preference", + "application.preferences.liveWorkCity.live.description": "At least one member of my household lives in the City of %{county}", + "application.preferences.liveWorkCity.work.label": "Work in the City of %{county} Preference", + "application.preferences.liveWorkCity.work.description": "At least one member of my household works in the City of %{county}", + "application.preferences.liveWorkOakland.title": "Live or Work in the City of Oakland", + "application.preferences.liveWorkOakland.live.label": "Live in the City of Oakland Preference", + "application.preferences.liveWorkOakland.live.description": "At least one member of my household lives in the City of Oakland", + "application.preferences.liveWorkOakland.work.label": "Work in the City of Oakland Preference", + "application.preferences.liveWorkOakland.work.description": "At least one member of my household works in the City of Oakland", + "application.preferences.PBV.title": "Oakland Housing Authority", + "application.preferences.PBV.residencyNoColiseum.label": "Residency", + "application.preferences.PBV.residencyNoColiseum.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher and can verify your previous residency/employment at the applicant interview.", + "application.preferences.PBV.generalResidency.label": "Residency", + "application.preferences.PBV.generalResidency.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher and can verify your previous residency/employment at the applicant interview.", + "application.preferences.PBV.residency.label": "Residency", + "application.preferences.PBV.residency.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher at Coliseum Place and can verify your previous residency/employment at the applicant interview.", + "application.preferences.PBV.family.label": "Family", + "application.preferences.PBV.family.description": "You are a family with two or more persons, or a single person applicant that is 62 years of age or older, or a single person applicant with a disability.", + "application.preferences.PBV.veteran.label": "Veteran", + "application.preferences.PBV.veteran.description": "You are a Veteran or active member of the military.", + "application.preferences.PBV.homeless.label": "Homeless", + "application.preferences.PBV.homeless.description": "You are an individual or family who meets the McKinney-Vento Act definition of homelessness. Family is identified as: individuals who lack a fixed, regular, and adequate nighttime residence and: (i) children and youths who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; or are abandoned in hospitals; (ii) children and youths who have a primary nighttime residence that is a public or private place not designed for or ordinarily used as a regular sleeping accommodation for human beings; (iii) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings; and (iv) migratory children who qualify as homeless for the purposes of this subtitle because the children are living in circumstances described in clauses (i) through (iii).", + "application.preferences.PBV.homeless.link": "https://uscode.house.gov/view.xhtml?path=/prelim@title42/chapter119/subchapter6/partB&edition=prelim", + "application.preferences.PBV.noneApplyButConsider.label": "None of these preferences apply to me, but I would like to be considered", + "application.preferences.PBV.doNotConsider.label": "I don't want to be considered for Oakland Housing Authority project-based voucher units", + "application.preferences.HOPWA.title": "Housing Opportunities for Persons with AIDS", + "application.preferences.HOPWA.hopwa.label": "Housing Opportunities for Persons with AIDS", + "application.preferences.HOPWA.hopwa.description": "If you have questions about HOPWA eligibility or need support in submitting this application, please contact AHIP (AIDS Housing Information Project) at (510) 537-2600 or (510) 695-5222.", + "application.preferences.HOPWA.doNotConsider.label": "I don't want to be considered", + "application.preferences.displacedTenant.title": "Displaced Tenant Housing Preference", + "application.preferences.displacedTenant.whichHouseholdMember": "Which household member is claiming this preference?", + "application.preferences.displacedTenant.whatAddress": "What address was the household member displaced from?", + "application.preferences.displacedTenant.general.label": "Displacee Tenant Housing Preference", + "application.preferences.displacedTenant.general.description": "At least one member of my household was displaced from a residential property due to redevelopment activity by the Hayward Housing Authority, the Redevelopment Agency or the City of Hayward.", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.start.whatToExpect.steps": "1. First we'll ask about you and the people you plan to live with.\n2. Then, we'll ask about your income.\n3. Finally, we'll see if you qualify for any affordable housing lottery preference.", + "application.start.whatToExpect.finePrint": "* Please be aware that each household member can only appear on one application for each listing.\n* All of the information that you have provided will be verified and your eligibility confirmed.\n* Your application will be removed if you have made any fraudulent statements.\n* If we cannot verify a housing preference that you have claimed, you will not receive the preference, but will not be otherwise penalized.", + "application.review.terms.text": "* After all applications are submitted, the property manager will begin processing applications.\n\n%{reviewOrder}\n\n* If you are contacted for an interview, you will fill out a more detailed application and provide supporting documents.\n\n* All of the information that you have provided will be verified and your eligibility confirmed.\n\n* Your application will be removed if you have made any fraudulent statements. \n\n* If we cannot verify a housing preference that you have claimed, you will not receive the preference, but will not be otherwise penalized. \n\nFor more information, please contact the developer or agent posted in the listing. \n\nCompleting this application does not entitle you to housing or indicate you are eligible for housing. All applicants will be screened as outlined in the property's Resident Selection Criteria.\n\nYou cannot change your online application after you submit.\n\nI declare that the foregoing is true and accurate, and acknowledge that any misstatement fraudulently or negligently made on this application will result in removal from the lottery.", + "footer.copyRight": "Alameda County © 2020 • All Rights Reserved", + "footer.disclaimer": "Disclaimer", + "footer.getAssistance": "Get Assistance", + "footer.giveFeedback": "Give Feedback", + "footer.header": "Alameda County Housing Portal is a project of the", + "footer.headerUrl": "https://www.acgov.org/cda/hcd/", + "footer.headerLink": "Alameda County - Housing and Community Development (HCD) Department", + "footer.forAdditionalOpportunities": "For additional Bay Area opportunities, please visit:", + "footer.forGeneralInquiries": "For general program inquiries, or to access translation services for content on this website by phone, you may call Alameda County HCD at 510-670-5404.", + "footer.forListingQuestions": "For listing and application questions, please contact the Property Agent displayed on each listing.", + "footer.privacyPolicy": "Privacy Policy", + "footer.DoorwayHousingPortal": "Doorway Housing Portal", + "footer.SFHousingPortal": "San Francisco Housing Portal", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SMCHousingPortal": "San Mateo County Housing Portal", + "footer.SMCHousingUrl": "https://smc.housingbayarea.org/", + "footer.SJHousingPortal": "City of San José Housing Portal", + "footer.SJHousingUrl": "https://housing.sanjoseca.gov/", + "nav.siteTitle": "Alameda County Housing Portal", + "nav.getFeedback": "We'd love to get ", + "nav.yourFeedback": "your feedback!", + "nav.bonusFeedback": "", + "pageTitle.additionalResources": "Additional Housing Opportunities and Resources", + "pageTitle.howItWorks": "How it Works", + "pageDescription.additionalResources": "We encourage you to browse other affordable housing resources.", + "pageDescription.getAssistance": "Learn more about finding and applying for affordable rental opportunities, and find additional housing listings.", + "pageDescription.howItWorks": "Learn how you can find and apply for affordable rental opportunities.", + "region.name": "Alameda County", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "Lottery", + "timeout.afterMessage": "We care about your security. We ended your session due to inactivity. Please start a new application to continue.", + "welcome.howDoesItWork": "How does it work?", + "welcome.learnHowToApply": "Learn how you can find and apply for affordable rental opportunities.", + "welcome.readAboutHowItWorks": "Read About How it Works", + "application.programs.VHHP.veteran.label": "Veteran", + "application.programs.VHHP.veteranStatus.label": "Veteran Status", + "application.programs.VHHP.veteran.description": "You are a Veteran or active member of the military. “Veteran” means any person who actively served within one or more of the military services of the United States who was called to and released from active duty or active service, for a period of not less than 90 consecutive days or was discharged from the service due to a service-connected disability within that 90-day period. This includes all Veterans regardless of discharge status.", + "application.programs.VHHP.veteranStatus.description": "You are ineligible for VA health care and/or VA Supportive Housing (HUD-VASH).", + "application.preferences.oaklandHousingAuthority.liveOrWork.label": "Live or Work", + "application.preferences.oaklandHousingAuthority.liveOrWork.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher at this property and can verify your previous residency/employment at the applicant interview.", + "application.preferences.oaklandHousingAuthority.family.label": "Family", + "application.preferences.oaklandHousingAuthority.family.description": "You are a family with two or more persons, or a single person applicant that is 62 years of age or older, or a single person applicant with a disability.", + "application.preferences.oaklandHousingAuthority.veteran.label": "Veteran", + "application.preferences.oaklandHousingAuthority.veteran.description": "You are a Veteran or active member of the military who was discharged or released from such service under conditions other than dishonorable.", + "application.preferences.southAlamedaCounty.live.label": "Live in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.live.description": "At least one member of my household lives in Fremont, Newark or Union City.", + "application.preferences.southAlamedaCounty.work.label": "Work in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.work.description": "At least one member of my household works in Fremont, Newark or Union City:", + "application.preferences.fremontPref.live.description": "Living in Fremont: Defined as a person or household who is currently a resident within the current incorporated area of Fremont and where that location is considered to be the household’s permanent place of residence. The City may require applicants to submit a driver license, voter registration, utility bill, vehicle registration or other evidence as proof of residency in Fremont.", + "application.preferences.fremontPref.live.label": "Live in Fremont: At least one member of my household lives* in the City of Fremont", + "application.preferences.fremontPref.title": "Live or work in the City of Fremont ", + "application.preferences.fremontPref.work.description": "Working in Fremont: Earning one's primary source of annual income (salary, wages, commissions), and working at least 50 percent of working hours (i.e. 20 or more hours per week) within the Fremont City limits, at the time of the application. Employment must be by a Fremont employer that is licensed and permitted by the City, at a primary work site in Fremont, or as providing household help, gardening, or similar services to a Fremont resident; or through operation of a Fremont-based business that is licensed and permitted by the City. Working in Fremont does NOT include self-employment consisting solely of operating a business entity established solely for the purposes of investment in a rental property.", + "application.preferences.fremontPref.work.label": "Work in Fremont: At least one member of my household works** in the City of Fremont", + "application.preferences.emeryvillePref.live.label": "At least one member of my household lives in the Emeryville", + "application.preferences.emeryvillePref.work.label": "At least one member of my household works at least 50% of weekly hours in Emeryville", + "application.preferences.emeryvillePref.child.label": "I have a child enrolled in the Emeryville Unified School District (EUSD) or Emeryville Child Development Center (ECDC)", + "additionalResources.immediateHousing.title": "Immediate Housing Assistance", + "additionalResources.immediateHousing.description": "If you're fleeing domestic violence, sexual assault or human trafficking and in immediate danger, call 911.", + "additionalResources.alaCountyHCD.title": "Alameda County Housing & Community Development (HCD) Housing Programs", + "additionalResources.alaHousingAuthorities.title": "Housing Authorities in Alameda County", + "additionalResources.alaHousingAuthorities.description": "Public Housing Authorities (PHAs) typically oversee two programs that provide direct assistance to tenants: overseeing units of public housing, and administering the Section 8 Housing Choice Voucher program. However, some PHAs no longer manage public units, and the scale of these programs can also vary widely. Please contact your local PHA to find out how they may be of assistance to you.", + "additionalResources.cityRegionServices.title": "City and Region-Related Services", + "additionalResources.cityRegionServices.description": "As details change, you can view the most up to date information on drop-in office hours." +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/tl.json b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/tl.json new file mode 100644 index 0000000000..4e6e6ed0c6 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/tl.json @@ -0,0 +1,74 @@ +{ + "alert.maintenance": "Ang Alameda County Housing Authority (HACA) ay magbubukas ng waitlist nito Abril 2 hanggang Abril 5. Alamin ang higit pa sa www.haca.net.", + "application.contact.doYouWorkIn": "Nagtatrabaho ka ba sa %{county} County?", + "application.household.member.workInRegion": "Nagtatrabaho ba sila sa %{county} County?", + "application.household.member.workInRegionNote": "", + "application.review.confirmation.whatHappensNext.fcfs": "### Ano ang susunod na mangyayari?\n\n* Ang mga kwalipikadong aplikante ay ilalagay sa waitlist sa batayang first come first serve hanggang sa mapuno ang mga puwesto ng waitlist.\n\n* Ang mga pagpipilian sa pabahay ay makakaapekto sa order ng waitlist, kung naaangkop.\n\n* Kapag tinawagan ka para sa isang interbyu, hihilingin sa inyo na sagutan nang mas detalyado ang aplikasyon at magbigay ng karagdagang mga dokumento.", + "application.review.confirmation.whatHappensNext.lottery": "### Ano ang susunod na mangyayari?\n\n* Kapag nagsara na ang oras ang aplikasyon, ang mga kwalipikadong aplikante ay ilalagay sa pila batay sa ranggo ng lottery.\n\n* Ang mga pagpipilian sa pabahay ay makakaapekto sa order ng waitlist, kung naaangkop.\n\n* Kapag tinawagan ka para sa isang interbyu, hihilingin sa inyo na sagutan nang mas detalyado ang aplikasyon at magbigay ng karagdagang mga dokumento.", + "application.review.confirmation.whatHappensNext.waitlist": "### Ano ang susunod na mangyayari?\n\n* Ang mga kwalipikadong aplikante ay ilalagay sa waitlist sa batayang first come first serve hanggang mapuno ang puwesto sa waitlist.\n\n* Ang mga pagpipilian sa pabahay ay makakaapekto sa order ng waitlist, kung naaangko.\n\n* Kapag tinawagan ka para sa isang interbyu, hihilingin sa inyo na sagutan nang mas detalyado ang aplikasyon at magbigay ng karagdagang mga dokumento.\n\n* Maaari kang kontakin habang nasa waitlist para kumpirmahin na gusto mong manatiling nasa waitlist.", + "application.review.terms.textSubmissionDate": "Ang aplikasyong ito ay dapat isumite sa pamamagitan ng %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* Ang mga aplikante ay nag-a-apply para sa kasalukyuang mga bakanteng apartment sa batayang first come, first serve.\n\n* Ang mga kwalipikadong aplikante ay kokontakin sa batayang first come first serve hanggang sa mapuno ang bakante.\n\n* Kapag tinawagan ka para sa isang interbyu, hihilingin sa inyo na sagutan nang mas detalyado ang aplikasyon at magbigay ng karagdagang mga dokumento.\n\n* Ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin ang inyong pagiging kwalipikado.\n\n* Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag.\n\n* Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.\n\nPara sa karagdagang impormasyon, pakikontakin ang developer ng pabahay o tagapangasiwa ng property na nakapaskil sa listahan.\n\nAng pagkumpleto sa aplikasyon na ito ay hindi nagbibigay sa iyo ng karapatan sa pabahay o nagpapahiwatig na ikaw ay kwalipikado para sa pabahay. Ang lahat ng aplikante ay sasalain tulad ng binalangkas sa Saligan ng Pagpili ng Residente sa property.\n\nHindi mo pwedeng baguhin ang online application mo pagkatapos mong magsumite.\n\nIpinapahayag ko na ang nabanggit ay totoo at tumpak, at kinikilala ko na ang anumang maling pahayag na mapanlinlang o kapabayaan na ginawa sa aplikasyong ito ay maaaring magresulta sa pagtanggal sa proseso ng aplikasyon.", + "application.review.terms.lottery.text": "* Ang mga aplikante ay nag-a-apply para makapasok sa lottery para sa kasalukyuang mga bakanteng apartment.\n\n* Kapag nagsara na ang oras ang aplikasyon, ang mga kwalipikadong aplikante ay ilalagay sa pila batay sa ranggo ng lottery.\n\n* Kapag tinawagan ka para sa isang interbyu, hihilingin sa inyo na sagutan nang mas detalyado ang aplikasyon at magbigay ng karagdagang mga dokumento.\n\n* Ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin ang inyong pagiging kwalipikado.\n\n* Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag.\n\n* Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.\n\nPara sa karagdagang impormasyon, pakikontakin ang developer ng pabahay o tagapangasiwa ng property na nakapaskil sa listahan.\n\nAng pagkumpleto sa aplikasyon na ito ay hindi nagbibigay sa iyo ng karapatan sa pabahay o nagpapahiwatig na ikaw ay kwalipikado para sa pabahay. Ang lahat ng aplikante ay sasalain tulad ng binalangkas sa Saligan ng Pagpili ng Residente sa property.\n\nHindi mo pwedeng baguhin ang online application mo pagkatapos mong magsumite.\n\nIpinapahayag ko na ang nabanggit ay totoo at tumpak, at kinikilala ko na ang anumang maling pahayag na mapanlinlang o kapabayaan na ginawa sa aplikasyong ito ay maaaring magresulta sa pagtanggal sa proseso ng aplikasyon.", + "application.review.terms.waitlist.text": "* Ang mga aplikante ay nag-a-apply para sa bukas na waitlist at kasalukuyang walang bakanteng apartment.\n\n* Kapag mayroon nang mga bakante, ang mga kwalipikadong aplikante ay kokontakin ng tagapangasiwa ng apartment sa batayang first come, first serve.\n\n* Kapag tinawagan ka para sa isang interbyu, hihilingin sa iyo na gawing mas detalyado ang aplikasyon at magbigay ng mga karagdagang dokumento.\n\n* Ang lahat ng impormasyon na ibinigay sa iyo ay i-ve-verify at kukumpirmahin kung kwalipikado ka.\n\n* Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag.\n\n* Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.\n\n* Maaari kang kontakin habang nasa waitlist para kumpirmahin na gusto mong manatiling nasa waitlist.\n\nPara sa karagdagang impormasyon, pakikontakin ang developer ng pabahay o tagapangasiwa ng property na nakapaskil sa listahan.\n\nAng pagkumpleto sa aplikasyon na ito ay hindi nagbibigay sa iyo ng karapatan sa pabahay o nagpapahiwatig na ikaw ay kwalipikado para sa pabahay. Ang lahat ng aplikante ay sasalain tulad ng binalangkas sa Saligan ng Pagpili ng Residente sa property.\n\nHindi mo pwedeng baguhin ang online application mo pagkatapos mong magsumite.\n\nIpinapahayag ko na ang nabanggit ay totoo at tumpak, at kinikilala ko na ang anumang maling pahayag na mapanlinlang o kapabayaan na ginawa sa aplikasyong ito ay maaaring magresulta sa pagtanggal sa proseso ng aplikasyon.", + "application.preferences.title": "Maaaring maging kwalipikado ang iyong sambahayan para sa mga sumusunod na kagustuhan sa pabahay", + "application.preferences.preamble": "Kung kwalipikado ka para sa kagustuhang ito, makakakuha ka ng mas mataas na ranggo", + "application.preferences.selectBelow": "Kung mayroon kang isa sa mga kagustuhan sa pabahay na ito, piliin ito sa ibaba:", + "application.preferences.general.title": "Batay sa impormasyong iyong inilagay, ang iyong sambahayan ay hindi nag-claim ng anumang mga kagustuhan sa pabahay.", + "application.preferences.general.preamble": "Ikaw ay nasa pangkalahatang grupo ng mga aplikante.", + "application.referralApplication.instructions": "Ang permanenteng sumusuporta sa mga yunit ng pabahay ay direktang tinutukoy sa pamamagitan ng Alameda County's Coordinated Entry System. Maaaring tumawag sa 211 ang mga sambahayang nakararanas ng kawalan ng tirahan upang makakonekta sa isang Access Point upang matuto pa tungkol sa coordinated entry system at ma-access ang mga resource at impormasyong nauugnay sa pabahay.", + "application.referralApplication.furtherInformation": "Para sa karagdagang impormasyon", + "application.review.confirmation.prepareForNextSteps": "### Maghanda para sa susunod na hakbang\n\nHabang naghihintay ka, may mga bagay kang magagawa para maghanda para sa mga potensyal na susunod na hakbang at mga pagkakataon sa hinaharap.\n\n[Magbasa pa tungkol sa kung paano ka maghahanda para sa susunod mong hakbang](/tl/how-it-works#maging-handa-para-sa-placement)", + "application.start.whatToExpect.fcfs.steps": "1. Tatanungin namin kayo tungkol sa mga taong balak ninyong makasamang tumira sa bahay.\n2. Pagkatapos ay tatanungin namin kayo tungkol sa inyong kinikita.\n3. Panghuli, titignan namin kung kwalipikado kayo sa anumang abot-kayang pagpipilian sa pabahay, kung naaangkop.", + "application.start.whatToExpect.fcfs.finePrint": "* Ang mga aplikante ay nag-a-apply para sa kasalukyuang mga bakanteng apartment sa batayang first come, first serve.\n* Pakitandaan lamang na ang bawat miyembro ng sambahayan ay pwede lamang lumitaw sa isang aplikasyon para sa bawat listahan.\n* Ang mga aplikante ay kokontakin ng ahente ng property ayon sa pagkakasunod-sunod ng ranggo ng lottery hanggang sa mapuno ang mga bakante.\n* Ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin ang inyong pagiging kwalipikado.\n* Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag.\n* Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.", + "application.start.whatToExpect.lottery.steps": "1. Tatanungin namin kayo tungkol sa mga taong balak ninyong makasamang tumira sa bahay.\n2. Pagkatapos ay tatanungin namin kayo tungkol sa inyong kinikita.\n3. Panghuli, titignan namin kung kwalipikado kayo sa anumang abot-kayang pagpipilian sa pabahay, kung naaangkop.", + "application.start.whatToExpect.lottery.finePrint": "* Ang mga aplikante ay nag-a-apply para makapasok sa lottery para sa kasalukyuang mga bakanteng apartment.\n* Pakitandaan lamang na ang bawat miyembro ng sambahayan ay pwede lamang lumitaw sa isang aplikasyon para sa bawat listahan.\n* Ang mga aplikante ay kokontakin ng ahente ng property ayon sa pagkakasunod-sunod ng ranggo ng lottery hanggang sa mapuno ang mga bakante.\n* Ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin ang inyong pagiging kwalipikado.\n* Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag.\n* Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.", + "application.start.whatToExpect.waitlist.steps": "1. Tatanungin namin kayo tungkol sa mga taong balak ninyong makasamang tumira sa bahay.\n2. Pagkatapos ay tatanungin namin kayo tungkol sa inyong kinikita.\n3. Panghuli, titignan namin kung kwalipikado kayo sa anumang abot-kayang pagpipilian sa pabahay, kung naaangkop.", + "application.start.whatToExpect.waitlist.finePrint": "* Ang mga aplikante na nag-a-apply para sa bukas na waitlist at kasalukuyang walang available na apartment.\n* Pakitandaan lamang na ang bawat miyembro ng sambahayan ay pwede lamang lumitaw sa isang aplikasyon para sa bawat listahan.\n* Kapag mayroon nang available, ang mga kwalipikadong aplikante ay kokontakin ng tagapangasiwa ng property sa batayang first come, first serve.\n* Ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin kung kayo ay kwalipikado.\n* Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag.\n* Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.", + "footer.copyRight": "Alameda County © 2020 • Ang Lahat ng Karapatan ay Nakalaan", + "footer.disclaimer": "Pagtatatuwa", + "footer.getAssistance": "Humingi ng Tulong", + "footer.giveFeedback": "Magbigay ng Feedback", + "footer.header": "Ang Alameda County Housing Portal ay isang proyekto ng", + "footer.headerLink": "Alameda County – Departamento ng Housing and Community Development (HCD)", + "footer.forAdditionalOpportunities": "Para sa karagdagang mga pagkakataon sa Bay Area, mangyaring bumisita", + "footer.forGeneralInquiries": "Para sa pangkalahatang katanungan ukol sa programa, maaari mo kaming tawagan sa 510-670-5404.", + "footer.forListingQuestions": "Para sa mga tanong sa listahan at aplikasyon, mangyaring makipag-ugnayan sa Ahente ng Ari-arian na ipinapakita sa bawat listahan.", + "footer.privacyPolicy": "Patakaran ng Pagkapribado", + "footer.DoorwayHousingPortal": "Portal ng Pabahay ng Doorway", + "footer.SFHousingPortal": "Portal ng Pabahay ng San Francisco", + "footer.SMCHousingPortal": "Portal ng Pabahay ng San Mateo County", + "footer.SJHousingPortal": "Lungsod ng San José Housing Portal", + "listings.availableUnits": "Mga available na Unit", + "listings.waitlist.currentSize": "Kasalukuyang Sukat ng Waitlist", + "listings.waitlist.finalSize": "Panghuling Sukat ng Waitlist", + "listings.waitlist.openSlots": "Mga Bukas na Slot ng Waitlist", + "listings.waitlist.isOpen": "Bukas ang Waitlist", + "listings.waitlist.submitForWaitlist": "Magsumite ng aplikasyon para sa bukas na slot ng waitlist", + "nav.siteTitle": "Portal ng Pabahay ng County ng Alameda", + "nav.getFeedback": "Gusto naming makuha ang", + "nav.yourFeedback": "iyong feedback!", + "pageTitle.additionalResources": "Karagdagang Mga Oportunidad at Mapagkukunan ng Pabahay", + "pageTitle.howItWorks": "Paano ito gumagana", + "pageDescription.additionalResources": "Hinihikayat ka naming mag-browse ng iba pang mapagkukunan ng abot-kayang pabahay", + "pageDescription.getAssistance": "Matuto nang higit pa tungkol sa paghahanap at pag-aplay para sa abot-kayang pagkakataon sa pag-upa, at maghanap ng mga karagdagang listahan ng pabahay.", + "pageDescription.howItWorks": "Alamin kung paano ka makakahanap at makakapag-apply para sa abot-kayang pagkakataon sa pag-upa.", + "region.name": "Alameda County", + "timeout.afterMessage": "Pinapahalagahan namin ang iyong seguridad. Tinapos namin ang iyong session dahil sa kawalan ng aktibidad. Mangyaring magsimula ng bagong application upang magpatuloy.", + "t.units": "Mga Unit", + "welcome.howDoesItWork": "Paano ito ginagawa?", + "welcome.learnHowToApply": "Alamin paano mo mahahanap at makakapag-apply sa abot-kayang oportunidad ng pagrenta.", + "welcome.readAboutHowItWorks": "Basahin ang tungkol sa kung paano ito gumagana", + "whatToExpect.waitlist": "

Ang mga aplikante ay nag-a-apply para sa bukas na waitlist at hindi sa kasalukuyang bakanteng apartment.

Ang mga aplikante ay nag-a-apply para sa bukas na waitlist at hindi sa kasalukuyang bakanteng apartment.

Kapag tinawagan ka ng tagapangasiwa ng property, ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin ang inyong pagiging kwalipikado.

", + "whatToExpect.waitlistReadMore": "

Ang mga pagpipilian sa pabahay ay makakaapekto sa waitlist order, kung mayroon man.

Ang inyong application ay maaaring tanggalin mula sa waitlist kung nagsagawa kayo ng anumang panlilinlang na pahayag. Para sa mga property na may pagpipiliang pabahay, kapag hindi namin ma-verify ang inyong pagpipilian na inyong nakuha, hindi kayo tatanggap ng mapagpipilian pero hindi kayo pagmumultahin.

Kapag tinawagan kayo ng tagapangasiwa ng property, maghanda para sagutan ang higit pang detalyadong aplikasyon at ibigay ang kinakailangang karagdagang mga dokumento.

", + "whatToExpect.lottery": "

Ang mga aplikante ay nag-a-apply para makapasok sa lottery para sa kasalukyuang mga bakanteng apartment.

Kapag nagsara na ang oras ang aplikasyon, ang mga kwalipikadong aplikante ay ilalagay sa pila batay sa ranggo ng lottery.

Ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin ang inyong pagiging kwalipikado.

", + "whatToExpect.lotteryReadMore": "

Ang mga pagpipilian sa pabahay ay makakaapekto sa order ng waitlist, kung naaangkop.

Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag. Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.

Kapag tinawagan kayo ng tagapangasiwa ng property, maghanda para sagutan ang higit pang detalyadong aplikasyon at ibigay ang kinakailangang karagdagang mga dokumento.

", + "whatToExpect.fcfs": "

Ang mga aplikante ay nag-a-apply para makapasok sa lottery para sa kasalukyuang mga bakanteng apartment.

Ang mga kwalipikadong aplikante ay ilalagay sa waitlist sa batayang first come first serve hanggang sa mapuno ang mga puwesto ng waitlist.

Ang lahat ng impormasyon na inyong ibinigay ay i-ve-verify at kukumpirmahin ang inyong pagiging kwalipikado.

", + "whatToExpect.fcfsReadMore": "

Ang mga pagpipilian sa pabahay ay makakaapekto sa order ng waitlist, kung naaangkop.

Ang inyong aplikasyon ay maaaring tanggalin kapag gumawa kayo ng mga hindi totoong pahayag. Para sa mga property na may mga pagpipilian sa pabahay, kapag hindi namin ma-verify ang pagpipilian sa pabahay na nakuha mo, hindi mo matatanggap ang napili pero hindi ka magmumulta.

Kapag tinawagan ka para sa isang interbyu, hihilingin sa inyo na sagutan nang mas detalyado ang aplikasyon at magbigay ng karagdagang mga dokumento.

", + "additionalResources.immediateHousing.title": "Agarang Tulong sa Pabahay", + "additionalResources.immediateHousing.description": "Kung tinatakasan mo ang karahasan sa tahanan, seksuwal na pag-asulto o pangangalakal ng tao at nasa agarang panganib, tumawag sa 911.", + "additionalResources.alaCountyHCD.title": "Alameda County Housing & Community Development (HCD) Mga Programa ng Pabahay", + "additionalResources.alaHousingAuthorities.title": "Mga Awtoridad ng Pabahay sa Alameda County", + "additionalResources.alaHousingAuthorities.description": "Karaniwang pinangangasiwaan ng mga Public Housing Authority (PHA) ang dalawang programa na nagbibigay ng direktang tulong sa mga nangungupahan: pangangasiwa sa mga yunit ng pampublikong pabahay, at pangangasiwa sa programa ng Seksyon 8 Housing Choice Voucher. Gayunpaman, ang ilan sa mga PHA ay hindi na namamahala sa mga pampublikong yunit, at ang laki ng mga programang ito ay maaaring magbago nang malawakan. Makipag-ugnayan sa iyong lokal na PHA upang malaman kung paano sila maaaring makatulong sa iyo.", + "additionalResources.cityRegionServices.title": "Mga Serbisyong Nauugnay sa Lungsod at Rehiyon", + "additionalResources.cityRegionServices.description": "Kapag binago ang mga detalye, makikita mo ang pinaka-updated na impormasyon sa mga oras ng drop-in office." +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/vi.json b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/vi.json new file mode 100644 index 0000000000..44885ab21a --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/vi.json @@ -0,0 +1,98 @@ +{ + "alert.maintenance": "Cơ quan Quản lý Nhà ở Quận Alameda (HACA) sẽ mở danh sách chờ từ ngày 2 tháng 4 đến ngày 5 tháng 4. Tìm hiểu thêm tại www.haca.net.", + "application.contact.doYouWorkIn": "Quý vị có làm việc tại %{county} không?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "Họ có làm việc tại %{county} không?", + "application.household.member.workInRegionNote": "", + "application.review.confirmation.whatHappensNext.fcfs": "### Điều gì sẽ xảy ra tiếp theo?\n\n* Những người nộp đơn hội đủ điều kiện sẽ được liên lạc trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.\n\n* Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự ai đến trước được phục vụ trước.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.", + "application.review.confirmation.whatHappensNext.lottery": "### Điều gì sẽ xảy ra tiếp theo?\n\n* Sau khi thời gian nộp đơn kết thúc, những người nộp đơn hội đủ điều kiện sẽ được sắp xếp theo thứ tự dựa trên xếp hạng rút thăm.\n\n* Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự xếp hạng rút thăm.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.", + "application.review.confirmation.whatHappensNext.waitlist": "### Điều gì sẽ xảy ra tiếp theo?\n\n* Những người nộp đơn hội đủ điều kiện sẽ được ghi tên vào danh sách chờ trên cơ sở ai đến trước được phục vụ trước cho đến khi các vị trí trong danh sách chờ được lấp đầy.\n\n* Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự trong danh sách chờ.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Chúng tôi có thể liên lạc với quý vị khi quý vị đang ở trong danh sách chờ để xác nhận rằng quý vị muốn tiếp tục ở lại trong danh sách chờ.", + "application.review.terms.textSubmissionDate": "Đơn đăng ký phải được nộp bởi %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* Những người nộp đơn đang đăng ký cho các căn hộ hiện đang trống trên cơ sở ai đến trước được phục vụ trước.\n\n* Những người nộp đơn hội đủ điều kiện sẽ được liên lạc trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.\n\nĐể biết thêm thông tin, vui lòng liên hệ với nhà phát triển nhà ở hoặc người quản lý toàn nhà theo thông tin được đăng trong niêm yết.\n\nViệc hoàn thành đơn đăng ký này không cho phép quý vị có được nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả các ứng viên sẽ được thẩm định như đã nêu trong văn bản Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến của mình sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.review.terms.lottery.text": "* Những người nộp đơn đang đăng ký tham gia cuộc rút thăm cho các căn hộ hiện đang được bỏ trống.\n\n* Sau khi thời gian nộp đơn kết thúc, những người nộp đơn hội đủ điều kiện sẽ được sắp xếp theo thứ tự dựa trên xếp hạng rút thăm.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.\n\nĐể biết thêm thông tin, vui lòng liên hệ với nhà phát triển nhà ở hoặc người quản lý toàn nhà theo thông tin được đăng trong niêm yết.\n\nViệc hoàn thành đơn đăng ký này không cho phép quý vị có được nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả các ứng viên sẽ được thẩm định như đã nêu trong văn bản Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến của mình sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.review.terms.waitlist.text": "* Người nộp đơn đang đăng ký vào danh sách chờ đang mở và hiện chưa phải là căn hộ trống.\n\n* Khi có căn hộ trống, người quản lý tòa nhà sẽ liên lạc với những người nộp đơn hội đủ điều kiện trên cơ sở ai đến trước được phục vụ trước.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.\n\n* You may be contacted while on the waitlist to confirm that you wish to remain on the waitlist.\n\nĐể biết thêm thông tin, vui lòng liên hệ với nhà phát triển nhà ở hoặc người quản lý toàn nhà theo thông tin được đăng trong niêm yết.\n\nViệc hoàn thành đơn đăng ký này không cho phép quý vị có được nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả các ứng viên sẽ được thẩm định như đã nêu trong văn bản Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến của mình sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.preferences.dontWant": "Tôi không muốn chọn bất kỳ ưu tiên nào trong số này", + "application.preferences.dontWantSingular": "Tôi không muốn chọn tùy chọn này", + "application.preferences.liveWork.live.label": "Sống tại %{county} Ưu tiên", + "application.preferences.liveWork.live.description": "Ít nhất một thành viên trong hộ gia đình tôi sống tại Thành phố %{county}", + "application.preferences.liveWork.work.label": "Làm việc tại %{county} Ưu tiên", + "application.preferences.liveWork.work.description": "Ít nhất một thành viên trong hộ gia đình tôi đã làm việc hoặc được đề nghị làm việc tại Thành phố %{county}", + "application.preferences.liveWorkCity.live.label": "Sống ở Thành phố %{county} Ưu tiên", + "application.preferences.liveWorkCity.live.description": "Ít nhất một thành viên trong gia đình tôi sống ở Thành phố %{county}", + "application.preferences.liveWorkCity.work.label": "Làm việc tại Thành phố %{county} Ưu tiên", + "application.preferences.liveWorkCity.work.description": "Ít nhất một thành viên trong gia đình tôi làm việc ở Thành phố %{county}", + "application.preferences.displacedTenant.general.label": "Lựa chọn Ưu tiên Nhà ở dành cho Người Thuê Nhà phải Chuyển chỗ", + "application.preferences.displacedTenant.general.description": "Ít nhất một thành viên trong hộ gia đình tôi phải chuyển chỗ ở khỏi một bất động sản gia cư do hoạt động xây dựng lại bởi Cơ quan Quản lý Nhà Ở Hayward (Hayward Housing Authority), Cơ quan Tái Phát triển hay Thành phố Hayward.", + "application.preferences.displacedTenant.missionCorridor.label": "Mission Boulevard Corridor (SR 238) Lựa chọn Ưu tiên Nhà ở dành cho Người Thuê Nhà phải Chuyển chỗ", + "application.preferences.displacedTenant.missionCorridor.description": "Ít nhất một thành viên trong gia đình tôi là Người Tham gia Chương trình SR 238 theo yêu cầu của các điều khoản của Dự án Triển khai Tái Định cư SR 238. Những Người Tham gia Chương trình là người thuê nhà của các bất động sản Caltrans trước đây đã bán dọc theo Hành lang SR 238 Mission Boulevard và đang được ưu tiên cho cư ngụ khi có nhà ở mới thấp hơn giá thị trường được xây dựng trong Hành lang.", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.review.confirmation.prepareForNextSteps": "### Chuẩn bị cho các bước tiếp theo\n\nTrong khi chờ đợi, quý vị có thể làm một số việc để chuẩn bị cho các bước tiếp theo có thể xảy ra và các cơ hội trong tương lai.\n\n[Đọc về cách chuẩn bị cho các bước tiếp theo](/vi/how-it-works#chuẩn-bị-sắp-xếp)", + "application.start.whatToExpect.fcfs.steps": "1. Trước tiên, chúng tôi sẽ hỏi quý vị về những người quý vị dự định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có hội đủ điều kiện nhận bất kỳ ưu tiên nào về nhà ở giá hợp lý không, nếu có.", + "application.start.whatToExpect.fcfs.finePrint": "* Những người nộp đơn đang đăng ký cho các căn hộ hiện đang trống trên cơ sở ai đến trước được phục vụ trước.\n* Xin lưu ý rằng mỗi thành viên trong hộ gia đình chỉ có thể xuất hiện trên một đơn đăng ký cho mỗi căn hộ được niêm yết.\n* Người quản lý tòa nhà sẽ liên lạc với người nộp đơn trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.", + "application.start.whatToExpect.lottery.steps": "1. Trước tiên, chúng tôi sẽ hỏi quý vị về những người quý vị dự định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có hội đủ điều kiện nhận bất kỳ ưu tiên nào đối với rút thăm nhận nhà ở giá hợp lý không, nếu có.", + "application.start.whatToExpect.lottery.finePrint": "* Những người nộp đơn đang đăng ký tham gia cuộc rút thăm cho các căn hộ hiện đang được bỏ trống.\n* Xin lưu ý rằng mỗi thành viên trong hộ gia đình chỉ có thể xuất hiện trên một đơn đăng ký cho mỗi căn hộ được niêm yết.\n* Người đại diện tòa nhà sẽ liên lạc với người nộp đơn theo thứ tự của xếp hạng rút thăm cho đến khi hết căn hộ trống.\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.", + "application.start.whatToExpect.waitlist.steps": "1. Trước tiên, chúng tôi sẽ hỏi quý vị về những người quý vị dự định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có hội đủ điều kiện nhận bất kỳ ưu tiên nào về nhà ở giá hợp lý không, nếu có.", + "application.start.whatToExpect.waitlist.finePrint": "* Những người nộp đơn đang đăng ký vào một danh sách chờ đang mở và không phải là một căn hộ đang có sẵn.\n* Xin lưu ý rằng mỗi thành viên trong hộ gia đình chỉ có thể xuất hiện trên một đơn đăng ký cho mỗi căn hộ được niêm yết.\n* Khi có căn hộ trống, người quản lý tòa nhà sẽ liên lạc với những người nộp đơn hội đủ điều kiện trên cơ sở ai đến trước được phục vụ trước.\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.", + "footer.copyRight": "Alameda County © 2020 • Giữ Mọi Bản quyền", + "footer.disclaimer": "Tuyên bố miễn trách nhiệm", + "footer.getAssistance": "Nhận Hỗ trợ", + "footer.giveFeedback": "Đưa ra Phản hồi", + "footer.header": "Cổng thông tin về Gia cư của Quận Alameda là một dự án của", + "footer.headerUrl": "https://www.acgov.org/cda/hcd/", + "footer.headerLink": "Quận Alameda - Sở Gia cư và Phát triển Cộng đồng (HCD)", + "footer.forAdditionalOpportunities": "Để có thêm các cơ hội tại Bay Area, vui lòng truy cập:", + "footer.forGeneralInquiries": "Đối với các thắc mắc chung về chương trình, hoặc để tiếp cận các dịch vụ thông dịch cho nội dung trên trang web này qua điện thoại, quý vị có thể gọi cho HCD của Quận Alameda theo số 510-670-5404.", + "footer.forListingQuestions": "Đối với các thắc mắc về danh sách nhà và đơn ghi danh, vui lòng liên hệ với Nhân viên Đại diện Bất động sản có trên mỗi danh sách nhà.", + "footer.privacyPolicy": "Chính sách Quyền Riêng tư", + "footer.DoorwayHousingPortal": "Cổng thông tin nhà ở của Doorway", + "footer.SFHousingPortal": "Cổng thông tin về Gia cư của San Francisco", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SMCHousingPortal": "Cổng Thông Tin Gia Cư Quận San Mateo", + "footer.SMCHousingUrl": "https://smc.housingbayarea.org/", + "footer.SJHousingPortal": "Cổng Thông Tin Gia Cư Thành Phố San Jose", + "footer.SJHousingUrl": "https://housing.sanjoseca.gov/", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "XỔ SỐ", + "nav.siteTitle": "Cổng thông tin về Gia cư của Quận Alameda", + "nav.getFeedback": "Chúng tôi rất mong nhận được ", + "nav.yourFeedback": "ý kiến phản hồi của quý vị", + "nav.bonusFeedback": "", + "pageDescription.additionalResources": "Chúng tôi khuyến khích quý vị xem các nguồn thông tin trợ giúp về nhà ở giá phải chăng khác.", + "pageDescription.howItWorks": "Tìm hiểu cách tìm và đăng ký các cơ hội thuê nhà giá cả phải chăng.", + "pageTitle.additionalResources": "Các Cơ hội Nhà ở Bổ sung", + "pageTitle.howItWorks": "Cách thức hoạt động", + "region.name": "Quận Alameda", + "listings.availableUnits": "Các Đơn Nguyên Có Sẵn", + "listings.waitlist.currentSize": "Số Lượng Đơn Đăng Ký Trên Danh Sách Chờ Hiện Tại", + "listings.waitlist.finalSize": "Số Lượng Đơn Đăng Ký Trên Danh Sách Chờ Cuối Cùng", + "listings.waitlist.openSlots": "Các Vị Trí Mở Trên Danh Sách Chờ", + "listings.waitlist.isOpen": "Danh Sách Chờ Đang Mở", + "listings.waitlist.submitForWaitlist": "Gửi đơn đăng ký cho một vị trí mở trong danh sách chờ", + "additionalResources.immediateHousing.title": "Hỗ trợ nhà ở ngay lập tức", + "additionalResources.immediateHousing.description": "Nếu quý vị là nạn nhân đang trốn thoát khỏi hành vi bạo hành gia đình, tấn công tình dục hoặc buôn người và gặp nguy hiểm tức thì, hãy gọi 911.", + "additionalResources.alaCountyHCD.title": "Chương trình Nhà ở của Sở Gia cư và Phát triển Cộng đồng (HCD) Quận Alameda", + "additionalResources.alaHousingAuthorities.title": "Các cơ quan Quản lý Gia cư ở Quận Alameda", + "additionalResources.alaHousingAuthorities.description": "Các Cơ quan Quản lý Gia cư Công cộng (PHA) thường giám sát hai chương trình cung cấp hỗ trợ trực tiếp cho người thuê nhà: giám sát các căn nhà cộng đồng, và điều hành chương trình Phiếu Chọn Nhà Mục 8 (Section 8). Tuy nhiên, một số PHA không còn quản lý các căn nhà cộng đồng, và quy mô của các chương trình này cũng có thể khác biệt lớn. Vui lòng liên lạc với PHA địa phương của quý vị để xem họ có thể giúp quý vị ra sao.", + "additionalResources.cityRegionServices.title": "CÁC DỊCH VỤ LIÊN QUAN ĐẾN THÀNH PHỐ VÀ VÙNG MIỀN", + "additionalResources.cityRegionServices.description": "Khi thông tin chi tiết thay đổi, quý vị có thể xem thông tin mới nhất về giờ làm việc không cần hẹn trước.", + "t.units": "đơn nguyên", + "welcome.howDoesItWork": "Cách thức hoạt động?", + "welcome.learnHowToApply": "Tìm hiểu cách tìm và đăng ký các cơ hội thuê nhà giá cả phải chăng.", + "welcome.readAboutHowItWorks": "Đọc về cách nó hoạt động", + "whatToExpect.waitlist": "

Người nộp đơn đang đăng ký vào danh sách chờ đang mở và hiện chưa phải là căn hộ trống.

Người nộp đơn hội đủ điều kiện sẽ được ghi tên vào danh sách chờ. Khi có căn hộ trống, người quản lý tòa nhà sẽ liên lạc với người nộp đơn trên cơ sở ai đến trước được phục vụ trước.

Nếu người quản lý tòa nhà liên lạc với quý vị, tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.

", + "whatToExpect.waitlistReadMore": "

Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự trong danh sách chờ.

Đơn đăng ký của quý vị có thể bị loại khỏi danh sách chờ nếu quý vị cung cấp bất kỳ thông tin gian lận nào. Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.

Nếu người quản lý tòa nhà liên lạc với quý vị, hãy chuẩn bị để điền vào đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.

", + "whatToExpect.lottery": "

Những người nộp đơn đang đăng ký tham gia cuộc rút thăm cho các căn hộ hiện đang được bỏ trống.

Sau khi thời gian nộp đơn kết thúc, những người nộp đơn hội đủ điều kiện sẽ được sắp xếp theo thứ tự dựa trên xếp hạng rút thăm.

Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.

", + "whatToExpect.lotteryReadMore": "

Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự xếp hạng rút thăm.

Đơn đăng ký của quý vị có thể bị loại khỏi danh sách chờ nếu quý vị cung cấp bất kỳ thông tin gian lận nào. Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.

Nếu người quản lý tòa nhà liên lạc với quý vị, tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.

", + "whatToExpect.fcfs": "

Những người nộp đơn đang đăng ký cho các căn hộ hiện đang trống trên cơ sở ai đến trước được phục vụ trước.

Những người nộp đơn hội đủ điều kiện sẽ được liên lạc trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.

Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.

", + "whatToExpect.fcfsReadMore": "

Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự ai đến trước được phục vụ trước.

Đơn đăng ký của quý vị có thể bị loại khỏi danh sách chờ nếu quý vị cung cấp bất kỳ thông tin gian lận nào. Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.

Nếu người quản lý tòa nhà liên lạc với quý vị, tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/zh.json b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/zh.json new file mode 100644 index 0000000000..da933d4ac2 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/locale_overrides/zh.json @@ -0,0 +1,101 @@ +{ + "alert.maintenance": "阿拉米達住房管理局 (HACA) 將於 4 月 2 日至 5 日開放候補名單。了解更多信息,請訪問 www.haca.net。", + "application.contact.doYouWorkIn": "您是否在 %{county} 工作?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "他們是否在 %{county} 工作?", + "application.household.member.workInRegionNote": "", + "application.review.confirmation.whatHappensNext.fcfs": "### 接下來會發生什麼?\n\n* 我們將按照「先申請先入住」的原則聯絡合格的申請人,直至空置房被入住為止。\n\n* 住房優惠(如果適用)將影響「先申請先入住」順序。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。", + "application.review.confirmation.whatHappensNext.lottery": "### 接下來會發生什麼?\n\n* 一旦申請期結束,合格的申請人將按抽籤名次進行排序。\n\n* 住房優惠(如果適用)將影響抽籤名次。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。", + "application.review.confirmation.whatHappensNext.waitlist": "### 接下來會發生什麼?\n\n* 合格的申請人將按照「先申請先入住」的原則進入候補名單,直至候補名單額滿為止。\n\n* 住房優惠(如果適用)將影響候補名單的順序。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們可能會在您進入候補名單時與您聯絡,確認您希望繼續留在候補名單上。", + "application.review.terms.textSubmissionDate": "此申請必須在以下時間之前提交 %{applicationDueDate}。", + "application.review.terms.fcfs.text": "* 申請人按照「先申請先入住」的原則申請目前空置的公寓。\n\n* 我們將按照「先申請先入住」的原則聯絡合格的申請人,直至空置房被入住為止。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。\n\n如需更多資訊,請聯絡名單上載明的房屋開發商或物業經理。\n\n填寫此申請並不意味著您有權獲得住房或者表示您有資格獲得住房。所有申請人都將按照物業的「房客選擇準則」進行篩選。\n\n線上申請提交後,您將無法更改。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.review.terms.lottery.text": "* 申請人將申請參與抽籤,以獲得目前空置的公寓。\n\n* 一旦申請期結束,合格的申請人將按抽籤名次進行排序。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。\n\n如需更多資訊,請聯絡名單上載明的房屋開發商或物業經理。\n\n填寫此申請並不意味著您有權獲得住房或者表示您有資格獲得住房。所有申請人都將按照物業的「房客選擇準則」進行篩選。\n\n線上申請提交後,您將無法更改。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.review.terms.waitlist.text": "* 申請人申請的是開放的候補名單,而不是當前可用的公寓。\n\n* 當出現空置房時,物業經理會按照「先申請先入住」的原則與合格的申請人聯絡。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。\n\n* 我們可能會在您進入候補名單時與您聯絡,確認您希望繼續留在候補名單上。\n\n如需更多資訊,請聯絡名單上載明的房屋開發商或物業經理。\n\n填寫此申請並不意味著您有權獲得住房或者表示您有資格獲得住房。所有申請人都將按照物業的「房客選擇準則」進行篩選。\n\n線上申請提交後,您將無法更改。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.start.whatToExpect.fcfs.steps": "1. 首先,我們將詢問您打算和誰住在一起。\n2. 然後,我們會詢問您的收入。\n3. 最後,我們將瞭解您是否有資格享受任何經濟適用房優惠(如果適用)。", + "application.start.whatToExpect.fcfs.finePrint": "* 申請人按照「先申請先入住」的原則申請目前空置的公寓。\n* 請注意,對于每個名單,每個家庭成員只能出現在一個申請中。\n* 物業經理會按照「先申請先入住」的原則與申請人聯絡,直至空置房被入住為止。\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。", + "application.start.whatToExpect.lottery.steps": "1. 首先,我們將詢問您打算和誰住在一起。\n2. 然後,我們會詢問您的收入。\n3. 最後,我們將瞭解您是否有資格獲得任何經濟適用房抽籤優惠(如果適用)。", + "application.start.whatToExpect.lottery.finePrint": "* 申請人將申請參與抽籤,以獲得目前空置的公寓。\n* 請注意,對于每個名單,每個家庭成員只能出現在一個申請中。\n* 物業代理會按抽籤順序與申請人聯絡,直至空置房被入住為止。\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。", + "application.start.whatToExpect.waitlist.steps": "1. 首先,我們將詢問您打算和誰住在一起。\n2. 然後,我們會詢問您的收入。\n3. 最後,我們將瞭解您是否有資格享受任何經濟適用房優惠(如果適用)。", + "application.start.whatToExpect.waitlist.finePrint": "* 申請人申請的是開放的候補名單,而不是當前可用的公寓。\n* 請注意,對于每個名單,每個家庭成員只能出現在一個申請中。\n* 當出現空置房時,物業經理會按照「先申請先入住」的原則與合格的申請人聯絡。\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。", + "application.preferences.dontWant": "我不想使用這些優先權", + "application.preferences.dontWantSingular": "我不想要这个偏好", + "application.preferences.liveWork.live.label": "住在 %{county} 的優先權", + "application.preferences.liveWork.live.description": "我家至少有一人住在 %{county}", + "application.preferences.liveWork.work.label": "在 %{county} 工作優先權", + "application.preferences.liveWork.work.description": "我家至少有一人在 %{county}工作或獲得工作機會", + "application.preferences.liveWorkCity.live.label": "住在阿拉米达市的偏好", + "application.preferences.liveWorkCity.live.description": "我的至少一名家庭成员住在阿拉米达市", + "application.preferences.liveWorkCity.work.label": "在阿拉米达市工作", + "application.preferences.liveWorkCity.work.description": "我的至少一名家庭成员在阿拉米达市工作", + "application.preferences.displacedTenant.general.label": "無居所租客房屋優先權", + "application.preferences.displacedTenant.general.description": "由於 %{county} 房屋管理局、重建管理局或 %{county} 市政府進行重建活動,我家至少有一人被迫搬出住宅物業。", + "application.preferences.displacedTenant.missionCorridor.label": "Mission Boulevard Corridor (SR 238) 無居所租客房屋優先權", + "application.preferences.displacedTenant.missionCorridor.description": "根據 SR 238 和解實施項目條款規定,我家至少有一人是 SR 238 計劃參與者。計劃參與者是 SR 238 Mission Boulevard 走廊沿線先前已出售的 Caltrans 物業租戶;此走廊興建低於市價的全新住房時,計劃參與者有入住優先權。", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.review.confirmation.prepareForNextSteps": "### 準備進行後續步驟\n\n等待期間,您可以做一些事情為可能的後續步驟和日後機會準備就緒。\n\n[進一步閱讀如何準備進行後續步驟](/zh/how-it-works#準備好進行安置)", + "application.start.whatToExpect.steps": "1. 首先,我們會詢問您預計同住的人員。\n2. 接著,我們會詢問您的收入。\n3. 最後,我們就會知道您是否符合任何可負擔住房抽籤優先順序的資格。", + "application.start.whatToExpect.finePrint": "* 請注意,申請每個刊登資訊時,每位家戶成員只能出現一次。\n* 您提供的所有資訊會經過驗證,且您的資格會受到確認。\n* 如果您提出任何虛假陳述,申請即會遭到移除。\n* 如果我們無法驗證您聲稱的住房優先權利,您將無法取得優先權利,但也不會受罰。", + "application.review.terms.text": "* 提交所有申請後,房地產經理即會開始受理申請。\n\n* %{reviewOrder}\n\n* 如果您收到面談聯絡,您將填寫更詳細的申請並提供佐證文件。\n\n* 您提供的所有資訊會經過驗證,且您的資格會受到確認。\n\n* 如果您提出任何虛假陳述,申請即會遭到移除。\n\n* 如果我們無法驗證您聲稱的住房優先權利,您將無法取得優先權利,但也不會受罰。\n\n如需更多資訊,請聯絡於刊登資訊中發佈的開發商或仲介人員。\n\n填寫此住房申請不會讓您有權享受住房,亦不表示您符合住房資格。所有申請人皆必須接受如房地產中居民遴選標準概述內容的篩選程序。\n\n您在提交文件後無法變更線上申請。\n\n我聲明前述內容皆為真實且準確,且知悉此次申請如有任何虛假或過失陳述,即可能導致失去抽籤資格。", + "footer.copyRight": "阿拉米達縣 © 2020 • 版權所有", + "footer.disclaimer": "免責聲明", + "footer.getAssistance": "尋求協助", + "footer.giveFeedback": "提供回饋意見", + "footer.header": "阿拉米達縣房屋網站", + "footer.headerUrl": "https://www.acgov.org/cda/hcd/", + "footer.headerLink": "是阿拉米達縣房屋及社區發展部 (HCD) 推出的項目", + "footer.forAdditionalOpportunities": "查詢灣區其他住房機會,請瀏覽:", + "footer.forGeneralInquiries": "一般計劃查詢,或者想透過電話使用翻譯服務以了解本網站的內容,您可以致電 510-670-5404 聯絡阿拉米達縣房屋及社區發展部 (HCD)。", + "footer.forListingQuestions": "若有上市名單和申請方面的疑問,請聯絡每個上市名單上顯示的物業經紀人。", + "footer.privacyPolicy": "隱私權政策", + "footer.DoorwayHousingPortal": "Doorway 房屋門戶", + "footer.SFHousingPortal": "三藩市房屋網站", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SMCHousingPortal": "聖馬刁郡住屋平台", + "footer.SMCHousingUrl": "https://smc.housingbayarea.org/", + "footer.SJHousingPortal": "聖荷西巿住屋平台", + "footer.SJHousingUrl": "https://housing.sanjoseca.gov/", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "抽籤", + "nav.siteTitle": "阿拉米達縣房屋網站", + "nav.getFeedback": "我們希望獲得 ", + "nav.yourFeedback": "您的回饋意見", + "nav.bonusFeedback": "!為感謝您花時間提供回饋意見,您可獲得一張禮品卡。", + "pageDescription.additionalResources": "我們建議您瀏覽其他可負擔房屋資源。", + "pageDescription.howItWorks": "了解如何尋找並申請可負擔的租屋機會。", + "pageTitle.additionalResources": "其他住房機會", + "pageTitle.howItWorks": "運作方式", + "region.name": "阿拉米達縣", + "listings.availableUnits": "可用單元", + "listings.waitlist.currentSize": "當前候補名單人數", + "listings.waitlist.finalSize": "最終候補名單人數", + "listings.waitlist.openSlots": "開放的候補名單名額", + "listings.waitlist.isOpen": "候補名單處於開放狀態", + "listings.waitlist.submitForWaitlist": "提交候補名單空缺名額申請表", + "additionalResources.immediateHousing.title": "即時住房援助", + "additionalResources.immediateHousing.description": "如果您正在逃離家庭暴力、性侵害,或人口販賣,而且處於直接危險之中,請撥打 911。", + "additionalResources.alaCountyHCD.title": "Alameda 縣房屋及社區發展部 (Housing & Community Development, HCD) 住宅計畫", + "additionalResources.alaHousingAuthorities.title": "阿拉米逹縣內房屋管理局", + "additionalResources.alaHousingAuthorities.description": "公共房屋管理局 (PHA) 通常監督直接幫助租戶的兩個計劃,即監督公營房屋單位以及管理 第 8 條款自選住房補助券計劃。不過,一些 PHA 已不再管理公營單位,而這些計劃的規模也可能相差很大。請聯絡您當地的 PHA,以了解他們可以協助您的方法。", + "additionalResources.cityRegionServices.title": "城市及地區相關服務", + "additionalResources.cityRegionServices.description": "隨著詳細資訊的變化,您可以查看有關免預約辦公室辦公時間的最新資訊。", + "t.units": "單元", + "welcome.howDoesItWork": "運作方式?", + "welcome.learnHowToApply": "了解如何尋找並申請可負擔的租屋機會。", + "welcome.readAboutHowItWorks": "閱讀它是如何工作的", + "whatToExpect.waitlist": "

申請人申請的是開放的候補名單,而不是目前空置的公寓。

合格的申請人將被列入候補名單。當出現空置房時,物業經理會按照「先申請先入住」的原則與申請人聯絡。

如果物業經理與您聯絡,我們將對您提供的所有資訊進行核實,並確認您的資格。

", + "whatToExpect.waitlistReadMore": "

住房優惠(如果適用)將影響候補名單的順序。

如果您做出了任何欺詐性陳述,您的申請可能會被從候補名單中刪除。對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。

如果物業經理與您聯絡,請準備好填寫更詳細的申請表,並提供所需的證明文件。

", + "whatToExpect.lottery": "

申請人將申請參與抽籤,以獲得目前空置的公寓。

一旦申請期結束,合格的申請人將按抽籤名次進行排序。

我們會驗證您所提供的所有資訊並確認您的資格。

", + "whatToExpect.lotteryReadMore": "

住房優惠(如果適用)將影響抽籤名次。

如果您做出了任何欺詐性陳述,您的申請可能會被從候補名單中刪除。對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。

如果物業經理與您聯絡,我們將對您提供的所有資訊進行核實,並確認您的資格。

", + "whatToExpect.fcfs": "

申請人按照「先申請先入住」的原則申請目前空置的公寓。

我們將按照「先申請先入住」的原則聯絡合格的申請人,直至空置房被入住為止。

我們會驗證您所提供的所有資訊並確認您的資格。

", + "whatToExpect.fcfsReadMore": "

住房優惠(如果適用)將影響「先申請先入住」順序。

如果您做出了任何欺詐性陳述,您的申請可能會被從候補名單中刪除。對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。

如果物業經理與您聯絡,我們將對您提供的所有資訊進行核實,並確認您的資格。

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/privacy_policy.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/privacy_policy.md new file mode 100644 index 0000000000..76d4db7d5e --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/privacy_policy.md @@ -0,0 +1,173 @@ +Alameda County Housing Portal is a platform to connect renters and property managers to subsidized affordable housing opportunities. At Alameda County Housing Portal your privacy is important to us, so we strive to be transparent about how we collect, use and share information about you. This policy is intended to help you understand: + +1. [WHAT INFORMATION WE COLLECT](#information-collect) +2. [HOW WE USE INFORMATION](#information-use) +3. [HOW WE SHARE INFORMATION](#share-information) +4. [HOW WE STORE INFORMATION](#store-information) +5. [HOW TO ACCESS AND CONTROL YOUR INFORMATION](#access-information) +6. [ADDITIONAL IMPORTANT PRIVACY MATTERS](#additional) +7. [HOW TO CONTACT US](#contact) + +
+ +Please take a moment to read this privacy policy carefully so that you can understand your rights and our responsibilities regarding your information. This policy also explains your choices about how we use information about you. By using the Service, you consent to the collection and use of information in accordance with this Privacy Policy. + +This Privacy Policy (this “Privacy Policy”) governs your use of the Alameda County Housing Portal website (the “Services” or “Site”) which is owned and operated by the County of Alameda (the “Jurisdiction”). The Jurisdiction is sometimes referred to herein as “we,” “us,” or “our” and the applicant, developer, property manager, City, or other user (collectively the “User”) (as defined below) is sometimes referred to as “you,” “your,” or “customer. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms of Service. + +

1. WHAT INFORMATION WE COLLECT

+ +##### Definitions + +We require certain information to provide our Services to you. For example, you may be required to have an account in order to interact with certain aspects of the Services. When you choose to share the information below with us, we collect and use it to operate our Services. "Personal Data" means data that allows someone to identify or contact you, including, for example, your name, address, telephone number, e-mail address, travel preferences, specific expenses, as well as any other non-public information about you that is associated with or linked to any of the foregoing data. "Anonymous Data" means data that is not associated with or linked to your Personal Data; Anonymous Data does not permit the identification of individual persons. As used in this document, the general term “information” includes all data provided by you or collected via the Services, including both Personal Data and Anonymous Data. We collect Personal Data and Anonymous Data, as described below. + +##### Information You Provide. + +When you use the Services, you will provide information that could be Personal Data, such (a) your name, email address, mobile telephone number, password for the Site, date of birth, tax identification number, schedule, picture, and other registration information; (b) information you provide us when you contact us for help; (c) any information required to ensure a User is eligible to participate in a specific program or aspect of Services; and (d) any other information you enter into the Services. + +##### Information We Collect Automatically + +We automatically receive and record information from your use of the Services, including but not limited to: Site usage, your IP address, browser type, Internet service provider, referring/exit pages, operating system, date/time stamp, clickstream data, and cookie information. Generally, the Services automatically collect usage information, such as the number and frequency of users of the Services. + +##### Cookies. + +Cookies are small pieces of information that a website sends to your computer while you are viewing the website. We may use both session cookies (which expire once you close your browser) and persistent cookies (which stay on your computer/mobile phone until you delete them) to provide the Services, and to provide you with a more personal and interactive experience on our Site. We use cookies to enable our servers to recognize your web browser and tell us how and when you use the Services. Most browsers have an option for turning off the cookie feature, which will prevent your browser from accepting new cookies, as well as (depending on the sophistication of your browser software) allowing you to decide on acceptance of each new cookie in a variety of ways. You will not be able to take advantage of the most attractive features of the Services if you disable your cookies. + +##### Pixel Tags. + +Pixel Tags (also referred to as clear Gifs, Web beacons, or Web bugs). Pixel Tags are tiny graphic images with a unique identifier, similar in function to Cookies, that are used to track online movements of Web users. In contrast to Cookies, which are stored on a user’s computer hard drive, Pixel Tags are embedded invisibly in Web pages. Pixel Tags also allow us to send e-mail messages in a format users can read, and they tell us whether e-mails have been opened to ensure that we are sending only messages that are of interest to our users. The use of a pixel allows us to record, for example, that a user has interacted with a message, visited a particular web page or clicked on a particular advertisement. We do not provide Personal Data to any advertising networks for use outside of the Services. + +##### Analytics. + +We use third party analytics services, including but not limited to Google Analytics ("Analytics Services"), to help analyze how users use our Site and Services. We use the information we get from Analytics Services only to improve our Site and Services. The information generated by the Cookies or other technologies about your use of our Site and Services (the "Analytics Information") is transmitted to the Analytics Services. The Analytics Services use Analytics Information to compile reports on user activity. The Analytics Services may also transfer the Analytics Information to third parties where required to do so by law, or where such third parties process Analytics Information on their behalf. Each Analytics Service’s ability to use and share Analytics Information is restricted by such Analytics Service’s Terms of Use and Privacy Policy. By using our Site and Services, you consent to the processing of data about you by Analytics Services in the manner and for the purposes set out above. For a full list of Analytics Services, please contact us at ACHousingPortal@edenir.org. + +##### Third Party Data. + +We may receive and/or share Personal and/or Anonymous Data about you to companies that help us provide our Services by way of a co-branded or private-labeled website or companies that offer their products and/or services on our Services (e.g., housing developers and property managers). These third party companies may receive Personal Data and Anonymous Data. They will only use such data in compliance with our security and privacy standards set forth in this Privacy Policy. + +

2. HOW WE USE THE INFORMATION

+ +We strive to ensure that we protect your privacy rights as we process your information. We take your privacy rights seriously. Below are the specific purposes for which we use the information we collect about you. + +##### To provide the Services and personalize your experience. + +We use information about you to provide the Services to you, including to process applications for services and related transactions with you, authenticate you when you log in, provide customer support, and operate and maintain the Services. + +##### For research and development. + +We are always looking for ways to make our Services smarter, faster, more secure, integrated and useful to you. In addition, we intend to use the Aggregate Information (as described below) to positively influence housing policy. To that end, we use collective learnings about how people use our Services and feedback provided directly to us to troubleshoot and to identify trends, usage, activity patterns and areas for integration and improvement of the Services. + +##### To communicate with you about the Services. + +We use your contact information to send transactional communications via email or chat and within the Services, including questions and requests, providing customer support, and sending you technical notices, product updates, security alerts, administrative and other messages. + +##### To market, promote, and drive engagement with the Services. + +We use your contact information and information about how you use the Services to send promotional communications that may be of specific interest to you, including by email. These communications are aimed at driving engagement and maximizing what you get out of the Services, including information about new features, survey requests, events and other information we think may be of interest to you. We also communicate with you about new product offers and new services. + +##### Conducting surveys and collecting feedback about our Services. + +We do this to pursue our legitimate interests to understand if the Services are helpful to you and to evaluate the effectiveness of any updates we provide. + +##### Customer support. + +We use your information to resolve technical issues you encounter, to respond to your requests for assistance, to analyze crash information, and to repair and improve the Services. We also use your information to provide requested assistance (either originated from you, or a person acting legitimately on your behalf) and to offer proactive support when necessary. + +##### For safety and security. + +We use information about you and your Service use to verify accounts and activity, to monitor suspicious or fraudulent activity and to identify violations of Service policies. + +##### To protect the public interests and legal rights. + +Where required by law, where we believe it is in the public interest, or where it is necessary to protect our legal rights, interests and the interests of others, we use information about you in connection with legal claims, compliance, regulatory, and audit functions. + +##### With your consent. + +We use information about you where you have given us consent to do so for a specific purpose not listed above. For example, we may publish testimonials or featured customer stories to promote the Services, with your permission. + +##### Additional purposes. + +We may process your information for any other purpose disclosed to you in connection with our Services from time to time. If we intend to process your personal data for a purpose other than that set out above, we will provide you with information prior to such processing and will obtain your consent where necessary. + +##### Determining eligibility. + +We use your information to determine your eligibility for the Service. + +##### Providing access to services. + +We use your information to provide you with access to the services you have applied to such as access to housing. + +

3. HOW WE SHARE INFORMATION

+ +We may share your information with our third-party service providers, including property managers and developers and staff from Alameda County cities and our Agents, to comply with legal obligations, to protect and defend our rights and property, ensure the functionality of the Site, or with your permission. Below are the specific ways we share information we collect about you. + +##### User Profile Information. + +User profile information including your name, email, phone number and other information you enter may be displayed to other users to facilitate user interaction within the Services (for example, to enable property managers to contact you about housing opportunities). + +##### Information Shared with Our Agents. + +We employ and contract with people and other entities that perform certain tasks on our behalf and who are under our control (our “Agents”), including companies to build and maintain the Site. We may need to share Personal Data with our Agents in order to provide products or services to you. Unless we tell you differently, our Agents do not have any right to use Personal Data or other information we share with them beyond what is necessary to assist us. You hereby consent to our sharing of Personal Data with our Agents. + +##### IP Address Information. + +While we collect and store IP address information, that information is not made public. We do at times, however, share this information with our partners, service providers and other persons with whom we conduct business, and as otherwise specified in this Privacy Policy. + +##### Aggregate Information. + +We share Aggregate Information with our agents, partners, and service providers. We share this type of statistical data so that our partners can understand how and how often people use our Services and their services or websites, which facilitates improving both their services and how our Services interface with them. In addition, these third parties may share with us non-private, aggregated or otherwise non-Personal Data about you that they have independently developed or acquired. + +##### Information Disclosed for Our Protection, the Protection of Others and Legal Requirements. + +We also reserve the right to access, read, preserve, and disclose any information as it reasonably believes is necessary to (i) satisfy any applicable law, regulation, legal process or governmental request, (ii) enforce our Terms of Service, including investigation of potential violations hereof, (iii) detect, prevent, or otherwise address fraud, security or technical issues, (iv) respond to user support requests, or (v) protect our rights, property or safety, our users and the public. This includes exchanging information with other companies and organizations for fraud protection and spam/malware prevention. + +##### Information We Share with Your Consent: + +We will share your Personal Data with any relevant party you have granted us permission to share with. + +

4. HOW WE STORE AND SECURE INFORMATION

+ +Keeping your information secure is a top priority for us. To that end we comply with industry-standard best practices to secure your information. We use data hosting service providers in the United States to host the information we collect, and we use technical measures to secure your data. While we implement safeguards designed to protect your information, no security system is impenetrable and due to the inherent nature of the internet, we cannot guarantee that data, during transmission through the internet or while stored on our systems or otherwise in our care, is absolutely safe from intrusion by others. How long we keep information we collect about you depends on the type of information, as described in further detail below. After such time, we will either delete or anonymize your information or, if this is not possible (for example, because the information has been stored in backup archives), then we will securely store your information and isolate it from any further use until deletion is possible. + +##### Account Information. + +We retain your Personal Data only as long as necessary to accomplish the purpose for which it was collected or to comply with our legal and contractual obligations, plus 1 year, and then securely dispose of that information. We also retain some of your information as necessary to comply with our legal obligations, to resolve disputes, to enforce our agreements, to support operations and to continue to develop and improve our Services. Where we retain information for Service improvement and development, we take steps to eliminate information that directly identifies you, and we only use the information to uncover collective insights about the use of our Services, not to specifically analyze personal characteristics about you. + +##### Information You Share on the Services + +If your account is deactivated or disabled, some of your Personal Data and Anonymous Data and the content you have provided will remain. + +##### Marketing information + +If you have elected to receive marketing emails from us, we retain information about your marketing preferences unless you specifically ask us to delete such information. We retain information derived from cookies and other tracking technologies for a reasonable period of time from the date such information was created. + +##### Property Managers and Developers. + +If you are a property manager or developer using the Services and gain access to another user’s Personal Data, you agree to store and secure that Personal Data in compliance with the standards set forth in this Privacy Policy. + +

5. HOW TO ACCESS AND CONTROL YOUR INFORMATION

+ +You can stop all further collection of information by discontinuing use of the Service. + +

6. ADDITIONAL IMPORTANT PRIVACY MATTERS

+ +##### Minimum Age. + +The Services are not directed to individuals under 18. We do not knowingly collect Personal Data from children under 18. If we become aware that a child under 18 has provided us with Personal Data, we will take steps to delete such information. If you become aware that a child has provided us with Personal Data, please contact our support services. + +##### Security: + +We are concerned about safeguarding the confidentiality of your Personal Data. We provide physical, electronic, and procedural safeguards to protect information we process and maintain and use a combination of firewall barriers, encryption techniques and authentication procedures. For example, we limit access to your Personal Data to authorized employees and contractors who need to know that information in order to operate, develop or improve our Services. Please be aware that, although we endeavor to provide reasonable security for information we process and maintain, no security system can prevent all potential security breaches. + +##### Links to Other Sites. + +Our Service may contain links to other sites that are not operated by us. If you click on a third-party link, you will be directed to that third party's site. We strongly advise you to review the privacy policy of every site you visit. We have no control over, and assume no responsibility for the content, privacy policies or practices of any third-party sites or services. + +##### Changes to this Privacy Policy. + +We will notify you when we change this Privacy Policy. We may change this Privacy Policy from time to time. If we make significant changes in the way we treat your Personal Data, or to the Privacy Policy, we will provide notice to you on the Services or by some other means, such as email. Please review the changes carefully. If you agree to the changes, simply continue to use our Services. Your continued use of our Services after the revised Privacy Policy has become effective indicates that you have read, understood, and agreed to the current version of this Policy. If you object to any of the changes to our terms and you no longer wish to use our Services, you may close your account(s). Unless stated otherwise, our current Privacy Policy applies to all information that we have about you and your account. Using our Services after a notice of changes has been communicated to you or published on our Services shall constitute consent to the changed terms or practices. + +

7. CONTACT US

+ +##### Contacting us: + +If you have any questions, please don’t hesitate to contact us at: ACHousingPortal@edenir.org. diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acAntiDisplacement.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acAntiDisplacement.md new file mode 100644 index 0000000000..faa26f5eb3 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acAntiDisplacement.md @@ -0,0 +1,30 @@ + +### [AC Housing Secure - Anti-Displacement Program](https://www.centrolegal.org/achousingsecure/) + +Provides free legal services and emergency financial assistance to tenants and homeowners. + + + +### [AC Housing Secure - Programa antidesplazamiento del Condado de Alameda](https://www.centrolegal.org/achousingsecure/) + +Proporciona servicios legales gratuitos y asistencia financiera de emergencia a inquilinos y propietarios de viviendas. + + + +### [AC Housing Secure - 阿拉米達縣反被迫遷離計劃](https://www.centrolegal.org/achousingsecure/) + +為租戶和業主提供免費法律服務和緊急財務援助。 + + + +### [AC Housing Secure - Chương trình Ngăn Chuyển chỗ ở Bắt buộc của Quận Alameda](https://www.centrolegal.org/achousingsecure/) + +Cung cấp dịch vụ pháp lý miễn phí và hỗ trợ tài chính khẩn cấp cho người thuê nhà và chủ nhà. + + + +### [AC Housing Secure - Anti-Displacement Program](https://www.centrolegal.org/achousingsecure/) + +Nagbibigay ng mga libreng serbisyong legal at pang-emerhensiyang tulong pinansyal sa mga nangungupahan at may-ari ng bahay. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acBoost.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acBoost.md new file mode 100644 index 0000000000..e37fbb717d --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acBoost.md @@ -0,0 +1,30 @@ + +### [AC Boost - Down Payment Loan Assistance Program](https://www.acboost.org/) + +Provides down payment assistance loans to eligible, middle-income, first-time homebuyers. + + + +### [AC Boost - Programa de asistencia de préstamos para pagos iniciales del Condado de Alameda](https://www.acboost.org/) + +Proporciona préstamos de asistencia para pagos iniciales a compradores de casas de ingresos medianos que compren su primera casa y reúnan los requisitos. + + + +### [AC Boost - 阿拉米達縣首期貸款援助計劃](https://www.acboost.org/) + +為符合資格、首次置業的中等收入人士提供首期貸款援助。 + + + +### [AC Boost - Chương trình Hỗ trợ Vay Tiền Trả trước của Quận Alameda](https://www.acboost.org/) + +Cung cấp hỗ trợ cho vay tiền trả trước để mua nhà cho những người lần đầu tiên mua nhà hội đủ điều kiện, có thu nhập trung bình. + + + +### [AC Boost - Down Payment Loan Assistance Program](https://www.acboost.org/) + +Nagbibigay ng mga pautang ng tulong sa paunang bayad sa mga karapat-dapat, may katamtamang kita, at mga unang beses na bumibili ng bahay. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acEmergencyRental.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acEmergencyRental.md new file mode 100644 index 0000000000..126e2f44c3 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acEmergencyRental.md @@ -0,0 +1,30 @@ + +### [AC Housing Secure - Emergency Rental Assistance Program](https://www.ac-housingsecure.org/?fbclid=IwAR0186ykll8tKe-brqbLkMHiguYJQc0buUF1o6SjhXg_EKebR9fYSJs5hus) + +If you’re an Alameda County renter who has fallen behind on rent or utilities payments due to the COVID-19 pandemic, you may qualify for assistance. Income-eligible households pay up to 15 months of rent and utilities, both for past due and future payments. + + + +### [AC Housing Secure - Programa de asistencia de alquiler de emergencia](https://www.ac-housingsecure.org/?fbclid=IwAR0186ykll8tKe-brqbLkMHiguYJQc0buUF1o6SjhXg_EKebR9fYSJs5hus) + +Si es un inquilino del condado de Alameda que se atrasó en el pago del alquiler o de los servicios públicos debido a la pandemia de COVID-19, puede calificar para recibir asistencia. Los hogares con ingresos elegibles pagan hasta 15 meses de alquiler y servicios públicos, tanto para pagos vencidos como futuros. + + + +### [AC Housing Secure - 緊急租金援助計劃](https://www.ac-housingsecure.org/?fbclid=IwAR0186ykll8tKe-brqbLkMHiguYJQc0buUF1o6SjhXg_EKebR9fYSJs5hus) + +如果您是阿拉米達縣的房客,但由於 COVID-19 大流行而拖欠房租或水電費,您可能有資格獲得援助。符合收入條件的家庭支付最多 15 個月的租金和水電費,包括逾期和未來付款。 + + + +### [AC Housing Secure - Chương trình Hỗ trợ Cho thuê Khẩn cấp](https://www.ac-housingsecure.org/?fbclid=IwAR0186ykll8tKe-brqbLkMHiguYJQc0buUF1o6SjhXg_EKebR9fYSJs5hus) + +Nếu bạn là người thuê nhà của Quận Alameda, người đã bị chậm trả tiền thuê nhà hoặc tiền điện nước do đại dịch COVID-19, bạn có thể đủ điều kiện để được hỗ trợ. Các hộ gia đình đủ điều kiện thu nhập phải trả tối đa 15 tháng tiền thuê nhà và tiền điện nước, cho cả các khoản thanh toán trong quá khứ và trong tương lai. + + + +### [AC Housing Secure - Emergency Rental Assistance Program](https://www.ac-housingsecure.org/?fbclid=IwAR0186ykll8tKe-brqbLkMHiguYJQc0buUF1o6SjhXg_EKebR9fYSJs5hus) + +Kung ikaw ay isang nangungupahan sa County ng Alameda na hindi makabayad sa upa o mga utility dahil sa pandemyang COVID-19, maaari kang maging kwalipikado para sa tulong. Ang mga sambahayan na kwalipikado ang kita ay nagbabayad ng hanggang 15 buwan ng upa at mga utilidad, kapwa para sa mga pagbabayad sa nakaraan at hinaharap. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acHomeownerServices.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acHomeownerServices.md new file mode 100644 index 0000000000..57056285cb --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acHomeownerServices.md @@ -0,0 +1,30 @@ + +### [AC Housing Secure - Homeowner Services](https://www.ac-housingsecure.org/property-owner) + +Resources for homeowners at risk of foreclosure. + + + +### [AC Housing Secure - Servicios para propietarios de viviendas](https://www.ac-housingsecure.org/property-owner) + +Recursos para propietarios en riesgo de ejecución hipotecaria. + + + +### [AC Housing Secure - 房主服務](https://www.ac-housingsecure.org/property-owner) + +為面臨喪失抵押品贖回權風險的房主提供的資源。 + + + +### [AC Housing Secure - Dịch vụ Chủ nhà](https://www.ac-housingsecure.org/property-owner) + +Tài lộc cho chủ nhà trước nguy cơ bị xiết nợ. + + + +### [AC Housing Secure - Homeowner Services](https://www.ac-housingsecure.org/property-owner) + +Mga resource para sa mga may-ari ng bahay na nanganganib na mabatak ang bahay. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acHousingPreservation.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acHousingPreservation.md new file mode 100644 index 0000000000..c0eec21cbc --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/acHousingPreservation.md @@ -0,0 +1,30 @@ + +### [Renew AC - Housing Preservation Loan Program](https://www.renewac.org/) + +Provides affordable, low-interest deferred payment loans to assist residents with making home improvements that are necessary to stay, grow, and thrive in their homes. + + + +### [Renew AC - Programa de préstamos para la preservación de la vivienda del Condado de Alameda](https://www.renewac.org/) + +Proporciona préstamos accesibles de intereses bajos y pagos diferidos para ayudar a los residentes a realizar mejoras en sus hogares que sean necesarias para permanecer, crecer y progresar en sus hogares. + + + +### [Renew AC - 阿拉米達縣房屋維護貸款計劃](https://www.renewac.org/) + +提供人們負擔得起,並可延期還款的低息貸款,幫助居民為家居進行必要的修繕,讓他們繼續留在家中生活、成長和發展。 + + + +### [Renew AC - Chương trình Cho vay để Giữ Nhà ở của Quận Alameda](https://www.renewac.org/) + +Cung cấp các khoản vay trả chậm lãi suất thấp để hỗ trợ các cư dân nâng cấp nhà cần thiết để ở, phát triển, và thịnh vượng trong nhà mình. + + + +### [Renew AC - Housing Preservation Loan Program](https://www.renewac.org/) + +Nagbibigay ng abot-kaya, mababang interes sa pagbabayad sa hindi pa nababayarang mga pautang upang tulungan ang mga residente sa paggawa ng mga pagsasaayos sa bahay na kinakailangan upang manatili, lumago, at umunlad sa kanilang mga tahanan + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/adobeServicesEast.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/adobeServicesEast.md new file mode 100644 index 0000000000..6175cc7e5b --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/adobeServicesEast.md @@ -0,0 +1,70 @@ + +### [Abode Services](https://www.abodeservices.org/) + +Unsheltered adults/families + +Call [510-371-0447](tel:+1-510-371-0447) + +Walk in at 3311 Pacific Ave. + +Drop-in hours: 8am-12pm, Wednesday and Thursday + +Livermore + + + + ### [Abode Services](https://www.abodeservices.org/) + +Adultos y familias sin hogar y sin acceso a refugios + +Llame al [510-371-0447](tel:+1-510-371-0447) + +Atención sin turno en 3311 Pacific Ave. + +Horarios de atención sin turno: De 8 a. m. a 12 p. m. los miércoles y jueves + +Livermore + + + +### [住所服務](https://www.abodeservices.org/) + +無居所的成年人/家庭 + +致電 [510-371-0447](tel:+1-510-371-0447) + +直接前往 3311 Pacific Ave. + +服務時間:週三及週四上午 8 點至中午 12 點 + +Livermore + + + +### [Tổ chức Abode Services](https://www.abodeservices.org/) + +Người trưởng thành/những gia đình không có nơi trú ẩn + +Gọi số [510-371-0447](tel:+1-510-371-0447) + +Đến tận nơi không cần hẹn trước tại 3311 Pacific Ave. + +Giờ ghé qua: 8 giờ sáng-12 giờ trưa, Thứ Tư và Thứ Năm + +Livermore + + + +### [Abode Services](https://www.abodeservices.org/) + +Mga adultong/pamilyang walang matitirhan + +Tawagan ang [510-371-0447](tel:+1-510-371-0447) + +Magpunta sa 3311 Pacific Ave. + +Mga oras ng pagpunta: 8am-12pm, Miyerkules at Huwebes + +Livermore + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/adobeServicesSouth.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/adobeServicesSouth.md new file mode 100644 index 0000000000..e0dfe0f73c --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/adobeServicesSouth.md @@ -0,0 +1,60 @@ + +### [Abode Services](https://www.abodeservices.org/) + +Unsheltered adults + +Call [510-330-5822](tel:+1-510-330-5822) + +Walk in at 4075 Papazian Way, Fremont + +Drop-in hours: 9am-1pm, Monday and Tuesday + + + + ### [Abode Services](https://www.abodeservices.org/) + +Adultos sin hogar y sin acceso a refugios + +Llame al [510-330-5822](tel:+1-510-330-5822) + +Atención sin turno en 4075 Papazian Way, Fremont + +Horarios de atención sin turno: De 9 a. m. a 1 p. m. los lunes y martes + + + +### [住所服務](https://www.abodeservices.org/) + +無居所的成年人 + +致電 [510-330-5822](tel:+1-510-330-5822) + +直接前往 4075 Papazian Way, Fremont + +服務時間:週一及週二上午 9 點至下午 1 點 + + + +### [Tổ chức Abode Services](https://www.abodeservices.org/) + +Người trưởng thành không nơi trú ẩn + +Gọi số [510-330-5822](tel:+1-510-330-5822) + +Đến tận nơi không cần hẹn trước tại 4075 Papazian Way, Fremont + +Giờ ghé qua: 9 giờ sáng-1 giờ chiều, Thứ Hai và Thứ Ba + + + +### [Abode Services](https://www.abodeservices.org/) + +Mga adultong walang matitirahan + +Tawagan ang [510-330-5822](tel:+1-510-330-5822) + +Magpunta sa 4075 Papazian Way, Fremont + +Mga oras ng pagpunta: 9am-1pm, Lunes at Martes + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/alaResourceFinder211.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/alaResourceFinder211.md new file mode 100644 index 0000000000..a0bae70f24 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/alaResourceFinder211.md @@ -0,0 +1,38 @@ + +### [211 Alameda County Resource Finder](https://achousingchoices.org/) + +If you are in need of immediate emergency shelter and housing assistance, please contact Eden Information & Referral at [211](tel:+1-510-537-2552) or the Bay Area Helpline at [1-800-273-6222](tel:+1-800-273-6222). + +You can also visit the [companion website](https://achousingchoices.org/) for housing-related services and general services. + + + +### [211 Buscador de recursos del Condado de Alameda](https://achousingchoices.org/) + +Si necesita un refugio de emergencia y ayuda para encontrar vivienda de inmediato, comuníquese con Información y Derivaciones de Eden al [211](tel:+1-510-537-2552) o la línea de ayuda del Área de la Bahía al [1-800-273-6222](tel:+1-800-273-6222). + +También puede visitar el [sitio web que lo acompaña](https://achousingchoices.org/) para obtener servicios relacionados con la vivienda y servicios generales. + + + +### [211 阿拉米達縣資源搜尋工具](https://achousingchoices.org/) + +如果您需要緊急避難所和住宅協助,請撥打 [211](tel:+1-510-537-2552) 聯絡伊甸資訊與轉介 (Eden Information & Referral) ,或撥打灣區協助熱線 (Bay Area Helpline) [1-800-273-6222](tel:+1-800-273-6222)。 + + + +### [211 Công cụ Tìm kiếm Nguồn Trợ giúp Quận Alameda](https://achousingchoices.org/) + +Nếu quý vị cần chỗ trú ẩn khẩn cấp tức thì và hỗ trợ về nhà ở, vui lòng liên hệ Trung tâm Thông tin và Giới thiệu Eden theo số [211](tel:+1-510-537-2552) hoặc Đường dây trợ giúp Vùng Vịnh theo số [1-800-273-6222](tel:+1-800-273-6222. + +Quý vị cũng có thể truy cập trang web hướng dẫn để biết các dịch vụ liên quan đến nhà ở và dịch vụ tổng hợp + + + +### [211 Alameda County Resource Finder](https://achousingchoices.org/) + +Kung kailangan mo ng agarang emergency shelter at tulong sa pabahay, makipag-ugnayan sa Impormasyon at Referral ng Eden sa [211](tel:+1-510-537-2552) o sa Bay Area Helpline sa [1-800-273-6222](tel:+1-800-273-6222). + +Maaari mo ring bisitahin ang [kasamang website](https://achousingchoices.org/) para sa mga serbisyong nauugnay sa pabahay at mga pangkalahatang serbisyo. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceHayward.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceHayward.md new file mode 100644 index 0000000000..638943a35a --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceHayward.md @@ -0,0 +1,65 @@ + +### [Bay Area Community Services - East (Hayward and Unincorporated)](http://www.bayareacs.org/) + +Unsheltered adults/families + +Call [510-247-8235](tel:+1-510-247-8235) + Email [HaywardHRC@bayareacs.org](mailto:HaywardHRC@bayareacs.org) + +Walk in at 590 B Street, Hayward + +Office hours: 1-4pm, Tuesday and Thursday + + + + ### [Servicios comunitarios del área de la bahía (Bay Area Community Services), este (Hayward y no incorporados)](http://www.bayareacs.org/) + +Familias y adultos sin hogar y sin acceso a refugios + +Llame al [510-247-8235](tel:510-247-8235) + Correo electrónico [HaywardHRC@bayareacs.org](mailto:HaywardHRC@bayareacs.org) + +Atención sin turno en 590 B Street, Hayward + +Horarios de atención: De 1 a 4 p. m. los martes y jueves + + + +### [灣區社區服務 - 東部 (Hayward 及 Unincorporated)](http://www.bayareacs.org/) + +無居所的成年人/家庭 + +致電 [510-247-8235](tel:510-247-8235) + 電子郵件 [HaywardHRC@bayareacs.org](mailto:HaywardHRC@bayareacs.org) + +直接前往 590 B Street, Hayward + +辦公室服務時間:週二及週四下午 1-4 點 + + + +### [Cơ Quan Dịch Vụ Cộng Đồng Vùng Vịnh - Phía đông (Hayward và Unincorporated)](http://www.bayareacs.org/) + +Người trưởng thành/những gia đình không có nơi trú ẩn + +Gọi số [510-247-8235](tel:510-247-8235) + Email [HaywardHRC@bayareacs.org](mailto:HaywardHRC@bayareacs.org) + +Đến tận nơi không cần hẹn trước tại 590 B Street, Hayward + +Giờ làm việc: 1-4 giờ chiều, Thứ Ba và Thứ Năm + + + +### [Bay Area Community Services - East (Hayward and Unincorporated)](http://www.bayareacs.org/) + +Mga adultong/pamilyang walang matitirhan + +Tawagan ang [510-247-8235](tel:+1-510-247-8235) +Mag-email sa [HaywardHRC@bayareacs.org](mailto:HaywardHRC@bayareacs.org) + +Magpunta sa 590 B Street, Hayward + +Oras ng opisina: 1-4pm, Martes at Huwebes + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceNorth.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceNorth.md new file mode 100644 index 0000000000..a38740576c --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceNorth.md @@ -0,0 +1,65 @@ + +### [Bay Area Community Services](http://www.bayareacs.org/) + +Unsheltered adults + +Call [510-495-0131](tel:+1-510-495-0131) + Email [housinghub@bayareacs.org](mailto:housinghub@bayareacs.org) + +Walk in at 2809 Telegraph Ave. + +Office hours: 9am-12pm, Monday, Wednesday, and Friday + + + + ### [Servicios comunitarios del área de la bahía (Bay Area Community Services)](http://www.bayareacs.org/) + +Adultos sin hogar y sin acceso a refugios + +Llame al [510-495-0131](tel:+1-510-495-0131) + Correo electrónico: [housinghub@bayareacs.org](mailto:housinghub@bayareacs.org) + +Atención sin turno en 2809 Telegraph Ave. + +Horarios de atención: De 9 a. m. a 12 p. m. los lunes, miércoles y viernes + + + +### [灣區社區服務](http://www.bayareacs.org/) + +無居所的成年人 + +致電 [510-495-0131](tel:+1-510-495-0131) + 電子郵件 [housinghub@bayareacs.org](mailto:housinghub@bayareacs.org) + +直接前往 2809 Telegraph Ave. + +辦公室服務時間:週一、週三及週五上午 9 點至中午 12 點 + + + +### [Cơ Quan Dịch Vụ Cộng Đồng Vùng Vịnh](http://www.bayareacs.org/) + +Người trưởng thành không nơi trú ẩn + +Gọi số [510-495-0131](tel:+1-510-495-0131) + Email [housinghub@bayareacs.org](mailto:housinghub@bayareacs.org) + +Đến tận nơi không cần hẹn trước tại 2809 Telegraph Ave. + +Giờ làm việc: 9 giờ sáng-12 giờ trưa, Thứ Hai, Thứ Yư và Thứ Sáu + + + +### [Bay Area Community Services](http://www.bayareacs.org/) + +Mga adultong walang matitirhan + +Tawagan ang [510-495-0131](tel:+1-510-495-0131) +Mag-email sa [housinghub@bayareacs.org](mailto:housinghub@bayareacs.org) + +Magpunta sa 2809 Telegraph Ave. + +Oras ng opisina: 9am-12pm, Lunes, Miyerklues, at Biyernes + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceOakland.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceOakland.md new file mode 100644 index 0000000000..191f741de3 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/baCommunityServiceOakland.md @@ -0,0 +1,59 @@ + +### [Bay Area Community Services - Downtown Oakland](http://www.bayareacs.org/) + +Unsheltered adults + +Call BACS Coordinated Entry line at [510-658-9480](tel:+1-510-658-9480) + +Walk in at 629 Oakland Avenue, Oakland + +Office hours: 12-3pm Mon, Tues, Wed, Thur, Fri + + + +### [Servicios de la comunidad del área de la bahía (Bay Area Community Services, BACS), centro de Oakland](http://www.bayareacs.org/) + +Adultos sin hogar y sin acceso a refugios + +Llame a la línea de ingreso coordinado de BACS al [510-658-9480](tel:+1-510-658-9480) + +Entra en 629 Oakland Avenue, Oakland + +Horario de oficina: 12-3pm lunes, martes, miércoles, jueves, viernes + + + +### [灣區社區服務–奧克蘭市中心 (Bay Area Community Services - Downtown Oakland)](http://www.bayareacs.org/) + +無居所的成年人 + +致電 BACS 協調入口專線 [510-658-9480](tel:+1-510-658-9480) + +走进奥克兰奥克兰大道 629 号 + +办公时间:周一、周二、周三、周四、周五中午 12 点至下午 3 点 + + + +### [Cơ Quan Dịch Vụ Cộng Đồng Vùng Vịnh (BACS) - Trung Tâm Thành Phố Oakland](http://www.bayareacs.org/) + +Người trưởng thành không nơi trú ẩn + +Gọi tới đường dây Tiếp Nhận Được Điều Phối của BACS theo số [510-658-9480](tel:+1-510-658-9480) + +Đi bộ tại 629 Oakland Avenue, Oakland + +Giờ hành chính: 12-3pm Thứ Hai, Thứ Ba, Thứ Tư, Thứ Năm, Thứ Sáu + + +### [Bay Area Community Services - Downtown Oakland](http://www.bayareacs.org/) + +Mga pamilyang walang matitirhan + +Tawagan ang BACS Coordinated Entry line sa [510-658-9480](tel:+1-510-658-9480) + +Maglakad sa 629 Oakland Avenue, Oakland + +Mga oras ng opisina: 12-3pm Lun, Mar, Miyerkules, Huwebes, Biy + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/bossCoordinatedEntry.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/bossCoordinatedEntry.md new file mode 100644 index 0000000000..239c3ba8f3 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/bossCoordinatedEntry.md @@ -0,0 +1,60 @@ + +### [BOSS Coordinated Entry - West Oakland](http://www.self-sufficiency.org/) + +Unsheltered adults + +Call BOSS Coordinated Entry line at [510-844-8580](tel:+1-510-844-8580) + +Walk in at 2811 Adeline St. + +Office hours: 10am-2pm, Monday, Tuesday, Thurday, and Friday + + + +### [Ingreso coordinado de Construir Oportunidades para la Autosuficiencia (Building Opportunities for Self-Sufficiency, BOSS) de West Oakland](http://www.self-sufficiency.org/) + +Adultos sin hogar y sin acceso a refugios + +Llame a la línea de ingreso coordinado de BOSS al [510-844-8580](tel:+1-510-844-8580) + +Atención sin turno en 2811 Adeline St. + +Horarios de atención: De 10 a. m. a 2 p. m. los lunes, martes, jueves y viernes + + + +### [BOSS 協調進入 - West Oakland](http://www.self-sufficiency.org/) + +無居所的成年人 + +致電 BOSS 協調入口專線 [510-844-8580](tel:+1-510-844-8580) + +直接前往 2811 Adeline St. + +辦公室服務時間:週一、週二、週四及週五上午 10 點至下午 2 點 + + + +### [Tiếp nhận Phối hợp BOSS - Tây Oakland](http://www.self-sufficiency.org/) + +Người trưởng thành không nơi trú ẩn + +Gọi tới đường dây Tiếp Nhận Được Điều Phối của BOSS theo số [510-844-8580](tel:+1-510-844-8580) + +Đến tận nơi không cần hẹn trước tại 2811 Adeline St. + +Giờ làm việc: 10 giờ sáng-2 giờ chiều, Thứ Hai, Thứ Ba, Thứ Năm và Thứ Sáu + + + +### [BOSS Coordinated Entry - West Oakland](http://www.self-sufficiency.org/) + +Mga adultong walang matitirhan + +Tawagan ang BOSS Coordinated Entry line sa [510-844-8580](tel:+1-510-844-8580) + +Magpunta sa 2811 Adeline St. + +Oras ng opisina: 10am-2pm, Lunes, Martes, Huwebes at Biyernes + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/buildingFuturesAlameda.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/buildingFuturesAlameda.md new file mode 100644 index 0000000000..110e6a3986 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/buildingFuturesAlameda.md @@ -0,0 +1,60 @@ + +### [Building Futures - West (Alameda)](https://bfwc.org) + +Unsheltered adults/families + +Call [510-201-0203](tel:+1-510-201-0203) + +Walk in at 2500 Barbers Point Rd, Alameda + +Drop-in hours: 10am – 12pm Mon + + + + ### [Building Futures. Oeste (Alameda)](https://bfwc.org) + +Adultos y familias en situación de calle + +Llame al [510-201-0203](tel:+1-510-201-0203) + +Entra en 2500 Barbers Point Rd, Alameda + +Horario de atención: 10 a. m. a 12 p. m. lun. + + + +### [Building Futures - West (Alameda)](https://bfwc.org) + +無居所的成年人/家庭 + +撥打 [510-201-0203](tel:+1-510-201-0203) + +走进 2500 Barbers Point Rd, Alameda + +上门服务时间:周一上午 10 点至中午 12 点 + + + +### [Building Futures - Tây (Alameda)](https://bfwc.org) + +Người trưởng thành/gia đình không có nơi trú ẩn + +Hãy gọi số [510-201-0203](tel:+1-510-201-0203) + +Đi bộ tại 2500 Barbers Point Rd, Alameda + +Giờ nhận phòng: 10 giờ sáng – 12 giờ trưa Thứ Hai + + + +### [Building Futures - West (Alameda)](https://bfwc.org) + +Mga adultong/pamilyang walang matitirhan + +Tawagan ang [510-201-0203](tel:+1-510-201-0203) + +Maglakad sa 2500 Barbers Point Rd, Alameda + +Mga oras ng pag-drop-in: 10am - 12pm Lun + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/buildingFuturesSanLeandro.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/buildingFuturesSanLeandro.md new file mode 100644 index 0000000000..3e8683aaf9 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/buildingFuturesSanLeandro.md @@ -0,0 +1,60 @@ + +### [Building Futures - West (San Leandro)](https://bfwc.org) + +Unsheltered adults/families + +Call [510-686-2332](tel:+1-510-686-2332) + +Walk in at 1840 Fairway Dr, San Leandro + +Drop-in hours: 10am – 2pm Tue + + + + ### [Building Futures, oeste (San Leandro)](https://bfwc.org) + +Adultos y familias sin hogar y sin acceso a refugios + +Llame al [510-686-2332](tel:+1-510-686-2332) + +Entra en 1840 Fairway Dr, San Leandro + +Horario de atención: 10 a. m. a 2 p. m. + + + +### [Building Futures - West (San Leandro)](https://bfwc.org) + +無居所的成年人/家庭 + +致電 [510-686-2332](tel:+1-510-686-2332) + +走进 1840 Fairway Dr, San Leandro + +上门服务时间:周二上午 10 点至下午 2 点 + + + +### [Tổ chức Building Futures - Phía tây (San Leandro)](https://bfwc.org) + +Người trưởng thành/những gia đình không có nơi trú ẩn + +Gọi số [510-686-2332](tel:+1-510-686-2332) + +Đi bộ tại 1840 Fairway Dr, San Leandro + +Giờ nhận phòng: 10 giờ sáng - 2 giờ chiều Thứ Ba + + + +### [Building Futures - West (San Leandro)](https://bfwc.org) + +Mga adultong/pamilyang walang matitirhan + +Tawagan ang [510-686-2332](tel:+1-510-686-2332) + +Maglakad sa 1840 Fairway Dr, San Leandro + +Mga oras ng pag-drop-in: 10am - 2pm Mar + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/depositRentalAssistance.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/depositRentalAssistance.md new file mode 100644 index 0000000000..be571f7d19 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/depositRentalAssistance.md @@ -0,0 +1,30 @@ + +### [Deposit and Rental Assistance](https://achousingchoices.org/deposit-rental-assistance-housing-search-assistance-resources/) + +Find resources for rental and deposit assistance. + + + +### [Ayuda para depósitos y alquileres](https://achousingchoices.org/deposit-rental-assistance-housing-search-assistance-resources/) + +Encuentre recursos para ayuda con alquileres y depósitos. + + + +### [押金和租金協助](https://achousingchoices.org/deposit-rental-assistance-housing-search-assistance-resources/) + +搜尋租金和押金協助資源。 + + + +### [Hỗ trợ Tiền đặt cọc và Tiền thuê nhà](https://achousingchoices.org/deposit-rental-assistance-housing-search-assistance-resources/) + +Tìm các nguồn thông tin về hỗ trợ tiền thuê nhà và tiền đặt cọc. + + + +### [Deposit and Rental Assistance](https://achousingchoices.org/deposit-rental-assistance-housing-search-assistance-resources/) + +Maghanap ng mga resource para sa tulong sa pagrenta at pagdeposito. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/eastCountyHeader.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/eastCountyHeader.md new file mode 100644 index 0000000000..051bb8b940 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/eastCountyHeader.md @@ -0,0 +1,21 @@ + + +### East County/Tri-Valley (Livermore, Dublin, Pleasanton) + + + +### Condado del este/Tri-Valley (Livermore, Dublin, Pleasanton) + + + +### 東部郡/三谷地區(利佛摩爾、都伯林、普萊森頓) + + + +### Quận Phía Đông/Tri-Valley (Livermore, Dublin, Pleasanton) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/echoHousing.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/echoHousing.md new file mode 100644 index 0000000000..67f7bf88ab --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/echoHousing.md @@ -0,0 +1,30 @@ + +### [ECHO Housing](https://www.echofairhousing.org/) + +Provides rental assistance, housing assistance, tenant/landlord counseling, home-seeking, home-sharing, and mortgage and home purchase counseling. + + + +### [ECHO Housing](https://www.echofairhousing.org/) + +Proporciona ayuda en el alquiler, asistencia de vivienda, asesoría a inquilinos y caseros, búsqueda de vivienda, vivienda compartida y asesoría sobre hipotecas y compra de viviendas. + + + +### [ECHO Housing](https://www.echofairhousing.org/) + +提供租屋援助、住房援助、租客/房東諮詢、房屋尋找、房屋共享以及抵押和購買房屋諮詢服務。 + + + +### [ECHO Housing](https://www.echofairhousing.org/) + +Cung cấp hỗ trợ tiền thuê nhà, hỗ trợ nhà ở, cố vấn cho người thuê nhà/chủ nhà, tìm kiếm nhà, chia sẻ nhà, và cố vấn về tiền mua nhà trả góp và mua nhà. + + + +### [ECHO Housing](https://www.echofairhousing.org/) + +Nagbibigay ng tulong sa pag-upa, tulong sa pabahay, pagpapayo sa nangungupahan/may-ari, paghahanap ng bahay, pagbabahagi ng bahay, at pagpapayo sa mortgage at pagbili ng bahay. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/eocpCoordinatedEntry.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/eocpCoordinatedEntry.md new file mode 100644 index 0000000000..17f42c82a7 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/eocpCoordinatedEntry.md @@ -0,0 +1,60 @@ + +### EOCP Coordinated Entry - East Oakland + +Unsheltered Adults + +Call EOCP Coordinated Entry at [510-463-4601](tel:+1-510-463-4601) + +Walk in at 7515 International Blvd. + +Office hours: 10am-3pm, Thursday and Friday + + + +### Ingreso coordinado del Proyecto Comunitario de East Oakland (East Oakland Community Project, EOCP) de East Oakland + +Adultos en situación de calle + +Llame al ingreso coordinado del EOCP al [510-463-4601](tel:+1-510463-4601) + +Preséntese sin turno en 7515 International Blvd. + +Horario de atención: de 10 a. m. a 3 p. m., jueves y viernes + + + +### EOCP 協調進入 - East Oakland + +無居所的成年人 + +撥打 [510-463-4601](tel:+1-510-463-4601) 聯絡 EOCP 協調進入 + +或在以下辦公時間,親洽 7515 International Blvd. + +星期四和星期五上午 10 點至下午 3 點 + + + +### Tiếp nhận Phối hợp EOCP - Đông Oakland + +Người trưởng thành Không có nơi trú ẩn + +Hãy gọi cho hệ thống Tiếp nhận Phối hợp EOCP theo số [510-844-8221](tel:+1-510-844-8221) + +Quý vị có thể đến 7515 International Blvd. + +mà không cần hẹn trước Giờ làm việc: 10 giờ sáng - 3 giờ chiều, thứ Năm và thứ Sáu + + + +### EOCP Coordinated Entry - East Oakland + +Mga adultong walang matitirahan + +Tawagan ang BOSS Coordinated Entry line sa [510-463-4601](tel:+1-510-463-4601) + +Magpunta sa 7515 International Blvd. + +Oras ng opisina: 10am-3pm, Huwebes at Biyernes + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/familyFrontDoorNorth.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/familyFrontDoorNorth.md new file mode 100644 index 0000000000..274171da7e --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/familyFrontDoorNorth.md @@ -0,0 +1,60 @@ + +### Family Front Door + +Unsheltered families (with a child under 18) + +Call [510-808-7410](tel:+1-510-808-7410) ext. 282 + +If you are already receiving services and need to update your information, text your full name and your updated/new information to [510-435-2772](sms:+1-510-435-2772). + +Emeryville Families Included + + + +### Family Front Door + +Familias sin hogar y sin acceso a refugios (con hijos menores de 18 años) + +Llame al [510-808-7410](tel:+1-510-808-7410) ext. 282 + +Si ya recibe servicios y necesita actualizar su información, envíe su nombre completo y su información actualizada o nueva por mensaje de texto al [510-435-2772](sms:+1-510-435-2772). + +Emeryville Families Included + + + +### 家庭前門 + +無居所家庭(有 18 歲以下孩童) + +致電 [510-808-7410](tel:+1-510-808-7410) 分機 282 + +如果您已接受服務並需要更新您的資訊,請將全名及更新後/新資訊傳送至 [510-435-2772](sms:+1-510-435-2772)。 + +Emeryville Families Included + + + +### Chương trình Family Front Door + +Những gia đình không có nơi trú ẩn (có con dưới 18 tuổi) + +Gọi [510-808-7410](tel:+1-510-808-7410), số máy lẻ 282 + +Nếu quý vị đã nhận được dịch vụ và cần cập nhật thông tin của mình, vui lòng nhắn đầy đủ họ tên và thông tin mới/đã cập nhật của quý vị tới số [510-435-2772](sms:+1-510-435-2772). + +Emeryville Families Included + + + +### Family Front Door + +Mga pamilyang walang matitirhan (na may anak na wala pang 18). + +Tawagan [510-808-7410](tel:+1-510-808-7410) ext. 282 + +Kung nakakatanggap ka na ng mga serbisyo at kailangan mong i-update ang iyong impormasyon, i-text ang iyong buong pangalan at ang iyong binago/bagong impormasyon sa [510-435-2772](sms:+1-510-435-2772). + +Emeryville Families Included + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/familyFrontDoorOakland.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/familyFrontDoorOakland.md new file mode 100644 index 0000000000..aa2d2ca3f2 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/familyFrontDoorOakland.md @@ -0,0 +1,50 @@ + +### Family Front Door + +Unsheltered families (with a child under 18) + +Call [510-808-7410](tel:+1-510-808-7410) ext. 282 + +If you are already receiving services and need to update your information, text your full name and your updated/new information to [510-435-2772](sms:+1-510-435-2772). + + + +### Family Front Door + +Familias sin hogar y sin acceso a refugios (con hijos menores de 18 años) + +Llame al [510-808-7410](tel:+1-510-808-7410) ext. 282 + +Si ya recibe servicios y necesita actualizar su información, envíe su nombre completo y su información actualizada o nueva por mensaje de texto al [510-435-2772](sms:+1-510-435-2772). + + + +### 家庭前門 + +無居所家庭(有 18 歲以下孩童) + +致電 [510-808-7410](tel:+1-510-808-7410) 分機 282 + +如果您已接受服務並需要更新您的資訊,請將全名及更新後/新資訊傳送至 [510-435-2772](sms:+1-510-435-2772)。 + + + +### Chương trình Family Front Door + +Những gia đình không có nơi trú ẩn (có con dưới 18 tuổi) + +Gọi [510-808-7410](tel:+1-510-808-7410), số máy lẻ 282 + +Nếu quý vị đã nhận được dịch vụ và cần cập nhật thông tin của mình, vui lòng nhắn đầy đủ họ tên và thông tin mới/đã cập nhật của quý vị tới số [510-435-2772](sms:+1-510-435-2772). + + + +### Family Front Door + +Mga pamilyang walang matitirhan (na may anak na wala pang 18). + +Tawagan ang [510-808-7410](tel:+1-510-808-7410) ext. 282 + +Kung nakakatanggap ka ng mga serbisyo at kailangang i-update ang iyong impormasyon, i-text ang iyong buong pangalan at ang iyong binago/bagong impormasyon sa [510-435-2772](sms:+1-510-435-2772). + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/fremontFamily.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/fremontFamily.md new file mode 100644 index 0000000000..09c6540f7b --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/fremontFamily.md @@ -0,0 +1,65 @@ + +### [Fremont Family Resource Center](https://www.fremont.gov/government/departments/human-services/fremont-family-resource-center) + +Unsheltered families + +Call [510-574-2000](tel:+1-510-574-2000) + +Walk in at 39155 Liberty St., Fremont, CA +(Millenium Room) + +Drop-in hours: Thurs 10-12 and 1-3pm + + + + ### [Centro de Recursos para Familias de Fremont (Fremont Family Resource Center)](https://www.fremont.gov/government/departments/human-services/fremont-family-resource-center) + +Familias sin hogar y sin acceso a refugios + +Llame al [510-574-2000](tel:+1-510-574-2000) + +Entra en 39155 Liberty St., Fremont, CA +(Habitación Milenio) + +Horario de atención: Jueves 10-12 y 1-3pm + + + +### [費利蒙家庭資源中心 (Fremont Family Resource Center)](https://www.fremont.gov/government/departments/human-services/fremont-family-resource-center) + +無居所家庭 + +致電 [510-574-2000](tel:+1-510-574-2000) + +走进 39155 Liberty St., Fremont, CA +(千禧房) + +上门服务时间:周四 10-12 点和下午 1-3 点 + + + +### [Trung Tâm Nguồn Hỗ Trợ Gia Đình Fremont](https://www.fremont.gov/government/departments/human-services/fremont-family-resource-center) + +Những gia đình không có nơi trú ẩn + +Gọi số [510-574-2000](tel:+1-510-574-2000) + +Walk in tại 39155 Liberty St., Fremont, CA +(Phòng Thiên niên kỷ) + +Giờ nhận phòng: Thứ Năm 10-12 và 1-3 giờ chiều + + + +### [Fremont Family Resource Center](https://www.fremont.gov/government/departments/human-services/fremont-family-resource-center) + +Mga pamilyang walang matitirhan + +Tawagan ang [510-574-2000](tel:+1-510-574-2000) + +Maglakad sa 39155 Liberty St., Fremont, CA +(Millenium Room) + +Mga oras ng pag-drop-in: Huwebes 10-12 at 1-3pm + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haAlamedaCity.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haAlamedaCity.md new file mode 100644 index 0000000000..84051022b7 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haAlamedaCity.md @@ -0,0 +1,16 @@ + +### [Housing Authority of the City of Alameda](http://www.alamedahsg.org/) + + + + ### [Autoridad de la vivienda de la Ciudad de Alameda](http://www.alamedahsg.org/) + + + +### [阿拉米達市房屋管理局](http://www.alamedahsg.org/) + + + +### [Cơ Quan Gia Cư Thành phố Alameda](http://www.alamedahsg.org/) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haAlamedaCounty.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haAlamedaCounty.md new file mode 100644 index 0000000000..ac8eb3c03b --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haAlamedaCounty.md @@ -0,0 +1,16 @@ + +### [Housing Authority County of Alameda](http://www.haca.net/) + + + + ### [Autoridad de la vivienda del Condado de Alameda](http://www.haca.net/) + + + +### [阿拉米達縣房屋管理局](http://www.haca.net/) + + + +### [Cơ quan Gia cư Quận Alameda](http://www.haca.net/) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haBerkley.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haBerkley.md new file mode 100644 index 0000000000..e3cc53412a --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haBerkley.md @@ -0,0 +1,16 @@ + +### [Berkeley Housing Authority](https://www.cityofberkeley.info/bha/) + + + + ### [Autoridad de la vivienda de Berkeley](https://www.cityofberkeley.info/bha/) + + + +### [柏克萊市房屋管理局](https://www.cityofberkeley.info/bha/) + + + +### [Cơ Quan Gia Cư Berkeley](https://www.cityofberkeley.info/bha/) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haLivermore.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haLivermore.md new file mode 100644 index 0000000000..426058c42d --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haLivermore.md @@ -0,0 +1,16 @@ + +### [Housing Authority of the City of Livermore](https://livermoreha.org/index.html) + + + + ### [Autoridad de la vivienda de la Ciudad de Livermore](https://livermoreha.org/index.html) + + + +### [利佛摩爾市房屋管理局](https://livermoreha.org/index.html) + + + +### [Cơ Quan Gia Cư Thành phố Livermore](https://livermoreha.org/index.html) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haOakland.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haOakland.md new file mode 100644 index 0000000000..02303bf69b --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/haOakland.md @@ -0,0 +1,16 @@ + +### [Oakland Housing Authority](http://www.oakha.org/Pages/default.aspx) + + + + ### [Autoridad de la vivienda de Oakland](http://www.oakha.org/Pages/default.aspx) + + + +### [屋崙 (奧克蘭) 市房屋管理局](http://www.oakha.org/Pages/default.aspx) + + + +### [Cơ Quan Gia Cư Oakland](http://www.oakha.org/Pages/default.aspx) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/hcdDepartment.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/hcdDepartment.md new file mode 100644 index 0000000000..fe74ff5d30 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/hcdDepartment.md @@ -0,0 +1,30 @@ + +### [Housing & Community Development (HCD) Department](https://www.acgov.org/cda/hcd/rhd/index.htm) + +Information on the Alameda County Housing & Community Development (HCD) Department’s policies and programs. + + + +### [Departamento de Desarrollo Comunitario y de Vivienda (HCD) del Condado de Alameda](https://www.acgov.org/cda/hcd/rhd/index.htm) + +Información sobre las políticas y programas del Departamento de Desarrollo Comunitario y de Vivienda (HCD) del Condado de Alameda. + + + +### [阿拉米達縣房屋及社區發展部 (HCD](https://www.acgov.org/cda/hcd/rhd/index.htm) + +有關阿拉米達縣房屋及社區發展部 (HCD) 政策和計劃的資訊。 + + + +### [Sở Gia cư & Phát triển Cộng đồng (HCD) Quận Alameda](https://www.acgov.org/cda/hcd/rhd/index.htm) + +Thông tin về các chính sách và chương trình của Sở Gia cư và Phát triển Cộng đồng (HCD) Quận Alameda. + + + +### [Housing & Community Development (HCD) Department](https://www.acgov.org/cda/hcd/rhd/index.htm) + +Impormasyon sa Alameda County Housing & Community Development (HCD) ng mga polisiya at programa ng Departamento. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/hrc.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/hrc.md new file mode 100644 index 0000000000..4c8eb77bf3 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/hrc.md @@ -0,0 +1,40 @@ + +### [Housing Resource Centers (HRC)](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing) + +Alameda County has Housing Resource Centers (HRCs) throughout the County to support people currently experiencing homelessness. + +If you are experiencing homelessness in Alameda County you may connect with an HRC by calling Eden Information & Referral at [510-537-2552](tel:+1-510-537-2552) or you may connect with an HRC directly by [finding an access point near you](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing). + + + +### [Centros de Recursos de Vivienda (Housing Resource Centers, HRC)](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing) + +El condado de Alameda tiene Centros de Recursos de Vivienda (HRC) en el condado para ayudar a personas que actualmente estén en situación de calle. + +Si está en situación de calle en el condado de Alameda, puede comunicarse con un HRC llamando a Información y Derivaciones de Eden al [510-537-2552](tel:+1-510-537-2552) o puede comunicarse con un HRC [buscando directamente un punto de acceso cerca de usted](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing). + + + +### [住宅資源中心 (Housing Resource Centers, HRC)](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing) + +Alameda 縣內都設有住宅資源中心 (Housing Resource Centers, HRCs),為目前無家可歸的人提供支援。 + +如果您人在 Alameda 縣內,且目前無家可歸,您可以撥打伊甸資訊與轉介 (Eden Information & Referral) 的電話 [510-537-2552](tel:+1-510-537-2552) 與 HRC 聯絡,或是搜尋[您附近的服務據點]((https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing),直接與 HRC 聯絡 + + + +### [Trung tâm Nguồn thông tin Nhà ở (HRC)](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing) + +Quận Alameda có các Trung tâm Nguồn thông tin Nhà ở (HRC) trên toàn Quận để hỗ trợ những người hiện đang trong tình trạng vô gia cư. + +Nếu đang trong tình trạng vô gia cư tại Quận Alameda, quý vị có thể liên hệ với HRC khi gọi cho Trung tâm Thông tin và Giới thiệu Eden theo số [510-537-2552](tel:+1-510-537-2552) hoặc quý vị có thể liên hệ trực tiếp với HRC [bằng cách tìm điểm truy cập gần quý vị](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing). + + + +### [Housing Resource Centers (HRC)](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing) + +Ang Alameda County ay mayroong Housing Resource Centers (HRCs) sa buong County upang suportahan ang mga taong kasalukuyang nakararanas ng kawalan ng tirahan. + +Kung nakakaranas ka ng kawalan ng tirahan sa Alameda County maaari kang kumonekta sa isang HRC sa pamamagitan ng pagtawag sa Impormasyon at Referral ng Eden sa [510-537-2552](tel:+1-510-537-2552) o maaari kang direktang kumonekta sa isang HRC [sa pamamagitan ng paghahanap ng access point na malapit sa iyo](https://drive.google.com/file/d/1U6d4KIXAFMMF8E2H-VAi3gpLy71L3Tvm/view?usp=sharing). + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/keepOaklandHoused.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/keepOaklandHoused.md new file mode 100644 index 0000000000..57ce89a880 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/keepOaklandHoused.md @@ -0,0 +1,40 @@ + +### [Keep Oakland Housed Program](https://www.keepoaklandhoused.org) + +Any families or individuals who are still sheltered but face a crisis such as a 3 day pay or quit notice, an eviction notice. + +Call [510-613-0330](tel:+1-510-613-0330) ext. 2 + + + + ### [Programa Keep Oakland Housed](https://www.keepoaklandhoused.org) + +Todas las familias y personas que todavía tengan hogar, pero enfrenten una crisis como pago en 3 días o deshaucio, o un aviso de desalojo. + +Llame al [510-613-0330](tel:+1-510-613-0330) ext. 2 + + + +### [保留奧克蘭住屋計劃(Keep Oakland Housed Program)](https://www.keepoaklandhoused.org) + +仍居住在庇護所但面臨危機,例如 3 天工資或辭職通知、驅逐通知的家庭或個人。 + +致電 [510-613-0330](tel:+1-510-613-0330) 分機 2 + + + +### [Chương Trình Keep Oakland Housed](https://www.keepoaklandhoused.org) + +Những gia đình và cá nhân có nơi trú ẩn nhưng đang gặp khủng hoảng, ví dụ như thông báo phải trả tiền thuê trong vòng 3 ngày nếu không phải ra khỏi nơi trú ẩn, thông báo trục xuất. + +Gọi [510-613-0330](tel:+1-510-613-0330), số máy lẻ 2 + + + +### [Keep Oakland Housed Program](https://www.keepoaklandhoused.org) + +Sinumang mga pamilya o indibidwal na may natitirhan pa rin ngunit nahaharap sa isang krisis tulad ng isang 3 araw na pagbabayad o abiso sa pagbibitiw, isang abiso ng pagpapaalis. + +Tawagan ang [510-613-0330](tel:+1-510-613-0330) ext. 2 + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/midCountyHeader.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/midCountyHeader.md new file mode 100644 index 0000000000..bd5ee74797 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/midCountyHeader.md @@ -0,0 +1,21 @@ + + +### Mid-County + + + +### Condado medio + + + +### 中郡 + + + +### Quận Trung Tâm + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/northCountyHeader.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/northCountyHeader.md new file mode 100644 index 0000000000..6e87c9d067 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/northCountyHeader.md @@ -0,0 +1,21 @@ + + +### North County (Berkeley, Albany, Emeryville) + + + +### Condado del norte (Berkeley, Albany, Emeryville) + + + +### 北部郡(柏克萊、奧爾巴尼、愛莫利維爾) + + + +### Quận Phía Bắc (Berkeley, Albany, Emeryville) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/oaklandHeader.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/oaklandHeader.md new file mode 100644 index 0000000000..ee6455446d --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/oaklandHeader.md @@ -0,0 +1,6 @@ + +### Oakland + + +### 奧克蘭 + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/sidebar.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/sidebar.md new file mode 100644 index 0000000000..6d3dcb3ad8 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/sidebar.md @@ -0,0 +1,50 @@ + +#### Contact + +For listing and application questions, please contact the Property Agent displayed on the listing. + +**Alameda County's Housing & Development Department (HCD)** + +**[achousingportal@edenir.org](mailto:achousingportal@edenir.org)** + + + +#### Contacto + +Si tiene alguna pregunta sobre los listados y la solicitud, sírvase poner en contacto con el Agente de la Propiedad que aparece indicado en el listado. + +**Departamento de Desarrollo Comunitario y de Vivienda (HCD) del Condado de Alameda** + +**[achousingportal@edenir.org](mailto:achousingportal@edenir.org)** + + + +#### 接觸 + +若有上市名單和申請方面的疑問,請聯絡上市名單上顯示的物業經紀人。 + +**阿拉米達縣房屋及社區發展部 (HCD)** + +**[achousingportal@edenir.org](mailto:achousingportal@edenir.org)** + + + +#### Tiếp xúc + +Đối với các thắc mắc về danh sách nhà và đơn ghi danh, vui lòng liên lạc với Nhân viên Đại diện Bất động sản có trên danh sách. + +**Sở Gia cư và Phát triển Cộng đồng (HCD) Quận Alameda** + +**[achousingportal@edenir.org](mailto:achousingportal@edenir.org)** + + + +#### Makipag-ugnayan + +Para sa mga tanong sa listahan at aplikasyon, mangyaring makipag-ugnayan sa Ahente ng Ari-arian na ipinapakita sa listahan. + +**Alameda County's Housing & Development Department (HCD)** + +**[achousingportal@edenir.org](mailto:achousingportal@edenir.org)** + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/southCountyHeader.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/southCountyHeader.md new file mode 100644 index 0000000000..2f51c19578 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/southCountyHeader.md @@ -0,0 +1,21 @@ + + +### South County/Tri-City (Fremont, Newark, Union City) + + + +### Condado del sur/Tri-City (Fremont, Newark, Union City) + + + +### 南部縣/三城(佛利蒙、紐瓦克、聯合巿) + + + +### Quận Phía Nam/Tri-City (Fremont, Newark, Union City) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/transitionalAgedYouth.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/transitionalAgedYouth.md new file mode 100644 index 0000000000..b35e4c4db4 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/transitionalAgedYouth.md @@ -0,0 +1,65 @@ + +### Transitional Aged Youth 18-24 years old (Open to all Alameda County Youth) + +Unsheltered Youth + +Call Covenant House at [510-379-1010](tel:+1-510-379-1010) (ask for the Wellness Center) + +Walk in at 200 Harrison Street, Oakland + +Drop-in hours: Tues and Thurs 1-3pm + Youth are also able to go to adult and family access points. + + + + ### Jóvenes en edad de transición de 18 a 24 años (abierto a todos los jóvenes del condado de Alameda) + +Jóvenes sin protección + +Llame a Covenant House al [510-379-1010](tel:+1-510-379-1010) (pregunte por el Centro de Bienestar) + +Entra en 200 Harrison Street, Oakland + +Horario de atención: martes y jueves de 1 a 3 p. m. + Los jóvenes también pueden ir a los puntos de acceso para adultos y familiares. + + + +### 18-24 岁的过渡性青年(向所有阿拉米达县青年开放) + +流浪青年 + +致电 [510-379-1010](tel:+1-510-379-1010) 联系 Covenant House(询问健康中心) + +走进奥克兰哈里森街 200 号 + +上门服务时间:周二和周四下午 1-3 点 + 青少年也可以前往成人和家庭接入点。 + + + +### Thanh niên trong độ tuổi chuyển tiếp 18-24 tuổi (Dành cho tất cả Thanh niên Quận Alameda) + +Tuổi Trẻ Không Che + +Gọi cho Covenant House theo số [510-379-1010](tel:+1-510-379-1010) (yêu cầu Trung tâm chăm sóc sức khỏe) + +Đi bộ tại 200 Harrison Street, Oakland + +Giờ nhận phòng: Thứ Ba và Thứ Năm 1-3 giờ chiều + Thanh niên cũng có thể truy cập các điểm truy cập dành cho người lớn và gia đình. + + + +### Transitional Aged Youth 18-24 years old (Bukas sa lahat ng Alameda County Youth) + +Kabataang Walang Silungan + +Tumawag sa Covenant House sa [510-379-1010](tel:+1-510-379-1010) (humingi ng Wellness Center) + +Maglakad sa 200 Harrison Street, Oakland + +Mga oras ng pag-drop-in: Martes at Huwebes 1-3pm + Nagagawa rin ng mga kabataan na pumunta sa mga access point ng adult at pamilya. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/womensDropInCenter.md b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/womensDropInCenter.md new file mode 100644 index 0000000000..5276ee9355 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/alameda/resources/womensDropInCenter.md @@ -0,0 +1,65 @@ + +### [Women’s Daytime Drop-in Center](https://www.womensdropin.org/) + +Unsheltered families + +Call [510-548-2884](tel:+1-510-548-2884) + Email [help@womensdropin.org](mailto:help@womensdropin.org) + +Walk in at 2218 Acton St. + +Office Hours: Mon, Wed, Fri 9am-2pm + + + + ### [Centro de Asistencia Diurno para Mujeres (Women’s Daytime Drop-in Center)](https://www.womensdropin.org/) + +Familias sin hogar y sin acceso a refugios + +Llame al [510-548-2884](tel:+1-510-548-2884) + Correo electrónico: [help@womensdropin.org](mailto:help@womensdropin.org) + +Entra en 2218 Acton St. + +Horario de oficina: lunes, miércoles y viernes 9am-2pm + + + +### [婦女日間服務中心 (Women’s Daytime Drop-in Center)](https://www.womensdropin.org/) + +無居所家庭 + +致電 [510-548-2884](tel:+1-510-548-2884) + 電子郵件 [help@womensdropin.org](mailto:help@womensdropin.org) + +走进 2218 Acton St. + +办公时间:周一、周三、周五上午 9 点至下午 2 点 + + + +### [Trung Tâm Women’s Daytime Drop-in](https://www.womensdropin.org/) + +Những gia đình không có nơi trú ẩn + +Gọi số [510-548-2884](tel:+1-510-548-2884) + Email [help@womensdropin.org](mailto:help@womensdropin.org) + +Đi bộ tại 2218 Acton St. + +Giờ làm việc: Thứ Hai, Thứ Tư, Thứ Sáu, 9 giờ sáng - 2 giờ chiều + + + +### [Women’s Daytime Drop-in Center](https://www.womensdropin.org/) + +Mga pamilyang walang matitirhan + +Tawagan ang [510-548-2884](tel:+1-510-548-2884) +Mag-email sa [help@womensdropin.org](mailto:help@womensdropin.org) + +Maglakad sa 2218 Acton St. + +Mga Oras ng Opisina: Lun, Miy, Biy 9am-2pm + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/additional-resources-section.tsx b/sites/public/src/page_content/jurisdiction_overrides/san_jose/additional-resources-section.tsx new file mode 100644 index 0000000000..70f2421dcd --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/additional-resources-section.tsx @@ -0,0 +1,72 @@ +import { t, InfoCardGrid, MarkdownSection } from "@bloom-housing/ui-components" +import Markdown from "markdown-to-jsx" +import RenderIf from "../../../RenderIf" +import Resource from "../../../Resource" + +// Import Markdown resource cards: +import doorwayPortal from "./resources/doorwayPortal.md" +import alaCounty from "./resources/alaCounty.md" +import sfCounty from "./resources/sfCounty.md" +import smCounty from "./resources/smCounty.md" +import affordableHousingSCC from "./resources/affordableHousingSCC.md" +import affordableHousingSJ from "./resources/affordableHousingSJ.md" +import section8 from "./resources/section8.md" +import homelessHotline from "./resources/homelessHotline.md" +import housingChoices from "./resources/housingChoices.md" +import unitedWay211 from "./resources/unitedWay211.md" +import sidebarContent from "./resources/sidebar.md" + +export const AdditionalResourcesSection = () => { + return ( +
+
+
+ + + {doorwayPortal} + {alaCounty} + {sfCounty} + {smCounty} + + + {affordableHousingSCC} + {affordableHousingSJ} + {section8} + + + {homelessHotline} + {housingChoices} + {unitedWay211} + + +
+ +
+
+ ) +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/disclaimer.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/disclaimer.md new file mode 100644 index 0000000000..8f22bb7a41 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/disclaimer.md @@ -0,0 +1,13 @@ +The City of San José is neither responsible nor liable for any delays, inaccuracies, errors or omissions arising out of your use of sanjoseca.gov or with respect to the material contained on the website nor for any viruses or other contamination of your system. SanJoseca.gov and all materials contained within it are distributed and transmitted “as is” without warranties of any kind, either express or implied, including without limitations, warranties of title or implied warranties of merchantability or fitness for a particular purpose. The City is not responsible for any special, indirect, incidental or consequential damages that may arise from the use of, or the inability to use, the website and/or the materials contained on the website whether the materials contained on the website are provided by the City or a third party. + +--- + +### Access to Information + +Unless otherwise prohibited by state or federal law, rule or regulation, you will be granted the ability to access and correct any personally identifiable information. The City will take reasonable steps to verify your identity before granting such access. Each City service that collects personally identifiable information will allow for review and update of that information. + +--- + +### Non-City websites + +The City of San José does not endorse, sponsor, or provide preferential treatment to, any non-City or third-party websites or persons or other entities associated with third-party websites. The City is not responsible for, and the City does not control or maintain third-party websites, and therefore accepts no liability for, the accuracy or availability of these outside resources. Visitors to such sites become subject to the terms of use, privacy, and security policies of the owners/sponsors/operators of the third-party website. diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/get_assistance.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/get_assistance.md new file mode 100644 index 0000000000..9808d46e74 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/get_assistance.md @@ -0,0 +1,104 @@ + + + +## How to apply to affordable housing + +You can find and apply for affordable rental opportunities. + +[Read about how it works](/how-it-works) + +--- + + + +## Additional housing opportunities and resources + +We encourage you to browse other affordable housing resources. + +[View opportunities and resources](/additional-resources) + + + + + + +## Cómo solicitar una vivienda asequible + +Puede encontrar y solicitar oportunidades de alquiler asequibles. + +[Lea acerca de cómo funciona](/es/how-it-works) + +--- + + + +## Oportunidades adicionales de vivienda + +Le invitamos a consultar otros recursos de vivienda de precio accesible. + +[Ver oportunidades y recursos](/es/additional-resources) + + + + + + +## 如何申請經濟適用房 + +您可以找到併申請負擔得起的租賃機會。 + +[了解它是如何工作的](/zh/how-it-works) + +--- + + + +## 其他住房機會 + +我們建議您瀏覽其他可負擔房屋資源。 + +[查看機會及資源](/zh/additional-resources) + + + + + + + +## Làm thế nào để đăng ký nhà ở giá cả phải chăng + +Bạn có thể tìm và đăng ký các cơ hội cho thuê với giá cả phải chăng. + +[Đọc về cách nó hoạt động](/vi/how-it-works) + +--- + + +## Các Cơ hội Nhà ở Bổ sung + +Chúng tôi khuyến khích quý vị xem các nguồn thông tin trợ giúp về nhà ở giá phải chăng khác. + +[Xem các cơ hội và nguồn lực](/vi/additional-resources) + + + + + + +## Paano mag-apply sa abot-kayang pabahay + +Maaari kang maghanap at mag-aplay para sa abot-kayang pagkakataon sa pag-upa. + +[Basahin ang tungkol sa kung paano ito gumagana](/tl/how-it-works) + +--- + + + +## Karagdagang Mga Oportunidad at Mapagkukunan ng Pabahay + +Hinihikayat ka naming mag-browse ng iba pang mapagkukunan ng abot-kayang pabahay + +[Tingnan ang mga pagkakataon at mapagkukunan](/tl/additional-resources) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/homepage_how_it_works.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/homepage_how_it_works.md new file mode 100644 index 0000000000..a3b1e641cf --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/homepage_how_it_works.md @@ -0,0 +1,95 @@ + + +1. #### Find Apartments Accepting Applications (Listings) + + Find high-quality, affordable housing opportunities located throughout the Bay Area. + +2. #### Check Eligibility + + Determine if your household meets the requirements for the property. + +3. #### Apply Online + + You will be asked to complete a short application for a unit at that property. + +4. #### Get the Results + + Once ranking order is ready, results will be posted for you to download. + +5. #### Get Prepared for Placement + + You may be contacted by the property manager notifying you that you are moving forward. + + + + + +1. #### Encontrar Apartamentos que Acepten Solicitudes (Anuncios) + + Podrá encontrar viviendas de alta calidad y a precios accesibles ubicadas en todo el Condado de Alameda. + +2. #### Comprobar la elegibilidad + + Compruebe si la vivienda cumple con los requisitos para la propiedad. + +3. #### Realizar una solicitud en línea + + Deberá completar un breve formulario para solicitar una unidad en esa propiedad. + +4. #### Obtener resultados + + Una vez que la orden de clasificación esté lista, los resultados serán publicados para que pueda descargarlo. + +5. #### Prepárese para la asignación de una vivienda + + El gerente de la propiedad puede contactarlo para notificarle que está avanzando en el proceso. + + + + + +1. #### 尋找公寓受理申請(刊登資訊) + + 尋找阿拉米達郡全區中可負擔的優質住房機會。 + +2. #### 檢查資格 + + 判斷您的家戶是否符合房地產要求。 + +3. #### 線上申請 + + 您必須填寫該資產單位的簡短申請文件。 + +4. #### 取得結果 + + 排名順序準備就緒後,我們即會發佈結果且可供您下載。 + +5. #### 準備好進行安置 + + 房地產經理會聯絡並通知您進行後續程序。 + + + + + +1. #### Tìm các căn hộ đang nhận đơn đăng ký (Danh sách) + + Tìm cơ hội nhà ở chất lượng cao, giá cả phải chăng tại Quận Alameda. + +2. #### Kiểm tra tính đủ điều kiện + + Xác định xem hộ gia đình quý vị có đáp ứng các yêu cầu của khu nhà hay không. + +3. #### Đăng ký trực tuyến + + Quý vị sẽ được yêu cầu hoàn thành đơn đăng ký ngắn cho một căn hộ tại khu nhà. + +4. #### Nhận kết quả + + Sau khi có thứ tự xếp hạng, kết quả sẽ được đăng để quý vị tải xuống. + +5. #### Chuẩn bị sắp xếp + + Quý vị có thể được người quản lý khu nhà liên hệ để thông báo rằng quý vị có thể tiếp tục tham gia quy trình. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/how_it_works.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/how_it_works.md new file mode 100644 index 0000000000..8480fbe1b7 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/how_it_works.md @@ -0,0 +1,593 @@ + + +1. ## Find Apartments Accepting Applications (Listings) + +

Find high-quality, affordable rental housing opportunities located throughout San José on the listing page of this Housing Portal.

+ + The simplest way to find opportunities that are accepting applications is to [visit the affordable housing portal](/listings) within the area you wish to live. + + + + Another way to find Affordable Housing is to search the list of [Additional Housing Opportunities and Resources](/additional-resources) available on the affordable housing portal. +
+ These housing opportunities and resources provide the names, locations, and contact information for affordable housing programs and properties. However, property managers of apartments on those lists may not be able to accept applications because they already have a lot of applications that must be processed before they are able to accept new applications. Start by identifying properties that meet your needs and then contact the associated properties to find out if those properties are accepting applications. For access to other programs, including housing authority Section 8 housing assistance, please reach out to the listed contacts on the [Additional Housing Opportunities and Resources](/additional-resources) page. + +
+ +2. ## Check Eligibility + +

Determine if your household meets the requirements for the property.

+ + Affordable housing is reserved for people with limited income and/or other special circumstances. Applicants will need to assess their ability to meet the population and income requirements at the property for which they choose to apply. + + + + ### Population Requirements + + Most affordable housing properties are available to people with limited income. However, a small percentage is designated for specific populations as well. Examples include: + + * Seniors: These may include apartments designated as “senior” housing for individuals over a particular age. + * People with developmental disabilities: All of the units in a property, or a percentage of units within a property, may be designated for people with disabilities. + * Transition Age Youth (TAY): Transition Age Youth are individuals between the ages of 16 and 24 years old who are in transition from state custody or foster care environments and are at-risk. + * Special needs: Special needs covers various populations, including, but not limited to, households experiencing homelessness, or that are at risk of homelessness, as well as individuals with developmental disabilities. Homes in these particular communities typically include services or features that support the Special Needs population. + + Be sure to read about the population requirements by going to the property’s listing on the affordable housing portal before contacting the property manager. + + ### Income Requirements + + Your total household income cannot exceed the maximum household income limits for the property, based on the following definitions: + + * Household: A “household” may be just one person, or two or more persons. All household members that will be living in the home must be included in the application. + * Household income: The combined annual income from all persons over 18 years old who are part of the household. + * Maximum household income: You will be asked to provide the “gross” Maximum Income (also known as Gross Household Income). This refers to the total income before taxes or other deductions. + * Minimum household income: The minimum monthly income required to be eligible for the property, typically equal to 1.5 or 2 times monthly rent. + + There are three ways to determine if your household meets the minimum and maximum income requirements. + + #### 1\. View the Income Requirements for Properties listed on the San José Housing Portal + + Properties that are listed on the Doorway Portal will show the minimum and maximum household income requirements for applicants. Click on the link for the specific property listing in which you are interested. Scroll down to the tables which list the minimum and maximum income required for each apartment. + + #### 2\. Contact the property manager + + If the property you are interested in is not listed on the Doorway Housing Portal, it is most likely not accepting applications at the present time. However, you may contact the property manager listed for that property to find out the eligibility requirements. + + #### 3\. Check the income tables published by the housing agency in your area + + You may also check the income tables published on the housing agency website in the area in which your desired affordable housing is located. These tables are produced by the U.S Department of Housing and Urban Development (HUD) and are updated annually. [Tables for San José are provided here.](https://www.sanjoseca.gov/your-government/departments-offices/housing/data/income-and-rent-limits/affordable-rental-housing) A household would typically be considered eligible for most affordable housing if the household income is 60% of Area Median Income (AMI) or below. However, some properties have rents that are restricted to “moderate” income households with incomes up to 120% of AMI. If you have questions regarding these tables, please contact the agency in the area for which you are looking for affordable housing. + + #### Preferences + + Some cities have adopted “preferences” that provide applicants who meet the preference criteria with a greater chance of being selected. A common example is a preference for applicants who live or work in the area in which the affordable housing site is located. Be sure to provide all the information requested on the application as it may allow you to qualify for any available preferences. + + If you need help applying, go to the [Resources](/additional-resources) page. + + + +3. ## Apply Online + +

You will be asked to complete a short application for a unit at that property.

+ + Be sure to complete your application by the date specified on the property. Properties listed on the web portal require a minimum amount of information to be submitted on a “short-form” digital or paper application. + + + + After you submit your application, you may be contacted by the property manager. If contacted, you will be asked to provide documentation on your income and finances. If you are not immediately selected for a placement interview, this doesn’t mean that you were not eligible to live at the property. A property manager may keep your application for several years before contacting you. Stay in touch with the property manager by periodically checking in regarding the status of your application. +
+ Due to the high demand for affordable housing, it can take a while before you get contacted for potential placement at a specific apartment. Therefore, it is important that you apply for housing at multiple properties that meet your housing needs and keep track of the properties that you have applied to. It is also important to complete Step 5 (Get Prepared for Placement ) even if you are not contacted right away by the property manager for placement in an apartment. Getting your finances in order, including reviewing your household budget, taking care of your credit, and gathering the required documents, will prepare you for when you are contacted by a property manager. + +
+ +4. ## Get the results + +

You will be contacted by the property manager with further instructions.

+ + The time between submitting your application and being contacted by the property manager depends on the number of vacancies in the property. It may vary from a couple of weeks to months and in some cases can take up to several years. Some people will not be selected for the next step in the process because they do not qualify to live in the apartment due to their income or other reasons. + + + + There are two methods that property managers use to determine the order in which applicants are selected to move forward in the application process. One method is to organize the applications by the date and time that the application was received (“first come, first serve”). The second method is to randomize the applications on a computer to generate an order for all applications. Randomization of the applications only takes place after the application due date. +
+ If you receive a letter or email from the property manager notifying you that you are moving forward in the application process, you are one step closer to being selected for an apartment. You should keep a record of any documentation that you receive from property managers. + +
+ +5. ## Get Prepared for Placement + +

If you are notified that you are moving forward in the application process, there will be two next steps: 1) submitting identification documents and financial information to the property manager; and 2) meeting with the property manager.

+ + + + ### 1\. Submitting identification documents and financial information + + The property manager will ask for documents to verify the information provided in your application. Gathering this information before you are contacted by the property manager will help you prepare for selection as a tenant in an apartment. + + The documents that a property manager may require are summarized below into two different categories: A) identification documents and B) financial information. The set of documents requested may vary, depending upon the property’s requirements for placement. + + #### A\. Identification Documents + + The documents listed below are not necessarily required, but they may help the property manager review your application. + + * Photo identification for everyone in your household who is 18 or older + * Birth Certificate, or Social Security Card, or passport for everyone under 18. + + #### B\. Financial Information + + * Income: You will be asked to provide all sources of income for each member of your household over 18 years of age. Examples include: + * Welfare, Veteran benefits, social security letter + * Rental assistance voucher + * Recent paystubs from your current employer + * Self-Employment proof + * Alimony + * Current pension or retirement income + + + * Expenses: + * Checking account statements + * Savings account statements + * Most recent credit card statement + * Alimony payments + + + * Other Financial Information: + * The last official statement of 401k or IRA + * Assets – i.e., vehicles, stocks or real estate + + The property manager will review your credit as part of reviewing your financial information. There are many resources available online to help you understand and improve your credit score. One article is [How to Improve Your Credit Score: Tips & Tricks (debt.org)](https://www.debt.org/credit/improving-your-score/). + + As stated, **you do _not_ need to possess these documents to submit your initial application** via the San José Doorway Housing Portal. However, gathering these documents will help you prepare you for the next step in the application process. If you do not possess these documents, you can get assistance from a housing counselor, who can help you obtain them. Contact the housing agency in your area to find out how to obtain housing counseling. + + ### 2\. Meeting with the Property Manager + + The placement interview is the last step in the application process. Depending on the property, the property manager may request a meeting with you before or after you have gathered the requested documents. The property manager may request that all of your household members attend the meeting. The property manager will review your documents with you and determine whether or not you are qualified to live in the apartment. + + + +
+ + + +1. ## Encontrar Apartamentos a través de la Aceptación de Solicitudes (Anuncios) + +

Podrá encontrar alquileres de viviendas de alta calidad y económicos en todo San José en la página del anuncio en este Portal de Viviendas.

+ + La manera más simple de encontrar propietarios que estén aceptando solicitudes es visitar el portal de viviendas económicas dentro del área que usted desea vivir. + + + + Otra forma de encontrar viviendas económicas es a través de la lista de [Oportunidades y Recursos Adicionales de Vivienda](/es/additional-resources) que está disponible en el portal de viviendas económicas. +
+ Estas oportunidades y recursos de vivienda brindan información de los nombres, ubicaciones y datos de contacto para programas y propiedades de vivienda económicas. No obstante, es posible que los administradores de los apartamentos que figuran en esas listas no puedan aceptar solicitudes porque ya recibieron muchas solicitudes que deben ser procesadas antes de que puedan aceptar nuevas solicitudes. Primero, deberá identificar las propiedades que satisfagan sus necesidades y luego deberá contactarse con los administradores de esas propiedades para saber si están aceptando nuevas solicitudes. Si desea acceder a otros programas, incluyendo la ayuda de vivienda de la Sección 8 de la Autoridad de Vivienda, por favor, comuníquese con los contactos publicados en la página de [Oportunidades y Recursos Adicionales de Vivienda](/es/additional-resources). + +
+ +2. ## Comprobar la elegibilidad + +

Compruebe si la vivienda cumple con los requisitos para la propiedad.

+ + Solamente las personas con ingresos limitados y/o que están en circunstancias especiales podrán acceder a una vivienda económica. Las personas que solicitan viviendas económicas deberán que evaluar si cumplen con los requisitos de población e ingresos que la propiedad establece. + + + + ### Necesidades de población + + La mayoría de las viviendas económicas están disponibles para personas con ingresos limitados. No obstante, también se indica un pequeño porcentaje para poblaciones específicas. Entre los ejemplos se incluyen: + + * Personas Mayores: Las personas mayores pueden solicitar el acceso a viviendas “senior” que están designadas para personas que superan una edad determinada. + * Personas con discapacidades de desarrollo: Todas las unidades en una propiedad, o un porcentaje de unidades dentro de una propiedad, pueden ser designadas para personas con discapacidades. + * Jóvenes en Edad de Transición (TAY por sus siglas en inglés): Se considera a Jóvenes en Edad de Transición a personas que tienen entre 16 y 24 años que están en transición de la custodia estatal o que estén bajo adopción y estén en riesgo. + * Personas con Necesidades especiales: Se considera a personas con necesidades especiales a varias poblaciones. En estos grupos de poblaciones se incluye, pero no limita a, familias que no tienen un hogar o que están en riesgo de perder su hogar, así como personas con discapacidades del desarrollo. Hay muchas viviendas dentro de estas comunidades que, por lo general, incluyen servicios o tienen características que apoyan a personas con Necesidades Especiales. + + Es importante leer primero los requisitos de población del anuncio de la propiedad en el portal de viviendas económicas antes de comunicarse con el gerente de la propiedad. + + ### Requisitos de ingresos + + Los ingresos totales de su hogar no pueden exceder los límites máximos de ingresos del hogar que establece la propiedad. Este índice está basado en las siguientes definiciones: + + * Vivienda: Una “vivienda” puede estar habitada por una, dos o más personas. Todos los miembros que habitarán la vivienda deben ser incluidos en la solicitud. + * Ingresos del hogar: Este índice está basado en el ingreso anual en conjunto con todas las personas mayores de 18 años que habitan la vivienda. + * Ingreso máximo del hogar: En la solicitud, se deberá establecer el ingreso máximo “bruto” (también conocido como Ingreso Bruto de la Familia). El ingreso bruto es el ingreso total sin contemplar a los impuestos u otras deducciones. + * Ingreso mínimo del hogar: El ingreso mensual mínimo para ser elegible para la propiedad por lo general es igual a 1.5 o 2 veces el alquiler mensual. + + Hay tres maneras de saber si cumple con los requisitos de ingresos mínimos y máximos que la vivienda requiere. + + #### 1\. Infórmese sobre los Requisitos mínimos y máximos de Ingresos que establecen las Propiedades y que figuran en el Portal de Viviendas + + Las propiedades que están publicadas en el Portal de Viviendas tienen en su descripción que ingresos mínimos y máximos debe tener un solicitante. Haga clic en el enlace de la propiedad que le interesa. En la parte inferior de la página, podrá encontrar las tablas donde se enumeran los ingresos mínimos y máximos requeridos para cada apartamento. + + #### 2\. Comuníquese con el administrador de la propiedad + + Si la propiedad en la que está interesado no figura en el Portal de Viviendas, probablemente se deba a que el propietario no esté aceptando solicitudes actualmente. De todos modos, puede ponerse en contacto con el administrador de la propiedad para averiguar los requisitos de elegibilidad. + + #### 3\. Consulte las tablas de ingresos publicadas por la agencia de vivienda en su área + + Para más información, puede consultar las tablas de ingresos. Estas tablas de ingresos están publicadas en el sitio web de la agencia de vivienda en el área en la que se encuentra la vivienda económica que está buscando. Estas tablas fueron elaboradas por el Departamento de Vivienda y Desarrollo Urbano de los Estados Unidos (HUD por sus siglas en inglés) y son actualizadas anualmente. [Las tablas de San José aparecen aqui.](https://www.sanjoseca.gov/your-government/departments/housing/data/income-and-rent-limits/affordable-rental-housing) Por lo general, una familia o un hogar se consideraría elegible para acceder a una vivienda económica si el ingreso del hogar es del 60% de la Media de Ingresos de la Zona (AMI por sus siglas en inglés) o menos. No obstante, algunas propiedades tienen rentas que se limitan a familias u hogares que tienen ingresos “moderados” de hasta el 120% de la Media de Ingresos de la Zona. Si desea recibir más información sobre estas tablas, por favor comuníquese con la agencia del área donde usted está buscando la vivienda económica. + + #### Preferencias + + Algunas ciudades han adoptado ciertas "preferencias" para que los solicitantes que cumplen con determinados criterios tengan más probabilidades de ser seleccionados. Por ejemplo, los solicitantes que viven o trabajan en el área en la que se encuentra la vivienda económica, tienen una mayor “preferencia”. Es importante que los solicitantes brinden la mayor información posible al momento de completar la solicitud, ya que esto les permite calificar para cualquier preferencia disponible. + + En caso de necesitar ayuda para realizar una solicitud, diríjase a la página de [Recursos](/es/additional-resources). + + + +3. ## Realizar una solicitud en línea + +

Deberá completar un breve formulario para solicitar una unidad en esa propiedad.

+ + Deberá completar su solicitud antes de la fecha especificada en la propiedad. Las propiedades que aparecen en el portal web requieren que complete una cantidad mínima de información en un “formulario corto” a través de una solicitud digital o en papel. + + + + Luego de presentar la solicitud, es posible que el administrador de la propiedad se comunique con usted. En caso de ser contactado por el administrador de la propiedad, se le pedirá que brinde documentación sobre sus ingresos y sus finanzas. +
+ En caso de no ser seleccionado inmediatamente para una entrevista, no significa que no es elegible para habitar en la propiedad. Un administrador de propiedad puede mantener su solicitud por varios años antes de comunicarse con usted. Puede mantenerse en contacto con el administrador de la propiedad comprobando de manera periódica el estado de su solicitud. +
+ Debido a la alta demanda de viviendas económicas, es posible tarde un poco de tiempo antes que algún administrador de propiedad se ponga en contacto con usted. Por eso, es importante que usted realice varias solicitudes de propiedades que satisfagan sus necesidades. Además, le recomendamos que realice un seguimiento de las propiedades a las que ha aplicado. Es importante que complete el Paso 5 (Preparación para la asignación de vivienda) incluso si el administrador de la propiedad no se comunica con usted inmediatamente. Si el solicitante revisa su presupuesto familiar, cuida de su crédito, y reúne los documentos que se solicitan, tendrá todo listo para cuando un administrador de una propiedad lo contacte. + +
+ +4. ## Resultados + +

El administrador de la propiedad se comunicará con usted y le enviará instrucciones adicionales.

+ + El tiempo entre presentar su solicitud y ser contactado por el administrador de la propiedad dependerá del número de vacantes que tiene la propiedad. El tiempo que transcurre puede variar desde un par de semanas hasta meses. En algunos casos puede tomar hasta varios años. Es posible que algunos solicitantes no queden seleccionados para el siguiente paso debido a que no reúnen las características necesarias para vivir en el apartamento debido a sus ingresos u otras razones. + + + + Existen dos métodos que utilizan los administradores de propiedades para determinar el orden en que se seleccionan los solicitantes para avanzar en el proceso. El primer método consiste en organizar las solicitudes por la fecha y hora (“por orden de llegada”). El segundo método consiste en distribuir las solicitudes de manera aleatoria en una computadora y así generar una orden para todas las solicitudes. La asignación aleatoria de las solicitudes solo se realizará después de la fecha de vencimiento de la solicitud. +
+ En caso de recibir una carta o un correo electrónico por parte del administrador de la propiedad notificándole que está avanzando en el proceso de solicitud, significa que está cada vez más cerca de ser seleccionado para un apartamento. Es muy importante que el solicitante mantenga un registro de cualquier documentación que reciba por parte de los administradores de propiedades. + +
+ +5. ## Prepárese para el Siguiente Paso + +

Si se le notifica que está avanzando en el proceso de solicitud, deberá realizar los siguientes pasos: 1) Deberá presentar documentos de identificación e información financiera al administrador de la propiedad; y, además 2) deberá reunirse con el administrador de la propiedad.

+ + + + ### 1\. Presentación de documentos de identificación e información financiera + + El administrador de la propiedad le solicitará documentos para corroborar la información que usted brindó en su solicitud. Es muy importante que el solicitante tenga la documentación preparada antes de que el administrador se comunique ya que le ayudará a prepararse para ser seleccionado como inquilino en un apartamento. + + Los documentos que un administrador puede solicitarle se resumen a continuación en dos categorías diferentes: A) documentos de identificación y B) información financiera. Los documentos pueden variar y va a depender de los requisitos de la propiedad. + + #### A\. Documentos de Identificación + + Los documentos que se mencionan a continuación no siempre se solicitan, pero pueden ayudar al administrador de la propiedad a revisar su solicitud. + + * Identificación fotográfica de todas las personas físicas que viven en su hogar que tengan 18 años o más + * Acta de Nacimiento, o Tarjeta de Seguro Social, o Pasaporte en caso de haber menores de 18 años. + + #### B\. Información financiera + + * Ingresos: Deberá brindar información relacionada a todas las fuentes de ingresos de cada miembro de su hogar mayor de 18 años de edad. Entre los ejemplos se incluyen: + * Servicios de Asistencia Pública, Beneficios para Veteranos, Seguridad social + * Bonos de Asistencia de Alquiler + * Recibos de Sueldo Recientes de su Empleador Actual + * Comprobantes de Trabajo por Cuenta Propia + * Pensión Alimentaria + * Ingresos actuales de pensiones o jubilaciones + + + * Gastos: + * Estados de cuenta corriente + * Estados de caja de ahorros + * Estado de cuenta de la tarjeta de crédito más reciente + * Pagos de Pensión Alimentaria + + + * Información financiera adicional: + * Última declaración oficial de 401k o Cuentas de Retiro Individual (IRA por sus siglas en inglés) + * Activos como por ejemplo: vehículos, acciones o bienes raíces + + El administrador de la propiedad revisará su crédito como parte su información financiera. Puede acceder a recursos disponibles en línea que le ayudarán a entender y mejorar el puntaje de su crédito. Un artículo que le ayudará es [“¿Cómo puedo mejorar mi puntuación de crédito?”: Consejos y Recomendaciones (debt.org)](https://www.debt.org/credit/improving-your-score/). + + Tal como indicó previamente, **no es necesario poseer estos documentos para poder presentar una solicitud inicial** a través del Portal de Viviendas de San José. De todos modos, recopilar estos documentos le ayudará a estar listo para el siguiente paso. Si usted no posee estos documentos, puede pedirle ayuda de un asesor de vivienda. Póngase en contacto con la agencia de vivienda de su área para obtener asesoría de vivienda. + + ### 2\. Reunión con el administrador de la propiedad + + El último paso en el proceso de solicitud será la entrevista con el administrador. Dependiendo de la propiedad, el administrador podrá solicitar una reunión con usted antes o después de haber reunido los documentos que le haya solicitado. El administrador de la propiedad puede solicitar la asistencia a la reunión de todos los miembros de su hogar. El administrador revisará sus documentos y decidirá si usted está calificado o no para vivir en el apartamento. + + + +
+ + + +1. ## 尋找公寓受理申請(刊登資訊) + +

聖荷西市 Doorway 門戶網站是灣區幾個類似的網站之一,旨在簡化尋找和申請可負擔租 房的過程。本指南介紹可負擔住房以及如何申請。

+ + 若要尋找最易於受理申請的機會,可瀏覽欲居住地區的可負擔住房入口網站。 + + + + 另外一個尋找可負擔住房的方式即為:在可負擔住房入口網站中,搜尋其他可用住房機會和資源的刊登資訊。[Additional Housing Opportunities and Resources](/zh/additional-resources) +
+ 這些住房機會和資源會提供可負擔住房計畫和房地產的名稱、位置及聯絡資訊。但是,那些刊登資訊上的公寓房地產經理可能無法受理申請,因為目前已有大量必須受理的申請,以至於暫時無法接受新申請。請先確認符合您需求的房地產,然後聯絡相關房地產以深入了解是否受理申請。如需存取住房委員會第八類住房補助等其他計畫,請在「[其他住房機會和資源](/zh/additional-resources)」頁面上聯絡列表聯絡人。 + +
+ +2. ## 檢查資格 + +

判斷您的家戶是否符合房地產要求。

+ + 可負擔住房會保留給具備有限收入和/或其他特殊狀況的人士。申請人必須針對欲申請房地產評估其滿足群體和收入要求的能力。 + + + + ### 群體要求 + + 大多數可負擔住房房地產皆可供具備有限收入的人士申請。但是,一小部分同樣適用於特定群體。範例包括: + + * 長者: 這些可能包括提供給年滿特定年齡人士的「長者」專用住房。 + * 發展障礙人士: 房地產中所有或部分單位可能會提供給障礙人士申請。 + * 過渡年齡青少年 (TAY): 過渡年齡青少前為 16 至 24 歲之間,目前自國家監護或寄養環境過渡並處於風險的人士。 + * 特殊需求: 特殊需求涵蓋各種群體,包括但不限於遭遇無家可歸或具有風險的家戶,以及發展障礙人士。這些特定社區的家庭通常包括支援特殊需求群體的服務或功能。 + + 請務必先行前往可負擔住房入口網站上的房地產刊登資訊並閱讀群體要求,然後聯絡房地產經理。 + + ### 收入要求 + + 您的家戶總收入不得超過該房地產提出的最高家戶收入,基礎定義如下: + + * 家戶: 「家戶」可能只有一個成員,或是兩個以上的成員。申請中必須包含所有將會居住在一起的家戶成員。 + * 家戶收入: 所有年滿 18 歲家戶成員的綜合年度收入。 + * 最高家戶收入: 您必須提供最高「總」收入(也稱為家戶總收入)。這指的是稅前或其他扣除額前的總收入。 + * 最低家戶收入: 一般來說,房地產必要的最低每月收入資格等於每月租金的 1.5 或 2 倍。 + + 共有三種方式可判斷您的家戶是否符合最低和最高收入要求。 + + #### 1\. 檢視阿拉米達郡住房入口網站上的房地產收入要求 + + 刊登於阿拉米達郡住房入口網站上的房地產會向申請人顯示最低和最高家戶收入要求。按一下您有興趣了解的特定房地產刊登資訊連結。向下捲動至列明每個公寓要求之最低和最高收入的表格。 + + #### 2\. 聯絡房地產經理 + + 如果阿拉米達郡住房入口網站未刊登您有興趣了解的房地產,極有可能是目前不受理申請。但是,您可以聯絡該房地產刊登資訊的房地產經理,以便深入了解資格要求。 + + #### 3\. 查看您所在地區住房仲介業者發佈的收入表 + + 您也可以針對想要的可負擔住房所在地區,查看住房仲介業者發佈的收入表。這些表格由美國住房及城市發展部 (U.S Department of Housing and Urban Development, HUD) 製作並每年更新內容。[這裡也提供阿拉米達郡的表格](https://www.sanjoseca.gov/your-government/departments/housing/data/income-and-rent-limits/affordable-rental-housing)。如果家戶收入落在地區收入中位數 (AMI) 的 60% 以下,則該家戶通常可視為符合大多數可負擔住房的資格。 但是,部分房地產的租金對象則受限於「中等」收入家戶,且收入高達 AMI 的 120%。如果您對這些表格有疑問,請聯絡尋找可負擔住房所在地區的仲介業者。 + + #### 優先順序 + + 有些城市目前採用的「優先順序」,可為符合優先順序標準的申請人大幅提升獲選機會。常見範例為適用於居住或任職於可負擔住房所在地區之申請人的優先順序。請務必提供該申請要求的所有資訊,因為這會讓您取得任何可用優先順序的資格。 + + 如果您申請時需要協助,請前往「[資源](/zh/additional-resources)」頁面。 + + + +3. ## 線上申請 + +

您必須填寫該資產單位的簡短申請文件。

+ + 請務必在房地產指定日期前填寫您的申請。如果是網頁入口網站所刊登的房地產,則有以「簡易格式」的數位或紙本申請提交最少量資訊的要求。 + + + + 提交申請後,房地產經理可能會與您聯絡。如果收到聯絡,您就必須提供收入和財務的證明文件。 +
+ 如果您未立即獲選進入安置面談程序,這不表示您不符合該房地產的居住資格。房地產經理可能會將您的申請留存多年才與您聯絡。定期查看與您申請相關的狀態,藉此與房地產經理保持聯絡。 +
+ 由於可負擔住房的高度需求,因此在您收到聯絡並進行特定公寓可能的安置程序前需要一段時間。因此,請務必針對多個符合住房需求的房地產提出住房申請,並追蹤您已申請的房地產。另請務必完成步驟 5(準備好進行安置),即使房地產經理不會立即針對公寓安置與您聯絡。排序您的財務狀況,包括檢閱您的家戶預算、關心您的信用並收集必要文件,上述步驟可讓您在收到房地產經理的聯絡時準備就緒。 + +
+ +4. ## 取得結果 + +

房地產經理將與您聯絡並進一步向您說明。

+ + 從提交申請至收到房地產經理聯絡的時間,取決於該房地產的空房件數。這可能是幾週到幾月,有些情況下還會長達數年。有些人不會獲選進入流程後續步驟,因為他們基於其收入或其他原因不符合該公寓的居住資格。 + + + + 房地產經理會使用兩種方式來判斷申請人獲選的順序,以便進入下一個申請流程。一種方式為依收到申請日期和時間整理申請文件的順序(「先到先得」)。第二種方式為透過電腦隨機為申請文件排出申請順序。過了申請期限後,才會隨機排序申請文件。 +
+ 如果您收到房地產經理的信函或電子郵件,通知您進入下一個申請流程,您距離獲選公寓資格就更近了。房地產經理如有向您傳送任何證明文件,請務必留存記錄。 + +
+ +5. ## 準備好進行安置 + +

如果您收到了進入下一個申請流程的通知,以下是兩個後續步驟:1) 向房地產經理提交身分識別文件和財務資訊;並 2) 與房地產經理會面。

+ + + + ### 1\. 提交身分識別文件和財務資訊 + + 房地產經理會要求您提供文件,以便驗證您在申請中提交的資訊。在您收到房地產經理的聯絡前收集此資訊,即有助於為公寓承租人遴選做好準備。 + + 下方已概述房地產經理可能要求的文件,並分成兩個不同的類別:A) 身分識別文件和 B) 財務資訊。所要求文件的組合可能視乎房地產安置要求而有所不同。 + + #### A\. 身分識別文件:下方刊登了不一定需要的文件,但這些可能有助於房地產經理審核您的申請。 + + 下方刊登了不一定需要的文件,但這些可能有助於房地產經理審核您的申請。 + + * 在您家戶中每位年滿 18 歲成員的照片識別 + * 每位未滿 18 歲成員的出生證明、社會安全卡或護照。 + + #### B\. 財務資訊 + + * 收入: 您必須提供每位年滿 18 歲以上成員的所有收入來源。範例包括: + * 社會福利、退伍軍人福利、社會安全局信函 + * 租金援助補助券 + * 您目前雇主提供的薪資明細表 + * 自雇證明 + * 贍養費 + * 目前退休金或退休收入 + + + * 開銷: + * 支票帳戶對帳單 + * 儲蓄帳戶對帳單 + * 最近期信用卡月結單 + * 贍養費付款 + + + * 其他財務資訊: + * 最新的 401k 或 IRA 官方聲明 + * 資產,例如汽車、股票或不動產 + + 房地產經理審核您的財務資訊時也會審核您的信用。如需了解並提升您的信用分數,網路上有很多資源可供運用。關於[「如何提升您的信用分數」的文章:秘訣和技巧 (debt.org)](https://www.debt.org/credit/improving-your-score/)。 + + 如規定內容,**您不需要持有這些文件即可提交第一次申請**。但是,收集這些文件可協助您準備好進行申請程序中的後續步驟。如果您未持有這些文件,您可以諮詢有能力協助準備完整文件的住房顧問。聯絡您所在地區的住房仲介業者,以便深入了解如何取得住房諮詢服務。 + + ### 2\. 與房地產經理會面 + + 申請流程中最後一個步驟就是安置面談。視乎各種房地產而不同,在您收集必要文件的前後日期,房地產經理可能會要求與您會面。 房地產經理可能會要求您所有的家戶成員參加會面。房地產經理會與您一起審核您的文件,並判斷您是否符合該公寓的居住資格。 + + + +
+ + + +1. ## Tìm các căn hộ đang nhận đơn đăng ký (Danh sách) + +

Tìm các cơ hội thuê nhà chất lượng cao, giá cả phải chăng tại San José trên trang danh sách của Cổng thông tin nhà ở này.

+ + Cách đơn giản nhất để tìm các cơ hội đang nhận đơn đăng ký là truy cập cổng thông tin nhà ở giá cả phải chăng trong khu vực quý vị muốn sinh sống. + + + + Một cách khác để tìm Nhà ở giá cả phải chăng là tìm kiếm danh sách [Cơ hội và nguồn hỗ trợ nhà ở bổ sung](/vi/additional-resources) có sẵn trên cổng thông tin nhà ở giá cả phải chăng. +
+ Các cơ hội và nguồn hỗ trợ nhà ở này cung cấp tên, địa điểm và thông tin liên lạc cho các chương trình và khu nhà ở giá cả phải chăng. Tuy nhiên, những người quản lý khu nhà của các căn hộ trong danh sách đó có thể không nhận đơn đăng ký được vì họ đã có rất nhiều đơn đăng ký phải xử lý trước khi có thể nhận đơn đăng ký mới. Bắt đầu bằng cách xác định các khu nhà đáp ứng nhu cầu của quý vị, sau đó liên hệ với các khu nhà có liên quan để tìm hiểu xem các khu nhà đó có đang nhận đơn đăng ký hay không. Để truy cập vào các chương trình khác, bao gồm hỗ trợ nhà ở Mục 8 của cơ quan quản lý nhà ở, vui lòng liên hệ với các địa chỉ liên hệ được liệt kê trên trang [Cơ hội và nguồn hỗ trợ nhà ở bổ sung](/vi/additional-resources). + +
+ +2. ## Kiểm tra tính đủ điều kiện + +

Xác định xem hộ gia đình quý vị có đáp ứng các yêu cầu của khu nhà hay không.

+ + Nhà ở giá cả phải chăng dành cho những người có thu nhập hạn chế và/hoặc các hoàn cảnh đặc biệt khác. Người nộp đơn sẽ cần phải đánh giá khả năng đáp ứng các yêu cầu về nhóm dân cư và thu nhập tại khu nhà mà họ chọn nộp đơn. + + + + ### Yêu cầu về nhóm dân cư + + Hầu hết các khu nhà ở giá cả phải chăng đều dành cho những người có thu nhập hạn chế. Tuy nhiên, một tỷ lệ nhỏ cũng được chỉ định cho các nhóm dân cư cụ thể. Các ví dụ bao gồm: + + * Người cao tuổi: Mục này có thể bao gồm các căn hộ được chỉ định là nhà ở cho “người cao tuổi” dành cho các cá nhân trên một độ tuổi nào đó. + * Người bị khuyết tật phát triển: Tất cả các căn hộ trong khu nhà, hoặc một phần căn hộ trong khu nhà, có thể được chỉ định cho người khuyết tật. + * Thanh niên trong độ tuổi chuyển tiếp (TAY): Thanh niên trong độ tuổi chuyển tiếp là những cá nhân trong độ tuổi từ 16 đến 24 đang chuyển tiếp từ môi trường chăm sóc nuôi dưỡng hoặc giám hộ của tiểu bang và có nguy cơ gặp rủi ro. + * Các nhu cầu đặc biệt: Các nhu cầu đặc biệt dành cho các nhóm dân cư khác nhau, bao gồm, nhưng không giới hạn ở các hộ gia đình vô gia cư, hoặc có nguy cơ vô gia cư, cũng như các cá nhân bị khuyết tật phát triển. Những ngôi nhà trong các cộng đồng cụ thể này thường bao gồm các dịch vụ hoặc tính năng hỗ trợ nhóm dân cư có Nhu cầu đặc biệt. + + Hãy nhớ đọc các yêu cầu về nhóm dân cư bằng cách truy cập danh sách các khu nhà trên cổng thông tin nhà ở giá cả phải chăng trước khi liên hệ với người quản lý khu nhà. + + ### Yêu cầu về thu nhập + + Tổng thu nhập hộ gia đình của quý vị không được vượt quá giới hạn thu nhập hộ gia đình tối đa cho khu nhà, dựa trên các định nghĩa sau: + + * Hộ gia đình: Một “hộ gia đình” có thể chỉ là một người, hoặc hai người trở lên. Phải liệt kê tất cả các thành viên trong hộ gia đình sẽ sống trong nhà trong đơn đăng ký. + * Thu nhập hộ gia đình: Thu nhập hàng năm tổng hợp từ tất cả những người trên 18 tuổi thuộc hộ gia đình. + * Thu nhập hộ gia đình tối đa: Quý vị sẽ được yêu cầu cung cấp “tổng” Thu nhập tối đa (còn được gọi là Tổng thu nhập hộ gia đình). Trong đó bao gồm tổng thu nhập trước thuế hoặc các khoản khấu trừ khác. + * Thu nhập hộ gia đình tối thiểu: Thu nhập tối thiểu hàng tháng cần có để đủ điều kiện cho khu nhà, thường bằng 1,5 hoặc 2 lần tiền thuê hàng tháng. + + Có ba cách để xác định xem hộ gia đình của quý vị có đáp ứng các yêu cầu về thu nhập tối thiểu và tối đa hay không. + + #### 1\. Xem các Yêu cầu về thu nhập đối với các khu nhà được liệt kê trên Cổng thông tin nhà ở tại San José + + Các khu nhà được liệt kê trên Cổng thông tin nhà ở tại San José sẽ hiển thị các yêu cầu về thu nhập tối thiểu và tối đa của hộ gia đình đối với người nộp đơn. Nhấp vào liên kết để xem danh sách các khu nhà cụ thể mà quý vị quan tâm. Cuộn xuống các bảng liệt kê thu nhập tối thiểu và tối đa mà mỗi căn hộ yêu cầu. + + #### 2\. Liên hệ với người quản lý khu nhà + + Nếu khu nhà quý vị quan tâm không được liệt kê trên Cổng thông tin nhà ở tại San José, thì rất có thể nơi đó sẽ không nhận đơn đăng ký vào thời điểm hiện tại. Tuy nhiên, quý vị có thể liên hệ với người quản lý khu nhà được liệt kê cho khu nhà đó để tìm hiểu các yêu cầu về tính đủ điều kiện. + + #### 3\. Xem các bảng thu nhập được công bố bởi cơ quan nhà ở trong khu vực của quý vị + + Quý vị cũng có thể xem các bảng thu nhập được công bố trên trang web của cơ quan nhà ở trong khu vực có nhà ở giá cả phải chăng mong muốn của quý vị. Các bảng này do Bộ Gia cư và Phát triển Đô thị Hoa Kỳ (HUD) sản xuất và được cập nhật hàng năm. [Các bảng cho San José được cung cấp tại đây.](https://www.sanjoseca.gov/your-government/departments/housing/data/income-and-rent-limits/affordable-rental-housing) Một hộ gia đình thường sẽ được xem là đủ điều kiện cho nhà ở giá cả phải chăng nhất nếu thu nhập của hộ gia đình bằng 60% Thu nhập Trung bình Khu vực (AMI) trở xuống. Tuy nhiên, một số khu nhà có giá thuê được giới hạn cho các hộ gia đình có thu nhập “trung bình” với thu nhập lên đến 120% AMI. Nếu quý vị có thắc mắc liên quan đến các bảng này, vui lòng liên hệ với cơ quan trong khu vực mà quý vị đang tìm kiếm nhà ở giá cả phải chăng. + + #### Ưu tiên + + Một số thành phố đã áp dụng “ưu tiên” để cung cấp cho những người nộp đơn đáp ứng các tiêu chí ưu tiên có cơ hội được chọn cao hơn. Một ví dụ phổ biến là ưu tiên cho những người nộp đơn đang sống hoặc làm việc trong khu vực có nhà ở giá cả phải chăng. Hãy nhớ cung cấp tất cả thông tin được yêu cầu trong đơn đăng ký vì thông tin đó có thể giúp quý vị đủ điều kiện có được bất kỳ sự ưu tiên có sẵn nào. + + Nếu quý vị cần trợ giúp đăng ký, hãy truy cập trang [Tài nguyên](/vi/additional-resources). + + + +3. ## Đăng ký trực tuyến + +

Quý vị sẽ được yêu cầu hoàn thành đơn đăng ký ngắn cho một căn hộ tại khu nhà.

+ + Hãy nhớ hoàn thành đơn đăng ký trước ngày được chỉ định tại khu nhà. Các khu nhà được liệt kê trên cổng thông tin trên trang web yêu cầu một lượng thông tin tối thiểu phải được gửi trên đơn đăng ký giấy hoặc kỹ thuật số “dạng ngắn”. + + + + Sau khi gửi đơn đăng ký, quý vị có thể được người quản lý khu nhà liên hệ. Nếu được liên hệ, quý vị sẽ được yêu cầu cung cấp tài liệu về thu nhập và tài chính của mình. +
+ Nếu quý vị không được chọn ngay lập tức cho một cuộc phỏng vấn bố trí, điều này không có nghĩa là quý vị không đủ điều kiện sống tại khu nhà. Người quản lý khu nhà có thể giữ đơn đăng ký của quý vị trong vài năm trước khi liên hệ với quý vị. Hãy giữ liên lạc với người quản lý khu nhà bằng cách kiểm tra định kỳ về tình trạng đơn đăng ký của quý vị. +
+ Do nhu cầu cao về nhà ở giá phải chăng, có thể mất một thời gian trước khi quý vị được liên hệ để có cơ hội được bố trí một căn hộ. Do đó, điều quan trọng là quý vị phải nộp đơn đăng ký nhà ở tại nhiều khu nhà đáp ứng nhu cầu về nhà ở của quý vị và theo dõi các khu nhà mà quý vị đã đăng ký. Điều quan trọng nữa là phải hoàn thành Bước 5 (Chuẩn bị sắp xếp) ngay cả khi quý vị chưa được người quản lý khu nhà liên hệ ngay để sắp xếp căn hộ. Hãy sắp xếp tài chính của quý vị, bao gồm xem xét ngân sách gia đình, xem xét tín dụng và thu thập các tài liệu cần thiết, làm như vậy sẽ giúp quý vị chuẩn bị sẵn sàng khi được người quản lý khu nhà liên hệ. + +
+ +4. ## Nhận kết quả + +

Quý vị sẽ được người quản lý khu nhà liên hệ để hướng dẫn thêm.

+ + Thời gian từ khi gửi đơn đăng ký đến khi được người quản lý khu nhà liên hệ tùy thuộc vào số lượng căn hộ trống trong khu nhà. Thời gian có thể từ vài tuần đến vài tháng và trong một số trường hợp có thể mất đến vài năm. Một số người sẽ không được chọn cho bước tiếp theo trong quy trình vì họ không đủ điều kiện sống trong căn hộ do thu nhập hoặc các lý do khác. + + + + Có hai phương pháp mà người quản lý khu nhà sử dụng để xác định thứ tự mà người nộp đơn được chọn để tiếp tục thực hiện quy trình nộp đơn. Một phương pháp là sắp xếp các đơn đăng ký theo ngày và giờ nhận được (“ai đến trước được phục vụ trước”). Phương pháp thứ hai là lấy ngẫu nhiên các đơn đăng ký trên máy tính để tạo thứ tự cho tất cả các đơn đăng ký. Việc lấy ngẫu nhiên các đơn đăng ký chỉ diễn ra sau ngày hết hạn nộp đơn. +
+ Nếu quý vị nhận được thư hoặc email từ người quản lý khu nhà thông báo rằng quý vị có thể tiếp tục thực hiện quy trình đăng ký, quý vị đã tiến gần hơn một bước nữa để được chọn cho một căn hộ. Quý vị nên lưu lại bất kỳ tài liệu nào nhận được từ người quản lý khu nhà. + +
+ +5. ## Chuẩn bị sắp xếp + +

Nếu quý vị được thông báo rằng quý vị có thể tiếp tục thực hiện quy trình đăng ký, sẽ có hai bước tiếp theo: 1) nộp giấy tờ tùy thân và thông tin tài chính cho người quản lý khu nhà; và 2) họp với người quản lý khu nhà.

+ + + + ### 1\. Nộp giấy tờ tùy thân và thông tin tài chính + + Người quản lý khu nhà sẽ yêu cầu các tài liệu để xác minh thông tin được cung cấp trong đơn đăng ký của quý vị. Hãy thu thập thông tin này trước khi quý vị được người quản lý khu nhà liên hệ, làm như vậy sẽ giúp quý vị chuẩn bị cho việc lựa chọn làm người thuê trong một căn hộ. + + Các tài liệu mà người quản lý khu nhà có thể yêu cầu được tóm tắt dưới đây thành hai loại khác nhau: A) giấy tờ tùy thân và B) thông tin tài chính. Bộ tài liệu được yêu cầu có thể khác nhau, tùy thuộc vào yêu cầu sắp xếp của khu nhà. + + #### A\. Giấy tờ tùy thân + + Các tài liệu được liệt kê dưới đây không nhất thiết phải có, nhưng có thể giúp người quản lý khu nhà xem xét đơn đăng ký của quý vị. + + * Giấy tờ tùy thân có ảnh của tất cả mọi người trong hộ gia đình từ 18 tuổi trở lên + * Giấy khai sinh hoặc Thẻ An sinh Xã hội hoặc hộ chiếu của tất cả mọi người dưới 18 tuổi. + + #### B\. Thông tin tài chính + + * Thu nhập: Quý vị sẽ được yêu cầu cung cấp tất cả các nguồn thu nhập của mỗi thành viên trong hộ gia đình trên 18 tuổi. Các ví dụ bao gồm: + * Phúc lợi, trợ cấp Cựu chiến binh, thư an sinh xã hội + * Phiếu hỗ trợ thuê nhà + * Các bảng lương gần đây từ chủ sử dụng lao động hiện tại của quý vị + * Bằng chứng tự kinh doanh + * Tiền cấp dưỡng + * Lương hưu hoặc thu nhập hưu trí hiện tại + + + * Chi tiêu: + * Sao kê tài khoản vãng lai + * Sao kê tài khoản tiết kiệm + * Sao kê thẻ tín dụng gần đây nhất + * Chi trả tiền cấp dưỡng + + + * Thông tin tài chính khác: + * Sao kê chính thức cuối cùng của 401k hoặc IRA + * Tài sản – như xe cộ, cổ phiếu hoặc bất động sản + + Người quản lý khu nhà sẽ xem xét tín dụng của quý vị trong quá trình xem xét thông tin tài chính. Có rất nhiều tài nguyên trực tuyến có sẵn để giúp quý vị hiểu và cải thiện điểm tín dụng. Một bài viết là [Cách cải thiện điểm tín dụng: Mẹo & Thủ thuật (debt.org)](https://www.debt.org/credit/improving-your-score/). + + Như đã nêu, **quý vị không cần phải có những tài liệu này để nộp đơn đăng ký ban đầu** qua Cổng thông tin nhà ở tại San José. Tuy nhiên, việc thu thập những tài liệu này sẽ giúp quý vị chuẩn bị cho bước tiếp theo trong quy trình nộp đơn. Nếu quý vị không có những tài liệu này, quý vị có thể nhờ nhân viên tư vấn nhà ở hỗ trợ, người này có thể giúp quý vị lấy được tài liệu. Liên hệ với cơ quan nhà ở trong khu vực của quý vị để tìm hiểu cách nhận tư vấn về nhà ở. + + ### 2\. Họp với người quản lý khu nhà + + Phỏng vấn bố trí là bước cuối cùng trong quy trình đăng ký. Tùy thuộc vào khu nhà, người quản lý khu nhà có thể yêu cầu họp với quý vị trước hoặc sau khi quý vị đã thu thập các tài liệu được yêu cầu. Người quản lý khu nhà có thể yêu cầu tất cả các thành viên trong hộ gia đình tham gia cuộc họp. Người quản lý khu nhà sẽ cùng quý vị xem xét các tài liệu và xác định xem quý vị có đủ tiêu chuẩn để sống trong căn hộ hay không. + + + +
diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/jurisdiction-footer-section.tsx b/sites/public/src/page_content/jurisdiction_overrides/san_jose/jurisdiction-footer-section.tsx new file mode 100644 index 0000000000..4e590ff14a --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/jurisdiction-footer-section.tsx @@ -0,0 +1,82 @@ +import React from "react" +import { FooterNav, FooterSection, SiteFooter, t } from "@bloom-housing/ui-components" +import { ExygyFooter } from "@bloom-housing/shared-helpers" +import Link from "next/link" +import { Language } from "@bloom-housing/backend-core" +import { useRouter } from "next/router" + +export interface FooterProps { + locale?: string +} + +const feedbackLink = (locale: string) => { + switch (locale) { + case Language.es: + return "https://docs.google.com/forms/d/e/1FAIpQLScmOWY8qR92vfJbPq6uCgIVW25N_D_u4RF-hwZ17NvprNgqkw/viewform" + case Language.vi: + return "https://docs.google.com/forms/d/e/1FAIpQLScCANRADZxFT7l0BiHVNifLXWeSstNmaNXqlfpy53jtxF8gxg/viewform" + case Language.zh: + return "https://docs.google.com/forms/d/e/1FAIpQLSedEJqjP3MtArBrhDwUTAY8jSCTLsIsKVV_i3tMk9EK59XOew/viewform" + default: + return "https://docs.google.com/forms/d/e/1FAIpQLScAZrM-4biqpQPFSJfaYef0dIiONYJ95n8pK1c8a5a8I78xxw/viewform" + } +} + +export const JurisdictionFooterSection = () => { + const router = useRouter() + + return ( + + + San José + + +

{t("footer.header")}

+

{t("footer.forListingQuestions")}

+

{t("footer.forGeneralInquiries")}

+

+ {t("footer.forAdditionalOpportunities")} +
+ + {t("footer.DoorwayHousingPortal")} + + | + + {t("footer.SFHousingPortal")} + + | + + {t("footer.SMPortal")} + + | + + {t("footer.ACPortal")} + +

+
+ + Equal Housing Opportunity Logo + + + + {t("footer.giveFeedback")} + + {t("footer.contact")} + {t("footer.disclaimer")} + {t("footer.privacyPolicy")} + + + + +
+ ) +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/jurisdiction-site-notice.tsx b/sites/public/src/page_content/jurisdiction_overrides/san_jose/jurisdiction-site-notice.tsx new file mode 100644 index 0000000000..5ce6997bd3 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/jurisdiction-site-notice.tsx @@ -0,0 +1,31 @@ +import React from "react" +import { t } from "@bloom-housing/ui-components" +import { Language } from "@bloom-housing/backend-core" +import { useRouter } from "next/router" + +export const JursidictionSiteNotice = () => { + const router = useRouter() + + const feedbackLink = () => { + switch (router.locale) { + case Language.es: + return "https://docs.google.com/forms/d/e/1FAIpQLScmOWY8qR92vfJbPq6uCgIVW25N_D_u4RF-hwZ17NvprNgqkw/viewform" + case Language.vi: + return "https://docs.google.com/forms/d/e/1FAIpQLScCANRADZxFT7l0BiHVNifLXWeSstNmaNXqlfpy53jtxF8gxg/viewform" + case Language.zh: + return "https://docs.google.com/forms/d/e/1FAIpQLSedEJqjP3MtArBrhDwUTAY8jSCTLsIsKVV_i3tMk9EK59XOew/viewform" + default: + return "https://docs.google.com/forms/d/e/1FAIpQLScAZrM-4biqpQPFSJfaYef0dIiONYJ95n8pK1c8a5a8I78xxw/viewform" + } + } + + return ( + <> + {t("nav.getFeedback")} + + {t("nav.yourFeedback")} + + {t("nav.bonusFeedback")} + + ) +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/es.json b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/es.json new file mode 100644 index 0000000000..2973248b7f --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/es.json @@ -0,0 +1,84 @@ +{ + "application.contact.doYouWorkIn": "Trabajas en la Ciudad de San José?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "¿Ellos trabajan en la ciudad de san jose?", + "application.household.member.workInRegionNote": "", + "application.review.confirmation.whatHappensNext.fcfs": "### ¿Qué sucede ahora?\n\n* Se contactará a los solicitantes elegibles por orden hasta que se cubran las vacantes.\n\n* Las preferencias para la vivienda, si corresponden, alterarán el orden de postulación.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.", + "application.review.confirmation.whatHappensNext.lottery": "### ¿Qué sucede ahora?\n\n* Una vez finalizado el período de solicitud, los solicitantes elegibles se ordenarán según el resultado de la lotería.\n\n* Las preferencias para la vivienda, si corresponden, alterarán el orden resultante de la lotería.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.", + "application.review.confirmation.whatHappensNext.waitlist": "### ¿Qué sucede ahora?\n\n* Los solicitantes elegibles se colocarán en la lista de espera por orden de llegada hasta que se llenen los lugares de la lista de espera.\n\n* Las preferencias para la vivienda, si corresponden, alterarán el orden en la lista de espera.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Es posible que se comuniquen con usted mientras esté en la lista de espera para confirmar que desea permanecer en ella.", + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "Sitio web del Departamento de Vivienda de San José", + "application.review.terms.textSubmissionDate": "Esta solicitud debe ser presentada por %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* Los solicitantes se postulan a apartamentos actualmente vacantes según su orden de postulación.\n\n* Se contactará a los solicitantes elegibles por orden hasta que se cubran las vacantes.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.\n\nPara obtener más información, comuníquese con el promotor inmobiliario o el administrador de la propiedad que aparece en la oferta de la vivienda.\n\nCompletar esta solicitud no le da derecho a la vivienda ni indica que usted es elegible para ella. Todos los solicitantes se evaluarán según se describe en los Criterios de selección de residentes de la propiedad.\n\nUsted no puede cambiar su solicitud en línea después de enviarla.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.review.terms.lottery.text": "* Los solicitantes se postulan para ingresar a una lotería para apartamentos actualmente vacantes.\n\n* Una vez finalizado el período de solicitud, los solicitantes elegibles se ordenarán según el resultado de la lotería.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.\n\nPara obtener más información, comuníquese con el promotor inmobiliario o el administrador de la propiedad que aparece en la oferta de la vivienda.\n\nCompletar esta solicitud no le da derecho a la vivienda ni indica que usted es elegible para ella. Todos los solicitantes se evaluarán según se describe en los Criterios de selección de residentes de la propiedad.\n\nUsted no puede cambiar su solicitud en línea después de enviarla.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.review.terms.waitlist.text": "* Los solicitantes se postulan a una lista de espera abierta y no para un apartamento actualmente vacante.\n\n* Cuando haya vacantes disponibles, el administrador de la propiedad se comunicará con los solicitantes elegibles por orden de postulación.\n\n* Si se comunican con usted para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione documentos de respaldo.\n\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.\n\n* Es posible que se comuniquen con usted mientras esté en la lista de espera para confirmar que desea permanecer en ella.\n\nPara obtener más información, comuníquese con el promotor inmobiliario o el administrador de la propiedad que aparece en la oferta de la vivienda.\n\nCompletar esta solicitud no le da derecho a la vivienda ni indica que usted es elegible para ella. Todos los solicitantes se evaluarán según se describe en los Criterios de selección de residentes de la propiedad.\n\nUsted no puede cambiar su solicitud en línea después de enviarla.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.preferences.dontWant": "No quiero solicitar ninguna de estas preferencias", + "application.preferences.displacedTenant.general.label": "Preferencia de vivienda para inquilinos desplazados", + "application.preferences.displacedTenant.general.description": "Al menos un miembro de mi hogar fue desplazado de una propiedad residencial debido a la actividad de reurbanización por parte de la Autoridad de Vivienda de Hayward, la Agencia de Reurbanización o la Ciudad de Hayward.", + "application.preferences.displacedTenant.missionCorridor.label": "Preferencia de vivienda para inquilinos desplazados de Mission Boulevard Corridor (SR 238)", + "application.preferences.displacedTenant.missionCorridor.description": "Al menos un miembro de mi hogar es Participante del Programa de SR 238 de acuerdo con lo requerido por los términos del Proyecto de Implementación del Acuerdo de SR 238. Los participantes del programa son inquilinos de propiedades de Caltrans vendidas anteriormente a lo largo del corredor de SR 238 Mission Boulevard y se les dará preferencia de ocupación cuando se construyan nuevas viviendas por debajo del valor del mercado en el corredor.", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.start.whatToExpect.fcfs.steps": "1. Primero, le preguntaremos sobre las personas con las que piensa vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Finalmente, evaluaremos si califica para cualquier preferencia para la vivienda asequible, si corresponde.", + "application.start.whatToExpect.fcfs.finePrint": "* Los solicitantes se postulan a apartamentos actualmente vacantes según su orden de postulación.\n* Tenga en cuenta que cada miembro del hogar solo puede aparecer en una sola solicitud para cada vivienda ofrecida.\n* El administrador de la propiedad se comunicará con los solicitantes por orden de postulación hasta que se cubran las vacantes.\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.", + "application.start.whatToExpect.lottery.steps": "1. Primero, le preguntaremos sobre las personas con las que piensa vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Finalmente, evaluaremos si usted califica para cualquier preferencia para la lotería de vivienda asequible, si corresponde.", + "application.start.whatToExpect.lottery.finePrint": "* Los solicitantes se postulan para ingresar a una lotería para apartamentos actualmente vacantes.\n* Tenga en cuenta que cada miembro del hogar solo puede aparecer en una sola solicitud para cada vivienda ofrecida.\n* El agente de la propiedad se comunicará con los solicitantes según el orden resultante de la lotería hasta que se cubran las vacantes.\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.", + "application.start.whatToExpect.waitlist.steps": "1. Primero, le preguntaremos sobre las personas con las que piensa vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Finalmente, evaluaremos si califica para cualquier preferencia para la vivienda asequible, si corresponde.", + "application.start.whatToExpect.waitlist.finePrint": "* Los solicitantes se postulan a una lista de espera abierta y no a un apartamento actualmente disponible.\n* Tenga en cuenta que cada miembro del hogar solo puede aparecer en una sola solicitud para cada vivienda ofrecida.\n*Cuando haya vacantes disponibles, el administrador de la propiedad se comunicará con los solicitantes elegibles por orden de postulación.\n* Se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.\n* Su solicitud puede eliminarse si usted proporcionó información fraudulenta.\n* Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.", + "footer.copyRight": "Ciudad de San José © 2020 • Todos los derechos reservados", + "footer.disclaimer": "Exención de responsabilidades", + "footer.getAssistance": "Obtener asistencia", + "footer.giveFeedback": "Proporcione sus comentarios", + "footer.header": "El Portal de la Vivienda de la Ciudad de San José es un proyecto del Departamento de Vivienda de la Ciudad de San José", + "footer.forAdditionalOpportunities": "Para ver oportunidades adicionales en el Área de la Bahía, sírvase visitar:", + "footer.forGeneralInquiries": "Para consultas generales sobre el programa, o para acceder a los servicios de traducción del contenido de este sitio web por teléfono, puede llamar a la Ciudad de San José al 408-535-3860.", + "footer.forListingQuestions": "Para preguntas sobre el listado y la solicitud, póngase en contacto con el agente de la propiedad que aparece en cada listado.", + "footer.privacyPolicy": "Política de privacidad", + "footer.DoorwayHousingPortal": "Vivienda Portal de Doorway", + "footer.SFHousingPortal": "Portal de Vivienda de San Francisco", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SMPortal": "Portal de la Vivienda del Condado de San Mateo", + "footer.ACPortal": "Portal de la Vivienda del Condado de Alameda", + "nav.siteTitle": "Portal de la Vivienda de la Ciudad de San José", + "nav.getFeedback": "¡Nos encantaría recibir ", + "nav.yourFeedback": "sus comentarios!", + "nav.bonusFeedback": "", + "pageDescription.additionalResources": "Le invitamos a consultar otros recursos de vivienda de precio accesible.", + "pageDescription.getAssistance": "Obtenga más información y encuentre listados de viviendas adicionales.", + "pageDescription.howItWorks": "Obtenga más información sobre cómo encontrar y solicitar alquileres económicos.", + "pageTitle.additionalResources": "Oportunidades adicionales de vivienda", + "pageTitle.howItWorks": "¿Cómo funciona?", + "region.name": "San José", + "listings.availableUnits": "Unidades disponibles", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "LOTERÍA", + "listings.waitlist.currentSize": "Tamaño actual de la lista de espera", + "listings.waitlist.finalSize": "Tamaño final de la lista de espera", + "listings.waitlist.openSlots": "Vacantes en la lista de espera", + "listings.waitlist.isOpen": "La lista de espera está abierta", + "listings.waitlist.submitForWaitlist": "Envíe una solicitud para una vacante en la lista de espera", + "additionalResources.doorwayPortal.title": "Portales del Área de la Bahía", + "additionalResources.doorwayPortal.description": "El portal Doorway de San José es uno de muchos sitios web similares del Área de la Bahía que fue creado para simplificar el proceso de encontrar y postularse para el alquiler de viviendas asequibles. Puede encontrar oportunidades de vivienda asequible en otros condados en otros portales del Área de la Bahía.", + "additionalResources.sccAffordableHousing.title": "Oportunidades de vivienda asequible en el condado de Santa Clara", + "additionalResources.sccAffordableHousing.description": "Vea las oportunidades de vivienda asequible en el condado de Santa Clara.", + "additionalResources.cityRegionResources.title": "Recursos Relacionados con la Ciudad y la Región", + "t.units": "unidades", + "application.timeout.afterMessage": "Nos preocupamos por tu seguridad. Finalizamos tu sesión por inactividad. Inicie una nueva aplicación para continuar.", + "welcome.howDoesItWork": "¿Cómo funciona?", + "welcome.learnHowToApply": "Obtenga más información sobre cómo encontrar y solicitar alquileres económicos.", + "welcome.readAboutHowItWorks": "Lea acerca de cómo funciona", + "whatToExpect.waitlist": "

Los solicitantes se postulan a una lista de espera abierta y no para un apartamento actualmente vacante.

Los solicitantes elegibles se incluirán en la lista de espera. Cuando haya vacantes disponibles, el administrador de la propiedad se comunicará con los solicitantes por orden de postulación.

Si el administrador de la propiedad se comunica con usted, se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.

", + "whatToExpect.waitlistReadMore": "

Las preferencias para la vivienda, si corresponden, alterarán el orden en la lista de espera.

Su solicitud puede eliminarse de la lista de espera si usted proporcionó información fraudulenta. Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.

Si el administrador de la propiedad se comunica con usted, debe estar preparado para completar una solicitud más detallada y proporcionar los documentos de respaldo requeridos.

", + "whatToExpect.lottery": "

Los solicitantes se postulan para ingresar a una lotería para apartamentos actualmente vacantes.

Una vez finalizado el período de solicitud, los solicitantes elegibles se ordenarán según el resultado de la lotería.

Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.

", + "whatToExpect.lotteryReadMore": "

Las preferencias para la vivienda, si corresponden, alterarán el orden resultante de la lotería.

Su solicitud puede eliminarse de la lista de espera si usted proporcionó información fraudulenta. Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.

Si el administrador de la propiedad se comunica con usted, se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.

", + "whatToExpect.fcfs": "

Los solicitantes se postulan a apartamentos actualmente vacantes según su orden de postulación.

Se contactará a los solicitantes elegibles por orden hasta que se cubran las vacantes.

Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.

", + "whatToExpect.fcfsReadMore": "

Las preferencias para la vivienda, si corresponden, alterarán el orden de postulación.

Su solicitud puede eliminarse de la lista de espera si usted proporcionó información fraudulenta. Para propiedades con preferencias para la vivienda, si no podemos verificar una preferencia para la vivienda que usted declaró, no tendrá preferencia, pero no será penalizado de ningún otro modo.

Si el administrador de la propiedad se comunica con usted, se verificará toda la información que haya proporcionado y se confirmará su elegibilidad.

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/general.json b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/general.json new file mode 100644 index 0000000000..fce73e75cb --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/general.json @@ -0,0 +1,106 @@ +{ + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "San José Housing Department Website", + "application.review.terms.text": "Applicants will be contacted by the leasing agent in lottery and preference order or waitlist order until vacancies are filled. All of the information that you have provided will be verified and your eligibility confirmed. Your application may be removed from the waitlist if you have made any fraudulent statements and duplicate applications from the same household may be removed as only one application per household is permitted. Should your application be chosen for review, be prepared to fill out a more detailed application and provide required supporting documents. For more information, please contact the developer or leasing agent posted in the listing. Please contact the developer/property manager directly if there are any updates to your application.

Completing this housing application does not entitle you to housing or indicate you are eligible for housing; all applicants will be screened as outlined in the property’s Resident Selection Criteria. We offer no guarantees about obtaining housing.

You cannot change your online application after you submit.

I declare that the foregoing is true and accurate, and acknowledge that any misstatement fraudulently or negligently made on this application may result in removal from the lottery.

", + "application.contact.doYouWorkIn": "Do you work in the City of San Jose?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "Do they work in the City of San Jose?", + "application.household.member.workInRegionNote": "", + "application.referralApplication.instructions": "The permanent supportive housing units are referred directly through City of San José's Coordinated Entry System. Households experiencing homelessness can call 211 in order to get connected to an Access Point to learn more about the coordinated entry system and access housing-related resources and information. Although this property is only accepting applications through the Permanent Supportive Housing (PSH) target list, calling 211 can help you with other homeless resources through the Coordinated Entry System.", + "application.referralApplication.furtherInformation": "For further information", + "application.referralApplication.phoneNumber": "211", + "application.preferences.liveWork.title": "Live or Work in the City of San Jose", + "application.preferences.liveWork.live.label": "Live in the City of San Jose Preference", + "application.preferences.liveWork.live.description": "At least one member of my household lives in the City of San Jose", + "application.preferences.liveWork.work.label": "Work in the City of San Jose Preference", + "application.preferences.liveWork.work.description": "At least one member of my household works or has been offered work in the City of San Jose", + "application.preferences.PBV.title": "Oakland Housing Authority", + "application.preferences.PBV.residency.label": "Residency", + "application.preferences.PBV.residency.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher at Coliseum Place and can verify your previous residency/employment at the applicant interview.", + "application.preferences.PBV.family.label": "Family", + "application.preferences.PBV.family.description": "You are a family with two or more persons, or a single person applicant that is 62 years of age or older, or a single person applicant with a disability.", + "application.preferences.PBV.veteran.label": "Veteran", + "application.preferences.PBV.veteran.description": "You are a Veteran or active member of the military.", + "application.preferences.PBV.homeless.label": "Homeless", + "application.preferences.PBV.homeless.description": "You are an individual or family who meets the McKinney-Vento Act definition of homelessness. Family is identified as: individuals who lack a fixed, regular, and adequate nighttime residence and: (i) children and youths who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; or are abandoned in hospitals; (ii) children and youths who have a primary nighttime residence that is a public or private place not designed for or ordinarily used as a regular sleeping accommodation for human beings; (iii) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings; and (iv) migratory children who qualify as homeless for the purposes of this subtitle because the children are living in circumstances described in clauses (i) through (iii).", + "application.preferences.PBV.homeless.link": "https://uscode.house.gov/view.xhtml?path=/prelim@title42/chapter119/subchapter6/partB&edition=prelim", + "application.preferences.PBV.noneApplyButConsider.label": "None of these preferences apply to me, but I would like to be considered", + "application.preferences.PBV.doNotConsider.label": "I don't want to be considered for Oakland Housing Authority project-based voucher units", + "application.preferences.HOPWA.title": "Housing Opportunities for Persons with AIDS", + "application.preferences.HOPWA.hopwa.label": "Housing Opportunities for Persons with AIDS", + "application.preferences.HOPWA.hopwa.description": "If you have questions about HOPWA eligibility or need support in submitting this application, please contact AHIP (AIDS Housing Information Project) at (510) 537-2600 or (510) 695-5222.", + "application.preferences.HOPWA.doNotConsider.label": "I don't want to be considered", + "application.preferences.displacedTenant.title": "Displaced Tenant Housing Preference", + "application.preferences.displacedTenant.whichHouseholdMember": "Which household member is claiming this preference?", + "application.preferences.displacedTenant.whatAddress": "What address was the household member displaced from?", + "application.preferences.displacedTenant.general.label": "Displacee Tenant Housing Preference", + "application.preferences.displacedTenant.general.description": "At least one member of my household was displaced from a residential property due to redevelopment activity by the Hayward Housing Authority, the Redevelopment Agency or the City of Hayward.", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.start.whatToExpect.info1": "First we’ll ask about you and the people you plan to live with. Then, we’ll ask you about your income. Finally, we’ll give you an opportunity to review all of your application data before submitting.", + "footer.copyRight": "City of San José © 2020 • All Rights Reserved", + "footer.disclaimer": "Disclaimer", + "footer.getAssistance": "Get Assistance", + "footer.giveFeedback": "Give Feedback", + "footer.header": "City of San José Housing Portal is a project of the City of San José - Housing Department", + "footer.forAdditionalOpportunities": "For additional Bay Area opportunities, please visit:", + "footer.forGeneralInquiries": "For general program inquiries, or to access translation services for content on this website by phone, you may call City of San José at 408-535-3860.", + "footer.forListingQuestions": "For listing and application questions, please contact the Property Agent displayed on each listing.", + "footer.privacyPolicy": "Privacy Policy", + "footer.DoorwayHousingPortal": "Doorway Housing Portal", + "footer.SFHousingPortal": "San Francisco Housing Portal", + "footer.SMPortal": "San Mateo County Housing Portal", + "footer.ACPortal": "Alameda County Housing Portal", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "nav.siteTitle": "City of San José Housing Portal", + "nav.getFeedback": "We'd love to get ", + "nav.yourFeedback": "your feedback!", + "nav.bonusFeedback": "", + "pageTitle.additionalResources": "Additional Housing Opportunities and Resources", + "pageTitle.howItWorks": "How it Works", + "pageDescription.additionalResources": "We encourage you to browse other affordable housing resources.", + "pageDescription.getAssistance": "Learn more about finding and applying for affordable rental opportunities, and find additional housing listings.", + "pageDescription.howItWorks": "Learn how you can find and apply for affordable rental opportunities.", + "region.name": "San José", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "Lottery", + "application.timeout.afterMessage": "We care about your security. We ended your session due to inactivity. Please start a new application to continue.", + "welcome.howDoesItWork": "How does it work?", + "welcome.learnHowToApply": "Learn how you can find and apply for affordable rental opportunities.", + "welcome.readAboutHowItWorks": "Read About How it Works", + "application.programs.VHHP.veteran.label": "Veteran", + "application.programs.VHHP.veteranStatus.label": "Veteran Status", + "application.programs.VHHP.veteran.description": "You are a Veteran or active member of the military. “Veteran” means any person who actively served within one or more of the military services of the United States who was called to and released from active duty or active service, for a period of not less than 90 consecutive days or was discharged from the service due to a service-connected disability within that 90-day period. This includes all Veterans regardless of discharge status.", + "application.programs.VHHP.veteranStatus.description": "You are ineligible for VA health care and/or VA Supportive Housing (HUD-VASH).", + "application.preferences.oaklandHousingAuthority.liveOrWork.label": "Live or Work", + "application.preferences.oaklandHousingAuthority.liveOrWork.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher at this property and can verify your previous residency/employment at the applicant interview.", + "application.preferences.oaklandHousingAuthority.family.label": "Family", + "application.preferences.oaklandHousingAuthority.family.description": "You are a family with two or more persons, or a single person applicant that is 62 years of age or older, or a single person applicant with a disability.", + "application.preferences.oaklandHousingAuthority.veteran.label": "Veteran", + "application.preferences.oaklandHousingAuthority.veteran.description": "You are a Veteran or active member of the military who was discharged or released from such service under conditions other than dishonorable.", + "application.preferences.southAlamedaCounty.live.label": "Live in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.live.description": "At least one member of my household lives in Fremont, Newark or Union City.", + "application.preferences.southAlamedaCounty.work.label": "Work in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.work.description": "At least one member of my household works in Fremont, Newark or Union City:", + "application.preferences.fremontPref.live.description": "Living in Fremont: Defined as a person or household who is currently a resident within the current incorporated area of Fremont and where that location is considered to be the household’s permanent place of residence. The City may require applicants to submit a driver license, voter registration, utility bill, vehicle registration or other evidence as proof of residency in Fremont.", + "application.preferences.fremontPref.live.label": "Live in Fremont: At least one member of my household lives* in the City of Fremont", + "application.preferences.fremontPref.title": "Live or work in the City of Fremont ", + "application.preferences.fremontPref.work.description": "Working in Fremont: Earning one's primary source of annual income (salary, wages, commissions), and working at least 50 percent of working hours (i.e. 20 or more hours per week) within the Fremont City limits, at the time of the application. Employment must be by a Fremont employer that is licensed and permitted by the City, at a primary work site in Fremont, or as providing household help, gardening, or similar services to a Fremont resident; or through operation of a Fremont-based business that is licensed and permitted by the City. Working in Fremont does NOT include self-employment consisting solely of operating a business entity established solely for the purposes of investment in a rental property.", + "application.preferences.fremontPref.work.label": "Work in Fremont: At least one member of my household works** in the City of Fremont", + "application.preferences.emeryvillePref.live.label": "At least one member of my household lives in the Emeryville", + "application.preferences.emeryvillePref.work.label": "At least one member of my household works at least 50% of weekly hours in Emeryville", + "application.preferences.emeryvillePref.child.label": "I have a child enrolled in the Emeryville Unified School District (EUSD) or Emeryville Child Development Center (ECDC)", + "additionalResources.doorwayPortal.title": "Bay Area Doorway Portals", + "additionalResources.doorwayPortal.description": "San José’s Doorway portal is one of several similar Bay Area websites created to simplify the process to find and apply for affordable rental housing. Affordable housing opportunities in other counties can be found at other Bay Area Doorway Portals.", + "additionalResources.sccAffordableHousing.title": "Santa Clara County Affordable Housing Opportunities", + "additionalResources.sccAffordableHousing.description": "View affordable housing opportunities in Santa Clara County.", + "additionalResources.cityRegionResources.title": "City and Region-related Resources" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/vi.json b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/vi.json new file mode 100644 index 0000000000..754d336b53 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/vi.json @@ -0,0 +1,84 @@ +{ + "application.contact.doYouWorkIn": "Bạn có làm việc ở thành phố San Jose không?", + "application.contact.doYouWorkInDescription": "", + "application.review.confirmation.whatHappensNext.fcfs": "### Điều gì sẽ xảy ra tiếp theo?\n\n* Những người nộp đơn hội đủ điều kiện sẽ được liên lạc trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.\n\n* Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự ai đến trước được phục vụ trước.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.", + "application.review.confirmation.whatHappensNext.lottery": "### Điều gì sẽ xảy ra tiếp theo?\n\n* Sau khi thời gian nộp đơn kết thúc, những người nộp đơn hội đủ điều kiện sẽ được sắp xếp theo thứ tự dựa trên xếp hạng rút thăm.\n\n* Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự xếp hạng rút thăm.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.", + "application.review.confirmation.whatHappensNext.waitlist": "### Điều gì sẽ xảy ra tiếp theo?\n\n* Những người nộp đơn hội đủ điều kiện sẽ được ghi tên vào danh sách chờ trên cơ sở ai đến trước được phục vụ trước cho đến khi các vị trí trong danh sách chờ được lấp đầy.\n\n* Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự trong danh sách chờ.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Chúng tôi có thể liên lạc với quý vị khi quý vị đang ở trong danh sách chờ để xác nhận rằng quý vị muốn tiếp tục ở lại trong danh sách chờ.", + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "Trang web của Sở Gia cư San Jose", + "application.review.terms.textSubmissionDate": "Đơn đăng ký phải được nộp bởi %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* Những người nộp đơn đang đăng ký cho các căn hộ hiện đang trống trên cơ sở ai đến trước được phục vụ trước.\n\n* Những người nộp đơn hội đủ điều kiện sẽ được liên lạc trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.\n\nĐể biết thêm thông tin, vui lòng liên hệ với nhà phát triển nhà ở hoặc người quản lý toàn nhà theo thông tin được đăng trong niêm yết.\n\nViệc hoàn thành đơn đăng ký này không cho phép quý vị có được nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả các ứng viên sẽ được thẩm định như đã nêu trong văn bản Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến của mình sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.review.terms.lottery.text": "* Những người nộp đơn đang đăng ký tham gia cuộc rút thăm cho các căn hộ hiện đang được bỏ trống.\n\n* Sau khi thời gian nộp đơn kết thúc, những người nộp đơn hội đủ điều kiện sẽ được sắp xếp theo thứ tự dựa trên xếp hạng rút thăm.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.\n\nĐể biết thêm thông tin, vui lòng liên hệ với nhà phát triển nhà ở hoặc người quản lý toàn nhà theo thông tin được đăng trong niêm yết.\n\nViệc hoàn thành đơn đăng ký này không cho phép quý vị có được nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả các ứng viên sẽ được thẩm định như đã nêu trong văn bản Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến của mình sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.review.terms.waitlist.text": "* Người nộp đơn đang đăng ký vào danh sách chờ đang mở và hiện chưa phải là căn hộ trống.\n\n* Khi có căn hộ trống, người quản lý tòa nhà sẽ liên lạc với những người nộp đơn hội đủ điều kiện trên cơ sở ai đến trước được phục vụ trước.\n\n* Nếu quý vị được mời tham gia phỏng vấn, quý vị sẽ được yêu cầu điền một đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.\n\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.\n\n* You may be contacted while on the waitlist to confirm that you wish to remain on the waitlist.\n\nĐể biết thêm thông tin, vui lòng liên hệ với nhà phát triển nhà ở hoặc người quản lý toàn nhà theo thông tin được đăng trong niêm yết.\n\nViệc hoàn thành đơn đăng ký này không cho phép quý vị có được nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả các ứng viên sẽ được thẩm định như đã nêu trong văn bản Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến của mình sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.household.member.workInRegion": "Họ có làm việc tại Thành phố San Jose không?", + "application.household.member.workInRegionNote": "", + "application.preferences.dontWant": "Tôi không muốn chọn bất kỳ ưu tiên nào trong số này", + "application.preferences.displacedTenant.general.label": "Lựa chọn Ưu tiên Nhà ở dành cho Người Thuê Nhà phải Chuyển chỗ", + "application.preferences.displacedTenant.general.description": "Ít nhất một thành viên trong hộ gia đình tôi phải chuyển chỗ ở khỏi một bất động sản gia cư do hoạt động xây dựng lại bởi Cơ quan Quản lý Nhà Ở Hayward (Hayward Housing Authority), Cơ quan Tái Phát triển hay Thành phố Hayward.", + "application.preferences.displacedTenant.missionCorridor.label": "Mission Boulevard Corridor (SR 238) Lựa chọn Ưu tiên Nhà ở dành cho Người Thuê Nhà phải Chuyển chỗ", + "application.preferences.displacedTenant.missionCorridor.description": "Ít nhất một thành viên trong gia đình tôi là Người Tham gia Chương trình SR 238 theo yêu cầu của các điều khoản của Dự án Triển khai Tái Định cư SR 238. Những Người Tham gia Chương trình là người thuê nhà của các bất động sản Caltrans trước đây đã bán dọc theo Hành lang SR 238 Mission Boulevard và đang được ưu tiên cho cư ngụ khi có nhà ở mới thấp hơn giá thị trường được xây dựng trong Hành lang.", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.start.whatToExpect.fcfs.steps": "1. Trước tiên, chúng tôi sẽ hỏi quý vị về những người quý vị dự định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có hội đủ điều kiện nhận bất kỳ ưu tiên nào về nhà ở giá hợp lý không, nếu có.", + "application.start.whatToExpect.fcfs.finePrint": "* Những người nộp đơn đang đăng ký cho các căn hộ hiện đang trống trên cơ sở ai đến trước được phục vụ trước.\n* Xin lưu ý rằng mỗi thành viên trong hộ gia đình chỉ có thể xuất hiện trên một đơn đăng ký cho mỗi căn hộ được niêm yết.\n* Người quản lý tòa nhà sẽ liên lạc với người nộp đơn trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.", + "application.start.whatToExpect.lottery.steps": "1. Trước tiên, chúng tôi sẽ hỏi quý vị về những người quý vị dự định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có hội đủ điều kiện nhận bất kỳ ưu tiên nào đối với rút thăm nhận nhà ở giá hợp lý không, nếu có.", + "application.start.whatToExpect.lottery.finePrint": "* Những người nộp đơn đang đăng ký tham gia cuộc rút thăm cho các căn hộ hiện đang được bỏ trống.\n* Xin lưu ý rằng mỗi thành viên trong hộ gia đình chỉ có thể xuất hiện trên một đơn đăng ký cho mỗi căn hộ được niêm yết.\n* Người đại diện tòa nhà sẽ liên lạc với người nộp đơn theo thứ tự của xếp hạng rút thăm cho đến khi hết căn hộ trống.\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.", + "application.start.whatToExpect.waitlist.steps": "1. Trước tiên, chúng tôi sẽ hỏi quý vị về những người quý vị dự định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có hội đủ điều kiện nhận bất kỳ ưu tiên nào về nhà ở giá hợp lý không, nếu có.", + "application.start.whatToExpect.waitlist.finePrint": "* Những người nộp đơn đang đăng ký vào một danh sách chờ đang mở và không phải là một căn hộ đang có sẵn.\n* Xin lưu ý rằng mỗi thành viên trong hộ gia đình chỉ có thể xuất hiện trên một đơn đăng ký cho mỗi căn hộ được niêm yết.\n* Khi có căn hộ trống, người quản lý tòa nhà sẽ liên lạc với những người nộp đơn hội đủ điều kiện trên cơ sở ai đến trước được phục vụ trước.\n* Tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.\n* Đơn đăng ký của quý vị có thể bị loại nếu quý vị cung cấp bất kỳ thông tin gian lận nào.\n* Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.", + "footer.copyRight": "Thành Phố San Jose © 2020 • Giữ Mọi Bản quyền", + "footer.disclaimer": "Tuyên bố miễn trách nhiệm", + "footer.getAssistance": "Nhận Hỗ trợ", + "footer.giveFeedback": "Đưa ra Phản hồi", + "footer.header": "Cổng thông tin nhà ở Thành phố San José là một dự án của Thành Phố San José - Ban Gia Cư", + "footer.forAdditionalOpportunities": "Để có thêm các cơ hội tại Bay Area, vui lòng truy cập:", + "footer.forGeneralInquiries": "Đối với các thắc mắc chung về chương trình, hoặc để tiếp cận các dịch vụ dịch thuật cho nội dung trên trang web này qua điện thoại, bạn có thể gọi cho Thành phố San José theo số 408-535-3860.", + "footer.forListingQuestions": "Đối với các câu hỏi về danh sách và đơn xin, vui lòng liên hệ với Đại Lý Bất Động Sản được hiển thị trên mỗi danh sách.", + "footer.privacyPolicy": "Chính sách Quyền Riêng tư", + "footer.DoorwayHousingPortal": "Cổng thông tin nhà ở của Doorway", + "footer.SFHousingPortal": "Cổng thông tin về Gia cư của San Francisco", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SMPortal": "Cổng thông tin nhà ở Quận San Mateo", + "footer.ACPortal": "Cổng thông tin nhà ở Quận Alameda", + "nav.siteTitle": "Cổng thông tin về Gia cư của Quận San José", + "nav.getFeedback": "Chúng tôi rất mong nhận được ", + "nav.yourFeedback": "ý kiến phản hồi của quý vị", + "nav.bonusFeedback": "", + "pageDescription.additionalResources": "Chúng tôi khuyến khích quý vị xem các nguồn thông tin trợ giúp về nhà ở giá phải chăng khác.", + "pageDescription.getAssistance": "Tìm hiểu thêm về việc tìm kiếm và đăng ký các cơ hội cho thuê giá cả phải chăng và tìm danh sách nhà ở bổ sung.", + "pageDescription.howItWorks": "Tìm hiểu cách tìm và đăng ký các cơ hội thuê nhà giá cả phải chăng.", + "pageTitle.additionalResources": "Các Cơ hội Nhà ở Bổ sung", + "pageTitle.howItWorks": "Cách thức hoạt động", + "region.name": "San José", + "listings.availableUnits": "Các Đơn Nguyên Có Sẵn", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "XỔ SỐ", + "listings.waitlist.currentSize": "Số Lượng Đơn Đăng Ký Trên Danh Sách Chờ Hiện Tại", + "listings.waitlist.finalSize": "Số Lượng Đơn Đăng Ký Trên Danh Sách Chờ Cuối Cùng", + "listings.waitlist.openSlots": "Các Vị Trí Mở Trên Danh Sách Chờ", + "listings.waitlist.isOpen": "Danh Sách Chờ Đang Mở", + "listings.waitlist.submitForWaitlist": "Gửi đơn đăng ký cho một vị trí mở trong danh sách chờ", + "additionalResources.doorwayPortal.title": "CỔNG THÔNG TIN CỬA NGÕ VÙNG VỊNH", + "additionalResources.doorwayPortal.description": "Cổng thông tin Doorway của San José là một trong số các trang web tương tự của Vùng Vịnh được tạo ra để đơn giản hóa quy trình tìm và đăng ký nhà cho thuê giá phải chăng. Có thể tìm thấy các cơ hội nhà ở giá cả phải chăng ở các quận khác tại các Cổng thông tin Cửa Ngõ Vùng Vịnh khác.", + "additionalResources.sccAffordableHousing.title": "Cơ hội nhà ở phù hợp thuộc Quận Santa Clara", + "additionalResources.sccAffordableHousing.description": "Xem các cơ hội nhà ở giá cả phải chăng ở Quận Santa Clara.", + "additionalResources.cityRegionResources.title": "CÁC NGUỒN TÀI NGUYÊN CÓ LIÊN QUAN CỦA THÀNH PHỐ VÀ KHU VỰC", + "t.units": "đơn nguyên", + "application.timeout.afterMessage": "Chúng tôi quan tâm đến an toàn của bạn. Chúng tôi đã kết thúc phiên của bạn do không hoạt động. Vui lòng bắt đầu một ứng dụng mới để tiếp tục.", + "welcome.howDoesItWork": "Cách thức hoạt động?", + "welcome.learnHowToApply": "Tìm hiểu cách tìm và đăng ký các cơ hội thuê nhà giá cả phải chăng.", + "welcome.readAboutHowItWorks": "Đọc về cách nó hoạt động", + "whatToExpect.waitlist": "

Người nộp đơn đang đăng ký vào danh sách chờ đang mở và hiện chưa phải là căn hộ trống.

Người nộp đơn hội đủ điều kiện sẽ được ghi tên vào danh sách chờ. Khi có căn hộ trống, người quản lý tòa nhà sẽ liên lạc với người nộp đơn trên cơ sở ai đến trước được phục vụ trước.

Nếu người quản lý tòa nhà liên lạc với quý vị, tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.

", + "whatToExpect.waitlistReadMore": "

Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự trong danh sách chờ.

Đơn đăng ký của quý vị có thể bị loại khỏi danh sách chờ nếu quý vị cung cấp bất kỳ thông tin gian lận nào. Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.

Nếu người quản lý tòa nhà liên lạc với quý vị, hãy chuẩn bị để điền vào đơn đăng ký chi tiết hơn và cung cấp các giấy tờ hỗ trợ cần thiết.

", + "whatToExpect.lottery": "

Những người nộp đơn đang đăng ký tham gia cuộc rút thăm cho các căn hộ hiện đang được bỏ trống.

Sau khi thời gian nộp đơn kết thúc, những người nộp đơn hội đủ điều kiện sẽ được sắp xếp theo thứ tự dựa trên xếp hạng rút thăm.

Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.

", + "whatToExpect.lotteryReadMore": "

Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự xếp hạng rút thăm.

Đơn đăng ký của quý vị có thể bị loại khỏi danh sách chờ nếu quý vị cung cấp bất kỳ thông tin gian lận nào. Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.

Nếu người quản lý tòa nhà liên lạc với quý vị, tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.

", + "whatToExpect.fcfs": "

Những người nộp đơn đang đăng ký cho các căn hộ hiện đang trống trên cơ sở ai đến trước được phục vụ trước.

Những người nộp đơn hội đủ điều kiện sẽ được liên lạc trên cơ sở ai đến trước được phục vụ trước cho đến khi hết căn hộ trống.

Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.

", + "whatToExpect.fcfsReadMore": "

Các ưu tiên về nhà ở, nếu có, sẽ làm thay đổi thứ tự ai đến trước được phục vụ trước.

Đơn đăng ký của quý vị có thể bị loại khỏi danh sách chờ nếu quý vị cung cấp bất kỳ thông tin gian lận nào. Đối với các tòa nhà có ưu tiên về nhà ở, nếu chúng tôi không thể xác minh rằng quý vị đủ điều kiện nhận ưu tiên mà quý vị đã yêu cầu, quý vị sẽ không nhận được ưu tiên đó nhưng cũng sẽ không bị phạt.

Nếu người quản lý tòa nhà liên lạc với quý vị, tất cả các thông tin quý vị đã cung cấp sẽ được xác minh và quý vị sẽ được xác nhận mình có hội đủ điều kiện hay không.

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/zh.json b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/zh.json new file mode 100644 index 0000000000..38dedadecc --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/locale_overrides/zh.json @@ -0,0 +1,84 @@ +{ + "application.contact.doYouWorkIn": "你在聖何塞市工作嗎?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "他們在聖何塞市工作嗎?", + "application.household.member.workInRegionNote": "", + "application.review.confirmation.whatHappensNext.fcfs": "### 接下來會發生什麼?\n\n* 我們將按照「先申請先入住」的原則聯絡合格的申請人,直至空置房被入住為止。\n\n* 住房優惠(如果適用)將影響「先申請先入住」順序。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。", + "application.review.confirmation.whatHappensNext.lottery": "### 接下來會發生什麼?\n\n* 一旦申請期結束,合格的申請人將按抽籤名次進行排序。\n\n* 住房優惠(如果適用)將影響抽籤名次。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。", + "application.review.confirmation.whatHappensNext.waitlist": "### 接下來會發生什麼?\n\n* 合格的申請人將按照「先申請先入住」的原則進入候補名單,直至候補名單額滿為止。\n\n* 住房優惠(如果適用)將影響候補名單的順序。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們可能會在您進入候補名單時與您聯絡,確認您希望繼續留在候補名單上。", + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "聖何塞住房部網站", + "application.review.terms.textSubmissionDate": "此申請必須在以下時間之前提交 %{applicationDueDate}。", + "application.review.terms.fcfs.text": "* 申請人按照「先申請先入住」的原則申請目前空置的公寓。\n\n* 我們將按照「先申請先入住」的原則聯絡合格的申請人,直至空置房被入住為止。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。\n\n如需更多資訊,請聯絡名單上載明的房屋開發商或物業經理。\n\n填寫此申請並不意味著您有權獲得住房或者表示您有資格獲得住房。所有申請人都將按照物業的「房客選擇準則」進行篩選。\n\n線上申請提交後,您將無法更改。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.review.terms.lottery.text": "* 申請人將申請參與抽籤,以獲得目前空置的公寓。\n\n* 一旦申請期結束,合格的申請人將按抽籤名次進行排序。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。\n\n如需更多資訊,請聯絡名單上載明的房屋開發商或物業經理。\n\n填寫此申請並不意味著您有權獲得住房或者表示您有資格獲得住房。所有申請人都將按照物業的「房客選擇準則」進行篩選。\n\n線上申請提交後,您將無法更改。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.review.terms.waitlist.text": "* 申請人申請的是開放的候補名單,而不是當前可用的公寓。\n\n* 當出現空置房時,物業經理會按照「先申請先入住」的原則與合格的申請人聯絡。\n\n* 如果我們聯絡您要求進行面談,您需要填寫更詳細的申請表並提供證明文件。\n\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。\n\n* 我們可能會在您進入候補名單時與您聯絡,確認您希望繼續留在候補名單上。\n\n如需更多資訊,請聯絡名單上載明的房屋開發商或物業經理。\n\n填寫此申請並不意味著您有權獲得住房或者表示您有資格獲得住房。所有申請人都將按照物業的「房客選擇準則」進行篩選。\n\n線上申請提交後,您將無法更改。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.preferences.dontWant": "我不想使用這些優先權", + "application.preferences.displacedTenant.general.label": "無居所租客房屋優先權", + "application.preferences.displacedTenant.general.description": "由於 %{county} 房屋管理局、重建管理局或 %{county} 市政府進行重建活動,我家至少有一人被迫搬出住宅物業。", + "application.preferences.displacedTenant.missionCorridor.label": "Mission Boulevard Corridor (SR 238) 無居所租客房屋優先權", + "application.preferences.displacedTenant.missionCorridor.description": "根據 SR 238 和解實施項目條款規定,我家至少有一人是 SR 238 計劃參與者。計劃參與者是 SR 238 Mission Boulevard 走廊沿線先前已出售的 Caltrans 物業租戶;此走廊興建低於市價的全新住房時,計劃參與者有入住優先權。", + "application.preferences.BVSPD.title": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.label": "Broadway Valdez Specific Plan District", + "application.preferences.BVSPD.bvspd.description": "At least one member of my household lives in the Broadway Valdez Specific Plan District. Boundaries for the District area can be found in the Broadway Valdez District Specific Plan Map", + "application.preferences.BVSPD.bvspd.link": "https://cao-94612.s3.amazonaws.com/documents/Broadway-Valdez-Photo-Key-of-projects-3-4-20.pdf", + "application.preferences.OSDE.title": "Oakland School District Employees", + "application.preferences.OSDE.osde.label": "Oakland School District Employees", + "application.preferences.BHA.title": "Berkeley Housing Authority Apartments", + "application.preferences.BHA.description": "These apartments have a monthly rent that is approximately 30% of household income. I understand I must also qualify through the Berkeley Housing Authority’s requirements for this unit and that there will be both a screening process with SAHA and an additional application process through the Berkeley Housing Authority.", + "application.preferences.BHA.bha.label": "Berkeley Housing Authority Project Based Voucher Section 8 apartments", + "application.preferences.BHA.bha.description": "The minimum monthly income is $0. The maximum monthly income is $3,995 for 1 person or $4,566 for 2 persons. The maximum annual income is $47,950 for 1 person or $54,800 for 2 persons.", + "application.preferences.BHA.doNotConsider.label": "I don't want to be considered", + "application.start.whatToExpect.fcfs.steps": "1. 首先,我們將詢問您打算和誰住在一起。\n2. 然後,我們會詢問您的收入。\n3. 最後,我們將瞭解您是否有資格享受任何經濟適用房優惠(如果適用)。", + "application.start.whatToExpect.fcfs.finePrint": "* 申請人按照「先申請先入住」的原則申請目前空置的公寓。\n* 請注意,對于每個名單,每個家庭成員只能出現在一個申請中。\n* 物業經理會按照「先申請先入住」的原則與申請人聯絡,直至空置房被入住為止。\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。", + "application.start.whatToExpect.lottery.steps": "1. 首先,我們將詢問您打算和誰住在一起。\n2. 然後,我們會詢問您的收入。\n3. 最後,我們將瞭解您是否有資格獲得任何經濟適用房抽籤優惠(如果適用)。", + "application.start.whatToExpect.lottery.finePrint": "* 申請人將申請參與抽籤,以獲得目前空置的公寓。\n* 請注意,對于每個名單,每個家庭成員只能出現在一個申請中。\n* 物業代理會按抽籤順序與申請人聯絡,直至空置房被入住為止。\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。", + "application.start.whatToExpect.waitlist.steps": "1. 首先,我們將詢問您打算和誰住在一起。\n2. 然後,我們會詢問您的收入。\n3. 最後,我們將瞭解您是否有資格享受任何經濟適用房優惠(如果適用)。", + "application.start.whatToExpect.waitlist.finePrint": "* 申請人申請的是開放的候補名單,而不是當前可用的公寓。\n* 請注意,對于每個名單,每個家庭成員只能出現在一個申請中。\n* 當出現空置房時,物業經理會按照「先申請先入住」的原則與合格的申請人聯絡。\n* 我們將對您提供的所有資訊進行核實,並確認您的資格。\n* 如果您做出了任何欺詐性陳述,您的申請可能會被刪除。\n* 對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。", + "footer.copyRight": "聖荷西市 © 2020 • 版權所有", + "footer.disclaimer": "免責聲明", + "footer.getAssistance": "尋求協助", + "footer.giveFeedback": "提供回饋意見", + "footer.header": "聖荷西市住房門戶網站是聖荷西市住房局的專案", + "footer.forAdditionalOpportunities": "查詢灣區其他住房機會,請瀏覽:", + "footer.forGeneralInquiries": "有一般的計畫詢問,或是想從電話獲得關於本網站內容的翻譯服務,可以致電408-535-3860與聖荷西市住房部聯繫。", + "footer.forListingQuestions": "有關列表和申請問題,請聯絡每個列表上的物業代理人。", + "footer.privacyPolicy": "隱私權政策", + "footer.DoorwayHousingPortal": "Doorway 房屋門戶", + "footer.SFHousingPortal": "三藩市房屋網站", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SMPortal": "聖馬刁縣住房門戶網站", + "footer.ACPortal": "阿拉米達縣住房門戶網站", + "nav.siteTitle": "聖荷西市住房門戶網站", + "nav.getFeedback": "我們希望獲得 ", + "nav.yourFeedback": "您的回饋意見", + "nav.bonusFeedback": "!為感謝您花時間提供回饋意見,您可獲得一張禮品卡。", + "pageDescription.additionalResources": "我們建議您瀏覽其他可負擔房屋資源。", + "pageDescription.getAssistance": "詳細瞭解如何尋找和申請經濟適用房的租賃機會,並查找其他住房清單。", + "pageDescription.howItWorks": "了解如何尋找並申請可負擔的租屋機會。", + "pageTitle.additionalResources": "其他住房機會", + "pageTitle.howItWorks": "運作方式", + "region.name": "聖荷西", + "listings.availableUnits": "可用單元", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "抽籤", + "listings.waitlist.currentSize": "當前候補名單人數", + "listings.waitlist.finalSize": "最終候補名單人數", + "listings.waitlist.openSlots": "開放的候補名單名額", + "listings.waitlist.isOpen": "候補名單處於開放狀態", + "listings.waitlist.submitForWaitlist": "提交候補名單空缺名額申請表", + "additionalResources.doorwayPortal.title": "灣區門戶網站", + "additionalResources.doorwayPortal.description": "聖荷西市Doorway門戶網站是灣區幾個類似的網站之一,旨在簡化尋找和申請可負擔租房的過程。其他縣的可負擔住房機會可在其他灣區門戶網站尋找。", + "additionalResources.sccAffordableHousing.title": "聖塔克拉拉縣的可負擔住房機會", + "additionalResources.sccAffordableHousing.description": "查看聖克拉拉縣的可負擔住房機會。", + "additionalResources.cityRegionResources.title": "城市和地區的相關資源", + "t.units": "單元", + "application.timeout.afterMessage": "我們關心您的安全。 由於不活動,我們結束了您的會話。 請啟動一個新的應用程序以繼續。", + "welcome.howDoesItWork": "運作方式?", + "welcome.learnHowToApply": "了解如何尋找並申請可負擔的租屋機會。", + "welcome.readAboutHowItWorks": "閱讀它是如何工作的", + "whatToExpect.waitlist": "

申請人申請的是開放的候補名單,而不是目前空置的公寓。

合格的申請人將被列入候補名單。當出現空置房時,物業經理會按照「先申請先入住」的原則與申請人聯絡。

如果物業經理與您聯絡,我們將對您提供的所有資訊進行核實,並確認您的資格。

", + "whatToExpect.waitlistReadMore": "

住房優惠(如果適用)將影響候補名單的順序。

如果您做出了任何欺詐性陳述,您的申請可能會被從候補名單中刪除。對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。

如果物業經理與您聯絡,請準備好填寫更詳細的申請表,並提供所需的證明文件。

", + "whatToExpect.lottery": "

申請人將申請參與抽籤,以獲得目前空置的公寓。

一旦申請期結束,合格的申請人將按抽籤名次進行排序。

我們會驗證您所提供的所有資訊並確認您的資格。

", + "whatToExpect.lotteryReadMore": "

住房優惠(如果適用)將影響抽籤名次。

如果您做出了任何欺詐性陳述,您的申請可能會被從候補名單中刪除。對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。

如果物業經理與您聯絡,我們將對您提供的所有資訊進行核實,並確認您的資格。

", + "whatToExpect.fcfs": "

申請人按照「先申請先入住」的原則申請目前空置的公寓。

我們將按照「先申請先入住」的原則聯絡合格的申請人,直至空置房被入住為止。

我們會驗證您所提供的所有資訊並確認您的資格。

", + "whatToExpect.fcfsReadMore": "

住房優惠(如果適用)將影響「先申請先入住」順序。

如果您做出了任何欺詐性陳述,您的申請可能會被從候補名單中刪除。對於提供住房優惠的物業,如果我們無法核實您請求的住房優惠,您將不會收到該優惠,但也不會受到其他懲罰。

如果物業經理與您聯絡,我們將對您提供的所有資訊進行核實,並確認您的資格。

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/privacy_policy.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/privacy_policy.md new file mode 100644 index 0000000000..d12bb7438e --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/privacy_policy.md @@ -0,0 +1,756 @@ + +City of San Jose Housing Portal is a platform to connect renters and property managers to subsidized affordable housing opportunities. Your privacy is important to us, so we strive to be transparent about how we collect, use, and share information about you. This policy is intended to help you understand: + +1. [WHAT INFORMATION WE COLLECT](#information-collect) +2. [HOW WE USE INFORMATION](#information-use) +3. [HOW WE SHARE INFORMATION](#share-information) +4. [HOW WE STORE INFORMATION](#store-information) +5. [HOW TO ACCESS AND CONTROL YOUR INFORMATION](#access-information) +6. [ADDITIONAL IMPORTANT PRIVACY MATTERS](#additional) +7. [HOW TO CONTACT US](#contact) + +
+ +Please take a moment to read this privacy policy carefully so that you can understand your rights and our responsibilities regarding your information. This policy also explains your choices about how we use information about you. By using the Service, you consent to the collection and use of information in accordance with this Privacy Policy. + +This Privacy Policy (this “Privacy Policy”) governs your use of the City of San Jose Housing Portal website (the “Services” or “Site”) which is owned and operated by the City of San Jose (the “Jurisdiction”). The Jurisdiction is sometimes referred to herein as “we,” “us,” or “our” and the applicant, developer, property manager, or other user (collectively the “User”) (as defined below) is sometimes referred to as “you,” “your,” or “customer. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms of Service. + +**Executive summary** – below is a non-exhaustive summary of our Privacy Policy + +**Information collected**: Information provided in your housing application (name, phone number, income, household size, etc.) and additional automatically collected information (IP address, cookie information, etc.) to provide the Services to you + +**How your information is used**: Your information allows us to provide you the Services, including the ability to apply to the available affordable housing options. Additional usage includes contacting you regarding the Services and conducting research and development to improve the Services. We will not sell your information for any third-party marketing purposes. + +**Who we share you information with**: We may share your information with our third-party service providers, including property managers and developers and staff from our Agents, to comply with legal obligations, to protect and defend our rights and property, ensure the functionality of the Site, or with your permission. + +**For further questions**: contact SJHousingPortal@sanjoseca.gov + +

1. WHAT INFORMATION WE COLLECT

+ +##### Definitions + +We require certain information to provide our Services to you. For example, you may be required to have an account to interact with certain aspects of the Services. When you choose to share the information below with us, we collect and use it to operate our Services. "Personal Data" means data that allows someone to identify or contact you, including, for example, your name, address, telephone number, e-mail address, travel preferences, specific expenses, as well as any other non-public information about you that is associated with or linked to any of the foregoing data. "Anonymous Data" means data that is not associated with or linked to your Personal Data; Anonymous Data does not permit the identification of individual persons. As used in this document, the general term “information” includes all data provided by you or collected via the Services, including both Personal Data and Anonymous Data. We collect Personal Data and Anonymous Data, as described below. + +##### Information You Provide. + +When you use the Services, you will provide information that could be Personal Data, such as (a) your name, email address, mobile telephone number, password for the Site, date of birth, tax identification number, schedule, picture, and other registration information; (b) information you provide us when you contact us for help; (c) any information required to ensure a User is eligible to participate in a specific program or aspect of Services; and (d) any other information you enter into the Services. + +##### Information We Collect Automatically. + +We automatically receive and record information from your use of the Services, including but not limited to: Site usage, your IP address, browser type, Internet service provider, referring/exit pages, operating system, date/time stamp, clickstream data, and cookie information. Generally, the Services automatically collect usage information, such as the number and frequency of users of the Services. + +##### Cookies. + +Cookies are small pieces of information that a website sends to your computer while you are viewing the website. We may use both session cookies (which expire once you close your browser) and persistent cookies (which stay on your computer/mobile phone until you delete them) to provide the Services, and to provide you with a more personal and interactive experience on our Site. We use cookies to enable our servers to recognize your web browser and tell us how and when you use the Services. Most browsers have an option for turning off the cookie feature, which will prevent your browser from accepting new cookies, as well as (depending on the sophistication of your browser software) allowing you to decide on acceptance of each new cookie in a variety of ways. You will not be able to take advantage of the most attractive features of the Services if you disable your cookies. + +##### Pixel Tags. + +Pixel Tags (also referred to as clear Gifs, Web beacons, or Web bugs). Pixel Tags are tiny graphic images with a unique identifier, similar in function to Cookies, that are used to track online movements of Web users. In contrast to Cookies, which are stored on a user’s computer hard drive, Pixel Tags are embedded invisibly in Web pages. Pixel Tags also allow us to send e-mail messages in a format users can read, and they tell us whether e-mails have been opened to ensure that we are sending only messages that are of interest to our users. The use of a pixel allows us to record, for example, that a user has interacted with a message, visited a particular web page, or clicked on a particular advertisement. We do not provide Personal Data to any advertising networks for use outside of the Services. + +##### Analytics. + +We use third party analytics services, including but not limited to Google Analytics ("Analytics Services"), to help analyze how users use our Site and Services. We use the information we get from Analytics Services only to improve our Site and Services. The information generated by the Cookies or other technologies about your use of our Site and Services (the "Analytics Information") is transmitted to the Analytics Services. The Analytics Services use Analytics Information to compile reports on user activity. The Analytics Services may also transfer the Analytics Information to third parties where required to do so by law, or where such third parties process Analytics Information on their behalf. Each Analytics Service’s ability to use and share Analytics Information is restricted by such Analytics Service’s Terms of Use and Privacy Policy. By using our Site and Services, you consent to the processing of data about you by Analytics Services in the manner and for the purposes set out above. For a full list of Analytics Services, please contact us at SJHousingPortal@sanjoseca.gov. + +##### Third Party Data. + +We may receive and/or share Personal and/or Anonymous Data about you to companies that help us provide our Services by way of a co-branded or private-labeled website or companies that offer their products and/or services on our Services (e.g., housing developers and property managers). These third-party companies may receive Personal Data and Anonymous Data. They will only use such data in compliance with our security and privacy standards set forth in this Privacy Policy. + +

2. HOW WE USE THE INFORMATION

+ +We strive to ensure that we protect your privacy rights as we process your information. We take your privacy rights seriously. Below are the specific purposes for which we use the information we collect about you. + +##### To provide the Services and personalize your experience. + +We use information about you to provide the Services to you, including to process applications for services and related transactions with you, authenticate you when you log in, provide customer support, and operate and maintain the Services. + +##### For research and development. + +We are always looking for ways to make our Services smarter, faster, more secure, integrated, and useful to you. In addition, we intend to use the Aggregate Information (as described below) to positively influence housing policy. To that end, we use collective learnings about how people use our Services and feedback provided directly to us to troubleshoot and to identify trends, usage, activity patterns and areas for integration and improvement of the Services. + +##### To communicate with you about the Services. + +We use your contact information to send transactional communications via email or chat and within the Services, including questions and requests, providing customer support, and sending you technical notices, product updates, security alerts, administrative and other messages. + +##### To market, promote, and drive engagement with the Services. + +We use your contact information and information about how you use the Services to send promotional communications that may be of specific interest to you, including by email. These communications are aimed at driving engagement and maximizing what you get out of the Services, including information about new features, survey requests, events, and other information we think may be of interest to you. We also communicate with you about new product offers and new services. + +##### Conducting surveys and collecting feedback about our Services. + +We do this to pursue our legitimate interests to understand if the Services are helpful to you and to evaluate the effectiveness of any updates we provide. + +##### Customer support. + +We use your information to resolve technical issues you encounter, to respond to your requests for assistance, to analyze crash information, and to repair and improve the Services. We also use your information to provide requested assistance (either originated from you, or a person acting legitimately on your behalf) and to offer proactive support when necessary. + +##### For safety and security. + +We use information about you and your Service use to verify accounts and activity, to monitor suspicious or fraudulent activity and to identify violations of Service policies. + +##### To protect the public interests and legal rights. + +Where required by law, where we believe it is in the public interest, or where it is necessary to protect our legal rights, interests, and the interests of others, we use information about you in connection with legal claims, compliance, regulatory, and audit functions. + +##### With your consent. + +We use information about you where you have given us consent to do so for a specific purpose not listed above. For example, we may publish testimonials or featured customer stories to promote the Services, with your permission. + +##### Additional purposes. + +We may process your information for any other purpose disclosed to you in connection with our Services from time to time. If we intend to process your personal data for a purpose other than that set out above, we will provide you with information prior to such processing and will obtain your consent where necessary. + +##### Determining eligibility. + +We use your information to determine your eligibility for the Service. + +##### Providing access to services. + +We use your information to provide you with access to the services you have applied to such as access to housing. + +

3. HOW WE SHARE INFORMATION

+ +We may share your information with our third-party service providers, including property managers and developers and staff from our Agents, to comply with legal obligations, to protect and defend our rights and property, ensure the functionality of the Site, or with your permission. Below are the specific ways we share information we collect about you. + +##### User Profile Information. + +User profile information including your name, email, phone number and other information you enter may be displayed to other users to facilitate user interaction within the Services (for example, to enable property managers to contact you about housing opportunities). + +##### Information Shared with Our Agents. + +We employ and contract with people and other entities that perform certain tasks on our behalf and who are under our control (our “Agents”), including companies to build and maintain the Site. We may need to share Personal Data with our Agents to provide products or services to you. Unless we tell you differently, our Agents do not have any right to use Personal Data or other information we share with them beyond what is necessary to assist us. You hereby consent to our sharing of Personal Data with our Agents. + +##### IP Address Information. + +While we collect and store IP address information, that information is not made public. We do at times, however, share this information with our partners, service providers and other persons with whom we conduct business, and as otherwise specified in this Privacy Policy. + +##### Aggregate Information. + +We share Aggregate Information with our agents, partners, and service providers. We share this type of statistical data so that our partners can understand how and how often people use our Services and their services or websites, which facilitates improving both their services and how our Services interface with them. In addition, these third parties may share with us non-private, aggregated or otherwise non-Personal Data about you that they have independently developed or acquired. + +##### Information Disclosed for Our Protection, the Protection of Others and Legal Requirements. + +We also reserve the right to access, read, preserve, and disclose any information as it reasonably believes is necessary to (i) satisfy any applicable law, regulation, legal process, or governmental request, (ii) enforce our Terms of Service, including investigation of potential violations hereof, (iii) detect, prevent, or otherwise address fraud, security, or technical issues, (iv) respond to user support requests, or (v) protect our rights, property or safety, our users, and the public. This includes exchanging information with other companies and organizations for fraud protection and spam/malware prevention. + +##### Information We Share with Your Consent: + +We will share your Personal Data with any relevant party you have granted us permission to share with. + +

4. HOW WE STORE AND SECURE INFORMATION

+ +Keeping your information secure is a top priority for us. To that end we comply with industry-standard best practices to secure your information. We use data hosting service providers in the United States to host the information we collect, and we use technical measures to secure your data. While we implement safeguards designed to protect your information, no security system is impenetrable and due to the inherent nature of the internet, we cannot guarantee that data, during transmission through the internet or while stored on our systems or otherwise in our care, is absolutely safe from intrusion by others. How long we keep information we collect about you depends on the type of information, as described in further detail below. After such time, we will either delete or anonymize your information or, if this is not possible (for example, because the information has been stored in backup archives), then we will securely store your information and isolate it from any further use until deletion is possible. + +##### Account Information. + +We retain your Personal Data only as long as necessary to accomplish the purpose for which it was collected or to comply with our legal and contractual obligations, plus 1 year, and then securely dispose of that information. We also retain some of your information as necessary to comply with our legal obligations, to resolve disputes, to enforce our agreements, to support operations and to continue to develop and improve our Services. Where we retain information for Service improvement and development, we take steps to eliminate information that directly identifies you, and we only use the information to uncover collective insights about the use of our Services, not to specifically analyze personal characteristics about you. + +##### Information You Share on the Services + +If your account is deactivated or disabled, some of your Personal Data and Anonymous Data and the content you have provided will remain. + +##### Marketing information + +If you have elected to receive marketing emails from us, we retain information about your marketing preferences unless you specifically ask us to delete such information. We retain information derived from cookies and other tracking technologies for a reasonable period of time from the date such information was created. + +##### Property Managers and Developers. + +If you are a property manager or developer using the Services and gain access to another user’s Personal Data, you agree to store and secure that Personal Data in compliance with the standards set forth in this Privacy Policy. + +

5. HOW TO ACCESS AND CONTROL YOUR INFORMATION

+ +You can access and edit your information by logging into your account and going to account settings. + +You can stop all further collection of information by discontinuing use of the Service. Information that was provided previously will be retained as necessary to accomplish the purpose for which it was collected or to comply with our legal and contractual obligations, plus 1 year. + +

6. ADDITIONAL IMPORTANT PRIVACY MATTERS

+ +##### Minimum Age. + +The Services are not directed to individuals under 18. We do not knowingly collect Personal Data from children under 18. If we become aware that a child under 18 has provided us with Personal Data, we will take steps to delete such information. If you become aware that a child has provided us with Personal Data, please contact our support services. + +##### Security: + +We are concerned about safeguarding the confidentiality of your Personal Data. We provide physical, electronic, and procedural safeguards to protect information we process and maintain and use a combination of firewall barriers, encryption techniques and authentication procedures. For example, we limit access to your Personal Data to authorized employees and contractors who need to know that information to operate, develop or improve our Services. Please be aware that, although we endeavor to provide reasonable security for information we process and maintain, no security system can prevent all potential security breaches. + +##### Links to Other Sites. + +Our Service may contain links to other sites that are not operated by us. If you click on a third-party link, you will be directed to that third party's site. We strongly advise you to review the privacy policy of every site you visit. We have no control over, and assume no responsibility for the content, privacy policies or practices of any third-party sites or services. + +##### Changes to this Privacy Policy. + +We will notify you when we change this Privacy Policy. We may change this Privacy Policy from time to time. If we make significant changes in the way we treat your Personal Data, or to the Privacy Policy, we will provide notice to you on the Services or by some other means, such as email. Please review the changes carefully. If you agree to the changes, simply continue to use our Services. Your continued use of our Services after the revised Privacy Policy has become effective indicates that you have read, understood, and agreed to the current version of this Policy. If you object to any of the changes to our terms and you no longer wish to use our Services, you may close your account(s). Unless stated otherwise, our current Privacy Policy applies to all information that we have about you and your account. Using our Services after a notice of changes has been communicated to you or published on our Services shall constitute consent to the changed terms or practices. + +

7. CONTACT US

+ +##### Contacting us: + +If you have any questions, please don’t hesitate to contact us at: SJHousingPortal@sanjoseca.gov. + +
+ + +El Portal de la Vivienda de la Ciudad de San José es una plataforma para poner en contacto a los inquilinos y a los administradores de propiedades con las oportunidades de viviendas asequibles subvencionadas. Su privacidad es importante para nosotros, por lo que nos esforzamos en ser transparentes sobre cómo recopilamos, utilizamos y compartimos la información sobre usted. Esta política pretende ayudarle a entender: + +1. [QUÉ INFORMACIÓN RECOPILAMOS](#information-collect) +2. [CÓMO UTILIZAMOS LA INFORMACIÓN](#information-use) +3. [CÓMO COMPARTIMOS LA INFORMACIÓN](#share-information) +4. [CÓMO ALMACENAMOS LA INFORMACIÓN](#store-information) +5. [CÓMO ACCEDER Y CONTROLAR SU INFORMACIÓN](#access-information) +6. [ASUNTOS ADICIONALES IMPORTANTES SOBRE LA PRIVACIDAD](#additional) +7. [CÓMO PONERSE EN CONTACTO CON NOSOTROS](#contact) + +
+ +Dedique un momento a leer detenidamente esta política de privacidad para que pueda entender sus derechos y nuestras responsabilidades con respecto a su información. Esta política también explica sus opciones sobre cómo utilizamos la información sobre usted. Al utilizar el Servicio, usted acepta la recopilación y el uso de la información de acuerdo con esta Política de Privacidad. + +Esta Política de Privacidad (esta "Política de Privacidad") rige el uso que usted hace del sitio web del Portal de la Vivienda de la Ciudad de San José (los "Servicios" o el "Sitio"), que es propiedad de la Ciudad de San José (la "Jurisdicción") y está operado por ella. La Jurisdicción se denomina aquí a veces "nosotros", "nos" o "nuestro" y el solicitante, promotor, administrador de la propiedad u otro usuario (colectivamente el "Usuario") (como se define más adelante) se denomina a veces "usted", "su" o "cliente". A menos que se defina lo contrario en esta Política de Privacidad, los términos utilizados en esta Política de Privacidad tienen el mismo significado que en nuestras Condiciones de Servicio. + +**Resumen ejecutivo**: a continuación se presenta un resumen no exhaustivo de nuestra Política de Privacidad + +**Información recopilada**: La información proporcionada en su solicitud de vivienda (nombre, número de teléfono, ingresos, tamaño de la familia, etc.) y la información adicional recopilada automáticamente (dirección IP, información de las cookies, etc.) para proporcionarle los Servicios + +**Cómo se utiliza su información**: Su información nos permite proporcionarle los Servicios, incluida la posibilidad de solicitar las opciones de vivienda asequible disponibles. El uso adicional incluye ponerse en contacto con usted en relación con los Servicios y realizar investigaciones y desarrollos para mejorar los Servicios. No venderemos su información para fines de marketing de terceros. + +**Con quién compartimos su información**: Podemos compartir su información con nuestros proveedores de servicios externos, incluidos los gestores y promotores inmobiliarios y el personal de nuestros Agentes, para cumplir con las obligaciones legales, para proteger y defender nuestros derechos y propiedades, para garantizar la funcionalidad del Sitio, o con su permiso. + +**Para más preguntas**: contacte con SJHousingPortal@sanjoseca.gov + +

1. QUÉ INFORMACIÓN RECOPILAMOS

+ +##### Definiciones + +Requerimos cierta información para proporcionarle nuestros Servicios. Por ejemplo, es posible que se le exija tener una cuenta para interactuar con ciertos aspectos de los Servicios. Cuando usted decide compartir con nosotros la información que se indica a continuación, la recopilamos y la utilizamos para el funcionamiento de nuestros Servicios. "Datos personales" significa los datos que permiten a alguien identificarlo o ponerse en contacto con usted, incluyendo, por ejemplo, su nombre, dirección, número de teléfono, dirección de correo electrónico, preferencias de viaje, gastos específicos, así como cualquier otra información no pública sobre usted que esté asociada o vinculada a cualquiera de los datos anteriores. "Datos anónimos" son los datos que no están asociados o vinculados a sus datos personales; los datos anónimos no permiten la identificación de personas individuales. Tal y como se utiliza en este documento, el término general "información" incluye todos los datos proporcionados por usted o recopilados a través de los Servicios, incluyendo tanto los Datos Personales como los Datos Anónimos. Recopilamos Datos Personales y Datos Anónimos, como se describe a continuación. + +##### Información que usted proporciona. + +Cuando utilice los Servicios, proporcionará información que podría ser Datos Personales, como (a) su nombre, dirección de correo electrónico, número de teléfono móvil, contraseña para el Sitio, fecha de nacimiento, número de identificación fiscal, horario, fotografía y otra información de registro; (b) la información que nos proporcione cuando se ponga en contacto con nosotros para solicitar ayuda; (c) cualquier información necesaria para garantizar que un Usuario sea elegible para participar en un programa o aspecto específico de los Servicios; y (d) cualquier otra información que introduzca en los Servicios. + +##### Información que recopilamos automáticamente + +Recibimos y registramos automáticamente la información derivada de su uso de los Servicios, incluyendo, pero sin limitarse a: El uso del sitio, su dirección IP, el tipo de navegador, el proveedor de servicios de Internet, las páginas de referencia/salida, el sistema operativo, el sello de fecha/hora, los datos de la secuencia de clics y la información de las cookies. En general, los Servicios recopilan automáticamente información de uso, como el número y la frecuencia de los usuarios de los Servicios. + +##### Cookies. + +Las cookies son pequeñas piezas de información que un sitio web envía a su computadora mientras usted está viendo el sitio web. Podemos utilizar tanto cookies de sesión (que expiran una vez que usted cierra su navegador) como cookies persistentes (que permanecen en su computadora/teléfono móvil hasta que usted las borra) para proporcionar los Servicios, y para ofrecerle una experiencia más personal e interactiva en nuestro Sitio. Utilizamos las cookies para que nuestros servidores puedan reconocer su navegador y nos digan cómo y cuándo utiliza los Servicios. La mayoría de los navegadores tienen una opción para desactivar la función de cookies, lo que evitará que su navegador acepte nuevas cookies, así como (dependiendo de la sofisticación del software de su navegador) le permitirá decidir sobre la aceptación de cada nueva cookie de diversas maneras. No podrá aprovechar las características más atractivas de los Servicios si desactiva las cookies. + +##### Etiquetas de píxeles. + +Las etiquetas de píxeles (también denominadas Gifs transparentes, balizas web o web bugs). Las etiquetas de píxeles son diminutas imágenes gráficas con un identificador único, con una función similar a la de las cookies, que se utilizan para rastrear los movimientos en línea de los usuarios de la web. A diferencia de las cookies, que se almacenan en el disco duro de la computadora del usuario, las etiquetas de píxeles se incrustan de forma invisible en las páginas web. Las etiquetas de píxeles también nos permiten enviar mensajes de correo electrónico en un formato que los usuarios puedan leer, y nos indican si los correos electrónicos han sido abiertos para asegurarnos de que solo enviamos mensajes que son de interés para nuestros usuarios. El uso de un píxel nos permite registrar, por ejemplo, que un usuario ha interactuado con un mensaje, ha visitado una página web determinada o ha hecho clic en un anuncio concreto. No proporcionamos datos personales a ninguna red publicitaria para su uso fuera de los Servicios. + +##### Servicios analíticos. + +Utilizamos servicios analíticos de terceros, incluyendo pero sin limitarse a Google Analytics ("Servicios Analíticos"), para ayudar a analizar cómo los usuarios utilizan nuestro Sitio y Servicios. Utilizamos la información que obtenemos de los Servicios Analíticos únicamente para mejorar nuestro Sitio y nuestros Servicios. La información generada por las Cookies u otras tecnologías sobre su uso de nuestro Sitio y Servicios (la "Información Analítica") se transmite a los Servicios Analíticos. Los Servicios Analíticos utilizan la Información Análisis para elaborar informes sobre la actividad de los usuarios. Los Servicios Analíticos también pueden transferir la Información Analítica a terceros cuando así lo exija la ley, o cuando dichos terceros procesen la Información Analítica en su nombre. La capacidad de cada Servicio Analítico para utilizar y compartir la Información Analítica está restringida por las Condiciones de Uso y la Política de Privacidad de dicho Servicio Analítico. Al utilizar nuestro Sitio y nuestros Servicios, usted consiente el tratamiento de sus datos por parte de los Servicios Analíticos en la forma y para los fines arriba indicados. Para obtener una lista completa de los Servicios Analíticos, póngase en contacto con nosotros en SJHousingPortal@sanjoseca.gov. + +##### Datos de terceros. + +Podemos recibir y/o compartir Datos Personales y/o Anónimos sobre usted con empresas que nos ayudan a prestar nuestros Servicios a través de un sitio web de marca compartida o de marca privada o con empresas que ofrecen sus productos y/o servicios en nuestros Servicios (por ejemplo, promotores inmobiliarios y administradores de propiedades). Estas empresas de terceros pueden recibir Datos Personales y Datos Anónimos. Solo utilizarán dichos datos de acuerdo con nuestras normas de seguridad y privacidad establecidas en esta Política de Privacidad. + +

2. CÓMO UTILIZAMOS LA INFORMACIÓN

+ +Nos esforzamos por garantizar la protección de sus derechos de privacidad cuando procesamos su información. Nos tomamos muy en serio sus derechos de privacidad. A continuación se indican los fines específicos para los que utilizamos la información que recopilamos sobre usted. + +##### Para proporcionar los Servicios y personalizar su experiencia. + +Utilizamos la información sobre usted para proporcionarle los Servicios, incluyendo el procesamiento de las solicitudes de servicios y las transacciones relacionadas con usted, la autenticación de usted cuando se conecta, la atención al cliente y el funcionamiento y mantenimiento de los Servicios. + +##### Para la investigación y el desarrollo. + +Siempre estamos buscando formas de hacer que nuestros Servicios sean más inteligentes, rápidos, seguros, integrados y útiles para usted. Además, tenemos la intención de utilizar la Información agregada (como se describe a continuación) para influir positivamente en la política de vivienda. Para ello, utilizamos los aprendizajes colectivos sobre la forma en que las personas utilizan nuestros Servicios y los comentarios que nos proporcionan directamente para solucionar problemas e identificar tendencias, uso, patrones de actividad y áreas de integración y mejora de los Servicios. + +##### Para comunicarnos con usted sobre los Servicios. + +Utilizamos su información de contacto para enviar comunicaciones transaccionales por correo electrónico o chat y dentro de los Servicios, incluyendo preguntas y solicitudes, proporcionando soporte al cliente, y enviándole avisos técnicos, actualizaciones de productos, alertas de seguridad, mensajes administrativos y otros. + +##### Para comercializar, promover e impulsar el compromiso con los Servicios. + +Utilizamos su información de contacto y la información sobre cómo utiliza los Servicios para enviarle comunicaciones promocionales que pueden ser de interés específico para usted, incluso por correo electrónico. Estas comunicaciones tienen como objetivo impulsar el compromiso y maximizar lo que usted obtiene de los Servicios, incluyendo información sobre nuevas características, solicitudes de encuestas, eventos y otra información que creemos que puede ser de su interés. También nos comunicamos con usted sobre nuevas ofertas de productos y nuevos servicios. + +##### Realización de encuestas y recopilación de opiniones sobre nuestros Servicios. + +Hacemos esto para satisfacer nuestros intereses legítimos de entender si los Servicios son útiles para usted y para evaluar la efectividad de cualquier actualización que proporcionemos. + +##### Asistencia al cliente. + +Utilizamos su información para resolver los problemas técnicos que se le presentan, para responder a sus solicitudes de asistencia, para analizar la información de las interrupciones y para reparar y mejorar los Servicios. También utilizamos su información para proporcionar la asistencia solicitada (ya sea originada por usted, o por una persona que actúe legítimamente en su nombre) y para ofrecer apoyo proactivo cuando sea necesario. + +##### Por seguridad y protección. + +Utilizamos la información sobre usted y su uso de los Servicios para verificar las cuentas y la actividad, para controlar las actividades sospechosas o fraudulentas y para identificar las violaciones de las políticas del Servicio. + +##### Para proteger los intereses públicos y los derechos legales. + +Cuando lo exija la ley, cuando creamos que es de interés público o cuando sea necesario para proteger nuestros derechos legales, intereses y los intereses de otros, utilizamos la información sobre usted en relación con las reclamaciones legales, el cumplimiento, la regulación y las funciones de auditoría. + +##### Con su consentimiento. + +Utilizamos información sobre usted cuando nos ha dado su consentimiento para hacerlo con un propósito específico no mencionado anteriormente. Por ejemplo, podemos publicar testimonios o historias de clientes destacados para promocionar los Servicios, con su permiso. + +##### Fines adicionales. + +Podemos procesar su información para cualquier otro propósito que se le comunique en relación con nuestros Servicios de vez en cuando. Si tenemos la intención de procesar sus datos personales para un propósito distinto al establecido anteriormente, le proporcionaremos información antes de dicho procesamiento y obtendremos su consentimiento cuando sea necesario. + +##### Determinación de la elegibilidad. + +Utilizamos sus datos para determinar su elegibilidad para el Servicio. + +##### Proporcionar acceso a los servicios. + +Utilizamos su información para proporcionarle acceso a los servicios que ha solicitado, como el acceso a la vivienda. + +

3. CÓMO COMPARTIMOS LA INFORMACIÓN

+ +Podemos compartir su información con nuestros proveedores de servicios externos, incluidos los gestores y promotores inmobiliarios y el personal de nuestros Agentes, para cumplir con las obligaciones legales, para proteger y defender nuestros derechos y propiedades, para garantizar la funcionalidad del Sitio, o con su permiso. A continuación se indican las formas específicas en que compartimos la información que recopilamos sobre usted. + +##### Información del perfil del usuario. + +La información del perfil del usuario, incluyendo su nombre, correo electrónico, número de teléfono y otra información que introduzca, puede ser mostrada a otros usuarios para facilitar la interacción del usuario dentro de los Servicios (por ejemplo, para permitir que los gestores de propiedades se pongan en contacto con usted sobre oportunidades de vivienda). + +##### Información compartida con nuestros agentes. + +Empleamos y contratamos a personas y otras entidades que realizan ciertas tareas en nuestro nombre y que están bajo nuestro control (nuestros "Agentes"), incluyendo empresas para construir y mantener el Sitio. Es posible que tengamos que compartir los Datos Personales con nuestros Agentes para proporcionarle productos o servicios. A menos que le indiquemos lo contrario, nuestros Agentes no tienen ningún derecho a utilizar los Datos Personales u otra información que compartamos con ellos más allá de lo necesario para ayudarnos. Por la presente, usted da su consentimiento para que compartamos los Datos Personales con nuestros Agentes. + +##### Información sobre la dirección IP. + +Aunque recopilamos y almacenamos información sobre la dirección IP, dicha información no se hace pública. Sin embargo, en ocasiones compartimos esta información con nuestros socios, proveedores de servicios y otras personas con las que realizamos negocios, y según se especifica en esta Política de Privacidad. + +##### Información Agregada. + +Compartimos la Información Agregada con nuestros agentes, socios y proveedores de servicios. Compartimos este tipo de datos estadísticos para que nuestros socios puedan entender cómo y con qué frecuencia la gente utiliza nuestros Servicios y sus servicios o sitios web, lo que facilita la mejora tanto de sus servicios como de la forma en que nuestros Servicios interactúan con ellos. Además, estos terceros pueden compartir con nosotros datos no privados, agregados o no personales sobre usted que hayan desarrollado o adquirido de forma independiente. + +##### Información revelada para nuestra protección, la protección de otros y los requisitos legales. + +También nos reservamos el derecho de acceder, leer, preservar y divulgar cualquier información que consideremos razonablemente necesaria para (i) cumplir con cualquier ley, reglamento, proceso legal o solicitud gubernamental aplicable, (ii) hacer cumplir nuestras Condiciones de Servicio, incluyendo la investigación de posibles violaciones de las mismas, (iii) detectar, prevenir o abordar de otro modo el fraude, la seguridad o los problemas técnicos, (iv) responder a las solicitudes de apoyo de los usuarios, o (v) proteger nuestros derechos, propiedad o seguridad, nuestros usuarios y el público. Esto incluye el intercambio de información con otras empresas y organizaciones para la protección contra el fraude y la prevención de spam/malware. + +##### Información que compartimos con su consentimiento: + +Compartiremos sus datos personales con cualquier parte relevante a la que usted nos haya dado permiso para compartir. + +

4. CÓMO ALMACENAMOS Y ASEGURAMOS LA INFORMACIÓN

+ +Mantener la seguridad de su información es una prioridad para nosotros. Para ello, cumplimos con las mejores prácticas estándar de la industria para asegurar su información. Utilizamos proveedores de servicios de alojamiento de datos en los Estados Unidos para alojar la información que recopilamos, y utilizamos medidas técnicas para asegurar sus datos. Aunque aplicamos medidas de seguridad diseñadas para proteger su información, ningún sistema de seguridad es impenetrable y, debido a la naturaleza inherente de Internet, no podemos garantizar que los datos, durante su transmisión a través de Internet o mientras están almacenados en nuestros sistemas o bajo nuestro cuidado, estén absolutamente a salvo de la intrusión de terceros. El tiempo que conservamos la información que recopilamos sobre usted depende del tipo de información, como se describe con más detalle a continuación. Transcurrido ese tiempo, eliminaremos o anonimizaremos su información o, si esto no es posible (por ejemplo, porque la información se ha almacenado en archivos de copia de seguridad), almacenaremos de forma segura su información y la aislaremos de cualquier uso posterior hasta que sea posible su eliminación. + +##### Información de la cuenta. + +Conservamos sus datos personales solo durante el tiempo necesario para cumplir con el propósito para el que fueron recopilados o para cumplir con nuestras obligaciones legales y contractuales, más 1 año, y luego eliminamos esa información de forma segura. También conservamos parte de su información según sea necesario para cumplir con nuestras obligaciones legales, para resolver disputas, para hacer cumplir nuestros acuerdos, para apoyar las operaciones y para continuar desarrollando y mejorando nuestros Servicios. En los casos en los que retenemos la información para la mejora y el desarrollo de los Servicios, tomamos medidas para eliminar la información que le identifica directamente, y solo utilizamos la información para descubrir ideas colectivas sobre el uso de nuestros Servicios, no para analizar específicamente características personales sobre usted. + +##### Información que comparte en los Servicios + +Si su cuenta es desactivada o inhabilitada, algunos de sus Datos Personales y Datos Anónimos y el contenido que ha proporcionado permanecerán. + +##### Información de marketing + +Si ha optado por recibir nuestros correos electrónicos de marketing, conservamos la información sobre sus preferencias de marketing a menos que nos pida específicamente que eliminemos dicha información. Conservamos la información derivada de las cookies y otras tecnologías de seguimiento durante un período de tiempo razonable a partir de la fecha en que se creó dicha información. + +##### Gestores y promotores inmobiliarios. + +Si usted es un administrador de propiedades o un promotor que utiliza los Servicios y obtiene acceso a los Datos Personales de otro usuario, se compromete a almacenar y asegurar esos Datos Personales de acuerdo con las normas establecidas en esta Política de Privacidad. + +

5. CÓMO ACCEDER Y CONTROLAR SU INFORMACIÓN

+ +Puede acceder a su información y editarla entrando en su cuenta y yendo a la configuración de la misma. + +Puede dejar de recopilar información interrumpiendo el uso del Servicio. La información que se proporcionó anteriormente se conservará mientras sea necesario para cumplir con el propósito para el que se recopiló o para cumplir con nuestras obligaciones legales y contractuales, más 1 año. + +

6. OTRAS CUESTIONES IMPORTANTES RELATIVAS A LA PRIVACIDAD

+ +##### Edad mínima. + +Los Servicios no están dirigidos a personas menores de 18 años. No recopilamos conscientemente datos personales de menores de 18 años. Si tenemos conocimiento de que un niño menor de 18 años nos ha proporcionado Datos Personales, tomaremos medidas para eliminar dicha información. Si tiene conocimiento de que un niño nos ha proporcionado Datos Personales, póngase en contacto con nuestros servicios de asistencia. + +##### Seguridad: + +N +os preocupamos por salvaguardar la confidencialidad de sus Datos Personales. Proporcionamos garantías físicas, electrónicas y de procedimiento para proteger la información que procesamos y mantenemos y utilizamos una combinación de barreras de cortafuegos, técnicas de encriptación y procedimientos de autenticación. Por ejemplo, limitamos el acceso a sus Datos Personales a los empleados y contratistas autorizados que necesitan conocer esa información para operar, desarrollar o mejorar nuestros Servicios. Tenga en cuenta que, aunque nos esforzamos por proporcionar una seguridad razonable a la información que procesamos y mantenemos, ningún sistema de seguridad puede evitar todas las posibles brechas de seguridad. + +##### Enlaces a otros sitios. + +Nuestro Servicio puede contener enlaces a otros sitios que no son operados por nosotros. Si hace clic en un enlace de un tercero, será dirigido al sitio de ese tercero. Le recomendamos encarecidamente que revise la política de privacidad de cada sitio que visite. No tenemos ningún control ni asumimos ninguna responsabilidad por el contenido, las políticas de privacidad o las prácticas de los sitios o servicios de terceros. + +##### Cambios en esta política de privacidad. + +Le notificaremos cuando cambiemos esta Política de Privacidad. Podemos cambiar esta Política de Privacidad de vez en cuando. Si realizamos cambios significativos en la forma en que tratamos sus Datos Personales, o en la Política de Privacidad, se lo notificaremos en los Servicios o por algún otro medio, como el correo electrónico. Revise los cambios cuidadosamente. Si está de acuerdo con los cambios, simplemente continúe utilizando nuestros Servicios. Su uso continuado de nuestros Servicios después de que la Política de Privacidad revisada haya entrado en vigor indica que ha leído, entendido y aceptado la versión actual de esta Política. Si se opone a cualquiera de los cambios de nuestras condiciones y no desea seguir utilizando nuestros Servicios, puede cerrar su(s) cuenta(s). A menos que se indique lo contrario, nuestra Política de Privacidad actual se aplica a toda la información que tenemos sobre usted y su cuenta. El uso de nuestros Servicios después de que se le haya comunicado un aviso de cambios o se haya publicado en nuestros Servicios constituirá el consentimiento a los términos o prácticas modificados. + +

7. CONTACTAR CON NOSOTROS

+ +##### Póngase en contacto con nosotros: + +Si tiene alguna pregunta, no dude en ponerse en contacto con nosotros en: SJHousingPortal@sanjoseca.gov. + +
+ + +「聖荷西市住房門戶網站」是一個連接租房者和物業經理的服務平台,方便租房者獲得有政府補貼的可負擔住房。我們非常重視您的隱私,因此我們致力坦誠表達如何收集、使用和分享您的資訊。本政策旨在幫助您瞭解以下內容: + +1. [我們收集哪些資訊](#information-collect) +2. [我們如何使用資訊](#information-use) +3. [我們如何分享資訊](#share-information) +4. [我們如何保存資訊](#store-information) +5. [如何存取和控制您的資訊](#access-information) +6. [其他重要的隱私事項](#additional) +7. [如何聯繫我們](#contact) + +
+ +請花點時間仔細閱讀本隱私政策,以便瞭解您的權利和我們對您的資訊的責任。本政策也解釋了您對我們如何使用您的資訊有哪些選擇。透過使用本服務,您同意我們按照本隱私政策收集和使用資訊。 + +本隱私政策(「隱私政策」負責管轄您對於聖荷西市住房門戶網站(「服務」或「網站」)的使用,本網站由聖荷西市(「轄區」)擁有營和運。轄區在本文中有時稱為「我們」或「我們的」,而申請人、開發商、物業經理或其他用戶(統稱為「用戶」)(定義見下文)有時被稱為「您」、「您的」或「客戶」。除非在本隱私政策中另有定義,否則本隱私政策中的術語與我們的服務條款中的含義相同。 + +**執行摘要**: 以下是我們隱私政策的非詳盡摘要 + +**收集的資訊**:您在住房申請中提供的資訊(姓名、電話號碼、收入、家庭規模等)和其他自動收集以便向您提供服務的資訊(IP 位址、cookie 資訊等) + +**您的資訊如何使用**:您的資訊可使我們向您提供服務,包括申請可用的可負擔住房。其他用途包括就服務與您聯繫,以及進行研究和開發以改進服務。我們不會為任何第三方的行銷目的出售您的資訊。 + +**我們與誰分享您的資訊**:我們可能會與第三方服務供應商,包括物業經理和開發商以及我們代理商的工作人員分享您的資訊,以便遵守法律義務,保護和捍衛我們的權利和財產,確保網站的功能,或得到您的許可。 + +**如有更多問題**:請聯繫SJHousingPortal@sanjoseca.gov + +

1. 我們收集哪些資訊

+ +##### 定義 + +我們需要某些資訊來向您提供服務。例如,您可能被要求開設一個帳戶,以便與服務的某些方面互動。當您選擇與我們分享以下資訊時,我們會收集並使用這些資訊來營運我們的服務。「個人資料」是指允許別人識別或聯繫您的資料,包括您的姓名、地址、電話號碼、電子郵件地址、旅行偏好、具體開支,以及您與上述任何資料相關或關聯的任何其他非公開資訊。「匿名資料」是指與您的個人資料沒有關聯的資料;匿名資料不允許識別個人的身份。在本文件中,通用術語「資訊」包括您提供或透過服務收集的所有資料,包括個人資料和匿名資料。我們收集個人資料和匿名資料,具體如下所述。 + +##### 您提供的資訊。 + +當您使用服務時,您將提供可能是個人資料的資訊,例如:(a) 您的姓名、電子郵件地址、手機號碼、網站密碼、出生日期、稅務識別號碼、時間表、照片和其他註冊資訊;(b) 您在聯繫我們尋求幫助時向我們提供的資訊;(c) 為確保用戶有資格參與特定計劃或服務方面所需的任何資訊;以及 (d) 您輸入服務的任何其他資訊。 + +##### 我們自動收集的資訊。 + +我們自動接收和記錄您使用服務的資訊,包括但不限於:網站使用情況、您的 IP 位址、瀏覽器類型、網路服務提供者、參考/退出頁面、作業系統、日期/時間戳記、點選流向資料和 cookie 資訊。一般來說,服務會自動收集使用資訊,如服務的使用者數量和頻率。 + +##### Cookies。 + +Cookie 是網站在您瀏覽網站時向您的電腦發送的小塊資訊。我們可能使用會話 cookies(在您關閉瀏覽器時過期)和持久性 cookies(在您刪除之前一直留在您的電腦/手機上)來提供服務,並在我們的網站上為您提供更加個人化和互動的體驗。我們使用 cookies 以使我們的伺服器能夠識別您的網路瀏覽器,並告訴我們您如何以及何時使用服務。大多數瀏覽器都有關閉 cookie 功能的選項,將會阻止您的瀏覽器接受新的 cookie,以及(取決於瀏覽器軟體的複雜程度)允許您以各種方式決定是否接受每個新的 cookie。如果您禁用 cookies,您將無法利用服務中最有吸引力的功能。 + +##### 圖元標籤。 + +圖元標籤(也稱為透明 Gif、網路信標或網路臭蟲)。圖元標籤是具有唯一識別碼的微小圖像,在功能上與 Cookies 相似,用於追蹤網路使用者的線上活動。與儲存在使用者電腦硬碟上的 Cookies 不同,圖元標籤是以無形的方式嵌入網頁中。圖元標籤也允許我們以用戶可以閱讀的格式發送電子郵件資訊,並告訴我們電子郵件是否被打開,以確保我們只發送使用者感興趣的資訊。使用圖元能使我們記錄使用者與某一資訊進行了互動,訪問了某一網頁,或點選了某一廣告等等。我們不會為了服務之外的用途向任何廣告網路提供個人資料。 + +##### 分析。 + +我們使用第三方分析服務,包括但不限於 Google Analytics(「分析服務」),以幫助分析使用者如何使用我們的網站和服務。我們僅將從分析服務獲得的資訊用於改進我們的網站和服務。由 Cookies 或其他技術產生關於您使用我們網站和服務的資訊(「分析資訊」)將被傳送至分析服務。分析服務使用分析資訊來編製關於使用者活動的報告。在法律要求的情況下,或在第三方代表他們處理分析資訊的情況下,分析服務也可能將分析資訊轉移給第三方。每個分析服務使用和分享分析資訊的能力都受到該分析服務的使用條款和隱私政策的限制。透過使用我們的網站和服務,您同意分析服務以上述方式和目的處理有關您的資料。有關分析服務的完整清單,請透過以下方式聯繫我們:SJHousingPortal@sanjoseca.gov。 + +##### 第三方資料。 + +我們可能會接收和(或)分享關於您的個人和(或)匿名資料給那些透過聯合品牌或私人標籤網站幫助我們提供服務的公司,或利用我們的服務提供其產品和(或)服務的公司(例如,住房開發商和物業經理)。這些第三方公司可能會收到個人資料和匿名資料。他們將僅在遵守本隱私政策中規定我們的安全和隱私標準的情況下使用這些資料。 + +

2. 我們如何使用這些資訊

+ +我們努力確保在處理您的資訊時保護您的隱私權。我們認真對待您的隱私權。以下是我們使用收集關於您的資訊的具體目的。 + +##### 提供服務並使您的體驗個人化。 + +我們使用關於您的資訊向您提供服務,包括處理服務申請和與您有關的交易,在您登入時進行認證,提供客戶支援,以及營運和維護服務。 + +##### 用於研究和開發。 + +我們總是在尋找方法使我們的服務更智慧、更快速、更安全、更綜合,並且對您有用。此外,我們意圖使用匯總資訊(如下所述)對住房政策產生積極影響。為此,我們利用民眾使用我們服務的體驗以及直接提供給我們的回饋意見來排除故障、認清趨勢、使用情況、活動模式以及需要整合和改進的服務層面。 + +##### 就服務與您進行溝通。 + +我們使用您的聯繫資訊,透過電子郵件或聊天工具發送交易資訊(包括問題和請求) 、提供客戶支援,以及向您發送技術通知、產品更新、安全警報、管理和其他訊息。 + +##### 行銷、推廣和推動服務參與。 + +我們使用您的聯繫資訊和關於您如何使用服務的資訊來發送您可能感興趣的促銷資訊,包括透過電子郵件。這些溝通旨在推動參與,並最大限度地提高您從服務獲得的好處,包括關於新功能的資訊、調查請求、活動,以及我們認為您可能感興趣的其他資訊。我們也會與您溝通新產品和新服務。 + +##### 進行調查並收集關於我們服務的回饋。 + +我們這樣做是為了追求我們的合法利益,以瞭解服務是否對您有幫助,並評估我們提供的任何更新是否有效。 + +##### 客戶支援。 + +我們使用您的資訊來解決您遇到的技術問題,回應您的援助請求,分析當機資訊,並修復和改進服務。我們也使用您的資訊來提供所要求的協助(無論是源自您,還是您的合法代表),並在必要時提供主動支援。 + +##### 為了安全和保障。 + +我們使用關於您和您的服務的資訊來驗證帳戶和活動,監測可疑或欺詐活動,並識別違反服務政策的行為。 + +##### 為了保護公共利益和法律權利。 + +當法律有所要求、我們認為符合公共利益,或是有必要保護我們的合法權利、利益和其他人的利益時,我們會將您的資訊用於合法索賠、合規、監管和審計。 + +##### 經您同意。 + +若經您同意,我們會將您的資訊用於上述未列出的特定目的。例如,我們可以在徵得您的同意後,發佈推薦見證或介紹客戶故事,以推廣服務。 + +##### 其他目的。 + +我們可以為不時向您披露與我們的服務有關的其他任何目的使用您的資訊。如果我們意圖為上述之外的目的處理您的個人資料,我們將在處理之前向您提供資訊,並在必要時徵得您的同意。 + +##### 確定資格。 + +我們使用您的資訊來確定您獲得服務的資格。 + +##### 提供獲得服務的機會。 + +我們使用您的資訊為您提供您申請的服務,例如獲得住房。 + +

3. 我們如何分享資訊

+ +我們可能會向第三方服務供應商(包括物業經理和開發商以及我們代理人的工作人員)分享您的資訊,以便遵守法律義務,保護和捍衛我們的權利和財產,確保網站的功能,或是獲得您的許可。以下是我們分享所收集關於您的資訊的具體方式。 + +##### 使用者檔案資訊。 + +包括您的姓名、電子郵件、電話號碼和您輸入的其他資訊在內的使用者檔案資訊可能會顯示給其他使用者,以促進使用者在服務中的互動(例如,使物業經理能夠與您聯繫住房機會)。 + +##### 與我們代理人分享的資訊。 + +我們雇用並與代表我們執行某些任務並在我們控制之下的人士和其他實體(我們的「代理人」,包括建立和維護網站的公司)簽訂合約。我們可能需要與代理人分享個人資料,以便向您提供產品或服務。除非我們另有說明,否則代理人無權將我們與他們分享的個人資料或其他資訊用於協助我們之外的其他目的。您在此同意我們與代理人分享個人資料。 + +##### IP 位址資訊。 + +雖然我們收集和保存 IP 位址資訊,但是該資訊不會被公開。然而,我們有時會與合作夥伴、服務提供者和其他與我們進行業務的人士,以及本隱私政策中另行規定的人士分享這些資訊。 + +匯總資訊。 + +我們與代理人、合作夥伴和服務提供者分享匯總資訊。我們分享這種統計資料,以便合作夥伴能夠瞭解民眾如何以及多常使用我們的服務和他們的服務或網站,這有利於改善他們的服務以及我們的服務與他們對接的方式。此外,這些第三方可能與我們分享他們獨立開發或獲得關於您的非私人、匯總或其他非個人資料。 + +##### 為保護我們、保護他人和應法律要求而披露的資訊。 + +我們也保留存取、閱讀、保存和披露任何被合理認為必須披露的資訊的權利,以 (i) 滿足任何適用的法律、法規、法律程序或政府要求,(ii) 執行我們的服務條款,包括調查潛在的違反行為,(iii) 檢測、預防或以其他方式解決欺詐、安全或技術問題,(iv) 回應用戶支援請求,或 (v) 保護我們的權利、財產或安全、用戶和公眾。這包括與其他公司和組織交換資訊,以防止欺詐和避免垃圾郵件/惡意軟體。 + +##### 我們在徵得您的同意後分享的資訊: + +我們將會與您允許我們分享資訊的相關方分享您的個人資料。 + +

4. 我們如何保存和保護資訊

+ +保證您的資訊安全是我們的首要任務。為此,我們將遵守行業標準的最佳實踐以保護您的資訊安全。我們使用美國的資料託管服務提供者來託管我們收集的資訊,而且利用技術措施來保護您的資料。雖然我們採取旨在保護您的資訊的保障措施,但是沒有任何安全系統是不可攻破的,而且由於網路的固有性質,我們不能保證資料在透過網路傳輸期間或保存在我們的系統中或在我們的照管下是絕對安全而不會被他人入侵。我們將收集到關於您的資訊保留多長時間取決於資訊的類型,將在下文進一步說明。在此之後,我們將刪除或匿名化您的資訊,如果這不可行(例如,因為資訊已經保存在備份檔案中),那麼我們將安全保存您的資訊,並與任何進一步的使用隔離,直到可以刪除為止。 + +##### 帳戶資訊。 + +我們只在完成收集資訊的目的或遵守我們的法律和合約義務所需的時間(再加一年)內保留您的個人資料,然後安全地處置該資訊。我們也會在必要時保留您的一些資訊,以便履行我們的法律義務,解決爭端,執行協議,支援營運,並繼續開發和改進我們的服務。在我們為改進和拓展服務而保留資訊時,我們會採取措施消除直接識別您的資訊,而且只會使用這些資訊來發掘關於使用我們服務的集體見解,而不是具體分析您的個人特徵。 + +##### 您在服務上分享的資訊。 + +如果您的帳戶被停用或禁用,您的一些個人資料和匿名資料以及您提供的內容將保留。 + +##### 行銷資訊。 + +如果您選擇接收我們的行銷郵件,我們會保留您的行銷偏好資訊,除非您特別要求我們刪除這些資訊。我們將保留從 cookies 和其他追蹤技術得出的資訊,從這些資訊產生的日期起保留一段合理時間。 + +##### 物業經理和開發商。 + +如果您是使用服務的物業經理或開發商,並獲得其他使用者的個人資料,您同意按照本隱私政策規定的標準保存和保護該個人資料。 + +

5. 如何存取和控制您的資訊

+ +您可以透過登入您的帳戶並進入帳戶設定來存取和編輯您的資訊。 + +您可以透過停止使用服務來停止所有進一步的資訊收集。以前提供的資訊將在完成收集資訊的目的或遵守我們的法律和合約義務的情況下保留一段必要時間,並且再加一年。 + +

6. 其他重要的隱私事項

+ +##### 最低年齡。 + +本服務不針對 18 歲以下的個人。我們不會有意收集 18 歲以下兒童的個人資料。如果我們知道有 18 歲以下的兒童向我們提供了個人資料,我們將採取措施刪除這些資訊。如果您察覺有兒童向我們提供了個人資料,請聯繫我們的支援服務。 + +##### 安全。 + +我們非常重視保護您的個人資料機密。我們提供實體、電子和程序方面的保障措施,並結合使用防火牆屏障、加密技術和認證程序來保護我們處理和維護的資訊。例如,我們僅允許需要瞭解您的資料以便運行、開發或改進我們服務的授權雇員和承包商存取您的個人資料。請注意,儘管我們努力為處理和維護的資訊提供合理的安全保障,但是沒有安全系統可以防止所有潛在的安全漏洞。 + +##### 與其他網站的連結。 + +我們的服務可能包含連到不是由我們經營的其他網站連結。如果您點選一個第三方連結,您將被引導到這個第三方網站。我們極力建議您審查您訪問的每個網站的隱私政策。我們無法控制任何第三方網站或服務的內容、隱私政策或做法,也不承擔任何責任。 + +##### 本隱私政策的修改。 + +當我們修改本隱私政策時,我們會通知您。我們可能會不時修改本隱私政策。如果我們對處理您個人資料的方式或隱私政策做出重大改變,我們將在服務上或透過其他方式(如電子郵件)向您提供通知。請仔細閱讀這些變更。如果您同意這些變更,請繼續使用我們的服務。如果您在修訂後的隱私政策生效後繼續使用我們的服務,即表明您已經閱讀、理解並同意本政策的現行版本。如果您反對我們條款的任何變更,而且不再希望使用我們的服務,您可以關閉帳戶。除非另有說明,否則我們目前的隱私政策適用於我們擁有關於您和您的帳戶的所有資訊。在向您發出變更通知或在我們的服務上公佈後使用我們的服務,應構成對變更的條款或做法的同意。 + +

7. 聯繫我們

+ +##### 與我們聯繫: + +如果您有任何問題,請隨時透過以下方式聯繫我們:SJHousingPortal@sanjoseca.gov。 + +
+ + +Cổng Thông Tin Nhà Ở của Thành phố San Jose là một nền tảng để kết nối những người thuê nhà và quản lý bất động sản với các cơ hội nhà ở giá phải chăng được trợ cấp. Quyền riêng tư của bạn rất quan trọng đối với chúng tôi, vì vậy chúng tôi cố gắng minh bạch về cách chúng tôi thu thập, sử dụng và chia sẻ thông tin về bạn. Chính sách này nhằm giúp bạn hiểu: + +1. [THÔNG TIN NÀO CHÚNG TÔI THU THẬP](#information-collect) +2. [CÁCH CHÚNG TÔI SỬ DỤNG THÔNG TIN](#information-use) +3. [CÁCH CHÚNG TÔI CHIA SẺ THÔNG TIN](#share-information) +4. [CÁCH CHÚNG TÔI LƯU TRỮ THÔNG TIN](#store-information) +5. [CÁCH TRUY CẬP VÀ KIỂM SOÁT THÔNG TIN CỦA BẠN](#access-information) +6. [CÁC VẤN ĐỀ QUAN TRỌNG BỔ SUNG VỀ QUYỀN RIÊNG TƯ](#additional) +7. [LIÊN LẠC VỚI CHÚNG TÔI BẰNG CÁCH NÀO](#contact) + +
+ +Vui lòng dành một chút thời gian để đọc kỹ chính sách bảo mật này để bạn có thể hiểu các quyền của mình và trách nhiệm của chúng tôi đối với thông tin của bạn. Chính sách này cũng giải thích các lựa chọn của bạn về cách chúng tôi sử dụng thông tin về bạn. Bằng việc sử dụng Dịch vụ, bạn đồng ý với việc thu thập và sử dụng thông tin theo Chính Sách Bảo Mật này. + +Chính Sách Bảo Mật này (“Chính Sách Bảo Mật” này) điều chỉnh việc bạn sử dụng trang web Cổng Thông Tin Nhà Ở của Thành phố San Jose (“Dịch vụ” hoặc “Trang web”) do Thành phố San Jose sở hữu và điều hành (“Quyền Tài Phán”). Quyền tài phán đôi khi được gọi ở đây là “chúng tôi,” “chúng ta,” hoặc “của chúng tôi” và người nộp đơn, nhà phát triển, người quản lý tài sản hoặc người dùng khác (gọi chung là “Người dùng”) (như được định nghĩa bên dưới) đôi khi được gọi là “bạn,” “của bạn,” hoặc “khách hàng. Trừ khi được định nghĩa khác trong Chính Sách Bảo Mật này, các điều khoản được sử dụng trong Chính Sách Bảo Mật này có cùng ý nghĩa như trong Điều Khoản Dịch Vụ của chúng tôi. + +**Tóm tắt điều hành** dưới đây là bản tóm tắt không đầy đủ về Chính Sách Quyền Riêng Tư của chúng tôi + +**Thông tin thu thập được**: Thông tin được cung cấp trong đơn đăng ký nhà ở của bạn (tên, số điện thoại, thu nhập, quy mô hộ gia đình, v.v.) và thông tin bổ sung được thu thập tự động (địa chỉ IP, thông tin cookie, v.v.) để cung cấp Dịch vụ cho bạn + +**Cách thông tin của bạn được sử dụng**: Thông tin của bạn cho phép chúng tôi cung cấp Dịch vụ Cho bạn, bao gồm khả năng áp dụng cho các lựa chọn nhà ở giá phải chăng hiện có. Sử dụng bổ sung bao gồm việc liên hệ với bạn về các Dịch vụ và tiến hành nghiên cứu và phát triển để cải thiện Dịch vụ. Chúng tôi sẽ không bán thông tin của bạn cho bất kỳ mục đích tiếp thị nào của bên thứ ba. + +**Người mà chúng tôi chia sẻ thông tin về bạn với**: Chúng tôi có thể chia sẻ thông tin của bạn với các nhà cung cấp dịch vụ bên thứ ba của chúng tôi, bao gồm người quản lý và nhà phát triển tài sản và nhân viên từ Đại lý của chúng tôi, để tuân thủ các nghĩa vụ pháp lý, bảo vệ và bênh vực các quyền và tài sản của chúng tôi, đảm bảo chức năng của Trang web hoặc với sự cho phép của bạn. + +**Có thêm thắc mắc**: liên hệ SJHousingPortal@sanjoseca.gov + +

1. CHÚNG TÔI THU THẬP THÔNG TIN NÀO

+ +##### Định nghĩa + +Chúng tôi yêu cầu một số thông tin nhất định để cung cấp Dịch vụ của chúng tôi cho bạn. Ví dụ, bạn có thể được yêu cầu phải có tài khoản để tương tác với các khía cạnh nhất định của Dịch vụ. Khi bạn chọn chia sẻ thông tin bên dưới với chúng tôi, chúng tôi sẽ thu thập và sử dụng thông tin đó để hoạt động Dịch vụ của mình. "Dữ Liệu Cá Nhân" có nghĩa là dữ liệu cho phép ai đó nhận dạng hoặc liên hệ với bạn, bao gồm, chẳng hạn như tên, địa chỉ, số điện thoại, địa chỉ e-mail, sở thích du lịch, chi phí cụ thể cũng như bất kỳ thông tin không công khai nào khác về bạn được liên kết với hoặc được nối kết với bất kỳ dữ liệu nào ở trên. "Dữ Liệu Ẩn Danh" có nghĩa là dữ liệu không được liên kết hoặc nối kết với Dữ Liệu Cá Nhân của bạn; Dữ Liệu Ẩn Danh không cho phép nhận dạng cá nhân. Như được sử dụng trong tài liệu này, thuật ngữ chung “thông tin” bao gồm tất cả dữ liệu do bạn cung cấp hoặc được thu thập thông qua Dịch vụ, bao gồm cả Dữ Liệu Cá Nhân và Dữ Liệu Ẩn Danh. Chúng tôi thu thập Dữ Liệu Cá Nhân và Dữ Liệu Ẩn Danh, như được mô tả bên dưới. + +##### Thông Tin Bạn Cung Cấp. + +Khi bạn sử dụng Dịch vụ, bạn sẽ cung cấp thông tin có thể là Dữ Liệu Cá Nhân, chẳng hạn như (a) tên, địa chỉ email, số điện thoại di động, mật khẩu của Trang web, ngày sinh, mã số thuế, lịch trình, hình ảnh, và thông tin đăng ký khác; (b) thông tin bạn cung cấp cho chúng tôi khi bạn liên hệ với chúng tôi để được trợ giúp; (c) bất kỳ thông tin nào được yêu cầu để đảm bảo Người dùng hội đủ điều kiện tham gia vào một chương trình hoặc khía cạnh cụ thể của Dịch vụ; và (d) bất kỳ thông tin nào khác mà bạn nhập vào Dịch vụ. + +##### Thông Tin Chúng Tôi Thu Thập Tự Động + +Chúng tôi tự động nhận và ghi lại thông tin từ việc bạn sử dụng Dịch vụ, bao gồm nhưng không giới hạn tới: Việc sử dụng trang web, địa chỉ IP của bạn, loại trình duyệt, nhà cung cấp dịch vụ Internet, các trang giới thiệu/thoát, hệ điều hành, triện đóng ngày/giờ, dữ liệu dòng nhấp chuột và thông tin cookie. Nói chung, Dịch vụ tự động thu thập thông tin sử dụng, chẳng hạn như số lượng và tần suất người dùng Dịch vụ. + +##### Cookie. + +Cookie là những mẩu thông tin nhỏ mà một trang web gửi đến máy tính của bạn khi bạn đang xem trang mạng. Chúng tôi có thể sử dụng cả cookie phiên họp (hết hạn sau khi bạn đóng trình duyệt của mình) và cookie tồn tại liên tục (ở trên máy tính/điện thoại di động của bạn cho đến khi bạn xóa chúng) để cung cấp Dịch vụ, và cung cấp cho bạn trải nghiệm cá nhân và tương tác hơn trên Trang web. Chúng tôi sử dụng cookie để cho phép máy chủ của chúng tôi nhận ra trình duyệt web của bạn và cho chúng tôi biết cách thức và thời điểm bạn sử dụng Dịch vụ. Hầu hết các trình duyệt đều có tùy chọn để tắt tính năng cookie, điều này sẽ ngăn trình duyệt của bạn chấp nhận cookie mới, cũng như (tùy thuộc vào mức độ phức tạp của phần mềm trình duyệt của bạn) cho phép bạn quyết định chấp nhận từng cookie mới theo nhiều cách khác nhau. Bạn sẽ không thể tận dụng các tính năng hấp dẫn nhất của Dịch vụ nếu bạn tắt cookie của mình. + +##### Thẻ Pixel. + +Thẻ Pixel (còn được gọi là clear Gifs, Web beacons, hoặc Web bugs). Thẻ Pixel là những hình ảnh đồ họa nhỏ với một mã định danh duy nhất, có chức năng tương tự như Cookie, được sử dụng để theo dõi các chuyển động trực tuyến của người dùng Web. Trái ngược với Cookie, được lưu trữ trên ổ cứng máy tính của người dùng, Thẻ Pixel được lồng vào ẩn núp trong các trang Web. Thẻ Pixel cũng cho phép chúng tôi gửi tin nhắn e-mail ở định dạng mà người dùng có thể đọc và chúng cho chúng ta biết liệu e-mail đã được mở hay chưa để đảm bảo rằng chúng ta chỉ gửi những tin nhắn mà người dùng quan tâm. Ví dụ, việc sử dụng pixel cho phép chúng tôi ghi lại rằng một người dùng đã tương tác với một tin nhắn, truy cập một trang web cụ thể, hoặc nhấp vào một quảng cáo cụ thể. Chúng tôi không cung cấp Dữ Liệu Cá Nhân cho bất kỳ mạng lưới quảng cáo nào để sử dụng bên ngoài Dịch vụ. + +##### Phân tích. + +Chúng tôi sử dụng các dịch vụ phân tích của bên thứ ba, bao gồm nhưng không giới hạn ở Google Analytics ("Dịch Vụ Phân Tích"), để giúp phân tích cách người dùng sử dụng Trang web và Dịch vụ của chúng tôi. Chúng tôi chỉ sử dụng thông tin nhận được từ Dịch Vụ Phân Tích (Analytics Services) để cải thiện Trang web và Dịch vụ của mình. Thông tin được tạo bởi Cookie hoặc các công nghệ khác về việc bạn sử dụng Trang web và Dịch vụ của chúng tôi ("Thông Tin Phân Tích") được truyền đến Dịch Vụ Phân Tích. Dịch Vụ Phân Tích sử dụng Thông Tin Phân Tích để biên dịch các báo cáo về hoạt động của người dùng. Dịch Vụ Phân Tích cũng có thể chuyển Thông Tin Phân Tích cho các bên thứ ba khi luật pháp yêu cầu hoặc khi các bên thứ ba đó thay mặt họ xử lý Thông Tin Phân Tích. Khả năng sử dụng và chia sẻ Thông Tin Phân Tích của mỗi Dịch Vụ Phân Tích bị hạn chế bởi Điều khoản sử dụng và Chính Sách Quyền Riêng Tư của Dịch Vụ Phân Tích đó. Bằng cách sử dụng Trang web và Dịch vụ của chúng tôi, bạn đồng ý với việc Dịch Vụ Phân Tích xử lý dữ liệu về bạn theo cách thức và các mục đích nêu trên. Để có danh sách đầy đủ các Dịch Vụ Phân Tích, vui lòng liên hệ với chúng tôi tại SJHousingPortal@sanjoseca.gov. + +##### Dữ Liệu Của Bên Thứ Ba. + +Chúng tôi có thể nhận và/hoặc chia sẻ Dữ Liệu Cá Nhân và/hoặc Ẩn danh về bạn cho các công ty giúp chúng tôi cung cấp Dịch vụ của mình thông qua trang web đồng thương hiệu hoặc được gắn nhãn riêng hoặc các công ty cung cấp sản phẩm và/hoặc dịch vụ của họ trên Dịch vụ của chúng tôi (ví dụ, nhà phát triển nhà ở và quản lý tài sản). Các công ty bên thứ ba này có thể nhận Dữ Liệu Cá Nhân và Dữ Liệu Ẩn Danh. Họ sẽ chỉ sử dụng dữ liệu đó tuân theo các tiêu chuẩn bảo mật và quyền riêng tư của chúng tôi được quy định trong Chính Sách Quyền Riêng Tư này. + +

2. CÁCH CHÚNG TÔI SỬ DỤNG THÔNG TIN

+ +Chúng tôi cố gắng đảm bảo rằng chúng tôi bảo vệ quyền riêng tư của bạn khi chúng tôi xử lý thông tin của bạn. Chúng tôi coi trọng quyền riêng tư của bạn. Dưới đây là các mục đích cụ thể về việc chúng tôi sử dụng thông tin mà chúng tôi thu thập được về bạn. + +##### Để cung cấp Dịch vụ và cá nhân hóa trải nghiệm của bạn. + +Chúng tôi sử dụng thông tin về bạn để cung cấp Dịch vụ cho bạn, bao gồm xử lý đơn đăng ký dịch vụ và các giao dịch liên quan với bạn, xác thực bạn khi bạn đăng nhập, cung cấp hỗ trợ khách hàng, vận hành và duy trì Dịch vụ. + +##### Để nghiên cứu và phát triển. + +Chúng tôi luôn tìm cách làm cho Dịch vụ của mình thông minh hơn, nhanh hơn, an toàn hơn, tích hợp, và hữu ích hơn cho bạn. Ngoài ra, chúng tôi dự định sử dụng Thông Tin Tổng Hợp (như mô tả bên dưới) để tác động tích cực đến chính sách nhà ở. Để đạt được mục tiêu đó, chúng tôi sử dụng các bài học tập thể về cách mọi người sử dụng Dịch vụ của chúng tôi và phản hồi được cung cấp trực tiếp cho chúng tôi để khắc phục sự cố và xác định xu hướng, cách sử dụng, mô hình hoạt động và các lĩnh vực để tích hợp và cải tiến Dịch vụ. + +Để trao đổi với bạn về các Dịch vụ. + +Chúng tôi sử dụng thông tin liên hệ của bạn để gửi liên lạc giao dịch qua email hoặc trò chuyện và trong Dịch vụ, bao gồm các câu hỏi và yêu cầu, cung cấp hỗ trợ khách hàng, và gửi cho bạn các thông báo kỹ thuật, cập nhật sản phẩm, cảnh báo bảo mật, quản trị và các tin nhắn khác. + +##### Tiếp thị, quảng bá, và thúc đẩy sự tương tác với Dịch vụ. + +Chúng tôi sử dụng thông tin liên hệ của bạn và thông tin về cách bạn sử dụng Dịch vụ để gửi thông tin quảng cáo mà bạn có thể quan tâm cụ thể, bao gồm cả qua email. Những thông tin liên lạc này nhằm mục đích thúc đẩy sự tương tác và tối đa hóa những gì bạn nhận được từ Dịch vụ, bao gồm thông tin về các tính năng mới, yêu cầu khảo sát, sự kiện, và thông tin khác mà chúng tôi nghĩ rằng bạn có thể quan tâm. Chúng tôi cũng trao đổi với bạn về các ưu đãi sản phẩm mới và dịch vụ mới. + +##### Thực hiện các cuộc khảo sát và thu thập phản hồi về Dịch vụ của chúng tôi. + +Chúng tôi làm điều này để theo đuổi lợi ích hợp pháp của mình để tìm hiểu liệu Dịch vụ có hữu ích cho bạn hay không và để đánh giá hiệu quả của bất kỳ bản cập nhật nào mà chúng tôi cung cấp. + +##### Hỗ trợ khách hàng. + +Chúng tôi sử dụng thông tin của bạn để giải quyết các vấn đề kỹ thuật mà bạn gặp phải, để đáp ứng yêu cầu hỗ trợ của bạn, để phân tích thông tin sự cố, cũng như sửa chữa và cải thiện Dịch vụ. Chúng tôi cũng sử dụng thông tin của bạn để cung cấp hỗ trợ được yêu cầu (bắt nguồn từ bạn hoặc một người hoạt động hợp pháp thay mặt bạn) và cung cấp hỗ trợ chủ động khi cần thiết. + +##### Vì sự an toàn và bảo mật. + +Chúng tôi sử dụng thông tin về bạn và việc sử dụng Dịch vụ của bạn để xác minh tài khoản và hoạt động, theo dõi hoạt động đáng ngờ hoặc gian lận và xác định các hành vi vi phạm chính sách Dịch vụ. + +##### Bảo vệ lợi ích công cộng và các quyền hợp pháp. + +Khi luật pháp yêu cầu, khi chúng tôi tin rằng điều đó là vì lợi ích công cộng hoặc cần thiết để bảo vệ quyền, lợi ích hợp pháp của chúng tôi, và lợi ích của người khác, chúng tôi sử dụng thông tin về bạn liên quan đến các yêu cầu pháp lý, tuân thủ, quy định, và các chức năng kiểm toán. + +##### Với sự đồng ý của bạn. + +Chúng tôi sử dụng thông tin về bạn mà bạn đã đồng ý cho chúng tôi làm như vậy cho một mục đích cụ thể không được liệt kê ở trên. Ví dụ, chúng tôi có thể xuất bản lời chứng thực hoặc các câu chuyện nổi bật của khách hàng để quảng cáo Dịch vụ, với sự cho phép của bạn. + +##### Các mục đích bổ sung. + +Đôi khi chúng tôi có thể xử lý thông tin của bạn cho bất kỳ mục đích nào khác được tiết lộ cho bạn liên quan đến Dịch vụ của chúng tôi. Nếu chúng tôi dự định xử lý dữ liệu cá nhân của bạn cho một mục đích khác với mục đích nêu trên, chúng tôi sẽ cung cấp cho bạn thông tin trước khi xử lý như vậy và sẽ lấy sự đồng ý của bạn khi cần thiết. + +##### Xác định tư cách hội đủ điều kiện. + +Chúng tôi sử dụng thông tin của bạn để xác định tính hội đủ điều kiện của bạn đối với Dịch vụ. + +##### Cung cấp quyền truy cập vào các dịch vụ. + +Chúng tôi sử dụng thông tin của bạn để cung cấp cho bạn quyền truy cập vào các dịch vụ bạn đã đăng ký, chẳng hạn như quyền truy cập vào nhà ở. + +

3. CÁCH CHÚNG TÔI CHIA SẺ THÔNG TIN

+ +Chúng tôi có thể chia sẻ thông tin của bạn với các nhà cung cấp dịch vụ bên thứ ba của chúng tôi, bao gồm người quản lý và nhà phát triển tài sản và nhân viên từ Đại lý của chúng tôi, để tuân thủ các nghĩa vụ pháp lý, bảo vệ và bênh vực các quyền và tài sản của chúng tôi, đảm bảo chức năng của Trang web hoặc với sự cho phép của bạn. Dưới đây là những cách cụ thể mà chúng tôi chia sẻ thông tin mà chúng tôi thu thập được về bạn. + +##### Thông Tin Hồ Sơ Người Dùng. + +Thông tin hồ sơ người dùng bao gồm tên, email, số điện thoại của bạn và thông tin khác mà bạn nhập có thể được hiển thị cho những người dùng khác để tạo điều kiện cho người dùng tương tác trong Dịch vụ (ví dụ, để cho phép người quản lý tài sản liên hệ với bạn về các cơ hội nhà ở). + +##### Thông Tin Được Chia Sẻ với Các Đại Lý Của Chúng Tôi. + +Chúng tôi tuyển dụng và ký hợp đồng với những người và các tổ chức khác thay mặt chúng tôi thực hiện một số nhiệm vụ và những người dưới sự kiểm soát của chúng tôi (“Đại lý” của chúng tôi), bao gồm các công ty để xây dựng và duy trì Trang web. Chúng tôi có thể cần chia sẻ Dữ Liệu Cá Nhân với Đại lý của chúng tôi để cung cấp sản phẩm hoặc dịch vụ cho bạn. Trừ khi chúng tôi nói với bạn theo cách khác, Đại lý của chúng tôi không có bất kỳ quyền nào để sử dụng Dữ Liệu Cá Nhân hoặc thông tin khác mà chúng tôi chia sẻ với họ ngoài những gì cần thiết để hỗ trợ chúng tôi. Theo đây, bạn đồng ý với việc chia sẻ Dữ Liệu Cá Nhân của chúng tôi với các Đại lý của chúng tôi. + +##### Thông Tin Địa Chỉ IP. + +Trong khi chúng tôi thu thập và lưu trữ thông tin địa chỉ IP, thông tin đó không được công khai. Tuy nhiên, đôi khi chúng tôi chia sẻ thông tin này với các đối tác, nhà cung cấp dịch vụ và những người khác mà chúng tôi hợp tác trong kinh doanh và theo cách khác được quy định trong Chính Sách Quyền Riêng Tư này. + +##### Thông Tin Tổng Hợp. + +Chúng tôi chia sẻ Thông Tin Tổng Hợp với các đại lý, đối tác và nhà cung cấp dịch vụ của chúng tôi. Chúng tôi chia sẻ loại dữ liệu thống kê này để các đối tác của chúng tôi có thể hiểu cách thức và tần suất những người sử dụng Dịch vụ của chúng tôi và các dịch vụ hoặc trang web của họ, điều này giúp cải thiện cả dịch vụ của họ và cách Dịch vụ của chúng tôi giao tiếp với họ. Ngoài ra, các bên thứ ba này có thể chia sẻ với chúng tôi Dữ Liệu không cần giữ kín, tổng hợp hoặc mặt khác không riêng tư về bạn mà họ đã phát triển hoặc có được một cách độc lập. + +##### Thông Tin Được Tiết Lộ để Bảo Vệ Chúng Tôi, Bảo Vệ Người Khác và Các Yêu Cầu Pháp Lý. + +Chúng tôi cũng bảo lưu quyền truy cập, đọc, lưu giữ, và tiết lộ bất kỳ thông tin nào vì chúng tôi tin một cách hợp lý là cần thiết để (i) đáp ứng bất kỳ luật, quy định, quy trình pháp lý hiện hành nào, hoặc yêu cầu của chính phủ, (ii) thực thi Điều Khoản Dịch Vụ của chúng tôi, bao gồm điều tra các vi phạm tiềm ẩn trong đây, (iii) phát hiện, ngăn chặn, hoặc mặt khác giải quyết các vấn đề gian lận, bảo mật hoặc kỹ thuật, (iv) phản hồi các yêu cầu hỗ trợ của người dùng hoặc (v) bảo vệ quyền, tài sản hoặc sự an toàn của chúng tôi, người dùng của chúng tôi, và công cộng. Điều này bao gồm việc trao đổi thông tin với các công ty và tổ chức khác để bảo vệ chống gian lận và ngăn chặn thư rác/phần mềm độc hại. + +##### Thông Tin Chúng Tôi Chia Sẻ với Sự Đồng Ý Của Bạn: + +Chúng tôi sẽ chia sẻ Dữ Liệu Cá Nhân của bạn với bất kỳ bên liên quan nào mà bạn đã cho phép chúng tôi chia sẻ. + +

4. CÁCH CHÚNG TÔI LƯU TRỮ VÀ BẢO MẬT THÔNG TIN

+ +Bảo mật thông tin của bạn là ưu tiên hàng đầu của chúng tôi. Để đạt được mục tiêu đó, chúng tôi tuân thủ các phương pháp tốt nhất theo tiêu chuẩn ngành để bảo mật thông tin của bạn. Chúng tôi sử dụng các nhà cung cấp dịch vụ lưu trữ dữ liệu tại Hoa Kỳ để lưu trữ thông tin mà chúng tôi thu thập và chúng tôi sử dụng các biện pháp kỹ thuật để bảo mật dữ liệu của bạn. Mặc dù chúng tôi thực hiện các biện pháp bảo vệ được thiết kế để bảo vệ thông tin của bạn, nhưng không có hệ thống bảo mật nào là không thể xâm nhập và do bản chất vốn có của internet, chúng tôi không thể đảm bảo rằng dữ liệu, trong quá trình truyền qua internet hoặc trong khi được lưu trữ trên hệ thống của chúng tôi hoặc mặt khác do chúng tôi cai quản, tuyệt đối an toàn không bị xâm nhập bởi người khác. Chúng tôi lưu giữ thông tin mà chúng tôi thu thập về bạn trong bao lâu tùy thuộc vào loại thông tin, như được mô tả chi tiết hơn bên dưới. Sau thời gian đó, chúng tôi sẽ xóa hoặc giữ nặc danh thông tin của bạn hoặc, nếu điều này là không thể (ví dụ, vì thông tin đã được lưu trữ trong kho lưu trữ dự phòng), thì chúng tôi sẽ lưu trữ thông tin của bạn một cách an toàn và cô lập thông tin đó khỏi bất kỳ mục đích sử dụng nào nữa cho đến khi có thể xóa đi được. + +##### Thông Tin Tài Khoản. + +Chúng tôi chỉ lưu trữ Dữ Liệu Cá Nhân của bạn chừng nào còn cần thiết để hoàn thành mục đích mà dữ liệu đó được thu thập hoặc để tuân thủ các nghĩa vụ hợp đồng và pháp lý của chúng tôi, cộng thêm 1 năm, sau đó loại bỏ thông tin đó một cách an toàn. Chúng tôi cũng giữ lại một số thông tin của bạn khi cần thiết để tuân thủ các nghĩa vụ pháp lý của chúng tôi, để giải quyết tranh chấp, thực thi các thỏa thuận của chúng tôi, hỗ trợ hoạt động và để tiếp tục phát triển và cải thiện Dịch vụ của chúng tôi. Trong trường hợp chúng tôi lưu giữ thông tin để cải thiện và phát triển Dịch vụ, chúng tôi thực hiện các bước để loại bỏ thông tin trực tiếp nhận dạng bạn và chúng tôi chỉ sử dụng thông tin đó để khám phá những hiểu biết chung về việc sử dụng Dịch vụ của chúng tôi, chứ không phải để phân tích cụ thể các đặc điểm cá nhân về bạn. + +##### Thông Tin Bạn Chia Sẻ trên Các Dịch Vụ + +Nếu tài khoản của bạn bị làm cho bất hoạt hoặc vô hiệu hóa, một số Dữ Liệu Cá Nhân và Dữ Liệu Ẩn Danh của bạn và nội dung mà bạn đã cung cấp sẽ vẫn còn. + +##### Thông tin tiếp thị + +Nếu bạn đã chọn nhận email tiếp thị từ chúng tôi, chúng tôi sẽ giữ lại thông tin về tùy chọn tiếp thị của bạn trừ khi bạn yêu cầu chúng tôi xóa thông tin đó một cách cụ thể. Chúng tôi lưu giữ thông tin thu được từ cookie và các công nghệ theo dõi khác trong một khoảng thời gian hợp lý kể từ ngày thông tin đó được tạo ra. + +##### Người Quản Lý và Nhà Phát Triển Tài Sản. + +Nếu bạn là người quản lý tài sản hoặc nhà phát triển sử dụng Dịch vụ và có quyền truy cập vào Dữ Liệu Cá Nhân của người dùng khác, bạn đồng ý lưu trữ và bảo mật Dữ Liệu Cá Nhân đó theo các tiêu chuẩn quy định trong Chính Sách Quyền Riêng Tư này. + +

5. CÁCH TRUY CẬP VÀ KIỂM SOÁT THÔNG TIN CỦA BẠN

+ +Bạn có thể truy cập và chỉnh sửa thông tin của mình bằng cách đăng nhập vào tài khoản của bạn và chuyển đến các thiết đặt tài khoản. + +Bạn có thể ngừng thu thập thông tin thêm nữa bằng cách ngừng sử dụng Dịch vụ. Thông tin đã được cung cấp trước đó sẽ được giữ lại khi cần thiết để thực hiện mục đích mà thông tin được thu thập hoặc để tuân thủ các nghĩa vụ hợp đồng và pháp lý của chúng tôi, cộng thêm 1 năm. + +

6. CÁC VẤN ĐỀ QUAN TRỌNG BỔ SUNG VỀ QUYỀN RIÊNG TƯ

+ +##### Tuổi Tối Thiểu. + +Dịch vụ không dành cho các cá nhân dưới 18 tuổi. Chúng tôi không cố ý thu thập Dữ Liệu Cá Nhân từ trẻ em dưới 18 tuổi. Nếu chúng tôi biết rằng trẻ em dưới 18 tuổi đã cung cấp Dữ Liệu Cá Nhân cho chúng tôi, chúng tôi sẽ thực hiện các bước để xóa thông tin đó. Nếu bạn biết rằng một đứa trẻ đã cung cấp Dữ Liệu Cá Nhân cho chúng tôi, vui lòng liên hệ với các dịch vụ hỗ trợ của chúng tôi. + +##### Bảo vệ: + +Chúng tôi lo ngại về việc bảo vệ tính bảo mật của Dữ Liệu Cá Nhân của bạn. Chúng tôi cung cấp các biện pháp bảo vệ vật lý, điện tử, và thủ tục để bảo vệ thông tin mà chúng tôi xử lý và duy trì cũng như sử dụng kết hợp các rào cản tường lửa, kỹ thuật mã hóa và quy trình xác thực. Ví dụ, chúng tôi giới hạn quyền truy cập vào Dữ Liệu Cá Nhân của bạn cho các nhân viên và nhà thầu được ủy quyền, những người cần biết thông tin đó để vận hành, phát triển hoặc cải thiện Dịch vụ của chúng tôi. Xin lưu ý rằng, mặc dù chúng tôi cố gắng cung cấp bảo mật hợp lý cho thông tin mà chúng tôi xử lý và duy trì, không có hệ thống bảo mật nào có thể ngăn chặn tất cả các vi phạm bảo mật tiềm năng. + +##### Liên Kết đến Các Trang Web Khác. + +Dịch vụ của chúng tôi có thể chứa các liên kết đến các trang web khác không do chúng tôi điều hành. Nếu bạn nhấp vào liên kết của bên thứ ba, bạn sẽ được dẫn đến trang web của bên thứ ba đó. Chúng tôi đặc biệt khuyên bạn nên xem lại chính sách bảo mật của mọi trang web bạn truy cập. Chúng tôi không kiểm soát và không chịu trách nhiệm về nội dung, chính sách bảo mật hoặc thực thi của bất kỳ trang web hoặc dịch vụ của bên thứ ba nào. + +##### Các thay đổi đối với Chính Sách Quyền Riêng Tư này. + +Chúng tôi sẽ thông báo cho bạn khi chúng tôi thay đổi Chính Sách Quyền Riêng Tư này. Đôi khi chúng tôi có thể thay đổi Chính Sách Quyền Riêng Tư này. Nếu chúng tôi thực hiện những thay đổi đáng kể về cách chúng tôi xử lý Dữ Liệu Cá Nhân của bạn hoặc đối với Chính Sách Quyền Riêng Tư, chúng tôi sẽ cung cấp thông báo cho bạn về Dịch vụ hoặc bằng một số phương tiện khác, chẳng hạn như email. Vui lòng xem xét các thay đổi một cách kỹ lưỡng. Nếu bạn đồng ý với các thay đổi, chỉ cần tiếp tục sử dụng Dịch vụ của chúng tôi. Việc bạn tiếp tục sử dụng Dịch vụ của chúng tôi sau khi Chính Sách Quyền Riêng Tư đã được sửa đổi có hiệu lực cho thấy rằng bạn đã đọc, hiểu và đồng ý với phiên bản hiện tại của Chính sách này. Nếu bạn phản đối bất kỳ thay đổi nào đối với các điều khoản của chúng tôi và bạn không muốn sử dụng Dịch vụ của chúng tôi nữa, bạn có thể đóng (các) tài khoản của mình. Trừ khi có quy định khác, Chính Sách Quyền Riêng Tư hiện tại của chúng tôi áp dụng cho tất cả thông tin mà chúng tôi có về bạn và tài khoản của bạn. Việc sử dụng Dịch vụ của chúng tôi sau khi thông báo về những thay đổi đã được báo cho bạn biết hoặc được xuất bản trên Dịch vụ của chúng tôi sẽ cấu thành sự đồng ý với các điều khoản hoặc thông lệ đã thay đổi. + +

7. LIÊN HỆ CHÚNG TÔI

+ +##### Liên hệ với chúng tôi: + +Nếu bạn có bất kỳ câu hỏi nào, đừng ngần ngại vui lòng liên hệ với chúng tôi theo địa chỉ: SJHousingPortal@sanjoseca.gov. + +
diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/affordableHousingSCC.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/affordableHousingSCC.md new file mode 100644 index 0000000000..e354bb5de9 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/affordableHousingSCC.md @@ -0,0 +1,24 @@ + +### [Affordable Housing in Santa Clara County](https://affordablehousingonline.com/housing-search/California/Santa-Clara-County) + +List of affordable housing opportunities, subsidized homes, and other housing resources. + + + +### [Viviendas asequibles en el condado de Santa Clara](https://affordablehousingonline.com/housing-search/California/Santa-Clara-County) + +Lista de oportunidades de vivienda asequible, casas subvencionadas y otros recursos de vivienda. + + + +### [聖克拉拉縣的可負擔住房](https://affordablehousingonline.com/housing-search/California/Santa-Clara-County) + +可負擔住房機會、補貼房和其他住房資源清單。 + + + +### [Nhà Ở Giá Cả Phải Chăng ở Quận Santa Clara](https://affordablehousingonline.com/housing-search/California/Santa-Clara-County) + +Danh sách các cơ hội nhà ở giá cả phải chăng, nhà được trợ cấp, và các nguồn tài nguyên nhà ở khác. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/affordableHousingSJ.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/affordableHousingSJ.md new file mode 100644 index 0000000000..ca6fb69db0 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/affordableHousingSJ.md @@ -0,0 +1,24 @@ + +### [San José Affordable Housing Locator Map](https://www.arcgis.com/apps/webappviewer/index.html?appid=73a4097001c24366a02272d4ddcfe25a&extent=-13580483.9128%2C4475440.128%2C-13551437.8421%2C4493899.6704%2C102100) + +Find all affordable housing housing in San José with this map. + + + +### [Mapa de localización de viviendas asequibles en San José](https://www.arcgis.com/apps/webappviewer/index.html?appid=73a4097001c24366a02272d4ddcfe25a&extent=-13580483.9128%2C4475440.128%2C-13551437.8421%2C4493899.6704%2C102100) + +Encuentre todas las viviendas asequibles de San José con este mapa. + + + +### [聖荷西可負擔住房定點地圖](https://www.arcgis.com/apps/webappviewer/index.html?appid=73a4097001c24366a02272d4ddcfe25a&extent=-13580483.9128%2C4475440.128%2C-13551437.8421%2C4493899.6704%2C102100) + +透過本地圖尋找聖荷西的所有可負擔住房。 + + + +### [Bản Đồ Định Vị Nhà Ở Giá Cả Phải Chăng Ở San José](https://www.arcgis.com/apps/webappviewer/index.html?appid=73a4097001c24366a02272d4ddcfe25a&extent=-13580483.9128%2C4475440.128%2C-13551437.8421%2C4493899.6704%2C102100) + +Tìm tất cả nhà ở giá cả phải chăng ở San José với bản đồ này. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/alaCounty.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/alaCounty.md new file mode 100644 index 0000000000..b6020d5548 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/alaCounty.md @@ -0,0 +1,16 @@ + +### [Alameda County](https://housing.acgov.org/) + + + +### [Condado de Alameda](https://housing.acgov.org/) + + + +### [阿拉米達縣](https://housing.acgov.org/) + + + +### [Quận Alameda](https://housing.acgov.org/) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/doorwayPortal.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/doorwayPortal.md new file mode 100644 index 0000000000..c1ff99cdb5 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/doorwayPortal.md @@ -0,0 +1,24 @@ + +### [How it Works?](https://res.cloudinary.com/exygy/image/upload/v1652106469/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_Jose_ENG_nbgp6i.pdf) + +This guide describes affordable housing and how to get into it. + + + +### [¿Cómo funciona?](https://res.cloudinary.com/exygy/image/upload/v1652106470/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_Jose_spa_bvxvff.pdf) + +Esta guía describe la vivienda asequible y cómo conseguirla. + + + +### [這個怎麼運作?](https://res.cloudinary.com/exygy/image/upload/v1652106470/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_Jose-TCH_uuuf2f.pdf) + +本指南介紹可負擔住房以及如何申請。 + + + +### [Làm thế nào nó hoạt động?](https://res.cloudinary.com/exygy/image/upload/v1652106470/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_JoseVietFinal_je8c2j.pdf) + +Hướng dẫn này mô tả nhà ở giá phải chăng và cách có được. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/homelessHotline.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/homelessHotline.md new file mode 100644 index 0000000000..3f06876cc7 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/homelessHotline.md @@ -0,0 +1,32 @@ + +### Homeless Hotline + +If you are homeless and seeking help, please contact the Homeless Helpline + +Call [408-385-2400](tel:+1-408-385-2400) + + + +### Línea directa para personas sin hogar + +Si no tiene hogar y busca ayuda, póngase en contacto con la línea de ayuda para personas sin hogar + +Llame al [408-385-2400](tel:+1-408-385-2400) + + + +### 遊民熱線 + +如果您是遊民而且尋求幫助,請聯繫遊民幫助熱線 + +致電 [408-385-2400](tel:+1-408-385-2400) + + + +### Đường Dây Nóng Cho Người Vô Gia Cư + +Nếu bạn là người vô gia cư và đang tìm kiếm sự trợ giúp, vui lòng liên hệ với Đường Dây Trợ Giúp Dành Cho Người Vô Gia Cư + +Gọi [408-385-2400](tel:+1-408-385-2400) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/housingChoices.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/housingChoices.md new file mode 100644 index 0000000000..1d6baa1ed6 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/housingChoices.md @@ -0,0 +1,44 @@ + +### [Housing Choices](https://www.housingchoices.org/) + +Housing Choices provides housing navigation services to people with intellectual and developmental disabilities served by the Regional Center. + +[Submit a request for Housing Choices services](https://housingchoices.my.site.com/interestform/s/) + +Call [408-498-5777](tel:+1-408-498-5777) +Email [intake@housingchoices.org](mailto:intake@housingchoices.org) + + + +### [Elecciones de Vivienda](https://www.housingchoices.org/) + +Elecciones de Vivienda proporciona servicios de navegación por la vivienda a las personas con discapacidades intelectuales y de desarrollo atendidas por el Centro Regional. + +[Envíe una solicitud de servicios de Elecciones de Vivienda](https://housingchoices.my.site.com/interestform/s/) + +Llame al [408-498-5777](tel:+1-408-498-5777) +Envíe un correo electrónico a [intake@housingchoices.org](mailto:intake@housingchoices.org) + + + +### [住房選擇](https://www.housingchoices.org/) + +住房選擇為區域中心服務的智力和發育障礙人士提供住房導航服務。 + +[提交住房選擇服務的申請](https://housingchoices.my.site.com/interestform/s/) + +致電 [408-498-5777](tel:+1-408-498-5777) +電子郵件 [intake@housingchoices.org](mailto:intake@housingchoices.org) + + + +### [Cổng Thông Tin Chứng Từ Phần 8 (Lựa Chọn Nhà Ở)](https://www.housingchoices.org/) + +Housing Choices cung cấp dịch vụ điều hướng nhà ở cho những người bị khuyết tật về trí tuệ và chậm phát triển do Regional Center (Trung Tâm Khu Vực) phục vụ. + +[Gửi yêu cầu dịch vụ của Housing Choices](https://housingchoices.my.site.com/interestform/s/) + +Gọi [408-498-5777](tel:+1-408-498-5777) +Gửi Email tới [intake@housingchoices.org](mailto:intake@housingchoices.org) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/section8.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/section8.md new file mode 100644 index 0000000000..517c800ff9 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/section8.md @@ -0,0 +1,24 @@ + +### [Section 8 (Housing Choice) Voucher Portal](https://www.scchousingauthority.org/applicantportal/) + +The Section 8 (Housing Choice) Voucher Program is managed by the Housing Authority in the County in which you reside. Join Housing Authority Interest Lists to let them know you're looking for Section 8 Housing Assistance. + + + +### [Portal de Vales de la Sección 8 (Elección de Vivienda)](https://www.scchousingauthority.org/applicantportal/) + +El Programa de Vales de la Sección 8 (Elección de Vivienda) está gestionado por la Autoridad de la Vivienda del Condado en el que usted reside. Únase a las listas de interés de la Autoridad de la Vivienda para hacerles saber que está buscando ayuda para la vivienda de la Sección 8. + + + +### [第 8 節(住房選擇)憑證門戶網站](https://www.scchousingauthority.org/applicantportal/) + +第 8 節(住房選擇)憑證計畫由您所在縣的住房管理局管理。加入住房管理局的意向名單,讓他們知道您正在尋找第 8 節住房援助。 + + + +### [Cổng Thông Tin Chứng Từ Phần 8 (Lựa Chọn Nhà Ở)](https://www.scchousingauthority.org/applicantportal/) + +Chương Trình Chứng Từ Phần 8 (Lựa Chọn Nhà Ở) do Cơ Quan Quản Lý Gia Cư tại Quận nơi bạn cư trú quản lý. Tham gia vào Danh Sách Sở Thích Của Cơ Quan Quản Lý Gia Cư để cho họ biết bạn đang tìm kiếm sự Hỗ Trợ Nhà Ở Phần 8. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/sfCounty.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/sfCounty.md new file mode 100644 index 0000000000..fd0631b576 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/sfCounty.md @@ -0,0 +1,16 @@ + +### [San Francisco](https://housing.sfgov.org/) + + + +### [San Francisco](https://housing.sfgov.org/) + + + +### [三藩市](https://housing.sfgov.org/) + + + +### [San Francisco](https://housing.sfgov.org/) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/sidebar.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/sidebar.md new file mode 100644 index 0000000000..c962e09016 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/sidebar.md @@ -0,0 +1,43 @@ + +#### Contact + +**City of San Jose Housing Department** + +For listing and application questions, please contact the Property Agent displayed on the listing. + +For general program inquiries, you may call the Housing Department at [408-535-3860](tel:+1-408-535-3860) or email . + + + + +#### Contacto + +**Departamento de Vivienda de la Ciudad de San José** + +Para preguntas sobre el listado y la solicitud, póngase en contacto con el agente de la propiedad que aparece en el listado. + +Para consultas generales sobre el programa, puede llamar al Departamento de Vivienda al [408-535-3860](tel:+1-408-535-3860) o enviar un correo electrónico a . + + + + +#### 聯繫 + +**聖荷西市住房部** + +有關列表和申請問題,請聯絡列表上的物業代理人 + +對於一般計劃查詢,您可以致電房屋署 [408-535-3860](tel:+1-408-535-3860) 或發送電子郵件至 。 + + + + +#### Liên lạc + +**Ban Gia Cư Thành Phố San Jose** + +Đối với các câu hỏi về danh sách và ứng dụng, vui lòng liên hệ với Đại Lý Bất Động Sản được trình bày trên danh sách. + +Đối với các thắc mắc chung về chương trình, bạn có thể gọi cho Bộ Gia cư theo số [408-535-3860](tel:+1-408-535-3860) hoặc gửi email tới . + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/smCounty.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/smCounty.md new file mode 100644 index 0000000000..9e1ac78572 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/smCounty.md @@ -0,0 +1,16 @@ + +### [San Mateo County](https://smc.housingbayarea.org/) + + + +### [Condado de San Mateo](https://smc.housingbayarea.org/) + + + +### [聖馬刁縣](https://smc.housingbayarea.org/) + + + +### [Quận San Mateo](https://smc.housingbayarea.org/) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/unitedWay211.md b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/unitedWay211.md new file mode 100644 index 0000000000..788a113667 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_jose/resources/unitedWay211.md @@ -0,0 +1,32 @@ + +### 211 United Way Bay Area Health and Human Services + +[See all services](https://www.211bayarea.org/santaclara/) + +[See housing related services](https://www.211bayarea.org/santaclara/housing/) + + + +### Servicios Humanos y de Salud del Área de la Bahía de 211 United Way + +[Ver todos los servicios](https://www.211bayarea.org/santaclara/) + +[Ver servicios relacionados con la vivienda](https://www.211bayarea.org/santaclara/housing/) + + + +### 211 United Way 灣區衛生與公眾服務部 + +[查看所有服務](https://www.211bayarea.org/santaclara/) + +[查看住房相關服務](https://www.211bayarea.org/santaclara/housing/) + + + +### 211 United Way Bay Area Health and Human Services (Dịch Vụ Nhân Sinh và Y Tế Khu Vực Vịnh United Way) + +[Xem tất cả các dịch vụ](https://www.211bayarea.org/santaclara/) + +[Xem các dịch vụ liên quan đến nhà ở](https://www.211bayarea.org/santaclara/housing/) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/additional-resources-section.tsx b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/additional-resources-section.tsx new file mode 100644 index 0000000000..9b1eef8320 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/additional-resources-section.tsx @@ -0,0 +1,72 @@ +import React from "react" +import Markdown from "markdown-to-jsx" +import { t, InfoCardGrid, MarkdownSection } from "@bloom-housing/ui-components" +import RenderIf from "../../../RenderIf" +import Resource from "../../../Resource" +import HowItWorks from "./resources/HowItWorks.md" +import HavenConnect from "./resources/HavenConnect.md" +import HIPHousing from "./resources/HIPHousing.md" +import HAotCoSM from "./resources/HAotCoSM.md" +import CIH from "./resources/CIH.md" +import BayArea211 from "./resources/BayArea211.md" +import ProjectSentinel from "./resources/ProjectSentinel.md" +import HousingChoices from "./resources/HousingChoices.md" +import sidebarContent from "./resources/sidebar.md" + +export const AdditionalResourcesSection = () => { + return ( +
+
+
+ + + {HowItWorks} + {HavenConnect} + + + {HIPHousing} + + + {HAotCoSM} + {CIH} + {BayArea211} + {ProjectSentinel} + {HousingChoices} + + +
+ +
+
+ ) +} + +export default AdditionalResourcesSection diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/disclaimer.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/disclaimer.md new file mode 100644 index 0000000000..e06f933afc --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/disclaimer.md @@ -0,0 +1,11 @@ +## External Link Policies + +The County of San Mateo uses link and search capabilities to point to public information posted on the Internet. The County of San Mateo does not endorse or provide preferential treatment to any third party websites or associated organizations or persons. Additionally, the County of San Mateo does not control third party sites and therefore it does not warrant that third party sites are accurate or, reliable, or that they have operational links. The privacy policies here do not necessarily apply to external websites. You may either contact the external websites or read their Privacy Policies or Statements to find out what their data collection and distribution polices are. + +--- + +## Ownership + +In general, information presented on this web site is considered in the public domain. It may be distributed or copied as permitted by law. However, the County of San Mateo does make some use of copyrighted data such as photographs which may require additional permissions prior to your use. In order to use any information on this web site not owned or created by the County of San Mateo, you must seek permission directly from the owning (or holding) sources. If you are unsure of whether information is in the public domain or privately owned, please contact [websupport@smcgov.org](mailto:websupport@smcgov.org). The County of San Mateo shall have the right to use for any purpose, at no charge, all information submitted on the San Mateo County site. This right may only be limited if a submission is made under separate legal contract. The County of San Mateo shall be free to use, for any purpose, any ideas, concepts, or techniques contained in information provided through this site. + +--- diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/get_assistance.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/get_assistance.md new file mode 100644 index 0000000000..c75c675152 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/get_assistance.md @@ -0,0 +1,104 @@ + + + +## How to apply to affordable housing + +You can find and apply for affordable rental opportunities. + +[Read about how it works](/how-it-works) + +--- + + + +## Additional housing opportunities and resources + +We encourage you to browse other affordable housing resources. + +[View opportunities and resources](/additional-resources) + + + + + + +## Cómo realizar la solicitud para una vivienda asequible + +Puede buscar y solicitar oportunidades de alquileres asequibles. + +[Infórmese sobre cómo funciona](/es/how-it-works) + +--- + + + +## Oportunidades de viviendas y recursos adicionales + +Lo alentamos a buscar otros recursos de viviendas asequibles. + +[Ver oportunidades y recursos](/es/additional-resources) + + + + + + +## 如何申請社會住宅 + +您可以尋找並申請社會住宅 + +[閱讀運作方式](/zh/how-it-works) + +--- + + + +## 額外的居住機會及資源 + +我們鼓勵您瀏覽其他社會住宅資源 + +[檢視機會及資源](/zh/additional-resources) + + + + + + +## Cách đăng kí thuê nhà bình dân + +Quý vị có thể tìm và đăng kí các cơ hội thuê nhà bình dân + +[Đọc Về Cách Thức Hoạt Động](/vi/how-it-works) + +--- + + + +## Các cơ hội và tài liệu bổ sung về nhà ở + +Chúng tôi khuyến khích quý vị xem qua các nguồn thông tin khác về nhà ở bình dân + +[Xem các cơ hội và tài nguyên](/vi/additional-resources) + + + + + + +## Paano mag-apply sa abot-kayang pabahay + +Maaari kang maghanap at mag-aplay para sa abot-kayang pagkakataon sa pag-upa. + +[Basahin ang tungkol sa kung paano ito gumagana](/tl/how-it-works) + +--- + + + +## Karagdagang Mga Oportunidad at Mapagkukunan ng Pabahay + +Hinihikayat ka naming mag-browse ng iba pang mapagkukunan ng abot-kayang pabahay + +[Tingnan ang mga pagkakataon at mapagkukunan](/tl/additional-resources) + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/homepage_how_it_works.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/homepage_how_it_works.md new file mode 100644 index 0000000000..a3b1e641cf --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/homepage_how_it_works.md @@ -0,0 +1,95 @@ + + +1. #### Find Apartments Accepting Applications (Listings) + + Find high-quality, affordable housing opportunities located throughout the Bay Area. + +2. #### Check Eligibility + + Determine if your household meets the requirements for the property. + +3. #### Apply Online + + You will be asked to complete a short application for a unit at that property. + +4. #### Get the Results + + Once ranking order is ready, results will be posted for you to download. + +5. #### Get Prepared for Placement + + You may be contacted by the property manager notifying you that you are moving forward. + + + + + +1. #### Encontrar Apartamentos que Acepten Solicitudes (Anuncios) + + Podrá encontrar viviendas de alta calidad y a precios accesibles ubicadas en todo el Condado de Alameda. + +2. #### Comprobar la elegibilidad + + Compruebe si la vivienda cumple con los requisitos para la propiedad. + +3. #### Realizar una solicitud en línea + + Deberá completar un breve formulario para solicitar una unidad en esa propiedad. + +4. #### Obtener resultados + + Una vez que la orden de clasificación esté lista, los resultados serán publicados para que pueda descargarlo. + +5. #### Prepárese para la asignación de una vivienda + + El gerente de la propiedad puede contactarlo para notificarle que está avanzando en el proceso. + + + + + +1. #### 尋找公寓受理申請(刊登資訊) + + 尋找阿拉米達郡全區中可負擔的優質住房機會。 + +2. #### 檢查資格 + + 判斷您的家戶是否符合房地產要求。 + +3. #### 線上申請 + + 您必須填寫該資產單位的簡短申請文件。 + +4. #### 取得結果 + + 排名順序準備就緒後,我們即會發佈結果且可供您下載。 + +5. #### 準備好進行安置 + + 房地產經理會聯絡並通知您進行後續程序。 + + + + + +1. #### Tìm các căn hộ đang nhận đơn đăng ký (Danh sách) + + Tìm cơ hội nhà ở chất lượng cao, giá cả phải chăng tại Quận Alameda. + +2. #### Kiểm tra tính đủ điều kiện + + Xác định xem hộ gia đình quý vị có đáp ứng các yêu cầu của khu nhà hay không. + +3. #### Đăng ký trực tuyến + + Quý vị sẽ được yêu cầu hoàn thành đơn đăng ký ngắn cho một căn hộ tại khu nhà. + +4. #### Nhận kết quả + + Sau khi có thứ tự xếp hạng, kết quả sẽ được đăng để quý vị tải xuống. + +5. #### Chuẩn bị sắp xếp + + Quý vị có thể được người quản lý khu nhà liên hệ để thông báo rằng quý vị có thể tiếp tục tham gia quy trình. + + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/how_it_works.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/how_it_works.md new file mode 100644 index 0000000000..46d0fddd5b --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/how_it_works.md @@ -0,0 +1,520 @@ + + +1. ## Find Apartments Accepting Applications (Listings) + +

Find high-quality, affordable housing opportunities located throughout the Bay Area.

+ + The simplest way to find opportunities that are accepting applications is to visit the affordable housing portal within the area you wish to live. + + + + Another way to find Affordable Housing is to search the lists of affordable housing sites provided by the jurisdiction in which they are located. The lists can be found on the [Additional Housing Opportunities and Resources](/additional-resources) page of the Doorway portal. +
+ These lists provide the names, locations, and contact information for Affordable Housing properties. Unfortunately, property managers of these apartments are often not able to accept applications because they already have a lot of applications that must be processed before they can accept new applications. You should identify properties that meet your needs and contact the associated properties to find out if those properties are accepting applications. + +
+ +2. ## Check Eligibility + +

Determine if your household meets the requirements for the property.

+ + Affordable housing is reserved for people with limited income and/or other special circumstances. Applicants will need to assess their ability to meet the population and income requirements at the property for which they choose to apply. + + + + ### Population Requirements + + Affordable housing properties are available to people with limited income. However, a small percentage is designated for specific populations as well. Examples include: + + * Seniors: These may include apartments designated as “senior” housing for individuals over a particular age. + * People with developmental disabilities: All of the units in a property, or a percentage of units within a property, may be designated for people with disabilities. + * Transition Age Youth (TAY): Transition Age Youth is defined as individuals between the ages of 16 and 24 years old who are in transition from state custody or foster care environments and are at-risk. + * Special needs: Special Needs is a definition that covers various populations. This includes households experiencing homelessness, or that are at risk of homelessness, as well as individuals with developmental disabilities. Homes in these particular communities typically include services or features that support the Special Needs population. + + Be sure to read about the population requirements by going to the property website before contacting the property manager. + + ### Income Requirements + + Your total household income cannot exceed the maximum household income limits for the property. + + * Household: A “household” may be just one person, or two or more persons. All household members that will be living in the home must be included in the application. + * “Household income”: This means the combined annual income from all persons over 18 years old who are part of the household. + * Maximum household income: You will be asked to provide the “Gross” Maximum Income (also known as Gross Household Income). This refers to the total income before taxes or other deductions. + * Some affordable homes also have minimum income requirements. + + #### Preferences + + Some cities have adopted “preferences” that provide applicants who meet the preference criteria with a greater chance of being selected. A common example is a preference for applicants who live or work in the area in which the affordable housing property is located. Be sure to provide all the information requested on the application as it may allow you to qualify for any available preferences. If you need help applying, go to the [Resources](/additional-resources) page. + + + +3. ## Apply Online + +

You will be asked to complete a short application for a unit at that property.

+ + Be sure to complete your application by the date specified on the property. Properties listed on the web portal require a minimum amount of information to be submitted on a “short-form” digital or paper application. + + + + After you submit your application, you may be contacted by the property manager. If contacted, you will be asked to provide documentation on your income and finances. If you are not immediately selected for a placement interview, this doesn’t mean that you were not eligible to live at the property. A property manager may keep your application for several years before contacting you. Stay in touch with the property manager by periodically checking in regarding the status of your application. +
+ Due to the high demand for affordable housing, it can take a while before you get contacted for potential placement at a specific apartment. Therefore, it is important that you apply for housing at multiple properties that meet your housing needs and keep track of the properties that you have applied to. It is also important to complete Step 5 (Get Prepared for Placement ) even if you are not contacted right away by the property manager for placement in an apartment. Getting your finances in order, including reviewing your household budget, taking care of your credit, and gathering the required documents, will prepare you for when you are contacted by a property manager. + +
+ +4. ## Get the results + +

You will be contacted by the property manager with further instructions.

+ + The time between submitting your application and being contacted by the property manager depends on the number of vacancies in the property. It may vary from a couple of weeks to months and in some cases can take up to several years. Some people will not be selected for the next step in the process because they do not qualify to live in the apartment due to their income or other reasons. + + + + There are two methods that property managers use to determine the order in which applicants are selected to move forward in the application process. One method is to organize the applications by the date and time that the application was received (“first come, first serve”). The second method is to randomize the applications on a computer to generate an order for all applications. Randomization of the applications only takes place after the application due date. +
+ If you receive a letter or email from the property manager notifying you that you are moving forward in the application process, you are one step closer to being selected for an apartment. You should keep a record of any documentation that you receive from property managers. + +
+ +5. ## Get Prepared for Placement + +

If you are notified that you are moving forward in the application process, there will be two next steps: 1) submitting identification documents and financial information to the property manager; and 2) meeting with the property manager.

+ + + + ### 1\. Submitting identification documents and financial information + + The property manager will ask for documents to verify the information provided in your application. Gathering this information before you are contacted by the property manager will help you prepare for selection as a tenant in an apartment. + + The documents that a property manager may require are summarized below into two different categories: A) identification documents and B) financial information. The set of documents requested may vary, depending upon the property’s requirements for placement. + + #### A\. Identification Documents + + The documents listed below are not necessarily required, but they may help the property manager review your application. + + * Photo identification for everyone in your household who is 18 or older + * Birth Certificate, or Social Security Card, or passport for everyone under 18. + + #### B\. Financial Information + + * Income: You will be asked to provide all sources of income for each member of your household over 18 years of age. Examples include: + * Welfare, Veteran benefits, social security letter + * Rental assistance voucher + * Recent paystubs from your current employer + * Self-Employment proof + * Alimony + * Current pension or retirement income + + + * Expenses: + * Checking account statements + * Savings account statements + * Most recent credit card statement + * Alimony payments + + + * Other Financial Information: + * The last official statement of 401k or IRA + * Assets – i.e., vehicles, stocks or real estate + + The property manager will review your credit as part of reviewing your financial information. There are many resources available online to help you understand and improve your credit score. One article is [How to Improve Your Credit Score: Tips & Tricks (debt.org)](https://www.debt.org/credit/improving-your-score/). + + As stated, **you do _not_ need to possess these documents to submit your initial application** via the San Mateo County Housing Portal. However, gathering these documents will help you prepare you for the next step in the application process. If you do not possess these documents, you can get assistance from a housing counselor, who can help you obtain them. Contact the housing agency in your area to find out how to obtain housing counseling. + + ### 2\. Meeting with the Property Manager + + The placement interview is the last step in the application process. Depending on the property, the property manager may request a meeting with you before or after you have gathered the requested documents. The property manager may request that all of your household members attend the meeting. The property manager will review your documents with you and determine whether or not you are qualified to live in the apartment. + + + +
+ + + +1. ## Busque apartamentos que estén aceptando solicitudes (listados). + +

Busque oportunidades de viviendas asequibles de alta calidad, que estén ubicadas a lo largo del Área de la Bahía.

+ + La manera más sencilla de buscar oportunidades que estén aceptando solicitudes es visitar el portal de viviendas asequibles en la zona en la que le gustaría vivir. + + + + Otra manera de encontrar viviendas asequibles es buscar en los sitios de listas que ofrece la jurisdicción en las que se ubican. Las listas se pueden encontrar en la página [Oportunidades de viviendas adicionales](/es/additional-resources) del portal Doorway. +
+ En estas listas se brindan los nombres, las ubicaciones y la información de contacto de las propiedades de viviendas asequibles. Sin embargo, los gerentes de estos apartamentos con frecuencia no pueden aceptar solicitudes porque ya tienen una gran cantidad que deben procesar antes de poder aceptar las nuevas. Debe identificar las propiedades que se ajustan a sus necesidades y ponerse en contacto con las propiedades asociadas para informarse si aceptan solicitudes. + +
+ +2. ## Compruebe su elegibilidad + +

Determine si su familia cumple con los requisitos para la propiedad.

+ + Las viviendas asequibles se reservan para las personas con ingresos limitados u otras circunstancias especiales. Los solicitantes deberán evaluar su capacidad para cumplir con los requisitos de población e ingresos en la propiedad para la que elijan solicitar. + + + + ### Requisitos de población + + Las viviendas asequibles están disponibles para personas con ingresos limitados. Sin embargo, un pequeño porcentaje también se destina a poblaciones específicas. Algunos ejemplos son los siguientes: + + * Personas Mayores: Adultos mayores: Pueden incluir apartamentos designados como viviendas para «adultos mayores» para personas de una edad determinada. + * Personas con discapacidades de desarrollo: Personas con discapacidades del desarrollo: Todas las unidades en una propiedad, o algunas de ellas, deben ser designadas a personas con discapacidades. + * Jóvenes en edad de transición (TAY): Los jóvenes en edad de transición son los individuos de entre 16 y 24 años de edad que se encuentran en transición desde entornos de custodia estatal o cuidado tutelar, y están en situación de riesgo. + * Necesidades especiales: Necesidades especiales es una definición que abarca varias poblaciones. Esto incluye a las familias sin hogar o que corren el riesgo de no tenerlo, así como a las personas con discapacidades del desarrollo. Los hogares de estas comunidades particulares suelen incluir servicios o características que son de ayuda para la población con necesidades especiales. + + Asegúrese de leer los requisitos de población en el +sitio web de la propiedad antes de ponerse en contacto con el gerente de la propiedad. + + ### Requisitos de ingresos + + El ingreso familiar total no puede exceder los límites máximos de ingreso familiar para la propiedad. + + * Familia: Una «familia» puede estar conformada por una, dos o más personas. Todos los miembros de la familia que vivan en la casa deben incluirse en la solicitud. + * «Ingreso familiar»: Esto significa la suma de los ingresos anuales de todas las personas mayores de 18 años que forman parte de la familia. + * Ingreso familiar máximo: Se le pedirá indicar el ingreso máximo «bruto» (también conocido como ingreso familiar bruto). Esto se refiere a los ingresos totales antes del pago de impuestos u otras deducciones. + * Algunos hogares asequibles también poseen requisitos de ingresos mínimos. + + #### Preferencias + + Algunas ciudades han adoptado «preferencias» que les brindan a los solicitantes que cumplen con esos criterios, una mayor posibilidad de ser seleccionados. Un ejemplo común es la preferencia por los solicitantes que viven o trabajan en la zona donde se ubica la vivienda asequible. Asegúrese de presentar toda la información requerida en la solicitud, ya que puede permitirle beneficiarse de las preferencias disponibles. + + Si necesita ayuda para presentar la solicitud, consulte la página [Recursos](/es/additional-resources). + + + +3. ## Envíe la solicitud en Internet. + +

Se le pedirá que complete una solicitud breve para una unidad en esa propiedad.

+ + Asegúrese de completar su solicitud antes de la fecha indicada en la propiedad. Las propiedades enumeradas en el portal de Internet requieren un mínimo de información que debe presentarse en una solicitud digital o en papel «breve». + + + + Después de presentar su solicitud, es posible que el gerente de la propiedad se ponga en contacto con usted. Si se pone en contacto con usted, le pedirá que presente documentación sobre sus ingresos y finanzas. Si no se lo selecciona de inmediato para asistir a una entrevista de asignación, no significa que no sea elegible para vivir en la propiedad. Un gerente de la propiedad puede conservar su solicitud durante varios años antes de ponerse en contacto con usted. Manténgase en contacto con el gerente de la propiedad y compruebe de manera periódica el estado de la solicitud. +
+ Debido a la gran demanda de viviendas asequibles, es posible que pase un tiempo antes de que se pongan en contacto con usted para una posible asignación en un apartamento específico. Por lo tanto, es importante que solicite una vivienda en varias propiedades que se ajusten a sus necesidades de alojamiento y que lleve un registro de las propiedades que solicitó. También es importante completar el paso 5 (prepararse para la asignación) incluso si el gerente de la propiedad no se pone en contacto con usted de inmediato para la asignación de un apartamento. Ordenar sus finanzas, incluida la revisión del presupuesto familiar, el cuidado de su crédito y la recopilación de los documentos requeridos, lo preparará para cuando un gerente de la propiedad lo contacte. + +
+ +4. ## Obtenga los resultados. + +

El gerente de la propiedad se pondrá en contacto con usted para darle más instrucciones.

+ + El tiempo entre la presentación de su solicitud y el contacto con el gerente de la propiedad depende de la cantidad de vacantes en la propiedad. Puede variar desde un par de semanas hasta meses y, en algunos casos, puede durar hasta varios años. Algunas personas no serán seleccionadas para el siguiente paso del proceso porque no cumplen con los requisitos para vivir en el apartamento debido a sus ingresos o a otros motivos. + + + + Existen dos métodos que los gerentes de la propiedad utilizan para determinar el orden en que se seleccionan a los solicitantes para avanzar en el proceso de solicitud. Un método consiste en organizar las solicitudes de acuerdo a la fecha y hora en que se recibieron («por orden de llegada»). El segundo método consiste en aleatorizar las solicitudes en un ordenador para establecer un orden para todas las solicitudes. La distribución aleatoria de las solicitudes solo se realiza después de la fecha de vencimiento de la solicitud. +
+ Si recibe una carta o un correo electrónico del gerente de la propiedad notificándole que está avanzando en el proceso de solicitud, significa que está un paso más cerca de que se lo seleccione para un apartamento. Debe guardar un registro de toda la documentación que reciba de los gerentes de la propiedad. + +
+ +5. ## Prepárese para la asignación. + +

Si se le notifica que avanza en el proceso de solicitud, hay dos pasos más a continuación: 1) presentar los documentos de identificación y la información financiera al gerente de la propiedad; y 2) reunirse con el gerente de la propiedad.

+ + + + ### 1\. Presentar los documentos de identificación y la información financiera + + El gerente de la propiedad le pedirá documentos para verificar la información presentada en su solicitud. Reunir esta información antes de que el gerente de la propiedad se ponga en contacto con usted le ayudará a prepararse para que se lo seleccione como inquilino en un apartamento. + + Los documentos que un gerente de la propiedad puede requerir se resumen a continuación en dos categorías diferentes: A) documentos de identificación e B) información financiera. El conjunto de documentos solicitados puede variar según los requisitos de la propiedad para la asignación. + + #### A\. Documentos de identificación + + Los documentos que se indican a continuación no son obligatorios, pero pueden ayudarle al gerente de la propiedad a revisar su solicitud. + + * Identificación con fotografía de todas las personas de su familia con 18 años o más, certificado de nacimiento, tarjeta de Seguro Social o pasaporte de todos los menores de 18 años + + #### B\. Información financiera + + * Ingresos: se le pedirá que indique todas las fuentes de ingresos de cada miembro de su familia que sea mayor de 18 años. Algunos ejemplos son los siguientes: + * asistencia social, beneficios para veteranos, carta del Seguro Social + * cupón de asistencia para el alquiler + * recibos de pago recientes de su empleador actual + * prueba de empleo por cuenta propia + * pensión alimenticia + * pensión actual o ingresos de jubilación + + * Gastos: + * estado de la cuenta corriente + * estado de la cuenta de ahorro + * estado de cuenta de la tarjeta de crédito más reciente + * pagos de la pensión alimenticia + + * Otra información financiera: + * el último estado de cuenta oficial de los activos del plan 401k o de la cuenta de jubilación individual (IRA), es decir, vehículos, acciones o inmuebles + + El gerente de la propiedad revisará su crédito como parte de la revisión de su información financiera. Existen muchos recursos disponibles en Internet para entender y mejorar la puntuación de su crédito. Uno de estos artículos es [Cómo mejorar la puntuación de su crédito: consejos y trucos (debt.org)](https://www.debt.org/credit/improving-your-score/). + + Como se ha mencionado, no es necesario que posea estos documentos para presentar su solicitud inicial a través del Portal de Viviendas del Condado de San Mateo. Sin embargo, recopilar estos documentos le ayudará a prepararse para el siguiente paso del proceso de solicitud. Si no posee estos documentos, puede solicitar la ayuda de un asesor especializado en viviendas para obtenerlos. Póngase en contacto con la agencia inmobiliaria de su zona para saber cómo conseguir asesoramiento al respecto. + + ### 2\. Reunirse con el gerente de la propiedad + + La entrevista de asignación es el último paso del proceso de solicitud. Dependiendo de la propiedad, el gerente de la propiedad puede solicitar una reunión con usted antes o después de que haya reunido los documentos solicitados. El gerente de la propiedad puede solicitar que todos los miembros de la familia asistan a la reunión. El gerente de la propiedad revisará los documentos con usted y determinará si está reúne los requisitos o no para vivir en el apartamento. + + + +
+ + + +1. ## 尋找接受申請的公寓(刊登物件) + +

尋找整個灣區的高品質社會住宅機會。

+ + 想要尋找接受申請的社會住宅機會,最簡單的方法就是造訪您想居住的地區的社會住宅入口網站。 + + + + 另一個尋找社會住宅的方法,是搜尋物業所在轄區所提供的社會住宅據點清單。您可以在 Doorway (好門道) 入口網站的「[其他住宅機會](/zh/additional-resources)」頁面找到清單。 +
+ 這些清單提供社會住宅物業的名稱、地點和聯絡資訊。很遺憾,這些公寓的物業管理人通常無法接受申請,因為他們已經有許多必須處理的申請案,要等處理完畢才能接受新申請。您應該可以找到符合需求的物業,並聯絡相關物業,以便找出這些物業是否接受申請。 + +
+ +2. ## 檢查申請資格 + +

判斷您的家戶是否符合物業的規定。

+ + 社會住宅專門保留給收入有限及/或其他特殊情況的人。申請人需要評估自己的能,力是否符合他們選擇申請的物業的人口及收入規定。 + + + + ### 人口規定 + + 社會住宅的屬性是提供給收入有限的人。但是,有一小部分也會專門保留給特定人口族群。範例包括: + + * 長者:這些可能包括分配租給超過特定年齡的「樂齡」住宅。 + * 發展障礙人士:物業中的所有單位,或物業中某個百分比的單位,可能會分配給障礙人士。 + * 過渡期青年 (TAY):過渡期青年的定義是介於 16 至 24 歲之間的個人,要從州政府監護或寄養環境過渡至自力更生,而且有生存風險。 + * 特殊需求:特殊需求的定義涵蓋多種人口族群。這包括之前無家可歸的家戶,或者面臨無家可歸風險的家戶,以及有發展障礙的個人。這些特定團體的住家,通常包括支援特殊需求人口族群的服務或功能。 + + 務必前往物業網站,閱讀相關人口族群規定,再聯絡物業管理人。 + + ### 收入規定 + + 您的總家戶收入不得超過該物業的最高家戶收入上限。 + + * 家戶:「家戶」可以是一個人,或兩人以上。即將住在同一家中的所有家戶成員,都必須包含在申請中。 + * 「家戶收入」:這代表家戶成員中超過 18 歲的所有人士的加總年收入。 + * 最高家戶收入:系統會請您提供「總」最高收入(又稱為總家戶收入)。這代表稅前或其他扣除額前的總收入。 + * 某些社會住宅也有最高收入規定。 + + #### 優先權 + + 某些城市採用「優先權」,提供符合優先權條件的申請人,有更高的機會中選。常見例子是在社會住宅物業所在地居住或就業的申請人,擁有優先權。務必提供申請書上要求的所有資訊,因為您可能符合任何可用的優先權資格。若您需要協助申請,請前往「[資源](/zh/additional-resources)」頁面。 + + + +3. ## 線上申請 + +

系統會請您填寫該物業某單位的簡短申請書。

+ + 務必在該物業指定的日期前填妥申請。入口網站上刊登的物業,要求申請人在「短格式」數位或紙本申請書上,提供最低數量的資訊。 + + + + 在您送出申請後,會有物業管理人聯絡您。若有人聯絡您,物業管理人會請您提供收入及財務文件。若您在入住訪談後沒有立即獲選,這不代表您不符合入住物業的資格。物業管理人可能會保留您的申請數年然後再度聯絡您。定期查看您的申請狀態,與物業管理人保持聯絡。 +
+ 因為社會住宅的需求量很高,您可能要等一段時間,才會有人與您聯絡,跟您洽談入住特定出租公寓的可能安排。因此,務必申請符合您居住需求的多個物業單位,並持續追蹤您申請的物業狀態。務必完成準備步驟 5(做好住宿安排的準備),即使物業管理人沒有立即與您聯絡安排入住公寓。整理好自己的財務資訊,包括檢視您的家戶預算、照顧好您的信用,並備妥所需文件,這樣物業管理人聯絡您時,您已作好萬全準備。 + +
+ +4. ## 取得結果 + +

會有物業管理人聯絡您,提供進一步的指示。

+ + 在您送出申請後,物業管理人多久後才聯絡您,要視物業的空屋數量而定。可能從兩週到數個月不等,某些情況下可能要等好幾年。有些人沒被選上進入流程的下個階段,是因為他們不符合住在出租公寓中的資格,可能是因為他們的收入或其他原因。 + + + + 物業管理人會使用兩種方法,來決定申請人被選上的順序,以便進入下一個申請流程。其中一個方法是依收到申請的日期和時間來整理申請(「先到先租」)。第二個方法是在電腦上將申請人隨機化後,產生所有申請人的順序。物業管理人只會在申請期限後,才會將申請人隨機化。 +
+ 若您收到物業管理人的信件或電子郵件,通知您獲選進入下一個申請流程,代表您距離獲選入住出租公寓,又更近一步了。您應該保留從物業管理人那邊收到的任何文件記錄。 + +
+ +5. ## 做好住宿安排的準備 + +

若您收到通知表示您已進入申請流程的下個階段,接下來會有兩個步驟:1) 將身分證明文件及財務資訊送出給物業管理人;以及 2) 與物業管理人會面。

+ + + + ### 1\. 將身分證明文件及財務資訊送出給物業管理人 + + 物業管理人會要求文件,驗證您在申請書中提供的資訊正確無誤。在物業管理人聯絡您之前,就備妥這些資訊,可以協助您做好準備,獲選成為出租公寓的房客。 + + 我們將物業管理人可能要求的文件,分成兩個類別簡述於下方:A) 身分證明文件及 B) 財務資訊。物業管理人要求的文件組合可能有所不同,要根據物業的入住規定而定。 + + #### A\. 身分證明文件 + + 下列文件不一定需要,但可以協助物業管理人審查您的申請。 + + * 家戶中 18 歲以上的每個人都要提供相片身分證明 + * 18 歲以下的人要提供出生證明,或社會福利卡,或護照。 + + #### B\. 財務資訊 + + * 收入:物業管理人會要求您提供您的家戶中超過 18 歲的成員的所有收入來源。範例包括: + * 福利、退休金、社會福利信函 + * 租屋協助券 + * 目前雇主的最新薪資單 + * 自雇證明 + * 贍養費 + * 目前退休金或退休收入 + + * 支出: + * 支票帳戶明細 + * 儲蓄帳戶明細 + * 最近的信用卡明細 + * 贍養費付款 + + * 其他財務資訊: + * 401k 或 IRA 的最新官方明細 + * 資產 – 亦即車輛、股票或不動產 + + 物業管理人會審查您的信用,這是審查您的財務資訊的一環。線上有許多資源可以協助您了解並改善您的信用分數。其中一篇文章為 [How to Improve Your Credit Score: Tips & Tricks (debt.org)](https://www.debt.org/credit/improving-your-score/)。 + + 如本文所述,您不需要持有這些文件,就能透過 San Mateo County Housing Portal (聖馬刁郡居住入口網站) 送出您的初始申請。不過,備妥這些文件可以協助您做好準備,方便進入申請流程的下個步驟。若您沒有這些文件,可以向居住顧問取得協助,他們會幫助您取得這些文件。請聯絡您當地的居住機關,了解如何取得居住諮詢。 + + ### 2\. 與物業管理人會面 + + 入住面談是申請流程的最後步驟。根據物業而定,物業管理人可能會在您備妥要求的文件之前或之後,安排與您會面。物業管理人可能會要求所有家戶成員參與會面。物業管理人會與您一起審查您的文件,並決定您是否符合入住出租公寓的資格。 + + + +
+ + + +1. ## Tìm Căn Hộ Chấp Nhận Đơn Đăng Kí (Danh sách) + +

Tìm các cơ hội thuê nhà ở bình dân chất lượng cao ở khắp Khu vực Vịnh.

+ + Cách đơn giản nhất để tìm được các cơ hội đang nhận đơn đăng kí là truy cập cổng thông tin nhà ở bình dân trong khu vực quý vị muốn sinh sống. + + + + Một cách khác để tìm Nhà Ở Bình Dân là tìm kiếm danh sách các khu nhà ở giá rẻ được cơ quan có thẩm quyền nơi khu nhà tọa lạc cung cấp. Quý vị có thể tìm thấy danh sách trên trang [Cơ Hội Nhà Ở Bổ Sung](/vi/additional-resources) của cổng thông tin Doorway. +
+ Những danh sách này cung cấp tên, vị trí và thông tin liên hệ của các khu Nhà Ở Bình Dân. Một điều không may là các đơn vị quản lý khu nhà của những căn hộ này thường không thể nhận đơn đăng ký vì họ cần phải xử lý rất nhiều đơn đăng ký trước khi họ có thể nhận đơn đăng ký mới. Quý vị nên xác định các khu nhà đáp ứng nhu cầu của mình và liên hệ các khu nhà liên quan để tìm hiểu xem các khu nhà đó có đang nhận đơn đăng ký hay không. + +
+ +2. ## Kiểm Tra Khả Năng Đáp Ứng Đủ Điều Kiện + +

Xác định xem hộ gia đình của quý vị có đáp ứng các yêu cầu đối với khu nhà hay không.

+ + Nhà ở bình dân được dành riêng cho những người có thu nhập hạn chế và/hoặc những người có hoàn cảnh đặc biệt khác. Người nộp đơn sẽ cần phải đánh giá khả năng đáp ứng các yêu cầu về nhân khẩu và thu nhập tại khu nhà mà họ chọn nộp đơn đăng kí. + + + + ### Yêu Cầu Dành Cho Cư Dân + + Các khu nhà ở bình dân được dành cho những người có thu nhập hạn chế. Tuy nhiên, một tỉ lệ phần trăm nhỏ cũng có thể được phân bổ cho các nhóm dân cư nhất định. Ví dụ bao gồm: + + * Người cao tuổi: Có thể có những căn hộ được chỉ định là nhà ở cho “người cao tuổi” dành cho các cá nhân trên một độ tuổi cụ thể. + * Người bị khuyết tật chậm phát triển: Tất cả các căn hộ trong một khu nhà hoặc một tỉ lệ phần trăm các căn hộ trong một khu nhà có thể được chỉ định cho người khuyết tật. + * Người trong giai đoạn đến tuổi trưởng thành (TAY): Người trong giai đoạn đến tuổi trưởng thành được định nghĩa là những người trong độ tuổi từ 16 đến 24 tuổi đang chuyển tiếp từ môi trường được nhà nước giám hộ hoặc chăm sóc nuôi dưỡng và có nguy cơ gặp rủi ro. + * Nhu Cầu Đặc Biệt: Nhu cầu đặc biệt là định nghĩa bao gồm các nhóm cư dân khác nhau. Định nghĩa này bao gồm các hộ gia đình vô gia cư, hoặc có nguy cơ vô gia cư cũng như những người bị khuyết tật chậm phát triển. Nhà trong các cộng đồng cụ thể này thường có các dịch vụ hoặc tính năng để hỗ trợ các cư dân có Nhu Cầu Đặc Biệt. + + Hãy đảm bảo quý vị đã đọc kỹ các yêu cầu đối với cư dân bằng cách truy cập trang web của khu nhà trước khi liên hệ đơn vị quản lý khu nhà. + + ### Yêu Cầu Về Thu Nhập + + Tổng thu nhập hộ gia đình của quý vị không được vượt quá giới hạn thu nhập tối đa của hộ gia đình dành cho khu nhà. + + * Hộ Gia Đình: Một “hộ gia đình” có thể chỉ gồm một người hoặc hai hoặc nhiều người. Đơn đăng kí phải bao gồm tất cả các thành viên của gia đình sẽ sống trong ngôi nhà. + * “Thu nhập của hộ gia đình”: Cụm từ này có nghĩa là tổng thu nhập hàng năm của tất cả thành viên trong hộ gia đình trên 18 tuổi. + * Thu nhập tối đa của hộ gia đình: Quý vị sẽ được yêu cầu cung cấp “Tổng” Thu Nhập Tối Đa (còn được gọi là Tổng Thu Nhập Của Hộ Gia Đình). Thu nhập này đề cập đến tổng thu nhập trước thuế hoặc các khoản khấu trừ khác. + * Một số nhà ở bình dân cũng có yêu cầu về thu nhập tối thiểu. + + #### Quyền ưu tiên + + Một số thành phố đã áp dụng “quyền ưu tiên” để những người nộp đơn đáp ứng các tiêu chí ưu tiên sẽ có cơ hội được chọn cao hơn. Một ví dụ phổ biến là ưu tiên cho những người nộp đơn sống hoặc làm việc trong khu vực có tòa nhà giá bình dân. Hãy đảm bảo cung cấp tất cả thông tin được yêu cầu trong đơn đăng kí vì việc đó có thể giúp quý vị đủ điều kiện được hưởng bất kì quyền ưu tiên nào hiện có. + + Nếu quý vị cần hỗ trợ đăng kí, vui lòng đến trang [Tài Nguyên](/vi/additional-resources). + + + +3. ## Đăng Kí Trực Tuyến + +

Quý vị sẽ được yêu cầu hoàn thành một đơn đăng kí ngắn cho một căn hộ tại khu nhà đó.

+ + Hãy đảm bảo hoàn thành đơn đăng kí của quý vị trước ngày được chỉ định trong phần niêm yết của khu nhà đó. Các khu nhà được niêm yết trên cổng thông tin của trang web yêu cầu phải nộp đơn đăng kí bản giấy hoặc bản kĩ thuật số “ngắn gọn” với lượng thông tin tối thiểu. + + + + Đơn vị quản lý khu nhà có thể liên hệ với quý vị sau khi quý vị nộp đơn đăng kí. Nếu được liên hệ, quý vị sẽ được yêu cầu cung cấp tài liệu về thu nhập và tình hình tài chính của mình. Kể cả khi quý vị không được chọn tham gia cuộc phỏng vấn đánh giá năng lực ngay thì điều đó cũng không có nghĩa là quý vị không đủ điều kiện để sống tại khu nhà. Đơn vị quản lí khu nhà có thể lưu giữ đơn đăng ký của quý vị trong vài năm trước khi liên hệ với quý vị. Hãy giữ liên lạc với đơn vị quản lý khu nhà bằng cách kiểm tra định kì tình trạng đơn đăng ký của quý vị. +
+ Do nhu cầu thuê nhà ở bình dân luôn ở mức cao, quý vị có thể phải chờ một thời gian khá lâu trước khi được liên hệ với tiềm năng tham gia đánh giá năng lực để thuê một căn hộ cụ thể. Do đó, quan trọng là quý vị phải nộp đơn đăng kí nhà ở tại nhiều khu nhà đáp ứng nhu cầu về nhà ở của quý vị và theo dõi tình hình của các khu nhà mà quý vị đã đăng kí. Ngoài ra, quý vị cần hoàn thành Bước 5 (Chuẩn Bị Cho Bước Đánh Giá Năng Lực) kể cả khi quý vị không được đơn vị quản lí khu nhà liên hệ ngay để tiến hành đánh giá năng lực thuê căn hộ. Chuẩn bị ổn thỏa nguồn tài chính của quý vị, bao gồm xem xét ngân sách gia đình, chăm chút cho điểm tín dụng của quý vị và thu thập các giấy tờ cần thiết, sẽ giúp quý vị chuẩn bị khi được đơn vị quản lí khu nhà liên hệ. + +
+ +4. ## Nhận Kết Quả + +

Đơn vị quản lí khu nhà sẽ liên hệ với quý vị để hướng dẫn thêm cho quý vị.

+ + Thời gian từ khi quý vị nộp đơn đăng kí đến khi được đơn vị quản lí khu nhà liên hệ phụ thuộc vào số lượng căn hộ còn trống trong khu nhà. Thời gian này có thể thay đổi từ vài tuần đến vài tháng và trong một số trường hợp có thể mất đến vài năm. Vì lí do thu nhập hoặc các lí do khác mà một số người sẽ không được chọn cho bước tiếp theo trong quy trình vì họ không đủ điều kiện sống trong căn hộ. + + + + Đơn vị quản lí khu nhà sử dụng hai phương pháp khác nhau để xác định thứ tự chọn người nộp đơn để tiếp tục bước tiếp theo trong quá trình nộp đơn. Phương pháp đầu tiên là sắp xếp các đơn đăng kí theo ngày và thời gian nhận được đơn đăng kí (“người đến trước được phục vụ trước”). Phương pháp thứ hai là lấy ngẫu nhiên các đơn đăng kí trên máy tính để tạo thứ tự cho tất cả các đơn đăng kí này. Việc lấy ngẫu nhiên đơn đăng kí chỉ diễn ra sau ngày hết hạn nộp đơn. +
+ Nếu quý vị được đơn vị quản lí khu nhà gửi thư hoặc email thông báo về việc tiếp tục tiến hành thủ tục đăng kí, điều đó có nghĩa là quý vị đã tiến gần hơn một bước để được chọn cho thuê căn hộ. Quý vị nên lưu lại tất cả các tài liệu mà quý vị nhận được từ đơn vị quản lí khu nhà. + +
+ +5. ## Chuẩn Bị Cho Bước Đánh Giá Năng Lực + +

Nếu quý vị nhận thông báo tiếp tục tiến hành quy trình đăng kí, quý vị sẽ thực hiện hai bước tiếp theo: 1) nộp giấy tờ tùy thân và thông tin tài chính cho đơn vị quản lí khu nhà; và 2) gặp đơn vị quản lí khu nhà.

+ + + + ### 1\. Nộp giấy tờ tùy thân và thông tin tài chính + + Đơn vị quản lí khu nhà sẽ yêu cầu quý vị cung cấp các tài liệu để xác minh thông tin trong đơn đăng kí của quý vị. Việc thu thập sẵn các thông tin này trước khi đơn vị quản lí khu nhà liên hệ sẽ giúp quý vị chuẩn bị sẵn sàng để được chọn làm người thuê căn hộ. + + Các tài liệu mà đơn vị quản lí khu nhà có thể yêu cầu được tóm tắt và chia thành hai danh mục khác nhau như dưới đây: A) giấy tờ tùy thân và B) thông tin tài chính. Bộ tài liệu được yêu cầu có thể khác nhau, tùy thuộc vào yêu cầu đánh giá năng lực của khu nhà. + + #### A\. Giấy Tờ Tùy Thân + + Không bắt buộc cung cấp các tài liệu được liệt kê dưới đây nhưng các tài liệu này có thể giúp đơn vị quản lí khu nhà cân nhắc đơn đăng kí của quý vị. + + * Giấy tờ tùy thân có ảnh của tất cả thành viên từ 18 tuổi trở lên trong gia đình quý vị + * Giấy khai sinh hoặc Thẻ An Sinh Xã Hội hoặc hộ chiếu của tất cả thành viên dưới 18 tuổi. + + #### B\. Thông Tin Tài Chính + + Thu nhập: Quý vị sẽ được yêu cầu cung cấp thông tin về tất cả các nguồn thu nhập của mỗi thành viên trên 18 tuổi trong gia đình. Ví dụ bao gồm: + * Phúc lợi, phúc lợi cựu chiến binh, thư xác nhận chế độ an sinh xã hội + * Phiếu hỗ trợ tiền thuê + * Bảng lương gần đây từ chủ sử dụng lao động hiện tại của quý vị + * Chứng từ tự kinh doanh + * Tiền cấp dưỡng + * Lương hưu hoặc thu nhập hưu trí hiện tại + + * Chi phí: + * Sao kê tài khoản séc + * Sao kê tài khoản tiết kiệm + * Sao kê thẻ tín dụng gần đây nhất + * Thanh toán tiền cấp dưỡng + + * Các Thông Tin Tài Chính Khác: + * Sao kê chính thức gần nhất của thỏa thuận 401k hoặc IRA + * Tài sản – tức là xe cộ, cổ phiếu hoặc bất động sản + + Đơn vị quản lí khu nhà sẽ đánh giá tín dụng của quý vị như một phần trong quá trình xem xét thông tin tài chính. Hiện có rất nhiều tài nguyên trực tuyến có thể giúp quý vị hiểu và cải thiện điểm tín dụng của mình. Một trong số đó là bài viết [Cách Cải Thiện Điểm Tín Dụng: Mẹo & Thủ thuật (debt.org)](https://www.debt.org/credit/improving-your-score/). + + Như đã đề cập, quý vị không cần phải có những tài liệu này để nộp đơn đăng kí ban đầu của mình qua Cổng thông tin Nhà ở Quận San Mateo. Tuy nhiên, việc thu thập những tài liệu này sẽ giúp quý vị chuẩn bị cho bước tiếp theo trong quá trình nộp đơn đăng kí. Nếu không có các tài liệu này, quý vị có thể nhờ nhân viên tư vấn nhà ở hỗ trợ quý vị xin các giấy tờ này. Hãy liên hệ với cơ quan phụ trách nhà ở trong khu vực của quý vị để tìm hiểu cách nhận tư vấn về nhà ở. + + ### 2\. Gặp Đơn Vị Quản Lí Khu Nhà + + Phỏng vấn đánh giá năng lực là bước cuối cùng trong quy trình nộp đơn đăng kí. Tùy thuộc vào từng khu nhà, đơn vị quản lí khu nhà có thể yêu cầu gặp quý vị trước hoặc sau khi quý vị đã thu thập các giấy tờ được yêu cầu. Đơn vị quản lí khu nhà có thể yêu cầu tất cả các thành viên trong gia đình quý vị tham gia cuộc gặp này. Đơn vị quản lí khu nhà sẽ cùng quý vị xem xét các giấy tờ của quý vị và quyết định liệu quý vị có đủ tiêu chuẩn để sống trong căn hộ hay không. + + + +
diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/jurisdiction-footer-section.tsx b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/jurisdiction-footer-section.tsx new file mode 100644 index 0000000000..1b442529fc --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/jurisdiction-footer-section.tsx @@ -0,0 +1,66 @@ +import React from "react" +import { FooterNav, FooterSection, SiteFooter, t } from "@bloom-housing/ui-components" +import { ExygyFooter } from "@bloom-housing/shared-helpers" +import Link from "next/link" + +export const JurisdictionFooterSection = () => { + return ( + + +

+ {t("footer.header")} +
+ + {t("footer.headerLink")} + +

+

{t("footer.forListingQuestions")}

+

{t("footer.forGeneralInquiries")}

+

+ {t("footer.forAdditionalOpportunities")} +
+ + {t("footer.DoorwayHousingPortal")} + + | + + {t("footer.SFHousingPortal")} + + | + + {t("footer.ALAHousingPortal")} + + | + + {t("footer.SJHousingPortal")} + +

+
+ + Equal Housing Opportunity Logo + + + + {t("footer.giveFeedback")} + + {t("footer.contact")} + + {t("footer.disclaimer")} + + {t("footer.privacyPolicy")} + + + + +
+ ) +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/jurisdiction-site-notice.tsx b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/jurisdiction-site-notice.tsx new file mode 100644 index 0000000000..a963d32457 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/jurisdiction-site-notice.tsx @@ -0,0 +1,13 @@ +import React from "react" +import { t } from "@bloom-housing/ui-components" + +export const JursidictionSiteNotice = () => { + return ( + <> + {t("nav.getFeedback")} + + {t("nav.yourFeedback")} + + + ) +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/es.json b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/es.json new file mode 100644 index 0000000000..4f2f4cb0e1 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/es.json @@ -0,0 +1,69 @@ +{ + "application.contact.doYouWorkIn": "¿Ellos trabajan en el condado de San Mateo?", + "application.household.member.workInRegion": "¿Ellos trabajan en el condado de San Mateo?", + "additionalResources.otherResources": "Otros Recursos", + "additionalResources.otherResourcesDescription": "Recursos para inquilinos, servicios de salud y en casos de crisis, asistencia legal y apoyo para pagos de alquiler.", + "additionalResources.rentals": "Alquileres", + "additionalResources.rentalsDescription": "Listas desarrolladas cada mes por agencias comunitarias sin fines de lucro.", + "additionalResources.sharedHousing": "Viviendas Compartidas", + "additionalResources.sharedHousingDescription": "Las viviendas compartidas conforman un acuerdo habitacional entre dos o más personas no relacionadas entre sí.", + "application.review.confirmation.whatHappensNext.fcfs": "### ¿Qué sucede a continuación?\n\n* A los solicitantes elegibles se los contactará por orden de llegada hasta que las vacantes se llenen.\n\n* Las preferencias de vivienda, si corresponden, influirán por orden de llegada.\n\n* Si se lo contacta para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione los documentos de respaldo requeridos.", + "application.review.confirmation.whatHappensNext.lottery": "### ¿Qué sucede a continuación?\n\n* Una vez que cierre el período de solicitud, se colocará a los solicitantes elegibles en orden según su orden de clasificación de la lotería.\n\n* Las preferencias de vivienda, si corresponden, influirán en el orden de clasificación de la lotería.\n\n* Si se lo contacta para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione los documentos de respaldo requeridos.", + "application.review.confirmation.whatHappensNext.waitlist": "### ¿Qué sucede a continuación?\n\n* A los solicitantes elegibles se los colocará en la lista de espera por orden de llegada hasta que los sitios de la lista de espera se llenen.\n\n* Las preferencias de vivienda, si corresponden, influirán en el orden de la lista de espera.\n\n* Si se lo contacta para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione los documentos de respaldo requeridos.\n\n* Puede que se contacten con usted mientras se encuentre en la lista de espera para confirmar que desea permanecer en la lista de espera.", + "application.review.terms.textSubmissionDate": "Esta solicitud debe enviarse antes del %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* Los solicitantes están solicitando apartamentos actualmente vacantes por orden de llegada.\n\n* A los solicitantes elegibles se los contactará por orden de llegada hasta que las vacantes se llenen.\n\n* Si se lo contacta para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione los documentos de respaldo requeridos.\n\n* Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.\n\n* Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta.\n\n* En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.\n\nPara obtener más información, contáctese con el promotor de viviendas o con el gerente de propiedades publicado en el listado.\n\nCompletar esta aplicación no le da derecho a una vivienda ni indica que es elegible para una vivienda. A todos los solicitantes se los evaluará según se describe en los Criterios de selección de residentes de propiedades.\n\nNo puede cambiar su solicitud en línea luego de haberla enviado.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.review.terms.lottery.text": "* Los solicitantes están solicitando ingresar en una lotería para apartamentos actualmente vacantes.\n\n* Una vez que cierre el período de solicitud, se colocará a los solicitantes elegibles en el orden de clasificación de la lotería.\n\n* Si se lo contacta para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione los documentos de respaldo requeridos.\n\n* Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.\n\n* Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta.\n\n* En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.\n\nPara obtener más información, contáctese con el promotor de viviendas o con el gerente de propiedades publicado en el listado.\n\nCompletar esta aplicación no le da derecho a una vivienda ni indica que es elegible para una vivienda. A todos los solicitantes se los evaluará según se describe en los Criterios de selección de residentes de propiedades.\n\nNo puede cambiar su solicitud en línea luego de haberla enviado.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.review.terms.waitlist.text": "* Los solicitantes están solicitando una lista de espera abierta, y no un apartamento actualmente vacante.\n\n* Cuando haya vacantes disponibles, el gerente de propiedades se contactará con los solicitantes elegibles por orden de llegada.\n\n* Si se lo contacta para una entrevista, se le pedirá que complete una solicitud más detallada y que proporcione los documentos de respaldo requeridos.\n\n* Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.\n\n* Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta.\n\n* En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.\n\n* Puede que se contacten con usted mientras se encuentre en la lista de espera para confirmar que desea permanecer en la lista de espera.\n\nPara obtener más información, contáctese con el promotor de viviendas o con el gerente de propiedades publicado en el listado.\n\nCompletar esta aplicación no le da derecho a una vivienda ni indica que es elegible para una vivienda. A todos los solicitantes se los evaluará según se describe en los Criterios de selección de residentes de propiedades.\n\nNo puede cambiar su solicitud en línea luego de haberla enviado.\n\nDeclaro que lo anterior es verdadero y exacto, y reconozco que cualquier declaración errónea realizada de manera fraudulenta o negligente en esta solicitud puede resultar en la eliminación del proceso de solicitud.", + "application.start.whatToExpect.fcfs.steps": "1. Primero, le preguntaremos sobre las personas con las que planea vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Por último, veremos si califica para alguna preferencia de vivienda asequible de la lotería, si corresponde.", + "application.start.whatToExpect.fcfs.finePrint": "* Los solicitantes están solicitando apartamentos actualmente vacantes por orden de llegada.\n* Tenga en cuenta que cada miembro del hogar solo puede figurar en una solicitud por cada listado.\n* El gerente de propiedades se contactará con los solicitantes por orden de llegada hasta que las vacantes se llenen.\n* Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.\n* Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta.\n* En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.", + "application.start.whatToExpect.lottery.steps": "1. Primero, le preguntaremos sobre las personas con las que planea vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Por último, veremos si califica para alguna preferencia de vivienda asequible de la lotería, si corresponde.", + "application.start.whatToExpect.lottery.finePrint": "* Los solicitantes están solicitando ingresar en una lotería para apartamentos actualmente vacantes.\n* Tenga en cuenta que cada miembro del hogar solo puede figurar en una solicitud por cada listado.\n* El agente de propiedades se contactará con los solicitantes en el orden de clasificación de la lotería hasta que las vacantes se llenen.\n* Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.\n* Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta.\n* En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.", + "application.start.whatToExpect.waitlist.steps": "1. Primero, le preguntaremos sobre las personas con las que planea vivir.\n2. Luego, le preguntaremos sobre sus ingresos.\n3. Por último, veremos si califica para alguna preferencia de vivienda asequible, si corresponde.", + "application.start.whatToExpect.waitlist.finePrint": "* Los solicitantes están solicitando una lista de espera abierta, y no un apartamento actualmente disponible.\n* Tenga en cuenta que cada miembro del hogar solo puede figurar en una solicitud por cada listado.\n* Cuando haya vacantes disponibles, el gerente de propiedades se contactará con los solicitantes elegibles por orden de llegada.\n* Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.\n* Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta.\n* En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.\n* Puede que se contacten con usted mientras se encuentre en la lista de espera para confirmar que desea permanecer en la lista de espera.", + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "Sitio web del HCD del condado de San Mateo", + "footer.contact": "Contacto", + "footer.copyRight": "© Condado de San Mateo", + "footer.disclaimer": "Descargo de responsabilidad", + "footer.giveFeedback": "Dar opinion", + "footer.header": "El Portal de Vivienda del Condado de San Mateo es un proyecto del", + "footer.headerLink": "Condado de San Mateo - Departamento de Vivienda (DOH)", + "footer.forAdditionalOpportunities": "Para oportunidades adicionales en el Área de la Bahía, visite:", + "footer.forGeneralInquiries": "Para consultas generales sobre el programa, puede llamar al DOH del condado de San Mateo al 650-802-5050.", + "footer.forListingQuestions": "Si tiene preguntas sobre la lista y la solicitud, comuníquese con el agente de la propiedad que se muestra en la lista.", + "footer.privacyPolicy": "Política de privacidad", + "footer.DoorwayHousingPortal": "Vivienda Portal de Doorway", + "footer.SFHousingPortal": "Portal de vivienda de San Francisco", + "footer.SJHousingPortal": "Portal de la Vivienda en San José", + "footer.ALAHousingPortal": "Portal de vivienda del condado de Alameda", + "region.name": "Portal de vivienda del condado de San Mateo", + "nav.siteTitle": "Vivienda en el Condado de San Mateo", + "nav.listings": "Explorar propiedades", + "nav.getFeedback": "Esta es una vista previa de nuestro nuevo sitio web. Recién estamos comenzando. nos encantaría conseguir ", + "nav.yourFeedback": "tu retroalimentación", + "listings.availableUnits": "Unidades disponibles", + "listings.publicLottery.header": "Lotería", + "listings.waitlist.currentSize": "Tamaño actual de la lista de espera", + "listings.waitlist.finalSize": "Tamaño final de la lista de espera", + "listings.waitlist.openSlots": "Lugares abiertos de la lista de espera", + "listings.waitlist.isOpen": "La lista de espera está abierta", + "listings.waitlist.submitForWaitlist": "Envíe una solicitud para un lugar abierto en la lista de espera", + "timeout.afterMessage": "Nos preocupamos por tu seguridad. Finalizamos tu sesión por inactividad. Inicie una nueva aplicación para continuar.", + "pageDescription.additionalResources": "Lo alentamos a buscar otros recursos de vivienda asequible.", + "pageDescription.getAssistance": "Obtenga más información sobre la búsqueda y solicitud de oportunidades de alquileres asequibles y encuentre listados de viviendas adicionales.", + "pageDescription.howItWorks": "Obtenga más información sobre cómo encontrar y solicitar alquileres económicos.", + "pageTitle.additionalResources": "Recursos y oportunidades de vivienda adicionales", + "pageTitle.getAssistance": "Obtenga ayuda", + "pageTitle.howItWorks": "¿Cómo funciona?", + "pageTitle.privacyPolicy": "Política de privacidad", + "t.units": "unidades", + "welcome.howDoesItWork": "¿Cómo funciona?", + "welcome.learnHowToApply": "Obtenga más información sobre cómo encontrar y solicitar alquileres económicos.", + "welcome.readAboutHowItWorks": "Lea acerca de cómo funciona", + "welcome.seeRentalListings": "Ver Alquileres", + "whatToExpect.waitlist": "

Los solicitantes están solicitando una lista de espera abierta, y no un apartamento actualmente vacante.

Los solicitantes elegibles se colocarán en la lista de espera. Cuando haya vacantes disponibles, el gerente de propiedades se contactará con los solicitantes por orden de llegada.

Si el gerente de propiedades lo contacta, toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.

", + "whatToExpect.waitlistReadMore": "

Las preferencias de vivienda, si corresponden, influirán en el orden de la lista de espera.

Su solicitud puede eliminarse de la lista de espera si ha realizado alguna declaración fraudulenta. En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.

Si el gerente de propiedades lo contacta, esté preparado para completar una solicitud más detallada y proporcionar los documentos de respaldo requeridos.

", + "whatToExpect.lottery": "

Los solicitantes están solicitando ingresar en una lotería para apartamentos actualmente vacantes.

Una vez que cierre el período de solicitud, se colocará a los solicitantes elegibles en orden según su clasificación de la lotería.

Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.

", + "whatToExpect.lotteryReadMore": "

Las preferencias de vivienda, si corresponden, influirán en el orden de clasificación de la lotería.

Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta. En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.

Si el gerente de propiedades lo contacta, esté preparado para completar una solicitud más detallada y proporcionar los documentos de respaldo requeridos.

", + "whatToExpect.fcfs": "

Los solicitantes están solicitando apartamentos actualmente vacantes por orden de llegada.

A los solicitantes elegibles se los contactará por orden de llegada hasta que las vacantes se llenen.

Toda la información que haya proporcionado se verificará, y su elegibilidad se confirmará.

", + "whatToExpect.fcfsReadMore": "

Las preferencias de vivienda, si corresponden, influirán por orden de llegada.

Su solicitud puede eliminarse si ha realizado alguna declaración fraudulenta. En el caso de las propiedades con preferencias de vivienda, si no podemos verificar una preferencia de vivienda que usted haya reclamado, no recibirá la preferencia, pero no se lo penalizará de ningún otro modo.

Si el gerente de propiedades lo contacta, esté preparado para completar una solicitud más detallada y proporcionar los documentos de respaldo requeridos.

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/general.json b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/general.json new file mode 100644 index 0000000000..31dff10456 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/general.json @@ -0,0 +1,94 @@ +{ + "application.contact.doYouWorkIn": "Do you work in San Mateo County?", + "application.contact.doYouWorkInDescription": "", + "application.household.member.workInRegion": "Do they work in San Mateo County?", + "application.household.member.workInRegionNote": "", + "application.preferences.dontWant": "I don't want to claim any of these preferences", + "application.preferences.liveWork.live.label": "Live in City of Hayward Preference", + "application.preferences.liveWork.live.description": "At least one member of my household lives in the City of Hayward", + "application.preferences.liveWork.live.link": "application.preferences", + "application.preferences.liveWork.work.label": "Work in City of Hayward Preference", + "application.preferences.liveWork.work.description": "At least one member of my household works or has been offered work in the City of Hayward", + "application.preferences.liveWork.work.link": "application.preferences", + "application.preferences.displacedTenant.general.label": "Displacee Tenant Housing Preference", + "application.preferences.displacedTenant.general.description": "At least one member of my household was displaced from a residential property due to redevelopment activity by the Hayward Housing Authority, the Redevelopment Agency or the City of Hayward.", + "application.preferences.displacedTenant.general.link": "application.preferences", + "application.preferences.displacedTenant.missionCorridor.label": "Mission Boulevard Corridor (SR 238) Displacee Tenant Housing Preference", + "application.preferences.displacedTenant.missionCorridor.description": "At least one member of my household is an SR 238 Program Participant as required under the terms of the SR 238 Settlement Implementation Project. Program Participants are tenants of previously sold Caltrans properties along the SR 238 Mission Boulevard Corridor and are given occupancy preference when new below-market housing is constructed in the Corridor.", + "application.preferences.displacedTenant.missionCorridor.link": "https://www.hayward-ca.gov/238/background", + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "San Mateo County HCD Website", + "footer.cityOfSouthSF": "City of South San Francisco", + "footer.cityOfSouthSFurl": "http://www.ssf.net/", + "footer.contact": "Contact", + "footer.copyRight": "© San Mateo County", + "footer.disclaimer": "Disclaimer", + "footer.getAssistance": "Get Assistance", + "footer.giveFeedback": "Give Feedback", + "footer.header": "San Mateo County Housing Portal is a project of the", + "footer.headerUrl": "https://housing.smcgov.org/", + "footer.headerLink": "San Mateo County - Department of Housing (DOH)", + "footer.forAdditionalOpportunities": "For additional Bay Area opportunities, please visit:", + "footer.forGeneralInquiries": "For general program inquiries, you may call the San Mateo County DOH at 650-802-5050.", + "footer.forListingQuestions": "For listing and application questions, please contact the Property Agent displayed on the listing.", + "footer.inPartnershipWith": "in partnership with", + "footer.privacyPolicy": "Privacy Policy", + "footer.sanMateoISD": "San Mateo County's Information Services Department", + "footer.sanMateoISDurl": "https://isd.smcgov.org/", + "footer.DoorwayHousingPortal": "Doorway Housing Portal", + "footer.SFHousingPortal": "San Francisco Housing Portal", + "footer.SFHousingUrl": "https://housing.sfgov.org", + "footer.SJHousingPortal": "San José Housing Portal", + "footer.SJHousingUrl": "https://housing.sanjoseca.gov/", + "footer.ALAHousingPortal": "Alameda County Housing Portal", + "footer.ALAHousingUrl": "https://housing.acgov.org/", + "homepage.seeMoreOpportunities": "See more rental and ownership housing opportunities", + "homepage.viewAdditionalOpportunities": "View Additional Housing Opportunities", + "region.name": "San Mateo County Housing Portal", + "welcome.seeRentalListings": "See Rentals", + "pageTitle.rent": "See Rentals", + "pageTitle.privacyPolicy": "Privacy Policy", + "pageTitle.additionalResources": "Additional Housing Opportunities and Resources", + "pageTitle.howItWorks": "How it Works", + "pageDescription.additionalResources": "We encourage you to browse other affordable housing resources.", + "pageDescription.getAssistance": "Learn more about finding and applying for affordable rental opportunities, and find additional housing listings.", + "pageDescription.howItWorks": "Learn how you can find and apply for affordable rental opportunities.", + "nav.siteTitle": "San Mateo County Housing", + "nav.listings": "Browse Properties", + "nav.getFeedback": "This is a preview of our new website. We're just getting started. We'd love to get ", + "nav.yourFeedback": "your feedback", + "additionalResources.otherResources": "Other Resources", + "additionalResources.otherResourcesDescription": "Tenant Resources, Crisis and Health Services, Legal Assistance, and Support with rent payments.", + "additionalResources.rentals": "Rentals", + "additionalResources.rentalsDescription": "Lists developed each month by community nonprofit agencies.", + "additionalResources.sharedHousing": "Shared Housing", + "additionalResources.sharedHousingDescription": "Home Sharing is a living arrangement among two or more unrelated people.", + "listings.depositOrMonthsRent": "", + "listings.publicLottery.header": "Lottery", + "listings.reservedTypePlural.55+": "55+", + "timeout.afterMessage": "We care about your security. We ended your session due to inactivity. Please start a new application to continue.", + "welcome.howDoesItWork": "How does it work?", + "welcome.learnHowToApply": "Learn how you can find and apply for affordable rental opportunities.", + "welcome.readAboutHowItWorks": "Read About How it Works", + "application.programs.VHHP.veteran.label": "Veteran", + "application.programs.VHHP.veteranStatus.label": "Veteran Status", + "application.programs.VHHP.veteran.description": "You are a Veteran or active member of the military. “Veteran” means any person who actively served within one or more of the military services of the United States who was called to and released from active duty or active service, for a period of not less than 90 consecutive days or was discharged from the service due to a service-connected disability within that 90-day period. This includes all Veterans regardless of discharge status.", + "application.programs.VHHP.veteranStatus.description": "You are ineligible for VA health care and/or VA Supportive Housing (HUD-VASH).", + "application.preferences.oaklandHousingAuthority.liveOrWork.label": "Live or Work", + "application.preferences.oaklandHousingAuthority.liveOrWork.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher at this property and can verify your previous residency/employment at the applicant interview.", + "application.preferences.oaklandHousingAuthority.family.label": "Family", + "application.preferences.oaklandHousingAuthority.family.description": "You are a family with two or more persons, or a single person applicant that is 62 years of age or older, or a single person applicant with a disability.", + "application.preferences.oaklandHousingAuthority.veteran.label": "Veteran", + "application.preferences.oaklandHousingAuthority.veteran.description": "You are a Veteran or active member of the military who was discharged or released from such service under conditions other than dishonorable.", + "application.preferences.southAlamedaCounty.live.label": "Live in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.live.description": "At least one member of my household lives in Fremont, Newark or Union City.", + "application.preferences.southAlamedaCounty.work.label": "Work in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.work.description": "At least one member of my household works in Fremont, Newark or Union City:", + "application.preferences.fremontPref.live.description": "Living in Fremont: Defined as a person or household who is currently a resident within the current incorporated area of Fremont and where that location is considered to be the household’s permanent place of residence. The City may require applicants to submit a driver license, voter registration, utility bill, vehicle registration or other evidence as proof of residency in Fremont.", + "application.preferences.fremontPref.live.label": "Live in Fremont: At least one member of my household lives* in the City of Fremont", + "application.preferences.fremontPref.title": "Live or work in the City of Fremont ", + "application.preferences.fremontPref.work.description": "Working in Fremont: Earning one's primary source of annual income (salary, wages, commissions), and working at least 50 percent of working hours (i.e. 20 or more hours per week) within the Fremont City limits, at the time of the application. Employment must be by a Fremont employer that is licensed and permitted by the City, at a primary work site in Fremont, or as providing household help, gardening, or similar services to a Fremont resident; or through operation of a Fremont-based business that is licensed and permitted by the City. Working in Fremont does NOT include self-employment consisting solely of operating a business entity established solely for the purposes of investment in a rental property.", + "application.preferences.fremontPref.work.label": "Work in Fremont: At least one member of my household works** in the City of Fremont", + "application.preferences.emeryvillePref.live.label": "At least one member of my household lives in the Emeryville", + "application.preferences.emeryvillePref.work.label": "At least one member of my household works at least 50% of weekly hours in Emeryville", + "application.preferences.emeryvillePref.child.label": "I have a child enrolled in the Emeryville Unified School District (EUSD) or Emeryville Child Development Center (ECDC)" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/vi.json b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/vi.json new file mode 100644 index 0000000000..1ab76496d4 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/vi.json @@ -0,0 +1,68 @@ +{ + "application.contact.doYouWorkIn": "Họ có làm việc ở Quận San Mateo không?", + "application.household.member.workInRegion": "Họ có làm việc ở Quận San Mateo không?", + "additionalResources.otherResources": "Các Nguồn Hỗ Trợ Khác", + "additionalResources.otherResourcesDescription": "Nguồn Hỗ Trợ cho Người Thuê Nhà, Dịch Vụ Hỗ Trợ Giải Quyết Khủng Hoảng và Y Tế, Hỗ Trợ Pháp Lý và Hỗ Trợ thanh toán tiền thuê nhà.", + "additionalResources.rentals": "Cho Thuê", + "additionalResources.rentalsDescription": "Danh sách được các tổ chức phi lợi nhuận của cộng đồng hoàn thiện mỗi tháng.", + "additionalResources.sharedHousing": "Nhà Ở Ghép", + "additionalResources.sharedHousingDescription": "Home Sharing là dịch vụ sắp xếp cho hai hoặc nhiều người không liên quan ở chung với nhau.", + "application.review.confirmation.whatHappensNext.fcfs": "### Điều gì xảy ra tiếp theo?\n\n* Những người đăng ký đủ điều kiện sẽ được liên hệ trên cơ sở ai đến trước được phục vụ trước cho đến khi lấp đầy các căn hộ còn trống.\n\n* Ưu tiên về nhà ở (nếu có) sẽ ảnh hưởng đến thứ tự ai đến trước được phục vụ trước.\n\n* Nếu quý vị được liên hệ để phỏng vấn, quý vị sẽ được yêu cầu điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh.", + "application.review.confirmation.whatHappensNext.lottery": "### Điều gì xảy ra tiếp theo?\n\n* Sau khi hết thời gian nộp đơn, những người đăng ký đủ điều kiện sẽ được xếp theo thứ tự dựa vào xếp hạng bốc thăm.\n\n* Ưu tiên nhà ở (nếu có) sẽ ảnh hưởng đến thứ tự dựa vào xếp hạng bốc thăm.\n\n* Nếu quý vị được liên hệ để phỏng vấn, quý vị sẽ được yêu cầu điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh.", + "application.review.confirmation.whatHappensNext.waitlist": "### Điều gì xảy ra tiếp theo?\n\n* Những người đăng ký đủ điều kiện sẽ được đưa vào danh sách chờ trên cơ sở ai đến trước được phục vụ trước cho đến khi lấp đầy các chỗ trong danh sách chờ.\n\n* Ưu tiên nhà ở (nếu có) sẽ ảnh hưởng đến thứ tự trong danh sách chờ.\n\n* Nếu quý vị được liên hệ để phỏng vấn, quý vị sẽ được yêu cầu điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh.", + "application.review.terms.textSubmissionDate": "Đơn đăng ký này phải được nộp bởi %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* Người đăng ký sẽ nộp đơn đăng ký căn hộ còn trống trên cơ sở ai đến trước được phục vụ trước.\n\n* Những người đăng ký đủ điều kiện sẽ được liên hệ trên cơ sở ai đến trước được phục vụ trước cho đến khi lấp đầy các căn hộ còn trống.\n\n* Nếu quý vị được liên hệ để phỏng vấn, quý vị sẽ được yêu cầu điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh.\n\n* Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.\n\n* Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận.\n\n* Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.\n\nĐể biết thêm thông tin, vui lòng liên hệ nhà phát triển nhà ở hoặc người quản lý tòa nhà có tên trong danh sách.\n\nViệc điền vào đơn đăng ký này không cho phép quý vị có nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả người đăng ký sẽ được sàng lọc như đã nêu trong Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.review.terms.lottery.text": "* Người đăng ký sẽ nộp đơn đăng ký tham gia bốc thăm các căn hộ còn trống.\n\n* Sau khi hết thời gian nộp đơn, những người đăng ký đủ điều kiện sẽ được xếp theo thứ tự dựa vào xếp hạng bốc thăm.\n\n* Nếu quý vị được liên hệ để phỏng vấn, quý vị sẽ được yêu cầu điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh.\n\n* Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.\n\n* Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận.\n\n* Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.\n\nĐể biết thêm thông tin, vui lòng liên hệ nhà phát triển nhà ở hoặc người quản lý tòa nhà có tên trong danh sách.\n\nViệc điền vào đơn đăng ký này không cho phép quý vị có nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả người đăng ký sẽ được sàng lọc như đã nêu trong Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.review.terms.waitlist.text": "* Người đăng ký sẽ nộp đơn đăng ký tham gia danh sách chờ đang mở và không phải là căn hộ còn trống.\n\n* Khi có căn hộ còn trống, người quản lý tài sản sẽ liên hệ với người đăng ký trên cơ sở ai đến trước được phục vụ trước.\n\n* Nếu quý vị được liên hệ để phỏng vấn, quý vị sẽ được yêu cầu điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh.\n\n* Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.\n\n* Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận.\n\n* Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.\n\n* Quý vị có thể được liên hệ khi đang ở trong danh sách chờ để xác nhận rằng quý vị vẫn muốn ở trong danh sách chờ.\n\nĐể biết thêm thông tin, vui lòng liên hệ nhà phát triển nhà ở hoặc người quản lý tòa nhà có tên trong danh sách.\n\nViệc điền vào đơn đăng ký này không cho phép quý vị có nhà ở hoặc cho thấy quý vị hội đủ điều kiện để có nhà ở. Tất cả người đăng ký sẽ được sàng lọc như đã nêu trong Tiêu Chí Lựa Chọn Cư Dân của tòa nhà.\n\nQuý vị không thể thay đổi đơn đăng ký trực tuyến sau khi gửi.\n\nTôi tuyên bố rằng những điều đã nói ở trên là đúng và chính xác, đồng thời thừa nhận rằng bất kỳ sai sót nào được thực hiện một cách gian lận hoặc cẩu thả trong ứng dụng này đều có thể dẫn đến việc bị loại khỏi quy trình đăng ký.", + "application.start.whatToExpect.fcfs.steps": "1. Trước hết, chúng tôi sẽ hỏi quý vị về những người quý vị định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có đủ điều kiện được hưởng bất kỳ ưu tiên bốc thăm nhà ở giá rẻ nào không, nếu có.", + "application.start.whatToExpect.fcfs.finePrint": "* Người đăng ký sẽ nộp đơn đăng ký căn hộ còn trống trên cơ sở ai đến trước được phục vụ trước.\n* Xin lưu ý rằng mỗi thành viên trong gia đình chỉ có thể có tên trên một đơn đăng ký mỗi danh sách.\n* Người đăng ký sẽ được người quản lý tòa nhà liên hệ trên cơ sở ai đến trước được phục vụ trước cho đến khi lấp đầy các căn hộ còn trống.\n* Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.\n* Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận.\n* Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.", + "application.start.whatToExpect.lottery.steps": "1. Trước hết, chúng tôi sẽ hỏi quý vị về những người quý vị định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có đủ điều kiện được hưởng bất kỳ ưu tiên bốc thăm nhà ở giá rẻ nào không, nếu có.", + "application.start.whatToExpect.lottery.finePrint": "* Người đăng ký sẽ nộp đơn đăng ký tham gia bốc thăm các căn hộ còn trống.\n* Xin lưu ý rằng mỗi thành viên gia đình chỉ có thể có tên trên một đơn đăng ký mỗi danh sách.\n* Người đăng ký sẽ được nhân viên tòa nhà liên hệ theo thứ tự dựa vào xếp hạng bốc thăm cho đến khi lấp đầy các căn hộ còn trống.\n* Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.\n* Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận.\n* Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.", + "application.start.whatToExpect.waitlist.steps": "1. Trước hết, chúng tôi sẽ hỏi quý vị về những người quý vị định sống cùng.\n2. Sau đó, chúng tôi sẽ hỏi về thu nhập của quý vị.\n3. Cuối cùng, chúng tôi sẽ xem quý vị có đủ điều kiện được hưởng bất kỳ ưu tiên nhà ở nào không, nếu có.", + "application.start.whatToExpect.waitlist.finePrint": "* Người đăng ký sẽ nộp đơn đăng ký tham gia danh sách chờ đang mở và không phải là căn hộ có sẵn.\n* Xin lưu ý rằng mỗi thành viên trong gia đình chỉ có thể có tên trên một đơn đăng ký mỗi danh sách.\n* Khi có căn hộ còn trống, người quản lý tài sản sẽ liên hệ với người đăng ký trên cơ sở ai đến trước được phục vụ trước.\n* Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.\n* Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận.\n* Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.\n* Quý vị có thể được liên hệ khi đang ở trong danh sách chờ để xác nhận rằng quý vị vẫn muốn ở trong danh sách chờ.", + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "Trang web HCD Quận San Mateo", + "footer.contact": "Tiếp xúc", + "footer.copyRight": "© Hạt San Mateo", + "footer.disclaimer": "từ chối trách nhiệm", + "footer.giveFeedback": "Đưa ra phản hồi", + "footer.header": "Cổng thông tin nhà ở quận San Mateo là một dự án của", + "footer.headerLink": "Quận San Mateo - Bộ Gia cư (DOH)", + "footer.forAdditionalOpportunities": "Để biết thêm các cơ hội trong Vùng Vịnh, vui lòng truy cập:", + "footer.forGeneralInquiries": "Đối với các yêu cầu chung về chương trình, bạn có thể gọi cho Sở Y tế Hạt San Mateo theo số 650-802-5050.", + "footer.forListingQuestions": "Đối với các câu hỏi về danh sách và ứng dụng, vui lòng liên hệ với Đại lý tài sản được hiển thị trên danh sách.", + "footer.privacyPolicy": "Chính sách bảo mật", + "footer.DoorwayHousingPortal": "Cổng thông tin nhà ở của Doorway", + "footer.SFHousingPortal": "Cổng thông tin nhà ở San Francisco", + "footer.SJHousingPortal": "Cổng thông tin nhà ở San Jose", + "footer.ALAHousingPortal": "Cổng thông tin Nhà ở Quận Alameda", + "region.name": "Cổng thông tin nhà ở quận San Mateo", + "nav.siteTitle": "Nhà ở Quận San Mateo", + "nav.listings": "Duyệt thuộc tính", + "nav.getFeedback": "Đây là bản xem trước của trang web mới của chúng tôi. Chúng ta chỉ mới bắt đầu. Chúng tôi rất muốn có được ", + "nav.yourFeedback": "thông tin phản hồi của bạn", + "listings.availableUnits": "Căn Hộ Có Sẵn", + "listings.publicLottery.header": "Vé số", + "listings.waitlist.currentSize": "Quy Mô Danh Sách Chờ Hiện Tại", + "listings.waitlist.finalSize": "Quy Mô Danh Sách Chờ Cuối Cùng", + "listings.waitlist.openSlots": "Chỗ Đang Mở Trong Danh Sách Chờ", + "listings.waitlist.isOpen": "Danh Sách Chờ Đang Mở", + "listings.waitlist.submitForWaitlist": "Nộp đơn đăng ký chỗ đang mở trong danh sách chờ", + "pageDescription.additionalResources": "Chúng tôi khuyến khích bạn duyệt qua các nguồn tài nguyên nhà ở giá cả phải chăng khác.", + "pageDescription.getAssistance": "Tìm hiểu thêm về cách tìm và đăng ký các cơ hội thuê nhà bình dân, cũng như tìm thêm danh sách nhà ở.", + "pageDescription.howItWorks": "Tìm hiểu cách tìm và đăng ký các cơ hội thuê nhà giá cả phải chăng.", + "pageTitle.additionalResources": "Các cơ hội và nguồn lực bổ sung về nhà ở", + "pageTitle.getAssistance": "Hỗ Trợ", + "pageTitle.howItWorks": "Cách thức hoạt động", + "pageTitle.privacyPolicy": "Chính sách bảo mật", + "t.units": "căn hộ", + "welcome.howDoesItWork": "Cách thức hoạt động?", + "welcome.learnHowToApply": "Tìm hiểu cách tìm và đăng ký các cơ hội thuê nhà giá cả phải chăng.", + "welcome.readAboutHowItWorks": "Đọc về cách nó hoạt động", + "welcome.seeRentalListings": "Xem cho thuê", + "whatToExpect.waitlist": "

Người đăng ký sẽ nộp đơn đăng ký tham gia danh sách chờ đang mở và không phải đăng ký cho căn hộ còn trống.

Những người đăng ký đủ điều kiện sẽ được đưa vào danh sách chờ. Khi có căn hộ còn trống, người quản lý tòa nhà sẽ liên hệ với người đăng ký trên cơ sở người đến trước được phục vụ trước.

Nếu quý vị được người quản lý tòa nhà liên hệ thì tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.

", + "whatToExpect.waitlistReadMore": "

Ưu tiên nhà ở (nếu có) sẽ ảnh hưởng đến thứ tự trong danh sách chờ.

Đơn đăng ký của quý vị có thể bị xóa khỏi danh sách chờ nếu quý vị khai gian lận. Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.

Nếu quý vị được người quản lý tòa nhà liên hệ, hãy chuẩn bị sẵn sàng để điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh bắt buộc.

", + "whatToExpect.lottery": "

Người đăng ký sẽ nộp đơn đăng ký tham gia bốc thăm các căn hộ còn trống.

Sau khi hết thời gian nộp đơn, những người đăng ký đủ điều kiện sẽ được xếp theo thứ tự dựa vào xếp hạng bốc thăm.

Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.

", + "whatToExpect.lotteryReadMore": "

Ưu tiên nhà ở (nếu có) sẽ ảnh hưởng đến thứ tự dựa vào xếp hạng bốc thăm.

Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận. Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.

Nếu quý vị được người quản lý tài sản liên hệ, hãy chuẩn bị sẵn sàng để điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh bắt buộc.

", + "whatToExpect.fcfs": "

Người đăng ký sẽ nộp đơn đăng ký căn hộ còn trống trên cơ sở ai đến trước được phục vụ trước.

Những người đăng ký đủ điều kiện sẽ được liên hệ trên cơ sở ai đến trước được phục vụ trước cho đến khi lấp đầy các căn hộ còn trống.

Tất cả các thông tin mà quý vị đã cung cấp sẽ được xác minh và xác nhận khả năng hội đủ điều kiện của quý vị.

", + "whatToExpect.fcfsReadMore": "

Ưu tiên nhà ở (nếu có) sẽ ảnh hưởng đến thứ tự ai đến trước được phục vụ trước.

Đơn đăng ký của quý vị có thể bị xóa nếu quý vị khai gian lận. Đối với tòa nhà có ưu tiên nhà ở, nếu chúng tôi không thể xác minh ưu tiên nhà ở mà quý vị đã yêu cầu thì quý vị sẽ không được ưu tiên mà cũng sẽ không bị phạt.

Nếu quý vị được người quản lý tài sản liên hệ, hãy chuẩn bị sẵn sàng để điền vào đơn đăng ký chi tiết hơn và cung cấp giấy tờ chứng minh bắt buộc.

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/zh.json b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/zh.json new file mode 100644 index 0000000000..65b17f9963 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/locale_overrides/zh.json @@ -0,0 +1,68 @@ +{ + "application.contact.doYouWorkIn": "他們在聖馬特奧縣工作嗎?", + "application.household.member.workInRegion": "他們在聖馬特奧縣工作嗎?", + "additionalResources.otherResources": "其他資源", + "additionalResources.otherResourcesDescription": "租戶資源、危機和健康服務、法律援助,以及租金支付方面的支援。", + "additionalResources.rentals": "裝備租用", + "additionalResources.rentalsDescription": "每月由社區非營利機構制定的名單。", + "additionalResources.sharedHousing": "共享住房", + "additionalResources.sharedHousingDescription": "房屋共享是兩位以上沒有關係的人之間的居住安排。", + "application.review.confirmation.whatHappensNext.fcfs": "### 接下來會發生什麼?\n\n* 我們會按先到先得的原則聯絡合資格的申請人,直到候補名單名額已滿。\n\n* 住房優先權(如適用)將影響先到先得的順序。\n\n* 如果聯絡您接受訪談,將要求您填寫更詳細的申請表並提供證明文件。", + "application.review.confirmation.whatHappensNext.lottery": "### 接下來會發生什麼?\n\n* 申請期結束後,合資格的申請人將根據抽籤排名順序進行排列。\n\n* 住房優先權(如適用)將會影響抽籤排名順序。\n\n* 如果聯絡您接受訪談,將要求您填寫更詳細的申請表並提供證明文件。", + "application.review.confirmation.whatHappensNext.waitlist": "### 接下來會發生什麼?\n\n* 合資格的申請人將按先到先得的原則被列入候補名單,直到候補名單名額已滿。\n\n* 住房優先權(如適用)將影響候補名單的順序。\n\n* 如果聯絡您接受訪談,將要求您填寫更詳細的申請表並提供證明文件。\n\n* 列入候補名單後,可能會有人聯絡您,確認您是否願意繼續留在候補名單中。", + "application.review.terms.textSubmissionDate": "該申請的提交者必須為 %{applicationDueDate}.", + "application.review.terms.fcfs.text": "* 申請人以先到先得的方式申請目前空置的公寓。\n\n* 我們會按先到先得的原則聯絡合資格的申請人,直到候補名單名額已滿。\n\n* 如果聯絡您接受訪談,將要求您填寫更詳細的申請表並提供證明文件。\n\n* 我們會驗證您所提供的所有資訊並確認您的資格。\n\n* 如果您做出任何虛假陳述,可能會移除您的申請。\n\n* 對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。\n\n欲了解更多資訊,請聯絡名單中發布的房屋開發商或物業經理。\n\n完成此申請並不意味著您有權獲得住房或表明您有資格獲得住房。所有申請人均將按物業的住戶選擇標準進行篩選。\n\n提交後,您無法變更線上申請。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.review.terms.lottery.text": "* 申請人將申請對目前空置的公寓進行抽籤。\n\n* 申請期結束後,合資格的申請人將按抽籤排名順序進行排列。\n\n* 如果聯絡您接受訪談,將要求您填寫更詳細的申請表並提供證明文件。\n\n* 我們會驗證您所提供的所有資訊並確認您的資格。\n\n* 如果您做出任何虛假陳述,可能會移除您的申請。\n\n* 對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。\n\n欲了解更多資訊,請聯絡名單中發布的房屋開發商或物業經理。\n\n完成此申請並不意味著您有權獲得住房或表明您有資格獲得住房。所有申請人均將按物業的住戶選擇標準進行篩選。\n\n提交後,您無法變更線上申請。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.review.terms.waitlist.text": "* 申請人正在申請一個開放的候補名單,而不是目前空置的公寓。\n\n* 當有空缺時,物業經理將按先到先得的原則聯絡合資格的申請人。\n\n* 如果聯絡您接受訪談,將要求您填寫更詳細的申請表並提供證明文件。\n\n* 我們會驗證您所提供的所有資訊並確認您的資格。\n\n* 如果您做出任何虛假陳述,可能會移除您的申請。\n\n* 對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。\n\n* 列入候補名單後,可能會有人聯絡您,確認您是否願意繼續留在候補名單中。\n\n欲了解更多資訊,請聯絡名單中發布的房屋開發商或物業經理。\n\n完成此申請並不意味著您有權獲得住房或表明您有資格獲得住房。所有申請人均將按物業的住戶選擇標準進行篩選。\n\n提交後,您無法變更線上申請。\n\n我聲明上述內容真實準確,並承認任何以欺詐或疏忽方式對本申請作出的錯誤陳述都可能導致從申請程序中刪除.", + "application.start.whatToExpect.fcfs.steps": "1. 首先,我們將詢問您打算同住的人員情況。\n2. 然後,我們將詢問您的收入情況。\n3. 最後,我們將查看您是否符合任何可負擔住房抽籤優先權的資格(如適用)。", + "application.start.whatToExpect.fcfs.finePrint": "* 申請人以先到先得的方式申請目前空置的公寓。\n* 請注意,對於每個名單,每個家庭的成員只能出現在一份申請中。\n* 物業經理將按先到先得的原則聯絡申請人,直到空缺已滿。\n* 我們會驗證您所提供的所有資訊並確認您的資格。\n* 如果您做出任何虛假陳述,可能會移除您的申請。\n* 對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。", + "application.start.whatToExpect.lottery.steps": "1. 首先,我們將詢問您打算同住的人員情況。\n2. 然後,我們將詢問您的收入情況。\n3. 最後,我們將查看您是否符合任何可負擔住房抽籤優先權的資格(如適用)。", + "application.start.whatToExpect.lottery.finePrint": "* 申請人將申請對目前空置的公寓進行抽籤。\n* 請注意,對於每個名單,每個家庭的成員只能出現在一份申請中。\n* 物業代理人將按抽籤順序與申請人聯絡,直到空缺已滿。\n* 我們會驗證您所提供的所有資訊並確認您的資格。\n* 如果您做出任何虛假陳述,可能會移除您的申請。\n* 對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。", + "application.start.whatToExpect.waitlist.steps": "1. 首先,我們將詢問您打算同住的人員情況。\n2. 然後,我們將詢問您的收入情況。\n3. 最後,我們將查看您是否符合任何可負擔住房優先權的資格(如適用)。", + "application.start.whatToExpect.waitlist.finePrint": "* 申請人正在申請一個開放的候補名單,而不是目前可提供的公寓。\n* 請注意,對於每個名單,每個家庭的成員只能出現在一份申請中。\n* 當有空缺時,物業經理將按先到先得的原則聯絡合資格的申請人。\n* 我們會驗證您所提供的所有資訊並確認您的資格。\n* 如果您做出任何虛假陳述,可能會移除您的申請。\n* 對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。", + "application.review.demographics.howDidYouHearOptions.jurisdictionWebsite": "聖馬特奧縣 HCD 網站", + "footer.contact": "接觸", + "footer.copyRight": "© 聖馬特奧縣", + "footer.disclaimer": "免責聲明", + "footer.giveFeedback": "給予反饋", + "footer.header": "聖馬特奧縣住房門戶網站是", + "footer.headerLink": "聖馬特奧縣 - 住房部 (DOH)", + "footer.forAdditionalOpportunities": "如需其他灣區機會,請訪問:", + "footer.forGeneralInquiries": "對於一般計劃查詢,您可以致電 650-802-5050 聯繫聖馬特奧縣 DOH。", + "footer.forListingQuestions": "有關掛牌和申請問題,請聯繫掛牌上顯示的物業代理。", + "footer.privacyPolicy": "隱私政策", + "footer.DoorwayHousingPortal": "Doorway 房屋門戶", + "footer.SFHousingPortal": "舊金山住房門戶網站", + "footer.SJHousingPortal": "聖何塞住房門戶網站", + "footer.ALAHousingPortal": "阿拉米達縣住房門戶網站", + "region.name": "聖馬特奧縣住房門戶網站", + "nav.siteTitle": "聖馬特奧縣住房", + "nav.listings": "瀏覽屬性", + "nav.getFeedback": "這是我們新網站的預覽。 我們才剛剛開始。 我們很想得到 ", + "nav.yourFeedback": "您的反饋", + "listings.availableUnits": "可提供的單位", + "listings.publicLottery.header": "彩票", + "listings.waitlist.currentSize": "當前候補名單人數", + "listings.waitlist.finalSize": "最終候補名單人數", + "listings.waitlist.openSlots": "開放候補名單席位", + "listings.waitlist.isOpen": "候補名單已開放", + "listings.waitlist.submitForWaitlist": "提交申請以申請候補名單上的空位", + "pageDescription.additionalResources": "我們鼓勵您瀏覽其他經濟適用房資源。", + "pageDescription.getAssistance": "深入了解如何尋找並申請社會住宅,以及尋找額外的居住刊登物件。", + "pageDescription.howItWorks": "了解如何尋找並申請可負擔的租屋機會。", + "pageTitle.additionalResources": "額外的住房機會和資源", + "pageTitle.getAssistance": "取得協助", + "pageTitle.howItWorks": "運作方式", + "pageTitle.privacyPolicy": "隱私政策", + "t.units": "單元", + "welcome.howDoesItWork": "運作方式?", + "welcome.learnHowToApply": "了解如何尋找並申請可負擔的租屋機會。", + "welcome.readAboutHowItWorks": "閱讀它是如何工作的", + "welcome.seeRentalListings": "查看出租", + "whatToExpect.waitlist": "

申請人正在申請一個開放的候補名單,而不是目前空置的公寓。

合資格的申請人將被列入候補名單。當有空缺時,物業經理將按先到先得的原則聯絡申請人。

物業經理與您聯絡時會驗證您提供的所有資訊並確認您的資格。

", + "whatToExpect.waitlistReadMore": "

住房優先權(如適用)將影響候補名單的順序。

如果您做出任何虛假陳述,可能會從候補名單中移除您的申請。對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。

如果物業經理與您聯絡,請準備好填寫更詳細的申請表並提供所需的證明文件。

", + "whatToExpect.lottery": "

申請人將申請對目前空置的公寓進行抽籤。

申請期結束後,合資格的申請人將根據抽籤排名進行排列。

我們會驗證您所提供的所有資訊並確認您的資格。

", + "whatToExpect.lotteryReadMore": "

住房優先權(如適用)將會影響抽籤排名順序。

如果您做出任何虛假陳述,可能會移除您的申請。對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。

如果物業經理與您聯絡,請準備好填寫更詳細的申請表並提供所需的證明文件。

", + "whatToExpect.fcfs": "

申請人以先到先得的方式申請目前空置的公寓。

我們會按先到先得的原則聯絡合資格的申請人,直到候補名單名額已滿。

我們會驗證您所提供的所有資訊並確認您的資格。

", + "whatToExpect.fcfsReadMore": "

住房優先權(如適用)將影響先到先得的順序。

如果您做出任何虛假陳述,可能會移除您的申請。對於有住房優先權的物業,如果我們無法核實您所宣稱的住房優先權,您將不會獲得優先權,但也不會受到其他處罰。

如果物業經理與您聯絡,請準備好填寫更詳細的申請表並提供所需的證明文件。

" +} diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/privacy_policy.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/privacy_policy.md new file mode 100644 index 0000000000..ac7229178e --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/privacy_policy.md @@ -0,0 +1,23 @@ +Thank you for visiting the County of San Mateo website and reviewing our privacy policy. The information contained on this website is collected and maintained for the benefit of the public. While the County of San Mateo makes best efforts to maintain accurate information the County of San Mateo does not endorse the authenticity of information that originates from third parties. + +--- + +## Your Personal Information + +The County of San Mateo will not collect personal information about you when you visit our website unless you choose to provide that information to us. We do not give, share, sell, or transfer any personal information. + +Some of our online services require you to register for an account. We ask you for some personal information in order to create an account (typically your name, email address and a password for your account) and we will use that information to provide the service. + +Information that you voluntarily provide to us through our optional online feedback form is used to help enhance our website. It may be used internally by the County of San Mateo employees and contractors for that purpose alone. When you visit a County of San Mateo website, you should be aware that data linking your computer to a particular website (a "cookie") may be created. Temporary cookies may be used when necessary to complete a transaction, to process data submitted to us online, to facilitate an ongoing Internet interaction, or to understand trends in the use of County of San Mateo websites. Cookies do not compromise your privacy or security. Using web browser settings, you can refuse the cookies or delete the cookie file from your computer by using any of the widely available methods. + +## Traffic Analysis and Security + +We do analyze user traffic patterns on our website automatically through your browser. This information includes the IP address of your computer or network, current date, current time, your browser, and operating system, the page(s) you visited on our website, and the referring page (page that you came from). We use the aggregated information from all of our visitors to measure and improve site performance, analyze user traffic, and to improve the content of our site. At times, we may track the keywords entered into our search engines from all users to find out which topics are popular although we don't keep track of specific words that any one user enters. + +We only use this information to measure server performance, to improve the content on our website, and to guarantee a high level of security for all users. Unauthorized attempts to upload or modify information in any way are forbidden. Users who are visiting the County of San Mateo website are also expressly consenting to this monitoring of network traffic. + +Information that you voluntarily provide to us through our optional online feedback form is used to help enhance our website. It may be used internally by the County of San Mateo employees and contractors for that purpose alone. When you visit a County of San Mateo website, you should be aware that data linking your computer to a particular website (a "cookie") may be created. Temporary cookies may be used when necessary to complete a transaction, to process data submitted to us online, to facilitate an ongoing Internet interaction, or to understand trends in the use of County of San Mateo websites. Cookies do not compromise your privacy or security. Using web browser settings, you can refuse the cookies or delete the cookie file from your computer by using any of the widely available methods. + +--- + +_Updated July 28, 2014_ diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/BayArea211.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/BayArea211.md new file mode 100644 index 0000000000..be181f844c --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/BayArea211.md @@ -0,0 +1,37 @@ + +### [211 United Way Bay Area](https://www.211bayarea.org/sanmateo/) + +Health and Human Services Information, including crisis services + +San Mateo County and Bay Area + +Call [211](tel:+1-211) + + +### [211 United Way Bay Area](https://www.211bayarea.org/sanmateo/) + +Información de salud y servicios humanos, incluidos servicios en casos de crisis + +Condado de San Mateo y Área de la Bahía + +Llamar [211](tel:+1-211) + + + +### [211 United Way Bay Area](https://www.211bayarea.org/sanmateo/) + +健康和人類服務資訊,包括危機服務 + +聖馬刁郡及灣區 + +撥打 [211](tel:+1-211) + + +### [211 United Way Bay Area](https://www.211bayarea.org/sanmateo/) + +Thông Tin Y Tế và Dịch Vụ Nhân Sinh, bao gồm cả dịch vụ hỗ trợ giải quyết khủng hoảng + +Quận San Mateo và Bay Area + +Cuộc gọi [211](tel:+1-211) + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/CIH.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/CIH.md new file mode 100644 index 0000000000..bab8361bf4 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/CIH.md @@ -0,0 +1,28 @@ + +### [Community Infomation Handbook](https://hsa.smcgov.org/sites/hsa.smcgov.org/files/documents/files/CIH2019_English_020719.pdf) + +Community Services + +San Mateo County + + +### [Manual de información comunitaria](https://hsa.smcgov.org/sites/hsa.smcgov.org/files/documents/files/CIH2019_English_020719.pdf) + +Servicios comunitarios + +Condado de San Mateo + + +### [社區資訊手冊](https://hsa.smcgov.org/sites/hsa.smcgov.org/files/documents/files/CIH2019_English_020719.pdf) + +社區服務 + +聖馬刁郡 + + +### [Sổ Tay Thông Tin Cộng Đồng](https://hsa.smcgov.org/sites/hsa.smcgov.org/files/documents/files/CIH2019_English_020719.pdf) + +Dịch Vụ Cộng Đồng + +Quận San Mateo + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HAotCoSM.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HAotCoSM.md new file mode 100644 index 0000000000..fbcaec09dc --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HAotCoSM.md @@ -0,0 +1,28 @@ + +### [Housing Authority of the County of San Mateo](https://www.smcgov.org/housing/apply-housing-authority-waiting-lists) + +Housing Choice Vouchers/ Section 8 program + +San Mateo County + + +### [Autoridad de Vivienda del Condado de San Mateo](https://www.smcgov.org/housing/apply-housing-authority-waiting-lists) + +Vales de elección de vivienda/programa Sección 8 + +Condado de San Mateo + + +### [聖馬刁郡政府住房管理局](https://www.smcgov.org/housing/apply-housing-authority-waiting-lists) + +住房選擇憑據/第 8 節 (Section 8) 計畫 + +聖馬刁郡 + + +### [Cơ Quan Gia Cư Quận San Mateo](https://www.smcgov.org/housing/apply-housing-authority-waiting-lists) + +Chương trình Phiếu Chọn Nhà/ Mục 8 + +Quận San Mateo + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HIPHousing.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HIPHousing.md new file mode 100644 index 0000000000..4f390b8108 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HIPHousing.md @@ -0,0 +1,28 @@ + +### [HIP Housing](https://hiphousing.org/programs/home-sharing-program/) + +Shared Housing Opportunities + +San Mateo County + + +### [HIP Housing](https://hiphousing.org/programs/home-sharing-program/) + +Oportunidades de viviendas compartidas + +Condado de San Mateo + + +### [HIP Housing](https://hiphousing.org/programs/home-sharing-program/) + +共享住房機會 + +聖馬刁郡 + + +### [HIP Housing](https://hiphousing.org/programs/home-sharing-program/) + +Cơ Hội Nhà Ở Ghép + +Quận San Mateo + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HavenConnect.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HavenConnect.md new file mode 100644 index 0000000000..a0bec64e0d --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HavenConnect.md @@ -0,0 +1,28 @@ + +### [Haven Connect](https://app.havenconnect.com/properties) + +Affordable Housing + +San Mateo County, Bay Area, and Beyond + + +### [Haven Connect](https://app.havenconnect.com/properties) + +Viviendas asequibles + +Condado de San Mateo, Área de la Bahía y otras zonas + + +### [Haven Connect](https://app.havenconnect.com/properties) + +平價住房 + +聖馬刁郡、灣區 (Bay Area),及其他地區 + + +### [Haven Connect](https://app.havenconnect.com/properties) + +Nhà Ở Vừa Túi Tiền + +Quận San Mateo, Bay Area và Nhiều Nơi Khác Nữa + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HousingChoices.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HousingChoices.md new file mode 100644 index 0000000000..4d2fb77126 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HousingChoices.md @@ -0,0 +1,44 @@ + +### [Housing Choices](https://www.housingchoices.org/) + +Housing Choices provides housing navigation services to people with intellectual and developmental disabilities served by the Regional Center. + +[Submit a request for Housing Choices Services.](https://housingchoices.my.site.com/interestform/s/) + +Call [408-498-5777](tel:+1-408-498-5777) + +Email + + +### [Housing Choices](https://www.housingchoices.org/) + +Housing Choices proporciona servicios de navegación en línea sobre viviendas a personas con discapacidades intelectuales y del desarrollo, a cargo del Centro Regional. + +[Envíe un pedido a Housing Choices Services.](https://housingchoices.my.site.com/interestform/s/) + +Llamar [408-498-5777](tel:+1-408-498-5777) + +Enviar un correo electrónico + + +### [Housing Choices](https://www.housingchoices.org/) + +Housing Choices 為區域中心所服務的智力和發展障礙人士提供住房導覽服務。 + +[送出 Housing Choices 服務的申請](https://housingchoices.my.site.com/interestform/s/) + +來電 [408-498-5777](tel:+1-408-498-5777) + +電子郵件 + + +### [Housing Choices](https://www.housingchoices.org/) + +Housing Choices cung cấp dịch vụ giải quyết nhà ở cho những người khuyết tật phát triển và trí tuệ mà Trung Tâm Khu Vực (Regional Center) phục vụ. + +[Gửi yêu cầu cung cấp Dịch Vụ Chọn Nhà.](https://housingchoices.my.site.com/interestform/s/) + +Gọi điện [408-498-5777](tel:+1-408-498-5777) + +Gửi email + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HowItWorks.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HowItWorks.md new file mode 100644 index 0000000000..54fca190e1 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/HowItWorks.md @@ -0,0 +1,20 @@ + +### [How it Works?](https://res.cloudinary.com/exygy/image/upload/v1656447895/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_Mateo_County_Final_ENG_ydko9g.pdf) + +This guide describes affordable housing and how to get into it. + + +### [¿Cómo funciona?](https://res.cloudinary.com/exygy/image/upload/v1656447890/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_Mateo_County_ES_phyiwc.pdf) + +En esta guía se describen las viviendas asequibles y cómo acceder a ellas. + + +### [這個怎麼運作?](https://res.cloudinary.com/exygy/image/upload/v1656447884/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_Mateo_County_CH_ntjioc.pdf) + +本指南會說明何謂社會住宅,以及如何申請。 + + +### [Làm thế nào nó hoạt động?](https://res.cloudinary.com/exygy/image/upload/v1656447899/Revised_Affordable_Housing_Application_and_Selection_Process_-_San_Mateo_County_VIET_ztpwj6.pdf) + +Hướng dẫn này mô tả nhà ở giá rẻ và cách tiếp cận loại hình nhà ở này. + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/ProjectSentinel.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/ProjectSentinel.md new file mode 100644 index 0000000000..2085830187 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/ProjectSentinel.md @@ -0,0 +1,28 @@ + +### [Project Sentinel](https://www.housing.org/tenants) + +Services for tenants experiencing housing discrimination + +San Mateo County and Bay Area + + +### [Project Sentinel](https://www.housing.org/tenants) + +Servicios para inquilinos que experimentan discriminación habitacional + +Condado de San Mateo y Área de la Bahía + + +### [Project Sentinel](https://www.housing.org/tenants) + +為遭受住房歧視的租戶提供服務 + +聖馬刁郡及灣區 + + +### [Project Sentinel](https://www.housing.org/tenants) + +Dịch vụ dành cho người thuê nhà bị phân biệt đối xử về nhà ở + +Quận San Mateo và Bay Area + diff --git a/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/sidebar.md b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/sidebar.md new file mode 100644 index 0000000000..69f80bb056 --- /dev/null +++ b/sites/public/src/page_content/jurisdiction_overrides/san_mateo/resources/sidebar.md @@ -0,0 +1,35 @@ + +#### Contact + +**For listing and application questions, please contact the Property Agent displayed on the listing.** + +San Mateo County's Department of Housing + + + + +#### Contacto + +**Para preguntas sobre listados y solicitudes, póngase en contacto con el agente inmobiliario que se encuentra en el listado.** + +Departamento de Vivienda del Condado de San Mateo + + + + +#### 聯繫 + +**若有刊登和申請問題,請聯絡刊登清單中顯示的物業仲介。** + +San Mateo County's Department of Housing (聖馬刁郡居住部門) + + + + +#### Liên lạc + +**Đối với các câu hỏi về danh sách và đăng kí, vui lòng liên hệ với Đại lí Bất động sản được hiển thị trên danh sách.** + +Sở Gia Cư Quận San Mateo + + diff --git a/sites/public/src/page_content/locale_overrides/general.json b/sites/public/src/page_content/locale_overrides/general.json new file mode 100644 index 0000000000..faf90ee15d --- /dev/null +++ b/sites/public/src/page_content/locale_overrides/general.json @@ -0,0 +1,33 @@ +{ + "application.programs.HOPWA.interested.label": "I'm interested", + "application.programs.HOPWA.notInterested.label": "I'm not interested", + "application.programs.HOPWA.summary": "HOPWA", + "application.programs.VHHP.veteran.label": "Veteran", + "application.programs.VHHP.veteranStatus.label": "Veteran Status", + "application.programs.VHHP.veteran.description": "You are a Veteran or active member of the military. “Veteran” means any person who actively served within one or more of the military services of the United States who was called to and released from active duty or active service, for a period of not less than 90 consecutive days or was discharged from the service due to a service-connected disability within that 90-day period. This includes all Veterans regardless of discharge status.", + "application.programs.VHHP.veteranStatus.description": "You are ineligible for VA health care and/or VA Supportive Housing (HUD-VASH).", + "application.preferences.oaklandHousingAuthority.liveOrWork.label": "Live or Work", + "application.preferences.oaklandHousingAuthority.liveOrWork.description": "You have lived and/or worked in the City of Oakland when you submitted your initial application and/or at the time of your application interview for a Project-Based Voucher at this property and can verify your previous residency/employment at the applicant interview.", + "application.preferences.oaklandHousingAuthority.family.label": "Family", + "application.preferences.oaklandHousingAuthority.family.description": "You are a family with two or more persons, or a single person applicant that is 62 years of age or older, or a single person applicant with a disability.", + "application.preferences.oaklandHousingAuthority.veteran.label": "Veteran", + "application.preferences.oaklandHousingAuthority.veteran.description": "You are a Veteran or active member of the military who was discharged or released from such service under conditions other than dishonorable.", + "application.preferences.southAlamedaCounty.live.label": "Live in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.live.description": "At least one member of my household lives in Fremont, Newark or Union City.", + "application.preferences.southAlamedaCounty.work.label": "Work in Fremont, Newark or Union City", + "application.preferences.southAlamedaCounty.work.description": "At least one member of my household works in Fremont, Newark or Union City:", + "application.preferences.fremontPref.live.description": "Living in Fremont: Defined as a person or household who is currently a resident within the current incorporated area of Fremont and where that location is considered to be the household’s permanent place of residence. The City may require applicants to submit a driver license, voter registration, utility bill, vehicle registration or other evidence as proof of residency in Fremont.", + "application.preferences.fremontPref.live.label": "Live in Fremont: At least one member of my household lives* in the City of Fremont", + "application.preferences.fremontPref.title": "Live or work in the City of Fremont ", + "application.preferences.fremontPref.work.description": "Working in Fremont: Earning one's primary source of annual income (salary, wages, commissions), and working at least 50 percent of working hours (i.e. 20 or more hours per week) within the Fremont City limits, at the time of the application. Employment must be by a Fremont employer that is licensed and permitted by the City, at a primary work site in Fremont, or as providing household help, gardening, or similar services to a Fremont resident; or through operation of a Fremont-based business that is licensed and permitted by the City. Working in Fremont does NOT include self-employment consisting solely of operating a business entity established solely for the purposes of investment in a rental property.", + "application.preferences.fremontPref.work.label": "Work in Fremont: At least one member of my household works** in the City of Fremont", + "application.preferences.emeryvillePref.live.label": "At least one member of my household lives in the Emeryville", + "application.preferences.emeryvillePref.work.label": "At least one member of my household works at least 50% of weekly hours in Emeryville", + "application.preferences.emeryvillePref.child.label": "I have a child enrolled in the Emeryville Unified School District (EUSD) or Emeryville Child Development Center (ECDC)", + "whatToExpect.waitlist": "

Applicants are applying for an open waitlist and not a currently vacant apartment.

Eligible applicants will be placed on the waitlist. When vacancies become available, applicants will contacted by the property manager on a first come, first serve basis.

If you are contacted by the property manager, all of the information that you have provided will be verified and your eligibility confirmed.

", + "whatToExpect.waitlistReadMore": "

Housing preferences, if applicable, will affect waitlist order.

Your application may be removed from the waitlist if you have made any fraudulent statements. For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.

If you are contacted by the property manager, be prepared to fill out a more detailed application and provide required supporting documents.

", + "whatToExpect.lottery": "

Applicants are applying to enter a lottery for currently vacant apartments.

Once the application period closes, eligible applicants will be placed in order based on lottery rank.

All of the information that you have provided will be verified and your eligibility confirmed.

", + "whatToExpect.lotteryReadMore": "

Housing preferences, if applicable, will affect lottery rank order.

Your application may be removed if you have made any fraudulent statements. For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.

If you are contacted by the property manager, be prepared to fill out a more detailed application and provide required supporting documents.

", + "whatToExpect.fcfs": "

Applicants are applying to currently vacant apartments on a first come, first serve basis.

Eligibile applicants will be contacted on a first come first serve basis until vacancies are filled.

All of the information that you have provided will be verified and your eligibility confirmed.

", + "whatToExpect.fcfsReadMore": "

Housing preferences, if applicable, will affect first come, first serve order.

Your application may be removed if you have made any fraudulent statements. For properties with housing preferences, if we cannot verify a housing preference that you have claimed, you will not receive the preference but will not be otherwise penalized.

If you are contacted by the property manager, be prepared to fill out a more detailed application and provide required supporting documents.

" +} diff --git a/sites/public/src/pages/_app.tsx b/sites/public/src/pages/_app.tsx index c293c8ce9e..579c7cd2e5 100644 --- a/sites/public/src/pages/_app.tsx +++ b/sites/public/src/pages/_app.tsx @@ -15,20 +15,21 @@ import { ConfigProvider, AuthProvider, } from "@bloom-housing/shared-helpers" -import { headScript, bodyTopTag, pageChangeHandler } from "../lib/customScripts" +import { pageChangeHandler, gaLoadScript, gaCaptureScript, uaScript } from "../lib/customScripts" import { AppSubmissionContext } from "../lib/applications/AppSubmissionContext" import ApplicationConductor, { loadApplicationFromAutosave, loadSavedListing, } from "../lib/applications/ApplicationConductor" -import { translations, overrideTranslations } from "../lib/translations" +import { translations, overrideTranslations, jurisdictionTranslations } from "../lib/translations" import LinkComponent from "../components/core/LinkComponent" +// Note: import overrides.scss last so that it overrides styles defined in imports above import "../../styles/overrides.scss" function BloomApp({ Component, router, pageProps }: AppProps) { const { locale } = router - // const initialized = useState(true) + const [initialized, setInitialized] = useState(false) const [application, setApplication] = useState(() => { return loadApplicationFromAutosave() || JSON.parse(JSON.stringify(blankApplication)) }) @@ -41,6 +42,7 @@ function BloomApp({ Component, router, pageProps }: AppProps) { }, [application, savedListing]) useMemo(() => { + setInitialized(false) addTranslation(translations.general, true) if (locale && locale !== "en" && translations[locale]) { addTranslation(translations[locale]) @@ -49,22 +51,35 @@ function BloomApp({ Component, router, pageProps }: AppProps) { if (overrideTranslations[locale]) { addTranslation(overrideTranslations[locale]) } + const loadJurisdictionTranslations = async () => { + const jurisdictionOverride = await jurisdictionTranslations() + if (jurisdictionOverride) { + addTranslation(jurisdictionOverride["en"]) + addTranslation(jurisdictionOverride[locale]) + } + setInitialized(true) + } + loadJurisdictionTranslations().catch(() => { + console.log("jurisdiction translations loading failed") + }) }, [locale]) useEffect(() => { if (!document.body.dataset.customScriptsLoaded) { router.events.on("routeChangeComplete", pageChangeHandler) - const headScriptTag = document.createElement("script") - headScriptTag.textContent = headScript() - if (headScriptTag.textContent !== "") { - document.head.append(headScriptTag) + // GA 4 Tracking + const gaLoadNode = gaLoadScript() + const gaCaptureNode = gaCaptureScript() + if (gaLoadNode && gaCaptureNode) { + document.head.append(gaLoadNode) + document.head.append(gaCaptureNode) } - - const bodyTopTagTmpl = document.createElement("template") - bodyTopTagTmpl.innerHTML = bodyTopTag() - if (bodyTopTagTmpl.innerHTML !== "") { - document.body.prepend(bodyTopTagTmpl.content.cloneNode(true)) + // UA Tracking + const uaScriptTag = document.createElement("script") + uaScriptTag.textContent = uaScript() + if (uaScriptTag.textContent !== "") { + document.head.append(uaScriptTag) } document.body.dataset.customScriptsLoaded = "true" @@ -80,6 +95,10 @@ function BloomApp({ Component, router, pageProps }: AppProps) { // } // }, []) + if (!initialized) { + return null + } + // NOTE: Seeds and UI-Components both use a NavigationContext to help internal links use Next's // routing system, so we'll include both here until UIC is no longer in use. return ( diff --git a/sites/public/src/pages/additional-resources.tsx b/sites/public/src/pages/additional-resources.tsx index 26929a7ca7..cdb5fc7f8c 100644 --- a/sites/public/src/pages/additional-resources.tsx +++ b/sites/public/src/pages/additional-resources.tsx @@ -1,22 +1,35 @@ -import React, { useEffect, useContext } from "react" +import React, { useEffect, useContext, useState } from "react" import Head from "next/head" -import Markdown from "markdown-to-jsx" import Layout from "../layouts/application" -import { - t, - InfoCardGrid, - InfoCard, - PageHeader, - MarkdownSection, -} from "@bloom-housing/ui-components" +import { t, PageHeader } from "@bloom-housing/ui-components" import { UserStatus } from "../lib/constants" -import { PageView, pushGtmEvent, AuthContext } from "@bloom-housing/shared-helpers" +import { AuthContext, PageView, pushGtmEvent } from "@bloom-housing/shared-helpers" + +const getAdditionalResourcesSection = async (jurisdiction: string) => { + return import( + `../page_content/jurisdiction_overrides/${jurisdiction + .toLowerCase() + .replace(" ", "_")}/additional-resources-section` + ) +} const AdditionalResources = () => { const pageTitle = t("pageTitle.additionalResources") const subTitle = t("pageDescription.additionalResources") - const { profile } = useContext(AuthContext) + const [additionalResources, setAdditionalResources] = useState() + + useEffect(() => { + const loadPageContent = async () => { + const additionalResources = await getAdditionalResourcesSection( + process.env.jurisdictionName || "" + ) + setAdditionalResources(additionalResources.AdditionalResourcesSection) + } + loadPageContent().catch(() => { + console.log("additional-resources-section doesn't exist") + }) + }, []) useEffect(() => { pushGtmEvent({ @@ -33,46 +46,9 @@ const AdditionalResources = () => { {pageTitle} - {t("nav.siteTitle")} - {pageTitle}} subtitle={subTitle} inverse={true}> -
-
-
- - - Page content here - - -
- -
-
+ {additionalResources} ) } diff --git a/sites/public/src/pages/applications/financial/income.tsx b/sites/public/src/pages/applications/financial/income.tsx index b056a75241..229d9e3a70 100644 --- a/sites/public/src/pages/applications/financial/income.tsx +++ b/sites/public/src/pages/applications/financial/income.tsx @@ -75,19 +75,20 @@ const ApplicationIncome = () => { const { income, incomePeriod } = data const incomeValue = income.replaceAll(",", "") - // Skip validation of total income if the applicant has income vouchers. - const validationError = application.incomeVouchers - ? null - : verifyIncome(listing, incomeValue, incomePeriod) - setIncomeError(validationError) - - if (!validationError) { - const toSave = { income: incomeValue, incomePeriod } - - conductor.completeSection(currentPageSection) - conductor.currentStep.save(toSave) - conductor.routeToNextOrReturnUrl() - } + // Commenting out validation to not have income be a blocker https://github.com/bloom-housing/bloom/issues/3675 + // // Skip validation of total income if the applicant has income vouchers. + // const validationError = application.incomeVouchers + // ? null + // : verifyIncome(listing, incomeValue, incomePeriod) + // setIncomeError(validationError) + + // if (!validationError) { + const toSave = { income: incomeValue, incomePeriod } + + conductor.completeSection(currentPageSection) + conductor.currentStep.save(toSave) + conductor.routeToNextOrReturnUrl() + // } } const onError = () => { window.scrollTo(0, 0) diff --git a/sites/public/src/pages/applications/review/confirmation.tsx b/sites/public/src/pages/applications/review/confirmation.tsx index 3af34b07ba..ad5bba8a63 100644 --- a/sites/public/src/pages/applications/review/confirmation.tsx +++ b/sites/public/src/pages/applications/review/confirmation.tsx @@ -22,6 +22,7 @@ const ApplicationConfirmation = () => { const router = useRouter() const imageUrl = imageUrlFromListing(listing, parseInt(process.env.listingPhotoSize))[0] + const doorwayApp = window?.sessionStorage?.getItem("bloom-app-source") === "dhp" const content = useMemo(() => { switch (listing?.reviewOrderType) { @@ -124,7 +125,13 @@ const ApplicationConfirmation = () => { - {t("application.review.confirmation.browseMore")} + {doorwayApp ? ( + + {t("application.review.confirmation.browseMoreDoorway")} + + ) : ( + {t("application.review.confirmation.browseMore")} + )} diff --git a/sites/public/src/pages/applications/review/summary.tsx b/sites/public/src/pages/applications/review/summary.tsx index 5068d2fa8d..9d2a4c8ee9 100644 --- a/sites/public/src/pages/applications/review/summary.tsx +++ b/sites/public/src/pages/applications/review/summary.tsx @@ -81,9 +81,12 @@ const ApplicationSummary = () => { .then(() => { conductor.routeToNextOrReturnUrl() }) - .catch(() => { + .catch((e) => { setValidationError(true) window.scrollTo(0, 0) + throw new Error( + `An error occurred while trying to verify the application submission is valid. ${e.message}` + ) }) } diff --git a/sites/public/src/pages/applications/start/choose-language.tsx b/sites/public/src/pages/applications/start/choose-language.tsx index a91aa8e3e8..92d8f56f99 100644 --- a/sites/public/src/pages/applications/start/choose-language.tsx +++ b/sites/public/src/pages/applications/start/choose-language.tsx @@ -45,7 +45,6 @@ const ApplicationChooseLanguage = () => { const { conductor } = context const listingId = router.query.listingId - useEffect(() => { pushGtmEvent({ event: "pageView", @@ -68,6 +67,9 @@ const ApplicationChooseLanguage = () => { conductor.listing = context.listing setListing(context.listing) } + if (typeof window !== "undefined" && router.query.source === "dhp") { + window.sessionStorage.setItem("bloom-app-source", "dhp") + } }, [router, conductor, context, listingId, initialStateLoaded, profile]) useEffect(() => { diff --git a/sites/public/src/pages/disclaimer.tsx b/sites/public/src/pages/disclaimer.tsx index 296ab702d9..943f0c7bb4 100644 --- a/sites/public/src/pages/disclaimer.tsx +++ b/sites/public/src/pages/disclaimer.tsx @@ -1,13 +1,21 @@ -import React, { useEffect, useContext } from "react" +import React, { useEffect, useContext, useState } from "react" import { PageHeader, MarkdownSection, t } from "@bloom-housing/ui-components" import Markdown from "markdown-to-jsx" import { PageView, pushGtmEvent, AuthContext } from "@bloom-housing/shared-helpers" import { UserStatus } from "../lib/constants" import Layout from "../layouts/application" -import pageContent from "../md_content/disclaimer.md" + +const getDisclaimerSection = async (jurisdiction: string) => { + return import( + `../page_content/jurisdiction_overrides/${jurisdiction + .toLowerCase() + .replace(" ", "_")}/disclaimer.md` + ) +} const Disclaimer = () => { const { profile } = useContext(AuthContext) + const [disclaimerSection, setDisclaimerSection] = useState("") useEffect(() => { pushGtmEvent({ @@ -17,13 +25,23 @@ const Disclaimer = () => { }) }, [profile]) + useEffect(() => { + const loadPageContent = async () => { + const disclaimer = await getDisclaimerSection(process.env.jurisdictionName || "") + setDisclaimerSection(disclaimer.default) + } + loadPageContent().catch(() => { + console.log("disclaimer section doesn't exist") + }) + }, []) + const pageTitle = <>{t("pageTitle.disclaimer")} return ( - {pageContent} + {disclaimerSection} ) diff --git a/sites/public/src/pages/get-assistance.tsx b/sites/public/src/pages/get-assistance.tsx new file mode 100644 index 0000000000..3ee2863cd6 --- /dev/null +++ b/sites/public/src/pages/get-assistance.tsx @@ -0,0 +1,123 @@ +import React, { useEffect, useContext, useState } from "react" +import Head from "next/head" +import Markdown from "markdown-to-jsx" +import Layout from "../layouts/application" +import { t, Icon, PageHeader, MarkdownSection } from "@bloom-housing/ui-components" +import { UserStatus } from "../lib/constants" +import { AuthContext, PageView, pushGtmEvent } from "@bloom-housing/shared-helpers" +import RenderIf from "../RenderIf" + +const getGetAssistanceSection = async (jurisdiction: string) => { + return import( + `../page_content/jurisdiction_overrides/${jurisdiction + .toLowerCase() + .replace(" ", "_")}/get_assistance.md` + ) +} + +const getSidebarSection = async (jurisdiction: string) => { + return import( + `../page_content/jurisdiction_overrides/${jurisdiction + .toLowerCase() + .replace(" ", "_")}/resources/sidebar.md` + ) +} + +const GetAssistance = () => { + const pageTitle = t("pageTitle.getAssistance") + const subTitle = t("pageDescription.getAssistance") + + const { profile } = useContext(AuthContext) + const [getAssistanceSection, setGetAssistanceSection] = useState("") + const [sidebarSection, setSidebarSection] = useState("") + + useEffect(() => { + pushGtmEvent({ + event: "pageView", + pageTitle: "Get Assistance", + status: profile ? UserStatus.LoggedIn : UserStatus.NotLoggedIn, + }) + }, [profile]) + + useEffect(() => { + const loadPageContent = async () => { + const getAssistance = await getGetAssistanceSection(process.env.jurisdictionName || "") + setGetAssistanceSection(getAssistance.default) + const sideBarSection = await getSidebarSection(process.env.jurisdictionName || "") + setSidebarSection(sideBarSection.default) + } + loadPageContent().catch(() => { + console.log("get assistance section doesn't exist") + }) + }, []) + + return ( + + + + {pageTitle} - {t("nav.siteTitle")} + + + + {pageTitle}} subtitle={subTitle} inverse={true}> + +
+
+
+ + ( +

+ {children} +

+ ), + }, + a: { + component: ({ children, ...props }) => ( + + {children} + + ), + }, + hr: { + component: ({ ...props }) =>
, + }, + Icon, + RenderIf, + }, + }} + > + {getAssistanceSection} +
+
+
+ +
+
+
+ ) +} + +export default GetAssistance diff --git a/sites/public/src/pages/how-it-works.tsx b/sites/public/src/pages/how-it-works.tsx new file mode 100644 index 0000000000..42920e48b0 --- /dev/null +++ b/sites/public/src/pages/how-it-works.tsx @@ -0,0 +1,147 @@ +import React, { useEffect, useContext, useState } from "react" +import Head from "next/head" +import Markdown from "markdown-to-jsx" +import Layout from "../layouts/application" +import { t, PageHeader, MarkdownSection } from "@bloom-housing/ui-components" +import { UserStatus } from "../lib/constants" +import { AuthContext, PageView, pushGtmEvent } from "@bloom-housing/shared-helpers" +import RenderIf from "../RenderIf" + +interface SubSectionProps { + closedLabel: string + openLabel: string + children: React.ReactNode +} + +const getPageContent = async (jurisdiction: string) => { + return import( + `../page_content/jurisdiction_overrides/${jurisdiction + .toLowerCase() + .replace(" ", "_")}/how_it_works.md` + ) +} + +const SubSection = (props: SubSectionProps) => { + const [isExpanded, setExpanded] = useState(false) + + return ( +
+ + + {isExpanded &&
{props.children}
} +
+ ) +} + +const GetAssistance = () => { + const pageTitle = t("pageTitle.howItWorks") + const subTitle = t("pageDescription.howItWorks") + + const { profile } = useContext(AuthContext) + const [pageContent, setPageContent] = useState("") + + useEffect(() => { + const loadPageContent = async () => { + const loadedPageContent = await getPageContent(process.env.jurisdictionName || "") + setPageContent(loadedPageContent.default) + } + loadPageContent().catch(() => { + console.log("how it work section doesn't exist") + }) + }, []) + + useEffect(() => { + pushGtmEvent({ + event: "pageView", + pageTitle: "How it Works", + status: profile ? UserStatus.LoggedIn : UserStatus.NotLoggedIn, + }) + }, [profile]) + + return ( + + + + {pageTitle} - {t("nav.siteTitle")} + + + + {pageTitle}} subtitle={subTitle} inverse={true}> + +
+
+
+ + str.replace(/ /gi, "-").toLowerCase(), + overrides: { + h2: { + component: ({ children, ...props }) => ( +

+ {children} +

+ ), + }, + h3: { + component: ({ children, ...props }) => ( +

+ {children} +

+ ), + }, + h4: { + component: ({ children, ...props }) => ( +

+ {children} +

+ ), + }, + h5: { + component: ({ children, ...props }) => ( +
+ {children} +
+ ), + }, + a: { + component: ({ children, ...props }) => ( + + {children} + + ), + }, + ol: { + component: ({ ...props }) =>
    , + }, + SubSection, + RenderIf, + }, + }} + > + {pageContent} + + +
+
+
+
+ ) +} + +export default GetAssistance diff --git a/sites/public/src/pages/index.tsx b/sites/public/src/pages/index.tsx index ae77ce0c36..2bb7d1f050 100644 --- a/sites/public/src/pages/index.tsx +++ b/sites/public/src/pages/index.tsx @@ -1,6 +1,6 @@ import React, { useContext, useEffect, useState } from "react" import Head from "next/head" -import { AlertBox, t, SiteAlert, ActionBlock, Icon } from "@bloom-housing/ui-components" +import { AlertBox, t, SiteAlert, ActionBlock, Icon, LinkButton } from "@bloom-housing/ui-components" import { Button, Heading } from "@bloom-housing/ui-seeds" import { PageView, pushGtmEvent, AuthContext } from "@bloom-housing/shared-helpers" import { UserStatus } from "../lib/constants" @@ -8,6 +8,8 @@ import Layout from "../layouts/application" import { ConfirmationModal } from "../components/account/ConfirmationModal" import { MetaTags } from "../components/shared/MetaTags" import { fetchJurisdictionByName } from "../lib/hooks" +import Markdown from "markdown-to-jsx" +import RenderIf from "../RenderIf" import { Jurisdiction } from "@bloom-housing/shared-helpers/src/types/backend-swagger" import PageHero from "../components/page/Hero" @@ -15,6 +17,14 @@ interface IndexProps { jurisdiction: Jurisdiction } +const getHowItWorks = async (jurisdiction: string) => { + return import( + `../page_content/jurisdiction_overrides/${jurisdiction + .toLowerCase() + .replace(" ", "_")}/homepage_how_it_works.md` + ) +} + export default function Home(props: IndexProps) { const blankAlertInfo = { alertMessage: null, @@ -22,6 +32,7 @@ export default function Home(props: IndexProps) { } const { profile } = useContext(AuthContext) const [alertInfo, setAlertInfo] = useState(blankAlertInfo) + const [howItWorksContent, setHowItWorksContent] = useState("") useEffect(() => { pushGtmEvent({ @@ -31,6 +42,16 @@ export default function Home(props: IndexProps) { }) }, [profile]) + useEffect(() => { + const loadPageContent = async () => { + const privacy = await getHowItWorks(process.env.jurisdictionName || "") + setHowItWorksContent(privacy.default) + } + loadPageContent().catch(() => { + console.log("homepage how it work section doesn't exist") + }) + }, []) + const heroTitle = ( <> {t("welcome.title")} {t("region.name")} @@ -115,6 +136,52 @@ export default function Home(props: IndexProps) { /> +
+ } + actions={[]} + /> + +

{t("welcome.learnHowToApply")}

+ +
+ ( +
    + ), + }, + h4: { + component: ({ children, ...props }) => ( +

    + {children} +

    + ), + }, + p: { + component: ({ children, ...props }) => ( +

    + {children} +

    + ), + }, + }, + }} + > + {howItWorksContent} + +
+ + {t("welcome.readAboutHowItWorks")} +
setAlertInfo({ alertMessage, alertType })} /> diff --git a/sites/public/src/pages/privacy.tsx b/sites/public/src/pages/privacy.tsx index ed307ff5bc..5bde2e3354 100644 --- a/sites/public/src/pages/privacy.tsx +++ b/sites/public/src/pages/privacy.tsx @@ -1,13 +1,22 @@ -import React, { useEffect, useContext } from "react" +import React, { useEffect, useContext, useState } from "react" import { MarkdownSection, PageHeader, t } from "@bloom-housing/ui-components" import Markdown from "markdown-to-jsx" import { PageView, pushGtmEvent, AuthContext } from "@bloom-housing/shared-helpers" +import RenderIf from "../../../public/src/RenderIf" import { UserStatus } from "../lib/constants" import Layout from "../layouts/application" -import pageContent from "../md_content/privacy_policy.md" + +const getPrivacySection = async (jurisdiction: string) => { + return import( + `../page_content/jurisdiction_overrides/${jurisdiction + .toLowerCase() + .replace(" ", "_")}/privacy_policy.md` + ) +} const Privacy = () => { const { profile } = useContext(AuthContext) + const [privacySection, setPrivacySection] = useState("") useEffect(() => { pushGtmEvent({ @@ -17,13 +26,31 @@ const Privacy = () => { }) }, [profile]) + useEffect(() => { + const loadPageContent = async () => { + const privacy = await getPrivacySection(process.env.jurisdictionName || "") + setPrivacySection(privacy.default) + } + loadPageContent().catch(() => { + console.log("privacy section doesn't exist") + }) + }, []) + const pageTitle = <>{t("pageTitle.privacy")} return ( - {pageContent} + + {privacySection} + ) diff --git a/sites/public/src/styles/overrides.scss b/sites/public/src/styles/overrides.scss new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/sites/public/src/styles/overrides.scss @@ -0,0 +1 @@ + diff --git a/yarn.lock b/yarn.lock index 2958848e01..3c3b8c7987 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6380,7 +6380,7 @@ acorn-walk@^8.1.1: acorn@^7.0.0, acorn@^7.1.1: version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== acorn@^8.0.4, acorn@^8.2.4, acorn@^8.4.1, acorn@^8.5.0: @@ -9242,7 +9242,7 @@ enhanced-resolve@^5.8.3: enquirer@^2.3.6: version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== dependencies: ansi-colors "^4.1.1" @@ -12137,7 +12137,7 @@ is-obj@^2.0.0: is-path-inside@^3.0.2, is-path-inside@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: @@ -16474,7 +16474,7 @@ process-on-spawn@^1.0.0: progress@^2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== promise-inflight@^1.0.1: