10543 Commits

Author SHA1 Message Date
Jeff Mitchell
e8480fe2bb Merge branch '0.11.3' into master-oss 2018-10-08 12:52:13 -04:00
Jeff Mitchell
db5783d1f0 Remove outdated references to UUIDs for token values 2018-10-08 12:45:17 -04:00
Jeff Mitchell
fb601237bf
Cut version 0.11.3 v0.11.3 2018-10-08 11:28:51 -04:00
Jeff Mitchell
3b594c1142 Prep for release 2018-10-08 11:24:02 -04:00
Jeff Mitchell
e67829e19b Prep for release 2018-10-08 11:23:50 -04:00
Jeff Mitchell
183b7f2917 changelog++ 2018-10-08 10:03:32 -04:00
Jeff Mitchell
58bc9ec16a changelog++ 2018-10-08 10:01:45 -04:00
Jeff Mitchell
815385807c changelog++ 2018-10-08 10:00:24 -04:00
Jeff Mitchell
62ecc2c917 changelog++ 2018-10-08 10:00:22 -04:00
Jeff Mitchell
1fce957a4f Set allowed OIDs to any value when generaing a CA. (#5462)
* Set allowed OIDs to any value when generaing a CA.

Also, allow utf-8 in addition to utf8 as the OID type specifier, and
allow `*` to specify any OID of a supported type.

* Update PKI docs
2018-10-08 10:00:20 -04:00
Jim Kalafut
97fb44fd91 Fix docs typos 2018-10-08 10:00:18 -04:00
Jim Kalafut
f464e30fee Fix 'vault auth' panic (#5473)
Running 'vault auth' with no parameters was panicking:

panic: assignment to entry in nil map
	github.com/hashicorp/vault/command/login.go:255 +0xdee

Now it will show help.
2018-10-08 10:00:15 -04:00
Becca Petrin
a44cac3741 add a check to prevent panics (#5471) 2018-10-08 10:00:10 -04:00
vishalnayak
a198fb3944 Fix TestIdentityStore_GroupHierarchyCases 2018-10-08 10:00:07 -04:00
Vishal Nayak
26aeeee077 Added test for verifying member group id deletion (#5469) 2018-10-08 10:00:02 -04:00
Brian Kassouf
79eda10d87 Fix issue with revoking leases that have periods in them (#5461) 2018-10-08 10:00:00 -04:00
Jim Kalafut
611251d3e5 Update examples to use sha256 (#5468)
sha_256 is supported but not referenced in our API docs.
2018-10-08 09:59:57 -04:00
Sebastian Plattner
5d5f4c407f Fix remove Group Member in Identity Group not working (#5466) 2018-10-08 09:59:43 -04:00
Jeff Mitchell
d4b1902d62 changelog++ 2018-10-08 09:59:41 -04:00
Konstantinos Tsanaktsidis
0312fe4af1 Fix a panic in MongoDB backend with concurrent create/revoke (#5463)
When Vault is concurrently creating and revoking leases for MongoDB
users as part of the database secrets engine, and then loses connection
to MongoDB, it can panic. This occurrs because the RevokeUser path does
_not_ lock the mutex, but the CreateUser path does. Both threads of
execution can concurently decide to call c.session.Close() in
mongodb/connection_producer.go:119, and then mgo panics when the second
close attempt occurs.
2018-10-08 09:59:39 -04:00
Jeff Mitchell
7c49fa6621 Remove incorrect api docs text around metadata being supported for identity aliases 2018-10-08 09:59:36 -04:00
Jeff
1950f4ddb7 fix doc typo (#5455) 2018-10-08 09:58:29 -04:00
Martins Sipenko
ccab7ab74a Fix missing > (#5452) 2018-10-08 09:58:19 -04:00
Brian Kassouf
c96af514f9 Fix identity link (#5449) 2018-10-08 09:58:15 -04:00
Brian Kassouf
682944bef0 mailto link (#5448) 2018-10-08 09:57:30 -04:00
Becca Petrin
c447c16f08 alicloud auto-unseal docs (#5446) 2018-10-08 09:57:04 -04:00
Chris Hoffman
3deb2b2ced adding upgrade guide (#5447) 2018-10-08 09:57:01 -04:00
Brian Kassouf
a0dd9db5cd changelog++ 2018-10-08 09:56:56 -04:00
Jeff Mitchell
bfa30e9283 changelog++ 2018-10-08 09:54:21 -04:00
Jeff Mitchell
580acc59f5 changelog++ 2018-10-08 09:53:28 -04:00
Jeff Mitchell
a9dd2d3996
Set allowed OIDs to any value when generaing a CA. (#5462)
* Set allowed OIDs to any value when generaing a CA.

Also, allow utf-8 in addition to utf8 as the OID type specifier, and
allow `*` to specify any OID of a supported type.

* Update PKI docs
2018-10-08 09:51:43 -04:00
Jim Kalafut
4731f1319c
Fix docs typos 2018-10-05 22:53:09 -07:00
Jim Kalafut
c4dc44a920 Fix 'vault auth' panic (#5473)
Running 'vault auth' with no parameters was panicking:

panic: assignment to entry in nil map
	github.com/hashicorp/vault/command/login.go:255 +0xdee

Now it will show help.
2018-10-05 16:05:26 -07:00
Becca Petrin
a3537350a5 add a check to prevent panics (#5471) 2018-10-05 09:23:06 -07:00
vishalnayak
4888144249 Fix TestIdentityStore_GroupHierarchyCases 2018-10-05 05:46:09 -04:00
Vishal Nayak
33111687b5
Added test for verifying member group id deletion (#5469) 2018-10-04 10:38:41 -07:00
Brian Kassouf
02bfa61159
Fix issue with revoking leases that have periods in them (#5461) 2018-10-04 09:55:48 -07:00
Jim Kalafut
238a93d23d
Update examples to use sha256 (#5468)
sha_256 is supported but not referenced in our API docs.
2018-10-04 09:51:54 -07:00
Sebastian Plattner
b39b944c0d Fix remove Group Member in Identity Group not working (#5466) 2018-10-04 09:27:29 -07:00
Jeff Mitchell
9daa864713 changelog++ 2018-10-04 09:51:41 -04:00
Konstantinos Tsanaktsidis
cf46961f75 Fix a panic in MongoDB backend with concurrent create/revoke (#5463)
When Vault is concurrently creating and revoking leases for MongoDB
users as part of the database secrets engine, and then loses connection
to MongoDB, it can panic. This occurrs because the RevokeUser path does
_not_ lock the mutex, but the CreateUser path does. Both threads of
execution can concurently decide to call c.session.Close() in
mongodb/connection_producer.go:119, and then mgo panics when the second
close attempt occurs.
2018-10-04 09:51:08 -04:00
Jeff Mitchell
dbde07211c Remove incorrect api docs text around metadata being supported for identity aliases 2018-10-04 09:09:41 -04:00
Becca Petrin
e7a0452736 vendor the desired version of go.uuid (#5458) 2018-10-03 15:30:05 -07:00
Brian Kassouf
b6ca59f0b4
Fix build (#5457) 2018-10-03 14:53:08 -07:00
Jeff
bf154cdff8 fix doc typo (#5455) 2018-10-03 11:25:57 -07:00
Brian Kassouf
f2233d7a1c
Update Deps (#5454) 2018-10-03 09:55:26 -07:00
Martins Sipenko
1e1a31e8d8 Fix missing > (#5452) 2018-10-03 09:16:36 -04:00
Brian Kassouf
14a620c173
Fix identity link (#5449) 2018-10-02 17:45:17 -07:00
Brian Kassouf
760aca7055
mailto link (#5448) 2018-10-02 17:41:04 -07:00
Becca Petrin
3ebe388dc1 alicloud auto-unseal docs (#5446) 2018-10-02 17:21:26 -07:00