Skip to content

Commit

Permalink
chore(build): bumping to version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneyrehm committed Jan 31, 2017
1 parent 93e3332 commit b8fd3cd
Show file tree
Hide file tree
Showing 20 changed files with 30 additions and 19 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# ally.js change log

## 1.4.1 - Module Mania

*January 31st 2017*. This release does not contain any functional changes.

* replacing [array.prototype.findindex](https://github.com/paulmillr/Array.prototype.findIndex) by [`ally.util.arrayFindIndex`][ally/util] - [PR #154](https://github.com/medialize/ally.js/pull/154)
* adding `dist/esm` which provides the modules compiled to ES5 but exposing them in ES6 modules for [simplified use in TypeScript projects](https://allyjs.io/getting-started.html#using-with-typescript) - [PR #154](https://github.com/medialize/ally.js/pull/154)


---


## 1.4.0 - The SVG Awakens

*January 12th 2017*. We're continuing our journey to *make accessibility simpler* (by advancing our understanding of the "platform"). Version 1.4.0 comes 4 months after the last feature release. We pushed [about 50 commits](https://github.com/medialize/ally.js/compare/1.3.2...1.4.0) in an effort to understand focus behavior in SVG, update the build systems and upgrade automated testing to modern browser versions.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/element/disabled.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1><code>ally.element.disabled</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var button = document.getElementById('toggle-disabled');
Expand Down
2 changes: 1 addition & 1 deletion docs/api/fix/pointer-focus-children.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2>Fixed Behavior</h2>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
ally.fix.pointerFocusChildren({
Expand Down
2 changes: 1 addition & 1 deletion docs/api/fix/pointer-focus-input.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h2>Fixed Behavior</h2>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
ally.fix.pointerFocusInput({
Expand Down
2 changes: 1 addition & 1 deletion docs/api/fix/pointer-focus-parent.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h2>Fixed Behavior</h2>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
ally.fix.pointerFocusParent({
Expand Down
2 changes: 1 addition & 1 deletion docs/api/maintain/disabled.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1><code>ally.maintain.disabled</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var handle;
Expand Down
2 changes: 1 addition & 1 deletion docs/api/maintain/hidden.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h1><code>ally.maintain.hidden</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var handle;
Expand Down
2 changes: 1 addition & 1 deletion docs/api/maintain/tab-focus.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h1><code>ally.maintain.tabFocus</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var handle;
Expand Down
2 changes: 1 addition & 1 deletion docs/api/query/first-tabbable.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1><code>ally.query.firstTabbable</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var element = ally.query.firstTabbable({
Expand Down
2 changes: 1 addition & 1 deletion docs/api/query/focusable.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1><code>ally.query.focusable</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
ally.query.focusable().forEach(function(element) {
Expand Down
2 changes: 1 addition & 1 deletion docs/api/query/tabbable.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1><code>ally.query.tabbable</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
ally.query.tabbable().forEach(function(element) {
Expand Down
2 changes: 1 addition & 1 deletion docs/api/query/tabsequence.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h1><code>ally.query.tabsequence</code> Example</h1>
<h2>Tab Sequence</h2>
<ol id="output"></ol>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var sequence = ally.query.tabsequence({
Expand Down
2 changes: 1 addition & 1 deletion docs/api/style/focus-source.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ <h1><code>ally.style.focusSource</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var buttonPass = document.getElementById('focus-pass');
Expand Down
2 changes: 1 addition & 1 deletion docs/api/style/focus-within.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1><code>ally.style.focusWithin</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var handle = ally.style.focusWithin();
Expand Down
2 changes: 1 addition & 1 deletion docs/api/when/focusable.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ <h1><code>ally.when.focusable</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var button = document.getElementById('activate');
Expand Down
2 changes: 1 addition & 1 deletion docs/api/when/key.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1><code>ally.when.key</code> Example</h1>

</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
ally.when.key({
Expand Down
2 changes: 1 addition & 1 deletion docs/api/when/visible-area.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ <h1><code>ally.when.visibleArea</code> Example</h1>
</main>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
var button = document.getElementById('activate');
Expand Down
2 changes: 1 addition & 1 deletion docs/legal.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The logo is a composition of the [United Nations Accessibility Logo](https://www
In its UMD bundle ally.js contains resources of the following projects:

* [domtokenlist-shim](https://github.com/jwilsson/domtokenlist), also MIT license, removed in `v1.2.0`
* [array.prototype.findindex](https://github.com/paulmillr/Array.prototype.findIndex), also MIT license, removed in [`e2c6e42`](https://github.com/medialize/ally.js/pull/154/commits/e2c6e42f29a1f38f2d01e5455420e0595d72d7b9)
* [array.prototype.findindex](https://github.com/paulmillr/Array.prototype.findIndex), also MIT license, removed in `v1.4.1`
* [css.escape](https://github.com/mathiasbynens/CSS.escape), also MIT license
* [platform.js](https://github.com/bestiejs/platform.js), also MIT License

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/dialog.example.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ <h1 id="dialog-title">Name Entry</h1>
</div>
</div>

<script src="https://cdn.jsdelivr.net/ally.js/1.4.0/ally.min.js"></script>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>

<script id="example-js">
// Grab the elements we need to interact with
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ally.js",
"version": "1.4.0",
"version": "1.4.1",
"description": "JavaScript library to help web applications with accessibility concerns",
"main": "ally.min.js",
"npmName": "ally.js",
Expand Down

0 comments on commit b8fd3cd

Please sign in to comment.