repo stringlengths 5 53 | pr_number int32 1 321k | task_type stringclasses 2
values | issue_text stringlengths 0 81.2k | pr_title stringlengths 1 319 | pr_body stringlengths 0 105k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | gold_diff stringlengths 0 202M | changed_files listlengths 0 100 | review_threads listlengths 0 100 | test_patch stringlengths 0 23.4M | merged bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
unclecode/crawl4ai | 1,827 | issue_to_patch | fix: /llm per-request provider override, Redis config from host/port/password (#1611, #1817) | ## Summary
- Fixes #1611 — `/llm` GET endpoint now accepts per-request `provider`, `temperature`, `base_url` query params (consistent with `/md` and `/llm/job`)
- Fixes #1817 — Redis connection now properly uses `host`/`port`/`password`/`db`/`ssl` from `config.yml`, with `REDIS_HOST`/`REDIS_PORT`/`REDIS_PASSWORD` env v... | d907e167a55c16f8634333d27f895e4177dac189 | 480d938f6707ea73e504c970da528a6f12119756 | diff --git a/deploy/docker/api.py b/deploy/docker/api.py
index 6d7c225b9..1ecc9e0b4 100644
--- a/deploy/docker/api.py
+++ b/deploy/docker/api.py
@@ -80,7 +80,10 @@ async def hset_with_ttl(redis, key: str, mapping: dict, config: dict):
async def handle_llm_qa(
url: str,
query: str,
- config: dict
+ conf... | [
"deploy/docker/api.py",
"deploy/docker/server.py",
"tests/test_issue_1611_llm_provider.py"
] | [] | diff --git a/tests/test_issue_1611_llm_provider.py b/tests/test_issue_1611_llm_provider.py
new file mode 100644
index 000000000..157d83ba8
--- /dev/null
+++ b/tests/test_issue_1611_llm_provider.py
@@ -0,0 +1,114 @@
+"""Tests for issue #1611: Docker API /llm endpoint ignores per-request provider.
+
+The bug: /llm endpoi... | true | |
unclecode/crawl4ai | 1,833 | issue_to_patch | fix: css_selector ignored in LXML scraping for raw:// URLs (#1484) | ## Summary
- Fixes #1484
- `css_selector` was ignored in `_scrap()` — only `target_elements` was applied to the DOM. Now `css_selector` filters first, then `target_elements` narrows within that selection.
## Changes
- `crawl4ai/content_scraping_strategy.py`: Added `css_selector` filtering before `target_elements` proc... | bf1158a61b02985e5eb9e2fbc7b5347139b43657 | 8de83a3590301282b748cc5202c116a7b2495b05 | diff --git a/crawl4ai/content_scraping_strategy.py b/crawl4ai/content_scraping_strategy.py
index 8e084378c..ade19aa11 100644
--- a/crawl4ai/content_scraping_strategy.py
+++ b/crawl4ai/content_scraping_strategy.py
@@ -695,17 +695,30 @@ def _scrap(
meta = {}
content_element = None
+ ... | [
"crawl4ai/content_scraping_strategy.py",
"tests/test_issue_1484_css_selector.py"
] | [] | diff --git a/tests/test_issue_1484_css_selector.py b/tests/test_issue_1484_css_selector.py
new file mode 100644
index 000000000..e083514d1
--- /dev/null
+++ b/tests/test_issue_1484_css_selector.py
@@ -0,0 +1,167 @@
+"""Tests for issue #1484: css_selector doesn't work but target_elements does.
+
+The bug: When using raw... | true | |
unclecode/crawl4ai | 1,829 | issue_to_patch | fix: screenshot distortion, deep crawl timeout/arun_many, CLI encoding (#1370, #1818, #1509, #1762) | ## Summary
- Fixes #1370 — Screenshot distortion on Elementor/responsive sites
- Fixes #1818 — Deep crawl times out on subpages that work with simple crawl
- Fixes #1509 — `deep_crawl_strategy` ignored in `arun_many()`
- Fixes #1762 — CLI charmap encoding error on Windows (`save_global_config`)
## Changes
### #1370 —... | d907e167a55c16f8634333d27f895e4177dac189 | 3f481e9e5cb736fa93e1fe51e164cfc02e8e81b6 | diff --git a/crawl4ai/async_crawler_strategy.py b/crawl4ai/async_crawler_strategy.py
index caa18a134..04434b583 100644
--- a/crawl4ai/async_crawler_strategy.py
+++ b/crawl4ai/async_crawler_strategy.py
@@ -566,6 +566,14 @@ async def _crawl_web(
# Get page for session
page, context = await self.browser_... | [
"crawl4ai/async_crawler_strategy.py",
"crawl4ai/async_webcrawler.py",
"crawl4ai/cli.py",
"tests/test_issue_1370_1818_1762_1509.py"
] | [] | diff --git a/tests/test_issue_1370_1818_1762_1509.py b/tests/test_issue_1370_1818_1762_1509.py
new file mode 100644
index 000000000..732502d8e
--- /dev/null
+++ b/tests/test_issue_1370_1818_1762_1509.py
@@ -0,0 +1,512 @@
+"""
+Regression tests for crawl4ai issue fixes:
+ #1762 — CLI encoding (utf-8 on all file writes)... | true | |
unclecode/crawl4ai | 1,823 | issue_to_patch | fix: screenshot respects scan_full_page=False (#1750) | ## Summary
- Fixes #1750
- `take_screenshot()` ignored the `scan_full_page` config flag — tall pages always got a full-page screenshot even when `scan_full_page=False`
- Now passes `scan_full_page` through to `take_screenshot()` and uses viewport-only capture when `False`
## Changes
- `crawl4ai/async_crawler_strategy.... | 11b45760da9ef4e8d2e9a5a5b6faf95d692d73ec | 6efbffe345dd311a3af8287534358fb1416581e4 | diff --git a/crawl4ai/async_crawler_strategy.py b/crawl4ai/async_crawler_strategy.py
index 3c5e87e0a..caa18a134 100644
--- a/crawl4ai/async_crawler_strategy.py
+++ b/crawl4ai/async_crawler_strategy.py
@@ -1089,6 +1089,7 @@ async def handle_request_failed_capture(request):
page,
... | [
"crawl4ai/async_crawler_strategy.py",
"tests/test_issue_1750_screenshot_scan_full_page.py"
] | [] | diff --git a/tests/test_issue_1750_screenshot_scan_full_page.py b/tests/test_issue_1750_screenshot_scan_full_page.py
new file mode 100644
index 000000000..a7b7bd9d0
--- /dev/null
+++ b/tests/test_issue_1750_screenshot_scan_full_page.py
@@ -0,0 +1,249 @@
+"""
+Tests for issue #1750: Screenshot size should respect scan_f... | true | |
unclecode/crawl4ai | 1,824 | issue_to_patch | fix: deduplicate BM25ContentFilter output (#1213) | ## Summary
- Fixes #1213
- `BM25ContentFilter.filter_content()` returned duplicate text chunks when the same content appeared in multiple DOM elements (e.g., repeated article blocks). Added exact-text deduplication after threshold filtering, keeping the first occurrence in document order.
## Changes
- `crawl4ai/conten... | 35034f551b14d303dc7444d0f78ee6a9785879a3 | 0a664f9ad2795aa40033de780a4e873696db754b | diff --git a/crawl4ai/content_filter_strategy.py b/crawl4ai/content_filter_strategy.py
index 6c886b363..0909be33d 100644
--- a/crawl4ai/content_filter_strategy.py
+++ b/crawl4ai/content_filter_strategy.py
@@ -527,7 +527,15 @@ def filter_content(self, html: str, min_word_threshold: int = None) -> List[str]
# So... | [
"crawl4ai/content_filter_strategy.py",
"tests/test_issue_1213_bm25_dedup.py"
] | [] | diff --git a/tests/test_issue_1213_bm25_dedup.py b/tests/test_issue_1213_bm25_dedup.py
new file mode 100644
index 000000000..03be67b55
--- /dev/null
+++ b/tests/test_issue_1213_bm25_dedup.py
@@ -0,0 +1,178 @@
+"""
+Tests for GitHub issue #1213: BM25ContentFilter returns multiple copies of
+the same text when the DOM co... | true | |
unclecode/crawl4ai | 1,803 | issue_to_patch | Fix `from_serializable_dict` to ignore plain data dicts with "type" key |
## Summary
The typed-object entry condition (`"type" in data`) was too broad: it also matched plain business dicts that happen to carry a "type" key, such as JsonCssExtractionStrategy field specs ({"type": "text"}) and LLMExtractionStrategy JSON Schema fragments ({"type": "string"}). These were never config obje... | 0273b27821a0d7c0bae006b3952d8a17a93a94e8 | 71a6526459ad07bb1ba7bd20db0229038cca95df | diff --git a/crawl4ai/async_configs.py b/crawl4ai/async_configs.py
index e7946f0a6..da3df8769 100644
--- a/crawl4ai/async_configs.py
+++ b/crawl4ai/async_configs.py
@@ -242,8 +242,18 @@ def from_serializable_dict(data: Any) -> Any:
if isinstance(data, (str, int, float, bool)):
return data
- # Handle ... | [
"crawl4ai/async_configs.py"
] | [] | true | ||
unclecode/crawl4ai | 1,722 | issue_to_patch | [Bug]: MCP tool `md` has no description due to missing docstring
### crawl4ai version
0.7.7
### Expected Behavior
A description for the `md` tool intended at LLMs.
### Current Behavior
The `md` tool has no description
<img width="788" height="1264" alt="Image" src="https://github.com/user-attachments/assets/75d9... | fix: Add docstring to MCP tool 'md' endpoint | ## Summary
Fixes #1652
The `get_markdown` function in `deploy/docker/server.py` was missing a docstring, which caused the MCP tool 'md' to have no description when exposed via `_list_tools()`.
## List of files changed and why
- `deploy/docker/server.py` - Added docstring to `get_markdown` function to provide descript... | d419199a4c510e3d9c5d16776b36958fb9d287e7 | 37ff85f4b1f0d85f8265cfdc55e9b7b20fafe3dc | diff --git a/deploy/docker/server.py b/deploy/docker/server.py
index 62e4e4413..b79c229e6 100644
--- a/deploy/docker/server.py
+++ b/deploy/docker/server.py
@@ -308,6 +308,17 @@ async def get_markdown(
body: MarkdownRequest,
_td: Dict = Depends(token_dep),
):
+ """
+ Convert a web page into Markdown fo... | [
"deploy/docker/server.py"
] | [] | true | |
unclecode/crawl4ai | 1,775 | issue_to_patch | Fix/issue 1748 screenshot scroll delay | # — Fix #1748: scroll_delay ignored in take_screenshot_scroller
## Summary
Fixes #1748
`CrawlerRunConfig.scroll_delay` was silently ignored when taking full-page screenshots. The `take_screenshot_scroller()` function always used a hardcoded `asyncio.sleep(0.01)` between scroll steps, regardless of what the us... | 4f9cc0810b1444d1336a7a999e254e9fdede4c18 | 9cfeb4626d45e83a2be315ae166011cf2287c5fe | diff --git a/crawl4ai/async_crawler_strategy.py b/crawl4ai/async_crawler_strategy.py
index a99d171cf..54ca48815 100644
--- a/crawl4ai/async_crawler_strategy.py
+++ b/crawl4ai/async_crawler_strategy.py
@@ -1077,7 +1077,8 @@ async def handle_request_failed_capture(request):
screenshot_data = await self.t... | [
"crawl4ai/async_crawler_strategy.py",
"docs/examples/full_page_screenshot_and_pdf_export.md",
"docs/md_v2/advanced/advanced-features.md",
"docs/md_v2/api/parameters.md",
"docs/md_v2/complete-sdk-reference.md",
"tests/test_issue_1748_screenshot_scroll_delay.py"
] | [] | diff --git a/tests/test_issue_1748_screenshot_scroll_delay.py b/tests/test_issue_1748_screenshot_scroll_delay.py
new file mode 100644
index 000000000..7d930018d
--- /dev/null
+++ b/tests/test_issue_1748_screenshot_scroll_delay.py
@@ -0,0 +1,261 @@
+"""
+Tests for GitHub issue #1748: scroll_delay config is now properly ... | true | |
unclecode/crawl4ai | 1,764 | issue_to_patch | [Bug]: Markdown tables missing outer pipe delimiters - causes parser compatibility issues
### crawl4ai version
0.8.0 (also confirmed in 0.7.4)
### Expected Behavior
Markdown tables should include leading and trailing pipe (`|`) delimiters on every row for maximum compatibility with markdown parsers. While this is t... | Fix: Add leading/trailing pipes to GFM tables (pad_tables=False) | ## Summary
When `pad_tables=False` (the default), `html2text` generates table rows without leading and trailing pipe delimiters, producing non-compliant GFM markdown that breaks downstream parsers:
```
Before: A | B | C
After: | A | B | C |
```
This PR fixes the default table output to produce valid [GitHub Flavore... | 1a9f68d8252fbab48d2b5733c2d8bed4529cfa2d | c70ab31abdd47a8fec07ce89147dab2243bc2630 | diff --git a/crawl4ai/html2text/__init__.py b/crawl4ai/html2text/__init__.py
index ca15b4534..c70867a5e 100644
--- a/crawl4ai/html2text/__init__.py
+++ b/crawl4ai/html2text/__init__.py
@@ -677,6 +677,11 @@ def link_url(self: HTML2Text, link: str, title: str = "") -> None:
self.o(str(li.num) + ". ")... | [
"crawl4ai/html2text/__init__.py",
"tests/test_table_gfm_compliance.py"
] | [] | diff --git a/tests/test_table_gfm_compliance.py b/tests/test_table_gfm_compliance.py
new file mode 100644
index 000000000..f42000882
--- /dev/null
+++ b/tests/test_table_gfm_compliance.py
@@ -0,0 +1,247 @@
+"""
+Unit tests for GFM-compliant markdown table generation.
+
+Tests that html2text generates tables with proper... | true |
unclecode/crawl4ai | 1,761 | issue_to_patch | [Bug]: total_score, head_data is not always populated for LinkPreviewConfig
### crawl4ai version
0.7.8
### Expected Behavior
Per [Documentation](https://docs.crawl4ai.com/core/link-media/#2-contextual-score-0-1-bm25-relevance-to-query):
3. Total Score - Smart Combination
Intelligently combines intrinsic and conte... | Fix total_score not calculated for links that fail head extraction | ## Summary
Fixes #1749
`_merge_head_data()` only called `calculate_total_score()` for links present in `url_to_head_data`. Links that failed head extraction (PDFs, timeouts, non-HTML content) hit the `else` branch and were appended unchanged, leaving `total_score` as `None` even when a valid `intrinsic_score` was... | 731388c65c91b63371b6dcec07521bd4117424dd | 5b815c278e281fd9d3132067093b6b178897daa8 | diff --git a/crawl4ai/async_url_seeder.py b/crawl4ai/async_url_seeder.py
index 29fb4b50c..00da7ba3c 100644
--- a/crawl4ai/async_url_seeder.py
+++ b/crawl4ai/async_url_seeder.py
@@ -1290,6 +1290,7 @@ async def _validate(self, url: str, res_list: List[Dict[str, Any]], live: bool,
head_data = await asyncio.to... | [
"crawl4ai/async_url_seeder.py",
"crawl4ai/link_preview.py",
"tests/test_merge_head_data_scoring.py"
] | [] | diff --git a/tests/test_merge_head_data_scoring.py b/tests/test_merge_head_data_scoring.py
new file mode 100644
index 000000000..65aad0468
--- /dev/null
+++ b/tests/test_merge_head_data_scoring.py
@@ -0,0 +1,183 @@
+"""
+Unit tests for _merge_head_data() total_score calculation.
+
+Verifies that total_score is computed... | true |
unclecode/crawl4ai | 1,760 | issue_to_patch | [Bug]: chardet.detect() blocks asyncio event loop in _handle_http
### crawl4ai version
0.7.8 (also confirmed in main branch / 0.8.0)
### Expected Behavior
`chardet.detect()` in `_handle_http` should not block the asyncio event loop.
Since `chardet.detect()` is a CPU-bound synchronous call that can take several sec... | fix: run blocking chardet.detect in thread executor #1751 | Fixes #1751
The Bug:
chardet.detect is CPU-bound and was blocking the main asyncio event loop in _handle_http, causing lags of 1+ seconds on large pages.
The Fix:
Wrapped the detection in asyncio.to_thread to offload it to a worker thread.
Verification:
Verified locally with a reproduction script; the event loop ... | 57be8b8732b09833f0611a8b0a7e2c8796476177 | 4298e26525bfb6b67eed9d5999ba993e1d8f31a7 | diff --git a/crawl4ai/async_crawler_strategy.py b/crawl4ai/async_crawler_strategy.py
index 121a38614..f671e563e 100644
--- a/crawl4ai/async_crawler_strategy.py
+++ b/crawl4ai/async_crawler_strategy.py
@@ -2448,7 +2448,8 @@ async def _handle_http(
encoding = response.charset
... | [
"crawl4ai/async_crawler_strategy.py"
] | [] | true | |
unclecode/crawl4ai | 1,759 | issue_to_patch | [Bug]: `FilterChain.add_filter` incorrect type
### crawl4ai version
0.8.0
### Expected Behavior
You should be able to use `add_filter` to add a filter.
### Current Behavior
```
class FilterChain:
...
def __init__(self, filters: List[URLFilter] = None):
self.filters = tuple(filters or []) # Immutable ... | Fix AttributeError in FilterChain.add_filter (Tuple Immutability) #1753 | ## Description
Fixes #1753
The `FilterChain` class initializes `self.filters` as a tuple for immutability, but the `add_filter` method was attempting to use `.append()`, which is a list method, causing an `AttributeError`.
## Changes
- Modified `add_filter` to create a new tuple `self.filters + (filter_,)` inst... | 7435a1654cd39c805e4d350a0e87f338223c34d0 | cfa73084eae8345dc222d2704fb38620bfc98d26 | diff --git a/crawl4ai/deep_crawling/filters.py b/crawl4ai/deep_crawling/filters.py
index c075cb7d5..2865767f8 100644
--- a/crawl4ai/deep_crawling/filters.py
+++ b/crawl4ai/deep_crawling/filters.py
@@ -85,7 +85,7 @@ def logger(self):
def add_filter(self, filter_: URLFilter) -> "FilterChain":
"""Add a fil... | [
"crawl4ai/deep_crawling/filters.py"
] | [] | true | |
unclecode/crawl4ai | 1,771 | issue_to_patch | Claude/check fork sync s9 s sz | **Summary:**
Fixes #1769
The MCP bridge's `httpx.AsyncClient()` uses a default 5-second timeout. When LLM-backed endpoints (e.g. `md` tool with `filter=llm`) take longer to respond, `httpx.TimeoutException` is raised. Since this isn't a subclass of `HTTPStatusError`, it bypasses the existing exception handler and... | 254ef0510bd11e3beb039a0ec43f9f8832dfec03 | 0e9b6778701482a16a708cb71d37bf94b5a1bd0d | diff --git a/SECURITY.md b/SECURITY.md
index f299afe66..92e3d60e6 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -24,7 +24,7 @@ Instead, please report via one of these methods:
- Fill in the details
2. **Email**
- - Send details to: security@crawl4ai.com
+ - Send details to: unclecode@crawl4ai.com (CC: nasrin... | [
"SECURITY.md",
"deploy/docker/mcp_bridge.py"
] | [] | true | ||
unionlabs/union | 5,469 | issue_to_patch | chore: update narhash | 1bb07590230e7c4d071f32ad7185be021a1a1789 | 9fdda2659182cef66c8ea3fba22e161c6cdc59c2 | diff --git a/flake.lock b/flake.lock
index 4b0b2a9d7c..db0ed02cc6 100644
--- a/flake.lock
+++ b/flake.lock
@@ -808,11 +808,11 @@
"v1_3_0": {
"flake": false,
"locked": {
- "lastModified": 1779135328,
- "narHash": "sha256-Ug84ogPBOK4QK0CwWbLzu4x2L1R7CgkQ1efEY/ujLXM=",
+ "lastModifi... | [
"flake.lock"
] | [] | true | |||
unionlabs/union | 5,468 | issue_to_patch | chore(devnet): small changes to make devnet deployment easier | d6b57d34c997fea4a88ecbfa374e09177faf3e13 | 9ad9ea8816fbcbb43755893ce17bc2d083fb2eab | diff --git a/cosmwasm/cosmwasm.nix b/cosmwasm/cosmwasm.nix
index 50c3f00a89..7036a1f1b7 100644
--- a/cosmwasm/cosmwasm.nix
+++ b/cosmwasm/cosmwasm.nix
@@ -116,7 +116,7 @@ _: {
lightclients = [
"gno"
"ethereum"
- # "sui"
+ "state-lens-ics23-mpt"
];
... | [
"cosmwasm/cosmwasm.nix",
"deployments/deployments.json"
] | [] | true | |||
unionlabs/union | 5,466 | issue_to_patch | fix(uniond): re-add auth fee collector to mod accs | Reverts changes from 5b49e95be2a4a4fc1235a592d85ccb96008aedce that removed the auth types fee collector module account. | 41b9a4038509d9618a12c3d166d96f543985677f | 6e0b45d3539ca9f91f74b1b9e93793954b7e9786 | diff --git a/networks/devnet.nix b/networks/devnet.nix
index c98de8ee13..f7efc41d97 100644
--- a/networks/devnet.nix
+++ b/networks/devnet.nix
@@ -49,6 +49,9 @@
slashing.params = {
signed_blocks_window = "10";
};
+ feemarket.params = {
+ distribute_fees =... | [
"networks/devnet.nix",
"uniond/app/app_config.go"
] | [] | true | ||
unionlabs/union | 5,461 | issue_to_patch | fix(zkgm): wrong sender field in _timeoutCall | _timeoutCall was passing call.contractAddress instead of call.sender to encodeCallCalldata. Both _executeCall and _acknowledgeCall use call.sender correctly only the timeout path had the wrong argument.
This causes the inner IBC module to receive a packet with an incorrect sender field on timeout, which can result i... | 82d879894c4ef5ea5ba60b6f01a412a34774fb03 | a5252c28c47b6eb6fe0cf425367dcde6eac8e800 | diff --git a/evm/contracts/apps/ucs/03-zkgm/Zkgm.sol b/evm/contracts/apps/ucs/03-zkgm/Zkgm.sol
index c8c7b1a805c..25a7425b23c 100644
--- a/evm/contracts/apps/ucs/03-zkgm/Zkgm.sol
+++ b/evm/contracts/apps/ucs/03-zkgm/Zkgm.sol
@@ -862,7 +862,7 @@ contract UCS03Zkgm is
sourceChannelId: ibcPacket.sourceCha... | [
"evm/contracts/apps/ucs/03-zkgm/Zkgm.sol",
"evm/tests/src/05-app/Zkgm.t.sol"
] | [] | diff --git a/evm/tests/src/05-app/Zkgm.t.sol b/evm/tests/src/05-app/Zkgm.t.sol
index 034fb3e656b..13ea2e3460e 100644
--- a/evm/tests/src/05-app/Zkgm.t.sol
+++ b/evm/tests/src/05-app/Zkgm.t.sol
@@ -312,6 +312,43 @@ contract TestCallTarget is IZkgmable, IIBCModuleRecv {
}
}
+contract MockTimeoutModule is IIBCModu... | true | |
unionlabs/union | 5,459 | issue_to_patch | gno | gno related changes:
- add lc (`gno-verifier`, `gno-light-client`, `gno-light-client-types`)
- add to `protos`
- add types (`gno-types`) and jsonrpc client (`gno-rpc`)
- add client (`gno-client`, similar to `cosmos-client`)
- add all required gno voyager modules and plugins
- add v3 to `state-lens/ics23/ics23` cl... | 41b9a4038509d9618a12c3d166d96f543985677f | 0d9d0512d809c3ceb22b2006577e7537b80e9ea0 | diff --git a/Cargo.lock b/Cargo.lock
index dee3a227ca1..d38430eab8c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3226,6 +3226,7 @@ dependencies = [
"hex-literal 1.1.0",
"jsonrpsee 0.26.0",
"macros",
+ "protos",
"reconnecting-jsonrpc-ws-client",
"serde",
"serde-utils",
@@ -6354,6 +6355,125 @@ dependencies = ... | [
"Cargo.lock",
"Cargo.toml",
"cosmwasm/cosmwasm.nix",
"cosmwasm/lightclient/gno/Cargo.toml",
"cosmwasm/lightclient/gno/src/client.rs",
"cosmwasm/lightclient/gno/src/contract.rs",
"cosmwasm/lightclient/gno/src/errors.rs",
"cosmwasm/lightclient/gno/src/lib.rs",
"cosmwasm/lightclient/gno/src/verifier.rs... | [] | diff --git a/evm/tests/src/02-client/StateLensIcs23Ics23Client.t.sol b/evm/tests/src/02-client/StateLensIcs23Ics23Client.t.sol
index 37c1c40310e..9d82cd5d17c 100644
--- a/evm/tests/src/02-client/StateLensIcs23Ics23Client.t.sol
+++ b/evm/tests/src/02-client/StateLensIcs23Ics23Client.t.sol
@@ -769,4 +769,57 @@ contract S... | true | |
unionlabs/union | 5,463 | issue_to_patch | chore: update narhash | c0e616f4a2bc5bc63d7b10fa315c89a2e11a438e | 72223d3945401dce18d2587e384341618feb5b6d | diff --git a/flake.lock b/flake.lock
index cce22a3fa6..4b560cfa42 100644
--- a/flake.lock
+++ b/flake.lock
@@ -827,11 +827,11 @@
"v1_3_0": {
"flake": false,
"locked": {
- "lastModified": 1778872896,
- "narHash": "sha256-CmsB+cEW/GQVxM0xYT1QfUbouppGX9FZyXa0o46Appo=",
+ "lastModifi... | [
"flake.lock"
] | [] | true | |||
unionlabs/union | 5,462 | issue_to_patch | chore(unionvisor): update bundle with v1.3.0 | 1a6eb337d78193a239fa3e8dc98669b1a2639f25 | b252141a03c612e31028edddd208ef683d97e66b | diff --git a/.github/workflows/deploy-app2.yml b/.github/workflows/deploy-app2.yml
index f26b659884e..d2d1023471e 100644
--- a/.github/workflows/deploy-app2.yml
+++ b/.github/workflows/deploy-app2.yml
@@ -35,6 +35,10 @@ jobs:
- uses: actions/checkout@v4
with:
lfs: true
+ - name: Use node... | [
".github/workflows/deploy-app2.yml",
".github/workflows/deploy-ceremony.yml",
".github/workflows/deploy-docs.yml",
".github/workflows/deploy-zkgm-dev.yml",
"flake.lock",
"flake.nix",
"versions/versions.json"
] | [] | true | |||
unionlabs/union | 5,438 | issue_to_patch | feat(uniond): add v1.3.0 migration | 82d879894c4ef5ea5ba60b6f01a412a34774fb03 | a563fe923158a0175fce38d8736545fbc876d530 | diff --git a/e2e/upgrades.nix b/e2e/upgrades.nix
index 7641158c706..79dc8af779a 100644
--- a/e2e/upgrades.nix
+++ b/e2e/upgrades.nix
@@ -9,7 +9,7 @@ let
unionvisorBin = pkgs.lib.meta.getExe unionvisor;
mkUpgradeProposal =
- version: height:
+ version: height: denom:
pkgs.runCommand "upgrade-proposal"... | [
"e2e/upgrades.nix",
"flake.lock",
"flake.nix",
"networks/devnet.nix",
"uniond/app/upgrades.go",
"uniond/app/upgrades/v1_3_0/constants.go",
"uniond/app/upgrades/v1_3_0/upgrade.go",
"unionvisor/unionvisor.nix"
] | [
{
"comment": "```suggestion\nconst UpgradeName = \"v1.3.0\"\n```",
"path": "uniond/app/upgrades/v1_3_0/constants.go",
"hunk": "@@ -0,0 +1,15 @@\n+package v1_3_0\n+\n+import (\n+\tstore \"cosmossdk.io/store/types\"\n+\n+\t\"github.com/unionlabs/union/uniond/app/upgrades\"\n+)\n+\n+const UpgradeName = \"v... | true | |||
unionlabs/union | 5,438 | comment_to_fix | feat(uniond): add v1.3.0 migration | ```suggestion
const UpgradeName = "v1.3.0"
``` | 82d879894c4ef5ea5ba60b6f01a412a34774fb03 | a563fe923158a0175fce38d8736545fbc876d530 | diff --git a/uniond/app/upgrades/v1_3_0/constants.go b/uniond/app/upgrades/v1_3_0/constants.go
new file mode 100644
index 00000000000..c4adf6f6a36
--- /dev/null
+++ b/uniond/app/upgrades/v1_3_0/constants.go
@@ -0,0 +1,15 @@
+package v1_3_0
+
+import (
+ store "cosmossdk.io/store/types"
+
+ "github.com/unionlabs/union/u... | [
"uniond/app/upgrades/v1_3_0/constants.go"
] | [
{
"comment": "```suggestion\nconst UpgradeName = \"v1.3.0\"\n```",
"path": "uniond/app/upgrades/v1_3_0/constants.go",
"hunk": "@@ -0,0 +1,15 @@\n+package v1_3_0\n+\n+import (\n+\tstore \"cosmossdk.io/store/types\"\n+\n+\t\"github.com/unionlabs/union/uniond/app/upgrades\"\n+)\n+\n+const UpgradeName = \"v... | true | ||
unionlabs/union | 5,438 | comment_to_fix | feat(uniond): add v1.3.0 migration | what are these addresses? | 82d879894c4ef5ea5ba60b6f01a412a34774fb03 | a563fe923158a0175fce38d8736545fbc876d530 | diff --git a/e2e/upgrades.nix b/e2e/upgrades.nix
index 7641158c706..79dc8af779a 100644
--- a/e2e/upgrades.nix
+++ b/e2e/upgrades.nix
@@ -9,7 +9,7 @@ let
unionvisorBin = pkgs.lib.meta.getExe unionvisor;
mkUpgradeProposal =
- version: height:
+ version: height: denom:
pkgs.runCommand "upgrade-proposal"... | [
"e2e/upgrades.nix"
] | [
{
"comment": "what are these addresses?",
"path": "e2e/upgrades.nix",
"hunk": "@@ -61,28 +64,20 @@ in\n name = \"upgrade-from-genesis\";\n \n testScript = ''\n+ import time\n union.wait_for_open_port(${toString e2e.unionNode.wait_for_open_port})\n \n # Ensure the union network c... | true | ||
unionlabs/union | 5,422 | issue_to_patch | fix(node): only use feemarket fee collector | 1f9dad5f235d980f03522a24a607df957c03a9f4 | 1d0aac2d7c6854a873dac4f58a3431977f8a91aa | diff --git a/uniond/app/ante.go b/uniond/app/ante.go
index 8ce5d5af5d5..78983d89338 100644
--- a/uniond/app/ante.go
+++ b/uniond/app/ante.go
@@ -64,7 +64,6 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) {
ante.NewTxTimeoutHeightDecorator(),
ante.NewValidateMemoDecorator(options.AccountKee... | [
"uniond/app/ante.go",
"uniond/app/app_config.go"
] | [
{
"comment": "Why remove the fallback fee decorator?\nhttps://github.com/skip-mev/feemarket/blob/45c64e7781c8f154f610c11f4ad27944c63d8850/tests/app/ante.go#L45-L69",
"path": "uniond/app/ante.go",
"hunk": "@@ -76,7 +76,8 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) {\n \t\t\top... | true | |||
unionlabs/union | 5,422 | comment_to_fix | fix(node): only use feemarket fee collector | Why remove the fallback fee decorator?
https://github.com/skip-mev/feemarket/blob/45c64e7781c8f154f610c11f4ad27944c63d8850/tests/app/ante.go#L45-L69 | 1f9dad5f235d980f03522a24a607df957c03a9f4 | 1d0aac2d7c6854a873dac4f58a3431977f8a91aa | diff --git a/uniond/app/ante.go b/uniond/app/ante.go
index 8ce5d5af5d5..78983d89338 100644
--- a/uniond/app/ante.go
+++ b/uniond/app/ante.go
@@ -64,7 +64,6 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) {
ante.NewTxTimeoutHeightDecorator(),
ante.NewValidateMemoDecorator(options.AccountKee... | [
"uniond/app/ante.go"
] | [
{
"comment": "Why remove the fallback fee decorator?\nhttps://github.com/skip-mev/feemarket/blob/45c64e7781c8f154f610c11f4ad27944c63d8850/tests/app/ante.go#L45-L69",
"path": "uniond/app/ante.go",
"hunk": "@@ -76,7 +76,8 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) {\n \t\t\top... | true | ||
unionlabs/union | 5,458 | issue_to_patch | fix(cosmwasm): emit correct event on connection open confirm | 618ec84ef1b789734fca1986e8b0f499da51e849 | 7baf1243def58d9ebd02b16279a50133b4fbd8bb | diff --git a/cosmwasm/core/src/contract.rs b/cosmwasm/core/src/contract.rs
index 19365532d2..81c868f0aa 100644
--- a/cosmwasm/core/src/contract.rs
+++ b/cosmwasm/core/src/contract.rs
@@ -50,9 +50,10 @@ use crate::{
events::{
BatchAcks, BatchSend, ChannelCloseConfirm, ChannelCloseInit, ChannelOpenAck,
... | [
"cosmwasm/core/src/contract.rs"
] | [] | true | |||
unionlabs/union | 5,457 | issue_to_patch | chore(cometbls-groth16-verifier): add another test fixture | c68023ca390031a3b4c23d2ffbc8fa76235340ae | 0f124201d325c82887e430db19b8e3f2ebafbf65 | diff --git a/lib/cometbls-groth16-verifier/src/lib.rs b/lib/cometbls-groth16-verifier/src/lib.rs
index 6e17b7e0d1a..503ddb6967d 100644
--- a/lib/cometbls-groth16-verifier/src/lib.rs
+++ b/lib/cometbls-groth16-verifier/src/lib.rs
@@ -345,6 +345,36 @@ mod tests {
);
}
+ #[test]
+ fn test_ok_mainnet(... | [
"lib/cometbls-groth16-verifier/src/lib.rs"
] | [] | true | |||
unionlabs/union | 5,453 | issue_to_patch | feat: document a bunch of cosmwasm stuff, format comments, fix misbehaviour | - format a bunch of comments
- document various cosmwasm ibc things
- breaking: implement misbehaviour in core (breaking due to message format changes)
- implement status check on multiple clients | 80506f23f4f9b2d431e5cbd34d1bfd2310ffb9a9 | 90bf08aa7b9ed478c87a4a3115ae5e350e5322cf | diff --git a/cosmwasm/access-managed/src/restricted.rs b/cosmwasm/access-managed/src/restricted.rs
index d0e4a0ba415..792e59701d5 100644
--- a/cosmwasm/access-managed/src/restricted.rs
+++ b/cosmwasm/access-managed/src/restricted.rs
@@ -23,19 +23,13 @@ impl<T: Serialize + DeserializeOwned + PartialEq> PartialEq for Res... | [
"cosmwasm/access-managed/src/restricted.rs",
"cosmwasm/app/ucs03-zkgm/src/contract.rs",
"cosmwasm/core/light-client-interface/src/lib.rs",
"cosmwasm/core/msg/src/lightclient.rs",
"cosmwasm/core/msg/src/msg.rs",
"cosmwasm/core/src/contract.rs",
"cosmwasm/core/src/events.rs",
"cosmwasm/core/src/lib.rs",... | [] | diff --git a/cosmwasm/core/src/tests/channel/ibc_channel.rs b/cosmwasm/core/src/tests/channel/ibc_channel.rs
index 1d134c62ae1..6d1636a5578 100644
--- a/cosmwasm/core/src/tests/channel/ibc_channel.rs
+++ b/cosmwasm/core/src/tests/channel/ibc_channel.rs
@@ -15,10 +15,8 @@ use ibc_union_spec::Channel;
use super::*;
u... | true | |
unionlabs/union | 5,387 | issue_to_patch | fix(app): url | 236530081316e9d415bafd562f6b74eae0978f4a | 9af9719fe1a159d92218c276b684d33279f6cc67 | diff --git a/app2/src/lib/graphql/service.ts b/app2/src/lib/graphql/service.ts
index 7a099fc361a..2c7df27d240 100644
--- a/app2/src/lib/graphql/service.ts
+++ b/app2/src/lib/graphql/service.ts
@@ -132,6 +132,7 @@ export class GraphQL extends Effect.Service<GraphQL>()("app/GraphQL", {
pipe(
Match... | [
"app2/src/lib/graphql/service.ts"
] | [] | true | |||
unionlabs/union | 5,451 | issue_to_patch | chore(deployments): update | 30ae4ee3bc08fc3e236f81bf111adab46d3d0f0a | c794cdb321469a9e8958ee40b28623473c1fd22e | diff --git a/deployments/deployments.json b/deployments/deployments.json
index 50af073174a..f69aecf173b 100644
--- a/deployments/deployments.json
+++ b/deployments/deployments.json
@@ -1052,8 +1052,8 @@
"name": "lst-hub",
"salt": "0x6c73742f6575",
"height": 2930850,
- "commit": "a818f4... | [
"deployments/deployments.json"
] | [] | true | |||
unionlabs/union | 5,449 | issue_to_patch | feat(bob): upgrade to latest version | 09c08cd96634917c25b1c3128d450e2d79a8617b | 627c3303d52088b64fd2a7032ba23de36b546554 | diff --git a/app2/src/lib/constants/settlement-times.ts b/app2/src/lib/constants/settlement-times.ts
index b8bcc36a05e..7a10e60e8ec 100644
--- a/app2/src/lib/constants/settlement-times.ts
+++ b/app2/src/lib/constants/settlement-times.ts
@@ -19,7 +19,7 @@ export const settlementDelays = {
interval: "12 hours",
}... | [
"app2/src/lib/constants/settlement-times.ts",
"lib/bob-light-client-types/src/header.rs",
"voyager/plugins/client-update/bob/src/main.rs"
] | [] | true | |||
unionlabs/union | 5,450 | issue_to_patch | chore(lst): fix nixos module config | 09c08cd96634917c25b1c3128d450e2d79a8617b | c26e925d5deeb85f6a3df83c97c56cd0b008e9f7 | diff --git a/cosmwasm/lst-ocw/lst-ocw.nix b/cosmwasm/lst-ocw/lst-ocw.nix
index 1f084ea8e6..badb408c15 100644
--- a/cosmwasm/lst-ocw/lst-ocw.nix
+++ b/cosmwasm/lst-ocw/lst-ocw.nix
@@ -21,6 +21,7 @@
}:
let
inherit (lib) mkOption mkEnableOption types;
+ cfg = config.services.lst-ocw;
in
{
... | [
"cosmwasm/lst-ocw/lst-ocw.nix"
] | [] | true | |||
unionlabs/union | 5,447 | issue_to_patch | feat(lst): init ocw | 15fbf11b948c239aad1fd7579d18b0173bf67def | 0cd73c37923f78f9d102c832d8d9ef220a785109 | diff --git a/Cargo.lock b/Cargo.lock
index 3c33f08d68..dee3a227ca 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -8195,6 +8195,27 @@ dependencies = [
"unionlabs-primitives",
]
+[[package]]
+name = "lst-ocw"
+version = "0.0.0"
+dependencies = [
+ "anyhow",
+ "bip32 0.5.3",
+ "clap",
+ "cometbft-rpc",
+ "cosmos-client"... | [
"Cargo.lock",
"Cargo.toml",
"cosmwasm/lst-ocw/Cargo.toml",
"cosmwasm/lst-ocw/lst-ocw.nix",
"cosmwasm/lst-ocw/src/main.rs",
"cosmwasm/lst/src/msg.rs",
"flake.nix"
] | [] | true | |||
unionlabs/union | 5,448 | issue_to_patch | feat(voyager): handle timeouts a bit better | 15fbf11b948c239aad1fd7579d18b0173bf67def | 4511b37abb4496c238f62507c5b5748cf37cefad | diff --git a/lib/consensus-primitives/src/lib.rs b/lib/consensus-primitives/src/lib.rs
index dedd094217a..602c9cf6ce8 100644
--- a/lib/consensus-primitives/src/lib.rs
+++ b/lib/consensus-primitives/src/lib.rs
@@ -77,6 +77,17 @@ impl Timestamp {
self.0
}
+ /// Access the inner timestamp value, as ***m... | [
"lib/consensus-primitives/src/lib.rs",
"voyager/plugins/packet-timeout/src/main.rs",
"voyager/plugins/transaction-batch/src/lib.rs"
] | [] | true | |||
unionlabs/union | 5,446 | issue_to_patch | feat(lst): permissionless receive unstaked tokens entrypoint on lst hub | 6f56186ec86b12ca638d423644e5cfa195cefe4e | c5d6a21e7f725ffd8aac0b951f9d2f22df83e867 | diff --git a/cosmwasm/lst-staker/src/event.rs b/cosmwasm/lst-staker/src/event.rs
index 4ea24c79d02..dc7fcbc1e42 100644
--- a/cosmwasm/lst-staker/src/event.rs
+++ b/cosmwasm/lst-staker/src/event.rs
@@ -1,10 +1,70 @@
+// License text copyright (c) 2020 MariaDB Corporation Ab, All Rights Reserved.
+// "Business Source Lic... | [
"cosmwasm/lst-staker/src/event.rs",
"cosmwasm/lst-staker/src/lib.rs",
"cosmwasm/lst-staker/src/msg.rs",
"cosmwasm/lst-staker/src/state.rs",
"cosmwasm/lst-staker/src/tests.rs",
"cosmwasm/lst/src/contract.rs",
"cosmwasm/lst/src/event.rs",
"cosmwasm/lst/src/execute.rs",
"cosmwasm/lst/src/msg.rs",
"co... | [] | diff --git a/cosmwasm/lst/src/tests/mod.rs b/cosmwasm/lst/src/tests/mod.rs
index 60a0d2c14b1..08b45b9b6d4 100644
--- a/cosmwasm/lst/src/tests/mod.rs
+++ b/cosmwasm/lst/src/tests/mod.rs
@@ -78,6 +78,7 @@ mod instantiate_tests;
mod ownership_tests;
mod query_tests;
mod rebase_tests;
+mod receive_batch_tests;
mod rewa... | true | ||
unionlabs/union | 5,444 | issue_to_patch | fix(app): enrich chain data with minter display address | c103ae9c735d6c17108bbbe4c845e0af2f05691c | 65295676e2a6968bbdbe1aefa180f7d2626a19a4 | diff --git a/app2/app2.nix b/app2/app2.nix
index 6eb227e5b1e..ac1ce03f768 100644
--- a/app2/app2.nix
+++ b/app2/app2.nix
@@ -25,6 +25,7 @@ _: {
PUBLIC_LAST_MODIFIED_DATE = lastModifiedDate;
PUBLIC_LAST_MODIFIED_EPOCH = lastModified;
PUBLIC_SUPABASE_URL = "https://api.dashboard.union.build";
+ ... | [
"app2/app2.nix",
"app2/src/lib/queries/chains.svelte.ts",
"app2/src/lib/transfer/shared/services/filling/check-allowance.ts"
] | [] | true | |||
unionlabs/union | 5,437 | issue_to_patch | feat(ts-sdk-evm): provide packet metadata in prepareEip1193 | 143ec846f1a9dd14494ba9feb0b7f276b3d4cc71 | 3c49dfe7ebf86c394ecc1facf023a1666e7e9993 | diff --git a/ts-sdk-evm/package.json b/ts-sdk-evm/package.json
index 90d245ac727..df0e1c78da0 100644
--- a/ts-sdk-evm/package.json
+++ b/ts-sdk-evm/package.json
@@ -1,6 +1,6 @@
{
"name": "@unionlabs/sdk-evm",
- "version": "0.0.3",
+ "version": "0.0.4",
"type": "module",
"license": "MIT",
"author": "@unio... | [
"ts-sdk-evm/package.json",
"ts-sdk-evm/src/EvmZkgmClient.ts",
"ts-sdk-evm/src/internal/zkgmClient.ts"
] | [] | true | |||
unionlabs/union | 5,433 | issue_to_patch | feat(voyager): docker image | eb551b03c0bbd404006eeaf283faf26b386bc4ed | 716ff702cbdded2a3319f6a406fde018b60e4ea0 | diff --git a/.github/workflows/release-component.yml b/.github/workflows/release-component.yml
index f10d161e6ca..1d1a88446f3 100644
--- a/.github/workflows/release-component.yml
+++ b/.github/workflows/release-component.yml
@@ -11,6 +11,7 @@ jobs:
build: ${{ steps.eval.outputs.BUILD }}
component: ${{ ste... | [
".github/workflows/release-component.yml",
"voyager/voyager.nix"
] | [] | true | |||
unionlabs/union | 5,434 | issue_to_patch | fix(app): testnet gas | 6c9b7b295e8035aae873ce779e1ff2cd8313e0f1 | 10ff8bca276a7aa2875dc40daeadb1e1e6972af7 | diff --git a/app2/src/lib/config/wallets/info.ts b/app2/src/lib/config/wallets/info.ts
index 48abbc8d0af..d72cd2cafc3 100644
--- a/app2/src/lib/config/wallets/info.ts
+++ b/app2/src/lib/config/wallets/info.ts
@@ -102,9 +102,9 @@ export const unionTestnet = InternalChainInfo.make({
coinMinimalDenom: "au",
... | [
"app2/src/lib/config/wallets/info.ts"
] | [] | true | |||
unionlabs/union | 5,432 | issue_to_patch | deployments stuff | eb551b03c0bbd404006eeaf283faf26b386bc4ed | 342e2ea6eb56ec925b6f3e392102686de4f90c95 | diff --git a/cosmwasm/core/src/contract.rs b/cosmwasm/core/src/contract.rs
index 4ab5e734e10..ad409518e76 100644
--- a/cosmwasm/core/src/contract.rs
+++ b/cosmwasm/core/src/contract.rs
@@ -2495,7 +2495,7 @@ fn commit_non_membership_proof(
path: path.clone(),
}
.key(),
- &commit(NON... | [
"cosmwasm/core/src/contract.rs",
"cosmwasm/cosmwasm.nix",
"deployments/channels.json",
"deployments/clients.json",
"deployments/deployments.json",
"evm/evm.nix",
"tools/update-deployments/src/main.rs",
"typos.toml",
"voyager/plugins/transaction-batch-proof-lens/src/lib.rs"
] | [] | true | |||
unionlabs/union | 5,431 | issue_to_patch | feat(u): predict proxy evm | 1d7ebcebb4b3b5a7fdee11958bb580759f75d05d | 1a39bb9a5c7491157640f113d0f216b82f3e61aa | diff --git a/tools/u/src/zkgm/predict_proxy_account_address.rs b/tools/u/src/zkgm/predict_proxy_account_address.rs
index 8b1556f2c9d..3c39557bafe 100644
--- a/tools/u/src/zkgm/predict_proxy_account_address.rs
+++ b/tools/u/src/zkgm/predict_proxy_account_address.rs
@@ -5,7 +5,7 @@ use cosmwasm_std::instantiate2_address;... | [
"tools/u/src/zkgm/predict_proxy_account_address.rs"
] | [
{
"comment": "Do you want to keep this?",
"path": "tools/u/src/zkgm/predict_proxy_account_address.rs",
"hunk": "@@ -139,3 +147,19 @@ fn predict_proxy_account_cosmwasm(zkgm_address: String, args: CallProxySalt) ->\n \n Ok(())\n }\n+\n+fn predict_proxy_account_evm(zkgm_address: String, args: CallProxy... | true | |||
unionlabs/union | 5,431 | comment_to_fix | feat(u): predict proxy evm | Do you want to keep this? | 1d7ebcebb4b3b5a7fdee11958bb580759f75d05d | 1a39bb9a5c7491157640f113d0f216b82f3e61aa | diff --git a/tools/u/src/zkgm/predict_proxy_account_address.rs b/tools/u/src/zkgm/predict_proxy_account_address.rs
index 8b1556f2c9d..3c39557bafe 100644
--- a/tools/u/src/zkgm/predict_proxy_account_address.rs
+++ b/tools/u/src/zkgm/predict_proxy_account_address.rs
@@ -5,7 +5,7 @@ use cosmwasm_std::instantiate2_address;... | [
"tools/u/src/zkgm/predict_proxy_account_address.rs"
] | [
{
"comment": "Do you want to keep this?",
"path": "tools/u/src/zkgm/predict_proxy_account_address.rs",
"hunk": "@@ -139,3 +147,19 @@ fn predict_proxy_account_cosmwasm(zkgm_address: String, args: CallProxySalt) ->\n \n Ok(())\n }\n+\n+fn predict_proxy_account_evm(zkgm_address: String, args: CallProxy... | true | ||
unionlabs/union | 5,426 | issue_to_patch | feat(voyager): support cosmos block events and make tx hash optional for events | f15673cd2647721328f2fec5558afbe94cd391bc | 539dc69ab047ceafa4813f13dae552072053711b | diff --git a/lib/cometbft-rpc/src/lib.rs b/lib/cometbft-rpc/src/lib.rs
index 4fcdcbe05ec..cfae26841b8 100644
--- a/lib/cometbft-rpc/src/lib.rs
+++ b/lib/cometbft-rpc/src/lib.rs
@@ -26,9 +26,9 @@ use unionlabs::{
use crate::rpc_types::{
AbciInfoResponse, AbciQueryResponse, AllValidatorsResponse, BlockResponse,
-... | [
"lib/cometbft-rpc/src/lib.rs",
"lib/cometbft-rpc/src/rpc_types.rs",
"lib/ibc-union-spec/src/query.rs",
"lib/voyager-message/src/data.rs",
"tools/u/src/cometbft/rpc.rs",
"voyager/modules/state/cosmwasm/src/main.rs",
"voyager/modules/state/evm/src/main.rs",
"voyager/modules/state/sui/src/main.rs",
"vo... | [] | true | |||
unionlabs/union | 5,430 | issue_to_patch | fix(voyager): don't spin in sui tx plugin if no signers are available | e92e70dec5ce1fbdd7e2f13fc33d9ba01d771a52 | cd9dee0ebfcb1df5e1a077880ba78bdc7abbba49 | diff --git a/voyager/plugins/transaction/sui/src/lib.rs b/voyager/plugins/transaction/sui/src/lib.rs
index 69d92815693..60ee71c6416 100644
--- a/voyager/plugins/transaction/sui/src/lib.rs
+++ b/voyager/plugins/transaction/sui/src/lib.rs
@@ -13,7 +13,7 @@ use sui_sdk::{
transaction::{ProgrammableTransaction, Tr... | [
"voyager/plugins/transaction/sui/src/lib.rs",
"voyager/plugins/transaction/sui/src/main.rs"
] | [] | true | |||
unionlabs/union | 5,429 | issue_to_patch | feat(app): block height fallback in trace explorer | f15673cd2647721328f2fec5558afbe94cd391bc | afe9f9b30a6c1de234d1f1892a5028c86ce17272 | diff --git a/app2/src/generated/graphql-env.d.ts b/app2/src/generated/graphql-env.d.ts
index 7754b6abe6c..a9096900177 100644
--- a/app2/src/generated/graphql-env.d.ts
+++ b/app2/src/generated/graphql-env.d.ts
@@ -1,88 +1,6 @@
/* eslint-disable */
/* prettier-ignore */
-export type introspection_types = {
- 'Bool... | [
"app2/src/generated/graphql-env.d.ts",
"app2/src/generated/schema.graphql",
"app2/src/lib/components/model/BlockHeightComponent.svelte",
"app2/src/lib/components/model/PacketTracesComponent.svelte"
] | [] | true | |||
unionlabs/union | 5,427 | issue_to_patch | Voyager otel logs | 64d9161a6ff06e8df70c45add7ae0f608cc42d6d | 7f9b1e5e13059c2edb67466c4cb9e5b926a61c94 | diff --git a/Cargo.lock b/Cargo.lock
index 4fc69dc502c..3c33f08d684 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3203,7 +3203,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
dependencies = [
"lazy_static",
- "windows... | [
"Cargo.lock",
"Cargo.toml",
"lib/pg-queue/src/lib.rs",
"lib/reconnecting-jsonrpc-ws-client/src/lib.rs",
"lib/voyager-client/src/lib.rs",
"lib/voyager-core/src/filter.rs",
"lib/voyager-core/src/lib.rs",
"lib/voyager-plugin-protocol/Cargo.toml",
"lib/voyager-plugin-protocol/src/lib.rs",
"lib/voyager... | [] | true | |||
unionlabs/union | 5,424 | issue_to_patch | chore(deployments): update | 64d9161a6ff06e8df70c45add7ae0f608cc42d6d | b32de4341c8df1f17afe0f2bff00691304253729 | diff --git a/deployments/deployments.json b/deployments/deployments.json
index 18b73c8df88..9e904f07321 100644
--- a/deployments/deployments.json
+++ b/deployments/deployments.json
@@ -242,7 +242,7 @@
"name": "protocols/ucs03",
"salt": "0x70726f746f636f6c732f7563733033",
"height": 27935624,
-... | [
"deployments/deployments.json",
"tools/update-deployments/src/main.rs"
] | [] | true | |||
unionlabs/union | 5,425 | issue_to_patch | fix(docs): chains overview query | 64d9161a6ff06e8df70c45add7ae0f608cc42d6d | f8bfc3740b25b5e65c1f05824025efb8f39b42df | diff --git a/docs/src/components/svelte/tables/ChainsTable.svelte b/docs/src/components/svelte/tables/ChainsTable.svelte
index 8fdb05489b8..e39413407be 100644
--- a/docs/src/components/svelte/tables/ChainsTable.svelte
+++ b/docs/src/components/svelte/tables/ChainsTable.svelte
@@ -17,7 +17,7 @@ const graphqlQuery = dede... | [
"docs/src/components/svelte/tables/ChainsTable.svelte"
] | [] | true | |||
unionlabs/union | 5,423 | issue_to_patch | fix(evm): proxy account derivation and tests | 1f9dad5f235d980f03522a24a607df957c03a9f4 | b248746c674928e39eca734543adcccc9c49ded3 | diff --git a/evm/contracts/apps/ucs/03-zkgm/Send.sol b/evm/contracts/apps/ucs/03-zkgm/Send.sol
index a01f9445c8b..8f4adf6a2f5 100644
--- a/evm/contracts/apps/ucs/03-zkgm/Send.sol
+++ b/evm/contracts/apps/ucs/03-zkgm/Send.sol
@@ -311,7 +311,7 @@ contract UCS03ZkgmSendImpl is Versioned, UCS03ZkgmStore {
uint256 ... | [
"evm/contracts/apps/ucs/03-zkgm/Send.sol",
"evm/contracts/apps/ucs/03-zkgm/Store.sol",
"evm/contracts/apps/ucs/03-zkgm/Zkgm.sol",
"evm/tests/src/05-app/Zkgm.t.sol"
] | [] | diff --git a/evm/tests/src/05-app/Zkgm.t.sol b/evm/tests/src/05-app/Zkgm.t.sol
index 90574ea456b..034fb3e656b 100644
--- a/evm/tests/src/05-app/Zkgm.t.sol
+++ b/evm/tests/src/05-app/Zkgm.t.sol
@@ -98,6 +98,23 @@ contract TestZkgm is UCS03Zkgm {
) public {
_setBucketConfig(token, capacity, refillRate, rese... | true | ||
unionlabs/union | 5,420 | issue_to_patch | chore(sui): nasty bug | fa2293d52920b81662935e992e8901c7ff090a73 | 4b86cc50f74bd022863107c1ac356e507b12ce1d | diff --git a/cosmwasm/lightclient/sui/src/client.rs b/cosmwasm/lightclient/sui/src/client.rs
index 9b98c01ea06..e2c6f81d303 100644
--- a/cosmwasm/lightclient/sui/src/client.rs
+++ b/cosmwasm/lightclient/sui/src/client.rs
@@ -151,7 +151,7 @@ impl IbcClient for SuiLightClient {
);
}
- if cl... | [
"cosmwasm/lightclient/sui/src/client.rs"
] | [] | true | |||
unionlabs/union | 5,419 | issue_to_patch | Add proof lens client | 2957e1180141e435f6063544f1d386ea4bb3cc04 | 76bc77736d9fa76af21bc9dc2e0ae8f95250a0c7 | diff --git a/deployments/deployments.json b/deployments/deployments.json
index 6e7dd86b346..18b73c8df88 100644
--- a/deployments/deployments.json
+++ b/deployments/deployments.json
@@ -653,6 +653,12 @@
"height": 8088108,
"commit": "69ee9d58be3c912474adeaf4fe952d3448f80bcf"
},
+ "0x130d8a9e... | [
"deployments/deployments.json",
"evm/evm.nix"
] | [] | true | |||
unionlabs/union | 5,417 | issue_to_patch | feat(voyager): expose more codec functionality over jsonrpc | c96f58903fae6677969aba94312b85b55c735aed | c1e3e0a0e39c90b328616b3e859769fd8a584e89 | diff --git a/lib/voyager-core/src/server.rs b/lib/voyager-core/src/server.rs
index bf53117ff46..0afaee03a6a 100644
--- a/lib/voyager-core/src/server.rs
+++ b/lib/voyager-core/src/server.rs
@@ -686,7 +686,6 @@ impl Server {
.await
}
- // TODO: Use valuable here
#[instrument(skip_all, fields(%... | [
"lib/voyager-core/src/server.rs",
"lib/voyager-rpc/src/lib.rs",
"voyager/modules/client/arbitrum/src/main.rs",
"voyager/modules/client/attested/src/main.rs",
"voyager/modules/client/base/src/main.rs",
"voyager/modules/client/bob/src/main.rs",
"voyager/modules/client/cometbls/src/main.rs",
"voyager/mod... | [] | true | |||
unionlabs/union | 5,400 | issue_to_patch | revive parlia lc | dd4e89bcef20108fd590de5c676efcc3bad4e796 | bc56a8613730a2d00f08ff8273e7d7f53e814b55 | diff --git a/Cargo.lock b/Cargo.lock
index 0486b59f7be..4fc69dc502c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6955,6 +6955,7 @@ dependencies = [
"pausable",
"schemars 0.8.22",
"serde",
+ "serde_json",
"unionlabs-primitives",
"upgradable",
]
@@ -9770,8 +9771,6 @@ dependencies = [
"cosmwasm-std",
"depol... | [
"Cargo.lock",
"Cargo.toml",
"cosmwasm/core/light-client-interface/src/lib.rs",
"cosmwasm/core/msg/Cargo.toml",
"cosmwasm/cosmwasm.nix",
"cosmwasm/lightclient/parlia/Cargo.toml",
"cosmwasm/lightclient/parlia/src/client.rs",
"cosmwasm/lightclient/parlia/src/errors.rs",
"cosmwasm/lightclient/proof-lens... | [
{
"comment": "what happened to these not used anymore?",
"path": "Cargo.toml",
"hunk": "@@ -218,10 +225,7 @@ members = [\n # \"lib/aptos-verifier\",\n \n \"lib/reconnecting-jsonrpc-ws-client\",\n- \"lib/voyager-primitives\",",
"resolving_sha": "bc56a8613730a2d00f08ff8273e7d7f53e814b55",
"re... | true | |||
unionlabs/union | 5,400 | comment_to_fix | revive parlia lc | what happened to these not used anymore? | dd4e89bcef20108fd590de5c676efcc3bad4e796 | bc56a8613730a2d00f08ff8273e7d7f53e814b55 | diff --git a/Cargo.toml b/Cargo.toml
index 51f3d2072a4..4a99fa6b576 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -75,6 +75,7 @@ members = [
"lib/state-lens-ics23-mpt-light-client-types",
"lib/state-lens-ics23-ics23-light-client-types",
"lib/state-lens-ics23-smt-light-client-types",
+ "lib/proof-lens-light-clie... | [
"Cargo.toml"
] | [
{
"comment": "what happened to these not used anymore?",
"path": "Cargo.toml",
"hunk": "@@ -218,10 +225,7 @@ members = [\n # \"lib/aptos-verifier\",\n \n \"lib/reconnecting-jsonrpc-ws-client\",\n- \"lib/voyager-primitives\",",
"resolving_sha": "bc56a8613730a2d00f08ff8273e7d7f53e814b55",
"re... | true | ||
unionlabs/union | 5,400 | comment_to_fix | revive parlia lc | ```suggestion
pub struct ProofLensIcs23Ics23LightClient;
``` | dd4e89bcef20108fd590de5c676efcc3bad4e796 | bc56a8613730a2d00f08ff8273e7d7f53e814b55 | diff --git a/cosmwasm/lightclient/proof-lens/src/client.rs b/cosmwasm/lightclient/proof-lens/src/client.rs
new file mode 100644
index 00000000000..b44964ff6dc
--- /dev/null
+++ b/cosmwasm/lightclient/proof-lens/src/client.rs
@@ -0,0 +1,207 @@
+use cosmwasm_std::{Addr, Empty};
+use ibc_union_light_client::{
+ ClientC... | [
"cosmwasm/lightclient/proof-lens/src/client.rs"
] | [
{
"comment": "```suggestion\r\npub struct ProofLensIcs23Ics23LightClient;\r\n```",
"path": "cosmwasm/lightclient/proof-lens/src/client.rs",
"hunk": "@@ -0,0 +1,207 @@\n+use cosmwasm_std::{Addr, Empty};\n+use ibc_union_light_client::{\n+ ClientCreationResult, IbcClient, IbcClientCtx, IbcClientError, S... | true | ||
unionlabs/union | 5,400 | comment_to_fix | revive parlia lc | hmmmm this will create an invalid bincode (de)serialization when used within a type right? since you dunno how many bytes to parse. | dd4e89bcef20108fd590de5c676efcc3bad4e796 | bc56a8613730a2d00f08ff8273e7d7f53e814b55 | diff --git a/cosmwasm/lightclient/proof-lens/src/raw_bytes.rs b/cosmwasm/lightclient/proof-lens/src/raw_bytes.rs
new file mode 100644
index 00000000000..36a0b842c1a
--- /dev/null
+++ b/cosmwasm/lightclient/proof-lens/src/raw_bytes.rs
@@ -0,0 +1,23 @@
+use std::convert::Infallible;
+
+use unionlabs::{
+ encoding::{Bi... | [
"cosmwasm/lightclient/proof-lens/src/raw_bytes.rs"
] | [
{
"comment": "hmmmm this will create an invalid bincode (de)serialization when used within a type right? since you dunno how many bytes to parse.",
"path": "cosmwasm/lightclient/proof-lens/src/raw_bytes.rs",
"hunk": "@@ -0,0 +1,23 @@\n+use std::convert::Infallible;\n+\n+use unionlabs::{\n+ encoding::... | true | ||
unionlabs/union | 5,400 | comment_to_fix | revive parlia lc | btw note that it might be a good idea to add `PACKET_TIMEOUTS` here as a future-proof for sui timeouts. Otherwise we might mistakenly override. | dd4e89bcef20108fd590de5c676efcc3bad4e796 | bc56a8613730a2d00f08ff8273e7d7f53e814b55 | diff --git a/evm/contracts/core/24-host/IBCCommitment.sol b/evm/contracts/core/24-host/IBCCommitment.sol
index 7398b182b73..eb964857227 100644
--- a/evm/contracts/core/24-host/IBCCommitment.sol
+++ b/evm/contracts/core/24-host/IBCCommitment.sol
@@ -7,6 +7,12 @@ library IBCCommitment {
uint256 public constant CHANN... | [
"evm/contracts/core/24-host/IBCCommitment.sol"
] | [
{
"comment": "btw note that it might be a good idea to add `PACKET_TIMEOUTS` here as a future-proof for sui timeouts. Otherwise we might mistakenly override.",
"path": "evm/contracts/core/24-host/IBCCommitment.sol",
"hunk": "@@ -7,6 +7,11 @@ library IBCCommitment {\n uint256 public constant CHANNELS... | true | ||
unionlabs/union | 5,400 | comment_to_fix | revive parlia lc | proof lense? | dd4e89bcef20108fd590de5c676efcc3bad4e796 | bc56a8613730a2d00f08ff8273e7d7f53e814b55 | diff --git a/lib/proof-lens-light-client-types/src/client_state.rs b/lib/proof-lens-light-client-types/src/client_state.rs
new file mode 100644
index 00000000000..dc15cc2be63
--- /dev/null
+++ b/lib/proof-lens-light-client-types/src/client_state.rs
@@ -0,0 +1,124 @@
+use ibc_union_spec::ClientId;
+
+/// Representation ... | [
"lib/proof-lens-light-client-types/src/client_state.rs"
] | [
{
"comment": "proof lense?",
"path": "lib/proof-lens-light-client-types/src/client_state.rs",
"hunk": "@@ -0,0 +1,124 @@\n+use ibc_union_spec::ClientId;\n+\n+/// Representation of the client state of a proof lens client.\n+///\n+/// For a state lens client A->B->C, where the state lens is running on A a... | true | ||
unionlabs/union | 5,415 | issue_to_patch | feat(ts-sdk-evm): add layerPure | b585a0a654048a81eec7cafdec13ddd2387ae671 | 926ad878f2e4da2da39927c4bfc353b44c1dc748 | diff --git a/ts-sdk-evm/package.json b/ts-sdk-evm/package.json
index 4d07a3b59f4..90d245ac727 100644
--- a/ts-sdk-evm/package.json
+++ b/ts-sdk-evm/package.json
@@ -1,6 +1,6 @@
{
"name": "@unionlabs/sdk-evm",
- "version": "0.0.1",
+ "version": "0.0.3",
"type": "module",
"license": "MIT",
"author": "@unio... | [
"ts-sdk-evm/package.json",
"ts-sdk-evm/src/EvmZkgmClient.ts",
"ts-sdk-evm/src/internal/zkgmClient.ts"
] | [] | true | |||
unionlabs/union | 5,414 | issue_to_patch | fix(app): math | d9559e7efb51695d0f17bbb95e55db1e206ef682 | 000bc6008607bf2347a75c022f1a6f6b8aa81a68 | diff --git a/app2/src/lib/components/stake/WithdrawalComponent.svelte b/app2/src/lib/components/stake/WithdrawalComponent.svelte
index 1ebb0d73958..c3812ad06d2 100644
--- a/app2/src/lib/components/stake/WithdrawalComponent.svelte
+++ b/app2/src/lib/components/stake/WithdrawalComponent.svelte
@@ -108,19 +108,35 @@ const... | [
"app2/src/lib/components/stake/WithdrawalComponent.svelte"
] | [] | true | |||
unionlabs/union | 5,412 | issue_to_patch | chore: update unionvisor bundle | - Updates latest unionvisor bundle version from v1.2.2 -> v1.2.3 | bd2802bd4927aad44b2e0976e0197fbbc6cb2e7e | 57613a8d10a7d029578372a78e12083cdffea8af | diff --git a/flake.lock b/flake.lock
index 39938b87b18..317e340c893 100644
--- a/flake.lock
+++ b/flake.lock
@@ -809,16 +809,16 @@
"v1_2_0": {
"flake": false,
"locked": {
- "lastModified": 1755126750,
- "narHash": "sha256-JpXGrA1Ciy9xtepNKWFFdnsnJCrAThnUSgrjQyj55f0=",
+ "lastModi... | [
"flake.lock",
"flake.nix"
] | [] | true | ||
unionlabs/union | 5,411 | issue_to_patch | feat(ts-sdk-evm): add specialized concrete EvmZkgmClient | bd2802bd4927aad44b2e0976e0197fbbc6cb2e7e | bdcc546930361e2a3a20a5bb5e3eba6d1155a457 | diff --git a/ts-sdk-evm/package.json b/ts-sdk-evm/package.json
index 48b33a14cd8..4d07a3b59f4 100644
--- a/ts-sdk-evm/package.json
+++ b/ts-sdk-evm/package.json
@@ -1,6 +1,6 @@
{
"name": "@unionlabs/sdk-evm",
- "version": "0.0.0",
+ "version": "0.0.1",
"type": "module",
"license": "MIT",
"author": "@unio... | [
"ts-sdk-evm/package.json",
"ts-sdk-evm/src/EvmZkgmClient.ts",
"ts-sdk-evm/src/internal/zkgmClient.ts"
] | [] | true | |||
unionlabs/union | 5,410 | issue_to_patch | chore(uniond): upgrade cometbls | - upgraded cometbls
- Manually entered current version of uniond into `uniond.nix` s.t. node operators can confirm patch version with the `version` command | dd4e89bcef20108fd590de5c676efcc3bad4e796 | 2fce0aa95bec5c66971587aef73430bf8c237b18 | diff --git a/uniond/go.mod b/uniond/go.mod
index 8c8b54c1b58..29bbbe5feff 100644
--- a/uniond/go.mod
+++ b/uniond/go.mod
@@ -259,8 +259,8 @@ replace (
)
replace (
- github.com/cometbft/cometbft => github.com/unionlabs/cometbls v0.0.0-20250228223008-5aa5a57b377d
- github.com/cometbft/cometbft/api => github.com/union... | [
"uniond/go.mod",
"uniond/go.sum",
"uniond/uniond.nix"
] | [
{
"comment": "revert?",
"path": "uniond/uniond.nix",
"hunk": "@@ -100,7 +100,7 @@ _: {\n \"-X github.com/cosmos/cosmos-sdk/version.AppName=uniond\"\n \"-X github.com/cosmos/cosmos-sdk/version.BuildTags=${system}\"\n \"-X github.com/cosmos/cosmos-sdk/version.Comm... | true | ||
unionlabs/union | 5,410 | comment_to_fix | chore(uniond): upgrade cometbls | revert? | dd4e89bcef20108fd590de5c676efcc3bad4e796 | 2fce0aa95bec5c66971587aef73430bf8c237b18 | diff --git a/uniond/uniond.nix b/uniond/uniond.nix
index 3f07be76ec8..e7bbfb54402 100644
--- a/uniond/uniond.nix
+++ b/uniond/uniond.nix
@@ -50,7 +50,7 @@ _: {
(nix-filter.matchExt "md")
];
};
- vendorHash = "sha256-9XWSuq5xvnTTJaR+eYeJ2Xugw7f4hNa7umtvjurw5VU=";
+... | [
"uniond/uniond.nix"
] | [
{
"comment": "revert?",
"path": "uniond/uniond.nix",
"hunk": "@@ -100,7 +100,7 @@ _: {\n \"-X github.com/cosmos/cosmos-sdk/version.AppName=uniond\"\n \"-X github.com/cosmos/cosmos-sdk/version.BuildTags=${system}\"\n \"-X github.com/cosmos/cosmos-sdk/version.Comm... | true | ||
unionlabs/union | 5,408 | issue_to_patch | Sui checkpoints new variant | d646c1d447608c783778fc54fab469be3d08445c | e506149a5a269e9d75b97d8148ae472f30fed660 | diff --git a/Cargo.lock b/Cargo.lock
index fa3d6a07879..0486b59f7be 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -737,7 +737,7 @@ dependencies = [
"alloy-rlp",
"alloy-serde",
"alloy-sol-types",
- "itertools 0.13.0",
+ "itertools 0.14.0",
"serde",
"serde_json",
"serde_with",
@@ -3203,7 +3203,7 @@ source = "re... | [
"Cargo.lock",
"voyager/plugins/sui-ibc-app/src/main.rs",
"voyager/plugins/sui-ibc-app/src/zkgm.rs",
"voyager/plugins/transaction/sui/src/lib.rs",
"voyager/plugins/transaction/sui/src/main.rs"
] | [] | true | |||
unionlabs/union | 5,407 | issue_to_patch | chore(app): stabilize OTel logging | 89c7a83a3e14c6c647afa4bdab499462ba130187 | e3741cbe9f7484375b0c361a24a17cab32ccad8b | diff --git a/app2/src/lib/logging/tracing.ts b/app2/src/lib/logging/tracing.ts
index d48607b7ed4..c4619407467 100644
--- a/app2/src/lib/logging/tracing.ts
+++ b/app2/src/lib/logging/tracing.ts
@@ -71,6 +71,7 @@ export const TracingLive = Layer.unwrapEffect(
Match.when("DEVELOPMENT", () => "development" as const)... | [
"app2/src/lib/logging/tracing.ts"
] | [] | true | |||
unionlabs/union | 5,406 | issue_to_patch | refactor(app,ts-sdk,ts-sdk-evm,ts-sdk-cosmos): improve span tracing | a129e27892b94472e565a4f31192a31b28bbec36 | 3d4524b4f1e93a48c17bfdde7ad67a4c408b164e | diff --git a/app2/app2.nix b/app2/app2.nix
index c097ad20e4a..6eb227e5b1e 100644
--- a/app2/app2.nix
+++ b/app2/app2.nix
@@ -39,7 +39,7 @@ _: {
../ts-sdk-evm
../ts-sdk-sui
];
- hash = "sha256-ihwIWIgmF9XrEDf9rINtpR9OWLJmS4HtxYFsShY9e3g=";
+ hash = "sha256-lAmG8o1FH... | [
"app2/app2.nix",
"app2/package.json",
"app2/src/lib/graphql/service.ts",
"app2/src/lib/logging/tracing.ts",
"app2/src/lib/services/voyager-rpc.ts",
"app2/src/lib/utils/queries.ts",
"pnpm-lock.yaml",
"pnpm-workspace.yaml",
"ts-sdk-cosmos/src/Cosmos.ts",
"ts-sdk-evm/src/Evm.ts",
"ts-sdk/src/PriceO... | [] | true | |||
unionlabs/union | 5,405 | issue_to_patch | refactor(app): use internal OTel remote logging | 2d3653304dac6f24b514a40823efc9ce7a96fa05 | b1dfa68a706ab0b71fdab84ccd7aa0bdbf80a7de | diff --git a/app2/app2.nix b/app2/app2.nix
index 4df0ebb8578..c097ad20e4a 100644
--- a/app2/app2.nix
+++ b/app2/app2.nix
@@ -19,7 +19,8 @@ _: {
pnpm_10
imagemagick
];
- PUBLIC_DATADOG_CLIENT_TOKEN = "pub69b8a3deb766e91a19b44cccf0c3352e";
+ PUBLIC_LOG_TOKEN = "9VE47r89qMgdbCzHbtRN8pTuQ... | [
"app2/app2.nix",
"app2/package.json",
"app2/src/hooks.client.ts",
"app2/src/lib/graphql/error.ts",
"app2/src/lib/layers/live.ts",
"app2/src/lib/logging/datadog.ts",
"app2/src/lib/logging/tracing.ts",
"ceremony/ceremony.nix",
"effect-svelte/effect-svelte.nix",
"pnpm-lock.yaml",
"pnpm-workspace.ya... | [] | true | |||
unionlabs/union | 5,403 | issue_to_patch | chore(sui): add checkpoint contents v2 | 6e0a0a1ce584e7bce34fa6c11a4725552ece1b4d | 6ede87ca71a8540685b8c4c9bc6fcb02c691a0fa | diff --git a/lib/sui-light-client-types/src/checkpoint_summary.rs b/lib/sui-light-client-types/src/checkpoint_summary.rs
index ee173a943d7..b4e2325b723 100644
--- a/lib/sui-light-client-types/src/checkpoint_summary.rs
+++ b/lib/sui-light-client-types/src/checkpoint_summary.rs
@@ -110,14 +110,10 @@ pub struct ECMHLiveOb... | [
"lib/sui-light-client-types/src/checkpoint_summary.rs",
"lib/sui-verifier/src/lib.rs"
] | [] | true | |||
unionlabs/union | 5,402 | issue_to_patch | feat(deployments): photon on ethereum | 7482275873190f3600a0d192babe830d4175c398 | 776f462ad998090072835a71bb4a9916ea014f96 | diff --git a/deployments/deployments.json b/deployments/deployments.json
index 91ea99be942..6e7dd86b346 100644
--- a/deployments/deployments.json
+++ b/deployments/deployments.json
@@ -38,17 +38,17 @@
"height": 420578883,
"commit": "6fadb697bee413c025e87b5edf79c0d9f836cce6"
},
- "0xee4ea8d... | [
"deployments/deployments.json"
] | [] | true | |||
unionlabs/union | 5,401 | issue_to_patch | chore(sui): less aggressive multiepoch fetching in voyager | db29207bc9f7b4c3d94a6fedd32acda1290d3485 | b4a9a55b9efd7fcf2bea4473dae3802014314093 | diff --git a/voyager/plugins/client-update/sui/src/main.rs b/voyager/plugins/client-update/sui/src/main.rs
index f98c18cf536..c77f7083430 100644
--- a/voyager/plugins/client-update/sui/src/main.rs
+++ b/voyager/plugins/client-update/sui/src/main.rs
@@ -1,4 +1,4 @@
-use std::{collections::VecDeque, str::FromStr};
+use s... | [
"voyager/plugins/client-update/sui/src/main.rs"
] | [] | true | |||
unionlabs/union | 5,399 | issue_to_patch | fix(app): configure arbitrum settlement delay | 5d5a858fce5911ee95d6d619c72b940a76a560e0 | 61af55d64b22e979bb63a417f04aa06d994a172f | diff --git a/app2/src/lib/constants/settlement-times.ts b/app2/src/lib/constants/settlement-times.ts
index 7aa53daf5d8..b8bcc36a05e 100644
--- a/app2/src/lib/constants/settlement-times.ts
+++ b/app2/src/lib/constants/settlement-times.ts
@@ -7,17 +7,25 @@ type SettlementInfo = {
export const settlementDelays = {
"... | [
"app2/src/lib/constants/settlement-times.ts"
] | [] | true | |||
unionlabs/union | 5,398 | issue_to_patch | feat: rework evm storage verifier interface, make some crates no_std | 00ccdd10156f985d700a8fbebd93c648e67c8a0f | be0dacded141b971c0dd6c58ddb5c61d3778f5da | diff --git a/Cargo.lock b/Cargo.lock
index 2024693d7f3..8ac79200f98 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -737,7 +737,7 @@ dependencies = [
"alloy-rlp",
"alloy-serde",
"alloy-sol-types",
- "itertools 0.14.0",
+ "itertools 0.13.0",
"serde",
"serde_json",
"serde_with",
@@ -4563,7 +4563,7 @@ source = "re... | [
"Cargo.lock",
"cosmwasm/lightclient/ethereum/src/client.rs",
"cosmwasm/lightclient/movement/src/client.rs",
"cosmwasm/lightclient/state-lens-ics23-mpt/src/client.rs",
"cosmwasm/lightclient/trusted-mpt/src/client.rs",
"flake.nix",
"lib/arbitrum-verifier/src/lib.rs",
"lib/base-verifier/src/lib.rs",
"l... | [] | true | |||
unopim/unopim | 492 | issue_to_patch | docs(changelog): add v2.1.x changelog update | ## Description
Updates the changelog with the in v2.1.x — covering the
TinyMCE upload hardening, configurable-product API scope enforcement, Magic AI
platform permission checks, product-grid sort hardening, and channel-name
Rendering on the family completeness screen. | 63ee2e5c7d77a06d5c0de8465a5e8764cbfc7275 | c726835f376fc10513218118270ce8a7482e2757 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4fbf291ac..4436d1ace 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,13 @@
# v2.1.x
-## v2.1.5 (Unreleased)
+## v2.1.5
+
+### Security
+- Hardened file uploads in the rich-text (TinyMCE) editor — uploads are now limited to an approved set of image types and save... | [
"CHANGELOG.md"
] | [] | true | ||
unopim/unopim | 493 | issue_to_patch | chore: v2.1.5 patch cleanup — upgrade-script fixes, skills extraction, dead-file removal | ## Issue Reference
Maintenance batch for the upcoming v2.1.5 patch release — no single issue.
## Description
Four logical commits:
1. **GitHub templates overhaul** — single bug-report form (required environment checklist, duplicate-search confirmation, correct labels/title prefixes), legacy markdown template removed,... | 87aefff262055f21b64baf60ba0da87600dbd5c8 | 3bbbe147f4f0135f129011d9296bdf72d188622b | diff --git a/.ai/skills b/.ai/skills
deleted file mode 120000
index 3e73f3a38..000000000
--- a/.ai/skills
+++ /dev/null
@@ -1,1 +0,0 @@
-../.github/skills
\ No newline at end of file
diff --git a/.claude/skills b/.claude/skills
deleted file mode 120000
index 3e73f3a38..000000000
--- a/.claude/skills
+++ /dev/null
@@ -1... | [
".ai/skills",
".claude/skills",
".codex/skills",
".cursor/skills",
".github/CONTRIBUTING.md",
".github/ISSUE_TEMPLATE/bug.yml",
".github/ISSUE_TEMPLATE/bug_report.md",
".github/ISSUE_TEMPLATE/config.yml",
".github/ISSUE_TEMPLATE/feature_request.yml",
".github/PULL_REQUEST_TEMPLATE.md",
".github/... | [
{
"comment": "`zip` is invoked with an unquoted `$BACKUP_FILE`, and the follow-up `zip -u` assumes all listed `.gitignore` files exist. With `set -e`, any missing path can abort the whole upgrade. Quote the archive path and add the `.gitignore` files conditionally to keep the script robust.",
"path": "upgra... | diff --git a/packages/Webkul/DataGrid/tests/Unit/ExampleTest.php b/packages/Webkul/DataGrid/tests/Unit/ExampleTest.php
deleted file mode 100644
index 5b7cfc2bf..000000000
--- a/packages/Webkul/DataGrid/tests/Unit/ExampleTest.php
+++ /dev/null
@@ -1,5 +0,0 @@
-<?php
-
-test('datagrid that true is true', function () {
- ... | true | |
unopim/unopim | 493 | comment_to_fix | chore: v2.1.5 patch cleanup — upgrade-script fixes, skills extraction, dead-file removal | `zip` is invoked with an unquoted `$BACKUP_FILE`, and the follow-up `zip -u` assumes all listed `.gitignore` files exist. With `set -e`, any missing path can abort the whole upgrade. Quote the archive path and add the `.gitignore` files conditionally to keep the script robust. | 87aefff262055f21b64baf60ba0da87600dbd5c8 | 3bbbe147f4f0135f129011d9296bdf72d188622b | diff --git a/upgrade.sh b/upgrade.sh
index aa14f9445..d06745613 100755
--- a/upgrade.sh
+++ b/upgrade.sh
@@ -2,6 +2,11 @@
set -e
+# Read a single value from .env (first match, key anchored, quotes stripped)
+env_val() {
+ grep -E "^$1=" .env | head -n 1 | cut -d '=' -f 2- | tr -d '\r' | sed -e 's/^"//' -e 's/"$//... | [
"upgrade.sh"
] | [
{
"comment": "`zip` is invoked with an unquoted `$BACKUP_FILE`, and the follow-up `zip -u` assumes all listed `.gitignore` files exist. With `set -e`, any missing path can abort the whole upgrade. Quote the archive path and add the `.gitignore` files conditionally to keep the script robust.",
"path": "upgra... | true | ||
unopim/unopim | 493 | comment_to_fix | chore: v2.1.5 patch cleanup — upgrade-script fixes, skills extraction, dead-file removal | `COMPOSER_HOME` is pointed at `storage/composer`, but the directory is never created/validated, and `realpath()` can return `false` for `composer.phar`/project root. That can lead to a broken `php install ...` invocation or Composer failing to write its cache/config. Create the directory (recursively) and bail out wit... | 87aefff262055f21b64baf60ba0da87600dbd5c8 | 3bbbe147f4f0135f129011d9296bdf72d188622b | diff --git a/public/install.php b/public/install.php
index b0ea4d731..ec27fe4a4 100644
--- a/public/install.php
+++ b/public/install.php
@@ -205,15 +205,15 @@ function executeCommand($command, &$installationSuccessful)
function installProjectDepedencies(&$installationSuccessful)
{
- ... | [
"public/install.php"
] | [
{
"comment": "`COMPOSER_HOME` is pointed at `storage/composer`, but the directory is never created/validated, and `realpath()` can return `false` for `composer.phar`/project root. That can lead to a broken `php install ...` invocation or Composer failing to write its cache/config. Create the directory (recursi... | true | ||
unopim/unopim | 491 | issue_to_patch | feat(installer): add type-to-search locale & currency prompts to CLI … | ## What
Replaced the static `select`/`multiselect` dropdowns for locale and currency
in the `php artisan unopim:install` wizard with searchable
`search`/`multisearch` prompts.
## Why
The locale list (30+ entries) was tedious to scroll. Users can now type to
filter by code (`en_US`, `USD`) or name ... | 7ead419d533c36a39d184b3a7253c1379c9ff3b5 | 309f69ae089cdbb841e624eba9fa4b19ddfd6590 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b1cbf9af..d016ae455 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@
- Added **dismissible cloud-hosting and version-upgrade promo banners** in the admin.
### Improvements
+- Added **type-to-search locale & currency prompts** to the `php artisan unopim:ins... | [
"CHANGELOG.md",
"packages/Webkul/Installer/src/Console/Commands/Installer.php"
] | [
{
"comment": "`updateEnvChoice()` previously preselected the existing env value via `default: env($key)`. Switching to `search()` removed this, which is a UX regression when re-running the installer (users must re-select locale/currency even if already set). Add the default back so behavior stays consistent wit... | true | ||
unopim/unopim | 491 | comment_to_fix | feat(installer): add type-to-search locale & currency prompts to CLI … | `updateEnvChoice()` previously preselected the existing env value via `default: env($key)`. Switching to `search()` removed this, which is a UX regression when re-running the installer (users must re-select locale/currency even if already set). Add the default back so behavior stays consistent with the old `select()` p... | 7ead419d533c36a39d184b3a7253c1379c9ff3b5 | 309f69ae089cdbb841e624eba9fa4b19ddfd6590 | diff --git a/packages/Webkul/Installer/src/Console/Commands/Installer.php b/packages/Webkul/Installer/src/Console/Commands/Installer.php
index 3b380ab01..b524eead4 100644
--- a/packages/Webkul/Installer/src/Console/Commands/Installer.php
+++ b/packages/Webkul/Installer/src/Console/Commands/Installer.php
@@ -13,8 +13,10... | [
"packages/Webkul/Installer/src/Console/Commands/Installer.php"
] | [
{
"comment": "`updateEnvChoice()` previously preselected the existing env value via `default: env($key)`. Switching to `search()` removed this, which is a UX regression when re-running the installer (users must re-select locale/currency even if already set). Add the default back so behavior stays consistent wit... | true | ||
unopim/unopim | 497 | issue_to_patch | Port 2.1 validation & permission-enforcement improvements to master | ## Description
Brings the input-validation and permission-enforcement improvements already on `2.1`
over to `master`, so the main line stays consistent. Each change mirrors its `2.1` PR.
### Included changes
- **Rich-text (TinyMCE) uploads** — restricted to an approved image set and stored under
randomised fil... | 2a35e26eacaded7ed5fcc7265b776d7ba565fd50 | c6bdf04b1968c9f9eb7f012023cf5660bd2a0a04 | diff --git a/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php b/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
index d87ba01a0..6c7550a52 100644
--- a/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
+++ b/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
@@ ... | [
"packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php",
"packages/Webkul/Admin/src/Http/Controllers/TinyMCEController.php",
"packages/Webkul/Admin/src/Http/Requests/AttributeOptionForm.php",
"packages/Webkul/Admin/src/Http/Requests/TinyMCEUploadRequest.php",
"packages/Webkul/Admin/src/Resources/v... | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php b/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php
new file mode 100644
index 000000000..8d2404532
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php
@@ -0,0 +1,26 @@
+<?php
+
+it('sh... | true | |
unopim/unopim | 498 | issue_to_patch | Improve upload validation, permission coverage, and datagrid sorting (2.0) | ## Summary
Set of correctness and robustness improvements for the 2.0 line:
- **Editor uploads** — TinyMCE image uploads are now validated against an
image allowlist (jpeg/png/jpg/gif/webp) with MIME/extension matching and
stored under randomized filenames.
- **Swatch uploads** — attribute swatch images are ... | daac27d792e4919c7d96a09b7dad0f3d1106b4d0 | c4dc92242e1706ade4df846f17632f892cfeb0cb | diff --git a/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php b/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
index 12dc1b027..89c728c54 100644
--- a/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
+++ b/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
@@ ... | [
"packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php",
"packages/Webkul/Admin/src/Http/Controllers/TinyMCEController.php",
"packages/Webkul/Admin/src/Http/Requests/AttributeOptionForm.php",
"packages/Webkul/Admin/src/Http/Requests/TinyMCEUploadRequest.php",
"packages/Webkul/Admin/src/Resources/v... | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php b/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php
new file mode 100644
index 000000000..8fca28187
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php
@@ -0,0 +1,26 @@
+<?php
+
+it('sh... | true | |
unopim/unopim | 500 | issue_to_patch | Show a 429 page instead of 500 on login lockout master | ## Summary
When admin login attempts exceed the throttle limit with `APP_DEBUG=false`,
the lockout response was rendered as the generic **500 Internal Server Error**
page instead of a proper **429 Too Many Requests** page.
- Add `JsonResponse::HTTP_TOO_MANY_REQUESTS` to the core exception handler's
handled sta... | 2a35e26eacaded7ed5fcc7265b776d7ba565fd50 | 1206af57d7ada29cb5803477b58d096462458f64 | diff --git a/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php b/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php
index 167a44c2c..8bd127c13 100755
--- a/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php
+++ b/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php
@@ -2287,6 +2287,11 @@
'de... | [
"packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php",
"packages/Webkul/Admin/src/Resources/lang/ca_ES/app.php",
"packages/Webkul/Admin/src/Resources/lang/da_DK/app.php",
"packages/Webkul/Admin/src/Resources/lang/de_DE/app.php",
"packages/Webkul/Admin/src/Resources/lang/en_AU/app.php",
"packages/Webkul... | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Security/LoginThrottleErrorPageTest.php b/packages/Webkul/Admin/tests/Feature/Security/LoginThrottleErrorPageTest.php
new file mode 100644
index 000000000..cef613245
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Security/LoginThrottleErrorPageTest.php
@@ -0,0 +... | true | |
unopim/unopim | 495 | issue_to_patch | Validate and sanitize attribute swatch image uploads [2.1] | ## Description
Swatch image uploads for attribute options are now handled consistently with the
rest of the app's media:
- Uploaded swatch images are **validated** against an image allowlist (real
extension + MIME match) via `FileOrImageValidValue`, so only genuine image files
(jpg/jpeg/png/gif/bmp/svg/webp)... | 6722f9c88e53565eff5c0069f5225f824958ef08 | facd5217f6806cec2e96d21cffb083dc7ffd60ff | diff --git a/packages/Webkul/Admin/src/Http/Requests/AttributeOptionForm.php b/packages/Webkul/Admin/src/Http/Requests/AttributeOptionForm.php
index db3f3fcfe..42d5f80f1 100644
--- a/packages/Webkul/Admin/src/Http/Requests/AttributeOptionForm.php
+++ b/packages/Webkul/Admin/src/Http/Requests/AttributeOptionForm.php
@@ ... | [
"packages/Webkul/Admin/src/Http/Requests/AttributeOptionForm.php",
"packages/Webkul/Admin/tests/Feature/Catalog/SwatchUploadSanitizerTest.php",
"packages/Webkul/Attribute/src/Repositories/AttributeOptionRepository.php"
] | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Catalog/SwatchUploadSanitizerTest.php b/packages/Webkul/Admin/tests/Feature/Catalog/SwatchUploadSanitizerTest.php
new file mode 100644
index 000000000..b1be5d040
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Catalog/SwatchUploadSanitizerTest.php
@@ -0,0 +1,49 @... | true | |
unopim/unopim | 499 | issue_to_patch | Fixed Login lockout (429) rendered as 500 Internal Server Error page when APP_DEBUG=false | ## Issue Reference
Fixes 500 Internal Server Error after 5 failed login attempts when APP_URL=false.
## Description
After 5 failed admin login attempts, the throttle middleware (`throttle:admin-login`)
throws a `ThrottleRequestsException` (HTTP 429). The custom exception handler
(`Webkul\Core\Exceptions\Handler:... | f0dabdf5753e65c9b83edad5b77a094d5440b64a | fb446a8dedbd980bceb713b6ca06cb4436eab5b9 | diff --git a/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php b/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php
index 7146cfd34..31257c354 100755
--- a/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php
+++ b/packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php
@@ -2352,6 +2352,11 @@
'de... | [
"packages/Webkul/Admin/src/Resources/lang/ar_AE/app.php",
"packages/Webkul/Admin/src/Resources/lang/ca_ES/app.php",
"packages/Webkul/Admin/src/Resources/lang/da_DK/app.php",
"packages/Webkul/Admin/src/Resources/lang/de_DE/app.php",
"packages/Webkul/Admin/src/Resources/lang/en_AU/app.php",
"packages/Webkul... | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Security/LoginThrottleErrorPageTest.php b/packages/Webkul/Admin/tests/Feature/Security/LoginThrottleErrorPageTest.php
new file mode 100644
index 000000000..cef613245
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Security/LoginThrottleErrorPageTest.php
@@ -0,0 +... | true | |
unopim/unopim | 494 | issue_to_patch | Fix authorization bypass on MagicAI prompt/system-prompt and AiAgent generate routes [2.1] | ## Issue Reference
Fixes Medium findings authorization bypass on MagicAI / AiAgent routes.
## Description
The fail-open Bouncer middleware only enforces a permission when a route name exists in
`acl.php`, and some state-changing routes were unmapped with no inline guard, so any
authenticated admin could reach th... | 0a51f8c23f4e5c2e085ab60fa2590600776b6cad | 1cc9eb22f9f3002164a551d1e04ef504ef921419 | diff --git a/packages/Webkul/AiAgent/Config/acl.php b/packages/Webkul/AiAgent/Config/acl.php
index ba724a7a7..b458fcc2e 100644
--- a/packages/Webkul/AiAgent/Config/acl.php
+++ b/packages/Webkul/AiAgent/Config/acl.php
@@ -58,6 +58,18 @@
'route' => 'admin.magic_ai.prompt.edit',
'sort' => 1,
],
+... | [
"packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php",
"packages/Webkul/Admin/tests/Feature/Acl/MagicAi/MagicAiPromptAclTest.php",
"packages/Webkul/AiAgent/Config/acl.php"
] | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php b/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php
new file mode 100644
index 000000000..8d2404532
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Acl/AiAgent/GenerateAclTest.php
@@ -0,0 +1,26 @@
+<?php
+
+it('sh... | true | |
unopim/unopim | 496 | issue_to_patch | Chore(deps): Bump guzzlehttp/psr7 from 2.9.0 to 2.11.0 | Bumps [guzzlehttp/psr7](https://github.com/guzzle/psr7) from 2.9.0 to 2.11.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/guzzle/psr7/releases">guzzlehttp/psr7's releases</a>.</em></p>
<blockquote>
<h2>2.11.0</h2>
<h3>Changed</h3>
<ul>
<li>Changed <code>Utils::modifyReques... | 3d28e67adbe8c34e380203b9a2c5863dc215aa0a | b8f7a56fc53483aa126a73eff97890e6bcaba611 | diff --git a/composer.lock b/composer.lock
index cba686a5d..84cdee38d 100644
--- a/composer.lock
+++ b/composer.lock
@@ -1871,23 +1871,25 @@
},
{
"name": "guzzlehttp/psr7",
- "version": "2.9.0",
+ "version": "2.11.0",
"source": {
"type":... | [
"composer.lock"
] | [] | true | ||
unopim/unopim | 489 | issue_to_patch | Fix stored XSS via channel name breaking out of HTML attribute (family completeness) |
## Issue Reference
Fixes High finding stored XSS (HTML-attribute breakout) on the Attribute Family completeness tab.
## Description
On the family **Completeness** tab the channel list was emitted raw into a single-quoted HTML attribute:
```blade
options='{!! $allChannels !!}'
```
`$allChannels` comes fr... | 74fc4d44038e0e0264b1a94083c7fd4f793a2d41 | 3be03e743d80945beaf4734d5aacc43391044b01 | diff --git a/packages/Webkul/Admin/src/Resources/views/catalog/families/completeness/index.blade.php b/packages/Webkul/Admin/src/Resources/views/catalog/families/completeness/index.blade.php
index a66e890d8..6970e844c 100644
--- a/packages/Webkul/Admin/src/Resources/views/catalog/families/completeness/index.blade.php
+... | [
"packages/Webkul/Admin/src/Resources/views/catalog/families/completeness/index.blade.php",
"packages/Webkul/Admin/tests/Feature/Catalog/FamilyCompletenessChannelXssTest.php"
] | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Catalog/FamilyCompletenessChannelXssTest.php b/packages/Webkul/Admin/tests/Feature/Catalog/FamilyCompletenessChannelXssTest.php
new file mode 100644
index 000000000..472a27da5
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Catalog/FamilyCompletenessChannelXssTes... | true | |
unopim/unopim | 479 | issue_to_patch | Fix MagicAI Platform authorization bypass: update & set-default reachable without permission |
## Issue Reference
Fixes High finding MagicAI Platform authorization bypass.
## Description
The Bouncer middleware enforces a permission only when the current route name exists in the merged `acl.php` map (`User/Http/Middleware/Bouncer.php:96`); unmapped routes fail open. `AiAgent/Config/acl.php` mapped `platfo... | ccffab76be5f476583221d63d40c1b5298791807 | d0318e1d75094c2a424fc833bc97ea06bcaf07b7 | diff --git a/packages/Webkul/AiAgent/Config/acl.php b/packages/Webkul/AiAgent/Config/acl.php
index 6a02d8a7a..ba724a7a7 100644
--- a/packages/Webkul/AiAgent/Config/acl.php
+++ b/packages/Webkul/AiAgent/Config/acl.php
@@ -29,6 +29,16 @@
'name' => 'ai-agent::app.acl.delete',
'route' => 'admin.magic_a... | [
"packages/Webkul/Admin/tests/Feature/MagicAI/MagicAIPlatformAclBypassTest.php",
"packages/Webkul/AiAgent/Config/acl.php"
] | [] | diff --git a/packages/Webkul/Admin/tests/Feature/MagicAI/MagicAIPlatformAclBypassTest.php b/packages/Webkul/Admin/tests/Feature/MagicAI/MagicAIPlatformAclBypassTest.php
new file mode 100644
index 000000000..2eb383328
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/MagicAI/MagicAIPlatformAclBypassTest.php
@@ -0,... | true | |
unopim/unopim | 477 | issue_to_patch | Fix fail-open API scope bypass on configurable-product routes |
## Issue Reference
Fixes High finding : API authorization bypass (fail-open scope), configurable products.
## Description
`ScopeMiddleware` enforced a scope only when the route name was mapped in `api-acl.php`; the configurable-product write routes (`store`/`update`/`patch`/`delete`, both the `configurable_prod... | 3631d1cfd29e41b740762e27602b85b13aeb2c11 | 5dad9049938f216c16b53ac24ab88c71c4100e14 | diff --git a/packages/Webkul/AdminApi/src/Config/api-acl.php b/packages/Webkul/AdminApi/src/Config/api-acl.php
index 6ca73b738..4b5a7ef39 100644
--- a/packages/Webkul/AdminApi/src/Config/api-acl.php
+++ b/packages/Webkul/AdminApi/src/Config/api-acl.php
@@ -86,6 +86,34 @@
],
// Configurable products — map to... | [
"packages/Webkul/AdminApi/src/Config/api-acl.php",
"packages/Webkul/AdminApi/src/Http/Middleware/ScopeMiddleware.php",
"packages/Webkul/AdminApi/tests/Feature/Acl/ConfigurableProductScopeBypassTest.php"
] | [] | diff --git a/packages/Webkul/AdminApi/tests/Feature/Acl/ConfigurableProductScopeBypassTest.php b/packages/Webkul/AdminApi/tests/Feature/Acl/ConfigurableProductScopeBypassTest.php
new file mode 100644
index 000000000..e92a5bdc0
--- /dev/null
+++ b/packages/Webkul/AdminApi/tests/Feature/Acl/ConfigurableProductScopeBypass... | true | |
unopim/unopim | 486 | issue_to_patch | Chore(deps-dev): Bump symfony/yaml from 7.4.6 to 7.4.13 | Bumps [symfony/yaml](https://github.com/symfony/yaml) from 7.4.6 to 7.4.13.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/symfony/yaml/releases">symfony/yaml's releases</a>.</em></p>
<blockquote>
<h2>v7.4.13</h2>
<p><strong>Changelog</strong> (<a href="https://github.com/sym... | c74ed7244f8f4294d68143598efc481e3bae2a3e | 08c7ae57cb98232d7755b3a5fc176219d48b1a13 | diff --git a/composer.lock b/composer.lock
index 9d0d0e6b4..cba686a5d 100644
--- a/composer.lock
+++ b/composer.lock
@@ -14635,16 +14635,16 @@
},
{
"name": "symfony/yaml",
- "version": "v7.4.6",
+ "version": "v7.4.13",
"source": {
"type"... | [
"composer.lock"
] | [] | true | ||
unopim/unopim | 483 | issue_to_patch | Chore(deps): Bump symfony/routing from 7.4.6 to 7.4.13 | Bumps [symfony/routing](https://github.com/symfony/routing) from 7.4.6 to 7.4.13.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/symfony/routing/releases">symfony/routing's releases</a>.</em></p>
<blockquote>
<h2>v7.4.13</h2>
<p><strong>Changelog</strong> (<a href="https://gi... | adc5afd8e5f2a1d22d92ca687b99a10289bdead7 | 8fd4199cbc83215a749ec789fcdd64ca57bd56b0 | diff --git a/composer.lock b/composer.lock
index 89d7db36b..9d0d0e6b4 100644
--- a/composer.lock
+++ b/composer.lock
@@ -9873,16 +9873,16 @@
},
{
"name": "symfony/routing",
- "version": "v7.4.6",
+ "version": "v7.4.13",
"source": {
"type... | [
"composer.lock"
] | [] | true | ||
unopim/unopim | 488 | issue_to_patch | [Security] Fix ORDER BY SQL injection via sort order in Product DataGrid | ## Issue Reference
Fixes High finding SQL injection (ORDER BY) in the Product DataGrid.
## Description
`ProductDataGrid::processRequestedSorting()` concatenated the request-supplied
sort direction (`sort[order]`) directly into a raw SQL string via `orderByRaw()`,
and the base DataGrid only validated that `sort`... | 675dfb5155a87f94c5ac861545a31b8f6ea44f5b | b2b0ff9171106a3ff9e806327bfc7091e8c2cbae | diff --git a/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php b/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
index d87ba01a0..6c7550a52 100644
--- a/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
+++ b/packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php
@@ ... | [
"packages/Webkul/Admin/src/DataGrids/Catalog/ProductDataGrid.php",
"packages/Webkul/Admin/tests/Feature/Catalog/ProductDataGridSortInjectionTest.php",
"tests/e2e-pw/tests/08-security/product-sort-injection.spec.js",
"tests/e2e-pw/utils/login.js"
] | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Catalog/ProductDataGridSortInjectionTest.php b/packages/Webkul/Admin/tests/Feature/Catalog/ProductDataGridSortInjectionTest.php
new file mode 100644
index 000000000..c26d83ffc
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Catalog/ProductDataGridSortInjectionTes... | true | |
unopim/unopim | 476 | issue_to_patch | [Security] Fix unrestricted file upload in TinyMCE endpoint (stored XSS / RCE) | ## Issue Reference
Fixes Critical finding: TinyMCE unrestricted file upload (stored XSS / RCE).
## Description
`POST /admin/tinymce/upload` stored any file on the public disk with the client-supplied name/extension and no validation, so any authenticated admin could upload `.html`/`.svg` (stored XSS) or `.php` (RC... | e6e35fb3d655c550d5a5aaac99306e4f3181e979 | 2ceea3e0685a41d94bbdb89168d4b3840f0e12ef | diff --git a/packages/Webkul/Admin/src/Http/Controllers/TinyMCEController.php b/packages/Webkul/Admin/src/Http/Controllers/TinyMCEController.php
index 7614a9175..c330604c9 100644
--- a/packages/Webkul/Admin/src/Http/Controllers/TinyMCEController.php
+++ b/packages/Webkul/Admin/src/Http/Controllers/TinyMCEController.php... | [
"packages/Webkul/Admin/src/Http/Controllers/TinyMCEController.php",
"packages/Webkul/Admin/src/Http/Requests/TinyMCEUploadRequest.php",
"packages/Webkul/Admin/src/Resources/views/components/layouts/header/index.blade.php",
"packages/Webkul/Admin/tests/Feature/Security/TinyMCEUploadValidationTest.php"
] | [] | diff --git a/packages/Webkul/Admin/tests/Feature/Security/TinyMCEUploadValidationTest.php b/packages/Webkul/Admin/tests/Feature/Security/TinyMCEUploadValidationTest.php
new file mode 100644
index 000000000..8d83200fc
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Security/TinyMCEUploadValidationTest.php
@@ -0,... | true | |
unopim/unopim | 480 | issue_to_patch | fix: make promo banner sticky to remove empty gap on scroll | ## Problem
On the admin dashboard, the cloud-hosting promo banner was not sticky like the UnoPim header. On scroll the banner scrolled away, leaving a **48px empty gap** above the header.
### Root cause
- Banner wrapper (`promo-bar.blade.php`) used `position: relative` (`relative z-0`) → it scrolls out of view.
- The... | 43f887ca992b887417d5d22489d3576dc411ae22 | 6c24a8840ade74db3d993c71df25bf5fabc79087 | diff --git a/packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php b/packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php
index 53dbbba60..c32d89292 100644
--- a/packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php
+++ b/packages/Webkul/Admin/src/Resources/view... | [
"packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php"
] | [
{
"comment": "Setting the promo bar to `z-[10002]` can put it on the same z-index as modal overlays (e.g. `components/modal/confirm.blade.php` uses `z-[10002]`). Because the promo bar is rendered after the modal markup in the DOM, it can paint above the overlay, leaving the promo bar clickable/visible while a m... | true | ||
unopim/unopim | 480 | comment_to_fix | fix: make promo banner sticky to remove empty gap on scroll | Setting the promo bar to `z-[10002]` can put it on the same z-index as modal overlays (e.g. `components/modal/confirm.blade.php` uses `z-[10002]`). Because the promo bar is rendered after the modal markup in the DOM, it can paint above the overlay, leaving the promo bar clickable/visible while a modal is open.
To keep... | 43f887ca992b887417d5d22489d3576dc411ae22 | 6c24a8840ade74db3d993c71df25bf5fabc79087 | diff --git a/packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php b/packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php
index 53dbbba60..c32d89292 100644
--- a/packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php
+++ b/packages/Webkul/Admin/src/Resources/view... | [
"packages/Webkul/Admin/src/Resources/views/components/promo-bar.blade.php"
] | [
{
"comment": "Setting the promo bar to `z-[10002]` can put it on the same z-index as modal overlays (e.g. `components/modal/confirm.blade.php` uses `z-[10002]`). Because the promo bar is rendered after the modal markup in the DOM, it can paint above the overlay, leaving the promo bar clickable/visible while a m... | true | ||
unopim/unopim | 485 | issue_to_patch | Chore(deps): Bump symfony/mailer from 7.4.6 to 7.4.12 | Bumps [symfony/mailer](https://github.com/symfony/mailer) from 7.4.6 to 7.4.12.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/symfony/mailer/releases">symfony/mailer's releases</a>.</em></p>
<blockquote>
<h2>v7.4.12</h2>
<p><strong>Changelog</strong> (<a href="https://github... | 495b7dd5ee8980639a9f5d26a17d33d934815860 | 3d67283c6e89b661d95545bfa7755e895f3139e3 | diff --git a/composer.lock b/composer.lock
index 37b7a3da8..89d7db36b 100644
--- a/composer.lock
+++ b/composer.lock
@@ -8638,16 +8638,16 @@
},
{
"name": "symfony/mailer",
- "version": "v7.4.6",
+ "version": "v7.4.12",
"source": {
"type"... | [
"composer.lock"
] | [] | true | ||
unopim/unopim | 487 | issue_to_patch | Chore(deps): Bump phpoffice/phpspreadsheet from 1.30.4 to 1.30.5 | Bumps [phpoffice/phpspreadsheet](https://github.com/PHPOffice/PhpSpreadsheet) from 1.30.4 to 1.30.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/PHPOffice/PhpSpreadsheet/releases">phpoffice/phpspreadsheet's releases</a>.</em></p>
<blockquote>
<h2>1.30.5</h2>
<h3>Security N... | dc6028a1c3da808cb07b6fd01fd25fb554bdbac6 | 76621dbd4339ee996e5332bbc879ff7e17606632 | diff --git a/composer.lock b/composer.lock
index fc5458c61..37b7a3da8 100644
--- a/composer.lock
+++ b/composer.lock
@@ -6113,16 +6113,16 @@
},
{
"name": "phpoffice/phpspreadsheet",
- "version": "1.30.4",
+ "version": "1.30.5",
"source": {
... | [
"composer.lock"
] | [] | true | ||
unopim/unopim | 482 | issue_to_patch | Chore(deps): Bump symfony/http-kernel from 7.4.7 to 7.4.13 | Bumps [symfony/http-kernel](https://github.com/symfony/http-kernel) from 7.4.7 to 7.4.13.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/symfony/http-kernel/releases">symfony/http-kernel's releases</a>.</em></p>
<blockquote>
<h2>v7.4.13</h2>
<p><strong>Changelog</strong> (<a ... | d6717534f124d98cf979abdddcaf60ff6f5db992 | a2eeddeb7758f5230ae3bd36e2551603b959665a | diff --git a/composer.lock b/composer.lock
index 183c1d46b..fc5458c61 100644
--- a/composer.lock
+++ b/composer.lock
@@ -7961,16 +7961,16 @@
},
{
"name": "symfony/deprecation-contracts",
- "version": "v3.6.0",
+ "version": "v3.7.0",
"source": {
... | [
"composer.lock"
] | [] | true | ||
unopim/unopim | 481 | issue_to_patch | Chore(deps): Bump symfony/polyfill-intl-idn from 1.33.0 to 1.38.1 | Bumps [symfony/polyfill-intl-idn](https://github.com/symfony/polyfill-intl-idn) from 1.33.0 to 1.38.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/symfony/polyfill-intl-idn/releases">symfony/polyfill-intl-idn's releases</a>.</em></p>
<blockquote>
<h2>v1.38.1</h2>
<p><stron... | 9177845974a0c58512c82149da4b1b1f30fda5e3 | bb5d16a28a35c2571983a63c5a2f87be92087c09 | diff --git a/composer.lock b/composer.lock
index 3b35fdd1d..183c1d46b 100644
--- a/composer.lock
+++ b/composer.lock
@@ -8968,16 +8968,16 @@
},
{
"name": "symfony/polyfill-intl-idn",
- "version": "v1.33.0",
+ "version": "v1.38.1",
"source": {
... | [
"composer.lock"
] | [] | true | ||
unopim/unopim | 474 | issue_to_patch | Feat/help and installer 2.1 | ## Issue Reference
<! Please mention issue #id or use a comma if your pull request solves multiple issues. -->
## Description
<! Please describe your changes in detail. -->
## How To Test This?
<! Please describe in detail how to test the changes made in this pull request. -->
## Documentation
- [ ] My pul... | 4aa15eb255a44a7412ef3d20c2b2984248702266 | 8d2d4b8dd2e45aa06c586c24e23f76ddf15bf9c1 | diff --git a/AGENTS.md b/AGENTS.md
deleted file mode 100644
index 5db3a5d6c..000000000
--- a/AGENTS.md
+++ /dev/null
@@ -1,193 +0,0 @@
-# Unopim Connector Development: Agent Instructions
-
-This repository contains reusable agent skills for building Unopim third-party
-connector modules (integrations with WooCommerce, ... | [
"AGENTS.md",
"CHANGELOG.md",
"CHANGE_IMPACT_CLASSIFICATION.md",
"Features.md",
"README.md",
"UPGRADE-0.1.x-0.2.0.md",
"UPGRADE-0.2.x-0.3.0.md",
"UPGRADE-1.0.0-2.0.0-beta.1.md",
"code-generation-instructions.md",
"code-review-instructions.md",
"packages/Webkul/Admin/src/Config/acl.php",
"packag... | [
{
"comment": "`resolveSelectedPackages()` uses `array_map(...$package['label']...)` for the `multiselect()` options, which drops the package keys. In interactive installs, `multiselect()` will therefore return labels (e.g. \"Shopify Connector\"), but the loop below expects keys (e.g. \"shopify\"), causing every... | diff --git a/packages/Webkul/Admin/tests/Feature/Help/CardComponentTest.php b/packages/Webkul/Admin/tests/Feature/Help/CardComponentTest.php
new file mode 100644
index 000000000..d949b8d54
--- /dev/null
+++ b/packages/Webkul/Admin/tests/Feature/Help/CardComponentTest.php
@@ -0,0 +1,33 @@
+<?php
+
+use Illuminate\Suppor... | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.