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

Add another mime type to those considered to be yaml #1149

Merged
merged 1 commit into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
## 1.20.6

### Improvements
- Store current frame and style in the DOM for easier access ([#1036](../../pull/1036))
- Convert long girder GET and PUT requests to POSTs ([#1037](../../pull/1037))
- Store current frame and style in the DOM for easier access ([#1136](../../pull/1136))
- Convert long girder GET and PUT requests to POSTs ([#1137](../../pull/1137))
- Propagate more feature events from geojs on annotations ([#1147](../../pull/1147))
- Add another mime type to those considered to be yaml ([#1149](../../pull/1149))

### Changes
- Add a guard if PIL doesn't support ImageCms ([#1132](../../pull/1132))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ const Formats = {
};
Formats['application/vnd.geo+json'] = Formats['application/json'];
Formats['text/x-yaml'] = Formats['text/yaml'];
Formats['application/x-yaml'] = Formats['text/yaml'];

function lintGirderIni(text, callback) {
return restRequest({
Expand Down