You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix regression bug in MFA device recognition. (#145)
* Fix regression bug that removed trusted device recongnition.
* Fix User-Agent field to work with Okta.
* Clean up cookie passing and handling, to simplify development.
Copy file name to clipboardExpand all lines: README.md
+21-18Lines changed: 21 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,15 +23,18 @@ your AWS accounts, returning
23
23
tokens into your local `~/.aws/credentials` file.
24
24
25
25
## What's new
26
+
26
27
See [Releases](https://github.com/dowjones/tokendito/releases) for a detailed Changelog.
28
+
27
29
### Tokendito 2.3.0
30
+
28
31
Version 2.3.0 of Tokendito introduces the following new features:
29
-
- Basic OIE support while forcing Classic mode.
32
+
33
+
- Basic OIE support while forcing Classic mode.
30
34
- Misc bug fixes
31
35
32
36
Note: This feature currently works with locally enabled OIE organizations, but it does not for Organizations with chained Authentication in mixed OIE/Classic environments.
33
37
34
-
35
38
### Tokendito 2.2.0
36
39
37
40
Version 2.2.0 of Tokendito introduces the following new features:
@@ -40,7 +43,6 @@ Version 2.2.0 of Tokendito introduces the following new features:
40
43
- Support for Step-Up Authorization (by @ruhulio)
41
44
- Misc bug fixes
42
45
43
-
44
46
### Tokendito 2.1.0
45
47
46
48
Version 2.1.0 of Tokendito introduces the following new features:
@@ -51,9 +53,9 @@ Version 2.1.0 of Tokendito introduces the following new features:
51
53
- Docker container signing to ensure you are on a 'certified' Tokendito container
52
54
- Misc bug fixes
53
55
54
-
55
56
### Tokendito 2.0.0
56
-
With the release of tokendito 2.0, many changes and fixes were introduced. **It is a breaking release**: your configuration needs to be updated, the command line arguments have changed, and support for Python < 3.7 has been removed.
57
+
58
+
With the release of tokendito 2.0, many changes and fixes were introduced. **It is a breaking release**: your configuration needs to be updated, the command line arguments have changed, and support for Python \< 3.7 has been removed.
57
59
The following changes are part of this release:
58
60
59
61
- Set the config file to be platform dependent, and follow the XDG standard.
Using Docker eliminates the need to install tokendito and its requirements. We are providing experimental Docker image support in [Dockerhub](https://hub.docker.com/r/tokendito/tokendito)
@@ -98,13 +99,13 @@ Using Docker eliminates the need to install tokendito and its requirements. We a
98
99
99
100
Run tokendito with the `docker run` command. Tokendito supports [DCT](https://docs.docker.com/engine/security/trust/), and we encourage you to enforce image signature validation before running any containers.
100
101
101
-
```shell
102
+
```shell
102
103
export DOCKER_CONTENT_TRUST=1
103
104
```
104
105
105
106
then
106
107
107
-
```shell
108
+
```shell
108
109
docker run --rm -it tokendito/tokendito --version
109
110
```
110
111
@@ -118,27 +119,29 @@ These can be covered by mapping a single volume to both the host and container u
118
119
Be sure to set the `-it` flags to enable an interactive terminal session.
119
120
120
121
On Windows, you can do the following:
121
-
```powershell
122
+
123
+
```powershell
122
124
docker run --rm -it -v "%USERPROFILE%\.aws":/app/.aws -v "%USERPROFILE%\.config":/app/.config tokendito/tokendito
123
125
```
124
126
125
127
In a Mac OS system, you can run:
126
-
```shell
128
+
129
+
```shell
127
130
docker run --rm -it -v "$HOME/.aws":/app/.aws -v "$HOME/.config":/app/.config tokendito/tokendito
128
131
```
129
132
130
133
On a Linux system, however, you must specify the user and group IDs for the mount mappings to work as expected.
131
134
Additionally the mount points within the container move to a different location:
Tokendito command line arguments are supported as well.
138
141
139
142
**NOTE**: In the following examples the entire home directory is exported for simplicity. This is not recommended as it exposes too much data to the running container:
140
143
141
-
```shell
144
+
```shell
142
145
docker run --rm -it -v "$HOME":/ tokendito/tokendito \
0 commit comments