Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #138 from unsplash/6.2.0
Browse files Browse the repository at this point in the history
6.2.0
  • Loading branch information
lukechesser authored Sep 2, 2020
2 parents 23b6784 + 4bc4684 commit c9752e7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

## 6.2.0

### Changes

- Adds support for [the languages beta](https://changelog.unsplash.com/update/2020/08/21/languages-beta.html) on search

```js
unsplash.search.photos("nature", 1, 10, { lang: "en" });
```

- Adds support for the [new search filters and ordering](https://changelog.unsplash.com/update/2020/03/04/new-filters.html)

```js
unsplash.search.photos("nature", 1, 10, {
orientation: "landscape",
color: "brown", // new
orderBy: "relevant" // new
});
```

- Adds support for [content filtering on search](https://changelog.unsplash.com/update/2020/03/15/content-filtering.html)

```js
unsplash.search.photos("nature", 1, 10, { contentFilter: "high" });
```

- Removes any references to 'popular' ordering ([due to deprecation](https://changelog.unsplash.com/update/2020/07/09/deprecate-popular.html))

## 6.1.0

Enables Brotli compression by default.

## 6.0

### Changes
Expand Down

0 comments on commit c9752e7

Please sign in to comment.