Skip to content

Commit 045162e

Browse files
authored
Merge branch 'main' into eql-v2-0
2 parents a1aaee8 + 6691936 commit 045162e

File tree

10 files changed

+94
-13
lines changed

10 files changed

+94
-13
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Docs feedback
2+
description: Feedback to help make our docs more effective.
3+
title: "[Docs]: "
4+
labels: ["docs", "triage"]
5+
assignees:
6+
- kateandrews
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to give us feedback!
12+
- type: input
13+
id: contact
14+
attributes:
15+
label: Contact details
16+
description: How can we get in touch with you if we need more info?
17+
placeholder: you@example.com
18+
validations:
19+
required: false
20+
- type: textarea
21+
id: what-problem
22+
attributes:
23+
label: What problem were you trying to solve?
24+
placeholder: Tell us what you were looking for in our docs.
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: additional-info
29+
attributes:
30+
label: Anything else you'd like us to know?
31+
placeholder: Let us know if you've got any additional feedback.
32+
validations:
33+
required: false
34+
- type: checkboxes
35+
id: terms
36+
attributes:
37+
label: Code of conduct
38+
description: By submitting this issue, you agree to follow our [Code of conduct](https://github.com/cipherstash/proxy/blob/main/CODE_OF_CONDUCT.md).
39+
options:
40+
- label: I agree to follow this project's Code of conduct
41+
required: true

docs/concepts/WHY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,9 @@ For advanced users who prefer to handle encryption within their application:
8989
To get started using CipherStash's encryption is use solution, see the [Getting Started](https://github.com/cipherstash/encrypt-query-language/blob/main/GETTINGSTARTED.md) guide.
9090

9191
For further help, raise an issue [here](https://github.com/cipherstash/encrypt-query-language/issues).
92+
93+
---
94+
95+
### Didn't find what you wanted?
96+
97+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20WHY.md)

docs/reference/INDEX.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,3 +239,8 @@ SELECT cs_remove_index_v1(
239239
index_name text
240240
);
241241
```
242+
---
243+
244+
### Didn't find what you wanted?
245+
246+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20INDEX.md)

docs/reference/JSON.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -880,3 +880,8 @@ Example data and params:
880880
"q": "ejson_path"
881881
}
882882
```
883+
---
884+
885+
### Didn't find what you wanted?
886+
887+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20JSON.md)

docs/reference/MIGRATOR.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,9 @@ cipherstash-migrator --columns test_text=encrypted_text test_jsonb=encrypted_jso
7070

7171
- Ensure that the corresponding encrypted columns already exist in the table before running the migration.
7272
- Data migration operations should be tested in a development environment before being executed in production.
73+
74+
---
75+
76+
### Didn't find what you wanted?
77+
78+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20MIGRATOR.md)

docs/reference/PAYLOAD.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,9 @@ CipherStash Proxy handles the encoding, and EQL provides the functions.
5656
| o | ORE index | Ciphertext index value. Encrypted by Proxy. |
5757
| u | Unique index | Ciphertext index value. Encrypted by Proxy. |
5858
| sv | STE vector index | Ciphertext index value. Encrypted by Proxy. |
59+
60+
---
61+
62+
### Didn't find what you wanted?
63+
64+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20PAYLOAD.md)

docs/tutorials/GETTINGSTARTED.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,3 +580,9 @@ This query returns:
580580
This tutorial showed how we can go from a plaintext text field to an encrypted field and how to query the encrypted fields.
581581

582582
We have some [examples here](../../README.md#helper-packages) of what this would look like if you are using an ORM.
583+
584+
---
585+
586+
### Didn't find what you wanted?
587+
588+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20GETTINGSTARTED.md)

docs/tutorials/PROXY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,9 @@ At a high level:
8383
1. CipherStash Proxy decrypts any returned `ciphertext` data and returns to client
8484

8585
![Select](/diagrams/overview-select.drawio.svg)
86+
87+
---
88+
89+
### Didn't find what you wanted?
90+
91+
[Click here to let us know what was missing from our docs.](https://github.com/cipherstash/encrypt-query-language/issues/new?template=docs-feedback.yml&title=[Docs:]%20Feedback%20on%20PROXY.md)

examples/go/xorm/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go-xorm-app
22

3-
go 1.22
3+
go 1.23.0
44

5-
toolchain go1.22.9
5+
toolchain go1.24.2
66

77
require (
88
github.com/jackc/pgx/v5 v5.7.1
@@ -17,7 +17,7 @@ require (
1717
github.com/onsi/gomega v1.35.1 // indirect
1818
github.com/rogpeppe/go-internal v1.13.1 // indirect
1919
golang.org/x/mod v0.20.0 // indirect
20-
golang.org/x/sync v0.9.0 // indirect
20+
golang.org/x/sync v0.11.0 // indirect
2121
)
2222

2323
require (
@@ -34,8 +34,8 @@ require (
3434
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
3535
github.com/modern-go/reflect2 v1.0.2 // indirect
3636
github.com/syndtr/goleveldb v1.0.0 // indirect
37-
golang.org/x/crypto v0.29.0 // indirect
38-
golang.org/x/text v0.20.0 // indirect
37+
golang.org/x/crypto v0.35.0 // indirect
38+
golang.org/x/text v0.22.0 // indirect
3939
xorm.io/builder v0.3.11-0.20220531020008-1bd24a7dc978 // indirect
4040
xorm.io/xorm v1.3.9
4141
)

examples/go/xorm/go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,22 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
6767
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
6868
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
6969
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
70-
golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ=
71-
golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg=
70+
golang.org/x/crypto v0.35.0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs=
71+
golang.org/x/crypto v0.35.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ=
7272
golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0=
7373
golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
7474
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
7575
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
7676
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
7777
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
78-
golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ=
79-
golang.org/x/sync v0.9.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
78+
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
79+
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
8080
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
81-
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
82-
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
81+
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
82+
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
8383
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
84-
golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
85-
golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4=
84+
golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=
85+
golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY=
8686
golang.org/x/tools v0.24.0 h1:J1shsA93PJUEVaUSaay7UXAyE8aimq3GW0pjlolpa24=
8787
golang.org/x/tools v0.24.0/go.mod h1:YhNqVBIfWHdzvTLs0d8LCuMhkKUgSUKldakyV7W/WDQ=
8888
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

0 commit comments

Comments
 (0)