Packages
joken
2.6.2
2.6.2
2.6.1
2.6.0
2.5.0
2.4.1
2.4.0
2.3.0
2.2.0
2.1.0
2.0.1
2.0.0
2.0.0-rc3
2.0.0-rc2
2.0.0-rc1
2.0.0-rc0
1.5.0
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
0.16.1
0.16.0
0.15.0
0.14.1
0.14.0
0.13.1
0.13.0
0.12.0
0.11.0
0.10.1
0.10.0
0.8.1
0.8.0
0.7.0
0.6.2
0.6.1
0.6.0
0.5.0
0.1.0
JWT (JSON Web Token) library for Elixir.
Current section
47 Versions
Jump to
Current section
47 Versions
Compare versions
4
files changed
+15
additions
-8
deletions
| @@ -1,5 +1,12 @@ | |
| 1 1 | ## [Unreleased] |
| 2 2 | |
| 3 | + ## [2.6.2] - 2024-08-10 |
| 4 | + |
| 5 | + ### Changed |
| 6 | + |
| 7 | + - Updated deps and CI versions |
| 8 | + - Fix deprecated CI badge (#427 - thanks to @kianmeng once again!) |
| 9 | + |
| 3 10 | ## [2.6.1] - 2024-04-11 |
| 4 11 | |
| 5 12 | ### Added |
| @@ -1,6 +1,6 @@ | |
| 1 1 | # Joken |
| 2 2 | |
| 3 | - [](https://travis-ci.org/joken-elixir/joken) |
| 3 | + [](https://github.com/joken-elixir/joken/actions/workflows/ci.yml) |
| 4 4 | [](https://hex.pm/packages/joken) |
| 5 5 | [](https://hexdocs.pm/joken/) |
| 6 6 | [](https://hex.pm/packages/joken) |
| @@ -2,7 +2,7 @@ | |
| 2 2 | [{<<"Changelog">>,<<"https://hexdocs.pm/joken/changelog.html">>}, |
| 3 3 | {<<"GitHub">>,<<"https://github.com/joken-elixir/joken">>}]}. |
| 4 4 | {<<"name">>,<<"joken">>}. |
| 5 | - {<<"version">>,<<"2.6.1">>}. |
| 5 | + {<<"version">>,<<"2.6.2">>}. |
| 6 6 | {<<"description">>,<<"JWT (JSON Web Token) library for Elixir.">>}. |
| 7 7 | {<<"elixir">>,<<"~> 1.13">>}. |
| 8 8 | {<<"app">>,<<"joken">>}. |
| @@ -17,6 +17,6 @@ | |
| 17 17 | [[{<<"name">>,<<"jose">>}, |
| 18 18 | {<<"app">>,<<"jose">>}, |
| 19 19 | {<<"optional">>,false}, |
| 20 | - {<<"requirement">>,<<"~> 1.11.9">>}, |
| 20 | + {<<"requirement">>,<<"~> 1.11.10">>}, |
| 21 21 | {<<"repository">>,<<"hexpm">>}]]}. |
| 22 22 | {<<"build_tools">>,[<<"mix">>]}. |
| @@ -2,7 +2,7 @@ defmodule Joken.Mixfile do | |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 4 | @source_url "https://github.com/joken-elixir/joken" |
| 5 | - @version "2.6.1" |
| 5 | + @version "2.6.2" |
| 6 6 | |
| 7 7 | def project do |
| 8 8 | [ |
| @@ -40,9 +40,9 @@ defmodule Joken.Mixfile do | |
| 40 40 | |
| 41 41 | defp deps do |
| 42 42 | [ |
| 43 | - {:jose, "~> 1.11.9"}, |
| 43 | + {:jose, "~> 1.11.10"}, |
| 44 44 | {:jason, "~> 1.4", only: [:dev, :test]}, |
| 45 | - {:benchee, "~> 1.0", only: :dev}, |
| 45 | + {:benchee, "~> 1.3", only: :dev}, |
| 46 46 | |
| 47 47 | # Docs |
| 48 48 | {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, |
| @@ -55,8 +55,8 @@ defmodule Joken.Mixfile do | |
| 55 55 | |
| 56 56 | # Test |
| 57 57 | {:junit_formatter, "~> 3.4", only: :test}, |
| 58 | - {:stream_data, "~> 0.5", only: :test}, |
| 59 | - {:excoveralls, "~> 0.17", only: :test}, |
| 58 | + {:stream_data, "~> 1.1", only: :test}, |
| 59 | + {:excoveralls, "~> 0.18", only: :test}, |
| 60 60 | {:castore, "~> 1.0", only: :test} |
| 61 61 | ] |
| 62 62 | end |