Skip to content

Commit

Permalink
autogen: pin v0.7.0-alpha.0.pre.0 release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zepatrik committed Oct 1, 2021
1 parent d08ef66 commit 65e69e4
Show file tree
Hide file tree
Showing 65 changed files with 6,489 additions and 15 deletions.
Empty file modified docs/docs/.static/api.json
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion docs/docs/cli/keto-migrate-up.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Migrate the database up
### Synopsis

Run this command on a fresh SQL installation and when you upgrade Ory Keto from
version v0.7.0 and later.
version v0.7.0-alpha.0.pre.0 and later.

It is recommended to run this command close to the SQL instance (e.g. same
subnet) instead of over the public internet. This decreases risk of failure and
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Pull requests eligible for review
5. have signed our
[Contributor License Agreement](https://cla-assistant.io/ory/keto);
6. include a proper git commit message following the
[Conventional Commit Specification](https://www.conventionalcommits.org/en/v1.0.0/).
[Conventional Commit Specification](https://www.conventionalcommits.org/en/v0.7.0-alpha.0.pre.0/).

If all of these items are checked, the pull request is ready to be reviewed and
you should change the status to "Ready for review" and
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/guides/expand-api-display-who-has-access.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ tree of everyone who has access to that file:

<CodeTabs
sampleId="expand-api-display-access/01-expand-beach"
version="v0.6.0-alpha.3"
version="v0.7.0-alpha.0.pre.0"
/>

### Maximum Tree Depth
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/guides/list-api-display-objects.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ chats, the application uses Keto's list API:

<CodeTabs
sampleId="list-api-display-objects/01-list-PM"
version="v0.6.0-alpha.3"
version="v0.7.0-alpha.0.pre.0"
/>

As a response, the application gets the list of all chats the user `PM` is a
Expand All @@ -101,7 +101,7 @@ In our example, a user wants to see who is a member of the `coffee-break` group:

<CodeTabs
sampleId="list-api-display-objects/02-list-coffee-break"
version="v0.6.0-alpha.3"
version="v0.7.0-alpha.0.pre.0"
/>

## Application Context
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/guides/simple-access-check-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ Try this yourself by first adding the relation tuple using the

<CodeTabs
sampleId="simple-access-check-guide/00-write-direct-access"
version="v0.6.0-alpha.3"
version="v0.7.0-alpha.0.pre.0"
/>

Now, we can use the check-API to verify that `john` is allowed to `decypher` the
message:

<CodeTabs
sampleId="simple-access-check-guide/01-check-direct-access"
version="v0.6.0-alpha.3"
version="v0.7.0-alpha.0.pre.0"
/>

### Indirectly Defined Access
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ binaries, Docker images, and support a number of package managers.
We recommend using Docker to run Ory Keto:

```shell
$ docker pull oryd/keto:v0.6.0-alpha.3
$ docker run --rm -it oryd/keto:v0.6.0-alpha.3 help
$ docker pull oryd/keto:v0.7.0-alpha.0.pre.0
$ docker run --rm -it oryd/keto:v0.7.0-alpha.0.pre.0 help
```

## macOS
Expand All @@ -31,7 +31,7 @@ On linux, you can use `bash <(curl ...)` to fetch the latest stable binary
using:

```shell
$ bash <(curl https://raw.githubusercontent.com/ory/keto/master/install.sh) -b . v0.6.0-alpha.3
$ bash <(curl https://raw.githubusercontent.com/ory/keto/master/install.sh) -b . v0.7.0-alpha.0.pre.0
$ ./keto help
```

Expand Down Expand Up @@ -78,7 +78,7 @@ will only work with a Linux shell like bash or sh.
```shell
$ git clone https://github.com/ory/keto.git
$ cd keto
$ git checkout v0.6.0-alpha.3
$ git checkout v0.7.0-alpha.0.pre.0
$ make install
$ keto help
```
2 changes: 1 addition & 1 deletion docs/docs/milestones.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: milestones
title: Milestones and Roadmap
---

## [v0.7.0](https://github.com/ory/keto/milestone/5)
## [v0.7.0-alpha.0.pre.0](https://github.com/ory/keto/milestone/5)

The biggest change for the next release will be the new SQL table structure
(https://github.com/ory/keto/pull/638). The main goal is to improve the QoS, big
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ video service client would do. In this example we will use the Keto CLI client.
If you want to run the Keto CLI within **Docker**, set the alias

```shell
alias keto="docker run -it --network cat-videos-example_default -e KETO_READ_REMOTE=\"keto:4466\" oryd/keto:v0.6.0-alpha.3"
alias keto="docker run -it --network cat-videos-example_default -e KETO_READ_REMOTE=\"keto:4466\" oryd/keto:v0.7.0-alpha.0.pre.0"
```

in your terminal session. Alternatively, you need to set the remote endpoint so
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/reference/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ namespaces: http://a.aaa
# - Windows Command Line (CMD):
# > set VERSION=<value>
#
version: v0.0.0
version: v0.7.0-alpha.0.pre.0

## Data Source Name ##
#
Expand Down
Empty file.
Loading

0 comments on commit 65e69e4

Please sign in to comment.