Skip to content

Commit

Permalink
fix URIs deprecation, bump patch version (#11)
Browse files Browse the repository at this point in the history
- fix deprecation warning while constructing URIs
- bump patch version for tagging
  • Loading branch information
tanmaykm authored Sep 7, 2022
1 parent 2d801a5 commit 6db1a9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["openidconnect", "openid-connect", "openid", "openidc", "julia", "id
authors = ["Tanmay Mohapatra <[email protected]>"]
license = "MIT"
desc = "OpenID Connect for Julia"
version = "0.1.4"
version = "0.1.5"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
2 changes: 1 addition & 1 deletion src/OpenIDConnect.jl
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function flow_request_authorization_code(ctx::OIDCCtx; nonce=nothing, display=no
(login_hint === nothing) || (query["login_hint"] = String(login_hint))
(acr_values === nothing) || (query["acr_values"] = String(acr_values))

uri = HTTP.merge(HTTP.URIs.URI(authorization_endpoint(ctx)); query=query)
uri = HTTP.URIs.URI(HTTP.URIs.URI(authorization_endpoint(ctx)); query=query)
return string(uri)
end

Expand Down

2 comments on commit 6db1a9d

@tanmaykm
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/67841

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.5 -m "<description of version>" 6db1a9df0e2b42c2b65850160e8a4648f66ea9ff
git push origin v0.1.5

Please sign in to comment.