-
Notifications
You must be signed in to change notification settings - Fork 202
0.5.x Work in Progress #194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fix _removeDotSegments logic to pass all the json-ld.org RFC3986 tests.
Fixes various RFC3986 tests with dot segments in the base path.
After code updates the hasAuthority paramter is no longer used.
Removed: - Bower support. Use NPM, a NPM proxy site, or build your own bundle. Changed: - Switch to Karma for browser testing. - Switch to webpack to build browser bundles. - Use async APIs for test generation. - Done to allow testing in Node.js and browsers. - Required major testing changes to make everything async. - Workarounds added to get async generated mocha tests working. - Improved support for loading various types of tests. - Can load local files, test manifests, or plain js files (in Node.js). - Use ES2015 in tests and babel/webpack to support older platforms.
- https://github.com/w3c/web-platform-tests/tree/master/resources - https://github.com/w3c/web-platform-tests/tree/master/resources/webidl2/lib - Keep patch to always add WebIDL2 to the window.
- Add package files. - Add prepublish script. - Fixes.
Karma config has it's own webpack rules.
- Add done call. - Add to node tests.
- Remove Makefile. - Add scripts directly in package.json.
- Add fetch-test-suites script to create shallow copies. - Update travis support to use fetch-test-suites. - Update README. - Default to local ./test-suites/ else sibling dirs.
- Use array representation of @container in processing. - Improved error detection for @container variations.
(cherry picked from commit eb54804)
…, `@id`, `@language`, `@reverse`, and `@type`. This also sets up for additional keywords in 1.1.
…venting cases when keyword alias had `@type` defined, as in Compact 0073.
This branch has been merged into master and released as npm "latest". Remaining items above will be added as issues and addressed in 0.5.x, 0.6.x, or later as appropriate. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
DO NOT MERGE: This is a work-in-progress PR tracking 0.5.x progress.
While under development the 0.5.x branch is being published to npm with the "dev" tag. 0.4.x will use the "latest" tag until 0.5.x is mature.NOTE: This branch has been released as the "latest" npm tag as 0.5.17.
A main 0.5.x feature will be switching to a more modular system based on CommonJS and ES2015. Modularity was also done in #126. That effort went fully to ES modules. This attempt will likely start using CommonJS and have more functionality per file. As was done in the forge update, CommonJS is used for Node.js compatibility and webpack (or similar) will be used to create browser bundles.
jsonld.options.usePureJavaScript
Used for at least allowing native SHA256 implementation.As this is a rather major change it needs testing and feedback before hitting master. Please test and leave comments, thanks!