Skip to content
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
20 changes: 18 additions & 2 deletions docs/migrating.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ description: Migrations

Some releases introduce breaking changes. This page aims to list those and provide migration guide.

## [v0.18.0](https://github.com/polyvariant/sttp-oauth2/releases/tag/v0.18.0)

This release is the first one under polyvariant organization. No functional changes have been introduced, but the project has been repackaged to `org.polyvariant`. This means that starting from this version users need to change all imports from:

```scala
import com.ocadotechnology.sttp.XYZ
```

to

```scala
import org.polyvariant.sttp.XYZ
```



## [v0.17.0-RC-1](https://github.com/polyvariant/sttp-oauth2/releases/tag/v0.17.0)

Significant changes were introduced due to separation of JSON deserialisation from the core. Adding a module
Expand All @@ -15,13 +31,13 @@ with chosen JSON implementation is now required, as is importing an associated s
For backwards compatibility just add `circe` module:

```scala
"org.polyvariant" %% "sttp-oauth2-circe" % "0.16.0"
"com.ocadotechnology" %% "sttp-oauth2-circe" % "0.16.0"
```

and a following import where you were using `sttp-oauth2`:

```scala
import org.polyvariant.sttp.oauth2.json.circe.instances._
import com.ocadotechnology.sttp.oauth2.json.circe.instances._
```

## [v0.16.0](https://github.com/polyvariant/sttp-oauth2/releases/tag/v0.16.0)
Expand Down
2 changes: 1 addition & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/polyvariant.png',
organizationName: 'polyvariant', // Usually your GitHub org/user name.
organizationName: 'ocadotechnology', // TODO change to polyvariant after moving the repository // Usually your GitHub org/user name.
projectName: 'sttp-oauth2', // Usually your repo name.
themeConfig: {
image: "img/polyvariant.png",
Expand Down