Skip to content

Releases: RustForWeb/workos

v0.8.1

10 Apr 09:51
8841886

Choose a tag to compare

What's Changed

  • chore(deps): bump rsa from 0.9.9 to 0.9.10 by @dependabot[bot] in #204
  • chore(deps): update rust crate serde_json to v1.0.149 by @renovate[bot] in #206
  • chore(deps): update rust crate url to v2.5.8 by @renovate[bot] in #207
  • chore(deps): update pre-commit hook embarkstudios/cargo-deny to v0.19.0 by @renovate[bot] in #208
  • chore(deps): update dependency prettier to v3.8.0 by @renovate[bot] in #211
  • chore(deps): update rust crate thiserror to v2.0.18 by @renovate[bot] in #210
  • chore(deps): update rust crate chrono to v0.4.43 by @renovate[bot] in #209
  • chore(deps): update dependency prettier to v3.8.1 by @renovate[bot] in #212
  • chore(deps): update rust crate jsonwebtoken to v10.3.0 by @renovate[bot] in #213
  • docs: update project status by @DanielleHuisman in #214
  • chore(deps): bump bytes from 1.11.0 to 1.11.1 by @dependabot[bot] in #215
  • chore(deps): bump time from 0.3.44 to 0.3.47 by @dependabot[bot] in #216
  • chore(deps): update rust crate mockito to v1.7.2 by @renovate[bot] in #217
  • chore(deps): update rust crate reqwest to v0.13.2 by @renovate[bot] in #218
  • chore(deps): update rust crate chrono to v0.4.44 by @renovate[bot] in #219
  • chore(deps): update pre-commit hook devinr528/cargo-sort to v2.1.1 by @renovate[bot] in #220
  • chore(deps): update rust crate tokio to v1.50.0 by @renovate[bot] in #221
  • chore(deps): bump quinn-proto from 0.11.13 to 0.11.14 by @dependabot[bot] in #222
  • chore(deps): update dsanders11/github-app-commit-action action to v2 by @renovate[bot] in #223
  • chore(deps): bump rustls-webpki from 0.103.8 to 0.103.10 by @dependabot[bot] in #224
  • chore(deps): update pre-commit hook devinr528/cargo-sort to v2.1.3 by @renovate[bot] in #225
  • fix: use correct endpoint for create organization membership by @DanielleHuisman in #229
  • feat: add client option to builder by @DanielleHuisman in #230
  • feat(user-management): add resend invitation by @DanielleHuisman in #231
  • chore(deps): update dependency prettier to v3.8.2 by @renovate[bot] in #232
  • chore(deps): update rust crate tokio to v1.51.1 by @renovate[bot] in #233

New Contributors

Full Changelog: v0.8.0...v0.8.1

v0.8.0

05 Jan 09:13
ab18613

Choose a tag to compare

Breaking Changes

reqwest has been updated to v0.13. The TLS features of workos have been changed to:

  [features]
- default = ["rustls-tls"]
+ default = ["reqwest/default-tls"]
  native-tls = ["reqwest/native-tls"]
- rustls-tls = ["reqwest/rustls-tls"]
+ rustls = ["reqwest/rustls"]

What's Changed

  • feat(user-management): add authenticate with organization selection by @DanielleHuisman in #187
  • feat(user-management): add authenticate with session cookie by @DanielleHuisman in #188
  • chore(deps): update actions/checkout action to v6 by @renovate[bot] in #189
  • chore(deps): update dependency prettier to v3.7.3 by @renovate[bot] in #192
  • chore(deps): update rust crate mockito to v1.7.1 by @renovate[bot] in #191
  • chore(deps): update pre-commit hook embarkstudios/cargo-deny to v0.18.6 by @renovate[bot] in #190
  • chore(deps): update dependency prettier to v3.7.4 by @renovate[bot] in #193
  • chore(deps): update rust crate derive_more to v2.1.0 by @renovate[bot] in #195
  • chore(deps): update pre-commit hook embarkstudios/cargo-deny to v0.18.8 by @renovate[bot] in #194
  • chore(deps): update pre-commit hook embarkstudios/cargo-deny to v0.18.9 by @renovate[bot] in #196
  • chore(deps): update rust crate reqwest to v0.12.25 by @renovate[bot] in #197
  • chore(deps): update rust crate reqwest to v0.12.26 by @renovate[bot] in #198
  • chore(deps): update rust crate derive_more to v2.1.1 by @renovate[bot] in #199
  • chore(deps): update rust crate serde_json to v1.0.148 by @renovate[bot] in #201
  • chore(deps): update rust crate reqwest to v0.12.28 by @renovate[bot] in #200
  • chore(deps): update rust crate tokio to v1.49.0 by @renovate[bot] in #202
  • fix(deps): update rust crate reqwest to 0.13.0 by @renovate[bot] in #203

Full Changelog: v0.7.0...v0.8.0

v0.7.0

19 Nov 16:10
22812db

Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.7.0

v0.6.0

27 Aug 20:12
e281807

Choose a tag to compare

Breaking Changes

  • Improved unknown API responses (#97):
- WorkOsError::ApiError(body)
+ WorkOsError::Unknown {
+     status,
+     body,
+ }

What's Changed

Full Changelog: v0.5.0...v0.6.0

v0.5.0

25 Aug 18:24
3b0b837

Choose a tag to compare

Breaking Changes

The crate has been renamed to workos. Please upgrade by changing the crate name in Cargo.toml and Rust code:

- workos-sdk = "0.4.1"
+ workos = "0.5.0"
- use workos_sdk::WorkOs;
+ use workos::WorkOs;

What's Changed

Full Changelog: v0.4.1...v0.5.0

v0.4.1

25 Aug 18:18
a0ef37c

Choose a tag to compare

What's Changed

Full Changelog: v0.4.0...v0.4.1

v0.4.0

25 Aug 09:36
7b8afc0

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.3.0...v0.4.0

v0.3.0

30 May 09:05
3524fed

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.0...v0.3.0