Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/google/uuid from 1.3.0 to 1.3.1 #1657

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 22, 2023

Bumps github.com/google/uuid from 1.3.0 to 1.3.1.

Release notes

Sourced from github.com/google/uuid's releases.

v1.3.1

1.3.1 (2023-08-18)

Bug Fixes

  • Use .EqualFold() to parse urn prefixed UUIDs (#118) (574e687)
Changelog

Sourced from github.com/google/uuid's changelog.

1.3.1 (2023-08-18)

Bug Fixes

  • Use .EqualFold() to parse urn prefixed UUIDs (#118) (574e687)

Changelog

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/google/uuid](https://github.com/google/uuid) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/google/uuid/releases)
- [Changelog](https://github.com/google/uuid/blob/master/CHANGELOG.md)
- [Commits](google/uuid@v1.3.0...v1.3.1)

---
updated-dependencies:
- dependency-name: github.com/google/uuid
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner August 22, 2023 08:35
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Aug 22, 2023
@nullpointer0x00 nullpointer0x00 enabled auto-merge (squash) August 22, 2023 14:43
@nullpointer0x00 nullpointer0x00 merged commit 37b7fbd into main Aug 22, 2023
40 of 41 checks passed
@nullpointer0x00 nullpointer0x00 deleted the dependabot/go_modules/github.com/google/uuid-1.3.1 branch August 22, 2023 14:43
Taztingo pushed a commit that referenced this pull request Aug 28, 2023
Bumps [github.com/google/uuid](https://github.com/google/uuid) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/google/uuid/releases)
- [Changelog](https://github.com/google/uuid/blob/master/CHANGELOG.md)
- [Commits](google/uuid@v1.3.0...v1.3.1)

---
updated-dependencies:
- dependency-name: github.com/google/uuid
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Taztingo added a commit that referenced this pull request Sep 6, 2023
* Added protos for oracle module.

* Added simple implementation for the oracle module. No logic, tests, or simulation have been completed yet.

* Fixed signature of OracleResult.

* Added async-icq to provenance. Still need to hook up oracle module, and then integrate the two.

* Added the oracle module app.go

* Added empty Msg interface implementation for UpdateOracle.

* Added ICQKeeper to OracleKeeper. Made the QueryOracle request a transaction.

* Added some more stuff from the example ICQ Controller created by Quasar. Haven't gotten to the ibc or query part yet. Still need to verify if everything is needed and why.

* Added some more functions from quasar and got the setup to build and run. Still needs to be tested and verified that icq works.

* I successfully hooked up interchain queries. I just need to tailor it for our needs and add the transaction to the whitelist.

* Disconnected example ICQ and started writing our own. Added some implementation to add a contract address for the oracle. Tested and verified that ICQ hits our custom query entrypoint.

* Finished basic implementation of Chain1 -> Chain2 -> Contract implementation. Worked in tests.

* Renamed queries and transactions. Added ExportGenesis logic. Fixed some comments.

* Moved some functions around and renamed files.

* Removed the ibc events and made them query typed events.

* Updated CHANGELOG.

* Updated documentation for CLI and fixed command names.

* More cleanup and removal of unused method.

* Added ValidateBasic logic and some error checks on the query server.

* Added more documentation and moved keys to single file.

* Fixed module naming in comments.

* Updated genesis.go errors and added tests.

* Added tests for keys and ensured all keys have getters.

* Added tests for msgs.

* Removed references to contract, and used oracle instead. Updated documentation for keys.

* Changed update oracle to be a proposal.

* Finished README and concepts.

* Added note about the ibc channel.

* Added state to spec.

* Added messages spec.

* Added queries spec.

* Finished documentation for events.

* Finished documentation for genesis.

* Fixed typo in documentation.

* Added table of contents to all spec files.

* Updated proto comment.

* Hooked up the simulation tests, but have not verified their correctness.

* Added genesis tests for keeper.

* Added oracle keeper tests.

* Added tests for params.

* Updated comments in keeper.go

* Added missing keeper_test for setup of previous committed tests.

* Added tests for the query_server. Did not do QueryState since it's being removed. Still have to update it to include the response in the events.

* Added tests for query.

* Added tests for message server, and added mocks to properly mock keepers.

* Added icq query tests. Updated channel keeper mock to have pointer receivers to update seq numbers

* Finished tests for relay.go

* Removed storing query request and response in state and just have the response in the event. Also added the local channel on each event to help improve identification of where these packets come from in events.

* Updated spec with removal of query request response state. Updated events in the spec to include the channel. Updated comments in protobuf.

* Updated the error for channel id validate basic.

* Added the oracle to the genesis state.

* Error is not thrown when oracle is not set. Empty address will just be returned.

* Added cli queries test for oracle.

* Updated link in genesis spec.

* Added cli tx test for oracle.

* First attempt at simulation tets for oracle module.

* Linted files and fixed one sim test.

* Updated sim_test.go to add app state for icq.

* Added saffron upgrade with oracle and icqhost configure.

* Did some linting on the code.

* Fixed some more linting issues.

* Ran lint fix on modules.

* Added error checking for emitted typed events.

* Fixed some more linting issues.

* Fixed linting on file with gci.

* Added saffron and saffron-rc1 release. Added upgrade tests for them.

* Added logic for testnet in upgrade handler.

* Fixed comment.

* Removed params.

* Updated comment for BindPort.

* Split interface check on multiple lines.

* Moved methods up.

* Moved saffron-rc1 upgrade up 1.

* Added removeInactiveValidatorDelegations.

* Changed Equal(0) test to .Empty

* Removed nil check.

* Updated comments.

* Removed unused error and fixed linting issue with unused param.

* Removed the LastSequenceNumber because it is no longer used.

* Bump bufbuild/buf-setup-action from 1.26.0 to 1.26.1 (#1650)

Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.26.0 to 1.26.1.
- [Release notes](https://github.com/bufbuild/buf-setup-action/releases)
- [Commits](bufbuild/buf-setup-action@v1.26.0...v1.26.1)

---
updated-dependencies:
- dependency-name: bufbuild/buf-setup-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 (#1651)

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.6.0 to 3.7.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v3.6.0...v3.7.0)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Allow restricted coins to be quarantined (#1652)

* [1626]: Add a whitelist to the marker keeper.

* [1626]: Change name to the more descriptive reqAttrBypassAddrs (from whitelistAddrs).

* [1626]: Update validateSendDenom to check for bypassing and apply it appropriately.

* [1626]: Tweak a couple comments.

* [1626]: Add unit tests.

* [1626]: Expand on the comment of the reqAttrBypassAddrs field.

* [1626]: Add changelog entry.

* [1626]: Add some unit tests dealing with marker/quarantine restriction interaction.

* [1626]: Add an empty expected send error to highlight that the test expects the send to pass, but accept to fail.

* [1626]: Add some spec docs about transfers.

* [1626]: Copy the reqAttrBypassAddrs slice in NewKeeper so that nothing can change the list from outside the keeper.

* [1626]: Fix the distribution module entry comment.

* [1626]: nil-in-nil-out the deepCopyAccAddresses function.

* [1626]: Prevent forced transfers from module accounts and smart contracts.

* [1626]: add changelog entry about the module accounts thing.

* [1626]: Yay misspell. Pro tip, it's not transfered.

* [1626]: make update-tocs.

* [1626]: Fix denomloop background color.

* [1626]: Clarify some documentation.

* [1626]: Updates to the spec docs from feedback.

* [1626]: Create an ImmutableAccAddresses type and use that for reqAttrBypassAddrs for even more immutability protection.

* [1626]: In the MsgTransferRequest workflow diagram, clarify that the blocked address check is related to the bank module.

* Bump github.com/google/uuid from 1.3.0 to 1.3.1 (#1657)

Bumps [github.com/google/uuid](https://github.com/google/uuid) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/google/uuid/releases)
- [Changelog](https://github.com/google/uuid/blob/master/CHANGELOG.md)
- [Commits](google/uuid@v1.3.0...v1.3.1)

---
updated-dependencies:
- dependency-name: github.com/google/uuid
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Updated dependencies.

* Updated specs for Oracle module.

* Simplified tx and removed useless gov flag.

* Removed multiple decoders.

* Removed pointer arg since it was only needed for tests. Updated tests to use With instead.

* Removed 99designs keyring dependency and replaced it with cosmos keyring.

* Remove remaining references to LastQuerySequence.

* Add decoder test that was missing.

* Add genesis_tests for simulation.

* Removed paramspace.

* Fix test name.

* Move tested pieces into variables.

* Remove State from TOC.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Ira Miller <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Wedul <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants