8000 Upgrade non-breaking JS dependencies by pluma · Pull Request #14152 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Upgrade non-breaking JS dependencies #14152

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
merged 30 commits into from
Jul 13, 2021
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f7eab2f
Upgrade non-breaking JS dependencies
pluma May 6, 2021
0c17fec
Downgrade js-yaml
pluma May 11, 2021
ee12551
Bump deps
pluma May 11, 2021
ffa547b
Add note to CHANGELOG
pluma May 11, 2021
b7b79b7
Add content-type license / remove media-typer license
pluma May 11, 2021
ecbf83f
Replace underscore imports with lodash
pluma May 11, 2021
c4bd190
Remove marked, underscore
pluma May 12, 2021
5ec9a57
Add note about underscore
pluma May 12, 2021
eda55b9
Remove underscore/marked licenses
pluma May 12, 2021
ca49a64
Update CHANGELOG
pluma May 22, 2021
73688d6
Add underscore back
pluma Jul 4, 2021
601e3ed
Fix Foxx type internals
pluma Jul 4, 2021
5cfcae5
Bump deps
pluma Jul 6, 2021
0f651e0
npm audit fix
pluma Jul 6, 2021
cc410a2
Keep mime type parameters
pluma Jul 6, 2021
62d27b2
xmldom -> 0.6.0 (BREAKING)
pluma Jul 6, 2021
2f95be1
Revert "Keep mime type parameters"
pluma Jul 6, 2021
4114ad1
Extract used parts of mocha
pluma Jul 5, 2021
19ac18c
Convert to classes
pluma Jul 6, 2021
262c08f
Better module load error messages
pluma Jul 6, 2021
10ee09d
Move mocha.js to mocha/index.js
pluma Jul 6, 2021
a12ff8e
Extract reporters, interfaces, utils
pluma Jul 6, 2021
3ec2e73
Remove mocha dep
pluma Jul 6, 2021
a011a16
Add mocha copyright headers
pluma Jul 7, 2021
35de614
jslint
pluma Jul 7, 2021
26a6bc9
Add ms
pluma Jul 8, 2021
b1e8e67
Restore cause attribute
pluma Jul 8, 2021
d004dae
Fix utils/jslint.sh
pluma Jul 12, 2021
64b4e67
Fix test title
pluma Jul 12, 2021
74ee2c7
Fix missing reporters exports
pluma Jul 12, 2021
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
Prev Previous commit
Next Next commit
Keep mime type parameters
  • Loading branch information
pluma committed Jul 12, 2021
commit cc410a2abd38024bf0f44c97ca641f5ac1ab80ff
2 changes: 1 addition & 1 deletion js/common/modules/@arangodb/foxx/check-args.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function normalizeMimeType (mime) {
}
const contentType = mimeTypes.contentType(mime) || mime;
const parsed = ct.parse(contentType);
return parsed.type;
return ct.format(parsed);
}

function runValidation (methodName, paramName, type, value) {
Expand Down
0