@@ -4,6 +4,131 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 19.11.0] - 2019-12-16
8+ ### Added
9+ - Components
10+ - ` institutions `
11+ - ` dashboard/departments-panel `
12+ - ` dashboard/institutional-users-list `
13+ - ` dashboard/panel `
14+ - ` dashboard/projects-panel `
15+ - ` Registries::DraftRegistrationManager `
16+ - ` Registries::SchemaBlockRenderer::Editable::Files `
17+ - ` Registries::SchemaBlockRenderer::ReadOnly::Files `
18+ - ` OsfLayout::RegistriesSideNav `
19+ - ` OsfLayout::RegistriesSideNav::Icon `
20+ - ` OsfLayout::RegistriesSideNav::Label `
21+ - ` OsfLayout::RegistriesSideNav::XLink `
22+ - ` PageLink `
23+ - Mirage
24+ - Factories
25+ - ` institutional-user `
26+ - Serializers
27+ - ` institutional-user `
28+ - Routes
29+ - ` institution `
30+ - added ` dashboard ` nested route
31+ - ` guid-node `
32+ - added ` drafts ` nested route
33+ - Engines
34+ - Components
35+ - ` drafts/draft/-components/register `
36+ - Routes
37+ - ` registries `
38+ - ` drafts.draft ` , ` draft/<draftId> `
39+ - index route redirects to ` draft/<draftId>/1 `
40+ - ` drafts.draft.page ` , ` draft/<draftId>/<page> `
41+ - Utils
42+ - ` page-param `
43+ - Tests
44+ - Integration
45+ - ` draft-registration-manager `
46+ - ` page-link `
47+ - ` registries-side-nav `
48+ - Unit
49+ - ` page-param `
50+ - Acceptance
51+ - ` draft form `
52+ - Environment
53+ - Flags
54+ - added ` guid-node.drafts ` route flag
55+ - Packages
56+ - ` ember-element-helper ` v0.2.0
57+
58+ ### Changed
59+ - Components
60+ - ` paginated-list `
61+ - added ` isTable ` attribute to use a ` table ` over an ` ul `
62+ - ` sort-button `
63+ - changed local ` selected ` classes to nested global classes
64+ - ` registries/schema-block-renderer/editable/** `
65+ - ` validated-input `
66+ - Modified components to take in ` onInput ` callback.
67+ - added ` withStatSummary ` trait
68+ - ` registries/partial-registration-modal `
69+ - added ` onContinue ` hook
70+ - ` OsfLayout `
71+ - renamed ` left-nav ` to ` left-nav-old `
72+ - created new ` left-nav ` that uses ` registries-side-nav `
73+ - Mirage
74+ - Factories
75+ - ` institution `
76+ - added ` withInstitutionalUsers ` trait
77+ - Scenarios
78+ - ` default `
79+ - added ` SchemaBlock ` node with files and contributors
80+ - Models
81+ - ` base-file-item `
82+ - added ` createFolder `
83+ - ` draft-registration `
84+ - added ` registrationResponses `
85+ - ` file `
86+ - added ` toFileReference `
87+ - ` file-provider `
88+ - use ` rootFolder ` instead of ` files `
89+ - added links
90+ - ` institution `
91+ - added ` currentUserIsAdmin ` boolean
92+ - added ` statSummary ` object
93+ - ` institutional-user `
94+ - added ` userGuid ` string
95+ - ` registration `
96+ - changed ` draftRegistration ` to be a relationship
97+ - added ` registrationResponses `
98+ - added ` includedNodeIds `
99+ - added ` createDoi `
100+ - added ` draftRegistrationId `
101+ - removed ` registrationChoice `
102+ - removed ` liftEmbargo `
103+ - ` registration-schema `
104+ - added ` schemaBlocks ` inverse
105+ - ` schema-blocks `
106+ - added ` schema ` relationship
107+ - added ` elementId ` computed
108+ - added ` pageRouteParam ` computed
109+ - Routes
110+ - ` institution `
111+ - moved to ` index ` folder
112+ - ` registries.drafts.draft `
113+ - added navigation
114+ - ` registries.overview `
115+ - updated to use ` leftNavOld `
116+ - Types
117+ - Renamed ` PageResponse ` to ` RegistrationResponse `
118+ - Tests
119+ - ` schema-block-renderer `
120+ - added ` files ` block test
121+
122+ ### Removed
123+ - Tests
124+ - unit, component tests using ` FactoryGuy `
125+ - ` FactoryGuy ` factories
126+ - Packages
127+ - ` ember-data-factory-guy `
128+ - ` ember-element-helper ` (` fix-engines ` branch)
129+ - Types
130+ - ` FactoryGuy ` types
131+
7132## [ 19.10.0] - 2019-10-02
8133### Added
9134- Models
@@ -37,6 +162,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
37162 - ` selected-list `
38163 - ` upload-zone `
39164 - ` widget `
165+ - ` registries/review-form-renderer `
166+ - ` schema-block-renderer/ `
167+ - ` editable `
168+ - ` read-only `
40169- Validators
41170 - ` list ` - apply a validator to a list
42171- Tests
@@ -127,6 +256,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
127256 - darken background overlay
128257 - ` registries/registries-metadata `
129258 - use ` Subjects::Widget ` and ` Subjects::Display ` (and related managers) for subjects editable field
259+ - ` schema-block-group-renderer `
260+ - take in renderStrategy as mapper
261+ - take variable for ` registrationResponses `
262+ - ` schema-block-renderer `
263+ - broke components into ` editable ` and ` read-only ` structures
130264- Tests
131265 - renamed ` taxonomy ` to ` subject ` in ` preprint-provider ` FactoryGuy factory
132266 - Unit
@@ -135,6 +269,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
135269 - ` serializers/taxonomy-test ` renamed to ` serializers/subject-test `
136270 - ` models/preprint-test `
137271 - removed test for ` subject ` attribute
272+ - Integration
273+ - ` registries/schema-block-group-renderer ` updated to include ` renderStrategy `
138274- Mirage
139275 - Factories
140276 - ` node `
@@ -221,7 +357,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
221357 - improved update acceptance tests to perform assertions in addition to taking snapshots
222358 - improved discover acceptance tests to perform assertions in addition to taking snapshots
223359- Tests
224- - added ` ember-basic-dropdown-wormhole ` div to test index.html
360+ - added ` ember-basic-dropdown-wormhole ` div to test index.html
225361- Mirage
226362 - ` osfNestedResource `
227363 - added ` onCreate ` hook to perform additional operations after creating a child resource
0 commit comments