Skip to content
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

3.0 #55

Merged
merged 33 commits into from
Dec 19, 2015
Merged

3.0 #55

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c82e4f0
Updating dependencies for 3.0
avoidwork Dec 18, 2015
36404f6
Updating travis-ci.org config
avoidwork Dec 18, 2015
27b2c41
Initial commit of restructuring code
avoidwork Dec 18, 2015
5b4e432
Adding tiny-xml to the party
avoidwork Dec 18, 2015
f56ad44
Initial build passing lint
avoidwork Dec 18, 2015
fe34730
Deleting generated docs
avoidwork Dec 18, 2015
844cdab
All tests running & failing
avoidwork Dec 18, 2015
9c48334
Fixing build gaps
avoidwork Dec 18, 2015
ec027a1
Fixing circular dependencies
avoidwork Dec 19, 2015
c5c8475
Fixing error handling
avoidwork Dec 19, 2015
5473d22
Fixing `hypermedia()` such that the `collection` item is verified
avoidwork Dec 19, 2015
d893a0b
Getting tests running (some failing)
avoidwork Dec 19, 2015
34ecb73
Fixing a memory leak warning due to the tests
avoidwork Dec 19, 2015
8c036c7
Fixing a reference error in `regex`
avoidwork Dec 19, 2015
dc6e8c2
Fixing reference errors in `utility.auth()`
avoidwork Dec 19, 2015
f3511fb
Updating sample
avoidwork Dec 19, 2015
1f12b07
Updating sample
avoidwork Dec 19, 2015
bf0ccb6
Fixing hypermedia tests, fleshing out the test routes such that it's …
avoidwork Dec 19, 2015
ec83b12
Fixing XML renderer, removing an unwanted `console.log()` from a test
avoidwork Dec 19, 2015
d5c9020
Fleshing out `renderers` & `serializers`, updating `Tenso` methods
avoidwork Dec 19, 2015
2671545
Simplifying the API for `renderers` & `serializers`, adding a guard t…
avoidwork Dec 19, 2015
f6b7b1c
Standardizing behavior of `renderers` & `serializers` such that they …
avoidwork Dec 19, 2015
d1a43a2
Fixing the HTML renderer to handle the `Map` and removing `HTML` from…
avoidwork Dec 19, 2015
eca6a84
Adding a JSONP renderer via `application/javascript` mime type
avoidwork Dec 19, 2015
e1fe8e7
Removing pretty print from JSONP response
avoidwork Dec 19, 2015
443491f
Fixing the sample API, removing unneeded routes
avoidwork Dec 19, 2015
e5c3742
Adding JSONP tests
avoidwork Dec 19, 2015
4504058
Removing unwanted logging
avoidwork Dec 19, 2015
7fb8761
Not rate limiting (explicit) "unprotected" routes, fixes #52
avoidwork Dec 19, 2015
a174f05
Wiring `rate()` into `zuul()`, fixing most rate limiting tests
avoidwork Dec 19, 2015
8561d6a
Fixing rate limit implementation in `zuul()`, fixing test expectation
avoidwork Dec 19, 2015
54ec318
Returning `grunt-cli` dev dep
avoidwork Dec 19, 2015
c95c0d1
Removing an unneeded call to `middleware.rate()` on guarded routes
avoidwork Dec 19, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"env": {
"browser": true,
"node": true,
"es6": true
"es6": true,
"amd": true
},
"ecmaFeatures": {
"jsx": true,
Expand All @@ -32,7 +33,7 @@
"func-names": [0],
"func-style": [0, "declaration"],
"generator-star-spacing": [2, "after"],
"global-strict": [2, "always"],
"strict": [2, "always"],
"guard-for-in": [0],
"handle-callback-err": [0],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
Expand Down Expand Up @@ -63,7 +64,6 @@
"no-duplicate-case": [2],
"no-else-return": [0],
"no-empty": [2],
"no-empty-class": [2],
"no-empty-label": [2],
"no-eq-null": [0],
"no-eval": [2],
Expand All @@ -73,7 +73,7 @@
"no-extra-boolean-cast": [2],
"no-extra-parens": [0],
"no-extra-semi": [1],
"no-extra-strict": [2],
"no-empty-character-class": [2],
"no-fallthrough": [2],
"no-floating-decimal": [2],
"no-func-assign": [2],
Expand All @@ -93,7 +93,7 @@
"no-multi-spaces": [2],
"no-multi-str": [2],
"no-multiple-empty-lines": [2, { "max": 2 }],
"no-native-reassign": [1],
"no-native-reassign": [0],
"no-negated-in-lhs": [2],
"no-nested-ternary": [0],
"no-new": [2],
Expand All @@ -104,7 +104,7 @@
"no-obj-calls": [2],
"no-octal": [2],
"no-octal-escape": [2],
"no-param-reassign": [2],
"no-param-reassign": [0],
"no-path-concat": [0],
"no-plusplus": [0],
"no-process-env": [0],
Expand All @@ -120,7 +120,7 @@
"no-sequences": [2],
"no-shadow": [2],
"no-shadow-restricted-names": [2],
"no-space-before-semi": [2],
"semi-spacing": [2],
"no-spaced-func": [2],
"no-sparse-arrays": [2],
"no-sync": [0],
Expand All @@ -138,7 +138,7 @@
"no-void": [0],
"no-warning-comments": [0, { "terms": ["todo", "fixme", "xxx"], "location": "start" }],
"no-with": [2],
"no-wrap-func": [2],
"no-extra-parens": [2],
"one-var": [0],
"operator-assignment": [0, "always"],
"operator-linebreak": [2, "after"],
Expand Down Expand Up @@ -173,4 +173,4 @@
"wrap-regex": [2],
"yoda": [2, "never", { "exceptRange": true }]
}
}
}
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
language: node_js
node_js:
- "5.3"
- "5.2"
- "5.1"
- "5.0"
- "4.2"
- "4.1"
- "4.0"
- "iojs"
- "0.12"
- "0.10"

branches:
only:
Expand Down
Loading