Skip to content

Commit

Permalink
- Refactoring/Fix: For default escapeNFDForDatabaseNames check, tem…
Browse files Browse the repository at this point in the history
…porarily

    circumvent current limitations in Babel until
    <babel/babel#5978> addressed; (see also
    <#311 (comment)>);
    fixes #311
- Linting: Expand ESLint file coverage and apply minor linting fix to test file
- Testing: Update web-platform-tests and our tests accordingly
- npm: Update `eventtargeter` to avoid automatic `Object.setPrototypeOf`
    calls (make conditional on `CFG.fullIDLSupport`); fixes #313
- npm: Bump to 3.6.0
  • Loading branch information
brettz9 committed Apr 9, 2018
1 parent 901e41c commit fc1c0f3
Show file tree
Hide file tree
Showing 35 changed files with 638 additions and 424 deletions.
7 changes: 5 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ examples
node_modules
tests-polyfill
web-platform-tests
test-support/**
!test-support/webworker
test-support/**/*.js
!test-support/webworker/*.js
!test-support/*.js
test-support/qunit-2.1.1.js
test-support/latest-erring-bundled.js
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# IndexedDBShim changes

## 3.6.0

- Refactoring/Fix: For default `escapeNFDForDatabaseNames` check, temporarily
circumvent current limitations in Babel until
<https://github.com/babel/babel/issues/5978> addressed; (see also
<https://github.com/axemclion/IndexedDBShim/issues/311#issuecomment-316090147>);
fixes #311
- Linting: Expand ESLint file coverage and apply minor linting fix to test file
- Testing: Update web-platform-tests and our tests accordingly
- npm: Update `eventtargeter` to avoid automatic `Object.setPrototypeOf`
calls (make conditional on `CFG.fullIDLSupport`); fixes #313

## 3.5.1

- npm: Update `package-lock.json`
Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ module.exports = function (grunt) {
},

eslint: {
files: ['src/**/*.js', 'tests-qunit/**/*.js', 'tests-mocha/**/*.js', 'test-support/node*.js', 'test-support/environment.js', 'test-support/custom-reporter.js', 'test-support/webworker/*.js', 'Gruntfile.js'],
files: ['src/**/*.js', 'tests-qunit/**/*.js', 'tests-mocha/**/*.js', 'test-support/*.js', 'test-support/webworker/*.js', 'Gruntfile.js', '!test-support/qunit-2.1.1.js', '!test-support/latest-erring-bundled.js'],
options: {
configFile: '.eslintrc'
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ to the data format, thereby breaking old data.***
[![CDNJS](https://img.shields.io/cdnjs/v/IndexedDBShim.svg)](https://cdnjs.com/libraries/IndexedDBShim)
[![License](https://img.shields.io/npm/l/indexeddbshim.svg)](LICENSE-APACHE)

|[Live Demo!](https://cdn.rawgit.com/axemclion/IndexedDBShim/v3.5.1/index.html)
|[Live Demo!](https://cdn.rawgit.com/axemclion/IndexedDBShim/v3.6.0/index.html)
|------------------------------------------------------------

__Use a single, indexable, offline storage API across all desktop and mobile
Expand Down
5 changes: 4 additions & 1 deletion dist/indexeddbshim-Key.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/indexeddbshim-Key.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/indexeddbshim-Key.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/indexeddbshim-Key.min.js.map

Large diffs are not rendered by default.

24 changes: 18 additions & 6 deletions dist/indexeddbshim-UnicodeIdentifiers-node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/indexeddbshim-UnicodeIdentifiers-node.js.map

Large diffs are not rendered by default.

20 changes: 16 additions & 4 deletions dist/indexeddbshim-UnicodeIdentifiers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/indexeddbshim-UnicodeIdentifiers.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/indexeddbshim-UnicodeIdentifiers.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/indexeddbshim-UnicodeIdentifiers.min.js.map

Large diffs are not rendered by default.

24 changes: 18 additions & 6 deletions dist/indexeddbshim-node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/indexeddbshim-node.js.map

Large diffs are not rendered by default.

20 changes: 16 additions & 4 deletions dist/indexeddbshim-noninvasive.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/indexeddbshim-noninvasive.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/indexeddbshim-noninvasive.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/indexeddbshim-noninvasive.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit fc1c0f3

Please sign in to comment.