Repository Name
stringlengths
1
28
Git URL
stringlengths
26
64
SHA
stringlengths
40
40
Author
stringlengths
2
37
Commit Date
stringdate
2016-01-02 05:39:51
2025-03-25 12:39:56
Description
stringlengths
13
160
Body
stringlengths
8
30.2k
Full Commit Message
stringlengths
36
42.6k
Git Diff
stringlengths
22
22.6M
erpnext
https://github.com/frappe/erpnext
cef28df8db6ab14e4d243c1ea302bb5f4e57b528
Suraj Shetty
2022-04-13 19:10:19
test: Do not overwrite frappe.form_dict to retain proxy reference
Set frappe.local.form_dict instead
test: Do not overwrite frappe.form_dict to retain proxy reference Set frappe.local.form_dict instead
diff --git a/erpnext/buying/doctype/request_for_quotation/test_request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/test_request_for_quotation.py index dcdba095fbff..064b806e9534 100644 --- a/erpnext/buying/doctype/request_for_quotation/test_request_for_quotation.py +++ b/erpnext/buying/doctype/reque...
gitoxide
https://github.com/GitoxideLabs/gitoxide
fee775ca083189cd8909e8af143a69071cb71ecd
Sebastian Thiel
2024-06-24 18:59:10
feat: provide `env::executable_invocation()` to know how to invoke Git.
That way we can make it easier to rely on Git even if finding it is a bit more involved.
feat: provide `env::executable_invocation()` to know how to invoke Git. That way we can make it easier to rely on Git even if finding it is a bit more involved.
diff --git a/gix-path/src/env/git.rs b/gix-path/src/env/git.rs index 864a4d49aff..59996827961 100644 --- a/gix-path/src/env/git.rs +++ b/gix-path/src/env/git.rs @@ -1,3 +1,4 @@ +use std::path::PathBuf; use std::{ path::Path, process::{Command, Stdio}, @@ -5,12 +6,54 @@ use std::{ use bstr::{BStr, BString,...
cal.com
https://github.com/calcom/cal.com
6e2e252c49b7b8e64b28b26ea28d9bb2ef20eba9
Udit Takkar
2022-09-22 13:18:27
feat: new filter added (#4612)
* feat: new filter added * fix: type error * Update packages/ui/v2/core/layouts/BookingLayout.tsx
feat: new filter added (#4612) * feat: new filter added * fix: type error * Update packages/ui/v2/core/layouts/BookingLayout.tsx Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
diff --git a/apps/web/pages/bookings/[status].tsx b/apps/web/pages/bookings/[status].tsx index ae8926c5bde777..4b46b271435739 100644 --- a/apps/web/pages/bookings/[status].tsx +++ b/apps/web/pages/bookings/[status].tsx @@ -28,6 +28,7 @@ const descriptionByStatus: Record<BookingListingStatus, string> = { recurring: "...
nomad
https://github.com/hashicorp/nomad
5b1ad83d828f81d849530316411197041f9e5cc6
Aimee Ukasick
2024-10-30 00:32:04
Docs: Add IPv6 support page (#24228)
* initial content from Daniel's doc * Add IPv6 support doc to operations section. * daniel obsessively re-refactors his docs * Style guide edits * a few more style nits ---------
Docs: Add IPv6 support page (#24228) * initial content from Daniel's doc * Add IPv6 support doc to operations section. * daniel obsessively re-refactors his docs * Style guide edits * a few more style nits --------- Co-authored-by: Daniel Bennett <dbennett@hashicorp.com>
diff --git a/website/content/docs/operations/ipv6-support.mdx b/website/content/docs/operations/ipv6-support.mdx new file mode 100644 index 00000000000..c13a9dc6d0a --- /dev/null +++ b/website/content/docs/operations/ipv6-support.mdx @@ -0,0 +1,145 @@ +--- +layout: docs +page_title: Support for IPv6 +description: |- + ...
backstage
https://github.com/backstage/backstage
dbf0ae6cbac114f95c3ef8657bbf8a80b9006bd5
dependabot-preview[bot]
2020-05-14 12:08:26
build(deps-dev): bump @types/supertest from 2.0.8 to 2.0.9 (#857)
Bumps [@types/supertest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/supertest) from 2.0.8 to 2.0.9. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/supertest)
build(deps-dev): bump @types/supertest from 2.0.8 to 2.0.9 (#857) Bumps [@types/supertest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/supertest) from 2.0.8 to 2.0.9. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/Def...
diff --git a/yarn.lock b/yarn.lock index 5e52a1f32b0cc..f051fd7cc23d8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4495,9 +4495,9 @@ "@types/node" "*" "@types/supertest@^2.0.8": - version "2.0.8" - resolved "https://registry.npmjs.org/@types/supertest/-/supertest-2.0.8.tgz#23801236e2b85204ed771a8e7c40febba7da2b...
leetcode
https://github.com/doocs/leetcode
5e84dae11dec3d37202fc4b503a732be10834ae9
yanglbme
2023-05-12 08:48:07
feat: add solutions to lc problem: No.2441
No.2441.Largest Positive Integer That Exists With Its Negative
feat: add solutions to lc problem: No.2441 No.2441.Largest Positive Integer That Exists With Its Negative
diff --git a/solution/2400-2499/2441.Largest Positive Integer That Exists With Its Negative/README.md b/solution/2400-2499/2441.Largest Positive Integer That Exists With Its Negative/README.md index 442c2a4cad894..696d605145246 100644 --- a/solution/2400-2499/2441.Largest Positive Integer That Exists With Its Negative/...
sentry
https://github.com/getsentry/sentry
3dc53745cc29b836deade2a60dafa14b3a5b0fe2
Max Bittker
2017-10-27 02:30:38
fix(tests): mock timestamp in js test (#6451)
* fix(tests): mock timestamp in js test
fix(tests): mock timestamp in js test (#6451) * fix(tests): mock timestamp in js test
diff --git a/package.json b/package.json index 785644b1414558..6f6184b5ce2d08 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,7 @@ "lodash": "^4.17.4", "lodash-webpack-plugin": "^0.11.4", "marked": "0.3.5", + "mockdate": "2.0.2", "moment": "2.10.6", "moment-timezone": "0.4.1", ...
metamask-extension
https://github.com/MetaMask/metamask-extension
d120d634333a5a69f5dcfb85d3cc2f5367db323e
Charly Chevalier
2024-03-01 19:56:05
refactor(snap-keyring): refactor confirmation dialogs (#23007)
## **Description** Refactor and generalize success/error messages being used in the Snap-Keyring "adapter". This refactoring will ease additions of new metrics for Snap account management (future PR). ## **Related issues**
refactor(snap-keyring): refactor confirmation dialogs (#23007) ## **Description** Refactor and generalize success/error messages being used in the Snap-Keyring "adapter". This refactoring will ease additions of new metrics for Snap account management (future PR). ## **Related issues** Fixes: N/A ## **Manual testin...
diff --git a/app/scripts/lib/snap-keyring/snap-keyring.ts b/app/scripts/lib/snap-keyring/snap-keyring.ts index 885df9f1cbef..42a725a218ce 100644 --- a/app/scripts/lib/snap-keyring/snap-keyring.ts +++ b/app/scripts/lib/snap-keyring/snap-keyring.ts @@ -1,31 +1,15 @@ import { SnapKeyring } from '@metamask/eth-snap-keyrin...
Java
https://github.com/DuGuQiuBai/Java
b8d0978e01402d30d395bb46a5bb07e89f86272b
dependabot[bot]
2024-08-15 11:53:37
Chore(deps): bump org.junit:junit-bom from 5.10.3 to 5.11.0 (#5327)
Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.10.3 to 5.11.0. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.3...r5.11.0) ---
Chore(deps): bump org.junit:junit-bom from 5.10.3 to 5.11.0 (#5327) Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.10.3 to 5.11.0. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.3...r5.11.0) --- updated-dependen...
⚠️ HTTP 404: Not Found
bootstrap-vue
https://github.com/bootstrap-vue/bootstrap-vue
f49d4d4077829a14caa951e4f8e9816eabb057a5
dependabot[bot]
2021-02-09 17:40:59
chore(deps): bump actions/cache from v2 to v2.1.4 (#6432)
Bumps [actions/cache](https://github.com/actions/cache) from v2 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...26968a09c0ea4f3e233fdddbafd1166051a095f6)
chore(deps): bump actions/cache from v2 to v2.1.4 (#6432) Bumps [actions/cache](https://github.com/actions/cache) from v2 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabo...
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50aa599acff..883822e9190 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache node_modules - uses: action...
aws-cdk
https://github.com/aws/aws-cdk
4a113e62ff9038b159a40ac4edcd2543ce24e1e9
Rico Huijbers
2019-09-18 15:42:16
fix(ec2): fix subnet selection on looked-up VPCs (#4090)
Looked-up VPCs are created with a dummy configuration before the first lookup happens; a `selectSubnets` call on the dummy configuration is likely to fail. Add an exception to make the initial lookup not fail.
fix(ec2): fix subnet selection on looked-up VPCs (#4090) Looked-up VPCs are created with a dummy configuration before the first lookup happens; a `selectSubnets` call on the dummy configuration is likely to fail. Add an exception to make the initial lookup not fail. Fixes #3650.
diff --git a/packages/@aws-cdk/aws-ec2/lib/vpc.ts b/packages/@aws-cdk/aws-ec2/lib/vpc.ts index ba0c24633d81a..7e62fc88a0dd1 100644 --- a/packages/@aws-cdk/aws-ec2/lib/vpc.ts +++ b/packages/@aws-cdk/aws-ec2/lib/vpc.ts @@ -282,6 +282,11 @@ abstract class VpcBase extends Resource implements IVpc { */ protected read...
Waybar
https://github.com/Alexays/Waybar
b79301a5bdafb2d0a7764990530898996a97c386
Aleksei Bavshin
2021-01-09 05:11:48
fix(wlr/taskbar): protocol error when reconnecting outputs
Destroy request is not specified for foreign toplevel manager and it does not prevent the compositor from sending more events. Libwayland would ignore events to a destroyed objects, but that could indirectly cause a gap in the sequence of new object ids and trigger error condition in the library. With this commit wayb...
fix(wlr/taskbar): protocol error when reconnecting outputs Destroy request is not specified for foreign toplevel manager and it does not prevent the compositor from sending more events. Libwayland would ignore events to a destroyed objects, but that could indirectly cause a gap in the sequence of new object ids and tr...
diff --git a/src/modules/wlr/taskbar.cpp b/src/modules/wlr/taskbar.cpp index 46147bd07..4cbb8ce64 100644 --- a/src/modules/wlr/taskbar.cpp +++ b/src/modules/wlr/taskbar.cpp @@ -637,8 +637,20 @@ Taskbar::Taskbar(const std::string &id, const waybar::Bar &bar, const Json::Valu Taskbar::~Taskbar() { if (manager_) { ...
bitcoin
https://github.com/bitcoin/bitcoin
65fee8e699eb458291810e2d70cfa904d994fecf
Wladimir J. van der Laan
2016-05-09 15:42:09
test: Revert fatal-ness of missing python-zmq
It looks like travis is using the `travis.yml` from the branch, but runs the test script from the branch merged into master. This causes pull requests created before the QA tests python 3 transition to fail. This temporarily reverts fa05e22e919b7e2e816606f0c0d3dea1bd325bfd (#7851). It can be restored when this is no l...
test: Revert fatal-ness of missing python-zmq It looks like travis is using the `travis.yml` from the branch, but runs the test script from the branch merged into master. This causes pull requests created before the QA tests python 3 transition to fail. This temporarily reverts fa05e22e919b7e2e816606f0c0d3dea1bd325bf...
diff --git a/qa/pull-tester/rpc-tests.py b/qa/pull-tester/rpc-tests.py index 15153b7f586fc..01c2736e6693a 100755 --- a/qa/pull-tester/rpc-tests.py +++ b/qa/pull-tester/rpc-tests.py @@ -82,9 +82,9 @@ try: import zmq except ImportError as e: - print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=...
label-studio
https://github.com/HumanSignal/label-studio
b1576eeebcf10c0614673a076264ef7b83c670ee
robot-ci-heartex
2024-09-26 11:34:44
ci: Update Feature Flags
Workflow run: https://github.com/HumanSignal/label-studio/actions/runs/11046505776
ci: Update Feature Flags Workflow run: https://github.com/HumanSignal/label-studio/actions/runs/11046505776
diff --git a/label_studio/feature_flags.json b/label_studio/feature_flags.json index a663d302b6c9..9b97c048a8fe 100644 --- a/label_studio/feature_flags.json +++ b/label_studio/feature_flags.json @@ -1567,6 +1567,33 @@ "version": 3, "deleted": false }, + "fflag_feat_all_leap_1429_flexible_reject_mo...
asdf
https://github.com/asdf-vm/asdf
e5863f3701ffdbb9dd32a28a89d09406dc16fbe1
Paul Swartz
2019-05-18 00:00:05
fix: check shims for the full version
The current behavior in shims is to check if there's an existing shim for which the shim we're currently checking is a prefix. For example, if the shim has # asdf-plugin: erlang 21.2.6 Then adding a shim for `erlang 21.2` will fail. This updates the `grep` check to match the end of the line as well so we always get ...
fix: check shims for the full version The current behavior in shims is to check if there's an existing shim for which the shim we're currently checking is a prefix. For example, if the shim has # asdf-plugin: erlang 21.2.6 Then adding a shim for `erlang 21.2` will fail. This updates the `grep` check to match th...
diff --git a/lib/commands/reshim.sh b/lib/commands/reshim.sh index faad6bd06..75512443e 100644 --- a/lib/commands/reshim.sh +++ b/lib/commands/reshim.sh @@ -65,7 +65,7 @@ write_shim_script() { shim_path="$(asdf_data_dir)/shims/$executable_name" if [ -f "$shim_path" ]; then - if ! grep "# asdf-plugin: ${plugi...
everyone-can-use-english
https://github.com/ZuodaoTech/everyone-can-use-english
187038c42ee7e132b8f47c0af0345682f9fa3839
an-lee
2024-01-15 11:42:22
Feat: scan ffmpeg command (#116)
* package rpm * fix model url * scan/check ffmpeg command * handle undefined * add reset settings button * add ffmpeg install instrunction for mac * improve landing steps
Feat: scan ffmpeg command (#116) * package rpm * fix model url * scan/check ffmpeg command * handle undefined * add reset settings button * add ffmpeg install instrunction for mac * improve landing steps
diff --git a/enjoy/forge.config.ts b/enjoy/forge.config.ts index cb1f3a216..ba1c54fcd 100644 --- a/enjoy/forge.config.ts +++ b/enjoy/forge.config.ts @@ -2,6 +2,7 @@ import type { ForgeConfig } from "@electron-forge/shared-types"; import { MakerSquirrel } from "@electron-forge/maker-squirrel"; import { MakerZIP } from...
envoy
https://github.com/envoyproxy/envoy
bb125f27e05db64358a2a061e7427de27b3e5ec9
alyssawilk
2020-05-08 23:24:42
test: switching to synthetic quit (#11106)
Switching from sending /quitquitquit for shutdown to calling quit() directly.
test: switching to synthetic quit (#11106) Switching from sending /quitquitquit for shutdown to calling quit() directly. Signed-off-by: Alyssa Wilk <alyssar@chromium.org>
diff --git a/test/integration/integration_test.cc b/test/integration/integration_test.cc index ae11e48dafab..5f70de47465d 100644 --- a/test/integration/integration_test.cc +++ b/test/integration/integration_test.cc @@ -1379,4 +1379,9 @@ TEST_P(IntegrationTest, ConnectWithChunkedBody) { ASSERT_TRUE(fake_upstream_conn...
generator-jhipster
https://github.com/jhipster/generator-jhipster
771e01313ea23110340f8bcf94413cdb1bcaf7a8
dependabot[bot]
2022-03-23 12:51:43
chore(deps): bump @fortawesome/fontawesome-svg-core
Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Commits](https://github.com/FortAwesome/Font-Awesome/com...
chore(deps): bump @fortawesome/fontawesome-svg-core Bumps [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Com...
diff --git a/generators/client/templates/react/package.json b/generators/client/templates/react/package.json index 763947f76d4d..f3a830d10372 100644 --- a/generators/client/templates/react/package.json +++ b/generators/client/templates/react/package.json @@ -1,6 +1,6 @@ { "dependencies": { - "@fortawesome/fontaw...
goreleaser
https://github.com/goreleaser/goreleaser
d4e575dd47e076ccd57b06bcf1e45237e266a8cd
Drew Stinnett
2021-10-25 18:59:19
test: additional tests for gitlab and others (#2599)
* More checks * test: Adding more tests around gitlab * chore: removing log
test: additional tests for gitlab and others (#2599) * More checks * test: Adding more tests around gitlab * chore: removing log
diff --git a/internal/client/client_test.go b/internal/client/client_test.go index 6c67aa5c06e..c7462396d3c 100644 --- a/internal/client/client_test.go +++ b/internal/client/client_test.go @@ -157,3 +157,8 @@ func TestNewWithToken(t *testing.T) { require.Nil(t, cli) }) } + +func TestClientBlanks(t *testing.T) { +...
leetcode
https://github.com/doocs/leetcode
58c1c884144f8788d54e8f3fc17617ca80cc7d60
Libin YANG
2024-05-23 09:17:25
feat: update lc problems (#2889)
---------
feat: update lc problems (#2889) --------- Co-authored-by: Doocs Bot <doocs-bot@outlook.com>
diff --git "a/lcof2/\345\211\221\346\214\207 Offer II 089. \346\210\277\345\261\213\345\201\267\347\233\227/README.md" "b/lcof2/\345\211\221\346\214\207 Offer II 089. \346\210\277\345\261\213\345\201\267\347\233\227/README.md" index 95dba6daa7ebc..eb8de403f4855 100644 --- "a/lcof2/\345\211\221\346\214\207 Offer II 089....
influxdb
https://github.com/influxdata/influxdb
8ab553180e87eb47f3cb6e394f6c79ce104231b3
Andrew Lamb
2023-03-21 23:55:04
chore: Update datafusion again (#7276)
* chore: Update DataFusion pin * chore: Update for new Expr type * fix: deprecated * chore: Run cargo hakari tasks * docs: Update predicate/src/lib.rs * fix: fmt ---------
chore: Update datafusion again (#7276) * chore: Update DataFusion pin * chore: Update for new Expr type * fix: deprecated * chore: Run cargo hakari tasks * docs: Update predicate/src/lib.rs * fix: fmt --------- Co-authored-by: CircleCI[bot] <circleci@influxdata.com> Co-authored-by: kodiakhq[bot] <49736102+kodia...
diff --git a/Cargo.lock b/Cargo.lock index 6cec08fcb6b..13ee13989cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,16 +112,16 @@ checksum = "f410d3907b6b3647b9e7bca4551274b2e3d716aa940afb67b7287257401da921" dependencies = [ "ahash 0.8.3", "arrow-arith", - "arrow-array", - "arrow-buffer", + "arrow-array 34.0.0", ...
taro
https://github.com/NervJS/taro
751863d2ef22e907515c4f07f7979ee3c39a209e
Manjiz
2018-06-28 08:28:44
feat(tcr): platform-specific code of icon
另外:按照weui给图标加了对应的默认颜色
feat(tcr): platform-specific code of icon 另外:按照weui给图标加了对应的默认颜色
diff --git a/packages/taro-components-rn/README.md b/packages/taro-components-rn/README.md index ee3c035dcf5..85f1b1cde8d 100644 --- a/packages/taro-components-rn/README.md +++ b/packages/taro-components-rn/README.md @@ -2,8 +2,13 @@ Alo, alo! Bilibilibilibibili~ -> IOS: 如果你要用到 `Icon`,请先把 `libART.a` 引进去,步骤如下: -> `...
haproxy
https://github.com/haproxy/haproxy
5b654ad42c7feea2f53eacb02b31d1f5dc9d5c14
Willy Tarreau
2021-07-06 22:24:07
BUILD: stick-table: shut up invalid "uninitialized" warning in gcc 8.3
gcc 8.3.0 spews a bunch of: src/stick_table.c: In function 'action_inc_gpc0': include/haproxy/freq_ctr.h:66:12: warning: 'period' may be used uninitialized in this function [-Wmaybe-uninitialized] curr_tick += period; ^~ src/stick_table.c:2241:15: note: 'period' was declared here unsigned int period; ^~~~~~ but they'r...
BUILD: stick-table: shut up invalid "uninitialized" warning in gcc 8.3 gcc 8.3.0 spews a bunch of: src/stick_table.c: In function 'action_inc_gpc0': include/haproxy/freq_ctr.h:66:12: warning: 'period' may be used uninitialized in this function [-Wmaybe-uninitialized] curr_tick += period; ^~ src/...
diff --git a/src/stick_table.c b/src/stick_table.c index 7a02a19499194..e50ef2571e928 100644 --- a/src/stick_table.c +++ b/src/stick_table.c @@ -2238,7 +2238,7 @@ static enum act_return action_inc_gpc0(struct act_rule *rule, struct proxy *px, { struct stksess *ts; struct stkctr *stkctr; - unsigned int period; + un...
databend
https://github.com/databendlabs/databend
e3a569dcab83de41c2da4a8e9bac647a8bc8a1dc
Winter Zhang
2024-02-02 12:12:59
refactor(query): disallowed tokio::spawn method (#14563)
* refactor(query): disallowed tokio::spawn method * refactor(query): disallowed tokio::spawn method * refactor(query): disallowed tokio::spawn method
refactor(query): disallowed tokio::spawn method (#14563) * refactor(query): disallowed tokio::spawn method * refactor(query): disallowed tokio::spawn method * refactor(query): disallowed tokio::spawn method
diff --git a/Cargo.lock b/Cargo.lock index 021e49f017616..d2a0448fb027a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "async-backtrace" version = "0.2.6" -source = "git+https://github.com/zhang2014/async-backtrace.git?rev=e7e1b5f#e7e1b5f96b204e19ba9855b7f3740ec6266d...
1Panel
https://github.com/1Panel-dev/1Panel
b045261f1641b8503cd8f9225abbb948e1b879a9
zhengkunwang
2023-10-24 19:57:32
feat: 增加上传文件夹功能 (#2661)
Refs https://github.com/1Panel-dev/1Panel/issues/1364 Refs https://github.com/1Panel-dev/1Panel/issues/2053
feat: 增加上传文件夹功能 (#2661) Refs https://github.com/1Panel-dev/1Panel/issues/1364 Refs https://github.com/1Panel-dev/1Panel/issues/2053
diff --git a/backend/app/api/v1/file.go b/backend/app/api/v1/file.go index aaa5a320ac71..8bc87905131c 100644 --- a/backend/app/api/v1/file.go +++ b/backend/app/api/v1/file.go @@ -568,12 +568,13 @@ func (b *BaseApi) Size(c *gin.Context) { } func mergeChunks(fileName string, fileDir string, dstDir string, chunkCount ...
electron
https://github.com/electron/electron
a3581aa9926146158f9149897938a6921c5655e3
Jeremy Rose
2020-08-13 22:55:40
refactor: use aws-sdk-js instead of boto (#24863)
* refactor: use js instead of boto for s3put * replace merge-electron-checksums.py with js, remove boto * fix auth * actually pass the env to execute()
refactor: use aws-sdk-js instead of boto (#24863) * refactor: use js instead of boto for s3put * replace merge-electron-checksums.py with js, remove boto * fix auth * actually pass the env to execute()
diff --git a/.circleci/config.yml b/.circleci/config.yml index ad6a2c45bcfdd..feb008a008fa4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1410,7 +1410,6 @@ commands: - run: name: Preserve vendor dirs for release command: | - ...
consul
https://github.com/hashicorp/consul
4e77482e95c1ba67d38b16b6e6922269fa023eb8
Poonam Jadhav
2023-09-23 02:02:08
feat: remove resource api client from api module (#18984)
* feat: remove resource api client from api module * fix: go mod clean up
feat: remove resource api client from api module (#18984) * feat: remove resource api client from api module * fix: go mod clean up
diff --git a/api/go.mod b/api/go.mod index 6adfb1c6284c..0c6c4ee0690a 100644 --- a/api/go.mod +++ b/api/go.mod @@ -2,14 +2,10 @@ module github.com/hashicorp/consul/api go 1.19 -replace ( - github.com/hashicorp/consul/proto-public => ../proto-public - github.com/hashicorp/consul/sdk => ../sdk -) +replace github.com...
lucide
https://github.com/lucide-icons/lucide
45e82a51b822c0a00c069123fb92c9641d704d0b
Eric Fennis
2024-04-24 21:13:51
docs: Update readme files (#2102)
* Update lucide readme * Add Readme and update package.jsons * Update readme * Update package logos * Update darkmode logos * Update title build font readme
docs: Update readme files (#2102) * Update lucide readme * Add Readme and update package.jsons * Update readme * Update package logos * Update darkmode logos * Update title build font readme
diff --git a/README.md b/README.md index 81235994f35..90e655232e0 100644 --- a/README.md +++ b/README.md @@ -274,9 +274,12 @@ Thank you to all the people who contributed to Lucide! ## Sponsors - <a href="https://vercel.com?utm_source=lucide&utm_campaign=oss"> <img src="docs/public/vercel.svg" alt="Powered by V...
frankenphp
https://github.com/dunglas/frankenphp
8475ad9bc8aba845ba47572e50314fe17dcfbe42
Jacob Dreesen
2023-10-31 08:12:39
docs: fix some more typos (#285)
* Fix some typos in the docs * Fix some more typos
docs: fix some more typos (#285) * Fix some typos in the docs * Fix some more typos
diff --git a/docs/config.md b/docs/config.md index 324737126..c1983df95 100644 --- a/docs/config.md +++ b/docs/config.md @@ -1,6 +1,6 @@ # Configuration -FrankenPHP, Caddy as well the Mercure and Vulcain modules can be configured using [the formats supported by Caddy](https://caddyserver.com/docs/getting-started#you...
AppFlowy
https://github.com/AppFlowy-IO/AppFlowy
b73a34ed9490cbba0085c91b62cd5b1d3d847800
Richard Shiue
2023-09-02 09:20:16
refactor: remove date cell persistence (#3095)
* refactor: remove date cell persistence * refactor: use i64 rather than String in DateChangeset * chore: code cleanup * fix: tauri build ---------
refactor: remove date cell persistence (#3095) * refactor: remove date cell persistence * refactor: use i64 rather than String in DateChangeset * chore: code cleanup * fix: tauri build --------- Co-authored-by: nathan <nathan@appflowy.io>
diff --git a/frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_controller_builder.dart b/frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_controller_builder.dart index 73f995117e3c1..31aefb4a8f35e 100644 --- a/frontend/appflowy_flutter/lib/plugins/database_view/applicati...
cockpit
https://github.com/cockpit-project/cockpit
51dc0472d9bf8547834bee01b4f2c9e236436af9
Stef Walter
2016-11-08 14:58:03
test: Remove Fedora kubernetes and SELinux known issue
This was fixed two months ago. Lets remove it now.
test: Remove Fedora kubernetes and SELinux known issue This was fixed two months ago. Lets remove it now. Closes #5316
diff --git a/test/verify/naughty-fedora-24/4270-kubernetes-avc b/test/verify/naughty-fedora-24/4270-kubernetes-avc deleted file mode 100644 index 6d0b2c1375fe..000000000000 --- a/test/verify/naughty-fedora-24/4270-kubernetes-avc +++ /dev/null @@ -1 +0,0 @@ -op=security_compute_av reason=bounds scontext=system_u:system_...
trufflehog
https://github.com/trufflesecurity/trufflehog
3f4d4110834f0adf9f589cae6d2842984d22f13e
renovate[bot]
2024-08-20 20:58:04
chore(deps): update golang docker tag to v1.23 (#3228)
* chore(deps): update golang docker tag to v1.23 * Update Dockerfile.protos ---------
chore(deps): update golang docker tag to v1.23 (#3228) * chore(deps): update golang docker tag to v1.23 * Update Dockerfile.protos --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dustin Decker <dustin@trufflesec.com>
diff --git a/hack/Dockerfile.protos b/hack/Dockerfile.protos index 0a42c5f2a35c..714c743b0040 100644 --- a/hack/Dockerfile.protos +++ b/hack/Dockerfile.protos @@ -1,6 +1,6 @@ -# trufflesecurity/protos:1.22 +# trufflesecurity/protos:1.23 -FROM golang:1.22-bullseye +FROM golang:1.23-bullseye ARG TARGETARCH ARG TARG...
blender
https://github.com/blender/blender
58a0b565cde86e4ff8ca18a545cee068f80618aa
Julian Eisel
2024-10-28 22:53:43
Fix: Curves: Missing brush assets selector in curves sculpt mode
All sculpt and paint modes should have the brush selector asset shelf popup in the tool settings header. For curves sculpt mode this was missing. There's no good reason for this, probably just an oversight.
Fix: Curves: Missing brush assets selector in curves sculpt mode All sculpt and paint modes should have the brush selector asset shelf popup in the tool settings header. For curves sculpt mode this was missing. There's no good reason for this, probably just an oversight.
diff --git a/scripts/startup/bl_ui/space_view3d.py b/scripts/startup/bl_ui/space_view3d.py index 2bbd83b133de..4c87ffdc5547 100644 --- a/scripts/startup/bl_ui/space_view3d.py +++ b/scripts/startup/bl_ui/space_view3d.py @@ -539,8 +539,10 @@ def SCULPT_CURVES(context, layout, tool): tool_settings = context.too...
angular
https://github.com/angular/angular
97277bc9fb429a7122ffa2a1507418c9b76cc5f8
Alex Eagle
2018-07-14 00:35:16
build: update to Bazel 0.15 (#24841)
PR Close #24841
build: update to Bazel 0.15 (#24841) PR Close #24841
diff --git a/.circleci/config.yml b/.circleci/config.yml index ef587e0d90818..4ad0d76d947f8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,8 +12,8 @@ ## IMPORTANT # If you change the `docker_image` version, also change the `cache_key` suffix and the version of # `com_github_bazelbuild_buildtools...
google-api-nodejs-client
https://github.com/googleapis/google-api-nodejs-client
a3cebe15c79587a5449a80150862b3bde6712b82
Yoshi Automation
2022-07-04 23:03:29
feat(metastore): update the API
#### metastore:v1alpha The following keys were added: - resources.projects.resources.locations.resources.federations.methods.create.description - resources.projects.resources.locations.resources.federations.methods.create.flatPath - resources.projects.resources.locations.resources.federations.methods.create.httpMethod...
feat(metastore): update the API #### metastore:v1alpha The following keys were added: - resources.projects.resources.locations.resources.federations.methods.create.description - resources.projects.resources.locations.resources.federations.methods.create.flatPath - resources.projects.resources.locations.resources.fede...
diff --git a/discovery/metastore-v1alpha.json b/discovery/metastore-v1alpha.json index 7d0259c0bd..317f3edf08 100644 --- a/discovery/metastore-v1alpha.json +++ b/discovery/metastore-v1alpha.json @@ -179,6 +179,99 @@ "resources": { "federations": { "methods": { + "cr...
metersphere
https://github.com/metersphere/metersphere
b7befa6a6aabb75eaac83db54ad8113ef791efb6
WangXu10
2024-11-19 13:05:15
fix(任务中心): 任务详情列表排序
--bug=1048332 --user=王旭 【任务中心】任务详情列表-未按任务创建时间降序排列 https://www.tapd.cn/55049933/s/1612072
fix(任务中心): 任务详情列表排序 --bug=1048332 --user=王旭 【任务中心】任务详情列表-未按任务创建时间降序排列 https://www.tapd.cn/55049933/s/1612072
diff --git a/backend/services/system-setting/src/main/java/io/metersphere/system/service/BaseTaskHubService.java b/backend/services/system-setting/src/main/java/io/metersphere/system/service/BaseTaskHubService.java index 756af6ee21b6..48566c8afd7e 100644 --- a/backend/services/system-setting/src/main/java/io/meterspher...
ragflow
https://github.com/infiniflow/ragflow
9c9f2dbe3f6c5e52c2ee97dff066b7bf3bed9d35
balibabu
2025-02-25 09:02:01
Feat: Add FormDrawer to agent page. #3221 (#5323)
### What problem does this PR solve?
Feat: Add FormDrawer to agent page. #3221 (#5323) ### What problem does this PR solve? Feat: Add FormDrawer to agent page. #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
diff --git a/web/src/pages/agent/canvas/index.tsx b/web/src/pages/agent/canvas/index.tsx index 80129c28c8f..7503b5eaf2c 100644 --- a/web/src/pages/agent/canvas/index.tsx +++ b/web/src/pages/agent/canvas/index.tsx @@ -1,20 +1,12 @@ -import { - Tooltip, - TooltipContent, - TooltipTrigger, -} from '@/components/ui/tool...
subfinder
https://github.com/projectdiscovery/subfinder
c9135de449943c4623e786f6c428b101a8e96b4d
dependabot[bot]
2023-09-18 20:02:19
chore(deps): bump github.com/projectdiscovery/utils in /v2
Bumps [github.com/projectdiscovery/utils](https://github.com/projectdiscovery/utils) from 0.0.54 to 0.0.55. - [Release notes](https://github.com/projectdiscovery/utils/releases) - [Changelog](https://github.com/projectdiscovery/utils/blob/main/CHANGELOG.md) - [Commits](https://github.com/projectdiscovery/utils/compare/...
chore(deps): bump github.com/projectdiscovery/utils in /v2 Bumps [github.com/projectdiscovery/utils](https://github.com/projectdiscovery/utils) from 0.0.54 to 0.0.55. - [Release notes](https://github.com/projectdiscovery/utils/releases) - [Changelog](https://github.com/projectdiscovery/utils/blob/main/CHANGELOG.md) - ...
diff --git a/v2/go.mod b/v2/go.mod index a58fbc2f6..cae3fc9e4 100644 --- a/v2/go.mod +++ b/v2/go.mod @@ -13,7 +13,7 @@ require ( github.com/projectdiscovery/gologger v1.1.11 github.com/projectdiscovery/ratelimit v0.0.9 github.com/projectdiscovery/retryablehttp-go v1.0.26 - github.com/projectdiscovery/utils v0.0.5...
node
https://github.com/nodejs/node
36867786d095de89a37ced4378d07c8efe30cdfa
Rich Trott
2017-06-01 00:02:53
test: use mustCall() in test-readline-interface
Use `common.mustCall()` to make sure noop function is called as expected.
test: use mustCall() in test-readline-interface Use `common.mustCall()` to make sure noop function is called as expected. PR-URL: https://github.com/nodejs/node/pull/13259 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Revi...
diff --git a/test/parallel/test-readline-interface.js b/test/parallel/test-readline-interface.js index 86c102c45f1107..6f8849a322618a 100644 --- a/test/parallel/test-readline-interface.js +++ b/test/parallel/test-readline-interface.js @@ -564,7 +564,7 @@ function isWarned(emitter) { }); const rl = readline....
fluent-bit
https://github.com/fluent/fluent-bit
9f5579d1cb77f5335f09099a73f754cde904383e
Craig Ringer
2023-12-20 00:59:34
docs: Add short windows section to dev guide
The dev guide had no references for how to build or test for windows at all. Add a short section with some minimal info and guidance for where to find more detailed resources. I didn't want to write extensive docs on this, especially as they're likely to be unmaintained and go stale, so the user is expected to look at...
docs: Add short windows section to dev guide The dev guide had no references for how to build or test for windows at all. Add a short section with some minimal info and guidance for where to find more detailed resources. I didn't want to write extensive docs on this, especially as they're likely to be unmaintained an...
diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index f58cd0136d3..734471ea61e 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -27,6 +27,7 @@ changes to Fluent Bit. - [Output](#output) - [Config Maps](#config-maps) - [Testing](#testing) + - [Building and Testing on Windows](#building-an...
leetcode
https://github.com/doocs/leetcode
2c3a09c0e0e3fdbaed43d663ba9a25f3f625e21f
yanglbme
2022-09-10 08:01:10
feat: add solutions to lc problem: No.0098
No.0098.Validate Binary Search Tree
feat: add solutions to lc problem: No.0098 No.0098.Validate Binary Search Tree
diff --git a/solution/0000-0099/0098.Validate Binary Search Tree/README.md b/solution/0000-0099/0098.Validate Binary Search Tree/README.md index 0d625383628ff..f9345de57d275 100644 --- a/solution/0000-0099/0098.Validate Binary Search Tree/README.md +++ b/solution/0000-0099/0098.Validate Binary Search Tree/README.md @...
sentry
https://github.com/getsentry/sentry
1b2c7887dfc18541e8468e110527f7d653df0875
Alex Zaslavsky
2023-11-07 10:41:54
feat(backup): Validation steps for relocation tasks (#59382)
These steps start, poll, and resolve a single Google CloudBuild validation run.
feat(backup): Validation steps for relocation tasks (#59382) These steps start, poll, and resolve a single Google CloudBuild validation run. Issue: getsentry/team-ospo#203
diff --git a/requirements-base.txt b/requirements-base.txt index 7181cb741e366d..a8fef6895f407f 100644 --- a/requirements-base.txt +++ b/requirements-base.txt @@ -20,6 +20,7 @@ email-reply-parser>=0.5.12 google-api-core>=2.12.0 google-auth>=2.4.0 google-cloud-bigtable>=2.11.3 +google-cloud-build>=3.20.1 google-clou...
sccache
https://github.com/mozilla/sccache
66fff86cda3016686b22e9731318b98db988937b
Xuanwo
2022-12-29 17:19:24
ci: Add integration tests for azblob (#1514)
* ci: Add integration tests for azblob + refactor the other existing integration tests
ci: Add integration tests for azblob (#1514) * ci: Add integration tests for azblob + refactor the other existing integration tests
diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 05335faa9..830a7908b 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -1,5 +1,11 @@ name: integration-tests on: [push, pull_request] + +env: + RUST_BACKTRACE: full...
fastify
https://github.com/fastify/fastify
5845c510e7681df03eb519ab58abdff26b7c2abe
KaKa
2024-08-02 09:01:53
refactor: remove FSTDEP007 (#5604)
* refactor: remove FSTDEP007 * fixup
refactor: remove FSTDEP007 (#5604) * refactor: remove FSTDEP007 * fixup
diff --git a/docs/Reference/Warnings.md b/docs/Reference/Warnings.md index 862d44a884..e3f4e1937c 100644 --- a/docs/Reference/Warnings.md +++ b/docs/Reference/Warnings.md @@ -8,7 +8,6 @@ - [FSTWRN001](#FSTWRN001) - [FSTWRN002](#FSTWRN002) - [Fastify Deprecation Codes](#fastify-deprecation-codes) - - [FS...
aws-cdk
https://github.com/aws/aws-cdk
a5390ebbe50edffd30cce76ab336b6b326008c37
Otavio Macedo
2021-06-23 21:32:48
chore(pipelines): Moved pipelines unit tests over to the new test API (#15250)
---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
chore(pipelines): Moved pipelines unit tests over to the new test API (#15250) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
diff --git a/packages/@aws-cdk/pipelines/test/actions/update-pipeline-action.test.ts b/packages/@aws-cdk/pipelines/test/actions/update-pipeline-action.test.ts index 536df4e73086e..d47167d6a7e6e 100644 --- a/packages/@aws-cdk/pipelines/test/actions/update-pipeline-action.test.ts +++ b/packages/@aws-cdk/pipelines/test/ac...
next-auth
https://github.com/nextauthjs/next-auth
c3fb22ee4c48be90ab873a507c301a0fe76dcb1e
TATHAGATA ROY
2024-01-07 04:37:48
docs: improve color contrast (#9565)
code block highlight contrast changed
docs: improve color contrast (#9565) code block highlight contrast changed
diff --git a/docs/src/css/index.css b/docs/src/css/index.css index 953e0b947f..985efaca80 100644 --- a/docs/src/css/index.css +++ b/docs/src/css/index.css @@ -85,7 +85,7 @@ a:hover, } .docusaurus-highlight-code-line { - background-color: rgb(72, 77, 91); + background-color: rgb(44, 50, 65); display: block; ...
volta
https://github.com/volta-cli/volta
102123e295fadc0728167490dbac37d7680fdf7d
dependabot[bot]
2023-04-22 01:45:47
build(deps): update attohttpc requirement in /crates/archive
Updates the requirements on [attohttpc](https://github.com/sbstp/attohttpc) to permit the latest version. - [Release notes](https://github.com/sbstp/attohttpc/releases) - [Commits](https://github.com/sbstp/attohttpc/compare/v0.24.0...v0.25.0) ---
build(deps): update attohttpc requirement in /crates/archive Updates the requirements on [attohttpc](https://github.com/sbstp/attohttpc) to permit the latest version. - [Release notes](https://github.com/sbstp/attohttpc/releases) - [Commits](https://github.com/sbstp/attohttpc/compare/v0.24.0...v0.25.0) --- updated-de...
diff --git a/crates/archive/Cargo.toml b/crates/archive/Cargo.toml index cea247621..f8c5ab97e 100644 --- a/crates/archive/Cargo.toml +++ b/crates/archive/Cargo.toml @@ -15,4 +15,4 @@ verbatim = "0.1" cfg-if = "1.0" hyperx = "1.0.0" thiserror = "1.0.16" -attohttpc = { version = "0.24", default-features = false, featu...
tinacms
https://github.com/tinacms/tinacms
08001e9de1496085ed26475bf0be9226844e830b
James O'Halloran
2022-01-10 22:26:28
chore: Test node 16 & 17
Test build on node 16 & 17. Should pass once #2221 is merged
chore: Test node 16 & 17 Test build on node 16 & 17. Should pass once #2221 is merged
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 93daf76673..002e7e0ebe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: - ubuntu-latest - macOS-latest # - windows-latest - node-version: [12.x, 14.x] + ...
github-readme-stats
https://github.com/anuraghazra/github-readme-stats
cdbf21249d28732411d90ec120663141879230f9
dependabot[bot]
2024-11-21 23:11:51
build(deps-dev): bump eslint from 9.14.0 to 9.15.0 (#4034)
Bumps [eslint](https://github.com/eslint/eslint) from 9.14.0 to 9.15.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.14.0...v9.15.0) ---
build(deps-dev): bump eslint from 9.14.0 to 9.15.0 (#4034) Bumps [eslint](https://github.com/eslint/eslint) from 9.14.0 to 9.15.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9....
diff --git a/package-lock.json b/package-lock.json index f3db41efd4116..25deb4657de78 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,7 @@ "@uppercod/css-to-object": "^1.1.1", "axios-mock-adapter": "^2.1.0", "color-contrast-checker": "^2.1.0", - "eslint": "^9.14.0",...
gatsby
https://github.com/gatsbyjs/gatsby
a84f78e075901d3195e4a81a949aaaa48979ff5b
Kyle Mathews
2020-11-28 15:21:12
chore(gatsby): Invite more people to try QUERY_ON_DEMAND (#28327)
* chore(gatsby): Invite more people to try QUERY_ON_DEMAND * update message for flags
chore(gatsby): Invite more people to try QUERY_ON_DEMAND (#28327) * chore(gatsby): Invite more people to try QUERY_ON_DEMAND * update message for flags
diff --git a/packages/gatsby/src/services/run-page-queries.ts b/packages/gatsby/src/services/run-page-queries.ts index 3f78acbe371b3..2c76f54440755 100644 --- a/packages/gatsby/src/services/run-page-queries.ts +++ b/packages/gatsby/src/services/run-page-queries.ts @@ -8,7 +8,7 @@ import { } from "../utils/show-experim...
keda
https://github.com/kedacore/keda
156dc8fab3885aa756a2897a32efb959b5eea164
Jorge Turrado Ferrero
2023-12-24 04:24:00
feat: Increase e2e coverage to hashicorp-secret-provider by testing kubernetes auth (#5309)
* feat: Increase e2e coverage to hashicorp-secret-provider by testing kubernetes auth
feat: Increase e2e coverage to hashicorp-secret-provider by testing kubernetes auth (#5309) * feat: Increase e2e coverage to hashicorp-secret-provider by testing kubernetes auth Signed-off-by: Jorge Turrado <jorge_turrado@hotmail.es> * add missing assertion Signed-off-by: Jorge Turrado <jorge_turrado@hotmail.es> *...
diff --git a/tests/helper/helper.go b/tests/helper/helper.go index e0c8f734cc7..4cdbebdc88f 100644 --- a/tests/helper/helper.go +++ b/tests/helper/helper.go @@ -641,6 +641,22 @@ func KubectlDeleteMultipleWithTemplate(t *testing.T, data interface{}, templates } } +func KubectlCopyToPod(t *testing.T, content string,...
swc
https://github.com/swc-project/swc
8353accb1315a8847e4dabcd36274cde5856e763
magic-akari
2023-03-17 08:08:45
fix(es/codegen): Emit `type_params` for `TsConstructSignatureDecl` (#7080)
**Related issue:** - Closes https://github.com/swc-project/swc/issues/7079.
fix(es/codegen): Emit `type_params` for `TsConstructSignatureDecl` (#7080) **Related issue:** - Closes https://github.com/swc-project/swc/issues/7079.
diff --git a/crates/swc_ecma_codegen/src/typescript.rs b/crates/swc_ecma_codegen/src/typescript.rs index 2c73cb79ddf6..c60b133f650b 100644 --- a/crates/swc_ecma_codegen/src/typescript.rs +++ b/crates/swc_ecma_codegen/src/typescript.rs @@ -100,6 +100,10 @@ where self.emit_leading_comments_of_span(n.span(), fals...
risingwave
https://github.com/risingwavelabs/risingwave
c3a196211740800e79b2811b0b16e2a793c0a3e0
Bugen Zhao
2022-09-13 21:53:14
fix(streaming): only use receiver executor for no-shuffle exchange (#5311)
* fix(streaming): use receiver executor according to the dispatcher type
fix(streaming): only use receiver executor for no-shuffle exchange (#5311) * fix(streaming): use receiver executor according to the dispatcher type Signed-off-by: Bugen Zhao <i@bugenzhao.com> * fix simple dispatcher Signed-off-by: Bugen Zhao <i@bugenzhao.com> Signed-off-by: Bugen Zhao <i@bugenzhao.com> Co-authored...
diff --git a/proto/stream_plan.proto b/proto/stream_plan.proto index 64bbd9077acaa..b834b4c599444 100644 --- a/proto/stream_plan.proto +++ b/proto/stream_plan.proto @@ -251,14 +251,17 @@ message HopWindowNode { message MergeNode { repeated uint32 upstream_actor_id = 1; uint32 upstream_fragment_id = 2; + // Type...
prettier
https://github.com/prettier/prettier
31e0ba5e26d5998c38ce3b7850da9b44f21809e7
dependabot[bot]
2022-02-20 21:25:15
Build(deps-dev): Bump @babel/core from 7.17.4 to 7.17.5 (#12335)
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.17.4 to 7.17.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.17.5/packages/babel-core) ---
Build(deps-dev): Bump @babel/core from 7.17.4 to 7.17.5 (#12335) Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.17.4 to 7.17.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://g...
diff --git a/package.json b/package.json index 537c6a19e521..1b602c47c6f3 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "yaml-unist-parser": "1.3.1" }, "devDependencies": { - "@babel/core": "7.17.4", + "@babel/core": "7.17.5", "@babel/preset-env": "7.16.11", "@babel/types": "...
nx
https://github.com/nrwl/nx
1e1cd3a0c5846b1c07538c2c7b59ecc84f34b372
Nicholas Cunningham
2024-11-12 14:59:40
fix(nx-dev): update course API to ignore system OS Metadata file (#28886)
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!--
fix(nx-dev): update course API to ignore system OS Metadata file (#28886) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- E...
diff --git a/nx-dev/data-access-courses/src/lib/courses.api.ts b/nx-dev/data-access-courses/src/lib/courses.api.ts index 694a62830c0207..f05adc56a5f235 100644 --- a/nx-dev/data-access-courses/src/lib/courses.api.ts +++ b/nx-dev/data-access-courses/src/lib/courses.api.ts @@ -1,7 +1,7 @@ import { readFile, readdir } fro...
linaria
https://github.com/callstack/linaria
c356485f51b856f829b9ba4f439ecf1bc2d93611
Satyajit Sahoo
2019-01-15 00:09:07
feat: support custom pre-processor for the CSS
This allows the user to specify a custom pre-processor to use instead of stylis as well as disable pre-processing. It essentially makes it possible to use different CSS syntax such as Sass with Linaria
feat: support custom pre-processor for the CSS This allows the user to specify a custom pre-processor to use instead of stylis as well as disable pre-processing. It essentially makes it possible to use different CSS syntax such as Sass with Linaria
diff --git a/docs/BUNDLERS_INTEGRATION.md b/docs/BUNDLERS_INTEGRATION.md index 6671a9bb2..e9b09a301 100644 --- a/docs/BUNDLERS_INTEGRATION.md +++ b/docs/BUNDLERS_INTEGRATION.md @@ -83,8 +83,37 @@ Linaria integrates with your CSS pipeline, so you can always perform additional The loader accepts the following options:...
pnpm
https://github.com/pnpm/pnpm
60921e63c92c63239bc7e632d175432b81d3837a
Zoltan Kochan
2016-09-08 02:27:52
perf: no need in locking
Enough to just wait for end of fetch.
perf: no need in locking Enough to just wait for end of fetch.
diff --git a/lib/fs/obliterate.js b/lib/fs/obliterate.js deleted file mode 100644 index 1ea82788a96..00000000000 --- a/lib/fs/obliterate.js +++ /dev/null @@ -1,23 +0,0 @@ -'use strict' -const rimraf = require('thenify')(require('rimraf')) -const fs = require('mz/fs') - -/* - * Removes `path`. - * If it's a symlink, rem...
blender
https://github.com/blender/blender
361174b588e29d79ab15700c9e83d4274fb1e145
Iliya Katueshenock
2023-11-25 18:11:17
Refactor: GEO: Mesh selection header file
Share code of geometry processing of mesh selection. For now, `mesh_copy_selection` is only user of this code, but in #115142 this will also be used. Pull Request: https://projects.blender.org/blender/blender/pulls/115376
Refactor: GEO: Mesh selection header file Share code of geometry processing of mesh selection. For now, `mesh_copy_selection` is only user of this code, but in #115142 this will also be used. Pull Request: https://projects.blender.org/blender/blender/pulls/115376
diff --git a/source/blender/geometry/CMakeLists.txt b/source/blender/geometry/CMakeLists.txt index 4ccc6c0ce167..3e1da4cc4695 100644 --- a/source/blender/geometry/CMakeLists.txt +++ b/source/blender/geometry/CMakeLists.txt @@ -26,6 +26,7 @@ set(SRC intern/mesh_primitive_grid.cc intern/mesh_primitive_line.cc in...
ant-design
https://github.com/ant-design/ant-design
44cd5342f7138989aeb9f122e087ae7f0a6d7b3f
二货爱吃白萝卜
2024-04-09 09:31:46
fix: Typography dynamic of copyable & eidtable (#48350)
* fix: editable should show * test: test driven * fix: copyable of render
fix: Typography dynamic of copyable & eidtable (#48350) * fix: editable should show * test: test driven * fix: copyable of render
diff --git a/components/typography/Base/index.tsx b/components/typography/Base/index.tsx index 81971b57c345..18369e9c7a32 100644 --- a/components/typography/Base/index.tsx +++ b/components/typography/Base/index.tsx @@ -487,7 +487,7 @@ const Base = React.forwardRef<HTMLElement, BlockProps>((props, ref) => { ...
angular
https://github.com/angular/angular
76b921ed63cf309974be465cda1baf60b95c22e4
Joey Perrott
2024-03-22 10:41:09
ci: change label set by renovate to be merge ready immediately (#54947)
Since the PR is always expected to be ready to merge as renovate won't make changes in response to any sort of comment, it should already be marked as merge ready PR Close #54947
ci: change label set by renovate to be merge ready immediately (#54947) Since the PR is always expected to be ready to merge as renovate won't make changes in response to any sort of comment, it should already be marked as merge ready PR Close #54947
diff --git a/renovate.json b/renovate.json index 6ef6332bea9c6c..866756b8535244 100644 --- a/renovate.json +++ b/renovate.json @@ -14,7 +14,7 @@ "prHourlyLimit": 3, "timezone": "America/Tijuana", "lockFileMaintenance": {"enabled": true}, - "labels": ["target: patch", "area: build & ci", "action: review"], + ...
google-api-nodejs-client
https://github.com/googleapis/google-api-nodejs-client
68323654185bb18ea8f6540f71a90578f9414f62
Yoshi Automation
2022-09-22 02:25:37
feat(container): update the API
#### container:v1beta1 The following keys were added: - schemas.ClusterUpdate.properties.desiredNodePoolLoggingConfig.$ref - schemas.ClusterUpdate.properties.desiredNodePoolLoggingConfig.description - schemas.LoggingVariantConfig.description - schemas.LoggingVariantConfig.id - schemas.LoggingVariantConfig.properties.v...
feat(container): update the API #### container:v1beta1 The following keys were added: - schemas.ClusterUpdate.properties.desiredNodePoolLoggingConfig.$ref - schemas.ClusterUpdate.properties.desiredNodePoolLoggingConfig.description - schemas.LoggingVariantConfig.description - schemas.LoggingVariantConfig.id - schemas....
diff --git a/discovery/container-v1.json b/discovery/container-v1.json index 0b30481b6a..66cf4e94d8 100644 --- a/discovery/container-v1.json +++ b/discovery/container-v1.json @@ -2487,7 +2487,7 @@ } } }, - "revision": "20220727", + "revision": "20220826", "rootUrl": "https://container.googleapis.com...
plane
https://github.com/makeplane/plane
b7d792ed07256e39259941823462a25d6413ac67
Manish Gupta
2024-07-05 16:45:02
fix: Fixed aio build (#5056)
* fix: aio build * fix aio branch build
fix: Fixed aio build (#5056) * fix: aio build * fix aio branch build
diff --git a/.github/workflows/build-aio-branch.yml b/.github/workflows/build-aio-branch.yml index de68d4b96df..8e28fe0d44e 100644 --- a/.github/workflows/build-aio-branch.yml +++ b/.github/workflows/build-aio-branch.yml @@ -31,6 +31,7 @@ jobs: runs-on: ubuntu-latest outputs: gh_branch_name: ${{ steps....
oh-my-posh
https://github.com/JanDeDobbeleer/oh-my-posh
8de004ff53e3ea6db6482042c25094622af66022
Luca Ercole
2021-03-18 23:20:53
fix: preserve exit code in omp.bash
Other small changes include: - rename functions to simplify debugging - quoting some variables and simplifying an expression as suggested by shellcheck - idempotency when modifying PROMPT_COMMAND. - check if file exists before trying to remove it in the trap.
fix: preserve exit code in omp.bash Other small changes include: - rename functions to simplify debugging - quoting some variables and simplifying an expression as suggested by shellcheck - idempotency when modifying PROMPT_COMMAND. - check if file exists before trying to remove it in the trap.
diff --git a/src/init/omp.bash b/src/init/omp.bash index a148331a39a2..3166fc73295a 100644 --- a/src/init/omp.bash +++ b/src/init/omp.bash @@ -4,23 +4,27 @@ TIMER_START="/tmp/${USER}.start.$$" PS0='$(::OMP:: --millis > $TIMER_START)' -function _update_ps1() { +function _omp_hook() { + local ret=$? + omp_el...
opendal
https://github.com/apache/opendal
fb4ac3524d720329c6c0777f87769d8b1a3828f0
Jason Klein
2023-02-09 21:23:11
feat: Add Sled support (#1305)
* Added Sled support for Read/Write/Blocking * Added license header * Incorporated review comments 1
feat: Add Sled support (#1305) * Added Sled support for Read/Write/Blocking * Added license header * Incorporated review comments 1
diff --git a/.env.example b/.env.example index 07cab863d805..2bc8a6b74353 100644 --- a/.env.example +++ b/.env.example @@ -61,6 +61,9 @@ OPENDAL_REDIS_DB=0 OPENDAL_ROCKSDB_TEST=false OPENDAL_ROCKSDB_DATADIR=/path/to/database OPENDAL_ROCKSDB_ROOT=/path/to/root +# sled +OPENDAL_SLED_TEST=false +OPENDAL_SLED_DATADIR=/p...
chakra-ui
https://github.com/chakra-ui/chakra-ui
db9b95c4ecbe432e3c975c037e70bc282dc68d27
dependabot[bot]
2022-01-10 02:58:45
chore(deps): bump lodash from 4.17.20 to 4.17.21 in /examples/gatsby
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.20...4.17.21) ---
chore(deps): bump lodash from 4.17.20 to 4.17.21 in /examples/gatsby Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.20...4.17.21) --- updated-dependencies: - dependency-nam...
diff --git a/examples/gatsby/yarn.lock b/examples/gatsby/yarn.lock index 4f642e0d6e3..4993a8e9dfa 100644 --- a/examples/gatsby/yarn.lock +++ b/examples/gatsby/yarn.lock @@ -8301,12 +8301,7 @@ lodash.without@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a9...
memray
https://github.com/bloomberg/memray
17a9b38f5dc4d0062f408a905de5dc80bab7e156
László Kiss Kollár
2021-06-21 16:40:09
test: Add test for partial munmap calls
In order to be able to test tracking `munmap` calls which only deallocate part of a previously allocated `mmap` region, add a utility class which exposes both `mmap` and `munmap` functionality in Python.
test: Add test for partial munmap calls In order to be able to test tracking `munmap` calls which only deallocate part of a previously allocated `mmap` region, add a utility class which exposes both `mmap` and `munmap` functionality in Python.
diff --git a/src/bloomberg/pensieve/_pensieve.pyx b/src/bloomberg/pensieve/_pensieve.pyx index e5b32e26fb..72b3d6b835 100644 --- a/src/bloomberg/pensieve/_pensieve.pyx +++ b/src/bloomberg/pensieve/_pensieve.pyx @@ -6,6 +6,10 @@ cimport cython import threading from datetime import datetime + +from posix.mman cimport...
posthog
https://github.com/PostHog/posthog
8abb7f9e046a48d9dadd198db131c3512d806752
Alex Gyujin Kim
2022-04-28 03:33:55
feat(cohorts): add cohort filter grammars (#9540)
* refactor cohortLogic * new dragger * static and dynamic working * rename cohorttypetype * address feedback * console * consoles and fix test * remove unused components * correct data attr * address feedback * fix test * address feedback * fix test * feat: new cohort selectors * feat: add groups to actor...
feat(cohorts): add cohort filter grammars (#9540) * refactor cohortLogic * new dragger * static and dynamic working * rename cohorttypetype * address feedback * console * consoles and fix test * remove unused components * correct data attr * address feedback * fix test * address feedback * fix test * feat...
diff --git a/frontend/src/lib/components/LemonInput/LemonInput.tsx b/frontend/src/lib/components/LemonInput/LemonInput.tsx index ee558508f78cb..e322ec7fd09be 100644 --- a/frontend/src/lib/components/LemonInput/LemonInput.tsx +++ b/frontend/src/lib/components/LemonInput/LemonInput.tsx @@ -12,7 +12,7 @@ export interface ...
AFFiNE
https://github.com/toeverything/AFFiNE
d89d4a71dd042c1cfca2cda285e6a2b141c6ae5e
pengx17
2025-02-11 10:26:23
feat(core): center peek open doc should only load doc when idle (#10023)
fix AF-2183
feat(core): center peek open doc should only load doc when idle (#10023) fix AF-2183
diff --git a/packages/frontend/core/src/modules/doc/services/docs.ts b/packages/frontend/core/src/modules/doc/services/docs.ts index 91312f6b1c9ba..3520aebd13673 100644 --- a/packages/frontend/core/src/modules/doc/services/docs.ts +++ b/packages/frontend/core/src/modules/doc/services/docs.ts @@ -64,6 +64,14 @@ export c...
gnuradio
https://github.com/gnuradio/gnuradio
1dcf8740f4358edee5a6fda7fabd97907817c217
Martin Braun
2022-04-12 18:22:06
docs: Add shim Sphinx config for readthedocs
This adds a faux Sphinx project under docs/. When invoking sphinx, it will in fact forward the generator request to Doxygen. This is useful for generating the UHD manual, e.g., on readthedocs. To enable the latter service, .readthedocs.yaml and environment.yml files were added as well.
docs: Add shim Sphinx config for readthedocs This adds a faux Sphinx project under docs/. When invoking sphinx, it will in fact forward the generator request to Doxygen. This is useful for generating the UHD manual, e.g., on readthedocs. To enable the latter service, .readthedocs.yaml and environment.yml files were a...
diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..e82ad37ea9 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,32 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +#...
superset
https://github.com/apache/superset
a99d795eaf546222af57ed35a53b2a2ac111f7e2
adam-stasiak-polidea
2020-10-28 01:31:45
chore: cypress selectors refactor in explore module (#11309)
* cypress selectors refactor in explore module * added delay to typing to make test more stable * fixed missing click
chore: cypress selectors refactor in explore module (#11309) * cypress selectors refactor in explore module * added delay to typing to make test more stable * fixed missing click
diff --git a/superset-frontend/cypress-base/cypress/integration/explore/AdhocFilters.test.ts b/superset-frontend/cypress-base/cypress/integration/explore/AdhocFilters.test.ts index 1880f7fc08645..6522555aca91b 100644 --- a/superset-frontend/cypress-base/cypress/integration/explore/AdhocFilters.test.ts +++ b/superset-fr...
sentry
https://github.com/getsentry/sentry
debb1fe5755552bfe6798a6b9b7c9c703ce42581
Colleen O'Rourke
2022-06-24 03:53:18
fix(code mappings): Allow searching for repo outside of 100 results (#35933)
* fix(code mappings): Allow searching for repo outside of 100 results
fix(code mappings): Allow searching for repo outside of 100 results (#35933) * fix(code mappings): Allow searching for repo outside of 100 results
diff --git a/static/app/components/repositoryProjectPathConfigForm.tsx b/static/app/components/repositoryProjectPathConfigForm.tsx index 0705f9fab89edd..1499915cc215fb 100644 --- a/static/app/components/repositoryProjectPathConfigForm.tsx +++ b/static/app/components/repositoryProjectPathConfigForm.tsx @@ -12,7 +12,10 @...
azerothcore-wotlk
https://github.com/azerothcore/azerothcore-wotlk
f8e584a450d3a4b8562f80cc14695d64949f88d9
github-actions[bot]
2024-05-21 06:36:45
chore(DB): import pending files
Referenced commit(s): f78820e9d58e9cd8a8f7b6234d94bce5d8a0c1d5
chore(DB): import pending files Referenced commit(s): f78820e9d58e9cd8a8f7b6234d94bce5d8a0c1d5
diff --git a/data/sql/updates/pending_db_world/doomfire_movement.sql b/data/sql/updates/db_world/2024_05_21_00.sql similarity index 96% rename from data/sql/updates/pending_db_world/doomfire_movement.sql rename to data/sql/updates/db_world/2024_05_21_00.sql index 2ee0da1506feaf..19d4bf2c436a50 100644 --- a/data/sql/upd...
angular
https://github.com/angular/angular
bc888bf3a102aa6bf62e134661022a9fdb5e2ff5
Tobias Bosch
2016-06-14 01:44:07
refactor(compiler): Change arguments of `CompilerConfig` to named arguments
BREAKIKNG CHANGE: `CompilerConfig` used to take positional arguments and now takes named arguments.
refactor(compiler): Change arguments of `CompilerConfig` to named arguments BREAKIKNG CHANGE: `CompilerConfig` used to take positional arguments and now takes named arguments. Closes #9172
diff --git a/modules/@angular/compiler-cli/src/codegen.ts b/modules/@angular/compiler-cli/src/codegen.ts index 87cfa0e1ab092..0248e1daa7a56 100644 --- a/modules/@angular/compiler-cli/src/codegen.ts +++ b/modules/@angular/compiler-cli/src/codegen.ts @@ -151,19 +151,25 @@ export class CodeGenerator { const staticRef...
angular
https://github.com/angular/angular
e13f11db69f766c75f5c8533eb7e9a163944cb4c
iteriani
2025-03-11 00:08:13
refactor(core): Create a function convertToInjectOptions and convert back to an options. This allows seamless back and forth from bitflags and options. (#60192)
Note that we do have to keep converting back and forth, but we'll see if that's a problem. PR Close #60192
refactor(core): Create a function convertToInjectOptions and convert back to an options. This allows seamless back and forth from bitflags and options. (#60192) Note that we do have to keep converting back and forth, but we'll see if that's a problem. PR Close #60192
diff --git a/packages/core/src/di/injector_compatibility.ts b/packages/core/src/di/injector_compatibility.ts index e2dbed9906eb5..9eae17f060f70 100644 --- a/packages/core/src/di/injector_compatibility.ts +++ b/packages/core/src/di/injector_compatibility.ts @@ -52,14 +52,11 @@ const DI_DECORATOR_FLAG = '__NG_DI_FLAG__';...
halo
https://github.com/halo-dev/halo
9ec608be3bee6c0ca59f170dca5aaf1277ec6030
guqing
2024-05-24 11:50:50
feat: add remember-me mechanism to enhance user login experience (#5929)
#### What type of PR is this? /kind feature /area core /milestone 2.16.x #### What this PR does / why we need it: 为登录增加记住我机制以优化登录体验 how to test it? 1. 勾选记住密码选项后登录 2. 退出浏览器后打开 console 期望依然可以访问而不需要登录 3. 测试修改密码功能,期望修改密码后所有会话需要重新登录包括当前设备和其他设备 #### Which issue(s) this PR fixes:
feat: add remember-me mechanism to enhance user login experience (#5929) #### What type of PR is this? /kind feature /area core /milestone 2.16.x #### What this PR does / why we need it: 为登录增加记住我机制以优化登录体验 how to test it? 1. 勾选记住密码选项后登录 2. 退出浏览器后打开 console 期望依然可以访问而不需要登录 3. 测试修改密码功能,期望修改密码后所有会话需要重新登录包括当前设备和其他设备 ####...
diff --git a/application/src/main/java/run/halo/app/infra/properties/SecurityProperties.java b/application/src/main/java/run/halo/app/infra/properties/SecurityProperties.java index b33e323d17..19bfb8bb90 100644 --- a/application/src/main/java/run/halo/app/infra/properties/SecurityProperties.java +++ b/application/src/m...
angular
https://github.com/angular/angular
c809069f213244afd0e2d803a6a43510b218e6f5
Paul Gschwendtner
2024-03-06 17:04:38
feat(core): introduce `outputFromObservable()` interop function (#54650)
Introduces a second API in addition to the new `output()` function. The new function `outputFromObservable()` can be used to declare outputs using the new `OutputRef` API and `output()` API, while using a custom RxJS observable as data source. This is something that is currently possible in Angular and we would like ...
feat(core): introduce `outputFromObservable()` interop function (#54650) Introduces a second API in addition to the new `output()` function. The new function `outputFromObservable()` can be used to declare outputs using the new `OutputRef` API and `output()` API, while using a custom RxJS observable as data source. ...
diff --git a/goldens/public-api/core/rxjs-interop/index.md b/goldens/public-api/core/rxjs-interop/index.md index 57f469b0cd97d9..46daa6fec94f17 100644 --- a/goldens/public-api/core/rxjs-interop/index.md +++ b/goldens/public-api/core/rxjs-interop/index.md @@ -8,9 +8,14 @@ import { DestroyRef } from '@angular/core'; imp...
Activiti
https://github.com/Activiti/Activiti
fafdacf589df8a3e47a12898302e2f6ad2570300
jenkins-x-bot
2018-09-20 18:53:39
fix(versions): push Activiti/activiti-build ref: master
Push version changes from the source code in repository: Activiti/activiti-build ref: master
fix(versions): push Activiti/activiti-build ref: master Push version changes from the source code in repository: Activiti/activiti-build ref: master
diff --git a/pom.xml b/pom.xml index 9b9fafdce57..c7ca47a0baf 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>org.activiti.build</groupId> <artifactId>activiti-parent</artifactId> - <version>7.0.5</version> <!-- using fixed version for CI/CD --> + <version>7.0.8</version> <!-- us...
reaction
https://github.com/reactioncommerce/reaction
c47a64a1bb25501e94ea28d549ab22c85b28a8db
dependabot[bot]
2021-11-04 00:46:37
chore(deps): bump validator from 13.1.1 to 13.7.0
Bumps [validator](https://github.com/validatorjs/validator.js) from 13.1.1 to 13.7.0. - [Release notes](https://github.com/validatorjs/validator.js/releases) - [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/validatorjs/validator.js/compare/13.1.1...13.7....
chore(deps): bump validator from 13.1.1 to 13.7.0 Bumps [validator](https://github.com/validatorjs/validator.js) from 13.1.1 to 13.7.0. - [Release notes](https://github.com/validatorjs/validator.js/releases) - [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md) - [Commits](https://github....
diff --git a/package-lock.json b/package-lock.json index 2a3f59e1649..cce654d82ce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14332,9 +14332,9 @@ } }, "validator": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.1.1.tgz", - "inte...
ReactiveUI
https://github.com/reactiveui/ReactiveUI
369d04af55f6d056648add4d0e9d7022653bbea8
dependabot[bot]
2022-12-15 12:00:58
build(deps): bump Microsoft.WindowsAppSDK in /src (#3447)
Bumps [Microsoft.WindowsAppSDK](https://github.com/microsoft/windowsappsdk) from 1.2.221116.1 to 1.2.221209.1. - [Release notes](https://github.com/microsoft/windowsappsdk/releases) - [Commits](https://github.com/microsoft/windowsappsdk/commits) ---
build(deps): bump Microsoft.WindowsAppSDK in /src (#3447) Bumps [Microsoft.WindowsAppSDK](https://github.com/microsoft/windowsappsdk) from 1.2.221116.1 to 1.2.221209.1. - [Release notes](https://github.com/microsoft/windowsappsdk/releases) - [Commits](https://github.com/microsoft/windowsappsdk/commits) --- updated-de...
diff --git a/src/ReactiveUI.Maui/ReactiveUI.Maui.csproj b/src/ReactiveUI.Maui/ReactiveUI.Maui.csproj index 8e03c8b0bc..6a2eafbb6e 100644 --- a/src/ReactiveUI.Maui/ReactiveUI.Maui.csproj +++ b/src/ReactiveUI.Maui/ReactiveUI.Maui.csproj @@ -16,7 +16,7 @@ </PropertyGroup> <ItemGroup Condition="$(TargetFramework.Star...
refreshVersions
https://github.com/Splitties/refreshVersions
122c12fdac0458e9ff1b7754f0ee7c76783e4622
Jean-Michel Fayard
2022-02-26 01:08:21
docs: Simplify Pull Request
* Pull Request: What? Why? How? Testing?
docs: Simplify Pull Request * Pull Request: What? Why? How? Testing?
diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE index 227739629..736a08c1c 100644 --- a/.github/PULL_REQUEST_TEMPLATE +++ b/.github/PULL_REQUEST_TEMPLATE @@ -1,26 +1,22 @@ <!-- Thanks for taking the time to write this Pull Request ❤️ --> +<!-- Be sure to read the guidelines for the developme...
sentry
https://github.com/getsentry/sentry
7dab2b11234e81b95afd6db0a7e66792a6a98930
Dora
2024-10-22 21:29:55
feat(explore): media queries and cutoffs (#79458)
**Before:** ![Screenshot 2024-10-21 at 2 27 14 PM](https://github.com/user-attachments/assets/2d0c2036-3158-4189-930d-fc543eef9f78) **After:** ![Screenshot 2024-10-21 at 2 24 13 PM](https://github.com/user-attachments/assets/313f4f73-a5df-489f-be4d-5e11ed53fc35) ![Screenshot 2024-10-21 at 2 24 04 PM](https://github.co...
feat(explore): media queries and cutoffs (#79458) **Before:** ![Screenshot 2024-10-21 at 2 27 14 PM](https://github.com/user-attachments/assets/2d0c2036-3158-4189-930d-fc543eef9f78) **After:** ![Screenshot 2024-10-21 at 2 24 13 PM](https://github.com/user-attachments/assets/313f4f73-a5df-489f-be4d-5e11ed53fc35) ![Scr...
diff --git a/static/app/views/explore/content.tsx b/static/app/views/explore/content.tsx index 3a771ddbe0abb6..7d2ae3534785dc 100644 --- a/static/app/views/explore/content.tsx +++ b/static/app/views/explore/content.tsx @@ -88,35 +88,37 @@ function ExploreContentImpl({}: ExploreContentProps) { </Layout.Head...
golangci-lint
https://github.com/golangci/golangci-lint
a18ab0669c5b521199dc0e973ec2b2ca821a0e54
dependabot[bot]
2022-03-02 06:41:40
build(deps): bump gatsby from 4.6.2 to 4.9.0 in /docs (#2631)
Bumps [gatsby](https://github.com/gatsbyjs/gatsby) from 4.6.2 to 4.9.0. - [Release notes](https://github.com/gatsbyjs/gatsby/releases) - [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/CHANGELOG.md) - [Commits](https://github.com/gatsbyjs/gatsby/compare/gatsby@4.6.2...gatsby@4.9.0) ---
build(deps): bump gatsby from 4.6.2 to 4.9.0 in /docs (#2631) Bumps [gatsby](https://github.com/gatsbyjs/gatsby) from 4.6.2 to 4.9.0. - [Release notes](https://github.com/gatsbyjs/gatsby/releases) - [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/CHANGELOG.md) - [Commits](https://github.com/gatsbyjs/gatsby/...
diff --git a/docs/package-lock.json b/docs/package-lock.json index 34d6111e8f21..2b8278d36684 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -13,7 +13,7 @@ "@emotion/styled": "^11.6.0", "@mdx-js/mdx": "^1.6.22", "@mdx-js/react": "^1.6.16", - "gatsby": "^4.6.0", + ...
core
https://github.com/vuejs/core
40ccbdeaac3e933fe491e74baf28f0f611a92a88
Evan You
2019-10-21 20:06:38
chore: remove refs from setupContext
explicit refs should be preferred
chore: remove refs from setupContext explicit refs should be preferred
diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 8dc9e758ea4..a6540f6785d 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -414,7 +414,7 @@ function finishComponentSetup( export const SetupProxySymbol = Symbol() con...
kanata
https://github.com/jtroo/kanata
6ead4af70aa6ce02f3115444918a0b0a5d0323bc
jtroo
2023-02-26 06:47:27
refactor: reduce size of KanataAction (#321)
This commit adds an extra layer of indirection on all slices — which means they are regular pointers instead of fat pointers — to be able to reduce the size of KanataAction to 2 pointers instead of 3 pointers. This has a performance penalty of an additional indirection for dereferencing slice actions. It also makes th...
refactor: reduce size of KanataAction (#321) This commit adds an extra layer of indirection on all slices — which means they are regular pointers instead of fat pointers — to be able to reduce the size of KanataAction to 2 pointers instead of 3 pointers. This has a performance penalty of an additional indirection for...
diff --git a/Cargo.lock b/Cargo.lock index d25dc7084..27b2709ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -284,9 +284,7 @@ dependencies = [ [[package]] name = "kanata-keyberon" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a34dab255d867c493d64d8278c6dd0b59b1c2de...
servo
https://github.com/servo/servo
71890698ea7ee41b55a58ef2b14182f9fa182cee
dependabot-preview[bot]
2020-06-04 13:54:12
build(deps): bump tokio-io from 0.1.8 to 0.1.13
Bumps [tokio-io](https://github.com/tokio-rs/tokio) from 0.1.8 to 0.1.13. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Changelog](https://github.com/tokio-rs/tokio/blob/tokio-0.1.13/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-io-0.1.8...tokio-0.1.13)
build(deps): bump tokio-io from 0.1.8 to 0.1.13 Bumps [tokio-io](https://github.com/tokio-rs/tokio) from 0.1.8 to 0.1.13. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Changelog](https://github.com/tokio-rs/tokio/blob/tokio-0.1.13/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/tokio/compare/t...
diff --git a/Cargo.lock b/Cargo.lock index 1354dbb1d7b2e..b59bcf9c12243 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5912,9 +5912,9 @@ dependencies = [ [[package]] name = "tokio-io" -version = "0.1.8" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d6cc2de7725863c...
core
https://github.com/vuejs/core
af9e6999e1779f56b5cf827b97310d8e4e1fe5ec
Evan You
2021-04-12 22:38:07
feat: support casting plain element to component via is="vue:xxx"
In Vue 3's custom elements interop, we no longer process `is` usage on known native elements as component casting. (ref:
feat: support casting plain element to component via is="vue:xxx" In Vue 3's custom elements interop, we no longer process `is` usage on known native elements as component casting. (ref: https://v3.vuejs.org/guide/migration/custom-elements-interop.html) This introduced the need for `v-is`. However, since it is a direc...
diff --git a/packages/compiler-core/src/parse.ts b/packages/compiler-core/src/parse.ts index 77e91935119..3bcf4159d5f 100644 --- a/packages/compiler-core/src/parse.ts +++ b/packages/compiler-core/src/parse.ts @@ -488,7 +488,12 @@ function parseTag( const options = context.options if (!context.inVPre && !options.i...
azerothcore-wotlk
https://github.com/azerothcore/azerothcore-wotlk
851d3d3d9f4424b0211622e215e5d6005ce50e3f
github-actions[bot]
2024-10-14 00:24:05
chore(DB): import pending files
Referenced commit(s): 91a5c49943d49c6283c3e723495a012efd2a7a6e
chore(DB): import pending files Referenced commit(s): 91a5c49943d49c6283c3e723495a012efd2a7a6e
diff --git a/data/sql/updates/pending_db_world/DK_NPC_Phases_Fix.sql b/data/sql/updates/db_world/2024_10_13_02.sql similarity index 99% rename from data/sql/updates/pending_db_world/DK_NPC_Phases_Fix.sql rename to data/sql/updates/db_world/2024_10_13_02.sql index 4832f1a3ef2946..b5d5d18e2b0bdf 100644 --- a/data/sql/upd...
sentry
https://github.com/getsentry/sentry
2b4b88f10e480425e83708383bd6fbbe9c9f60fe
Ryan Albrecht
2022-10-04 23:29:56
feat(replays): Render the Replays Details page header as soon as data is available (#39530)
I pulled some bad images from the devtools performance inspector. I think it's clear enough to see that the header does get some content before the body comes in. | Render Step | Img | | ------------- | ------------- | | Placeholders | <img width="511" alt="Screen Shot 2022-09-30 at 3 37 07 PM" src="https://user-imag...
feat(replays): Render the Replays Details page header as soon as data is available (#39530) I pulled some bad images from the devtools performance inspector. I think it's clear enough to see that the header does get some content before the body comes in. | Render Step | Img | | ------------- | ------------- | | Plac...
diff --git a/static/app/utils/replays/hooks/useReplayData.tsx b/static/app/utils/replays/hooks/useReplayData.tsx index cda94e0b12e711..6e444776cfc612 100644 --- a/static/app/utils/replays/hooks/useReplayData.tsx +++ b/static/app/utils/replays/hooks/useReplayData.tsx @@ -70,6 +70,7 @@ type ReplayAttachment = { interfac...
discord.js
https://github.com/discordjs/discord.js
54d8750a2db63aea3581ea402ec5a854b5e854bd
Amgelo563
2025-01-24 16:02:56
docs(Message): improve message snapshots description (#10709)
* docs(Message): improve message snapshots description * docs(Message): remove snapshots single entry callout ---------
docs(Message): improve message snapshots description (#10709) * docs(Message): improve message snapshots description * docs(Message): remove snapshots single entry callout --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>
diff --git a/packages/discord.js/src/structures/Message.js b/packages/discord.js/src/structures/Message.js index 32035e2328cf..f6f473375996 100644 --- a/packages/discord.js/src/structures/Message.js +++ b/packages/discord.js/src/structures/Message.js @@ -425,7 +425,7 @@ class Message extends Base { if (data.mess...
gatsby
https://github.com/gatsbyjs/gatsby
a5b5cf8379b7c105119e348d41723f3b2bd7b527
Vladimir Razuvaev
2021-04-09 18:38:25
feat: upgrade to remark 13 (#29678)
* chore(gatsby-transformer-remark): ugprade remark-related deps * tests: update snapshots for ToC * enable remark-gfm in a backwards compatible way * gatsby-remark-autolink-headers: bump deps * gatsby-remark-code-repls: bump deps * gatsby-remark-copy-linked-files: bump deps * gatsby-remark-prismjs: bump deps * g...
feat: upgrade to remark 13 (#29678) * chore(gatsby-transformer-remark): ugprade remark-related deps * tests: update snapshots for ToC * enable remark-gfm in a backwards compatible way * gatsby-remark-autolink-headers: bump deps * gatsby-remark-code-repls: bump deps * gatsby-remark-copy-linked-files: bump deps * ...
diff --git a/package.json b/package.json index 9d53f1f196e2f..40378f10d10db 100644 --- a/package.json +++ b/package.json @@ -64,15 +64,15 @@ "npm-run-all": "4.1.5", "plop": "^1.9.1", "prettier": "2.1.2", - "remark": "^12.0.1", - "remark-cli": "^8.0.1", - "remark-frontmatter": "^2.0.0", - "rem...
angular
https://github.com/angular/angular
3553977bd75c8e168f1d4bfa42b7f09c677f7cbf
Rob Wormald
2018-07-03 03:07:41
feat(core): add support for ShadowDOM v1 (#24718)
add a new ViewEncapsulation.ShadowDom option that uses the v1 Shadow DOM API to provide style encapsulation. PR Close #24718
feat(core): add support for ShadowDOM v1 (#24718) add a new ViewEncapsulation.ShadowDom option that uses the v1 Shadow DOM API to provide style encapsulation. PR Close #24718
diff --git a/aio/content/guide/component-styles.md b/aio/content/guide/component-styles.md index aef31566b0a55..f7d564fca1ec3 100644 --- a/aio/content/guide/component-styles.md +++ b/aio/content/guide/component-styles.md @@ -280,12 +280,14 @@ To control how this encapsulation happens on a *per component* basis, you ca...
one-api
https://github.com/songquanpeng/one-api
bc6769826bb827ca323beac6118bfd15e829fee4
ShinChven ✨
2023-12-17 17:19:08
feat: add condition to validate n value for non-Azure channels (#775)
- Add a condition to validate the n value only for non-Azure channels, ensuring it falls within the acceptable range. - Fix Azure compatibility
feat: add condition to validate n value for non-Azure channels (#775) - Add a condition to validate the n value only for non-Azure channels, ensuring it falls within the acceptable range. - Fix Azure compatibility
diff --git a/controller/relay-image.go b/controller/relay-image.go index bf916474b6..7e1fed3925 100644 --- a/controller/relay-image.go +++ b/controller/relay-image.go @@ -82,7 +82,10 @@ func relayImageHelper(c *gin.Context, relayMode int) *OpenAIErrorWithStatusCode // Number of generated images validation if isWi...
liquidprompt
https://github.com/liquidprompt/liquidprompt
fcc96958852e5e9538df36c3b0ccfe94abd4bbef
nojhan
2023-03-27 15:44:18
feat(path): adds LP_ENABLE_PATH
Allow to disable path displaying.
feat(path): adds LP_ENABLE_PATH Allow to disable path displaying.
diff --git a/docs/config.rst b/docs/config.rst index f9a5fd71..27e64854 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -739,6 +739,14 @@ Features .. versionadded:: 2.2 +.. attribute:: LP_ENABLE_PATH + :type: bool + :value: 1 + + Display the current working directory. + + .. versionadded:: 2.2 + ...
cilium
https://github.com/cilium/cilium
1365ecde205c0b83f62959c1a3cb1001b31dc1b1
dependabot[bot]
2022-01-20 13:54:31
build(deps): bump github/codeql-action from 1.0.27 to 1.0.28
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1.0.27 to 1.0.28. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/cd783c8a29bdcf5a5c79c...
build(deps): bump github/codeql-action from 1.0.27 to 1.0.28 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1.0.27 to 1.0.28. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https:/...
diff --git a/.github/workflows/lint-codeql.yaml b/.github/workflows/lint-codeql.yaml index 9c027f19f9b7a..cec961f51d748 100644 --- a/.github/workflows/lint-codeql.yaml +++ b/.github/workflows/lint-codeql.yaml @@ -51,8 +51,8 @@ jobs: persist-credentials: false fetch-depth: 1 - name: Initialize Cod...
angular
https://github.com/angular/angular
0399ffcf447228005e4fe88918295ab87aced9b5
Paul Gschwendtner
2024-10-15 19:19:22
refactor(migrations): remove outdated TODOs in queries migration (#58190)
These TODOs are no longer relevant. PR Close #58190
refactor(migrations): remove outdated TODOs in queries migration (#58190) These TODOs are no longer relevant. PR Close #58190
diff --git a/packages/core/schematics/migrations/signal-queries-migration/migration.ts b/packages/core/schematics/migrations/signal-queries-migration/migration.ts index c6847dc2fa87d..853efc591785f 100644 --- a/packages/core/schematics/migrations/signal-queries-migration/migration.ts +++ b/packages/core/schematics/migr...
components
https://github.com/angular/components
eebfce4247b622857b7ac68ea0b562a1effe1dd5
Jeremy Elbourn
2018-02-06 23:01:37
chore: add span around tab label content (#9765)
* chore: add span around tab label content This is needed for some customization cases. * Fix flex alignment issues
chore: add span around tab label content (#9765) * chore: add span around tab label content This is needed for some customization cases. * Fix flex alignment issues
diff --git a/src/lib/tabs/_tabs-common.scss b/src/lib/tabs/_tabs-common.scss index 8a55eaa172fb..0e9e5b2e754b 100644 --- a/src/lib/tabs/_tabs-common.scss +++ b/src/lib/tabs/_tabs-common.scss @@ -28,6 +28,13 @@ $mat-tab-animation-duration: 500ms !default; &.mat-tab-disabled { cursor: default; } + + &.mat-tab...
ockam
https://github.com/build-trust/ockam
8b61f4694f19cb37843f821618381b525a0ae9ae
Joshua Ford
2022-10-07 09:00:59
build: add "coverage" profile to cargo
Cargo doesn't fully pay attention to the RUSTFLAGS variable. As such, to pass appropriate flags to rustc, Cargo uses a profile. We thus create a profile specifically for generating code coverage and updating the code coverage docs accordingly. See https://github.com/rust-lang/rust/issues/78011.
build: add "coverage" profile to cargo Cargo doesn't fully pay attention to the RUSTFLAGS variable. As such, to pass appropriate flags to rustc, Cargo uses a profile. We thus create a profile specifically for generating code coverage and updating the code coverage docs accordingly. See https://github.com/rust-lang/ru...
diff --git a/Cargo.toml b/Cargo.toml index 2f7f3618622..77637f907c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,3 +32,16 @@ members = [ ] exclude = ["implementations/rust/ockam/ockam_examples/example_projects"] + +# Coverage profile for generating code coverage with grcov. +# +# See https://github.com/rust-lang...
node
https://github.com/nodejs/node
0e35683876bfe0a9c008865232bfabc974e3ddd3
Piotr Grzesik
2018-03-11 08:07:56
test: Remove unnecessary asserion messages in test-crypto-hash.js
This commit improves asserion messages in parallel/test-crypto-hash.js. Instead of just simple string literal, messages are changed to also include values used in assertion, which should improve debugging in case of errors.
test: Remove unnecessary asserion messages in test-crypto-hash.js This commit improves asserion messages in parallel/test-crypto-hash.js. Instead of just simple string literal, messages are changed to also include values used in assertion, which should improve debugging in case of errors. PR-URL: https://github.com/n...
diff --git a/test/parallel/test-crypto-hash.js b/test/parallel/test-crypto-hash.js index bf080b1970369e..e425e1fe4cdb60 100644 --- a/test/parallel/test-crypto-hash.js +++ b/test/parallel/test-crypto-hash.js @@ -82,15 +82,15 @@ assert.deepStrictEqual( ); // stream interface should produce the same result. -assert.de...
node
https://github.com/nodejs/node
5a5b74aad6c7758dd54802c9d56b9ed4c9dfaef8
Rich Trott
2016-05-17 02:08:31
test: move test-debugger-debug-brk to sequential
Move test from `test/debugger` to `test/sequential` so that it is exercised by CI and `make test`.
test: move test-debugger-debug-brk to sequential Move test from `test/debugger` to `test/sequential` so that it is exercised by CI and `make test`. PR-URL: https://github.com/nodejs/node/pull/6731 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James ...
diff --git a/test/debugger/test-debugger-debug-brk.js b/test/sequential/test-debugger-debug-brk.js similarity index 100% rename from test/debugger/test-debugger-debug-brk.js rename to test/sequential/test-debugger-debug-brk.js
oxc
https://github.com/oxc-project/oxc
0c134422bacb1986b080ca5ea4103e5cedc12012
renovate
2024-07-26 06:56:44
chore(deps): update dependency rust to v1.80.0 (#4474)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [rust](https://togithub.com/rust-lang/rust) | minor | `1.79.0` -> `1.80.0` | --- ### Release Notes <details> <summary>rust-lang/rust (rust...
chore(deps): update dependency rust to v1.80.0 (#4474) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [rust](https://togithub.com/rust-lang/rust) | minor | `1.79.0` -> `1.80.0` | --- ##...
diff --git a/.clippy.toml b/.clippy.toml new file mode 100644 index 0000000000000..7d99e6bdaa508 --- /dev/null +++ b/.clippy.toml @@ -0,0 +1 @@ +ignore-interior-mutability = ["oxc_linter::rule::RuleWithSeverity"] diff --git a/Cargo.toml b/Cargo.toml index cb08355e0e132..a4ce5e9d6b559 100644 --- a/Cargo.toml +++ b/Cargo...