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 ⌀ |
|---|---|---|---|---|---|---|---|---|
ruffle | https://github.com/ruffle-rs/ruffle | b8efc1cd9b407fbbafbaeaa2a2d55333e783b935 | dependabot[bot] | 2021-10-01 00:05:02 | build(deps-dev): bump chromedriver from 92.0.2 to 94.0.0 in /web | Bumps [chromedriver](https://github.com/giggio/node-chromedriver) from 92.0.2 to 94.0.0.
- [Release notes](https://github.com/giggio/node-chromedriver/releases)
- [Commits](https://github.com/giggio/node-chromedriver/compare/92.0.2...94.0.0)
--- | build(deps-dev): bump chromedriver from 92.0.2 to 94.0.0 in /web
Bumps [chromedriver](https://github.com/giggio/node-chromedriver) from 92.0.2 to 94.0.0.
- [Release notes](https://github.com/giggio/node-chromedriver/releases)
- [Commits](https://github.com/giggio/node-chromedriver/compare/92.0.2...94.0.0)
---
updated... | diff --git a/web/package-lock.json b/web/package-lock.json
index 59ad80e15540c..a15e742b5460d 100644
--- a/web/package-lock.json
+++ b/web/package-lock.json
@@ -18,7 +18,7 @@
"@wdio/static-server-service": "^7.10.1",
"chai": "^4.3.4",
"chai-html": "^2.0.1",
- ... |
angular | https://github.com/angular/angular | cf4718c3665b3ec17a8c7cb1001a4336918eee9b | Pete Bacon Darwin | 2019-03-21 00:15:54 | feat(ivy): ngcc - support dts compilation via ES5 bundles (#29092) | Previously we only compiled the typings files, in ngcc, if there was
an ES2015 formatted bundle avaiable. This turns out to be an artificial
constraint and we can also support typings compilation via ES5 formats
too.
This commit changes the ngcc compiler to attempt typings compilation
via ES5 if necessary. The order o... | feat(ivy): ngcc - support dts compilation via ES5 bundles (#29092)
Previously we only compiled the typings files, in ngcc, if there was
an ES2015 formatted bundle avaiable. This turns out to be an artificial
constraint and we can also support typings compilation via ES5 formats
too.
This commit changes the ngcc compi... | diff --git a/packages/compiler-cli/src/ngcc/src/host/esm5_host.ts b/packages/compiler-cli/src/ngcc/src/host/esm5_host.ts
index c6ab1d85be094..a485bcd9320b5 100644
--- a/packages/compiler-cli/src/ngcc/src/host/esm5_host.ts
+++ b/packages/compiler-cli/src/ngcc/src/host/esm5_host.ts
@@ -32,8 +32,6 @@ import {Esm2015Reflec... |
socket.io | https://github.com/socketio/socket.io | bc98bf12323388cd546f5e73443c231e0ea9d4a0 | Damien Arrachequesne | 2023-01-10 19:52:57 | refactor: bump prettier to version 2.8.1 | This major bump creates a lot of noise, but it is necessary for
prettier to be able to parse new syntax such as:
- typed imports: `import { type xxx } from ...`
- private attributes: `class A { #b; #c() {} }` | refactor: bump prettier to version 2.8.1
This major bump creates a lot of noise, but it is necessary for
prettier to be able to parse new syntax such as:
- typed imports: `import { type xxx } from ...`
- private attributes: `class A { #b; #c() {} }` | diff --git a/lib/engine.io.ts b/lib/engine.io.ts
index b57ed6390d..1969f71a4d 100644
--- a/lib/engine.io.ts
+++ b/lib/engine.io.ts
@@ -26,7 +26,7 @@ function listen(port, options: AttachOptions & ServerOptions, fn) {
options = {};
}
- const server = createServer(function(req, res) {
+ const server = createS... |
tilt | https://github.com/tilt-dev/tilt | de8b6ae97d385354e4abfc247fd2ddfba81d55c5 | Maia McCormick | 2018-08-30 02:21:32 | build: rename local -> image (#217) | * build: rename local -> image
* fix naming collision
* gen wire code | build: rename local -> image (#217)
* build: rename local -> image
* fix naming collision
* gen wire code | diff --git a/internal/build/image_builder.go b/internal/build/image_builder.go
index 10336056f5..3f86432435 100644
--- a/internal/build/image_builder.go
+++ b/internal/build/image_builder.go
@@ -41,7 +41,7 @@ type ImageBuilder interface {
TagImage(ctx context.Context, name reference.Named, dig digest.Digest) (referen... |
node | https://github.com/nodejs/node | d416a59f91b97410684e4b34c18f0e8ff6d92f0c | Rich Trott | 2016-04-05 08:55:09 | test: make use of globals explicit | Use `global` to be explicit that a global variable is intended. | test: make use of globals explicit
Use `global` to be explicit that a global variable is intended.
PR-URL: https://github.com/nodejs/node/pull/6014
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | diff --git a/test/parallel/test-vm-static-this.js b/test/parallel/test-vm-static-this.js
index a5f5ad9415a828..143e4e12216d5e 100644
--- a/test/parallel/test-vm-static-this.js
+++ b/test/parallel/test-vm-static-this.js
@@ -14,25 +14,25 @@ assert.throws(function() {
vm.runInThisContext('throw new Error(\'test\');');
... |
next.js | https://github.com/vercel/next.js | c8f96d50ffa7fcd222cc359ae111c0bcc8fe0396 | Donny/강동윤 | 2024-11-21 19:36:41 | perf(turbopack): Enable merging of export fragments (#72813) | ### What?
Enable single-incoming-edge optimization for module fragments with `ModulePart::Export`.
### Why?
It will reduce the number of modules greatly.
### How?
Closes PACK-3481 | perf(turbopack): Enable merging of export fragments (#72813)
### What?
Enable single-incoming-edge optimization for module fragments with `ModulePart::Export`.
### Why?
It will reduce the number of modules greatly.
### How?
Closes PACK-3481 | diff --git a/crates/next-api/src/server_actions.rs b/crates/next-api/src/server_actions.rs
index ddec197beee2c..469edf93f97df 100644
--- a/crates/next-api/src/server_actions.rs
+++ b/crates/next-api/src/server_actions.rs
@@ -12,7 +12,10 @@ use swc_core::{
atoms::Atom,
common::comments::Comments,
ecma::{
... |
TDengine | https://github.com/taosdata/TDengine | 89e4be84fe349341b6a1fe258957994123252103 | Ganlin Zhao | 2022-07-04 12:10:12 | fix(query): add histogram function parameter check | TD-16972 | fix(query): add histogram function parameter check
TD-16972 | diff --git a/source/libs/function/src/builtins.c b/source/libs/function/src/builtins.c
index e016771bc93f..4d5ed5e20a11 100644
--- a/source/libs/function/src/builtins.c
+++ b/source/libs/function/src/builtins.c
@@ -18,6 +18,7 @@
#include "querynodes.h"
#include "scalar.h"
#include "taoserror.h"
+#include "cJSON.h"
... |
webpack | https://github.com/webpack/webpack | 8f222c74c9998c9e57dff34966b00ae6ff78fd0a | dependabot-preview[bot] | 2020-01-08 21:15:26 | chore(deps): bump events from 3.0.0 to 3.1.0 | Bumps [events](https://github.com/Gozala/events) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/Gozala/events/releases)
- [Changelog](https://github.com/Gozala/events/blob/master/History.md)
- [Commits](https://github.com/Gozala/events/compare/v3.0.0...v3.1.0) | chore(deps): bump events from 3.0.0 to 3.1.0
Bumps [events](https://github.com/Gozala/events) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/Gozala/events/releases)
- [Changelog](https://github.com/Gozala/events/blob/master/History.md)
- [Commits](https://github.com/Gozala/events/compare/v3.0.0...v3.1.0)
S... | diff --git a/yarn.lock b/yarn.lock
index 867469649ba..8af5b12328f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2088,9 +2088,9 @@ event-emitter@^0.3.5:
es5-ext "~0.10.14"
events@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88"
... |
bash-completion | https://github.com/scop/bash-completion | 787b2b15ad980a44954c082edfd1669f30ff3e4c | Ville Skyttä | 2021-03-28 14:35:34 | fix(jq): do not complete after --args or --jsonargs | Closes https://github.com/scop/bash-completion/issues/511 | fix(jq): do not complete after --args or --jsonargs
Closes https://github.com/scop/bash-completion/issues/511 | diff --git a/completions/jq b/completions/jq
index 4e28e8e0627..3ffbeb28e6e 100644
--- a/completions/jq
+++ b/completions/jq
@@ -57,6 +57,11 @@ _jq()
return
fi
+ local word
+ for word in "${words[@]}"; do
+ [[ $word != --?(json)args ]] || return
+ done
+
local args
# TODO: DTRT... |
sentry | https://github.com/getsentry/sentry | 26c21649feed284e494840a7cd77282a4aff7661 | Shruthi | 2022-07-19 01:13:58 | feat(widget-builder): Move top level filters to Filter step (#36663) | These are also disabled since we're pinning the
filters to the dashboard and don't want to allow
changes in the widget. | feat(widget-builder): Move top level filters to Filter step (#36663)
These are also disabled since we're pinning the
filters to the dashboard and don't want to allow
changes in the widget. | diff --git a/static/app/components/datePageFilter.tsx b/static/app/components/datePageFilter.tsx
index 56c709a3452d72..52bd574fc3facc 100644
--- a/static/app/components/datePageFilter.tsx
+++ b/static/app/components/datePageFilter.tsx
@@ -31,7 +31,7 @@ type Props = Omit<
resetParamsOnChange?: string[];
};
-fu... |
sentry | https://github.com/getsentry/sentry | 3a356c3104d12844c89fa89247ae36dc319f5b1e | Alex Zaslavsky | 2023-07-13 23:43:55 | test(backup): Add monitor tests (#52485) | Tests for monitoring. | test(backup): Add monitor tests (#52485)
Tests for monitoring.
Issue: getsentry/team-ospo#156 | diff --git a/tests/sentry/backup/test_models.py b/tests/sentry/backup/test_models.py
index 805d110e3b77a1..816a19600b1965 100644
--- a/tests/sentry/backup/test_models.py
+++ b/tests/sentry/backup/test_models.py
@@ -7,6 +7,8 @@
from django.core.management import call_command
from sentry.db.postgres.roles import in_t... |
UTM | https://github.com/utmapp/UTM | 142bf5fbae1f18ed4f854c1b912e8cb1e32bd72e | osy | 2022-01-21 08:29:47 | build: iOS 15.x simulator fix | Fix "symbol not found in flat namespace '_strcmp'"
Thanks @saagarjha for the hint. | build: iOS 15.x simulator fix
Fix "symbol not found in flat namespace '_strcmp'"
Thanks @saagarjha for the hint.
Fixes #3463 | diff --git a/patches/json-glib-1.2.8.patch b/patches/json-glib-1.2.8.patch
new file mode 100644
index 000000000..681d00680
--- /dev/null
+++ b/patches/json-glib-1.2.8.patch
@@ -0,0 +1,12 @@
+diff -Naur a/configure b/configure
+--- a/configure 2017-03-18 06:35:39.000000000 -0700
++++ b/configure 2022-01-20 18:35:29.0000... |
kafdrop | https://github.com/obsidiandynamics/kafdrop | 03c3e28f127cbfac1d0415d44e158630dbdcd9a9 | dependabot[bot] | 2023-11-04 12:21:16 | build(deps): bump protobuf.version from 3.24.4 to 3.25.0 (#587) | Bumps `protobuf.version` from 3.24.4 to 3.25.0.
Updates `com.google.protobuf:protobuf-java` from 3.24.4 to 3.25.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](https://github.com/protocolbuff... | build(deps): bump protobuf.version from 3.24.4 to 3.25.0 (#587)
Bumps `protobuf.version` from 3.24.4 to 3.25.0.
Updates `com.google.protobuf:protobuf-java` from 3.24.4 to 3.25.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/... | diff --git a/pom.xml b/pom.xml
index 1dc7e051..623975c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
<!-- name of parameter changed in latest mvn javadoc plugin version-->
<additionalOptions>-Xdoclint:none</additionalOptions>
<project.build.sourceEncoding>UTF-8</project.build.sourceEn... |
sentry-dart | https://github.com/getsentry/sentry-dart | d84010df15f2e7968a541508d870578faf170826 | dependabot[bot] | 2025-02-05 21:05:27 | build(deps): bump ruby/setup-ruby from 1.214.0 to 1.215.0 (#2655) | Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.214.0 to 1.215.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases)
- [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb)
- [Commits](https://github.com/ruby/setup-ruby/compare/1287d2b408066abada82d5ad1c63652e758428d9...2... | build(deps): bump ruby/setup-ruby from 1.214.0 to 1.215.0 (#2655)
Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.214.0 to 1.215.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases)
- [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb)
- [Commits](https://github.com/r... | diff --git a/.github/workflows/testflight.yml b/.github/workflows/testflight.yml
index e2b95fd66a..2eb68fe55c 100644
--- a/.github/workflows/testflight.yml
+++ b/.github/workflows/testflight.yml
@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410e... |
cloud-hypervisor | https://github.com/cloud-hypervisor/cloud-hypervisor | 5fc71dec3411f97ab8973f5a7b4199f7cfe6729f | dependabot[bot] | 2024-05-02 05:44:18 | build: Bump syn from 2.0.58 to 2.0.60 in /fuzz | Bumps [syn](https://github.com/dtolnay/syn) from 2.0.58 to 2.0.60.
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](https://github.com/dtolnay/syn/compare/2.0.58...2.0.60)
--- | build: Bump syn from 2.0.58 to 2.0.60 in /fuzz
Bumps [syn](https://github.com/dtolnay/syn) from 2.0.58 to 2.0.60.
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](https://github.com/dtolnay/syn/compare/2.0.58...2.0.60)
---
updated-dependencies:
- dependency-name: syn
dependency-type: indirect
... | diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock
index 61443210ac..8ac3e8ca09 100644
--- a/fuzz/Cargo.lock
+++ b/fuzz/Cargo.lock
@@ -761,9 +761,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "syn"
-version = "2.0.58"
+version = "2.0.60"
source = "registry+https:... |
scylladb | https://github.com/scylladb/scylladb | 6f3a44cde9a2d17adfaeac1f54f073fd8b27bbf4 | Kefu Chai | 2023-02-28 18:58:46 | build: cmake: link the whole auth | without this change, linker would like to remove the .o which is not
referenced by auther translation units. but we do use static variables
to, for instance, register classess to a global registry.
so, let's force the linker to include the whole archive. | build: cmake: link the whole auth
without this change, linker would like to remove the .o which is not
referenced by auther translation units. but we do use static variables
to, for instance, register classess to a global registry.
so, let's force the linker to include the whole archive.
Signed-off-by: Kefu Chai <ke... | diff --git a/auth/CMakeLists.txt b/auth/CMakeLists.txt
index f51e122ff2b8..624ef8e8b988 100644
--- a/auth/CMakeLists.txt
+++ b/auth/CMakeLists.txt
@@ -1,5 +1,5 @@
-add_library(auth STATIC)
-target_sources(auth
+add_library(scylla_auth STATIC)
+target_sources(scylla_auth
PRIVATE
allow_all_authenticator.cc
a... |
kit | https://github.com/sveltejs/kit | ce0e9a4713d453e0d4563264273f407cff3a82a3 | Csaba Balázs | 2023-03-06 22:44:42 | docs: update adapter-node.md (#9309) | * Update adapter-node.md
fix npm ci command line
extend ORIGIN samples
* Update documentation/docs/25-build-and-deploy/40-adapter-node.md | docs: update adapter-node.md (#9309)
* Update adapter-node.md
fix npm ci command line
extend ORIGIN samples
* Update documentation/docs/25-build-and-deploy/40-adapter-node.md
Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
* Update documentation/docs/25-build-and-deploy/40-adapter-node.md
C... | diff --git a/documentation/docs/25-build-and-deploy/40-adapter-node.md b/documentation/docs/25-build-and-deploy/40-adapter-node.md
index f8af999a197b..bbb8fa5d3cda 100644
--- a/documentation/docs/25-build-and-deploy/40-adapter-node.md
+++ b/documentation/docs/25-build-and-deploy/40-adapter-node.md
@@ -24,7 +24,7 @@ exp... |
amplify-flutter | https://github.com/aws-amplify/amplify-flutter | 8d87ea871b2d8a716f0f7f087e2660b7a8e61994 | Dillon Nys | 2023-03-22 05:45:28 | fix(auth): Always pass client metadata | Corrects some instances where `clientMetadata` was not being included in `RespondToAuthRequest` objects. | fix(auth): Always pass client metadata
Corrects some instances where `clientMetadata` was not being included in `RespondToAuthRequest` objects. | diff --git a/packages/auth/amplify_auth_cognito_dart/lib/src/state/event/sign_in_event.dart b/packages/auth/amplify_auth_cognito_dart/lib/src/state/event/sign_in_event.dart
index e42edd18e7..797b6213b7 100644
--- a/packages/auth/amplify_auth_cognito_dart/lib/src/state/event/sign_in_event.dart
+++ b/packages/auth/amplif... |
NETworkManager | https://github.com/BornToBeRoot/NETworkManager | d85a95b89b5820cf3777cbd64392bfa11656848a | BornToBeRoot | 2023-05-03 23:53:59 | Fix: Button design (#2230) | * Fix: Button design
* Docs: #2230 | Fix: Button design (#2230)
* Fix: Button design
* Docs: #2230 | diff --git a/Source/NETworkManager/Views/SubnetCalculatorSubnettingView.xaml b/Source/NETworkManager/Views/SubnetCalculatorSubnettingView.xaml
index 0ff86fe19f..c6ca09895b 100644
--- a/Source/NETworkManager/Views/SubnetCalculatorSubnettingView.xaml
+++ b/Source/NETworkManager/Views/SubnetCalculatorSubnettingView.xaml
@... |
aws-cdk | https://github.com/aws/aws-cdk | f35b70b547810a56d1d4d0f41d41c3d610e8d780 | ahmetsoykan | 2023-03-23 05:32:58 | fix(dynamodb): add missing iam permissions to custom resource for deleting dynamodb replica table (#24682) | > Adding missing iam permissions to custom resource for deleting replicated regions. Since DeleteTableReplica is not enough on its own, DeleteTable permission has also been added.
>
>
> is not authorized to perform: dynamodb:DeleteTableReplica on resource: arn:aws:dynamodb:us-east-2::table/global-replica-region-table b... | fix(dynamodb): add missing iam permissions to custom resource for deleting dynamodb replica table (#24682)
> Adding missing iam permissions to custom resource for deleting replicated regions. Since DeleteTableReplica is not enough on its own, DeleteTable permission has also been added.
>
>
> is not authorized to perfo... | diff --git a/packages/@aws-cdk/aws-dynamodb/lib/replica-provider.ts b/packages/@aws-cdk/aws-dynamodb/lib/replica-provider.ts
index fabb209af83cd..9186de8d7347d 100644
--- a/packages/@aws-cdk/aws-dynamodb/lib/replica-provider.ts
+++ b/packages/@aws-cdk/aws-dynamodb/lib/replica-provider.ts
@@ -9,6 +9,16 @@ import { Const... |
rolldown | https://github.com/rolldown/rolldown | 2cd7d49eca7f7d5f8b71db0ef07ceb42ecbc3d11 | Yunfei He | 2023-11-04 18:46:56 | feat: use `ariadne` for better error display (#163) | * feat: use `ariadne` for better error display
* Lint | feat: use `ariadne` for better error display (#163)
* feat: use `ariadne` for better error display
* Lint | diff --git a/Cargo.lock b/Cargo.lock
index 209fada83c23..7218832cdd22 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -59,6 +59,16 @@ version = "1.0.75"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
+[[package]]
+name = "ar... |
redwood | https://github.com/redwoodjs/redwood | ee52685f2820d39638e49c964fb86d058fb1e73a | Tobbe Lundberg | 2025-03-19 14:11:26 | docs(dbauth): Update the passwordless/OTP how-to (#11994) | I was working through the passwordless how-to and noticed that it hadn't
been updated in a while to match newer RW templates/conventions. So I
updated it as I followed along. It still needs more work. Most pressing
issue is converting it to TypeScript. But I don't have time for that
now, and this is still a big improve... | docs(dbauth): Update the passwordless/OTP how-to (#11994)
I was working through the passwordless how-to and noticed that it hadn't
been updated in a while to match newer RW templates/conventions. So I
updated it as I followed along. It still needs more work. Most pressing
issue is converting it to TypeScript. But I do... | diff --git a/docs/docs/how-to/dbauth-passwordless.md b/docs/docs/how-to/dbauth-passwordless.md
index 8c2e8d0a6172..9d4611c71eda 100644
--- a/docs/docs/how-to/dbauth-passwordless.md
+++ b/docs/docs/how-to/dbauth-passwordless.md
@@ -2,7 +2,7 @@
Security is really important. Sometimes you don't want to integrate with a... |
node | https://github.com/nodejs/node | 67b7d540413614b97e107fa92e9f3989d8ab0b22 | Anna Henningsen | 2018-03-02 16:26:08 | test: allow running with `NODE_PENDING_DEPRECATION` | Make the test for pending deprecations work when the env var
is set during the whole test suite run. | test: allow running with `NODE_PENDING_DEPRECATION`
Make the test for pending deprecations work when the env var
is set during the whole test suite run.
PR-URL: https://github.com/nodejs/node/pull/18991
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Tiancheng "T... | diff --git a/test/parallel/test-pending-deprecation.js b/test/parallel/test-pending-deprecation.js
index 9b1fd5addfa0c6..f8b4ec8e5b7b94 100644
--- a/test/parallel/test-pending-deprecation.js
+++ b/test/parallel/test-pending-deprecation.js
@@ -25,7 +25,8 @@ switch (process.argv[2]) {
break;
default:
// Veri... |
aws-cdk | https://github.com/aws/aws-cdk | d1264c1c414257fb8dd5288fdc24cfe9605cdf90 | santanugho | 2023-03-06 15:30:28 | fix(servicecatalogappregistry): Associate an application with attribute group (#24378) | `Application-AttributeGroup` association happens in `ApplicationStack`.
Therefore before the deployment of `ApplicationStack`, `AttributeGroup` stack should have been deployed.
But with `ApplicationAssociator `where we associate all the stacks with the application (created as a part of `ApplicationAssociator`), attribu... | fix(servicecatalogappregistry): Associate an application with attribute group (#24378)
`Application-AttributeGroup` association happens in `ApplicationStack`.
Therefore before the deployment of `ApplicationStack`, `AttributeGroup` stack should have been deployed.
But with `ApplicationAssociator `where we associate a... | diff --git a/packages/@aws-cdk/aws-servicecatalogappregistry/README.md b/packages/@aws-cdk/aws-servicecatalogappregistry/README.md
index be09aef037fae..6c2ce7bf8d1d2 100644
--- a/packages/@aws-cdk/aws-servicecatalogappregistry/README.md
+++ b/packages/@aws-cdk/aws-servicecatalogappregistry/README.md
@@ -99,6 +99,45 @@ ... |
flame | https://github.com/flame-engine/flame | 4ff25ffb1f02716efce7c2409e50eeada526f739 | Sai Rajendra Immadi | 2023-03-24 18:06:53 | feat: Add scroll to right side nav (#2428) | when overflow-y, the scroll will be enabled on hover that makes us
scroll through the contents and click what's below
# Description
Initially, the contents section (the right side nav) doesn't scroll when
overflow. This PR adds the functionality to scroll when it overflows
vertically.
Working video: | feat: Add scroll to right side nav (#2428)
when overflow-y, the scroll will be enabled on hover that makes us
scroll through the contents and click what's below
# Description
Initially, the contents section (the right side nav) doesn't scroll when
overflow. This PR adds the functionality to scroll when it overflows
... | diff --git a/doc/_sphinx/theme/flames.css b/doc/_sphinx/theme/flames.css
index b6e9d307c2b..a120bb31a9e 100644
--- a/doc/_sphinx/theme/flames.css
+++ b/doc/_sphinx/theme/flames.css
@@ -396,12 +396,17 @@ div.nav-left li.current > ul {
*----------------------------------------------------------------------------*/
d... |
aniyomi | https://github.com/aniyomiorg/aniyomi | 7193a25fe45e2ee7f2724f96ab7d79d5c11f28fe | LuftVerbot | 2023-12-17 00:41:01 | fix(presentation-core): Fix double entries | Merged from Tachiyomi | fix(presentation-core): Fix double entries
Merged from Tachiyomi | diff --git a/presentation-core/src/main/java/tachiyomi/presentation/core/components/material/PullRefresh.kt b/presentation-core/src/main/java/tachiyomi/presentation/core/components/material/PullRefresh.kt
index 32d88f82e9..3ce22677a6 100644
--- a/presentation-core/src/main/java/tachiyomi/presentation/core/components/ma... |
sweetalert2 | https://github.com/sweetalert2/sweetalert2 | 37ae34e3d6c3b39c57c40448abef99c7e3342e1f | semantic-release-bot | 2022-08-21 01:14:35 | chore(release): 11.4.29 [skip ci] | ## [11.4.29](https://github.com/sweetalert2/sweetalert2/compare/v11.4.28...v11.4.29) (2022-08-20)
### Bug Fixes
* **toast:** html vertical alignment ([#2483](https://github.com/sweetalert2/sweetalert2/issues/2483)) ([f7742d1](https://github.com/sweetalert2/sweetalert2/commit/f7742d1374585de29fffc05bf7ec72b1f74b5ee8)) | chore(release): 11.4.29 [skip ci]
## [11.4.29](https://github.com/sweetalert2/sweetalert2/compare/v11.4.28...v11.4.29) (2022-08-20)
### Bug Fixes
* **toast:** html vertical alignment ([#2483](https://github.com/sweetalert2/sweetalert2/issues/2483)) ([f7742d1](https://github.com/sweetalert2/sweetalert2/commit/f7742d1... | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6492f2e37..dfd5f5465 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [11.4.29](https://github.com/sweetalert2/sweetalert2/compare/v11.4.28...v11.4.29) (2022-08-20)
+
+
+### Bug Fixes
+
+* **toast:** html vertical alignment ([#2483](https://github.com/swee... |
auto-dev | https://github.com/unit-mesh/auto-dev | 9219ac8300effce21cc0186a42592eeb6fc59988 | Phodal Huang | 2024-03-20 12:48:07 | feat(devins-lang): refactor extract SymbolInsCommand class and remove old implementation #101 | This commit introduces a new class `SymbolInsCommand` in the `devins-lang` extension, which provides functionality for symbol insertion. The old implementation has been removed to avoid code duplication and maintain a clean codebase. The new class is designed to handle symbol resolution and insertion more efficiently, ... | feat(devins-lang): refactor extract SymbolInsCommand class and remove old implementation #101
This commit introduces a new class `SymbolInsCommand` in the `devins-lang` extension, which provides functionality for symbol insertion. The old implementation has been removed to avoid code duplication and maintain a clean c... | diff --git a/exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/compiler/DevInsCompiler.kt b/exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/compiler/DevInsCompiler.kt
index a55759e4c5..d809eac7eb 100644
--- a/exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/compiler/DevInsCompiler.kt
++... |
angular | https://github.com/angular/angular | e2f9dcff689d80c124026fedca5a8bbd9546c01e | Paul Gschwendtner | 2021-10-27 05:28:27 | ci: update commit for components-repo-unit-tests job (#43932) | Updates the SHA for the components-repo-unit-tests job. Due to
us enabling code splittign in the Angular compiler CLI package,
the postinstall patches in Angular Components started failing. The
latest commit of Angular Components no longer patches any JS files of
the compiler-cli, so updating the job unblocks us from e... | ci: update commit for components-repo-unit-tests job (#43932)
Updates the SHA for the components-repo-unit-tests job. Due to
us enabling code splittign in the Angular compiler CLI package,
the postinstall patches in Angular Components started failing. The
latest commit of Angular Components no longer patches any JS fi... | diff --git a/.circleci/config.yml b/.circleci/config.yml
index df32c008a6c82..628851a765fb4 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -36,7 +36,7 @@ var_4_win: &cache_key_win_fallback v6-angular-win-node-14-{{ checksum "month.txt
# Cache key for the `components-repo-unit-tests` job. **Note** wh... |
hanko | https://github.com/teamhanko/hanko | 931926b3f5b930a5c9ebd32a332bf6d353c3677f | dependabot[bot] | 2022-11-29 00:48:35 | chore(deps-dev): bump @typescript-eslint/parser in /frontend/elements | Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.43.0 to 5.45.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHA... | chore(deps-dev): bump @typescript-eslint/parser in /frontend/elements
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.43.0 to 5.45.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://githu... | diff --git a/frontend/elements/package-lock.json b/frontend/elements/package-lock.json
index 514699bc2..cdd0c93ec 100644
--- a/frontend/elements/package-lock.json
+++ b/frontend/elements/package-lock.json
@@ -21,7 +21,7 @@
"devDependencies": {
"@types/preact-custom-element": "^4.0.1",
"@typescr... |
node | https://github.com/nodejs/node | fb3f6005c037f9af8f435edd0d1f407266af2916 | Masashi Hirano | 2019-04-24 13:37:09 | test: fix ineffective error tests | Fix tests whether errors are thrown correctly
because they are successful when error doesn't get thrown. | test: fix ineffective error tests
Fix tests whether errors are thrown correctly
because they are successful when error doesn't get thrown.
PR-URL: https://github.com/nodejs/node/pull/27333
Fixes: https://github.com/nodejs/node/issues/26385
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi Pinca... | diff --git a/test/addons/non-node-context/test-make-buffer.js b/test/addons/non-node-context/test-make-buffer.js
index 9b17fa4ee930ae..d134f63b77283c 100644
--- a/test/addons/non-node-context/test-make-buffer.js
+++ b/test/addons/non-node-context/test-make-buffer.js
@@ -9,14 +9,15 @@ const {
// Because the `Buffer` fu... |
OI-wiki | https://github.com/OI-wiki/OI-wiki | 7038f1ea2915b7d9233509db116638fd8d73c930 | CCXXXI | 2022-08-11 16:37:57 | feat(ds/rbtree): fix typos & simplify description (#4197) | * feat(ds/rbtree): fix typo & simplify description
* fix(ds/rbtree): fix typo | feat(ds/rbtree): fix typos & simplify description (#4197)
* feat(ds/rbtree): fix typo & simplify description
* fix(ds/rbtree): fix typo | diff --git a/docs/ds/rbtree.md b/docs/ds/rbtree.md
index 40bbbca4c99cd..66ea625f377c1 100644
--- a/docs/ds/rbtree.md
+++ b/docs/ds/rbtree.md
@@ -2,12 +2,12 @@
## 性质
-一棵合法的红黑树必须遵循以下四条性质
+一棵合法的红黑树必须遵循以下四条性质:
-1. 每个节点都必须是红色或黑色
+1. 节点为红色或黑色
2. NIL 节点(空叶子节点)为黑色
-3. 红色节点的左右子节点必须为黑色
-4. 从跟节点向下到 NIL 节点的每条路径上的黑色节点(包含 NI... |
oxc | https://github.com/oxc-project/oxc | 842edd87ea98d5ee487d4eb9388dbb9b20118964 | Yuji Sugiura | 2025-03-13 11:35:10 | feat(ast)!: Add `raw` property to `JSXText` node (#9641) | I happened to find this while trying out | feat(ast)!: Add `raw` property to `JSXText` node (#9641)
I happened to find this while trying out
https://github.com/leaysgur/prettier-plugin-oxc .
|Acorn|OXC|
|:---:|:-:|
||: fix release workflow (#4725) | this commit updates the release-productiion github workflow to support
the new two-step publishing system. the old logic that was has been
moved to the create-production-pr workflow has been removed, and the
necessary inputs to create a release from a specific branch in git have
been added. | chore(release): fix release workflow (#4725)
this commit updates the release-productiion github workflow to support
the new two-step publishing system. the old logic that was has been
moved to the create-production-pr workflow has been removed, and the
necessary inputs to create a release from a specific branch in git... | diff --git a/.github/workflows/create-production-pr.yml b/.github/workflows/create-production-pr.yml
index 413158dd738..944eac4127e 100644
--- a/.github/workflows/create-production-pr.yml
+++ b/.github/workflows/create-production-pr.yml
@@ -37,7 +37,7 @@ jobs:
- name: Checkout Code
uses: actions/checkou... |
cube | https://github.com/cube-js/cube | 762c1b2c04e6a873c435c9294ffaa75d9f788e9e | dependabot-preview[bot] | 2020-06-26 19:11:58 | build(deps-dev): bump testcontainers from 2.4.0 to 2.12.0 (#745) | Bumps [testcontainers](https://github.com/testcontainers/testcontainers-node) from 2.4.0 to 2.12.0.
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](https://github.com/testcontainers/testcontainers-node/compare/v2.4.0...v2.12.0) | build(deps-dev): bump testcontainers from 2.4.0 to 2.12.0 (#745)
Bumps [testcontainers](https://github.com/testcontainers/testcontainers-node) from 2.4.0 to 2.12.0.
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](https://github.com/testcontainers/testcontainers-node/compar... | diff --git a/packages/cubejs-clickhouse-driver/yarn.lock b/packages/cubejs-clickhouse-driver/yarn.lock
index 248f679dad050..a35be298b70b0 100644
--- a/packages/cubejs-clickhouse-driver/yarn.lock
+++ b/packages/cubejs-clickhouse-driver/yarn.lock
@@ -37,6 +37,18 @@
resolved "https://registry.yarnpkg.com/@types/color-n... |
scylladb | https://github.com/scylladb/scylladb | b9abad0515786566f4fbcaf0b4446a3c2c3259cf | Emil Maskovsky | 2024-07-11 19:53:26 | test: raft: fix the topology failure recovery test flakiness | Setting the error condition for all nodes in the cluster to avoid
having to check which one is the coordinator. This should make the test
more stable and avoid the flakiness observed when the coordinator node
is the one that got the error condition injected.
Randomizing the retrieved running servers to reproduce the i... | test: raft: fix the topology failure recovery test flakiness
Setting the error condition for all nodes in the cluster to avoid
having to check which one is the coordinator. This should make the test
more stable and avoid the flakiness observed when the coordinator node
is the one that got the error condition injected.... | diff --git a/test/topology/test_topology_failure_recovery.py b/test/topology/test_topology_failure_recovery.py
index 4b2eb23cc179..404b498d1a56 100644
--- a/test/topology/test_topology_failure_recovery.py
+++ b/test/topology/test_topology_failure_recovery.py
@@ -10,59 +10,98 @@
import pytest
import logging
import as... |
deno | https://github.com/denoland/deno | 42c10ecfdb5b48ef7cf1293ce8d2614d5fae9f33 | Bartek Iwańczuk | 2023-06-07 15:24:49 | perf(ext/websocket): monomorphize code (#19394) | Using `deopt-explorer` I found that a bunch of fields on `WebSocket`
class were polymorphic.
Fortunately it was enough to initialize them to `undefined`
to fix the problem. | perf(ext/websocket): monomorphize code (#19394)
Using `deopt-explorer` I found that a bunch of fields on `WebSocket`
class were polymorphic.
Fortunately it was enough to initialize them to `undefined`
to fix the problem. | diff --git a/ext/websocket/01_websocket.js b/ext/websocket/01_websocket.js
index a38af036aa96eb..f6cb6599d8f362 100644
--- a/ext/websocket/01_websocket.js
+++ b/ext/websocket/01_websocket.js
@@ -116,78 +116,18 @@ const _idleTimeoutDuration = Symbol("[[idleTimeout]]");
const _idleTimeoutTimeout = Symbol("[[idleTimeoutT... |
jumpserver | https://github.com/jumpserver/jumpserver | ea16088c08fc931e21d50137523d794a642ebecc | fit2bot | 2021-01-20 09:08:09 | fix: 修改翻译内容 (#5489) | * fix: 修改翻译内容
* fix: 修改翻译内容(2) | fix: 修改翻译内容 (#5489)
* fix: 修改翻译内容
* fix: 修改翻译内容(2)
Co-authored-by: Bai <bugatti_it@163.com> | diff --git a/apps/locale/zh/LC_MESSAGES/django.po b/apps/locale/zh/LC_MESSAGES/django.po
index d5e9ddc260e4..bb762fb8f5d8 100644
--- a/apps/locale/zh/LC_MESSAGES/django.po
+++ b/apps/locale/zh/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: JumpServer 0.3.3\n"
"Report-Msgid-Bugs-To: \n"... |
kanata | https://github.com/jtroo/kanata | 6ec565be17db9ddfda80e072214f73584b63e2a3 | Jan Tache | 2022-07-24 22:43:10 | chore(win): clean up unused code and features | The following code is removed:
- InputEvent.time since it has no apparent effect on output
- Unnecessary features for windows-native-gui | chore(win): clean up unused code and features
The following code is removed:
- InputEvent.time since it has no apparent effect on output
- Unnecessary features for windows-native-gui | diff --git a/Cargo.toml b/Cargo.toml
index 7386bad81..297b196eb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -31,14 +31,12 @@ evdev = "0.11.4"
[target.'cfg(target_os = "windows")'.dependencies]
encode_unicode = "0.3.6"
-winapi = { version = "0.3.9", features = ["consoleapi", "wincon"] }
-native-windows-gui = { versi... |
wireshark | https://github.com/wireshark/wireshark | 8924a58d1a1c300e136235b4703500a4ae0dbcc5 | John Thacker | 2024-10-12 17:48:46 | docs: Update the Qt and GLib references in INSTALL | This file is not often kept up to date. It does not list
all the required packages.
Switch back to wiki.wireshark.org
[skip ci] | docs: Update the Qt and GLib references in INSTALL
This file is not often kept up to date. It does not list
all the required packages.
Switch back to wiki.wireshark.org
[skip ci] | diff --git a/INSTALL b/INSTALL
index 812de8e789c..4de348a7f5b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,4 +1,4 @@
-See also https://gitlab.com/wireshark/wireshark/-/wikis/Development
+See also https://wiki.wireshark.org/Development/
and the Developer's Guide located at https://www.wireshark.org/docs/
and in the doc/ s... |
sentry | https://github.com/getsentry/sentry | 5e2cffe00a4f27a24f5a09218a458225b85af10c | Shruthi | 2024-04-25 01:40:09 | feat(spans): Indexed spans for aggregate span waterfall (#69016) | Switch to using indexed spans instead of nodestore after a certain
cutoff date (it's when the bloom filter index on transaction name was
added to spans dataset)
I'm going to follow up with proper tests for indexed spans since these
tests were written before we had a way to store them for tests | feat(spans): Indexed spans for aggregate span waterfall (#69016)
Switch to using indexed spans instead of nodestore after a certain
cutoff date (it's when the bloom filter index on transaction name was
added to spans dataset)
I'm going to follow up with proper tests for indexed spans since these
tests were written be... | diff --git a/src/sentry/api/endpoints/organization_spans_aggregation.py b/src/sentry/api/endpoints/organization_spans_aggregation.py
index a70d15d21bc3ff..68aab2d0d030af 100644
--- a/src/sentry/api/endpoints/organization_spans_aggregation.py
+++ b/src/sentry/api/endpoints/organization_spans_aggregation.py
@@ -1,7 +1,7 ... |
nocobase | https://github.com/nocobase/nocobase | 1c9e71dbf6533b6d330e116b9cd4ab4eaab2dc7c | Junyi | 2024-07-18 20:53:23 | feat(server): add cluster mode for starting app (#4895) | * feat(server): add cluster mode for starting app
* chore(env): adjust order of env item
* chore: sync in main data source
* chore: onSync in plugin
* refactor(server): change onSync to plugin method
--------- | feat(server): add cluster mode for starting app (#4895)
* feat(server): add cluster mode for starting app
* chore(env): adjust order of env item
* chore: sync in main data source
* chore: onSync in plugin
* refactor(server): change onSync to plugin method
---------
Co-authored-by: Chareice <chareice@live.com> | diff --git a/.env.example b/.env.example
index c6f7c0477b2db..2a199a79263dc 100644
--- a/.env.example
+++ b/.env.example
@@ -29,6 +29,12 @@ LOGGER_MAX_SIZE=
# console | json | logfmt | delimiter
LOGGER_FORMAT=
+# Start application in cluster mode when the value is set (same as pm2 -i <cluster_mode>).
+# Cluster mod... |
appsmith | https://github.com/appsmithorg/appsmith | 88f8078500360dfefda97e4de12d4ded217998a6 | Preet Sidhu | 2024-02-27 11:54:54 | fix: explicit zone drop in modal widget (#31079) | ## Description | fix: explicit zone drop in modal widget (#31079)
## Description
Issue: Modal widget canvas is not activated when a new zone is dragged
from entity explorer.
Fix: Add in a check for the target widget and enable activation of the
target canvas for this scenario.
https://github.com/appsmithorg/appsmith/assets/542478... | diff --git a/app/client/src/layoutSystems/anvil/canvasArenas/hooks/mainCanvas/useCanvasActivation.ts b/app/client/src/layoutSystems/anvil/canvasArenas/hooks/mainCanvas/useCanvasActivation.ts
index 17779cf79fde..ac263b4530cc 100644
--- a/app/client/src/layoutSystems/anvil/canvasArenas/hooks/mainCanvas/useCanvasActivatio... |
node | https://github.com/nodejs/node | c239581e64668946cc4e95f126dc55912a2bd527 | cjihrig | 2017-02-09 22:41:03 | test: fix incorrect indentation | Indentation is off in test-http-server-unconsume-consume.js.
The linter isn't complaining, but it probably should be. | test: fix incorrect indentation
Indentation is off in test-http-server-unconsume-consume.js.
The linter isn't complaining, but it probably should be.
PR-URL: https://github.com/nodejs/node/pull/11219
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M S... | diff --git a/test/parallel/test-http-server-unconsume-consume.js b/test/parallel/test-http-server-unconsume-consume.js
index b980a9ec776275..0cf8c4a753177b 100644
--- a/test/parallel/test-http-server-unconsume-consume.js
+++ b/test/parallel/test-http-server-unconsume-consume.js
@@ -13,7 +13,7 @@ testServer.on('connect'... |
leetcode | https://github.com/doocs/leetcode | b89c1e67510ff4589e9ad16613c84a9fdc076314 | yanglbme | 2022-09-02 15:16:11 | feat: add solutions to lc problem: No.0754 | No.0754.Reach a Number | feat: add solutions to lc problem: No.0754
No.0754.Reach a Number | diff --git a/solution/0700-0799/0754.Reach a Number/README.md b/solution/0700-0799/0754.Reach a Number/README.md
index 6b1f70281e767..d98a157a3ee01 100644
--- a/solution/0700-0799/0754.Reach a Number/README.md
+++ b/solution/0700-0799/0754.Reach a Number/README.md
@@ -53,6 +53,16 @@
<!-- 这里可写通用的实现逻辑 -->
+**方法一:数... |
aws-cdk | https://github.com/aws/aws-cdk | bf2c6298358a0eaa7db161798798dda37b1154aa | Rico Huijbers | 2020-10-06 17:19:21 | fix(pipelines): cannot use constructs in build environment (#10654) | The environment serialization that is used to calculate a hash
of the project configuration which is used to restart the pipeline
(still following?) was not taking into account that some of the
fields of `Environment` are not just data, but are objects.
We have to turn those into data before we can serialize them. | fix(pipelines): cannot use constructs in build environment (#10654)
The environment serialization that is used to calculate a hash
of the project configuration which is used to restart the pipeline
(still following?) was not taking into account that some of the
fields of `Environment` are not just data, but are object... | diff --git a/packages/@aws-cdk/pipelines/lib/synths/simple-synth-action.ts b/packages/@aws-cdk/pipelines/lib/synths/simple-synth-action.ts
index 785ef9cc46bc7..8365a3404e120 100644
--- a/packages/@aws-cdk/pipelines/lib/synths/simple-synth-action.ts
+++ b/packages/@aws-cdk/pipelines/lib/synths/simple-synth-action.ts
@@ ... |
rustlings | https://github.com/rust-lang/rustlings | 887d9193237a9315ce383f58b386c69594646125 | allcontributors[bot] | 2020-04-12 04:08:25 | docs: add MrFroop as a contributor (#325) | * docs: update README.md [skip ci]
* docs: update .all-contributorsrc [skip ci] | docs: add MrFroop as a contributor (#325)
* docs: update README.md [skip ci]
* docs: update .all-contributorsrc [skip ci]
Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> | diff --git a/.all-contributorsrc b/.all-contributorsrc
index c10d3d67cb..3889347cc1 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -207,6 +207,15 @@
"code",
"content"
]
+ },
+ {
+ "login": "MrFroop",
+ "name": "Fredrik Jambrén",
+ "avatar_url": "https://avata... |
formatjs | https://github.com/formatjs/formatjs | 227a4442dd441d1ff377a04c70358f32cb2e287e | Long Ho | 2019-08-02 08:13:13 | feat: simplify provider inheritance, add new APIs (#1387) | Also introduces `createIntl` and `RawIntlProvider` | feat: simplify provider inheritance, add new APIs (#1387)
Also introduces `createIntl` and `RawIntlProvider`
fixes #1386
fixes #1376
## Creating intl without using Provider
We've added a new API called `createIntl` that allows you to create an `IntlShape` object without using `Provider`. This allows you to format ... | diff --git a/docs/API.md b/docs/API.md
index 789f6da0854..e079829a9a1 100644
--- a/docs/API.md
+++ b/docs/API.md
@@ -12,6 +12,7 @@ There are a few API layers that React Intl provides and is built on. When using
- [`useIntl` hook (currently available in 3.0.0 beta)](#useintl-hook-currently-available-in-300-beta)
... |
bytebase | https://github.com/bytebase/bytebase | 8a7c881ba1133f2f5129cfecfcff33ad5affb8c2 | boojack | 2024-02-27 08:08:19 | chore(sql-editor): update initial connection from query (#10854) | * chore(sql-editor): update opening databases with filter
* chore: update | chore(sql-editor): update initial connection from query (#10854)
* chore(sql-editor): update opening databases with filter
* chore: update | diff --git a/frontend/src/components/ProvideSQLEditorContext.vue b/frontend/src/components/ProvideSQLEditorContext.vue
index 8f1386e4652c43..9573e6a8d54f4a 100644
--- a/frontend/src/components/ProvideSQLEditorContext.vue
+++ b/frontend/src/components/ProvideSQLEditorContext.vue
@@ -31,6 +31,7 @@ import {
useCurrentU... |
dropwizard | https://github.com/dropwizard/dropwizard | a2e5b343e70407d857a2bd3c8ae6171316fa4bda | Artem Prigoda | 2017-11-22 20:12:02 | docs: Update the release notes for 1.1.5, 1.1.6, 1.2.1 | [ci skip] | docs: Update the release notes for 1.1.5, 1.1.6, 1.2.1
[ci skip] | diff --git a/docs/source/about/release-notes.rst b/docs/source/about/release-notes.rst
index 1499992ee50..f1198125336 100644
--- a/docs/source/about/release-notes.rst
+++ b/docs/source/about/release-notes.rst
@@ -6,11 +6,27 @@ Release Notes
.. _rel-1.2.1:
-v1.2.1: Unreleased
+v1.2.1: Nov 22, 2017
================... |
jan | https://github.com/janhq/jan | f02f769f119086b49ddb8e5d0dd89225a871f3b6 | Louis | 2023-11-01 15:59:58 | chore: disable app update on test (#521) | * chore: disable app update on test
* chore: add build:test step
* Update CI test uses yarn build:test
* Plugin pull from npm registry instead of rebuild
--------- | chore: disable app update on test (#521)
* chore: disable app update on test
* chore: add build:test step
* Update CI test uses yarn build:test
* Plugin pull from npm registry instead of rebuild
---------
Co-authored-by: Hien To <tominhhien97@gmail.com> | diff --git a/.github/workflows/jan-electron-build.yml b/.github/workflows/jan-electron-build.yml
index c6a2df1b9b..3393656259 100644
--- a/.github/workflows/jan-electron-build.yml
+++ b/.github/workflows/jan-electron-build.yml
@@ -52,7 +52,7 @@ jobs:
- name: Install yarn dependencies
run: |
y... |
components | https://github.com/angular/components | 1abb484aa72177a748eecdf9b850cc1c07d1a42b | Kristiyan Kostadinov | 2024-08-15 00:08:27 | feat(material/input): add the ability to interact with disabled inputs (#29574) | Adds the `disabledInteractive` input to `MatInput` which allows users to opt into having disabled input receive focus and dispatch events. Changing the value is prevented through the `readonly` attribute while disabled state is conveyed via `aria-disabled`. | feat(material/input): add the ability to interact with disabled inputs (#29574)
Adds the `disabledInteractive` input to `MatInput` which allows users to opt into having disabled input receive focus and dispatch events. Changing the value is prevented through the `readonly` attribute while disabled state is conveyed vi... | diff --git a/src/dev-app/input/input-demo.html b/src/dev-app/input/input-demo.html
index 3fbdf726be63..3061892ebad0 100644
--- a/src/dev-app/input/input-demo.html
+++ b/src/dev-app/input/input-demo.html
@@ -711,6 +711,53 @@ <h3><textarea> with bindable autosize </h3>
</mat-card-content>
</mat-card>
+<mat-ca... |
Zettlr | https://github.com/Zettlr/Zettlr | 16c0333a7273bc65b72ae602bcefa017857361fe | dependabot[bot] | 2021-10-27 09:41:47 | build(deps): Bump katex from 0.13.18 to 0.13.20 | Bumps [katex](https://github.com/KaTeX/KaTeX) from 0.13.18 to 0.13.20.
- [Release notes](https://github.com/KaTeX/KaTeX/releases)
- [Changelog](https://github.com/KaTeX/KaTeX/blob/master/CHANGELOG.md)
- [Commits](https://github.com/KaTeX/KaTeX/compare/v0.13.18...v0.13.20)
--- | build(deps): Bump katex from 0.13.18 to 0.13.20
Bumps [katex](https://github.com/KaTeX/KaTeX) from 0.13.18 to 0.13.20.
- [Release notes](https://github.com/KaTeX/KaTeX/releases)
- [Changelog](https://github.com/KaTeX/KaTeX/blob/master/CHANGELOG.md)
- [Commits](https://github.com/KaTeX/KaTeX/compare/v0.13.18...v0.13.20... | diff --git a/package.json b/package.json
index 2a5177d722..2ab734eecc 100644
--- a/package.json
+++ b/package.json
@@ -58,7 +58,7 @@
"got": "^11.8.2",
"joplin-turndown": "^4.0.30",
"joplin-turndown-plugin-gfm": "^1.0.12",
- "katex": "^0.13.18",
+ "katex": "^0.13.20",
"ky": "^0.28.6",
"lod... |
redwood | https://github.com/redwoodjs/redwood | e759b344af284ed80fcdecb5ae9380f09a131056 | Gareth Jones | 2023-10-03 22:46:01 | fix: `await` Promise when seeding (#9245) | Currently this Promise is unhandled, meaning if it errors it won't get
caught by the `try/catch` | fix: `await` Promise when seeding (#9245)
Currently this Promise is unhandled, meaning if it errors it won't get
caught by the `try/catch` | diff --git a/__fixtures__/empty-project/scripts/seed.ts b/__fixtures__/empty-project/scripts/seed.ts
index 466ba5458de8..3aab114e7aee 100644
--- a/__fixtures__/empty-project/scripts/seed.ts
+++ b/__fixtures__/empty-project/scripts/seed.ts
@@ -24,7 +24,7 @@ export default async () => {
// Note: if using PostgreSQ... |
hydra | https://github.com/ory/hydra | e98b7bf54d3b5314508d519fcfdd59a90f553f2d | dependabot[bot] | 2024-04-22 19:24:43 | chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 | Bumps [golang.org/x/net](https://github.com/golang/net) from 0.21.0 to 0.23.0.
- [Commits](https://github.com/golang/net/compare/v0.21.0...v0.23.0)
--- | chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.21.0 to 0.23.0.
- [Commits](https://github.com/golang/net/compare/v0.21.0...v0.23.0)
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: indirect
...
Signed-off-by: dep... | diff --git a/go.mod b/go.mod
index 20a9a9ab38..c14b0c2dc5 100644
--- a/go.mod
+++ b/go.mod
@@ -228,7 +228,7 @@ require (
go.opentelemetry.io/otel/metric v1.21.0 // indirect
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
golang.org/x/mod v0.14.0 // indirect
- golang.org/x/net v0.21.0 // indirect
+ golang.org/x/... |
core | https://github.com/vuejs/core | a9d0de50eedda53f533ae86c88061585676086ab | dependabot-preview[bot] | 2021-05-01 11:21:11 | build(deps-dev): bump sass from 1.32.8 to 1.32.12 | Bumps [sass](https://github.com/sass/dart-sass) from 1.32.8 to 1.32.12.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.32.8...1.32.12) | build(deps-dev): bump sass from 1.32.8 to 1.32.12
Bumps [sass](https://github.com/sass/dart-sass) from 1.32.8 to 1.32.12.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.32.8.... | diff --git a/yarn.lock b/yarn.lock
index 75b5a4585fb..e9bf35af5d5 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1624,7 +1624,7 @@ character-parser@^2.2.0:
dependencies:
is-regex "^1.0.3"
-"chokidar@>=2.0.0 <4.0.0":
+"chokidar@>=3.0.0 <4.0.0":
version "3.5.1"
resolved "https://registry.yarnpkg.com/chokidar/... |
azerothcore-wotlk | https://github.com/azerothcore/azerothcore-wotlk | ae8ef1605c9f3af47508f63bf004191f59cfd2e3 | UltraNix | 2022-10-23 20:35:36 | fix(DB/HallowsEnd): Fixed quest chaining of Fire Brigade Practice and… (#13486) | fix(DB/HallowsEnd): Fixed quest chaining of Fire Brigade Practice and Fire Training. | fix(DB/HallowsEnd): Fixed quest chaining of Fire Brigade Practice and… (#13486)
fix(DB/HallowsEnd): Fixed quest chaining of Fire Brigade Practice and Fire Training.
Fixes #13439 | diff --git a/data/sql/updates/pending_db_world/rev_1666430766851335200.sql b/data/sql/updates/pending_db_world/rev_1666430766851335200.sql
new file mode 100644
index 00000000000000..3842c9f1a67546
--- /dev/null
+++ b/data/sql/updates/pending_db_world/rev_1666430766851335200.sql
@@ -0,0 +1,8 @@
+--
+UPDATE `quest_templa... |
jan | https://github.com/janhq/jan | 41f7323b201e28cc4b14dc4be95780315117e944 | Ashley | 2024-10-28 21:07:01 | chore: Update README.md | Update Jan README | chore: Update README.md
Update Jan README | diff --git a/README.md b/README.md
index 29434dac43..188d831d7f 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Jan - Turn your computer into an AI computer
+# Jan - Local AI Assistant

@@ -12,18 +12,22 @@
</... |
influxdb | https://github.com/influxdata/influxdb | a1f91207b353e8143b8063c148bf59a15cc362a6 | Marko Mikulicic | 2021-10-01 12:38:47 | fix: Fix RUSTSEC-2021-0119 | Update `nix` dependency which includes a fix for RUSTSEC-2021-0119 | fix: Fix RUSTSEC-2021-0119
Update `nix` dependency which includes a fix for RUSTSEC-2021-0119 | diff --git a/Cargo.lock b/Cargo.lock
index de1e0c2607b..06c214415bb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2245,9 +2245,9 @@ dependencies = [
[[package]]
name = "nix"
-version = "0.20.1"
+version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df8e5e343312e7fbeb2a5213... |
bootstrap-vue | https://github.com/bootstrap-vue/bootstrap-vue | c4981fd098253840a37e731331de65b0e732fc79 | Troy Morehouse | 2020-04-22 12:23:34 | fix(b-avatar): set `align-items: center` for default slot content (fixes: #5205) (#5207) | * fix(b-avatar): set `align-items: center` for default slot content (fixes: #5205)
* Update README.md | fix(b-avatar): set `align-items: center` for default slot content (fixes: #5205) (#5207)
* fix(b-avatar): set `align-items: center` for default slot content (fixes: #5205)
* Update README.md
Co-authored-by: Jacob Müller <jacob.mueller.elz@gmail.com> | diff --git a/src/components/avatar/README.md b/src/components/avatar/README.md
index 87f545b7414..9bf37d04496 100644
--- a/src/components/avatar/README.md
+++ b/src/components/avatar/README.md
@@ -142,6 +142,19 @@ appearance, or if using custom icons or SVGs e.g.:
<b-avatar><custom-icon></custom-icon></b-avatar>
```
... |
plasmo | https://github.com/PlasmoHQ/plasmo | 9a4b9a587c555ac7cbbe4e57a4474b430e9d2b72 | Agung Jati Kusumo | 2023-03-10 00:16:52 | feat(docs): add indonesian README translation (#490) | * Update README.id-ID.md | feat(docs): add indonesian README translation (#490)
* Update README.id-ID.md
Signed-off-by: Agung Jati Kusumo <me@agungjk.com>
---------
Signed-off-by: Agung Jati Kusumo <me@agungjk.com>
Co-authored-by: L <6723574+louisgv@users.noreply.github.com> | diff --git a/cli/plasmo/README.md b/cli/plasmo/README.md
index 3cc2299a2..9243d3c7c 100644
--- a/cli/plasmo/README.md
+++ b/cli/plasmo/README.md
@@ -23,7 +23,7 @@
</p>
<p align="center">
- English | <a href="/cli/plasmo/i18n/README.zh-CN.md">简体中文</a> | <a href="/cli/plasmo/i18n/README.vi-VN.md">Tiếng Việt</a> | <a... |
openobserve | https://github.com/openobserve/openobserve | 2affad58b085cc8b18a53ef48a1827c4a18a1529 | Sai Nikhil | 2024-09-30 16:19:09 | fix: search history bugs fixed (#4667) | This PR fixes the issues in #4663
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **New Features**
- Enhanced search history functionality with improved state management
and visibility controls.
- Introduced a new prop `isClicked` in the search history component t... | fix: search history bugs fixed (#4667)
This PR fixes the issues in #4663
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **New Features**
- Enhanced search history functionality with improved state management
and visibility controls.
- Introduced a new prop `is... | diff --git a/web/src/composables/useLogs.ts b/web/src/composables/useLogs.ts
index c8080b7c57e..4656af10df8 100644
--- a/web/src/composables/useLogs.ts
+++ b/web/src/composables/useLogs.ts
@@ -551,7 +551,9 @@ const useLogs = () => {
const updateUrlQueryParams = () => {
const query = generateURLQuery(false);
-... |
C-Plus-Plus | https://github.com/TheAlgorithms/C-Plus-Plus | 79b98cc90521ad83227e17bd581bc2a0aedc6f3d | Krishna Vedala | 2020-10-17 01:48:38 | feat: guidelines for reviewers (#1302) | * Create REVIEWER_CODE.md
* added heading | feat: guidelines for reviewers (#1302)
* Create REVIEWER_CODE.md
* added heading | diff --git a/REVIEWER_CODE.md b/REVIEWER_CODE.md
new file mode 100644
index 00000000000..933d43e6853
--- /dev/null
+++ b/REVIEWER_CODE.md
@@ -0,0 +1,13 @@
+# Guidelines for reviewers and maintainers
+
+Following are some guidelines for contributors who are providing reviews to the pull-requests.
+
+1. On any given pull... |
casdoor | https://github.com/casdoor/casdoor | ee54dec3b398648cc5437daa2cd23ce560808d64 | cofecatt | 2022-09-04 09:39:50 | feat: add support for mysubmail (#1095) | * feat: add support for mysubmail
* Update email.go | feat: add support for mysubmail (#1095)
* feat: add support for mysubmail
* Update email.go
Co-authored-by: Yang Luo <hsluoyz@qq.com> | diff --git a/object/email.go b/object/email.go
index ef163545bb5c..1d34fbd35305 100644
--- a/object/email.go
+++ b/object/email.go
@@ -16,10 +16,28 @@
package object
-import "github.com/go-gomail/gomail"
+import (
+ "crypto/tls"
+
+ "github.com/go-gomail/gomail"
+)
+
+func getDialer(provider *Provider) *gomail.Dia... |
element-plus | https://github.com/element-plus/element-plus | cc2ab5c417c556b17d8494ba6b1df395b709bf44 | PannanaAlex | 2020-10-09 09:34:25 | feat: add pagination (#195) | * feat(component): add type 'pagination' for form usage #120
* feat(pagination): optimize pagination code
* fix(pagination): optimize code
* feat(component): add type 'pagination' for form usage #120
* feat(pagination): optimize pagination code
* fix(pagination): optimize code
* feat(pagination): update component | feat: add pagination (#195)
* feat(component): add type 'pagination' for form usage #120
* feat(pagination): optimize pagination code
* fix(pagination): optimize code
* feat(component): add type 'pagination' for form usage #120
* feat(pagination): optimize pagination code
* fix(pagination): optimize code
* feat(... | diff --git a/packages/element-plus/index.ts b/packages/element-plus/index.ts
index 63ee07be80a04..3653b559808b8 100644
--- a/packages/element-plus/index.ts
+++ b/packages/element-plus/index.ts
@@ -46,6 +46,7 @@ import ElTree from '@element-plus/tree'
import ElColorPicker from '@element-plus/color-picker'
import ElSel... |
advanced-java | https://github.com/doocs/advanced-java | 1df021f274ea4ffa34496c82dd1270fa52233e45 | yanglbme | 2020-10-13 08:36:02 | feat: update sync workflow | 更新 Sync 工作流 | feat: update sync workflow
更新 Sync 工作流 | diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml
index 7097cc9d6..0a48562aa 100644
--- a/.github/workflows/sync.yml
+++ b/.github/workflows/sync.yml
@@ -8,17 +8,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- - name: Sync to Gitee
- uses: wearerequired/git-mirror-action@maste... |
MaaAssistantArknights | https://github.com/MaaAssistantArknights/MaaAssistantArknights | 9fadcbca38e0ba55702f6376c82f68d0a04aaf71 | MistEO | 2022-10-02 23:13:58 | fix: 修复战斗中干员职业识别错误的问题 | fix https://github.com/MaaAssistantArknights/MaaAssistantArknights/issues/2049
fix https://github.com/MaaAssistantArknights/MaaAssistantArknights/issues/1965 | fix: 修复战斗中干员职业识别错误的问题
fix https://github.com/MaaAssistantArknights/MaaAssistantArknights/issues/2049
fix https://github.com/MaaAssistantArknights/MaaAssistantArknights/issues/1965 | diff --git a/resource/tasks.json b/resource/tasks.json
index afd7a0f8034..8fd62e4175f 100644
--- a/resource/tasks.json
+++ b/resource/tasks.json
@@ -6574,15 +6574,33 @@
25
]
},
- "BattleOperRoleCaster": {},
- "BattleOperRoleMedic": {},
- "BattleOperRolePioneer": {},
- "BattleOperR... |
aws-cdk | https://github.com/aws/aws-cdk | 0e79c2d16484c5e0fc29a8e75222e32b2bc0e5a4 | David Christiansen | 2018-09-26 19:17:38 | fix(aws-codecommit): typo in README (#780) | Removal of extra bracket. | fix(aws-codecommit): typo in README (#780)
Removal of extra bracket. | diff --git a/packages/@aws-cdk/aws-codecommit/README.md b/packages/@aws-cdk/aws-codecommit/README.md
index d11eac19bf676..7586fafcf47f8 100644
--- a/packages/@aws-cdk/aws-codecommit/README.md
+++ b/packages/@aws-cdk/aws-codecommit/README.md
@@ -40,7 +40,7 @@ const pipeline = new codepipeline.Pipeline(this, 'MyPipeline'... |
node | https://github.com/nodejs/node | d68f946fe4ebaba02d68f5b118d53ec397ac705e | Benjamin Gruenbaum | 2018-08-03 08:03:51 | test: remove unused config | process.maxTickDepth was removed in v0.12 a whole while ago and was
mostly removed from our code base. There are still some places it was
left in old benchmarks and tests.
This PR removes setting the value in those tests and
benchmarks. | test: remove unused config
process.maxTickDepth was removed in v0.12 a whole while ago and was
mostly removed from our code base. There are still some places it was
left in old benchmarks and tests.
This PR removes setting the value in those tests and
benchmarks.
PR-URL: https://github.com/nodejs/node/pull/21985
Rev... | diff --git a/benchmark/process/next-tick-depth-args.js b/benchmark/process/next-tick-depth-args.js
index a7670d99efc354..da61f90a647278 100644
--- a/benchmark/process/next-tick-depth-args.js
+++ b/benchmark/process/next-tick-depth-args.js
@@ -5,8 +5,6 @@ const bench = common.createBenchmark(main, {
n: [12e6]
});
... |
envoy | https://github.com/envoyproxy/envoy | 3bf19407552a4532f784c191b2a5482e54aaab68 | dependabot[bot] | 2024-01-03 13:49:24 | build(deps): bump mysql from `ceb9891` to `b359741` in /examples/mysql (#31461) | Bumps mysql from `ceb9891` to `b359741`.
--- | build(deps): bump mysql from `ceb9891` to `b359741` in /examples/mysql (#31461)
Bumps mysql from `ceb9891` to `b359741`.
---
updated-dependencies:
- dependency-name: mysql
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-author... | diff --git a/examples/mysql/Dockerfile-mysql b/examples/mysql/Dockerfile-mysql
index ab835ddc7df2..5d0714294e84 100644
--- a/examples/mysql/Dockerfile-mysql
+++ b/examples/mysql/Dockerfile-mysql
@@ -1 +1 @@
-FROM mysql:8.2.0@sha256:ceb98918916bd5261b3e9866ac8271d75d276b8a4db56f1dc190770342a77a9b
+FROM mysql:8.2.0@sha25... |
angular | https://github.com/angular/angular | c4266fb729f792d4459930fba4aac7ec9dd33a39 | Bjarki | 2020-10-13 23:53:36 | feat(core): depend on type definitions for Trusted Types (#39207) | To facilitate the upcoming Trusted Types support being added to Angular,
add the TypeScript type definitions for the Trusted Types browser API as
a dependency in the root package.json and types.d.ts since they're
needed for compiling the Angular packages.
PR Close #39207 | feat(core): depend on type definitions for Trusted Types (#39207)
To facilitate the upcoming Trusted Types support being added to Angular,
add the TypeScript type definitions for the Trusted Types browser API as
a dependency in the root package.json and types.d.ts since they're
needed for compiling the Angular package... | diff --git a/package.json b/package.json
index 27bcd64d42250..2dedf24ecfb62 100644
--- a/package.json
+++ b/package.json
@@ -90,6 +90,7 @@
"@types/semver": "^6.0.2",
"@types/shelljs": "^0.8.6",
"@types/systemjs": "0.19.32",
+ "@types/trusted-types": "^1.0.6",
"@types/yaml": "^1.9.7",
"@types... |
blender | https://github.com/blender/blender | 0ec011e78bcb52f14fd47e2f0a386e0ab2d0df9a | Pratik Borhade | 2024-11-13 20:30:35 | Fix: Sculpt invert mask crash with multires | Similar to b1bcdf8d53ef49ca0e3e6087c15b8ad88ad8883d.
Pull Request: https://projects.blender.org/blender/blender/pulls/130212 | Fix: Sculpt invert mask crash with multires
Similar to b1bcdf8d53ef49ca0e3e6087c15b8ad88ad8883d.
Pull Request: https://projects.blender.org/blender/blender/pulls/130212 | diff --git a/source/blender/editors/sculpt_paint/paint_mask.cc b/source/blender/editors/sculpt_paint/paint_mask.cc
index 355659d9d1ee..d3355f286a0b 100644
--- a/source/blender/editors/sculpt_paint/paint_mask.cc
+++ b/source/blender/editors/sculpt_paint/paint_mask.cc
@@ -567,16 +567,15 @@ static void invert_mask_grids(M... |
components | https://github.com/angular/components | d52f04127f5931d9b0587ca129b02ad0a4fd41c4 | Kristiyan Kostadinov | 2023-09-22 13:48:17 | test(material/radio): combine shared tests | Since we only have one module, we don't need separate shared tests anymore. | test(material/radio): combine shared tests
Since we only have one module, we don't need separate shared tests anymore. | diff --git a/src/material/radio/testing/BUILD.bazel b/src/material/radio/testing/BUILD.bazel
index c5737a28054b..858d2a668970 100644
--- a/src/material/radio/testing/BUILD.bazel
+++ b/src/material/radio/testing/BUILD.bazel
@@ -16,20 +16,7 @@ ts_library(
ng_test_library(
name = "unit_tests_lib",
- srcs = glob... |
MaaAssistantArknights | https://github.com/MaaAssistantArknights/MaaAssistantArknights | 9f242800e8b05847150d0d0f0f442b2190d53391 | Constrat | 2024-06-19 01:33:16 | chore: Auto Update Game Resources - 2024-06-18 | [skip changelog] | chore: Auto Update Game Resources - 2024-06-18
[skip changelog] | diff --git a/resource/global/YoStarEN/resource/version.json b/resource/global/YoStarEN/resource/version.json
index 5ed353036dc..ff3528d040b 100644
--- a/resource/global/YoStarEN/resource/version.json
+++ b/resource/global/YoStarEN/resource/version.json
@@ -7,5 +7,5 @@
"pool": "By My Will",
"time": 171... |
rspack | https://github.com/web-infra-dev/rspack | 87a195bdf50d36a7cb22cbbd0d0eae348293e8b9 | magic-akari | 2024-02-21 11:12:18 | fix(plugin/swc_js_minimizer): remove parens before optimizing (#5726) | * fix(plugin/swc_js_minimizer): remove parens before optimizing
* chore: update test snapshots | fix(plugin/swc_js_minimizer): remove parens before optimizing (#5726)
* fix(plugin/swc_js_minimizer): remove parens before optimizing
* chore: update test snapshots | diff --git a/crates/rspack_plugin_swc_js_minimizer/src/minify.rs b/crates/rspack_plugin_swc_js_minimizer/src/minify.rs
index a3e3004eab47..a1b8d8acd316 100644
--- a/crates/rspack_plugin_swc_js_minimizer/src/minify.rs
+++ b/crates/rspack_plugin_swc_js_minimizer/src/minify.rs
@@ -30,7 +30,7 @@ use swc_core::{
atoms:... |
sentry | https://github.com/getsentry/sentry | 2e6962c35a1aec47970c9ac00f27135c0e688daf | Dan Fuller | 2020-07-02 23:32:57 | fix(metric_alerts): Fix issue with manually resolved alerts not showing the resolved marker. (#19653) | Since the manual resolved date includes seconds it doesn't correctly align to a bucket, and so is
not shown on the graph. We don't care about second granularity, so just remove them when returning
this date. | fix(metric_alerts): Fix issue with manually resolved alerts not showing the resolved marker. (#19653)
Since the manual resolved date includes seconds it doesn't correctly align to a bucket, and so is
not shown on the graph. We don't care about second granularity, so just remove them when returning
this date. | diff --git a/src/sentry/api/serializers/models/incident.py b/src/sentry/api/serializers/models/incident.py
index 323eb694ef6dac..f39c5ea2498644 100644
--- a/src/sentry/api/serializers/models/incident.py
+++ b/src/sentry/api/serializers/models/incident.py
@@ -33,6 +33,7 @@ def get_attrs(self, item_list, user, **kwargs):... |
terraform-provider-aws | https://github.com/hashicorp/terraform-provider-aws | eb752d6d1b926d5c08410b8a966ffca9858397e7 | dependabot[bot] | 2022-11-17 01:51:15 | build(deps): bump github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2 | Bumps [github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2](https://github.com/hashicorp/aws-sdk-go-base) from 2.0.0-beta.19 to 2.0.0-beta.20.
- [Release notes](https://github.com/hashicorp/aws-sdk-go-base/releases)
- [Changelog](https://github.com/hashicorp/aws-sdk-go-base/blob/main/CHANGELOG.md)
- [Commits](https://... | build(deps): bump github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2
Bumps [github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2](https://github.com/hashicorp/aws-sdk-go-base) from 2.0.0-beta.19 to 2.0.0-beta.20.
- [Release notes](https://github.com/hashicorp/aws-sdk-go-base/releases)
- [Changelog](https://github.co... | diff --git a/go.mod b/go.mod
index 4d33c80f0f0..9d27bf0c378 100644
--- a/go.mod
+++ b/go.mod
@@ -25,7 +25,7 @@ require (
github.com/google/go-cmp v0.5.9
github.com/hashicorp/aws-cloudformation-resource-schema-sdk-go v0.18.0
github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.19
- github.com/hashicorp/aws-sdk-go-b... |
kubo | https://github.com/ipfs/kubo | a35dd2ea0d0493f1d7524a70f2d414d51523efe9 | guseggert | 2021-08-26 00:32:51 | ci: preload peerlog plugin, disable by default | This preloads the peerlog plugin in the ipfs binary, but keeps it
disabled by default. To enabled it, set Enabled=true in its config.
The motivation is to simplify building and deploying gateways, and for
them to use binaries that are more similar to release bins. | ci: preload peerlog plugin, disable by default
This preloads the peerlog plugin in the ipfs binary, but keeps it
disabled by default. To enabled it, set Enabled=true in its config.
The motivation is to simplify building and deploying gateways, and for
them to use binaries that are more similar to release bins. | diff --git a/plugin/loader/preload.go b/plugin/loader/preload.go
index 2c6d512bf8c..4be60625fc6 100644
--- a/plugin/loader/preload.go
+++ b/plugin/loader/preload.go
@@ -5,6 +5,7 @@ import (
pluginflatfs "github.com/ipfs/go-ipfs/plugin/plugins/flatfs"
pluginipldgit "github.com/ipfs/go-ipfs/plugin/plugins/git"
plug... |
bitcoin | https://github.com/bitcoin/bitcoin | 2d4f4b8f29c015c26cb02b26a517450bb6056ed4 | fanquake | 2023-05-29 21:49:42 | ci: standardize custom libc++ usage in MSAN jobs | Use `-isystem` & `-nostd*` flags, which is the preferred way to use a
custom libc++ (ours is libc++ build with MSAN) with Clang, as opposed to
our current ad-hoc flags. | ci: standardize custom libc++ usage in MSAN jobs
Use `-isystem` & `-nostd*` flags, which is the preferred way to use a
custom libc++ (ours is libc++ build with MSAN) with Clang, as opposed to
our current ad-hoc flags.
See: https://releases.llvm.org/16.0.0/projects/libcxx/docs/UsingLibcxx.html#using-a-custom-built-lib... | diff --git a/ci/test/00_setup_env_native_fuzz_with_msan.sh b/ci/test/00_setup_env_native_fuzz_with_msan.sh
index dd694f818c876..9f35a7f0a1b11 100755
--- a/ci/test/00_setup_env_native_fuzz_with_msan.sh
+++ b/ci/test/00_setup_env_native_fuzz_with_msan.sh
@@ -9,7 +9,7 @@ export LC_ALL=C.UTF-8
export CI_IMAGE_NAME_TAG="ub... |
sentry | https://github.com/getsentry/sentry | 25821958138e16fecc00252f2896dc6fd2adcb13 | Shruthi | 2024-01-09 00:35:29 | chore(starfish): Remove new badge for mobile, web vitals and resources (#62767) | Removes new badge | chore(starfish): Remove new badge for mobile, web vitals and resources (#62767)
Removes new badge | diff --git a/static/app/components/sidebar/index.tsx b/static/app/components/sidebar/index.tsx
index b9fd2430758b7a..6d45d874250c2c 100644
--- a/static/app/components/sidebar/index.tsx
+++ b/static/app/components/sidebar/index.tsx
@@ -47,8 +47,6 @@ import useMedia from 'sentry/utils/useMedia';
import useProjects from ... |
angular | https://github.com/angular/angular | 768100516ffd21db708cb968975531db83b94732 | George Kalpakas | 2018-03-23 22:23:58 | build(aio): upgrade `@angular/*` to `6.0.0-rc.0` (#22872) | PR Close #22872 | build(aio): upgrade `@angular/*` to `6.0.0-rc.0` (#22872)
PR Close #22872 | diff --git a/aio/package.json b/aio/package.json
index 038b53e0092fe..0233a7e07f35a 100644
--- a/aio/package.json
+++ b/aio/package.json
@@ -70,19 +70,19 @@
},
"private": true,
"dependencies": {
- "@angular/animations": "6.0.0-beta.8",
+ "@angular/animations": "^6.0.0-rc.0",
"@angular/cdk": "^5.0.0-... |
gitextensions | https://github.com/gitextensions/gitextensions | 886923684980501e00c03800535b095b36c5a743 | Michael Seibt | 2025-02-19 23:17:58 | docs: More prominent link to manual | and remove SourceForge | docs: More prominent link to manual
and remove SourceForge | diff --git a/README.md b/README.md
index 5aed21c921f..f847c491ebb 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,10 @@ It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/
Have a question? Come and talk to us: [](https://gitter.im/gite... |
terraform-provider-aws | https://github.com/hashicorp/terraform-provider-aws | 958256691eedb40727a62ccc7be33f6ee486859f | dependabot[bot] | 2023-10-20 19:06:23 | build(deps): bump peter-evans/create-or-update-comment (#34022) | Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 3.0.2 to 3.1.0.
- [Release notes](https://github.com/peter-evans/create-or-update-comment/releases)
- [Commits](https://github.com/peter-evans/create-or-update-comment/compare/c6c9a1a66007646a28c153e2a8580a5bad27b... | build(deps): bump peter-evans/create-or-update-comment (#34022)
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 3.0.2 to 3.1.0.
- [Release notes](https://github.com/peter-evans/create-or-update-comment/releases)
- [Commits](https://github.com/peter-evans/creat... | diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml
index 02751e4ab30..45c61c3ea67 100644
--- a/.github/workflows/changelog.yml
+++ b/.github/workflows/changelog.yml
@@ -45,7 +45,7 @@ jobs:
- run: echo ${{ steps.prc.outputs.comment-id }}
- name: PR Comment
if: steps.prc... |
rclone | https://github.com/rclone/rclone | 401cf81034f741793738e83d000a9efff568366d | Nick Craig-Wood | 2025-02-28 17:01:14 | build: modernize Go usage | This commit modernizes Go usage. This was done with:
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./...
Then files needed to be `go fmt`ed and a few comments needed to be
restored.
The modernizations include replacing
- if/else conditional assignment by a call to the b... | build: modernize Go usage
This commit modernizes Go usage. This was done with:
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./...
Then files needed to be `go fmt`ed and a few comments needed to be
restored.
The modernizations include replacing
- if/else conditional as... | diff --git a/backend/azureblob/azureblob.go b/backend/azureblob/azureblob.go
index 4c7f2791e7650..4ce27db2ce1e2 100644
--- a/backend/azureblob/azureblob.go
+++ b/backend/azureblob/azureblob.go
@@ -19,6 +19,7 @@ import (
"net/url"
"os"
"path"
+ "slices"
"sort"
"strconv"
"strings"
@@ -681,10 +682,8 @@ func (f... |
goreleaser | https://github.com/goreleaser/goreleaser | fe7e2123bda5a605d34af695588fec57a535f0b3 | Carlos Alexandro Becker | 2022-06-22 05:41:15 | feat: replacing the log library (#3139) | * feat: replacing logs | feat: replacing the log library (#3139)
* feat: replacing logs
Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
* fix: tests et al
Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
* feat: update termenv/lipgloss
Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>... | diff --git a/cmd/build.go b/cmd/build.go
index 00e407f3bdf..20bf460033c 100644
--- a/cmd/build.go
+++ b/cmd/build.go
@@ -7,9 +7,8 @@ import (
"runtime"
"time"
- "github.com/apex/log"
"github.com/caarlos0/ctrlc"
- "github.com/fatih/color"
+ "github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/a... |
angular | https://github.com/angular/angular | 50bf17aca03727fae6389d90df4ff8f6b68d2f82 | JoostK | 2019-10-15 01:55:20 | fix(ivy): do not always accept `undefined` for directive inputs (#33066) | Prior to this change, the template type checker would always allow a
value of type `undefined` to be passed into a directive's inputs, even
if the input's type did not allow for it. This was due to how the type
constructor for a directive was generated, where a `Partial` mapped
type was used to allow for inputs to be u... | fix(ivy): do not always accept `undefined` for directive inputs (#33066)
Prior to this change, the template type checker would always allow a
value of type `undefined` to be passed into a directive's inputs, even
if the input's type did not allow for it. This was due to how the type
constructor for a directive was gen... | diff --git a/packages/compiler-cli/src/ngtsc/typecheck/src/context.ts b/packages/compiler-cli/src/ngtsc/typecheck/src/context.ts
index 3aa4e3dd4b5b70..318d8006f959bd 100644
--- a/packages/compiler-cli/src/ngtsc/typecheck/src/context.ts
+++ b/packages/compiler-cli/src/ngtsc/typecheck/src/context.ts
@@ -123,7 +123,7 @@ e... |
cheerio | https://github.com/cheeriojs/cheerio | 17af4ef893abab73d0678324899f0cb6b8f6e362 | dependabot[bot] | 2022-10-28 08:32:33 | build(deps-dev): bump undici from 5.11.0 to 5.12.0 (#2825) | Bumps [undici](https://github.com/nodejs/undici) from 5.11.0 to 5.12.0.
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](https://github.com/nodejs/undici/compare/v5.11.0...v5.12.0)
--- | build(deps-dev): bump undici from 5.11.0 to 5.12.0 (#2825)
Bumps [undici](https://github.com/nodejs/undici) from 5.11.0 to 5.12.0.
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](https://github.com/nodejs/undici/compare/v5.11.0...v5.12.0)
---
updated-dependencies:
- dependency-name: undici
... | diff --git a/package-lock.json b/package-lock.json
index 083b226e56..220928d4c7 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -42,7 +42,7 @@
"ts-node": "^10.9.1",
"typedoc": "^0.23.18",
"typescript": "^4.8.4",
- "undici": "^5.11.0"
+ "undici": "^5.12.0"
},
... |
posthog | https://github.com/PostHog/posthog | 69c01234e3e0b127b64ad5d144f3bb9b5033a6ab | Ben White | 2022-06-14 15:19:44 | fix: Added concurrency control to long workflows (#10291) | * Added concurrency control to long workflows to ensure previous runs are cancelled
* Added concurrency to plugin server ci
* Prettier fix | fix: Added concurrency control to long workflows (#10291)
* Added concurrency control to long workflows to ensure previous runs are cancelled
* Added concurrency to plugin server ci
* Prettier fix | diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml
index 583fcd1a45756..328f96ed9d459 100644
--- a/.github/workflows/ci-backend.yml
+++ b/.github/workflows/ci-backend.yml
@@ -29,6 +29,10 @@ env:
OBJECT_STORAGE_ACCESS_KEY_ID: 'object_storage_root_user'
OBJECT_STORAGE_SECRET_ACCESS... |
prettier | https://github.com/prettier/prettier | 1f65e8eecdc5002cc8cf9b487c614eadde525b4b | dependabot[bot] | 2020-07-23 17:16:48 | Build(deps): Bump @angular/compiler from 10.0.4 to 10.0.5 (#8817) | Bumps [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) from 10.0.4 to 10.0.5.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/10.0.5/package... | Build(deps): Bump @angular/compiler from 10.0.4 to 10.0.5 (#8817)
Bumps [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) from 10.0.4 to 10.0.5.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- ... | diff --git a/package.json b/package.json
index e36cd058db77..2bd19807a800 100644
--- a/package.json
+++ b/package.json
@@ -20,7 +20,7 @@
"bin"
],
"dependencies": {
- "@angular/compiler": "10.0.4",
+ "@angular/compiler": "10.0.5",
"@babel/code-frame": "7.10.4",
"@babel/parser": "7.10.5",
... |
layui | https://github.com/layui/layui | d9635625e1b220fbf3bf4be9e0d29f73ad4d9917 | morning-star | 2024-08-19 21:31:36 | ci: 使用 pkg-pr-new 预发布 PR 并生成预览模板 (#2175) | * ci: 使用 pkg-pr-new 预发布 PR 并生成预览模板
* update
* update
* update
* ci: 更换文件名
--------- | ci: 使用 pkg-pr-new 预发布 PR 并生成预览模板 (#2175)
* ci: 使用 pkg-pr-new 预发布 PR 并生成预览模板
* update
* update
* update
* ci: 更换文件名
---------
Co-authored-by: 贤心 <3277200+sentsim@users.noreply.github.com> | diff --git a/.github/workflows/pr-preview.yml b/.github/workflows/pr-preview.yml
new file mode 100644
index 000000000..e81188fd2
--- /dev/null
+++ b/.github/workflows/pr-preview.yml
@@ -0,0 +1,23 @@
+name: Publish Pull Request Preview
+on: [pull_request]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ ... |
influxdb | https://github.com/influxdata/influxdb | 17b8eaef0f9871dc04e7d6fca5f9a1dcc766c47f | Dom Dwyer | 2023-08-24 14:34:19 | test: assert error conditions for proto decoding | Test error cases too. | test: assert error conditions for proto decoding
Test error cases too. | diff --git a/data_types/src/partition.rs b/data_types/src/partition.rs
index 38fe592a0be..f1e383aabac 100644
--- a/data_types/src/partition.rs
+++ b/data_types/src/partition.rs
@@ -532,6 +532,8 @@ impl Partition {
#[cfg(test)]
mod tests {
use super::*;
+
+ use assert_matches::assert_matches;
use proptest... |
redwood | https://github.com/redwoodjs/redwood | e6e07fe468852b95c3e2d6d045422e57af8f9dde | Dominic Saadi | 2024-03-16 20:12:53 | chore(rsc): unminify dist (#10227) | For RSCs, while we're debugging and figuring things out, it'd be more
helpful for me at least to unminify dist for now. | chore(rsc): unminify dist (#10227)
For RSCs, while we're debugging and figuring things out, it'd be more
helpful for me at least to unminify dist for now. | diff --git a/packages/vite/src/lib/getMergedConfig.ts b/packages/vite/src/lib/getMergedConfig.ts
index db64382c064e..379a2cb6b012 100644
--- a/packages/vite/src/lib/getMergedConfig.ts
+++ b/packages/vite/src/lib/getMergedConfig.ts
@@ -111,6 +111,8 @@ export function getMergedConfig(rwConfig: Config, rwPaths: Paths) {
... |
solana | https://github.com/solana-labs/solana | fc727a3ac52d21ed58e4c6762cda4f9129f8e4d2 | dependabot[bot] | 2024-02-07 20:36:57 | build(deps): bump wasm-bindgen from 0.2.90 to 0.2.91 (#35128) | * build(deps): bump wasm-bindgen from 0.2.90 to 0.2.91
Bumps [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) from 0.2.90 to 0.2.91.
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com... | build(deps): bump wasm-bindgen from 0.2.90 to 0.2.91 (#35128)
* build(deps): bump wasm-bindgen from 0.2.90 to 0.2.91
Bumps [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) from 0.2.90 to 0.2.91.
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm... | null |
sentry | https://github.com/getsentry/sentry | a1d4314edd94b3f0af8279a9f2d582404447c4fb | Dan Fuller | 2025-03-01 05:55:15 | chore(uptime): Drop `migrated` column from `UptimeSubscription` (#86082) | Actually remove the column
<!-- Describe your PR here. --> | chore(uptime): Drop `migrated` column from `UptimeSubscription` (#86082)
Actually remove the column
<!-- Describe your PR here. --> | diff --git a/migrations_lockfile.txt b/migrations_lockfile.txt
index bb76b00ab09094..75103a5ec4b4e9 100644
--- a/migrations_lockfile.txt
+++ b/migrations_lockfile.txt
@@ -21,6 +21,6 @@ social_auth: 0002_default_auto_field
tempest: 0002_make_message_type_nullable
-uptime: 0027_remove_migrated_and_unique_constraint
... |
core | https://github.com/stenciljs/core | 621ce8e325fe3cef3140992f537161a8a3aeb1d9 | dependabot[bot] | 2023-01-18 03:20:37 | chore(deps-dev): bump glob from 8.0.3 to 8.1.0 (#3982) | Bumps [glob](https://github.com/isaacs/node-glob) from 8.0.3 to 8.1.0.
- [Release notes](https://github.com/isaacs/node-glob/releases)
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](https://github.com/isaacs/node-glob/compare/v8.0.3...v8.1.0)
--- | chore(deps-dev): bump glob from 8.0.3 to 8.1.0 (#3982)
Bumps [glob](https://github.com/isaacs/node-glob) from 8.0.3 to 8.1.0.
- [Release notes](https://github.com/isaacs/node-glob/releases)
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](https://github.com/isaacs/node-glob/compare... | diff --git a/package-lock.json b/package-lock.json
index e127b5590b8..4498545ce1b 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -50,7 +50,7 @@
"execa": "4.1.0",
"exit": "^0.1.2",
"fs-extra": "^11.0.0",
- "glob": "8.0.3",
+ "glob": "8.1.0",
"graceful-fs": "~4... |
bubbletea | https://github.com/charmbracelet/bubbletea | c9005125daf711ce73b604e3ebccf6284ee014c5 | dependabot[bot] | 2024-05-30 20:48:10 | chore(deps): bump github.com/charmbracelet/x/ansi from 0.1.1 to 0.1.2 (#1026) | Bumps [github.com/charmbracelet/x/ansi](https://github.com/charmbracelet/x) from 0.1.1 to 0.1.2.
- [Release notes](https://github.com/charmbracelet/x/releases)
- [Commits](https://github.com/charmbracelet/x/compare/ansi/v0.1.1...ansi/v0.1.2)
--- | chore(deps): bump github.com/charmbracelet/x/ansi from 0.1.1 to 0.1.2 (#1026)
Bumps [github.com/charmbracelet/x/ansi](https://github.com/charmbracelet/x) from 0.1.1 to 0.1.2.
- [Release notes](https://github.com/charmbracelet/x/releases)
- [Commits](https://github.com/charmbracelet/x/compare/ansi/v0.1.1...ansi/v0.1.2)... | diff --git a/go.mod b/go.mod
index 0e2ae893cd..1c0bfce750 100644
--- a/go.mod
+++ b/go.mod
@@ -3,7 +3,7 @@ module github.com/charmbracelet/bubbletea
go 1.18
require (
- github.com/charmbracelet/x/ansi v0.1.1
+ github.com/charmbracelet/x/ansi v0.1.2
github.com/charmbracelet/x/term v0.1.1
github.com/erikgeiser/co... |
firecracker | https://github.com/firecracker-microvm/firecracker | 083e41be30dd1f29b16f14b9ac260b8b0eb2dbd5 | Takahiro Itazuri | 2024-04-04 13:44:38 | test: Exclude IA32_TSX_CTRL MSR from test_cpu_config_dump_vs_actual() | The upstream kernel got to return IA32_TSX_CTRL MSR (index: 0x122) via
KVM_GET_MSR_INDEX_LIST API in commit b9846a698c9a ("KVM: VMX: add
MSR_IA32_TSX_CTRL into msrs_to_save") since kernel 6.4.
`test_cpu_config_dump_vs_actual()` compares guest CPU config (CPUID /
MSR) between the one dumped by the CPU template helper to... | test: Exclude IA32_TSX_CTRL MSR from test_cpu_config_dump_vs_actual()
The upstream kernel got to return IA32_TSX_CTRL MSR (index: 0x122) via
KVM_GET_MSR_INDEX_LIST API in commit b9846a698c9a ("KVM: VMX: add
MSR_IA32_TSX_CTRL into msrs_to_save") since kernel 6.4.
`test_cpu_config_dump_vs_actual()` compares guest CPU co... | diff --git a/tests/integration_tests/functional/test_cpu_template_helper.py b/tests/integration_tests/functional/test_cpu_template_helper.py
index ccff0ce4ebe..28251a48627 100644
--- a/tests/integration_tests/functional/test_cpu_template_helper.py
+++ b/tests/integration_tests/functional/test_cpu_template_helper.py
@@ ... |
bootstrap | https://github.com/twbs/bootstrap | efd57ec8282dc9f775c6055f10f9a9c206b9f56a | dependabot[bot] | 2023-11-02 11:19:17 | Build(deps): Bump streetsidesoftware/cspell-action from 3 to 4 (#39331) | Bumps [streetsidesoftware/cspell-action](https://github.com/streetsidesoftware/cspell-action) from 3 to 4.
- [Release notes](https://github.com/streetsidesoftware/cspell-action/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/streetsideso... | Build(deps): Bump streetsidesoftware/cspell-action from 3 to 4 (#39331)
Bumps [streetsidesoftware/cspell-action](https://github.com/streetsidesoftware/cspell-action) from 3 to 4.
- [Release notes](https://github.com/streetsidesoftware/cspell-action/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell-a... | diff --git a/.github/workflows/cspell.yml b/.github/workflows/cspell.yml
index 3e7902e39278..7c4a2961564e 100644
--- a/.github/workflows/cspell.yml
+++ b/.github/workflows/cspell.yml
@@ -28,7 +28,7 @@ jobs:
persist-credentials: false
- name: Run cspell
- uses: streetsidesoftware/cspell-action... |
node | https://github.com/nodejs/node | 211cd0441a575222e9f0d3ce1f19091f8a5566cd | Emil Sivervik | 2021-01-25 20:26:57 | test: increase fs promise coverage | 1. Signal aborted while writing file | test: increase fs promise coverage
1. Signal aborted while writing file
Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L278
2. Signal aborted on first tick
Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/fs/promises.js.html#L301
3. Validate file ... | diff --git a/test/parallel/test-fs-promises-file-handle-readFile.js b/test/parallel/test-fs-promises-file-handle-readFile.js
index 4416744bf5189a..d1e724d201ee71 100644
--- a/test/parallel/test-fs-promises-file-handle-readFile.js
+++ b/test/parallel/test-fs-promises-file-handle-readFile.js
@@ -6,9 +6,15 @@ const common... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.