Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/ten-parrots-poke.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# thirdweb

## 5.100.1

### Patch Changes

- [#7104](https://github.com/thirdweb-dev/js/pull/7104) [`30fafd1`](https://github.com/thirdweb-dev/js/commit/30fafd16db15ddd6f45b958a0acd30138f99e468) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Fix siwe auth always forcing a switch chain call

## 5.100.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thirdweb",
"version": "5.100.0",
"version": "5.100.1",
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Version bump is correct for patch release. The version has been updated from 5.100.0 to 5.100.1 to address the SIWE authentication flow fix. Ensure the corresponding packages/thirdweb/CHANGELOG.md includes a ## 5.100.1 entry documenting this change.


🏁 Script executed:

#!/bin/bash
# Verify the changelog entry for thirdweb v5.100.1 exists
rg --quiet '## 5\\.100\\.1' packages/thirdweb/CHANGELOG.md \
  && echo "✅ Changelog entry found for v5.100.1" \
  || echo "❌ Missing changelog entry for v5.100.1"

Length of output: 147


Missing CHANGELOG entry for v5.100.1

The version bump to 5.100.1 is correct, but I couldn’t find a corresponding ## 5.100.1 section in packages/thirdweb/CHANGELOG.md. Please add a new entry documenting the SIWE authentication flow fix before merging.

• packages/thirdweb/CHANGELOG.md: add a

## 5.100.1

- Fix: SIWE authentication flow issue (describe what was corrected)
🤖 Prompt for AI Agents
In packages/thirdweb/package.json at line 3, the version has been correctly
bumped to 5.100.1, but the corresponding changelog entry is missing. Add a new
section in packages/thirdweb/CHANGELOG.md with the header ## 5.100.1 and include
a bullet point describing the SIWE authentication flow fix, such as "- Fix: SIWE
authentication flow issue (describe what was corrected)" to properly document
this patch release.

"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down
2 changes: 2 additions & 0 deletions packages/wagmi-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @thirdweb-dev/wagmi-adapter

## 0.2.81

## 0.2.80

## 0.2.79
Expand Down
2 changes: 1 addition & 1 deletion packages/wagmi-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thirdweb-dev/wagmi-adapter",
"version": "0.2.80",
"version": "0.2.81",
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Version bump is correct for patch release. Updated from 0.2.80 to 0.2.81, matching the release cycle. Verify that packages/wagmi-adapter/CHANGELOG.md contains the ## 0.2.81 header.


🏁 Script executed:

#!/bin/bash
# Verify the changelog entry for wagmi-adapter v0.2.81 exists
rg --quiet '## 0\\.2\\.81' packages/wagmi-adapter/CHANGELOG.md \
  && echo "✅ Changelog entry found for v0.2.81" \
  || echo "❌ Missing changelog entry for v0.2.81"

Length of output: 149


Missing CHANGELOG entry for v0.2.81

The packages/wagmi-adapter/CHANGELOG.md is missing a ## 0.2.81 header for the new patch release. Please add a section for v0.2.81 above the previous entries, for example:

File: packages/wagmi-adapter/CHANGELOG.md

+ ## 0.2.81
+
+ - Describe the fixes, improvements or updates included in this patch

Once the changelog is updated, the version bump from 0.2.80 to 0.2.81 can be approved.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"version": "0.2.81",
## 0.2.81
- Describe the fixes, improvements or updates included in this patch
## 0.2.80
🤖 Prompt for AI Agents
In packages/wagmi-adapter/CHANGELOG.md, add a new section header for version
0.2.81 above the previous entries to document the patch release corresponding to
the version bump in package.json. This header should be formatted as "## 0.2.81"
and include any relevant changes or notes for this release. This update ensures
the changelog matches the version update in packages/wagmi-adapter/package.json
at line 3.

"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down
Loading