Skip to content

Conversation

@bowenwang1996
Copy link
Collaborator

Fix some bugs that would return stake twice when a validator is kicked out or unstake. Also add an integration test for testing validator kickout.

Copy link
Contributor

@SkidanovAlex SkidanovAlex left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As discussed offline, this doesn't really work

let now = Utc::now();
//get chrono::Duration::num_seconds() by deducting genesis_time from now
let chrono_seconds = now.signed_duration_since(*genesis_time).num_seconds();
let chrono_seconds = genesis_time.signed_duration_since(now).num_seconds();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change comment on previous line too

@bowenwang1996 bowenwang1996 changed the base branch from master to staging July 22, 2019 22:04
@bowenwang1996 bowenwang1996 merged commit f5bc730 into staging Jul 22, 2019
@bowenwang1996 bowenwang1996 deleted the fix-stake-bug branch July 22, 2019 22:05
bowenwang1996 added a commit that referenced this pull request Jul 23, 2019
* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)
behaviary pushed a commit that referenced this pull request Jul 23, 2019
* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)
ilblackdragon added a commit that referenced this pull request Jul 25, 2019
* Add telemetry cargo, which sends RPC to given url. Add serde attributes to transaction to correctly serialize u128. Moved out information into a separate module called from client

* Added signature to info telemetry. Default url for telemetry. Better showing mem and cpu

* Add formatting for Option<BaseEncode>, fix comments

* bump version to 0.2.6 (#1091)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)

* Disable test_kickout

* Remove trailing slash in DEFAULT_TELEMETRY_URL

* Adding node id to the info/telemetry
ilblackdragon added a commit that referenced this pull request Jul 30, 2019
* bump version to 0.2.6 (#1091)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)

* neartest.com has been retired (#1098)

* Change how docker port mapping works for macos (#1086)

* Apply Peter's fix to docker image start up code

* fix port mapping in nodelib

* fix #1042: Ban peer doesn't save to storage (#1093)

* Add registers to Wasm bindings

* Remove some unreachables (#1108)

* Revert back to cranelift backend for now (#1109)

Singlepass backend is crashing

* Fix stake test (#1095)

* Fix stake test

* Check expected validators.

* Specify expected validator order.

* No need to move anymore.
ilblackdragon added a commit that referenced this pull request Jul 31, 2019
* Adding gas usage and limit to the header to track relevant information for rewards.

* Remove usage of ..Default::default in proto conversions, which is hiding issues

* Account deletion (#1107)

* Account deletion implementation

* Stakers can't be deleted, but must have more rent on their account (4 * epoch_length). Also added check_rent method to call after transaction execution to make sure there is still enough rent on the account

* Actually delete data when deleting an account and test that

* Add support for default values in runtime config (expected that we will put reasonable defaults in the binary), and fixed test_deserialize test / testnet.json

* Moved helper functions for transactions into test-utils User trait

* Reuse check_stake function from runtime and system

* Address comments

* Step 1. Add validator proposals are called from process_block. Additional issue that verify_chunk_sginatures calling and that it may result in error are fixed.

* Merge master into staging (#1116)

* bump version to 0.2.6 (#1091)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)

* neartest.com has been retired (#1098)

* Change how docker port mapping works for macos (#1086)

* Apply Peter's fix to docker image start up code

* fix port mapping in nodelib

* fix #1042: Ban peer doesn't save to storage (#1093)

* Add registers to Wasm bindings

* Remove some unreachables (#1108)

* Revert back to cranelift backend for now (#1109)

Singlepass backend is crashing

* Fix stake test (#1095)

* Fix stake test

* Check expected validators.

* Specify expected validator order.

* No need to move anymore.

* Step 2. Move post_state_root into ChunkExtra with gas_used and validator_proposals. Removed post state root from ShardMsg

* Step 3. Gas limit/usage & validator proposals propagate

* Cleaned up tests in validator manager. First steps to make sure routing tables are populated.

* Fix chain tests

* Change 100ms to 250ms block production for chunk_manager tests
evgenykuzyakov added a commit that referenced this pull request Aug 7, 2019
commit a08667e
Author: Evgeny Kuzyakov <[email protected]>
Date:   Wed Aug 7 15:23:55 2019 -0700

    Move static functions into separate file from Runtime lib

commit d662904
Author: Evgeny Kuzyakov <[email protected]>
Date:   Wed Aug 7 11:25:41 2019 -0700

    Less hash cloning

commit 748da51
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Aug 6 16:18:32 2019 -0700

    Fix benches

commit 6ad8711
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Aug 6 15:50:40 2019 -0700

    Basic clippy cleanup

commit 4cbd392
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Aug 6 15:43:09 2019 -0700

    Cleanup Callbacks

commit bc71e5e
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Aug 6 15:36:13 2019 -0700

    Fixed remaining tests

commit 4701143
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Aug 6 14:27:24 2019 -0700

    WIP. Fixed a few tests, but a few still fail

commit bb6c090
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Aug 6 12:21:29 2019 -0700

    WIP. All tests compile, but a few still fail

commit e5279c8
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Aug 6 11:36:04 2019 -0700

    WIP. Standard test pass

commit 20f0dae
Author: Evgeny Kuzyakov <[email protected]>
Date:   Mon Aug 5 17:06:04 2019 -0700

    WIP. One test passed

commit d41ec9b
Author: Evgeny Kuzyakov <[email protected]>
Date:   Mon Aug 5 16:35:07 2019 -0700

    WIP. Compiles

commit 28485a5
Author: Evgeny Kuzyakov <[email protected]>
Date:   Mon Aug 5 13:50:24 2019 -0700

    WIP. Generating TransactionResult and map new receipts

commit 4408eac
Author: Evgeny Kuzyakov <[email protected]>
Date:   Fri Aug 2 16:25:18 2019 -0700

    WIP. Fixed some tests. Added user actions. Externals for promises

commit 807522b
Author: Evgeny Kuzyakov <[email protected]>
Date:   Thu Aug 1 16:45:11 2019 -0700

    WIP. Runtime most actions

commit e5043f8
Author: Evgeny Kuzyakov <[email protected]>
Date:   Thu Aug 1 14:54:21 2019 -0700

    WIP. Runtime some actions and validations

commit 1f9dc1c
Author: Evgeny Kuzyakov <[email protected]>
Date:   Wed Jul 31 17:26:14 2019 -0700

    WIP. Runtime data into actions

commit 5907fe5
Author: Evgeny Kuzyakov <[email protected]>
Date:   Wed Jul 31 15:11:17 2019 -0700

    WIP. Config and runtime work

commit e2395df
Author: Evgeny Kuzyakov <[email protected]>
Date:   Wed Jul 31 10:48:16 2019 -0700

    WIP. Final rebase changes

commit 6f46173
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Jul 30 17:33:59 2019 -0700

    WIP. Rename ReceiptTransaction to Receipt

commit ab5babe
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Jul 30 16:43:20 2019 -0700

    WIP. Serialization seems to work

commit 3b03864
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Jul 30 15:18:46 2019 -0700

    WIP. Fix proto tryfrom bugs

commit 51151fc
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Jul 30 13:10:13 2019 -0700

    WIP. Receipt protos

commit cb8e6ee
Author: Evgeny Kuzyakov <[email protected]>
Date:   Tue Jul 30 11:26:27 2019 -0700

    WIP. Transaction protos

commit 8db0e1a
Author: Illia Polosukhin <[email protected]>
Date:   Wed Aug 7 13:14:34 2019 -0700

    Bump version to 0.2.7

commit 4790d27
Author: Illia Polosukhin <[email protected]>
Date:   Wed Aug 7 11:40:22 2019 -0700

    Remove merge conflict issue from store/lib.rs

commit d10caa4
Merge: 54b4a36 8a9cb90
Author: Illia Polosukhin <[email protected]>
Date:   Wed Aug 7 11:39:06 2019 -0700

    Merge remote-tracking branch 'origin/master' into staging

commit 8a9cb90
Author: Vlad Frolov <[email protected]>
Date:   Mon Aug 5 01:35:25 2019 +0300

    Fixed a minor Python 3.x compatibility issue in the deployment scripts (#1132)

commit 56e792e
Author: Illia Polosukhin <[email protected]>
Date:   Thu Aug 1 17:28:29 2019 -0700

    Fix issue with running localnet second time (#1128)

    * Fix issue with running localnet second time. Better error messages and KeyboardInterrupt handling

    * Few fixes

commit d00e49d
Author: mikhailOK <[email protected]>
Date:   Tue Jul 30 14:31:15 2019 -0700

    Reenable singlepass backend (#1120)

    Update wasmer to 0.5.7, enable singlepass, add regression test

commit af9c545
Author: Marcelo Fornet <[email protected]>
Date:   Mon Jul 29 08:38:09 2019 -0700

    Fix stake test (#1095)

    * Fix stake test

    * Check expected validators.

    * Specify expected validator order.

    * No need to move anymore.

commit 2e88823
Author: mikhailOK <[email protected]>
Date:   Fri Jul 26 16:33:48 2019 -0700

    Revert back to cranelift backend for now (#1109)

    Singlepass backend is crashing

commit afe8786
Author: Bowen Wang <[email protected]>
Date:   Fri Jul 26 16:26:05 2019 -0700

    Remove some unreachables (#1108)

commit 60edd7b
Author: Maksym Zavershynskyi <[email protected]>
Date:   Fri Jul 26 15:52:16 2019 -0700

    Add registers to Wasm bindings

commit 309e151
Author: Alexey <[email protected]>
Date:   Fri Jul 26 20:18:32 2019 +0300

    fix #1042: Ban peer doesn't save to storage (#1093)

commit a4870f5
Author: Vladimir Grichina <[email protected]>
Date:   Thu Jul 25 16:35:31 2019 -0700

    Change how docker port mapping works for macos (#1086)

    * Apply Peter's fix to docker image start up code

    * fix port mapping in nodelib

commit 0fd0a32
Author: ckshei <[email protected]>
Date:   Thu Jul 25 15:25:56 2019 -0700

    neartest.com has been retired (#1098)

commit 3442597
Author: Bowen Wang <[email protected]>
Date:   Tue Jul 23 13:49:39 2019 -0700

    bump version to 0.2.6 (#1091)

    * Fix stake double return bug (#1084)

    * fix stake double return bug and update tests

    * use cache properly

    * properly implement stake returning

    * refactor test utils

    * fix gensis config

    * Fix block producer assignment (#1088)

    * fix block producer assignment

    * trying with test lock

    * tweak test parameters

    * bump version to 0.2.6

    * Update docker to have git version and use cache (#1092)
Move static functions into separate file from Runtime lib
ilblackdragon added a commit that referenced this pull request Aug 10, 2019
* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* Add epoch hash to block headers (#1089)

* add epoch hash to block header

* rework runtime adapter API

* address comments

* Check validator signature (#1100)

* check validator signature

* ignore flaky test

* fix (#1101)

* Telemetry (#1090)

* Add telemetry cargo, which sends RPC to given url. Add serde attributes to transaction to correctly serialize u128. Moved out information into a separate module called from client

* Added signature to info telemetry. Default url for telemetry. Better showing mem and cpu

* Add formatting for Option<BaseEncode>, fix comments

* bump version to 0.2.6 (#1091)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)

* Disable test_kickout

* Remove trailing slash in DEFAULT_TELEMETRY_URL

* Adding node id to the info/telemetry

* Return stake 3 epochs later (#1105)

* Return stake 3 epochs later

* remove print

* fix test

* remove clutch

* Networking AccountId tracking (#1058)

* Remove account id from handshake

* Add AnnounceAccount

+ Communication between client and network on trigger
    Missing trigger condition

+ Routing table as mechanism to support conection through hops

* Improve signed data on announce & check conditions

* reformat announce account into simpler pieces

* Handle client side.

* Fix tests

* Provide `get_epoch_offset` for mock runtime

* Address small issues

* Use hash for epoch instead of height

* Verify signature from account announcement

* Verify route while announcing account

* nit

* Fix mock test

* Add missing verify

* Update NewtorkInfo api for ease to use on tests

* Add test for announce account.

Add routing information in NetworkInfo for testing.

* Exact cause for ban in invalid acc announcement.

* Add test for announce account with different graph

* Avoid extra clone and queries

* Fix up merge conflict

* Account deletion (#1107)

* Account deletion implementation

* Stakers can't be deleted, but must have more rent on their account (4 * epoch_length). Also added check_rent method to call after transaction execution to make sure there is still enough rent on the account

* Actually delete data when deleting an account and test that

* Add support for default values in runtime config (expected that we will put reasonable defaults in the binary), and fixed test_deserialize test / testnet.json

* Moved helper functions for transactions into test-utils User trait

* Reuse check_stake function from runtime and system

* Address comments

* Merge master into staging (#1116)

* bump version to 0.2.6 (#1091)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)

* neartest.com has been retired (#1098)

* Change how docker port mapping works for macos (#1086)

* Apply Peter's fix to docker image start up code

* fix port mapping in nodelib

* fix #1042: Ban peer doesn't save to storage (#1093)

* Add registers to Wasm bindings

* Remove some unreachables (#1108)

* Revert back to cranelift backend for now (#1109)

Singlepass backend is crashing

* Fix stake test (#1095)

* Fix stake test

* Check expected validators.

* Specify expected validator order.

* No need to move anymore.

* Add slashing in validator manager (#1112)

* Add slashing in validator manager

* pass slashed_validators as a parameter to add_proposals

* change runtime adapter to include slashing

* refactor slashing

* Finish kickout test after everything gets verified (#1123)

* Finish kickout test after everything gets verified

* Remove println

* typo (#1124)

* Remove merge conflict issue from store/lib.rs

* Bump version to 0.2.7

* Fix test_deserialize issue

* Enabled sending telemetry data over https (#1149)

* Update testnet genesis (#1150)

* HARD FORK: update testnet genesis

* Dedup validators in get_epoch_producers

* Correct test and reduce size of docker by removing files after docker is done

* Zero out storage_used_at

* Validator proposals fix (#1154)

* Fix issue that validator proposals were not propagated to Block::produce

* Speed up sync_state_stake_change and remove extra print

* Update testnet genesis to 1859314 block

* Hot fixes to syncing issues

* Fix issue with orphan resolution

* Fix genesis with fisherman to 0 for now

* Fix rushed fix

* Fix validator_join and remove warning

* Fix total approvals formula when there are 2 validatos

* Bump up the timelimits for announce_account tests

* Check what happened on CI for the announce_account test

* Add ignore to account_announce tests as they are currently not fully propagating account into. Will be fixing separtely
ilblackdragon pushed a commit that referenced this pull request Aug 29, 2019
* Release v0.2.7 (#1155)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* Add epoch hash to block headers (#1089)

* add epoch hash to block header

* rework runtime adapter API

* address comments

* Check validator signature (#1100)

* check validator signature

* ignore flaky test

* fix (#1101)

* Telemetry (#1090)

* Add telemetry cargo, which sends RPC to given url. Add serde attributes to transaction to correctly serialize u128. Moved out information into a separate module called from client

* Added signature to info telemetry. Default url for telemetry. Better showing mem and cpu

* Add formatting for Option<BaseEncode>, fix comments

* bump version to 0.2.6 (#1091)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)

* Disable test_kickout

* Remove trailing slash in DEFAULT_TELEMETRY_URL

* Adding node id to the info/telemetry

* Return stake 3 epochs later (#1105)

* Return stake 3 epochs later

* remove print

* fix test

* remove clutch

* Networking AccountId tracking (#1058)

* Remove account id from handshake

* Add AnnounceAccount

+ Communication between client and network on trigger
    Missing trigger condition

+ Routing table as mechanism to support conection through hops

* Improve signed data on announce & check conditions

* reformat announce account into simpler pieces

* Handle client side.

* Fix tests

* Provide `get_epoch_offset` for mock runtime

* Address small issues

* Use hash for epoch instead of height

* Verify signature from account announcement

* Verify route while announcing account

* nit

* Fix mock test

* Add missing verify

* Update NewtorkInfo api for ease to use on tests

* Add test for announce account.

Add routing information in NetworkInfo for testing.

* Exact cause for ban in invalid acc announcement.

* Add test for announce account with different graph

* Avoid extra clone and queries

* Fix up merge conflict

* Account deletion (#1107)

* Account deletion implementation

* Stakers can't be deleted, but must have more rent on their account (4 * epoch_length). Also added check_rent method to call after transaction execution to make sure there is still enough rent on the account

* Actually delete data when deleting an account and test that

* Add support for default values in runtime config (expected that we will put reasonable defaults in the binary), and fixed test_deserialize test / testnet.json

* Moved helper functions for transactions into test-utils User trait

* Reuse check_stake function from runtime and system

* Address comments

* Merge master into staging (#1116)

* bump version to 0.2.6 (#1091)

* Fix stake double return bug (#1084)

* fix stake double return bug and update tests

* use cache properly

* properly implement stake returning

* refactor test utils

* fix gensis config

* Fix block producer assignment (#1088)

* fix block producer assignment

* trying with test lock

* tweak test parameters

* bump version to 0.2.6

* Update docker to have git version and use cache (#1092)

* neartest.com has been retired (#1098)

* Change how docker port mapping works for macos (#1086)

* Apply Peter's fix to docker image start up code

* fix port mapping in nodelib

* fix #1042: Ban peer doesn't save to storage (#1093)

* Add registers to Wasm bindings

* Remove some unreachables (#1108)

* Revert back to cranelift backend for now (#1109)

Singlepass backend is crashing

* Fix stake test (#1095)

* Fix stake test

* Check expected validators.

* Specify expected validator order.

* No need to move anymore.

* Add slashing in validator manager (#1112)

* Add slashing in validator manager

* pass slashed_validators as a parameter to add_proposals

* change runtime adapter to include slashing

* refactor slashing

* Finish kickout test after everything gets verified (#1123)

* Finish kickout test after everything gets verified

* Remove println

* typo (#1124)

* Remove merge conflict issue from store/lib.rs

* Bump version to 0.2.7

* Fix test_deserialize issue

* Enabled sending telemetry data over https (#1149)

* Update testnet genesis (#1150)

* HARD FORK: update testnet genesis

* Dedup validators in get_epoch_producers

* Correct test and reduce size of docker by removing files after docker is done

* Zero out storage_used_at

* Validator proposals fix (#1154)

* Fix issue that validator proposals were not propagated to Block::produce

* Speed up sync_state_stake_change and remove extra print

* Update testnet genesis to 1859314 block

* Hot fixes to syncing issues

* Fix issue with orphan resolution

* Fix genesis with fisherman to 0 for now

* Fix rushed fix

* Fix validator_join and remove warning

* Fix total approvals formula when there are 2 validatos

* Bump up the timelimits for announce_account tests

* Check what happened on CI for the announce_account test

* Add ignore to account_announce tests as they are currently not fully propagating account into. Will be fixing separtely

* Remove #update-as from dependencies (#1168)

* Remove #nightshade from near-shell dependency (#1169)

* Add print headers to state-viewer (#1171)

* add print headers to state-viewer

* more info

* Fix bug in printing blocks (#1173)

* add print headers to state-viewer

* more info

* fix

* Allow state viewer to replay chain (#1175)

* Allow state viewer to replay chain

* add help

* Fix incorrect epoch hash computation (#1214)

* Fix incorrect epoch hash computation

* fix another bug

* bump version to 0.2.8

* use bs58 properly

* fix tests

* address comments

* Fix compilatoin error
github-merge-queue bot pushed a commit that referenced this pull request Oct 27, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade
react-tooltip from 5.8.3 to 5.21.5.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **76 versions** ahead of your current
version.
- The recommended version was released **a month ago**, on 2023-09-27.

<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>react-tooltip</b></summary>
    <ul>
      <li>
<b>5.21.5</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.21.5">2023-09-27</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<hr>
<h2><em>No codebase changes</em></h2>
<h2>What's Changed</h2>
<ul>
<li>Dopt sponsorship by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/gabrieljablonski/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/gabrieljablonski">@
gabrieljablonski</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1916276522"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1097"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1097/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1097">#1097</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.21.4...v5.21.5"><tt>v5.21.4...v5.21.5</tt></a></p>
      </li>
      <li>
<b>5.21.4</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.21.4">2023-09-14</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<hr>
<h2><em>No codebase changes</em></h2>
      </li>
      <li>
<b>5.21.3</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.21.3">2023-09-06</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<hr>
<h2><em>No codebase changes</em></h2>
<h2>What's Changed</h2>
<ul>
<li>docs(readme): move up sponsored section</li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.21.2...v5.21.3"><tt>v5.21.2...v5.21.3</tt></a></p>
      </li>
      <li>
<b>5.21.2</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.21.2">2023-09-06</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<hr>
<h2><em>No codebase changes</em></h2>
<h2>What's Changed</h2>
<ul>
<li>chore: use carbon ads instead of google ads by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/danielbarion/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/danielbarion">@ danielbarion</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="1860019784" data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1084"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1084/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1084">#1084</a></li>
<li>Frigade sponsorship by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/gabrieljablonski/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/gabrieljablonski">@
gabrieljablonski</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1882857024"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1087"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1087/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1087">#1087</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.21.1...v5.21.2"><tt>v5.21.1...v5.21.2</tt></a></p>
      </li>
      <li>
<b>5.21.1</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.21.1">2023-08-15</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<h2>What's Changed</h2>
<ul>
<li><code>arrowColor</code> prop by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/gabrieljablonski/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/gabrieljablonski">@
gabrieljablonski</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1835626072"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1079"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1079/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1079">#1079</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.20.0...v5.21.1"><tt>v5.20.0...v5.21.1</tt></a></p>
      </li>
      <li>
        <b>5.21.0</b> - 2023-08-15
      </li>
      <li>
<b>5.20.0</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.20.0">2023-08-03</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<h2>What's Changed</h2>
<ul>
<li>Update troubleshooting docs by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/gabrieljablonski/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/gabrieljablonski">@
gabrieljablonski</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1826424107"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1073"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1073/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1073">#1073</a></li>
<li>Track window resize to reposition tooltip by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/Tanmayshetty/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/Tanmayshetty">@ Tanmayshetty</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="1827885109" data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1075"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1075/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1075">#1075</a></li>
<li><code>react-tooltip__show</code> class when tooltip is open by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/gabrieljablonski/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/gabrieljablonski">@
gabrieljablonski</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1833271213"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1078"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1078/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1078">#1078</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/Tanmayshetty/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/Tanmayshetty">@ Tanmayshetty</a>
made their first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1827885109"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1075"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1075/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1075">#1075</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.19.0...v5.20.0"><tt>v5.19.0...v5.20.0</tt></a></p>
      </li>
      <li>
<b>5.19.0</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.19.0">2023-07-26</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<h2>What's Changed</h2>
<ul>
<li>Fix <code>closeOnResize</code> option on docs by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/hurrmun/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/hurrmun">@ hurrmun</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1798551655" data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1056"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1056/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1056">#1056</a></li>
<li>feat: add event listener to handle style injection by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/danielbarion/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/danielbarion">@ danielbarion</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="1784702535" data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1052"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1052/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1052">#1052</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/hurrmun/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/hurrmun">@ hurrmun</a> made their
first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1798551655"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1056"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1056/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1056">#1056</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.18.0...v5.19.0"><tt>v5.18.0...v5.19.0</tt></a></p>
      </li>
      <li>
        <b>5.19.0-beta.1052.0</b> - 2023-07-24
      </li>
      <li>
        <b>5.18.1</b> - 2023-07-18
      </li>
      <li>
        <b>5.18.1-beta.1062.0</b> - 2023-07-18
      </li>
      <li>
        <b>5.18.1-beta.0</b> - 2023-07-18
      </li>
      <li>
<b>5.18.0</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.18.0">2023-07-03</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<h2>What's Changed</h2>
<ul>
<li><code>opacity</code> prop by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/gabrieljablonski/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/gabrieljablonski">@
gabrieljablonski</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1786312791"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1054"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1054/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1054">#1054</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.17.0...v5.18.0"><tt>v5.17.0...v5.18.0</tt></a></p>
      </li>
      <li>
<b>5.17.0</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.17.0">2023-07-03</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<h2>What's Changed</h2>
<ul>
<li>Add "border" option including arrow by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/MoveRoad/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/MoveRoad">@ MoveRoad</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1773168281" data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1048"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1048/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1048">#1048</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/MoveRoad/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/MoveRoad">@ MoveRoad</a> made
their first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1773168281"
data-permission-text="Title is private"
data-url="ReactTooltip/react-tooltip#1048"
data-hovercard-type="pull_request"
data-hovercard-url="/ReactTooltip/react-tooltip/pull/1048/hovercard"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/pull/1048">#1048</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.16.1...v5.17.0"><tt>v5.16.1...v5.17.0</tt></a></p>
      </li>
      <li>
<b>5.16.1</b> - <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases/tag/v5.16.1">2023-06-27</a></br><p>If
you like the project, please give the project a GitHub 🌟</p>
<h2>What's Changed</h2>
<ul>
<li>fix: <code>process</code> as <code>undefined</code> on ReactTooltip
<code>v5.16.0</code> when running directly on browser breaking the
docs</li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/v5.16.0...v5.16.1"><tt>v5.16.0...v5.16.1</tt></a></p>
      </li>
      <li>
        <b>5.16.0</b> - 2023-06-27
      </li>
      <li>
        <b>5.16.0-beta.10410.0</b> - 2023-06-24
      </li>
      <li>
        <b>5.16.0-beta.1041.0</b> - 2023-06-24
      </li>
      <li>
        <b>5.15.1</b> - 2023-06-27
      </li>
      <li>
        <b>5.15.0</b> - 2023-06-22
      </li>
      <li>
        <b>5.15.0-beta.1045.1</b> - 2023-06-22
      </li>
      <li>
        <b>5.15.0-beta.1045.0</b> - 2023-06-21
      </li>
      <li>
        <b>5.15.0-beta.1041.0</b> - 2023-06-16
      </li>
      <li>
        <b>5.14.1-beta.1043.0</b> - 2023-06-20
      </li>
      <li>
        <b>5.14.0</b> - 2023-06-14
      </li>
      <li>
        <b>5.13.2</b> - 2023-06-12
      </li>
      <li>
        <b>5.13.1</b> - 2023-05-19
      </li>
      <li>
        <b>5.13.0</b> - 2023-05-16
      </li>
      <li>
        <b>5.12.0</b> - 2023-05-16
      </li>
      <li>
        <b>5.12.0-beta.1014.3</b> - 2023-05-16
      </li>
      <li>
        <b>5.12.0-beta.1014.2</b> - 2023-05-16
      </li>
      <li>
        <b>5.12.0-beta.1014.1</b> - 2023-04-14
      </li>
      <li>
        <b>5.11.2</b> - 2023-05-04
      </li>
      <li>
        <b>5.11.2-beta.1019.0</b> - 2023-05-04
      </li>
      <li>
        <b>5.11.2-beta.0</b> - 2023-04-10
      </li>
      <li>
        <b>5.11.1</b> - 2023-04-10
      </li>
      <li>
        <b>5.11.0</b> - 2023-04-10
      </li>
      <li>
        <b>5.10.6</b> - 2023-04-10
      </li>
      <li>
        <b>5.10.6-beta.1009.1</b> - 2023-04-10
      </li>
      <li>
        <b>5.10.6-beta.1005.2</b> - 2023-04-07
      </li>
      <li>
        <b>5.10.6-beta.1005.1</b> - 2023-04-07
      </li>
      <li>
        <b>5.10.5</b> - 2023-04-03
      </li>
      <li>
        <b>5.10.5-beta.996.1</b> - 2023-04-01
      </li>
      <li>
        <b>5.10.4</b> - 2023-03-29
      </li>
      <li>
        <b>5.10.4-beta.994.1</b> - 2023-03-29
      </li>
      <li>
        <b>5.10.3</b> - 2023-03-29
      </li>
      <li>
        <b>5.10.2-beta.994.1</b> - 2023-03-29
      </li>
      <li>
        <b>5.10.2-beta.4</b> - 2023-03-29
      </li>
      <li>
        <b>5.10.2-beta.3</b> - 2023-03-28
      </li>
      <li>
        <b>5.10.2-beta.2</b> - 2023-03-28
      </li>
      <li>
        <b>5.10.2-beta.1</b> - 2023-03-27
      </li>
      <li>
        <b>5.10.1</b> - 2023-03-23
      </li>
      <li>
        <b>5.10.1-beta-9</b> - 2023-03-14
      </li>
      <li>
        <b>5.10.1-beta-8</b> - 2023-03-13
      </li>
      <li>
        <b>5.10.1-beta-7</b> - 2023-03-12
      </li>
      <li>
        <b>5.10.1-beta-6</b> - 2023-03-12
      </li>
      <li>
        <b>5.10.1-beta-10</b> - 2023-03-22
      </li>
      <li>
        <b>5.10.1-beta.6</b> - 2023-03-29
      </li>
      <li>
        <b>5.10.1-beta.5</b> - 2023-03-10
      </li>
      <li>
        <b>5.10.1-beta.4</b> - 2023-03-10
      </li>
      <li>
        <b>5.10.1-beta.3</b> - 2023-03-10
      </li>
      <li>
        <b>5.10.1-beta.2</b> - 2023-03-10
      </li>
      <li>
        <b>5.10.1-beta.1</b> - 2023-03-10
      </li>
      <li>
        <b>5.10.1-beta.0</b> - 2023-03-10
      </li>
      <li>
        <b>5.10.0</b> - 2023-03-09
      </li>
      <li>
        <b>5.10.0-beta.1</b> - 2023-03-09
      </li>
      <li>
        <b>5.10.0-beta.0</b> - 2023-03-08
      </li>
      <li>
        <b>5.9.1</b> - 2023-03-06
      </li>
      <li>
        <b>5.9.1-beta.2</b> - 2023-03-09
      </li>
      <li>
        <b>5.9.1-beta.1</b> - 2023-03-09
      </li>
      <li>
        <b>5.9.1-beta.0</b> - 2023-03-06
      </li>
      <li>
        <b>5.9.0</b> - 2023-03-05
      </li>
      <li>
        <b>5.8.4-beta.0-esbuild</b> - 2023-03-04
      </li>
      <li>
        <b>5.8.4-beta.2</b> - 2023-03-04
      </li>
      <li>
        <b>5.8.4-beta.1</b> - 2023-03-04
      </li>
      <li>
        <b>5.8.4-beta.0</b> - 2023-03-04
      </li>
      <li>
        <b>5.8.3</b> - 2023-02-23
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/releases">react-tooltip
GitHub release notes</a>
  </details>
</details>

<details>
  <summary><b>Commit messages</b></summary>
  </br>
  <details>
    <summary>Package name: <b>react-tooltip</b></summary>
    <ul>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/a64019c043ea5a24b15f67cfbd2fd8411dea9abb">a64019c</a>
v5.21.5</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/524756dec9d026f04dfb94cbddce9fec78bbabf2">524756d</a>
docs: fix references to dopt</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/2aff2b704e92f717b064dcc312617be5c1738228">2aff2b7</a>
docs: ts-ignore logo import</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/c01b475f0f1e83ec51ec0cd3ee63f6b2d77fbbf5">c01b475</a>
docs: docs dopt sponsor</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/a4db9c74e07502278ce5018e8fe5ee1ee2d36691">a4db9c7</a>
docs: readme dopt sponsor</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/33c17c8aaf0944357d15e24318675f399e131679">33c17c8</a>
chore: update github sponsors list</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/baabf8cc34e6fad5675f358cde6c116a7ea17688">baabf8c</a>
chore: fix carbon ads position on hoome page</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/3cb630816ae007362a67537b35ee1ccd4028dfeb">3cb6308</a>
docs: fix sponsored by breaking mobile view on home page and add carbon
ads on home page</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/01d9afba5fd0a2bb58d021495d2ef5709875184f">01d9afb</a>
chore(version): v5.21.3</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/ed19f6e2f77eecfd40bca129db59186061fd3652">ed19f6e</a>
docs(readme): move up sponsored section</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/e59ec52fabef2b11b74e2ac23c65a6623ef0aa30">e59ec52</a>
chore: add event tracking for clicks on sponsored banners</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/b55d99e899bab3cd23fec35544f565a1058e8ba0">b55d99e</a>
chore: publish a new release to update npm readme.md</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/6079e0b8165d91295a9101b3daae3cb37d419f5d">6079e0b</a>
chore: move digital ocean banner into the Powered By section on
readme</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/a5327c22e01cf8f6315a50baf4d8e453b7c0397a">a5327c2</a>
fix: add max-width into Frigade banner</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/cd52f9240e6302b2ed8793007506613fd377a308">cd52f92</a>
Merge pull request #1087 from ReactTooltip/docs/frigade-sponsor</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/cac5110e5e1c577f92de8ec7b6b01d401655ae27">cac5110</a>
refactor: add new components to wrapper the new code of this PR</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/d86555742e0027098b972e18fcc9334203901f0f">d865557</a>
docs: frigade sponsor docs</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/f1d42c2e60e077efca7960c0c9721c8fe953fbc5">f1d42c2</a>
docs: frigade sponsor readme</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/cc91763dd71f42c9bd63e84a5e6342577b8ddcd3">cc91763</a>
ads: remove second ads container that was in testing</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/551cfe47ac25fc83c3a8f3837a0f81aa394bb098">551cfe4</a>
ads: show two ads on a client height higher or equal to 950px</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/162fa67f426e9ac8c3ce4a47189297a2cc80a561">162fa67</a>
Merge pull request #1084 from ReactTooltip/docs/carbon-ads</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/23e4b794683bd04e7dd138f3a9947d955179ef8f">23e4b79</a>
chore: use carbon ads instead of google ads</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/29c4168ba0395a2ba97dd940f8610b166700ca00">29c4168</a>
chore: update version and docs package</li>
<li><a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/commit/e5df64204a104170b599f41814b11ff1c48ec725">e5df642</a>
Merge branch &#x27;master&#x27; of
github.com:ReactTooltip/react-tooltip</li>
    </ul>

<a
href="https://snyk.io/redirect/github/ReactTooltip/react-tooltip/compare/c9cb90793374480707e0609bb852a022c45d34e6...a64019c043ea5a24b15f67cfbd2fd8411dea9abb">Compare</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiJlN2NmMjBjZS03NjJmLTRkMzQtOWJlYi0zNzkzMGE4MWViMWUiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6ImU3Y2YyMGNlLTc2MmYtNGQzNC05YmViLTM3OTMwYTgxZWIxZSJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/pagoda-pilot/project/12e75fec-70e5-4998-8926-9b5a6351ba5f?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/pagoda-pilot/project/12e75fec-70e5-4998-8926-9b5a6351ba5f/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/pagoda-pilot/project/12e75fec-70e5-4998-8926-9b5a6351ba5f/settings/integration?pkg&#x3D;react-tooltip&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"e7cf20ce-762f-4d34-9beb-37930a81eb1e","prPublicId":"e7cf20ce-762f-4d34-9beb-37930a81eb1e","dependencies":[{"name":"react-tooltip","from":"5.8.3","to":"5.21.5"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/pagoda-pilot/project/12e75fec-70e5-4998-8926-9b5a6351ba5f?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"12e75fec-70e5-4998-8926-9b5a6351ba5f","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":76,"publishedDate":"2023-09-27T20:46:20.153Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants