Skip to content

Commit 2b37d36

Browse files
authored
Merge pull request #485 from aguynamedryan/changelog_fixes
Changelog fixes
2 parents 072ae7d + fc1a718 commit 2b37d36

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ Core developers only:
294294

295295
#### 4.2 Dynamic (Vue.js) custom component naming
296296

297-
Formerly, custom components behaved differently than core components. `Components::Some::Component` was translated to a Vue.js componente named `custom-some-component`, in order to match their (now changed) dsl method name `custom_some_component`
297+
Formerly, custom components behaved differently than core components. `Components::Some::Component` was translated to a Vue.js component named `custom-some-component`, in order to match their (now changed) dsl method name `custom_some_component`
298298

299299
This behavior changes in `1.0.0`:
300300

@@ -349,7 +349,7 @@ Please note that the `components` block is still supported, but will be removed
349349

350350
**Migration Todos:**
351351

352-
- [ ] To be on the safe side, remove all the `components {}` wrapping blocks in your apps&pages
352+
- [ ] To be on the safe side, remove all the `components {}` wrapping blocks in your apps and pages
353353

354354

355355
#### 6. Partials are now normal method calls and don't need a block
@@ -418,7 +418,7 @@ We changed the naming to be more expressive and in order to align with the exist
418418

419419
**Migration Todos:**
420420

421-
- [ ] On an app layout, you should now use `yield_page` instead of `page_comtent`
421+
- [ ] On an app layout, you should now use `yield_page` instead of `page_component`
422422

423423
#### 9. Wrapping DOM structure of pages has changed
424424

@@ -482,7 +482,7 @@ which will render:
482482
</span>
483483
</div>
484484
<div class="matestack-page-wrapper">
485-
<div><!--this div is necessary for conditonal switch to async template via v-if -->
485+
<div><!--this div is necessary for conditional switch to async template via v-if -->
486486
<div class="matestack-page-root">
487487
your page markup
488488
</div>
@@ -503,7 +503,7 @@ and during async page request triggered via transition:
503503
</span>
504504
</div>
505505
<div class="matestack-page-wrapper loading">
506-
<div><!--this div is necessary for conditonal switch to async template via v-if -->
506+
<div><!--this div is necessary for conditional switch to async template via v-if -->
507507
<div class="matestack-page-root">
508508
your page markup
509509
</div>
@@ -527,7 +527,7 @@ end
527527

528528
**Migration Todos:**
529529

530-
- [ ] Please add an unique ID to each `async` component usage, even if matestack is currntly autogeneratin an ID if not applied. This will be removed in future releases
530+
- [ ] Please add an unique ID to each `async` component usage, even if matestack is currently auto-generating an ID if not applied. This will be removed in future releases
531531

532532
#### 12. New `toggle` component is replacing `async` shown_on, hide_on, hide_after...
533533

@@ -830,10 +830,10 @@ The Absolute Component has been removed and can no longer be used.
830830
XSS/Script injection vulnerablilty fixed in 0.7.4
831831

832832
* matestack-ui-core was vulnerable to XSS/Script injection
833-
* matestack-ui-core did not excape strings by default and did not cover this in the docs
833+
* matestack-ui-core did not escape strings by default and did not cover this in the docs
834834
* matestack-ui-core should have escaped strings by default in order to prevent XSS/Script injection vulnerability
835835
* 0.7.4 fixes that by performing string escaping by default now
836-
* a new component `unescaped` (like `plain` before) allows to render unsecaped strings, but forces the developer to explicitly make a concious decision about that
836+
* a new component `unescaped` (like `plain` before) allows to render unescaped strings, but forces the developer to explicitly make a concious decision about that
837837

838838
```ruby
839839
class Pages::MyApp::MyExamplePage < Matestack::Ui::Page

0 commit comments

Comments
 (0)