Justin Van Patten
14babed82b
Bump google.golang.org/protobuf, golang.org/x/crypto, and github.com/moby/moby ( #15717 )
...
Bumps google.golang.org/protobuf,
[golang.org/x/crypto](https://github.com/golang/crypto ) and
[github.com/moby/moby](https://github.com/moby/moby ).
Replaces #15688 -- running the acceptance tests on that PR is having
problems
Fixes #15674
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-17 22:20:32 +00:00
Pulumi Bot
c0257cc107
Changelog and go.mod updates for v3.111.1 ( #15708 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-03-16 10:30:59 +00:00
Pulumi Bot
507a8b26bd
Changelog and go.mod updates for v3.111.0 ( #15701 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-03-15 11:36:24 +00:00
Pulumi Bot
1f39f8aa57
Changelog and go.mod updates for v3.110.0 ( #15691 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-03-14 15:20:55 +00:00
Fraser Waters
a9b86b6836
Update yaml to 1.6 ( #15661 )
2024-03-13 09:45:31 +00:00
Pulumi Bot
d7c4025734
Changelog and go.mod updates for v3.109.0 ( #15626 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-03-07 22:24:05 +00:00
Pulumi Bot
6d4049e639
Changelog and go.mod updates for v3.108.1 ( #15571 )
...
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Justin Van Patten <jvp@justinvp.com>
2024-03-01 22:33:54 +00:00
Justin Van Patten
91aa685304
chore: post-release go.mod and changelog updates for v3.108.0
2024-02-29 21:48:42 -08:00
Pulumi Bot
e654626abf
Changelog and go.mod updates for v3.107.0 ( #15487 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-02-22 00:35:07 +00:00
Pulumi Bot
def21b977e
Changelog and go.mod updates for v3.106.0 ( #15448 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-02-16 04:14:52 +00:00
Fraser Waters
60f1abc2b8
Fix TestDestroySetsEncryptionsalt test and resulting bug ( #15432 )
...
<!---
Thanks so much for your contribution! If this is your first time
contributing, please ensure that you have read the
[CONTRIBUTING](https://github.com/pulumi/pulumi/blob/master/CONTRIBUTING.md )
documentation.
-->
# Description
<!--- Please include a summary of the change and which issue is fixed.
Please also include relevant motivation and context. -->
While working on some other secret manager changes I found that
`TestDestroySetsEncryptedkey` wasn't actually fully testing what we
thought it was.
Firstly it was a bad name, we're checking for `encryptionsalt` being set
not `encryptedkey`. But more importantly it wasn't checking that the
salt stayed the same.
Turned out `destroy` was loading the stack config, seeing no
`encryptionsalt` and so new'ing up a brand new passphrase secret manager
and state and then saving that to the stack config.
This is now fixed that the test asserts that the salt is exactly what's
expected and I've fixed up the engine code to do this correctly.
## Checklist
- [x] I have run `make tidy` to update any new dependencies
- [x] I have run `make lint` to verify my code passes the lint check
- [x] I have formatted my code using `gofumpt`
<!--- Please provide details if the checkbox below is to be left
unchecked. -->
- [x] I have added tests that prove my fix is effective or that my
feature works
<!---
User-facing changes require a CHANGELOG entry.
-->
- [x] I have run `make changelog` and committed the
`changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the
Pulumi Cloud,
then the service should honor older versions of the CLI where this
change would not exist.
You must then bump the API version in
/pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi
Cloud API version
<!-- @Pulumi employees: If yes, you must submit corresponding changes in
the service repo. -->
2024-02-15 09:33:27 +00:00
Pulumi Bot
7d03ac7174
Changelog and go.mod updates for v3.105.0 ( #15398 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-02-08 08:59:28 +00:00
Pulumi Bot
3f376fe182
Changelog and go.mod updates for v3.104.2 ( #15344 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-02-01 12:34:33 +00:00
Fraser Waters
7bb2a3c2ac
Auto-fix encrypted keys in the wrong format due to gocloud.dev upgrade regression ( #15334 )
...
When attempting another gocloud.dev upgrade, some users ran into a
regression related to the format change of encrypted keys between
gocloud versions, which part of the system was not accounting for. This
PR addresses the issue and includes a fix that automatically fixes
forward state that has an encrypted key in the wrong format, and
includes a regression test and test for the auto-fix behavior.
Fixes #15329
Co-authored-by: Thomas Gummerer <t.gummerer@gmail.com>
2024-02-01 09:39:41 +00:00
Pulumi Bot
93d5605c28
Changelog and go.mod updates for v3.104.1 ( #15339 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-02-01 09:03:09 +00:00
Justin Van Patten
d1904beb14
Revert gocloud.dev upgrade ( #15333 )
...
Still regressions happening associated with upgrading gocloud.dev. This
reverts https://github.com/pulumi/pulumi/pull/15202 .
Fixes #15329
2024-01-31 23:19:32 +00:00
Pulumi Bot
e239dc4319
Changelog and go.mod updates for v3.104.0 ( #15327 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-01-31 19:01:25 +00:00
Thomas Gummerer
fd4ed7f811
add tests for aws and gcp ( #15291 )
...
Fixes https://github.com/pulumi/pulumi/issues/3760
## Checklist
- [x] I have run `make tidy` to update any new dependencies
- [x] I have run `make lint` to verify my code passes the lint check
- [x] I have formatted my code using `gofumpt`
<!--- Please provide details if the checkbox below is to be left
unchecked. -->
- [x] I have added tests that prove my fix is effective or that my
feature works
<!---
User-facing changes require a CHANGELOG entry.
-->
- [ ] I have run `make changelog` and committed the
`changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the
Pulumi Cloud,
then the service should honor older versions of the CLI where this
change would not exist.
You must then bump the API version in
/pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi
Cloud API version
<!-- @Pulumi employees: If yes, you must submit corresponding changes in
the service repo. -->
2024-01-30 11:05:38 +00:00
Thomas Gummerer
927b7efef5
upgrade gocloud.dev take 2 ( #15202 )
...
Another attempt at upgrading gocloud.dev to the latest version. We've
identified and added tests for the issues that came up in the last
attempt to do the upgrade in https://github.com/pulumi/pulumi/pull/15161
and https://github.com/pulumi/pulumi/pull/15187 .
The problem with the SAS key appears to have been fixed in gocloud.dev
0.36.0 (The previous upgrade tried 0.28.0), and I've added additional
fixes for the azure key vault problem during pulumi refresh in this PR.
This needs https://github.com/pulumi/pulumi/pull/15161 to be merged
first, but I wanted to open a PR in the meantime.
Fixes #15138
Fixes https://github.com/pulumi/pulumi/issues/14647
Fixes https://github.com/pulumi/pulumi/issues/13161
Fixes https://github.com/pulumi/pulumi/issues/14431
Fixes https://github.com/pulumi/pulumi/issues/14541
## Checklist
- [x] I have run `make tidy` to update any new dependencies
- [ ] I have run `make lint` to verify my code passes the lint check
- [ ] I have formatted my code using `gofumpt`
<!--- Please provide details if the checkbox below is to be left
unchecked. -->
- [x] I have added tests that prove my fix is effective or that my
feature works
<!---
User-facing changes require a CHANGELOG entry.
-->
- [x] I have run `make changelog` and committed the
`changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the
Pulumi Cloud,
then the service should honor older versions of the CLI where this
change would not exist.
You must then bump the API version in
/pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi
Cloud API version
<!-- @Pulumi employees: If yes, you must submit corresponding changes in
the service repo. -->
2024-01-26 13:14:17 +00:00
Pulumi Bot
7ff579f95d
Changelog and go.mod updates for v3.103.1 ( #15256 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-01-25 08:41:23 +00:00
Pulumi Bot
db0bcc2d9f
Changelog and go.mod updates for v3.103.0 ( #15248 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-01-25 05:53:43 +00:00
Thomas Gummerer
c71f001e39
Add azure login test ( #15161 )
...
# Description
This is quite an awkward test because it depends on a secret from the
environment. However I don't really know how to do this otherwise since
we do need this SAS token, and that's a secret we need, so we have to
inject it through the environment.
/xref #15138
## Checklist
- [x] I have run `make tidy` to update any new dependencies
- [x] I have run `make lint` to verify my code passes the lint check
- [x] I have formatted my code using `gofumpt`
<!--- Please provide details if the checkbox below is to be left
unchecked. -->
- [x] I have added tests that prove my fix is effective or that my
feature works
<!---
User-facing changes require a CHANGELOG entry.
-->
- [ ] I have run `make changelog` and committed the
`changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the
Pulumi Cloud,
then the service should honor older versions of the CLI where this
change would not exist.
You must then bump the API version in
/pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi
Cloud API version
<!-- @Pulumi employees: If yes, you must submit corresponding changes in
the service repo. -->
2024-01-23 09:41:20 +00:00
Pulumi Bot
a49ea379de
Changelog and go.mod updates for v3.102.0 ( #15182 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-01-19 02:14:13 +00:00
Zaid Ajaj
31c90fd0e0
[python/sdk] Allow remote components to use output property called id ( #15115 )
...
# Description
This PR updates the python SDK to allow remote components to have ID
property. Adds an integration test which implements a component that had
an output property `id` to ensure that we can have `id` as an output
that doesn't get filtered out when serializing and deserializing
property maps.
Component instantiation looks like this in python
```python
import pulumi
from component import Component
component_a = Component("a", id="hello")
pulumi.export("id", component_a.id)
```
Where we expect `component_a.id` to equal `"{resource.ID}-{args.Id}" =>
"42-hello"` and the 42 is the (constant) ID of the resource created
inside the component.
## Checklist
- [ ] I have run `make tidy` to update any new dependencies
- [x] I have run `make lint` to verify my code passes the lint check
- [ ] I have formatted my code using `gofumpt`
<!--- Please provide details if the checkbox below is to be left
unchecked. -->
- [x] I have added tests that prove my fix is effective or that my
feature works
<!---
User-facing changes require a CHANGELOG entry.
-->
- [x] I have run `make changelog` and committed the
`changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the
Pulumi Cloud,
then the service should honor older versions of the CLI where this
change would not exist.
You must then bump the API version in
/pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi
Cloud API version
<!-- @Pulumi employees: If yes, you must submit corresponding changes in
the service repo. -->
2024-01-18 13:54:09 +00:00
Fraser Waters
3be1b6289c
Remove deprecated Protobufs imports ( #15158 )
...
<!---
Thanks so much for your contribution! If this is your first time
contributing, please ensure that you have read the
[CONTRIBUTING](https://github.com/pulumi/pulumi/blob/master/CONTRIBUTING.md )
documentation.
-->
# Description
<!--- Please include a summary of the change and which issue is fixed.
Please also include relevant motivation and context. -->
github.com/golang/protobuf is marked deprecated and I was getting
increasingly triggered by the inconsistency of importing the `Empty`
type from "github.com/golang/protobuf/ptypes/empty" or
"google.golang.org/protobuf/types/known/emptypb" as "pbempty" or "empty"
or "emptypb". Similar for the struct type.
So this replaces all the Protobufs imports with ones from
"google.golang.org/protobuf", normalises the import name to always just
be the module name (emptypb), and adds the depguard linter to ensure we
don't use the deprecated package anymore.
## Checklist
- [x] I have run `make tidy` to update any new dependencies
- [x] I have run `make lint` to verify my code passes the lint check
- [x] I have formatted my code using `gofumpt`
<!--- Please provide details if the checkbox below is to be left
unchecked. -->
- [ ] I have added tests that prove my fix is effective or that my
feature works
<!---
User-facing changes require a CHANGELOG entry.
-->
- [ ] I have run `make changelog` and committed the
`changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the
Pulumi Cloud,
then the service should honor older versions of the CLI where this
change would not exist.
You must then bump the API version in
/pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi
Cloud API version
<!-- @Pulumi employees: If yes, you must submit corresponding changes in
the service repo. -->
2024-01-17 09:35:20 +00:00
dependabot[bot]
bd93fcf91a
Bump the go_modules group across 29 directories with 1 update ( #15131 )
...
Bumps the go_modules group with 1 update in the
/cmd/pulumi-test-language directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/sdk/go/pulumi-language-go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/sdk/nodejs/cmd/pulumi-language-nodejs directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/sdk/python/cmd/pulumi-language-python directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the /tests directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/benchmarks/go-alias-norm directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/about/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/config_basic/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/config_missing/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/config_secrets_warn/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_configure_provider/testcomponent-go
directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_methods/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_methods_errors/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_methods_provider/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_methods_resources/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_methods_unknown/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_output_values/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_plain/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_provider/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_provider_explicit/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_provider_propagation/go
directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_resource_options/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_component_unknown/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/construct_nested_component/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/deleted_with/go directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/rotate_passphrase directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Bumps the go_modules group with 1 update in the
/tests/integration/state_rename_parent directory:
[github.com/cloudflare/circl](https://github.com/cloudflare/circl ).
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/440 ">cloudflare/circl#440</a></li>
<li>Add tkn20 benchmarks by <a
href="https://github.com/tanyav2 "><code>@tanyav2</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/442 ">cloudflare/circl#442</a></li>
<li>Add partially blind RSA implementation by <a
href="https://github.com/chris-wood "><code>@chris-wood</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/445 ">cloudflare/circl#445</a></li>
<li>Update doc.go by <a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li>tss/rsa: key generation for threshold RSA (safe primes) by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/450 ">cloudflare/circl#450</a></li>
<li>Bumping Go version for CI jobs. by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/457 ">cloudflare/circl#457</a></li>
<li>Spelling by <a
href="https://github.com/jsoref "><code>@jsoref</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
<li>blindrsa: updating blindrsa to be compliant with RFC9474 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/464 ">cloudflare/circl#464</a></li>
<li>Releasing CIRCL v1.3.6 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/465 ">cloudflare/circl#465</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/nadimkobeissi "><code>@nadimkobeissi</code></a>
made their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/447 ">cloudflare/circl#447</a></li>
<li><a href="https://github.com/jsoref "><code>@jsoref</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/456 ">cloudflare/circl#456</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 ">https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.6 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c48866b306
"><code>c48866b</code></a>
Releasing CIRCL v1.3.7</li>
<li><a
href="75ef91e8a2
"><code>75ef91e</code></a>
kyber: remove division by q in ciphertext compression</li>
<li><a
href="899732a432
"><code>899732a</code></a>
build(deps): bump golang.org/x/crypto</li>
<li><a
href="99f0f715ca
"><code>99f0f71</code></a>
Releasing CIRCL v1.3.6</li>
<li><a
href="e728d0d84e
"><code>e728d0d</code></a>
Apply thibmeu code review suggestions</li>
<li><a
href="ceb2d90c49
"><code>ceb2d90</code></a>
Updating blindrsa to be compliant with RFC9474.</li>
<li><a
href="44133f7032
"><code>44133f7</code></a>
spelling: tripped</li>
<li><a
href="c2076d67b2
"><code>c2076d6</code></a>
spelling: transposes</li>
<li><a
href="dad216659e
"><code>dad2166</code></a>
spelling: title</li>
<li><a
href="171c41832e
"><code>171c418</code></a>
spelling: threshold</li>
<li>Additional commits viewable in <a
href="https://github.com/cloudflare/circl/compare/v1.3.3...v1.3.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cloudflare/circl/releases ">github.com/cloudflare/circl's
releases</a>.</em></p>
<blockquote>
<h2>CIRCL v1.3.7</h2>
<h3>What's Changed</h3>
<ul>
<li>build(deps): bump golang.org/x/crypto from
0.3.1-0.20221117191849-2c476679df9a to 0.17.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
<li>kyber: remove division by q in ciphertext compression by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/468 ">cloudflare/circl#468</a></li>
<li>Releasing CIRCL v1.3.7 by <a
href="https://github.com/armfazh "><code>@armfazh</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/469 ">cloudflare/circl#469</a></li>
</ul>
<h3>New Contributors</h3>
<ul>
<li><a
href="https://github.com/dependabot "><code>@dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/cloudflare/circl/pull/467 ">cloudflare/circl#467</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 ">https://github.com/cloudflare/circl/compare/v1.3.6...v1.3.7 </a></p>
<h2>CIRCL v1.3.6</h2>
<h3>What's Changed</h3>
<ul>
<li>internal: add TurboShake{128,256} by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/430 ">cloudflare/circl#430</a></li>
<li>Kangaroo12 draft -10 by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/431 ">cloudflare/circl#431</a></li>
<li>Add K12 as XOF by <a
href="https://github.com/bwesterb "><code>@bwesterb</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/437 ">cloudflare/circl#437</a></li>
<li>xof/k12: Fix a typo in the package documentation by <a
href="https://github.com/cjpatton "><code>@cjpatton</code></a> in <a
href="https://redirect.github.com/cloudflare/circl/pull/438 ">cloudflare/circl#438</a></li>
<li>Set CIRCL version for generated assembler code. by <a
href="https://github.com/armfazh "><code>@armfazh</code...
_Description has been truncated_
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bryce Lampe <bryce@pulumi.com>
2024-01-11 16:05:38 +00:00
Pulumi Bot
664b1b9ca5
Changelog and go.mod updates for v3.101.1 ( #15134 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-01-10 22:27:20 +00:00
Thomas Gummerer
c48ed3ba49
Revert "upgrade gocloud.dev to latest version" ( #15128 )
...
Reverts pulumi/pulumi#15011
/xref https://github.com/pulumi/pulumi/issues/15126
/xref https://github.com/pulumi/pulumi/issues/15127
2024-01-10 15:16:36 +00:00
Pulumi Bot
b37906a1cd
Changelog and go.mod updates for v3.101.0 ( #15123 )
...
Co-authored-by: github-actions <github-actions@github.com>
2024-01-10 01:20:25 +00:00
Pulumi Bot
6c7bb23a70
Changelog and go.mod updates for v3.100.0 ( #15057 )
...
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Justin Van Patten <jvp@justinvp.com>
2024-01-04 23:39:41 +00:00
Thomas Gummerer
d7b1a1d9b1
upgrade gocloud.dev to latest version ( #15011 )
...
Upgrade gocloud.dev to the latest version.
This requires a bit of a workaround, since `gocloud.dev` changed its
expectations how the encryption key is stored for Azure. In v0.27.0 and
earlier, gocloud.dev accepted an encryption key that was wrapped in
base64.RawURLEncoding (and produced one that was wrapped as such.
However in v0.28.0 that changed and the encryption key was no longer
wrapped in gocloud.dev, and as such it also didn't expect a wrapped key
anymore .
To keep compatibility we'll keep wrapping the azure key for gocloud.dev
in an inner encoding, which seems to be the path of least resistance.
Alternatively we could introduce a `v2` encoding by prefixing the
string, but that ends up being messier than just keeping the strings
compatible.
## Checklist
- [x] I have run `make tidy` to update any new dependencies
- [x] I have run `make lint` to verify my code passes the lint check
- [x] I have formatted my code using `gofumpt`
<!--- Please provide details if the checkbox below is to be left
unchecked. -->
Tests were introduced in https://github.com/pulumi/pulumi/pull/14649 ,
I've updated them slightly to cover the new code as well.
- [ ] I have added tests that prove my fix is effective or that my
feature works
<!---
User-facing changes require a CHANGELOG entry.
-->
- [x] I have run `make changelog` and committed the
`changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the
Pulumi Cloud,
then the service should honor older versions of the CLI where this
change would not exist.
You must then bump the API version in
/pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi
Cloud API version
<!-- @Pulumi employees: If yes, you must submit corresponding changes in
the service repo. -->
2024-01-04 09:03:42 +00:00
Justin Van Patten
37e6ad44d0
Upgrade go-git to v5.11.0 ( #15013 )
...
Bumps github.com/go-git/go-git/v5 to 5.11.0 to address
https://github.com/go-git/go-git/security/advisories/GHSA-mw99-9chc-xw7r
Co-authored-by: Roy Reznik <roy@wiz.io>
2024-01-02 18:41:06 +00:00
Justin Van Patten
c07baf6f3b
Upgrade pulumi-java and pulumi-yaml ( #15007 )
...
Upgrade pulumi-java to v0.9.9 and upgrade pulumi-yaml to v1.4.5.
2023-12-27 20:51:53 +00:00
Pulumi Bot
ed92af8a5e
Changelog and go.mod updates for v3.99.0 ( #14978 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-12-21 03:27:46 +00:00
Justin Van Patten
53244f09ae
Bump golang.org/x/crypto to 0.17.0 ( #14962 )
...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto ) to 0.17.0.
Replaces all the dependabot PRs in the repo with this single PR.
Also bumped `github.com/pulumi/pulumi/sdk/v3` in
`tests/integration/transformations/go/simple/go.mod` from v3.97.0 to
v3.98.0 to use esc v0.6.1, and avoid the appdash issue.
2023-12-20 09:14:29 +00:00
Justin Van Patten
9853228bc9
Update esc to v0.6.2 ( #14960 )
...
Update to the latest version of esc.
2023-12-20 04:15:34 +00:00
Pulumi Bot
bfa0ad15bf
Changelog and go.mod updates for v3.98.0 ( #14951 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-12-19 22:28:24 +00:00
Justin Van Patten
b0c276ece0
Update esc to v0.6.1 ( #14939 )
...
First step in addressing https://github.com/pulumi/pulumi/issues/14873
Note: I suspect I'll need to temporarily disable some codegen tests to
get this merged, and then once we release v3.98.0 and the next version
of esc, we can re-enable.
2023-12-19 08:05:16 +00:00
Pulumi Bot
35757a1a9d
Changelog and go.mod updates for v3.97.0 ( #14853 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-12-14 13:51:44 +00:00
Pulumi Bot
9ee43459c2
Changelog and go.mod updates for v3.96.2 ( #14809 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-12-08 22:05:58 +00:00
Pulumi Bot
e071d9da92
Changelog and go.mod updates for v3.96.1 ( #14791 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-12-08 01:57:38 +00:00
Pulumi Bot
60b250eeb0
Changelog and go.mod updates for v3.96.0 ( #14780 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-12-07 22:53:26 +00:00
Fraser Waters
29bf5d694b
Replace ResourceSet with a generic set type ( #14724 )
...
<!---
Thanks so much for your contribution! If this is your first time
contributing, please ensure that you have read the
[CONTRIBUTING](https://github.com/pulumi/pulumi/blob/master/CONTRIBUTING.md )
documentation.
-->
# Description
<!--- Please include a summary of the change and which issue is fixed.
Please also include relevant motivation and context. -->
We've got a few "Set" types written up from before generics. We should
be able to replace them all with just one generic set container now.
This replaces `graph.ResourceSet` (which is only used in pkg) with a
generic set type (github.com/deckarep/golang-set).
2023-12-03 23:20:43 +00:00
Pulumi Bot
9557a9eb00
Changelog and go.mod updates for v3.95.0 ( #14720 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-12-01 23:07:14 +00:00
Fraser Waters
d078735823
Reimport appdash from our mirror ( #14701 )
...
Fixes https://github.com/pulumi/pulumi/issues/14646 .
2023-11-30 14:21:35 +00:00
Pat Gavlin
064fb93587
[esc] Add commands for managing stack environments ( #14628 )
...
These changes add two commands for managing a stack's environments:
- `pulumi config env add`, which adds environments to a stack's import
list
- `pulumi config env rm`, which removes an environment from a stack's
import list
As implied by their paths, these commands hang off of a new sub-command
of `pulumi config`, `pulumi config env`.
From the usage:
* `pulumi config env add`
Adds environments to the end of a stack's import list. Imported
environments are merged in order per the ESC merge rules. The list of
stacks behaves as if it were the import list in an anonymous
environment.
* `pulumi config env rm`
Removes an environment from a stack's import list.
Each of these commands previews the new stack environment and shows the
environment definition. These commands print a warning if the stack's
environment does not define any of the `environmentVariables`, `files`,
or `pulumiConfig` properties.
2023-11-22 05:04:14 +00:00
Pat Gavlin
ecb58cc9f7
[cli] Include config from ESC in `pulumi config` ( #14560 )
...
These changes include any configuration values sourced from a stack's
ESC environment to the output of `pulumi config`.
These changes also add an `ENVIRONMENT` block to the output of `pulumi
config` for stacks that reference environments. This block shows the
definition of the stack's environment.
Finally, these changes add a warning to `pulumi config` if the stack's
ESC environment does not define any of the `environmentVariables`,
`files`, or `pulumiConfig` properties.
2023-11-21 10:44:45 +00:00
Pulumi Bot
000b9fd5e6
Changelog and go.mod updates for v3.94.2 ( #14610 )
...
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Fraser Waters <fraser@pulumi.com>
2023-11-19 12:43:09 +00:00
Fraser Waters
84ac5036d9
Update esc to v0.6.0 ( #14591 )
...
Should help with the `cli.PrepareEnvironment` build issues some people
have been seeing.
2023-11-17 07:39:36 +00:00
Pulumi Bot
213b90c687
Changelog and go.mod updates for v3.94.1 ( #14593 )
...
Co-authored-by: github-actions <github-actions@github.com>
2023-11-16 22:33:26 +00:00