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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
RVC-Boss/GPT-SoVITS | 2,733 | issue_to_patch | fix: correct torch.randint exclusive upper bound | ## Bug
`torch.randint(0, 1, ...)` always returns 0 because PyTorch's `randint` upper bound is exclusive (unlike Python's `random.randint`). This makes the `lost_P` branch in `make_reject_y` unreachable.
## Fix
Changed upper bound from 1 to 2 so both 0 and 1 can be generated, making both code paths (`repeat_P` and `los... | 2d9193b0d3c0eae0c3a14d8c68a839f1bae157dc | 5503a5891b484f7907bf8fb91e74d65ce9280232 | diff --git a/GPT_SoVITS/AR/models/utils.py b/GPT_SoVITS/AR/models/utils.py
index cc4f24d89..f3b08a9f2 100644
--- a/GPT_SoVITS/AR/models/utils.py
+++ b/GPT_SoVITS/AR/models/utils.py
@@ -262,7 +262,7 @@ def lost_P(y):
reject_y = []
reject_y_lens = []
for b in range(bs):
- process_item_idx = torch.ra... | [
"GPT_SoVITS/AR/models/utils.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,753 | issue_to_patch | fix: 修复 TTS 音频后处理中的关键缺陷(int16 溢出 / padding_len=0 / 异常类型) | ## 问题描述
在 `GPT_SoVITS/TTS_infer_pack/TTS.py` 的 `audio_postprocess` 方法中发现三个 bug:
### 1. [CRITICAL] 音频超采样时 int16 双重转换导致整数溢出
第 1590 行 `audio = (audio * 32768).astype(np.int16)` 位于 `if super_sampling / else` 块之外,无条件执行。
当 `super_sampling=True` 时:
- 第 1581 行已将音频转为 int16(值域 -32768~32767)
- 第 1590 行再次乘以 32768 → 整... | 2d9193b0d3c0eae0c3a14d8c68a839f1bae157dc | c62f629aa722c5755047dc5b786e80003eff0ce9 | diff --git a/GPT_SoVITS/TTS_infer_pack/TTS.py b/GPT_SoVITS/TTS_infer_pack/TTS.py
index 9c8344b0b..667f1a4a2 100644
--- a/GPT_SoVITS/TTS_infer_pack/TTS.py
+++ b/GPT_SoVITS/TTS_infer_pack/TTS.py
@@ -499,7 +499,7 @@ def init_vits_weights(self, weights_path: str):
if if_lora_v3 == True and os.path.exists(path_so... | [
"GPT_SoVITS/TTS_infer_pack/TTS.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,758 | issue_to_patch | feat: improve error messages for better user-friendliness(改进错误消息的控制台输出以获得更佳的友好性) | Summary:
A small improvement to error handling in `Text2SemanticDataset` – adds file names and relevant values to error outputs, making issues easier to diagnose for non-developers, while retaining debugging traces.
Changes:
Replace `assert` for file existence with `FileNotFoundError` + path info.
Wrap miss... | 2d9193b0d3c0eae0c3a14d8c68a839f1bae157dc | cdfa2bc8592f269a7facd757e4dacd7f71da3f5e | diff --git a/GPT_SoVITS/AR/data/dataset.py b/GPT_SoVITS/AR/data/dataset.py
index 402483d91..87b284d42 100644
--- a/GPT_SoVITS/AR/data/dataset.py
+++ b/GPT_SoVITS/AR/data/dataset.py
@@ -67,8 +67,10 @@ def __init__(
)
) # "%s/3-bert"%exp_dir#bert_dir
self.path6 = semantic_path # "%s/6-nam... | [
"GPT_SoVITS/AR/data/dataset.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,755 | issue_to_patch | fix: 修复多个模块中的独立 bug(distrib / spec_utils / text_seg / funasr) | ## 问题描述
修复分散在 4 个不同模块中的独立 bug:
### 1. [HIGH] distrib.py sync_buffer 除以函数对象
`buffer.data /= world_size` 中 `world_size` 是函数(定义在第 21 行),
缺少 `()` 调用,导致 `TypeError`。同文件第 108 行的 `sync_grad` 已正确使用
`world_size()`,此处是遗漏。
### 2. [HIGH] spec_utils.py istft() 缺少 return 语句
函数计算了 `wave = np.asfortranarray([wave_left... | 2d9193b0d3c0eae0c3a14d8c68a839f1bae157dc | 7ed3a730ec2a32bcaa290f67d2e124c1fe210634 | diff --git a/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py b/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py
index fda70a498..cf28f3fbc 100644
--- a/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py
+++ b/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py
@@ -92,7 +92,7 @@ def cut0(inp):
if no... | [
"GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py",
"GPT_SoVITS/module/distrib.py",
"tools/asr/funasr_asr.py",
"tools/uvr5/lib/lib_v5/spec_utils.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,767 | issue_to_patch | [codex] Improve Windows single-GPU v3 LoRA training / 改进 Windows 单卡 v3 LoRA 训练流程 | ## Summary / 摘要
- avoid forcing `mp.spawn` and DDP for Windows single-GPU v3 LoRA training
- reduce DataLoader worker overhead for Windows single-GPU runs
- 避免在 Windows 单卡的 v3 LoRA 训练里强制使用 `mp.spawn` 和 DDP
- 降低 Windows 单卡场景下 DataLoader 的额外开销
## Related Issues / 相关问题
- related to #399 and #423
- these reports are high... | 2d9193b0d3c0eae0c3a14d8c68a839f1bae157dc | 43506a8a6910be8c4104e3d53015221977db43a6 | diff --git a/GPT_SoVITS/s2_train_v3_lora.py b/GPT_SoVITS/s2_train_v3_lora.py
index ff62ccfe1..f0b96fb81 100644
--- a/GPT_SoVITS/s2_train_v3_lora.py
+++ b/GPT_SoVITS/s2_train_v3_lora.py
@@ -55,6 +55,10 @@ def main():
n_gpus = torch.cuda.device_count()
else:
n_gpus = 1
+ if n_gpus <= 1:
+ ... | [
"GPT_SoVITS/s2_train_v3_lora.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,763 | issue_to_patch | 优化 G2PW 的推理输入构造与多音字处理流程,减少重复计算,降低长句场景下的推理开销 | 1. 优化 G2PW 批量处理流程
- 在 `GPT_SoVITS/text/chinese2.py` 中,将 `_g2p` 的 G2PW 调用改为批量处理
- 先收集所有待处理句子,统一调用 G2PW,再逐句取回结果
- 减少逐句调用带来的额外开销
2. 优化 ONNX 输入构造
- 在 `GPT_SoVITS/text/g2pw/dataset.py` 中为分词结果增加缓存
- 相同文本重复构造输入时,避免重复执行 tokenizer 和映射逻辑
- 预计算 `char2id` 与 `char_phoneme_masks`,减少重复生成成本
- 对变长输入进行统一 padding,兼容批处理输入
3. ... | 2d9193b0d3c0eae0c3a14d8c68a839f1bae157dc | b250e62402893b4f355d58599cd946150880ef7f | diff --git a/GPT_SoVITS/text/chinese2.py b/GPT_SoVITS/text/chinese2.py
index dcce0d962..acfebfe21 100644
--- a/GPT_SoVITS/text/chinese2.py
+++ b/GPT_SoVITS/text/chinese2.py
@@ -180,10 +180,15 @@ def _merge_erhua(initials: list[str], finals: list[str], word: str, pos: str) ->
def _g2p(segments):
phones_list = []
... | [
"GPT_SoVITS/text/chinese2.py",
"GPT_SoVITS/text/g2pw/dataset.py",
"GPT_SoVITS/text/g2pw/onnx_api.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,732 | issue_to_patch | Migrate to miniforge, add missing dependencies, update docker file, remove deprecated files | 9986880b3f13b3076989db17cc1a7227aa0186c9 | e4ae04edf87e2278b0ed380e98926e3ee471b22b | diff --git a/.github/workflows/docker-publish.yaml b/.github/workflows/docker-publish.yaml
index a00a0a77f..2f145b86e 100644
--- a/.github/workflows/docker-publish.yaml
+++ b/.github/workflows/docker-publish.yaml
@@ -21,6 +21,7 @@ jobs:
build-amd64:
needs: generate-meta
runs-on: ubuntu-22.04
+ environme... | [
".github/workflows/docker-publish.yaml",
".pre-commit-config.yaml",
"Docker/install_wrapper.sh",
"Docker/miniconda_install.sh",
"Docker/miniforge_install.sh",
"Dockerfile",
"docker_build.sh",
"gpt-sovits_kaggle.ipynb",
"install.ps1",
"install.sh"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,679 | issue_to_patch | Fix Modelscope | 92d2d337fd98673c126fd40727e067204e4523ae | 61f8d2e0b05de848146031ae29b9e95299d482c7 | diff --git a/tools/asr/fasterwhisper_asr.py b/tools/asr/fasterwhisper_asr.py
index 72a4b82a9..7e39fefba 100644
--- a/tools/asr/fasterwhisper_asr.py
+++ b/tools/asr/fasterwhisper_asr.py
@@ -52,7 +52,7 @@ def download_model(model_size: str):
if "distil" in model_size:
if "3.5" in model_size:
... | [
"tools/asr/fasterwhisper_asr.py"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,727 | issue_to_patch | fix Conda 条款未同意导致的构建失败 | c767f0b83b998e996a4d230d86da575a03f54a3f | 58b891b269ba9e466f1c73fbac22b73a224c8670 | diff --git a/Dockerfile b/Dockerfile
index 71bf6fa13..0413b0cfc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,9 +25,15 @@ ENV WORKFLOW=${WORKFLOW}
ARG TARGETPLATFORM
ENV TARGETPLATFORM=${TARGETPLATFORM}
+# 解决 Conda 条款未同意导致的构建失败
+ENV TERM=linux
+
+RUN conda tos accept --override-channels --channel https://repo.ana... | [
"Dockerfile"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 108 | issue_to_patch | Webui英文翻译/English translation for whole webui | 翻译完了,请配合之前pr的webui i18n fix 使用。如有不足请尽快指出 | 423705d71548f30fc42617e9bd10bcdaa368b69f | 827d0a337dfc00f81fa412ac6edbb01b75a35f5a | diff --git a/i18n/locale/en_US.json b/i18n/locale/en_US.json
index d5855052d..3357f01a7 100644
--- a/i18n/locale/en_US.json
+++ b/i18n/locale/en_US.json
@@ -1,4 +1,151 @@
{
+ "本软件以MIT协议开源, 作者不对软件具备任何控制力, 使用软件者、传播软件导出的声音者自负全责. 如不认可该条款, 则不能使用或引用软件包内任何代码和文件. 详见根目录LICENSE.": "This software is under MIT licence. The aut... | [
"i18n/locale/en_US.json"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,704 | issue_to_patch | 修复bug | 修复修复bug | 9080a967d5e64f4bfb5a9ea33afc7252136b0256 | bd43e3cd901012e2b53a470a239b96888d00720b | diff --git a/GPT_SoVITS/AR/models/t2s_model.py b/GPT_SoVITS/AR/models/t2s_model.py
index 486f85a3a..ac905f4b5 100644
--- a/GPT_SoVITS/AR/models/t2s_model.py
+++ b/GPT_SoVITS/AR/models/t2s_model.py
@@ -707,12 +707,11 @@ def infer_panel_batch_infer(
if idx == 0:
attn_mask = F.pad(attn_mask... | [
"GPT_SoVITS/AR/models/t2s_model.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,703 | issue_to_patch | 修复特定情况下的采样错误 | 修复由PR #2697 引起的特定情况下的采样错误
> Traceback (most recent call last):
File "/xxx/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TTS.py", line 1268, in run ... | 51df9f738428d77377e6788afc8c988b8c475f4f | a8ea20c91e6174748417e047d03896ee05eb2aae | diff --git a/GPT_SoVITS/AR/models/t2s_model.py b/GPT_SoVITS/AR/models/t2s_model.py
index 81aad1ec0..486f85a3a 100644
--- a/GPT_SoVITS/AR/models/t2s_model.py
+++ b/GPT_SoVITS/AR/models/t2s_model.py
@@ -712,7 +712,7 @@ def infer_panel_batch_infer(
attn_mask = F.pad(attn_mask, (0, 1), value=False)
... | [
"GPT_SoVITS/AR/models/t2s_model.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,697 | issue_to_patch | 对齐naive_infer的解码策略,防止吞句 | 对齐naive_infer的解码策略,防止吞句 | abe984395cb6d8ed2055f5496d0bb26007f30365 | 98126b4668278707c4518d6dc2bf16d0654beb2d | diff --git a/GPT_SoVITS/AR/models/t2s_model.py b/GPT_SoVITS/AR/models/t2s_model.py
index 0caadd048..81aad1ec0 100644
--- a/GPT_SoVITS/AR/models/t2s_model.py
+++ b/GPT_SoVITS/AR/models/t2s_model.py
@@ -711,6 +711,9 @@ def infer_panel_batch_infer(
else:
attn_mask = F.pad(attn_mask, (0, 1), v... | [
"GPT_SoVITS/AR/models/t2s_model.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,700 | issue_to_patch | Fix model file name in README instructions | bfca0f6b2dd9f846c76366be807f01a8873140a0 | e325ccdf94eeff51d2035b59da76340708b57194 | diff --git a/README.md b/README.md
index 86d50ea20..923f9a0a9 100644
--- a/README.md
+++ b/README.md
@@ -347,7 +347,7 @@ Use v4 from v1/v2/v3 environment:
2. Clone the latest codes from github.
-3. Download v4 pretrained models (gsv-v4-pretrained/s2v4.ckpt, and gsv-v4-pretrained/vocoder.pth) from [huggingface](htt... | [
"README.md"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,696 | issue_to_patch | 对齐topk默认采样参数 | 修改topk默认采样参数,将之与api.py和inference_webui.py对齐 | cc89c3660e55792d1fd5cc57597a8e661cca708e | 8e254837f0b986a0a0d6785a7893efd4de97eaaa | diff --git a/GPT_SoVITS/TTS_infer_pack/TTS.py b/GPT_SoVITS/TTS_infer_pack/TTS.py
index 2e1309782..9c8344b0b 100644
--- a/GPT_SoVITS/TTS_infer_pack/TTS.py
+++ b/GPT_SoVITS/TTS_infer_pack/TTS.py
@@ -1008,7 +1008,7 @@ def run(self, inputs: dict):
"aux_ref_audio_paths": [], # list.(optional) auxilia... | [
"GPT_SoVITS/TTS_infer_pack/TTS.py",
"GPT_SoVITS/inference_webui_fast.py",
"api_v2.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,689 | issue_to_patch | Bug in line 1335 in GPT_SoVITS/TTS_infer_pack /TTS.py
between 1326-1335 in GPT_SoVITS/TTS_infer_pack /TTS.py
# ## vits串行推理
for i, idx in enumerate(tqdm(idx_list)):
phones = batch_phones[i].unsqueeze(0).to(self.configs.device)
... | bug fix | fix #2688 | 9ec3a60f30d228719e5ec6cd6796c5b2d888dd1a | 7d01c69bc4d2ed2e6042a229a65dcfca8e69c017 | diff --git a/GPT_SoVITS/TTS_infer_pack/TTS.py b/GPT_SoVITS/TTS_infer_pack/TTS.py
index be3d3a193..2e1309782 100644
--- a/GPT_SoVITS/TTS_infer_pack/TTS.py
+++ b/GPT_SoVITS/TTS_infer_pack/TTS.py
@@ -1332,7 +1332,7 @@ def make_batch(batch_texts):
audio_fragment = self.vits_model.decode(
... | [
"GPT_SoVITS/TTS_infer_pack/TTS.py"
] | [] | true | |
RVC-Boss/GPT-SoVITS | 2,662 | issue_to_patch | 修复由于 default_batch_size(_s1) 变量为浮点型造成训练失败的问题 | 修复`default_batch_size parameter` (以及 `default_batch_size parameter_s1`) 为浮点型造成的训练失败报错
Fix training error caused by float type of `default_batch_size parameter` (and `default_batch_size parameter_s1`), otherwise you will encounter error like this:
```cmd
batch_size should be a positive integer value, but got batch_si... | 11aa78bd9bda8b53047cfcae03abf7ca94d27391 | c5d57d7afa3821cb3fa63692689120286cfdb9b1 | diff --git a/webui.py b/webui.py
index cf5d8a3a4..e38402060 100644
--- a/webui.py
+++ b/webui.py
@@ -117,8 +117,8 @@ def set_default():
gpu_info = "\n".join(gpu_infos)
if is_gpu_ok:
minmem = min(mem)
- default_batch_size = minmem // 2 if version not in v3v4set else minmem // 8
- def... | [
"webui.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,678 | issue_to_patch | 更友好的流模式选项 | 更友好的流模式选项,简化api_v2的流模式选项。
可选项有:0,1,2,3 or True/False
默认选项:True,等价于1,也等价于之前版本的流模式(分段返回)
1.音频质量:1 > 2 > 3
2.响应速度: 3 >> 2 > 1
| cb00840c4e06ba6cc27e811d3319461fcc4e2bd1 | 45e01197a396485c360bed1efffddc7b7a8f4af0 | diff --git a/api_v2.py b/api_v2.py
index 5df2da668..8c83bb0fc 100644
--- a/api_v2.py
+++ b/api_v2.py
@@ -41,11 +41,9 @@
"repetition_penalty": 1.35, # float. repetition penalty for T2S model.
"sample_steps": 32, # int. number of sampling steps for VITS model V3.
"super_sampling": False, #... | [
"api_v2.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,627 | issue_to_patch | Add ModelScope Snapshot Download For ASR | 11aa78bd9bda8b53047cfcae03abf7ca94d27391 | 495ef66177731ae1dfc81e2a1cad1758219d7af0 | diff --git a/requirements.txt b/requirements.txt
index 90e4957d8..578bb87c8 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -16,7 +16,7 @@ pypinyin
pyopenjtalk>=0.4.1
g2p_en
torchaudio
-modelscope==1.10.0
+modelscope
sentencepiece
transformers>=4.43,<=4.50
peft
@@ -39,7 +39,5 @@ x_transformers
torchmetri... | [
"requirements.txt",
"tools/asr/config.py",
"tools/asr/fasterwhisper_asr.py",
"tools/asr/funasr_asr.py",
"tools/i18n/locale/en_US.json",
"webui.py"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,577 | issue_to_patch | vq distributed training support | vq支持多GPU训练 | fdf794e31d1fd6f91c5cb4fbb0396094491a31ac | f54cbbe74316756b5ab75a9e14aafdfbd304da5b | diff --git a/GPT_SoVITS/module/core_vq.py b/GPT_SoVITS/module/core_vq.py
index b7dab3171..40745386f 100644
--- a/GPT_SoVITS/module/core_vq.py
+++ b/GPT_SoVITS/module/core_vq.py
@@ -37,6 +37,10 @@
import torch
from torch import nn
import torch.nn.functional as F
+import torch.distributed as dist
+
+from module.distri... | [
"GPT_SoVITS/module/core_vq.py",
"GPT_SoVITS/module/ddp_utils.py",
"GPT_SoVITS/module/distrib.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,469 | issue_to_patch | 尝试 stream infer | ~~请先不要merge(展示不出)~~
我自己本机上效果还可以,感兴趣的玩家可以弄到自己本机试试效果怎么样
要先新建一个 streaming 文件夹,代码里面没有兼容那种情况,或者把 output 路径换成别的文件夹。 | 7dec5f5bb0395a7ae752e2a15a246a62c03bbc8d | d313fbc740ed928e9451976e63d1cf7acdada5e1 | diff --git a/GPT_SoVITS/export_torch_script.py b/GPT_SoVITS/export_torch_script.py
index bf32ed6ec..c0cf03c2a 100644
--- a/GPT_SoVITS/export_torch_script.py
+++ b/GPT_SoVITS/export_torch_script.py
@@ -256,41 +256,21 @@ def process_prompt(self, x: torch.Tensor, attn_mask: torch.Tensor, padding_mask:
attn = F.... | [
"GPT_SoVITS/export_torch_script.py",
"GPT_SoVITS/stream_v2pro.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,636 | issue_to_patch | 全版本存在的读音错误麻烦大佬看一下
训练音频是白菜工厂大佬发的原神中文CV音频我这自己训练的,V4、V2系列都存在把“肿瘤坏死因子TNF阿尔法”读成“肿瘤坏死因子TNF minus 阿尔法”,为了避免读错我已经把希腊字母都换成中文了,推理时选用了“中英混合”,但是多个中文声优练出来的丹每次复现,麻烦大佬们有空改一下 | 为英文格式化引入加减乘除 | 有空格当数学符号,无空格当连接符。解决原本简单替换带来错误“minus”的问题
fix https://github.com/RVC-Boss/GPT-SoVITS/issues/2634 | 11aa78bd9bda8b53047cfcae03abf7ca94d27391 | 25156d24c202e7d3a7c2db4a7e52d030516375db | diff --git a/GPT_SoVITS/text/en_normalization/expend.py b/GPT_SoVITS/text/en_normalization/expend.py
index bbd607cd2..9f7c1d216 100644
--- a/GPT_SoVITS/text/en_normalization/expend.py
+++ b/GPT_SoVITS/text/en_normalization/expend.py
@@ -238,6 +238,46 @@ def _expand_number(m):
return _inflect.number_to_words(nu... | [
"GPT_SoVITS/text/en_normalization/expend.py"
] | [] | true | |
RVC-Boss/GPT-SoVITS | 2,671 | issue_to_patch | 更细粒度的流式推理模式 | 支持更细粒度的流式推理模式。
三种模式:
1.return_fragment:之前版本的streaming_mode,chunk长度就是分句的token长度,质量最好(和baseline一致),但响应速度最慢。
2.streaming_mode:相比return_fragment的chunk更细,但是首包长度不定(动态chunk长度),质量较好(比baseline咬字可能稍弱),响应速度一般。
3.streaming_mode+fixed_length_chunk:在streaming_mode的基础上开启fixed_length_chunk,chunk长度相对固定(可能小于设定的chunk长度),首包长度固定,质量一般... | 11aa78bd9bda8b53047cfcae03abf7ca94d27391 | 365760f7560cf14f528c1e2cc85c8027839f54c9 | diff --git a/GPT_SoVITS/AR/models/t2s_model.py b/GPT_SoVITS/AR/models/t2s_model.py
index 7196d6aba..0caadd048 100644
--- a/GPT_SoVITS/AR/models/t2s_model.py
+++ b/GPT_SoVITS/AR/models/t2s_model.py
@@ -794,7 +794,7 @@ def infer_panel_naive_batched(
y_list = []
idx_list = []
for i in range(len(... | [
"GPT_SoVITS/AR/models/t2s_model.py",
"GPT_SoVITS/TTS_infer_pack/TTS.py",
"GPT_SoVITS/module/models.py",
"api_v2.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,518 | issue_to_patch | Update Badge | fec515dcce2053164e6793a1c2ffe8fecc32d6ad | a5c01e44d01d38c60947ecb1ec425169d2b2d052 | diff --git a/README.md b/README.md
index 6cb19092f..be807a086 100644
--- a/README.md
+++ b/README.md
@@ -9,8 +9,11 @@ A Powerful Few-shot Voice Conversion and Text-to-Speech WebUI.<br><br>
<!-- img src="https://counter.seku.su/cmoe?name=gptsovits&theme=r34" /><br> -->
+[:
启动时检查本地是否有 Faster Whisper 模型.
"""
model_size_list = [
- "tiny",
- "tiny.en",
- "base",
- ... | [
"tools/asr/config.py",
"tools/asr/fasterwhisper_asr.py",
"webui.py"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,561 | issue_to_patch | Update WSL Rocm | 0be59c8043a12112934d474ff4cc65658d848e8f | ea47198b32d8cb6d9f7190310276e9b3345cec75 | diff --git a/install.sh b/install.sh
index a2fa751e7..7d80ec284 100644
--- a/install.sh
+++ b/install.sh
@@ -373,7 +373,7 @@ if [ "$USE_ROCM" = true ] && [ "$IS_WSL" = true ]; then
location=$(pip show torch | grep Location | awk -F ": " '{print $2}')
cd "${location}"/torch/lib/ || exit
rm libhsa-runtime6... | [
"install.sh"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,436 | issue_to_patch | Update Documentation | 本 PR 更新一些文档内容,重新排版之前的日志,并更新 V2pro 并补全之前 V4。
> [!Note]
> 详细信息 (DeepSeek V3 + 彩云小译 + 人工校对)
> - 完成前一个PR #2420 未完成的部分, 重新排版 2024.08 之前的中文日志.
> - 更新多语言 Readme (以英文版为标准), 补充了 V4 V2Pro 部分信息.
> - 更新并重新排版多语言 Changelog (以中文版为标准), 重新排版 2024.08 之前的日志并更新最新部分.
> - `inference_webui.py` 和 `inference_webui_fast` 文件拆分了一句i18n以正确... | d8124612fe33cd647fb1cc0b1e74cf6ac4ebd3da | 07d95fc6f2cdc755025d504e461922eb4ae93fca | diff --git a/GPT_SoVITS/inference_webui.py b/GPT_SoVITS/inference_webui.py
index 21ae83a9d..53f46101c 100644
--- a/GPT_SoVITS/inference_webui.py
+++ b/GPT_SoVITS/inference_webui.py
@@ -222,7 +222,7 @@ def change_sovits_weights(sovits_path, prompt_language=None, text_language=None)
is_exist = is_exist_s2gv3 if mode... | [
"GPT_SoVITS/inference_webui.py",
"GPT_SoVITS/inference_webui_fast.py",
"docs/cn/Changelog_CN.md",
"docs/cn/README.md",
"docs/en/Changelog_EN.md",
"docs/ja/Changelog_JA.md",
"docs/ja/README.md",
"docs/ko/Changelog_KO.md",
"docs/ko/README.md",
"docs/tr/Changelog_TR.md",
"docs/tr/README.md",
"too... | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,377 | issue_to_patch | Condition cache for DiT | Like DiffSinger, cache the condition result for backbone net on diffusion.
almost speed up 10% for sampling.

cache
,这可能对gpt的无参考音频模式产生影响。
#### 解决方式
- 更改x_mask的padding mask为left(不然的话x和y之间有gap),更改loss计算方式(考虑y[0]的情况)
#### 影响
- 直接合并该PR会影响现有预训练权重的微调。最直观的就是top3 acc下降了(毕竟预训练模型没有见过x->y[0]的情况)
- 观察到微调之后,无参考文本模式胡说的概率少了。
- 慎重考虑合并!
| b9211657d8dfe8cd46f6b6eb9cfc55d5989e6548 | c18c6638eddcfab37936c0e6ab6d003f64ab5020 | diff --git a/GPT_SoVITS/AR/models/t2s_model.py b/GPT_SoVITS/AR/models/t2s_model.py
index 4725b7a3b..7196d6aba 100644
--- a/GPT_SoVITS/AR/models/t2s_model.py
+++ b/GPT_SoVITS/AR/models/t2s_model.py
@@ -356,7 +356,7 @@ def make_input_data(self, x, x_lens, y, y_lens, bert_feature):
x = self.ar_text_embedding(x)
... | [
"GPT_SoVITS/AR/models/t2s_model.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,536 | issue_to_patch | 优化TTS_Config的代码逻辑 | - 优化TTS_Config的代码逻辑 | cefafee32cfc08f0f622ef460578b09485cc189e | 35eddf8d04b1b7075c562c86ca527ecf8351bebe | diff --git a/GPT_SoVITS/TTS_infer_pack/TTS.py b/GPT_SoVITS/TTS_infer_pack/TTS.py
index da6a6dfee..0c1d2484e 100644
--- a/GPT_SoVITS/TTS_infer_pack/TTS.py
+++ b/GPT_SoVITS/TTS_infer_pack/TTS.py
@@ -304,10 +304,10 @@ def __init__(self, configs: Union[dict, str] = None):
configs: dict = self._load_configs(sel... | [
"GPT_SoVITS/TTS_infer_pack/TTS.py",
"GPT_SoVITS/configs/tts_infer.yaml",
"GPT_SoVITS/inference_webui_fast.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,490 | issue_to_patch | 解决 TTS.py 无法真正识别版本 v2Pro、v2ProPlus 的问题 | 解决 TTS.py 无法真正识别版本 v2Pro、v2ProPlus 的问题。同时更新一版默认配置。 | 6df61f58e4d18d4c2ad9d1eddd6a1bd690034c23 | a2043af12b5dc2f4b424d156a9894479c96e96c4 | diff --git a/GPT_SoVITS/TTS_infer_pack/TTS.py b/GPT_SoVITS/TTS_infer_pack/TTS.py
index 795b55dde..98c103289 100644
--- a/GPT_SoVITS/TTS_infer_pack/TTS.py
+++ b/GPT_SoVITS/TTS_infer_pack/TTS.py
@@ -304,7 +304,7 @@ def __init__(self, configs: Union[dict, str] = None):
configs: dict = self._load_configs(self.... | [
"GPT_SoVITS/TTS_infer_pack/TTS.py",
"GPT_SoVITS/configs/tts_infer.yaml"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 1,568 | issue_to_patch | Fix typo | '.ps' to '.ps1' | f35f6e9b5e529f7bd3c6db36d163a97715ce5f24 | 6552e4282f7279bc1f9fecb5eec5e2e27e03c0bf | diff --git a/README.md b/README.md
index 0d38288ec..1fa36a79b 100644
--- a/README.md
+++ b/README.md
@@ -184,8 +184,8 @@ D:\GPT-SoVITS\xxx/xxx.wav|xxx|en|I like playing Genshin.
#### Integrated Package Users
- Double-click `go-webui.bat`or use `go-webui.ps`
- if you want to switch to V1,then double-click`go-webui... | [
"README.md",
"docs/cn/README.md",
"docs/ja/README.md",
"docs/ko/README.md",
"docs/tr/README.md"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,488 | issue_to_patch | 语言分割及格式化优化 | 1. 使纯中文/日文/韩文支持完整英文朗读,默认将数字独为纯中文/日文/韩文
2. 优化中文格式化中对 版本号 的格式化
| 90ebefa78fd544da36eebe0b2003620879c921b0 | 1c70ed6e21b12575380260557ae2ed9f987f1ee3 | diff --git a/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py b/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py
index 9a478d431..283e91c31 100644
--- a/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py
+++ b/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py
@@ -121,71 +121,67 @@ def segment_and_extract_feature_for_text(
def ... | [
"GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py",
"GPT_SoVITS/inference_webui.py",
"GPT_SoVITS/text/LangSegmenter/langsegmenter.py",
"GPT_SoVITS/text/chinese.py",
"GPT_SoVITS/text/chinese2.py",
"GPT_SoVITS/text/zh_normalization/num.py",
"GPT_SoVITS/text/zh_normalization/text_normlization.py",
"api.py"
... | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,489 | issue_to_patch | 确保ort provider可用 | 如题 | 4839e8214862808bea45b86c7c26ff643b0175ee | 2b85240c9c0ec821f639655ccf1354303cffd46a | diff --git a/GPT_SoVITS/text/g2pw/onnx_api.py b/GPT_SoVITS/text/g2pw/onnx_api.py
index a82681072..894937e17 100644
--- a/GPT_SoVITS/text/g2pw/onnx_api.py
+++ b/GPT_SoVITS/text/g2pw/onnx_api.py
@@ -93,13 +93,13 @@ def __init__(
sess_options.graph_optimization_level = onnxruntime.GraphOptimizationLevel.ORT_ENABL... | [
"GPT_SoVITS/text/g2pw/onnx_api.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,494 | issue_to_patch | Update export_torch_script.py 修复导出过程中精度不匹配 | Avoid dtype inconsistency when exporting.
This is the code I was using
```
python GPT_SoVITS/c.py \
--gpt_model /home/user1/workspace/bobchenyx/doubao/txdb-e15.ckpt \
--sovits_model /home/user1/workspace/bobchenyx/doubao/txdb_e12_s204.pth \
--ref_audio /home/user1/workspace/bobchenyx/doubao/douba... | 6df61f58e4d18d4c2ad9d1eddd6a1bd690034c23 | 4eaa5ae90b82754a2cb6e34218e919ea3d2799a9 | diff --git a/GPT_SoVITS/export_torch_script.py b/GPT_SoVITS/export_torch_script.py
index a3a482778..e4406f28d 100644
--- a/GPT_SoVITS/export_torch_script.py
+++ b/GPT_SoVITS/export_torch_script.py
@@ -474,6 +474,10 @@ def forward(
bert = bert.unsqueeze(0)
x = self.ar_text_embedding(all_phoneme_ids)
... | [
"GPT_SoVITS/export_torch_script.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,471 | issue_to_patch | Remove Debug Code | 6fdc67ca83418306f11e90b9139278313ac5c3e9 | b3dfce2ed99f889643f20929e0ca90ed6460bdc3 | diff --git a/install.sh b/install.sh
index e6112bd32..c3d208523 100644
--- a/install.sh
+++ b/install.sh
@@ -33,7 +33,7 @@ on_error() {
run_conda_quiet() {
local output
- output=$(conda install --yes --quiet "$@" 2>&1) || {
+ output=$(conda install --yes --quiet -c conda-forge "$@" 2>&1) || {
ech... | [
"install.sh"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,482 | issue_to_patch | Fix Issues with libstdcxx and conda sysroot | 4987df5a71696cb1333fc4c2108cc3491c4e64f5 | a7c10de107075184661b98f9a3ff68cf83f7d69a | diff --git a/install.sh b/install.sh
index c3d208523..ea8d2e2dd 100644
--- a/install.sh
+++ b/install.sh
@@ -170,7 +170,13 @@ if ! $USE_HF && ! $USE_HF_MIRROR && ! $USE_MODELSCOPE; then
exit 1
fi
-# 安装构建工具
+case "$(uname -m)" in
+ x86_64|amd64) SYSROOT_PKG="sysroot_linux-64>=2.28" ;;
+ aarch64|arm64) ... | [
"install.sh"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,487 | issue_to_patch | Add Windows Install Powershell Scripts | 37f5abfcb4a6553652235909db2e124b6f8ff3a5 | c78984ac6139147aaf7d07476a68bfa3be612077 | diff --git a/README.md b/README.md
index 978bb3caf..e67288ea1 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,14 @@ If you are a Windows user (tested with win>=10), you can [download the integrate
**Users in China can [download the package here](https://www.yuque.com/baicaigongchang1145haoyuangong/ib3g1e/dkxgpiy... | [
"README.md",
"docs/cn/README.md",
"docs/ko/README.md",
"docs/tr/README.md",
"install.ps1",
"install.sh"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,473 | issue_to_patch | Fixed syntax errors for api_v2.py | There are some syntax errors in api_v2.py | d46c069e52caa0d75b5d1119b7dd918322e7b590 | e224372a06c22cd02cdb134a93913c425b0011a2 | diff --git a/api_v2.py b/api_v2.py
index 870820743..5947df53d 100644
--- a/api_v2.py
+++ b/api_v2.py
@@ -33,14 +33,14 @@
"text_split_method": "cut0", # str. text split method, see text_segmentation_method.py for details.
"batch_size": 1, # int. batch size for inference
"batch_threshold": 0.... | [
"api_v2.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,464 | issue_to_patch | Fix bugs in `install.sh`, reduce log noise, and improve error reporting | This PR Includes the Following Updates to the `install.sh` Script:
- Fixed Several Bugs That Caused Incorrect Installation Behavior
- Suppressed Irrelevant or Verbose Output
- Added Stack Traces to Error Messages
- Support Dark Theme
- Add More Badges
- Format Code | 7dec5f5bb0395a7ae752e2a15a246a62c03bbc8d | fdc76535e62264c2abd8f81ad85cde2e6119e6b3 | diff --git a/GPT_SoVITS/AR/models/t2s_lightning_module.py b/GPT_SoVITS/AR/models/t2s_lightning_module.py
index 97f3a0840..fd357b945 100644
--- a/GPT_SoVITS/AR/models/t2s_lightning_module.py
+++ b/GPT_SoVITS/AR/models/t2s_lightning_module.py
@@ -28,7 +28,8 @@ def __init__(self, config, output_dir, is_train=True):
... | [
"GPT_SoVITS/AR/models/t2s_lightning_module.py",
"GPT_SoVITS/TTS_infer_pack/TTS.py",
"GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py",
"GPT_SoVITS/eres2net/ERes2Net.py",
"GPT_SoVITS/eres2net/ERes2NetV2.py",
"GPT_SoVITS/eres2net/ERes2Net_huge.py",
"GPT_SoVITS/eres2net/fusion.py",
"GPT_SoVITS/eres2net/kal... | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,460 | issue_to_patch | 优化 torch_script 导出模型 | * 之前总觉得导出之后推理的效果不太正常(尤其是在说英文的时候),仔细检查了一下 T2S 有些地方不太一致。(不知道是不是这个原因,先改一样总不会错)
* 总觉得导出之后推理慢,尝试缓存 hann_window (跟 python 推理一样)。 | 1a9b8854ee510b43a2a737f4e1278fb31a68d224 | 6feafac1df77bd8e3cbab92d6b29d626112b646f | diff --git a/GPT_SoVITS/export_torch_script.py b/GPT_SoVITS/export_torch_script.py
index 6a13c2d41..bf32ed6ec 100644
--- a/GPT_SoVITS/export_torch_script.py
+++ b/GPT_SoVITS/export_torch_script.py
@@ -103,7 +103,7 @@ def logits_to_probs(
@torch.jit.script
def multinomial_sample_one_no_sync(probs_sort):
# Does mu... | [
"GPT_SoVITS/export_torch_script.py",
"GPT_SoVITS/export_torch_script_v3v4.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,456 | issue_to_patch | export_torch_script.py support v2Pro & v2ProPlus | ed89a023378dabba9d4b6580235bb9742245816d | 5c91e66d2e99146d6650f9dcdb542ef6d70ac69c | diff --git a/GPT_SoVITS/export_torch_script.py b/GPT_SoVITS/export_torch_script.py
index b68dd38e6..6a13c2d41 100644
--- a/GPT_SoVITS/export_torch_script.py
+++ b/GPT_SoVITS/export_torch_script.py
@@ -1,6 +1,7 @@
# modified from https://github.com/yangdongchao/SoundStorm/blob/master/soundstorm/s1/AR/models/t2s_model.p... | [
"GPT_SoVITS/export_torch_script.py",
"GPT_SoVITS/module/models_onnx.py"
] | [] | true | |||
RVC-Boss/GPT-SoVITS | 2,449 | issue_to_patch | 用LangSegmenter分句的问题
<img width="1463" alt="Image" src="https://github.com/user-attachments/assets/8fa02080-eb16-4254-9ceb-662360eed9f8" /> | support v4 v2Pro v2ProPlus for api & optimize LangSegmenter |
1. Update api.py
2. Fix https://github.com/RVC-Boss/GPT-SoVITS/issues/2445 | 0d2f2734024ccd1c44aead7608214b924bffbebe | 29165eb02e7a95788eb2d7a32cda99874b36c254 | diff --git a/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py b/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py
index 426929f8b..f03183a1f 100644
--- a/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py
+++ b/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py
@@ -159,6 +159,10 @@ def get_phones_and_bert(self, text: str, language: str... | [
"GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py",
"GPT_SoVITS/inference_webui.py",
"api.py"
] | [] | true | |
RVC-Boss/GPT-SoVITS | 2,450 | issue_to_patch | 修复if self.is_half==True:wav=wav.half() AttributeError: 'NoneType' object has no attribute 'half' | ## 复现问题
使用api_v2,用非sovits v2pro模型推理后再切换至v2pro且用同一参考音频会引发下列错误
```
Traceback (most recent call last):
File "E:\Program Files (x86)\GPT-SoVITS\GPT_SoVITS\TTS_infer_pack\TTS.py", line 1233, in run
sv_emb.append(self.sv_model.compute_embedding3(audio_tensor))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^... | 0d2f2734024ccd1c44aead7608214b924bffbebe | f8d7f61ab9578b9d413b7cac9071e8a7db311180 | diff --git a/GPT_SoVITS/TTS_infer_pack/TTS.py b/GPT_SoVITS/TTS_infer_pack/TTS.py
index c35318011..be9360052 100644
--- a/GPT_SoVITS/TTS_infer_pack/TTS.py
+++ b/GPT_SoVITS/TTS_infer_pack/TTS.py
@@ -1073,7 +1073,7 @@ def run(self, inputs: dict):
###### setting reference audio and prompt text preprocessing ####... | [
"GPT_SoVITS/TTS_infer_pack/TTS.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,379 | issue_to_patch | Resolve Python Logger warnings | # PR Summary
This small PR resolves the deprecation warnings of the `logger` library:
```python
DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead
```
It also fixes a small typos along the way. | 13055fa56994e75a7152c176047c56c62bbeede4 | c5f8e0642f3d5a0cc7ba99462adb7029346d517f | diff --git a/GPT_SoVITS/AR/modules/optim.py b/GPT_SoVITS/AR/modules/optim.py
index aeebbee35..fb8784854 100644
--- a/GPT_SoVITS/AR/modules/optim.py
+++ b/GPT_SoVITS/AR/modules/optim.py
@@ -354,7 +354,7 @@ def _get_clipping_scale(self, group: dict, tuples: List[Tuple[Tensor, dict, List
if ans < 1.0:
... | [
"GPT_SoVITS/AR/modules/optim.py",
"GPT_SoVITS/utils.py",
"api.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,439 | issue_to_patch | fix configs error | 修复几个配置信息的错误 | 74e79ae6d68f11c268a542ac69d6b693a2866271 | 4b5a9284579f48a5e8969e6c827a980bca989a8b | diff --git a/GPT_SoVITS/inference_webui.py b/GPT_SoVITS/inference_webui.py
index 53f46101c..ce6cf9dee 100644
--- a/GPT_SoVITS/inference_webui.py
+++ b/GPT_SoVITS/inference_webui.py
@@ -214,7 +214,7 @@ def __delattr__(self, item):
def change_sovits_weights(sovits_path, prompt_language=None, text_language=None):
- ... | [
"GPT_SoVITS/inference_webui.py",
"GPT_SoVITS/inference_webui_fast.py",
"GPT_SoVITS/process_ckpt.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,061 | issue_to_patch | fix inference issue | 当前推理逻辑返回的semantic code漏掉了推理出的第一个idx,在句子较短的情况下可能出现崩溃 | c09af5ab7de2dd1d127364b44c101153a13f8fa4 | 0d11b60fb83c6e675acb13fb98422a090b18c77e | diff --git a/GPT_SoVITS/AR/models/t2s_model.py b/GPT_SoVITS/AR/models/t2s_model.py
index 8c8ea1acd..f8f65829a 100644
--- a/GPT_SoVITS/AR/models/t2s_model.py
+++ b/GPT_SoVITS/AR/models/t2s_model.py
@@ -677,7 +677,7 @@ def infer_panel_batch_infer(
# batch_indexs = torch.tensor(batch_idx_map, device=y... | [
"GPT_SoVITS/AR/models/t2s_model.py"
] | [] | true | ||
RVC-Boss/GPT-SoVITS | 2,432 | issue_to_patch | fix _merge_yi crash | 当前逻辑会在处理下述有多个"X一X"的pattern时由于索引越界崩溃,如:
[['一起来', 'm'], ['听一听', 'v'], ['唱一唱', 'v'], ['吧', 'y'], [',', 'x']] | dbf7702b54df57923ac8c341df2e8b4fcbc20108 | 0aa82e9201467dcda03c533534c93e961361c519 | diff --git a/GPT_SoVITS/text/tone_sandhi.py b/GPT_SoVITS/text/tone_sandhi.py
index 964ea385d..e9a279c64 100644
--- a/GPT_SoVITS/text/tone_sandhi.py
+++ b/GPT_SoVITS/text/tone_sandhi.py
@@ -650,32 +650,29 @@ def _merge_bu(self, seg: List[Tuple[str, str]]) -> List[Tuple[str, str]]:
# output seg: [['听一听', 'v']]
... | [
"GPT_SoVITS/text/tone_sandhi.py"
] | [] | true | ||
ReactiveX/RxAndroid | 630 | issue_to_patch | Bump gradle/actions from 5 to 6 | Bumps [gradle/actions](https://github.com/gradle/actions) from 5 to 6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/actions/releases">gradle/actions's releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h2>Summary</h2>
<ul>
<li>Caching functionality of 'gradle-actio... | d7bd9b74f405f2030a086d754190db430087c24f | 0675600d2d82e85ecba790edc6689d9ed99b1112 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 6bc805d8..e7f6e363 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- - uses: gradle/actions/wrapper-validation@v5
+ - uses: gradl... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 628 | issue_to_patch | Bump actions/checkout from 5 to 6 | Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update README to includ... | cb409ccc9e600b191966f9f3bbb5b19b2f387aa9 | e0d780f43f849c545b6436ca1a57fc42bf57d40a | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 956e04e2..6bc805d8 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -13,7 +13,7 @@ jobs:
runs-on: macos-latest
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- u... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 626 | issue_to_patch | Bump gradle/actions from 4 to 5 | Bumps [gradle/actions](https://github.com/gradle/actions) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/actions/releases">gradle/actions's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>What's Changed</h2>
<h3>Breaking Changes</h3>
<ul>
<li>Upgra... | 64591ea7834c27f061d310c9598ca9e967530179 | e0a3ce28461928e0657d1126e4e2773550f6c748 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 9e1b3f5a..956e04e2 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- - uses: gradle/actions/wrapper-validation@v4
+ - uses: gradl... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 624 | issue_to_patch | Bump actions/setup-java from 4 to 5 | Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-java/releases">actions/setup-java's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>What's Changed</h2>
<h3>Breaking Changes</h3... | d4f5d3f2015dce543594762ac4d3207db1881244 | 5559c5b813bb5a4907142a8222598bfa8d9548d9 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 12c9a4fd..9e1b3f5a 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v5
- uses: gradle/actions/wrapper-validation@v4
- - uses: actions/setup-jav... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 623 | issue_to_patch | Bump actions/checkout from 4 to 5 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update actions checkout... | 1873ab030b083e1353f07f68b82d470331c5feba | 03bb02979dc73deb7f40b6b7e8d501637fe6203c | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 8a20abf2..12c9a4fd 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -13,7 +13,7 @@ jobs:
runs-on: macos-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- u... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 596 | issue_to_patch | Add the test | 2100cf928ebe1c7a8c837f216d46405372c4b635 | 1e79bedb9cd593badb2cae466b123bbe6f798e7f | [
"rxandroid/src/test/java/io/reactivex/rxjava3/android/plugins/RxAndroidPluginsNoRobolectricTest.java"
] | [] | diff --git a/rxandroid/src/test/java/io/reactivex/rxjava3/android/plugins/RxAndroidPluginsNoRobolectricTest.java b/rxandroid/src/test/java/io/reactivex/rxjava3/android/plugins/RxAndroidPluginsNoRobolectricTest.java
new file mode 100644
index 00000000..ff2a55ee
--- /dev/null
+++ b/rxandroid/src/test/java/io/reactivex/rx... | true | |||
ReactiveX/RxAndroid | 620 | issue_to_patch | Bump gradle/actions from 3 to 4 | Bumps [gradle/actions](https://github.com/gradle/actions) from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/actions/releases">gradle/actions's releases</a>.</em></p>
<blockquote>
<h2>v4.0.0-rc.1</h2>
<p>First release candidate for <code>v4</code> of the <code... | c561bf7e7113e3a069cc5778e89c043b9406df7e | 9353e6e789222e3d3fb2dfedb0773ecb717773bd | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index f443d815..8a20abf2 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - uses: gradle/actions/wrapper-validation@v3
+ - uses: gradl... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 619 | issue_to_patch | Bump gradle/wrapper-validation-action from 2 to 3 | Bumps [gradle/wrapper-validation-action](https://github.com/gradle/wrapper-validation-action) from 2 to 3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/wrapper-validation-action/releases">gradle/wrapper-validation-action's releases</a>.</em></p>
<blockquote>
<h2>v2.1... | eae97e9fe63ebecc2bb3ffda0fc317d7b16b0f4b | ff24094c38d886322962def0e5d145eabe39c30a | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 0807b567..f443d815 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - uses: gradle/wrapper-validation-action@v2
+ - uses: gradle... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 618 | issue_to_patch | Bump gradle/wrapper-validation-action from 2.0.0 to 2.0.1 | Bumps [gradle/wrapper-validation-action](https://github.com/gradle/wrapper-validation-action) from 2.0.0 to 2.0.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/wrapper-validation-action/releases">gradle/wrapper-validation-action's releases</a>.</em></p>
<blockquote>
... | 99d18b0092b492adaac7417450219f4b5b8e8a3c | 99b86a467e15bf07c3fa2e7e62c5d2fbe187b2b2 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 1e7ee8dd..0807b567 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - uses: gradle/wrapper-validation-action@v2.0.0
+ - uses: gr... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 617 | issue_to_patch | Bump gradle/wrapper-validation-action from 1.1.0 to 2.0.0 | Bumps [gradle/wrapper-validation-action](https://github.com/gradle/wrapper-validation-action) from 1.1.0 to 2.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/wrapper-validation-action/releases">gradle/wrapper-validation-action's releases</a>.</em></p>
<blockquote>
... | 3d9269a68ff099244d038858a95459a06a08e0be | abc975df3964e397c902c0ce58564642d2d2e4d2 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 0687ffb7..1e7ee8dd 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - uses: gradle/wrapper-validation-action@v1.1.0
+ - uses: gr... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 615 | issue_to_patch | Bump actions/setup-java from 3 to 4 | Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-java/releases">actions/setup-java's releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In the scope of this ... | 242029495758cd20a47bfe7bd700edcac68093c2 | b603de08e93ca80e34336e51d02a6d8bdcc0c2a1 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index cdc6d56a..0687ffb7 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1.1.0
- - uses: actions/setup-... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 613 | issue_to_patch | Bump actions/checkout from 3 to 4 | Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update default runtime ... | 6706718987858b87dd22bfe2d7f23617d88d599a | 999ea3a688b9be9481fc70d76b7f6c142f2c8436 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 38351e1f..cdc6d56a 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -13,7 +13,7 @@ jobs:
runs-on: macos-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- u... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 612 | issue_to_patch | Bump gradle/wrapper-validation-action from 1.0.6 to 1.1.0 | Bumps [gradle/wrapper-validation-action](https://github.com/gradle/wrapper-validation-action) from 1.0.6 to 1.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/wrapper-validation-action/releases">gradle/wrapper-validation-action's releases</a>.</em></p>
<blockquote>
... | ceed96dfda31abafee336ec3aee9f239780e2fcf | 60095e8e703624e5a203f99324035fa09263c1bc | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 344da7a4..38351e1f 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- - uses: gradle/wrapper-validation-action@v1.0.6
+ - uses: gr... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 590 | issue_to_patch | issue with the indirect dependency component reactive-stream License
Hi RxAndroid is dependent on Rxjava & Rxjava is dependent on reactive-stream which has CC-1.0 license that has the issue https://github.com/reactive-streams/reactive-streams-jvm/issues/536
That makes usage of RxAndroid problematic.
reactive-str... | Bump up rxjava version from 3.1.0 to 3.1.5 | Rxjava 3.1.5 uses reactive-stream [1.0.4](https://github.com/ReactiveX/RxJava/blob/v3.1.5/build.gradle#L16)
Closes https://github.com/ReactiveX/RxAndroid/issues/584 | bbb97e095f63a746d2b9381a4dfa1aaa4c590c8f | 09b9614821ab97340a4d041fb36770b16c9235a1 | diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle
index 7b8a0228..e8bbfa90 100644
--- a/rxandroid/build.gradle
+++ b/rxandroid/build.gradle
@@ -36,7 +36,7 @@ android {
}
dependencies {
- api 'io.reactivex.rxjava3:rxjava:3.1.0'
+ api 'io.reactivex.rxjava3:rxjava:3.1.5'
testImplementation 'jun... | [
"rxandroid/build.gradle"
] | [
{
"comment": "~✓",
"path": "rxandroid/build.gradle",
"hunk": "@@ -36,7 +36,7 @@ android {\n }\n \n dependencies {\n- api 'io.reactivex.rxjava3:rxjava:3.1.0'",
"resolving_sha": "09b9614821ab97340a4d041fb36770b16c9235a1",
"resolving_diff": "diff --git a/rxandroid/build.gradle b/rxandroid/build.... | true | |
ReactiveX/RxAndroid | 606 | issue_to_patch | Bump gradle/wrapper-validation-action from 1.0.5 to 1.0.6 | Bumps [gradle/wrapper-validation-action](https://github.com/gradle/wrapper-validation-action) from 1.0.5 to 1.0.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gradle/wrapper-validation-action/releases">gradle/wrapper-validation-action's releases</a>.</em></p>
<blockquote>
... | 3498cd7d544cce6223a19a47a588e44e71a7440a | 51de506303763f531843567ff8c8fb16b61a1131 | diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 0b1c97d9..344da7a4 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- - uses: gradle/wrapper-validation-action@v1.0.5
+ - uses: gr... | [
".github/workflows/build.yaml",
".github/workflows/manual_drop.yaml",
".github/workflows/release.yaml"
] | [] | true | ||
ReactiveX/RxAndroid | 595 | issue_to_patch | RxAndroid 3.0.1 NPE in JVM unit tests
Setup: JVM based unit tests with `RxAndroidPlugins.setMainThreadSchedulerHandler { TestScheduler() }`. Code under test containing e.g. `observeOn(AndroidSchedulers.mainThread())`.
Working fine on RxAndroid 3.0.0.
Updating to RxAndroid 3.0.1 failing with NPE:
```
java.lan... | Skip null check when creating main scheduler | This is a tradeoff to allow replacing the main scheduler in tests without needing Robolectric.
Closes #594 | 22638e19cd817d6ad18f7dd60f50b1a73b574cf0 | 44db9274ff6c20f4e1ec5e3bafbff1580258b7d1 | diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle
index d7315d44..69557a67 100644
--- a/rxandroid/build.gradle
+++ b/rxandroid/build.gradle
@@ -12,6 +12,10 @@ android {
sourceCompatibility rootProject.ext.sourceCompatibility
targetCompatibility rootProject.ext.sourceCompatibility
}
+
+... | [
"rxandroid/build.gradle",
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java"
] | [] | true | |
ReactiveX/RxAndroid | 592 | issue_to_patch | Add Sonatype secrets to repo for GitHub Actions usage
Alternatively, promote the ones in use for RxJava to organization secrets. | Overhaul build | Just enough to get GitHub Actions working and somewhat modernizing the rest. Didn't do too much because this project is not actively developed.
Closes #591 | 205ea5a411dac8b851b58417ec34c41c61f7aeac | f24df179a1c3a7e85a37453393d0113a4f7e558a | diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
new file mode 100644
index 00000000..81bae9ac
--- /dev/null
+++ b/.github/dependabot.yaml
@@ -0,0 +1,7 @@
+version: 2
+
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "daily"
diff --git a/.github/workf... | [
".github/dependabot.yaml",
".github/workflows/build.yaml",
".github/workflows/gradle-wrapper-validation.yml",
".github/workflows/release.yaml",
".gitignore",
".travis.yml",
"build.gradle",
"gradle.properties",
"gradle/artifacts.gradle",
"gradle/buildViaTravis.sh",
"gradlew.bat",
"rxandroid/bui... | [
{
"comment": "One test fails on Linux but passes on Mac. Don't know why. Don't really care.",
"path": ".github/workflows/build.yaml",
"hunk": "@@ -0,0 +1,30 @@\n+name: build\n+\n+on:\n+ pull_request: {}\n+ push:\n+ branches:\n+ - '**'\n+ tags-ignore:\n+ - '**'\n+\n+jobs:\n+ build:\n+ ... | diff --git a/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest.java b/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest.java
index ce0af5f1..73cd0b3a 100644
--- a/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest... | true |
ReactiveX/RxAndroid | 593 | issue_to_patch | Release build needs to close and release its Sonatype repo | 628a98dcba1cebcb633637b1adb57906ecf23b6f | 9d75f28ee27ffe341c49eeab6bde31f6462342b7 | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index ec930f17..43c772a5 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -18,7 +18,7 @@ jobs:
distribution: 'zulu'
java-version: 8
- - run: ./gradlew publish
+ - run: ./grad... | [
".github/workflows/release.yaml"
] | [] | true | |||
ReactiveX/RxAndroid | 442 | issue_to_patch | HandlerScheduler.scheduleDirect supports async option?
RxAndroid support async option v2.1.0. now, it support only in `HandlerWorker.schedule`.
I think, `HandlerScheduler.scheduleDirect` should be support async option.
Because, some RxJava operator use `Scheduler.scheduleDirect` method (ex, Maybe.observeOn)
(i ... | considers async option in HandlerScheduler.scheduleDirect | close https://github.com/ReactiveX/RxAndroid/issues/441
| b315cd17b5fab0f1e6bbeaa91ff325bb06d7453f | f642582fd4e028ecb64789c20c3c5df016e5960f | diff --git a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java b/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
index a2170a1c..33d06708 100644
--- a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
+++ b/rxandroid/src/main/java/io/... | [
"rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java",
"rxandroid/src/test/java/io/reactivex/android/schedulers/HandlerSchedulerTest.java"
] | [] | diff --git a/rxandroid/src/test/java/io/reactivex/android/schedulers/HandlerSchedulerTest.java b/rxandroid/src/test/java/io/reactivex/android/schedulers/HandlerSchedulerTest.java
index 7ff6f670..693691fe 100644
--- a/rxandroid/src/test/java/io/reactivex/android/schedulers/HandlerSchedulerTest.java
+++ b/rxandroid/src/t... | true |
ReactiveX/RxAndroid | 582 | issue_to_patch | Update gradle 6.9.1 & Add configs | 7d33609908fefffb48ce8c972ae96d0403e04699 | a2ecde5fb9f433a36e66fde6c47efaaa80fe4730 | diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..fcea58f4
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,11 @@
+root = true
+
+[*]
+charset = utf-8
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[{*.yml,*.yaml}]
+indent_size = 2
diff ... | [
".editorconfig",
".gitattributes",
"gradle/wrapper/gradle-wrapper.jar",
"gradle/wrapper/gradle-wrapper.properties",
"gradlew",
"gradlew.bat"
] | [] | true | |||
ReactiveX/RxAndroid | 581 | issue_to_patch | dependencies update and replace deprecated method in tests | - update `RxJava` to 3.1.0
- update `junit` to 4.13.2
- update wrapper to 6.8.3
- update AGP to 4.2.2
- set `compileSdk` and `targetSdk` to 31
- remove unused import in tests
- replace deprecated method in unit tests
- remove `idleMainLooper` in `HandlerSchedulerTest` due to update has been released | f1ddbcb637a2bc3f873db204f3af9d8b01688550 | 64016a6964381c741f3590de8e050428dd7ec10e | diff --git a/build.gradle b/build.gradle
index 1e4e1f0d..d94b3aad 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:4.1.1'
+ classpath 'com.android.tools.build:gradle:4.2.2'
classpat... | [
"build.gradle",
"gradle/wrapper/gradle-wrapper.properties",
"rxandroid/build.gradle",
"rxandroid/src/test/java/io/reactivex/rxjava3/android/MainThreadDisposableTest.java",
"rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest.java",
"rxandroid/src/test/java/io/reactivex/rx... | [
{
"comment": "Can you static import this to reduce changes?",
"path": "rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/HandlerSchedulerTest.java",
"hunk": "@@ -145,7 +144,7 @@ public void directScheduleOnceWithDelayPostsWithDelay() {\n runUiThreadTasks();\n assertEquals(0... | diff --git a/rxandroid/src/test/java/io/reactivex/rxjava3/android/MainThreadDisposableTest.java b/rxandroid/src/test/java/io/reactivex/rxjava3/android/MainThreadDisposableTest.java
index 3f57921d..c139cd03 100644
--- a/rxandroid/src/test/java/io/reactivex/rxjava3/android/MainThreadDisposableTest.java
+++ b/rxandroid/sr... | true | |
ReactiveX/RxAndroid | 581 | comment_to_fix | dependencies update and replace deprecated method in tests | Can you static import this to reduce changes? | f1ddbcb637a2bc3f873db204f3af9d8b01688550 | 64016a6964381c741f3590de8e050428dd7ec10e | diff --git a/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/HandlerSchedulerTest.java b/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/HandlerSchedulerTest.java
index 7fcafa32..1845d78c 100644
--- a/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/HandlerSchedulerTest.ja... | [
"rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/HandlerSchedulerTest.java"
] | [
{
"comment": "Can you static import this to reduce changes?",
"path": "rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/HandlerSchedulerTest.java",
"hunk": "@@ -145,7 +144,7 @@ public void directScheduleOnceWithDelayPostsWithDelay() {\n runUiThreadTasks();\n assertEquals(0... | true | ||
ReactiveX/RxAndroid | 577 | issue_to_patch | Enable rxAndroid usage on old Android versions | Where the Message.setAsynchronous was not available | f1ddbcb637a2bc3f873db204f3af9d8b01688550 | 9bdef2f101675e600b8ae9306e1179e3bbc6518e | diff --git a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java b/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
index 63c72227..012437e7 100644
--- a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
+++ b/... | [
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java"
] | [] | true | ||
ReactiveX/RxAndroid | 576 | issue_to_patch | Update gradle | - update dependencies
- update root `build.gradle` | d32ba3946fe3ab1630914ffa9aef7d81c52a9096 | 30ab195c28e413d7bf5f5fab20269b11221e1e1c | diff --git a/build.gradle b/build.gradle
index 928e11fd..1e4e1f0d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,18 +1,18 @@
-subprojects {
- buildscript {
- repositories {
- google()
- mavenCentral()
- jcenter()
- }
- dependencies {
- classpath 'c... | [
"build.gradle",
"gradle.properties",
"gradle/wrapper/gradle-wrapper.properties",
"rxandroid/build.gradle",
"sample-app/build.gradle"
] | [
{
"comment": "```suggestion\r\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-6.7.1-bin.zip\r\n```",
"path": "gradle/wrapper/gradle-wrapper.properties",
"hunk": "@@ -1,5 +1,5 @@\n distributionBase=GRADLE_USER_HOME\n distributionPath=wrapper/dists\n-distributionUrl=https\\://services.... | true | ||
ReactiveX/RxAndroid | 576 | comment_to_fix | Update gradle | ```suggestion
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
``` | d32ba3946fe3ab1630914ffa9aef7d81c52a9096 | 30ab195c28e413d7bf5f5fab20269b11221e1e1c | diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 1b16c34a..4d9ca164 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionU... | [
"gradle/wrapper/gradle-wrapper.properties"
] | [
{
"comment": "```suggestion\r\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-6.7.1-bin.zip\r\n```",
"path": "gradle/wrapper/gradle-wrapper.properties",
"hunk": "@@ -1,5 +1,5 @@\n distributionBase=GRADLE_USER_HOME\n distributionPath=wrapper/dists\n-distributionUrl=https\\://services.... | true | ||
ReactiveX/RxAndroid | 576 | comment_to_fix | Update gradle | ```suggestion
``` | d32ba3946fe3ab1630914ffa9aef7d81c52a9096 | 30ab195c28e413d7bf5f5fab20269b11221e1e1c | diff --git a/gradle.properties b/gradle.properties
index d3e87443..03331281 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,3 +1,7 @@
+android.enableJetifier=false
+android.useAndroidX=true
+org.gradle.jvmargs=-Xmx2048m
+
GROUP=io.reactivex.rxjava3
VERSION_NAME=3.0.1
POM_NAME=RxAndroid
| [
"gradle.properties"
] | [
{
"comment": "```suggestion\r\n```",
"path": "gradle.properties",
"hunk": "@@ -1,3 +1,8 @@\n+android.enableJetifier=false\n+android.useAndroidX=true\n+org.gradle.jvmargs=-Xmx2048m\n+org.gradle.parallel=true",
"resolving_sha": "30ab195c28e413d7bf5f5fab20269b11221e1e1c",
"resolving_diff": "diff --... | true | ||
ReactiveX/RxAndroid | 566 | issue_to_patch | Update README.md | 802ef4b4b712a088183fac80e53116b9fa5f197c | 0d63b37fcff117f79615ac9a9aae9790f4f22e2e | diff --git a/README.md b/README.md
index 7a6beff5..97c04e13 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ dependencies {
// explicitly depend on RxJava's latest version for bug fixes and new features.
// (see https://github.com/ReactiveX/RxJava/releases for latest 3.x.x version)
implementation... | [
"README.md"
] | [] | true | |||
ReactiveX/RxAndroid | 570 | issue_to_patch | remove unused import | 0eb3973ae98c7ff96ed17f0ac513e33acc9ab011 | 52d88da390e625e7d2387b11a5ae47ff7ab0a5cf | diff --git a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java b/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
index cc62d3a7..63c72227 100644
--- a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
+++ b/... | [
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java"
] | [] | true | |||
ReactiveX/RxAndroid | 568 | issue_to_patch | Updating RxJava version: 3.0.0 -> 3.0.3 | In this PR, I'm updating RxJava dependency version from `3.0.0` to `3.0.3` (the latest one at this moment). | cb60aefece9b8ed328d8b4047f3708d7ca0153ec | 0020ed1165f9e8ef8d27ec8fe2bea62efd76fc13 | diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle
index 4beb3645..5fd7e827 100644
--- a/rxandroid/build.gradle
+++ b/rxandroid/build.gradle
@@ -36,7 +36,7 @@ android {
}
dependencies {
- api 'io.reactivex.rxjava3:rxjava:3.0.0'
+ api 'io.reactivex.rxjava3:rxjava:3.0.3'
testImplementation 'jun... | [
"rxandroid/build.gradle"
] | [] | true | ||
ReactiveX/RxAndroid | 542 | issue_to_patch | Make messages async by default | Closes #541 | fb3c0aec115c3d021e9a2d2fd0d52fea91dc5905 | 47bb3c1e9b7086ac2f199613cd40b488fc1f20bf | diff --git a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java b/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
index 56c11cf9..fe76dc0d 100644
--- a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
+++ b/... | [
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java",
"rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest.java"
] | [] | diff --git a/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest.java b/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest.java
index c6802c47..c130e96d 100644
--- a/rxandroid/src/test/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulersTest... | true | |
ReactiveX/RxAndroid | 559 | issue_to_patch | Prepare RxAndroid 3.0 for RxJava 3.0 | 72da15d24278ec94467833d469d0f9cbdf9496fe | 34a62b82615c1fe4376f274e5e4090b2351bc0f9 | diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml
new file mode 100644
index 00000000..405a2b30
--- /dev/null
+++ b/.github/workflows/gradle-wrapper-validation.yml
@@ -0,0 +1,10 @@
+name: "Validate Gradle Wrapper"
+on: [push, pull_request]
+
+jobs:
+ validat... | [
".github/workflows/gradle-wrapper-validation.yml",
"README.md",
"build.gradle",
"gradle/wrapper/gradle-wrapper.jar",
"gradle/wrapper/gradle-wrapper.properties",
"gradlew",
"rxandroid/build.gradle"
] | [] | true | |||
ReactiveX/RxAndroid | 558 | issue_to_patch | Add `pull_request` to Wrapper Validation Triggers | Fixes a bug. Sorry. | 95fc797499d3ce24a3a2ccf608e61e6b94e55ac8 | bcad18536596ee0ea3589d0f39b612024a8f7d4b | diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml
index f552c8dc..405a2b30 100644
--- a/.github/workflows/gradle-wrapper-validation.yml
+++ b/.github/workflows/gradle-wrapper-validation.yml
@@ -1,5 +1,5 @@
name: "Validate Gradle Wrapper"
-on: [push]
+on: [pu... | [
".github/workflows/gradle-wrapper-validation.yml"
] | [] | true | ||
ReactiveX/RxAndroid | 557 | issue_to_patch | Official Gradle Wrapper Validation GitHub Action | See: https://github.com/gradle/wrapper-validation-action | b01a7e287f34459d791583a90d2725573c7a39d9 | 474643fc8d3ce264cb44cf782a275dbddf69b8f6 | diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml
new file mode 100644
index 00000000..f552c8dc
--- /dev/null
+++ b/.github/workflows/gradle-wrapper-validation.yml
@@ -0,0 +1,10 @@
+name: "Validate Gradle Wrapper"
+on: [push]
+
+jobs:
+ validation:
+ name... | [
".github/workflows/gradle-wrapper-validation.yml"
] | [
{
"comment": "Should not this be: `on: [push, pull_request]`? ",
"path": ".github/workflows/gradle-wrapper-validation.yml",
"hunk": "@@ -0,0 +1,10 @@\n+name: \"Validate Gradle Wrapper\"\n+on: [push]",
"resolving_sha": "474643fc8d3ce264cb44cf782a275dbddf69b8f6",
"resolving_diff": "diff --git a/.g... | true | ||
ReactiveX/RxAndroid | 555 | issue_to_patch | Update to RxJava RC7 and Java 8 | ef3785c02d1738de9ea5e88209540f8b8ff62108 | d7bb4980137e8540201ded1c5f387a73da2df550 | diff --git a/build.gradle b/build.gradle
index 2ecb8592..6d876c69 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ subprojects {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.5.0'
+ classpath 'com.android.tools.build:gradle:3.5.... | [
"build.gradle",
"rxandroid/build.gradle",
"rxandroid/src/main/java/io/reactivex/rxjava3/android/MainThreadDisposable.java",
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java",
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/HandlerScheduler.java"
] | [] | true | |||
ReactiveX/RxAndroid | 553 | issue_to_patch | added the jfrog repository URL | 3cca80d6f1334c646bd6d8a0e38c47748c7e78eb | c983820a53df6cd833f05e2b1d6e99dc332443b8 | diff --git a/README.md b/README.md
index a4ac06d8..92eb3693 100644
--- a/README.md
+++ b/README.md
@@ -20,11 +20,18 @@ Since RxAndroid is part of the RxJava family the communication channels are simi
# Binaries
```groovy
-implementation 'io.reactivex.rxjava3:rxandroid:3.0.0-SNAPSHOT'
-// Because RxAndroid releases ... | [
"README.md"
] | [] | true | |||
ReactiveX/RxAndroid | 546 | issue_to_patch | Lowercase Androidx | b72ab928f3c3dfb78bc8e8c0aed7bd885ebb1d93 | 8c023a762b306e81bc2befc356bb7c952e834f76 | diff --git a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java b/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
index 51461eac..f76346b4 100644
--- a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
+++ b/... | [
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java"
] | [] | true | |||
ReactiveX/RxAndroid | 544 | issue_to_patch | Comment for posterity why androidx-core isn't used for async | From personal experience, this kind of detail pointing to something Official™️ can save developers a lot of headache having to explain to skeptical colleagues. | d7a875f86856b901b1bd5e32c07b726457cd4076 | 3bd37aaed6acee09f97f470fecfeb3bcbfb9af2a | diff --git a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java b/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
index fe76dc0d..51461eac 100644
--- a/rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java
+++ b/... | [
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/AndroidSchedulers.java"
] | [] | true | ||
ReactiveX/RxAndroid | 545 | issue_to_patch | Update project dependencies | Gradle 5.6.2
AGP 3.5.0
Compile SDK 29 | d7a875f86856b901b1bd5e32c07b726457cd4076 | 2ad617cbd45e9095221a89c67563b378d09ed94a | diff --git a/build.gradle b/build.gradle
index 1ff0efc9..2ecb8592 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ subprojects {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.4.1'
+ classpath 'com.android.tools.build:gradle:3.5.... | [
"build.gradle",
"gradle/wrapper/gradle-wrapper.jar",
"gradle/wrapper/gradle-wrapper.properties",
"gradlew",
"gradlew.bat"
] | [] | true | ||
ReactiveX/RxAndroid | 543 | issue_to_patch | RxJava 3.0 RC3 | 28725b553d96ea10e1382b8c975a0412848d9d96 | 2d4e087e27970230552dc8ab56d6e2d7641599f8 | diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle
index 2a1c49df..ab54726d 100644
--- a/rxandroid/build.gradle
+++ b/rxandroid/build.gradle
@@ -36,7 +36,7 @@ android {
}
dependencies {
- api 'io.reactivex.rxjava3:rxjava:3.0.0-RC2'
+ api 'io.reactivex.rxjava3:rxjava:3.0.0-RC3'
testImplementat... | [
"rxandroid/build.gradle"
] | [] | true | |||
ReactiveX/RxAndroid | 408 | issue_to_patch | Remove superfluous negative check. | Handler does this check already since 2009 when AOSP was imported to git (aka forever). | ffac4af4425d76b27406755ad1cc64f57bc5bcdc | 5dc34ee449081d0ce4626d37a453469a2b9408f2 | diff --git a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java b/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
index 1e5e2b34..c4c20e10 100644
--- a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
+++ b/rxandroid/src/main/java/io/... | [
"rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java"
] | [] | true | ||
ReactiveX/RxAndroid | 540 | issue_to_patch | Update to RxJava 3 | Closes #538.
With RxJava 3.0.0-RC2, the package names of all RxJava types were changed. This PR updates all the imports in RxAndroid accordingly.
If the intention is to update RxAndroid's package names as well I'm happy to add that to this PR.
This shouldn't actually be merged to 2.x, there just isn't a 3.x to... | b01a7e287f34459d791583a90d2725573c7a39d9 | 9dd5bb72327c409565ca536dda246a9edadcbf4a | diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle
index 760b9361..2a1c49df 100644
--- a/rxandroid/build.gradle
+++ b/rxandroid/build.gradle
@@ -36,7 +36,7 @@ android {
}
dependencies {
- api 'io.reactivex.rxjava2:rxjava:2.2.10'
+ api 'io.reactivex.rxjava3:rxjava:3.0.0-RC2'
testImplementation... | [
"rxandroid/build.gradle",
"rxandroid/src/main/AndroidManifest.xml",
"rxandroid/src/main/java/io/reactivex/rxjava3/android/MainThreadDisposable.java",
"rxandroid/src/main/java/io/reactivex/rxjava3/android/plugins/RxAndroidPlugins.java",
"rxandroid/src/main/java/io/reactivex/rxjava3/android/schedulers/Android... | [] | diff --git a/rxandroid/src/test/java/io/reactivex/android/MainThreadDisposableTest.java b/rxandroid/src/test/java/io/reactivex/rxjava3/android/MainThreadDisposableTest.java
similarity index 96%
rename from rxandroid/src/test/java/io/reactivex/android/MainThreadDisposableTest.java
rename to rxandroid/src/test/java/io/re... | true | |
ReactiveX/RxAndroid | 535 | issue_to_patch | Update dependencies | * Android Gradle plugin 3.4.1
* Gradle 5.1.1
* RxJava 2.2.10 | e58f44d8842c082698c1b5e3d367f805b95d8509 | 0e4e5ae9dac3a06fecd1caaab100178192ad64dc | diff --git a/build.gradle b/build.gradle
index f4a49754..1ff0efc9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ subprojects {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.1.4'
+ classpath 'com.android.tools.build:gradle:3.4.... | [
"build.gradle",
"gradle/wrapper/gradle-wrapper.properties",
"rxandroid/build.gradle"
] | [] | true | ||
ReactiveX/RxAndroid | 447 | issue_to_patch | Fix broken license link | The link was referencing the master's license document that does not currently exist | b315cd17b5fab0f1e6bbeaa91ff325bb06d7453f | cde1b2b2a9a32233497122c693b762792afe603c | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 6e37880c..c5f83d03 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -6,7 +6,7 @@ When submitting code, please make every effort to follow existing conventions an
## License
-By contributing your code, you agree to license your contribution under the terms o... | [
"CONTRIBUTING.md"
] | [] | true | ||
ReactiveX/RxAndroid | 437 | issue_to_patch | Update dependencies | * RxJava 2.2.0
* Gradle: 4.9 | 9f810700753eefcc8c55f0b52fb8ec0c188e6a9d | 908e6ed745ce24e8328774bb113e497ac86be169 | diff --git a/build.gradle b/build.gradle
index fb2a40de..f4a49754 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ subprojects {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.1.3'
+ classpath 'com.android.tools.build:gradle:3.1.... | [
"build.gradle",
"gradle/wrapper/gradle-wrapper.properties",
"rxandroid/build.gradle"
] | [] | true | ||
ReactiveX/RxAndroid | 435 | issue_to_patch | Update dependencies | - SDK 28
- Finally figured out why the trove4j dependency wasn't working. It's only on jcenter(), and the new lint engine requires it on the regular repositories() block as a result
- Gradle 4.8.1
- RxJava 2.1.16
- Robolectric 3.8
- Remove now-unnecessary buildToolsVersion
- Misc others | 191a758fcce4e4d16ad0438ad4dac3fd01b4362f | 025cad09da7ab03afa20c758367e582966e5d32f | diff --git a/.travis.yml b/.travis.yml
index 8ef02144..25db1679 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,18 +1,22 @@
language: android
-jdk:
- - oraclejdk8
-
android:
components:
- tools
- platform-tools
- - android-26
- - build-tools-26.0.2
+
+jdk:
+ - oraclejdk8
# as per http://blo... | [
".travis.yml",
"build.gradle",
"gradle/wrapper/gradle-wrapper.jar",
"gradle/wrapper/gradle-wrapper.properties",
"rxandroid/build.gradle",
"sample-app/build.gradle"
] | [
{
"comment": "What is this needed for?",
"path": ".travis.yml",
"hunk": "@@ -1,18 +1,24 @@\n language: android\n \n-jdk:\n- - oraclejdk8\n-\n android:\n components:\n - tools\n - platform-tools\n- - android-26\n- - build-tools-26.0.2\n+\n+jdk:\n+ - oraclejdk8\n \n # as per http://blog.... | true | ||
ReactiveX/RxAndroid | 425 | issue_to_patch | Remove handler callbacks before setting disposed. | This change ensures that you can never observe `disposed` being set to `true` inside `run()`. `removeCallbacks` and the mechanism by which a `Looper` retrieves the head of the message queue are both governed by a lock. When `dispose()` is called on a non-main thread taking this lock is the race which determines cancela... | 5cb239130dceab95797b7313b19f2d8e95407d8f | c4ef6b0acc6d8fedbf90a06bcdc7112d59442bc3 | diff --git a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java b/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
index 8fd01034..6e2824ee 100644
--- a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
+++ b/rxandroid/src/main/java/io/... | [
"rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java"
] | [] | true | ||
ReactiveX/RxAndroid | 415 | issue_to_patch | Disable BuildConfig generation. | 8635f6281d68c2061d3163c09dc1f203fbe7c470 | 0498fb7b6bf738cd6e387e8d997d319cd4c2a22e | diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle
index 6a62dcce..dd931024 100644
--- a/rxandroid/build.gradle
+++ b/rxandroid/build.gradle
@@ -29,6 +29,11 @@ android {
sourceCompatibility rootProject.ext.sourceCompatibility
targetCompatibility rootProject.ext.sourceCompatibility
}
+
+... | [
"rxandroid/build.gradle"
] | [] | true | |||
ReactiveX/RxAndroid | 414 | issue_to_patch | Defer to github releases page for latest RxJava version number | see https://github.com/ReactiveX/RxJava/releases/tag/v2.1.9 | 2befa73b9c11ac00ce97fb1df43501bdb6c457d1 | f81b44935c96a0efd3d3f6f11d4b5e6b12814160 | diff --git a/README.md b/README.md
index ee7a04ca..2a05eca5 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,8 @@ Since RxAndroid is part of the RxJava family the communication channels are simi
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
// Because RxAndroid releases are few and far between, it is recommended ... | [
"README.md"
] | [
{
"comment": "Comment goes behind right end of the screen due to codeblock formatting\r\n\r\nCan you try to play with it to achieve better readability? Maybe add it on line above :)",
"path": "README.md",
"hunk": "@@ -23,7 +23,7 @@ Since RxAndroid is part of the RxJava family the communication channels ... | true | ||
ReactiveX/RxAndroid | 406 | issue_to_patch | Update RxJava2 version in README.md | Update RxJava version. `2.1.5 -> 2.1.7` | 055c8b5e8c4cc4c0b7804b08d31f5c78df02be48 | a58546f8b7e14a3b732e025ae86e57d0ff718760 | diff --git a/README.md b/README.md
index 27518a80..e80037e6 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ Since RxAndroid is part of the RxJava family the communication channels are simi
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
// Because RxAndroid releases are few and far between, it is recommended ... | [
"README.md"
] | [] | true | ||
ReactiveX/RxAndroid | 411 | issue_to_patch | fix spelling, add tailing slash | ### fix spelling
1. cancelation -> cancellation
2. sheduler -> scheduler
3. releasese -> releases
### add trailing slash
1. https://oss.jfrog.org -> https://oss.jfrog.org/
2. https://github.com/ReactiveX/RxAndroid/issues -> https://github.com/ReactiveX/RxAndroid/issues/
3. https://github.com/ReactiveX/RxAn... | 0dc3d9d36928c7f1e8ebd042187309fcd09df9ef | 248d320331c8159e01693aeced9cddc395d06658 | diff --git a/CHANGES.md b/CHANGES.md
index 653dec70..544ff73a 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -27,7 +27,7 @@ RxAndroid 2.0 has been rewritten from scratch to support RxJava 2.0.
The library still offers the same APIs: a scheduler and stream cancelation callback that know about
the main thread, a means o... | [
"CHANGES.md",
"gradle/artifacts.gradle"
] | [
{
"comment": "I don't see any reason to change this. GitHub doesn't include it in their URLs.",
"path": "rxandroid/build.gradle",
"hunk": "@@ -115,8 +115,8 @@ bintray {\n licenses = ['Apache-2.0']\n labels = ['rxjava', 'reactivex']\n websiteUrl = 'https://github.com/ReactiveX/RxA... | true | ||
ReactiveX/RxAndroid | 412 | issue_to_patch | isn't superfluous negative check? | 0dc3d9d36928c7f1e8ebd042187309fcd09df9ef | a7e888adc388a0d0722ea5822a32dc589364e5a1 | diff --git a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java b/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
index c4c20e10..8fd01034 100644
--- a/rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java
+++ b/rxandroid/src/main/java/io/... | [
"rxandroid/src/main/java/io/reactivex/android/schedulers/HandlerScheduler.java"
] | [] | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.