@bloom-housing/ui-components 2.0.1-alpha.6 → 3.0.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +80 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,86 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.1-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.0...@bloom-housing/ui-components@3.0.1-alpha.0) (2021-11-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* 1837/preferences cleanup 3 (#2144) ([3ce6d5e](https://github.com/bloom-housing/bloom/commit/3ce6d5eb5aac49431ec5bf4912dbfcbe9077d84e)), closes [#2144](https://github.com/bloom-housing/bloom/issues/2144)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
* Preferences are now M-N relation with a listing and have an intermediate table with ordinal number
|
|
15
|
+
|
|
16
|
+
* refactor(backend): preferences deduplication
|
|
17
|
+
|
|
18
|
+
So far each listing referenced it's own unique Preferences. This change introduces Many to Many
|
|
19
|
+
relationship between Preference and Listing entity and forces sharing Preferences between listings.
|
|
20
|
+
|
|
21
|
+
* feat(backend): extend preferences migration with moving existing relations to a new intermediate tab
|
|
22
|
+
|
|
23
|
+
* feat(backend): add Preference - Jurisdiction ManyToMany relation
|
|
24
|
+
|
|
25
|
+
* feat: adapt frontend to backend changes
|
|
26
|
+
|
|
27
|
+
* fix(backend): typeORM preferences select statement
|
|
28
|
+
|
|
29
|
+
* fix(backend): connect preferences with jurisdictions in seeds, fix pref filter validator
|
|
30
|
+
|
|
31
|
+
* fix(backend): fix missing import in preferences-filter-params.ts
|
|
32
|
+
|
|
33
|
+
* refactor: rebase issue
|
|
34
|
+
|
|
35
|
+
* feat: uptake jurisdictional preferences
|
|
36
|
+
|
|
37
|
+
* fix: fixup tests
|
|
38
|
+
|
|
39
|
+
* fix: application preferences ignore page, always separate
|
|
40
|
+
|
|
41
|
+
* Remove page from src/migration/1633359409242-add-listing-preferences-intermediate-relation.ts
|
|
42
|
+
|
|
43
|
+
* fix: preference fetching and ordering/pages
|
|
44
|
+
|
|
45
|
+
* Fix code style issues with Prettier
|
|
46
|
+
|
|
47
|
+
* fix(backend): query User__leasingAgentInListings__jurisdiction_User__leasingAgentIn specified more
|
|
48
|
+
|
|
49
|
+
* fix: perferences cypress tests
|
|
50
|
+
|
|
51
|
+
Co-authored-by: Michal Plebanski <michalp@airnauts.com>
|
|
52
|
+
Co-authored-by: Emily Jablonski <emily.jablonski@exygy.com>
|
|
53
|
+
Co-authored-by: Lint Action <lint-action@samuelmeuli.com>
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
# [3.0.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/ui-components@2.0.1-alpha.8...@bloom-housing/ui-components@3.0.0) (2021-11-05)
|
|
60
|
+
|
|
61
|
+
**Note:** Version bump only for package @bloom-housing/ui-components
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
## [2.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@2.0.1-alpha.7...@bloom-housing/ui-components@2.0.1-alpha.8) (2021-11-05)
|
|
68
|
+
|
|
69
|
+
**Note:** Version bump only for package @bloom-housing/ui-components
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
## [2.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@2.0.1-alpha.6...@bloom-housing/ui-components@2.0.1-alpha.7) (2021-11-04)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Reverts
|
|
79
|
+
|
|
80
|
+
* Revert "refactor: listing preferences and adds jurisdictional filtering" ([41f72c0](https://github.com/bloom-housing/bloom/commit/41f72c0db49cf94d7930f5cfc88f6ee9d6040986))
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
6
86
|
## [2.0.1-alpha.6](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@2.0.1-alpha.5...@bloom-housing/ui-components@2.0.1-alpha.6) (2021-11-04)
|
|
7
87
|
|
|
8
88
|
**Note:** Version bump only for package @bloom-housing/ui-components
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bloom-housing/ui-components",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1-alpha.0",
|
|
4
4
|
"author": "Sean Albert <sean.albert@exygy.com>",
|
|
5
5
|
"description": "Shared user interface components for Bloom affordable housing system",
|
|
6
6
|
"homepage": "https://github.com/bloom-housing/bloom/tree/master/shared/ui-components",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"webpack": "^4.44.2"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@bloom-housing/backend-core": "^
|
|
72
|
+
"@bloom-housing/backend-core": "^3.0.1-alpha.0",
|
|
73
73
|
"@mapbox/mapbox-sdk": "^0.13.0",
|
|
74
74
|
"@types/body-scroll-lock": "^2.6.1",
|
|
75
75
|
"@types/jwt-decode": "^2.2.1",
|
|
@@ -100,5 +100,5 @@
|
|
|
100
100
|
"tailwindcss": "2.2.10",
|
|
101
101
|
"typesafe-actions": "^5.1.0"
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "a1bb74640840fb852b7819413e3c3d5b1ce0dd72"
|
|
104
104
|
}
|