commit_message
stringlengths
9
1.67k
sha
stringlengths
40
40
type
stringclasses
10 values
annotated_type
stringclasses
10 values
masked_commit_message
stringlengths
3
1.66k
git_diff
stringlengths
162
6.45M
input_prompt
stringclasses
1 value
refactor(topology): coordinator accepts a request transformer instead of a list of operations The request transformer can generate the operations from the current topology. This helps to - ensure that the operations are generated based on the latest topology. When concurrent changes happens, coordinator can detect i...
dec860436916ef216998f80f8b2f9c39d00c064d
refactor
feat
coordinator accepts a request transformer instead of a list of operations The request transformer can generate the operations from the current topology. This helps to - ensure that the operations are generated based on the latest topology. When concurrent changes happens, coordinator can detect it. Previously it was...
diff --git a/topology/src/main/java/io/camunda/zeebe/topology/changes/TopologyChangeCoordinator.java b/topology/src/main/java/io/camunda/zeebe/topology/changes/TopologyChangeCoordinator.java index 8bb5c3d..f8f5e24 100644 --- a/topology/src/main/java/io/camunda/zeebe/topology/changes/TopologyChangeCoordinator.java +++ b...
style(content): remove unused
a50b51999015e210918d9c8e95fd4cac347353be
style
refactor
remove unused
diff --git a/src/content/redux/modules/dictionaries.ts b/src/content/redux/modules/dictionaries.ts index 88f7215..570d397 100644 --- a/src/content/redux/modules/dictionaries.ts +++ b/src/content/redux/modules/dictionaries.ts @@ -3,7 +3,6 @@ import { DictID, appConfigFactory, AppConfig } from '@/app-config' import isEq...
feat: add dirty checker
d1f849e5d0813d27bcc4f99164796622d81d31cd
feat
feat
add dirty checker
diff --git a/packages/compiler/experimental/utils.ts b/packages/compiler/experimental/utils.ts index 2bad74d..56aff7e 100644 --- a/packages/compiler/experimental/utils.ts +++ b/packages/compiler/experimental/utils.ts @@ -30,3 +30,31 @@ export const createEdit = ({ t.objectProperty(t.identifier('b'), block ?? t.nul...
style: dis-`allow()` untriggered lints
816b0d49c45f6669c5aae748396e9551f2e30a96
style
style
dis-`allow()` untriggered lints
diff --git a/src/app/help.rs b/src/app/help.rs index 40c1749..0b22a27 100644 --- a/src/app/help.rs +++ b/src/app/help.rs @@ -916,7 +916,6 @@ impl<'a> Help<'a> { } } -#[cfg_attr(feature = "lints", allow(explicit_counter_loop))] fn wrap_help(help: &mut String, longest_w: usize, avail_chars: usize) { debugln...
fix(alert): disable listeners until ready Closes #5821
584470337a0ee82bfa92e43fac291bb8e5132fa0
fix
fix
disable listeners until ready Closes #5821
diff --git a/ionic/components/action-sheet/action-sheet.ts b/ionic/components/action-sheet/action-sheet.ts index 20e54b7..4bdd447 100644 --- a/ionic/components/action-sheet/action-sheet.ts +++ b/ionic/components/action-sheet/action-sheet.ts @@ -193,6 +193,7 @@ class ActionSheetCmp { private descId: string; privat...
fix: show deprecation warning for 'keyboardHandlingEnabled' prop
146b3625f37ed6788d21ebfc6ac7a5516e102c03
fix
fix
show deprecation warning for 'keyboardHandlingEnabled' prop
diff --git a/packages/stack/src/navigators/createStackNavigator.tsx b/packages/stack/src/navigators/createStackNavigator.tsx index 102bb36..e67c2c6 100644 --- a/packages/stack/src/navigators/createStackNavigator.tsx +++ b/packages/stack/src/navigators/createStackNavigator.tsx @@ -40,14 +40,14 @@ function StackNavigator...
style(config): further beautify the changelog in this repo
fd7446ce2f977da44620dc61a95a7e642f6fd000
style
docs
further beautify the changelog in this repo
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bdafc5..edc8c3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,979 +2,941 @@ All notable changes to this project will be documented in this file. -## [1.2.0] - 2023-04-28 +## [1.2.0](https://github.com/orhun/git-cliff/compare/v1.1.2..v1.2.0) - 2023-04-28 ### ⛰...
ci: dump benchmark data to gcs bucket
7f4f8597e829e3e67ecf4858c30f6dbddcc4783a
ci
ci
dump benchmark data to gcs bucket
diff --git a/.github/workflows/ibis-docs-lint.yml b/.github/workflows/ibis-docs-lint.yml index 0495861..00c3343 100644 --- a/.github/workflows/ibis-docs-lint.yml +++ b/.github/workflows/ibis-docs-lint.yml @@ -140,15 +140,22 @@ jobs: comment-on-alert: true alert-threshold: "300%" - - name: c...
feat(cross-check): change min checked results for score calculation
fd849bd08363df60dbc8b9b6d55bac4f5ace88f4
feat
docs
change min checked results for score calculation
diff --git a/server/src/services/courseService.ts b/server/src/services/courseService.ts index 89633f4..10bfc55 100644 --- a/server/src/services/courseService.ts +++ b/server/src/services/courseService.ts @@ -580,8 +580,7 @@ export async function getTaskSolutionCheckers(courseTaskId: number, minCheckedCo .createQu...
perf: Do not do verb formatting at runtime Saves 1K.
3258396738a0129375be9f647ce0b32bfc676568
perf
perf
Do not do verb formatting at runtime Saves 1K.
diff --git a/src/parse/errors.rs b/src/parse/errors.rs index e2e5929..7c59523 100644 --- a/src/parse/errors.rs +++ b/src/parse/errors.rs @@ -821,7 +821,7 @@ impl Error { c.warning(max_occurs.to_string()); c.none(" occurrences, but "); c.warning(curr_occurs.to_string()); - c.none(format...
refactor(player): simplify loadFiles code
983fef55ef08ca2ca25349bb2d5bdff10ecf89f4
refactor
refactor
simplify loadFiles code
diff --git a/frontend/app/player/web/network/loadFiles.ts b/frontend/app/player/web/network/loadFiles.ts index ec174fc..d164333 100644 --- a/frontend/app/player/web/network/loadFiles.ts +++ b/frontend/app/player/web/network/loadFiles.ts @@ -1,43 +1,33 @@ import APIClient from 'App/api_client'; -const NO_NTH_FILE = "...
test(sqlalchemy): add test for spurious cross join
8dac3fe5a7a56356ca95547fcf7925bec8d9c1dd
test
test
add test for spurious cross join
diff --git a/ibis/tests/sql/test_sqlalchemy.py b/ibis/tests/sql/test_sqlalchemy.py index 4ad32a6..b2e5d72 100644 --- a/ibis/tests/sql/test_sqlalchemy.py +++ b/ibis/tests/sql/test_sqlalchemy.py @@ -841,3 +841,63 @@ def test_filter_group_by_agg_with_same_name(): ) ex = sa.select([t0]).where(t0.c.bigint_col == 6...
chore: add `consistent-type-imports` rule in eslint Signed-off-by: Pranav C <pranavxc@gmail.com>
89be2f3215015fa5fa3100f7321cf80015b17e79
chore
chore
add `consistent-type-imports` rule in eslint Signed-off-by: Pranav C <pranavxc@gmail.com>
diff --git a/packages/nocodb/.eslintrc.json b/packages/nocodb/.eslintrc.json index 9e36781..144c3a0 100644 --- a/packages/nocodb/.eslintrc.json +++ b/packages/nocodb/.eslintrc.json @@ -57,46 +57,7 @@ "no-useless-catch": "off", "no-empty": "off", "@typescript-eslint/no-empty-function": "off", - "import...
refactor: replace hasattr + getattr with only getattr
4ab765a04599475813ac010dfb21c0f74d14e925
refactor
refactor
replace hasattr + getattr with only getattr
diff --git a/ibis/backends/base/sql/compiler/extract_subqueries.py b/ibis/backends/base/sql/compiler/extract_subqueries.py index b04cfb8..eab8d22 100644 --- a/ibis/backends/base/sql/compiler/extract_subqueries.py +++ b/ibis/backends/base/sql/compiler/extract_subqueries.py @@ -34,11 +34,11 @@ class ExtractSubqueries: ...
build(benchmarks): remove unnecessary spotless definition It receives this already from the parent pom.
7f9721dc9bbf66a3712d59352f64ca089da139f0
build
build
remove unnecessary spotless definition It receives this already from the parent pom.
diff --git a/benchmarks/project/pom.xml b/benchmarks/project/pom.xml index 62030b6..ab87dea 100644 --- a/benchmarks/project/pom.xml +++ b/benchmarks/project/pom.xml @@ -123,11 +123,6 @@ </plugin> <plugin> - <groupId>com.diffplug.spotless</groupId> - <artifactId>spotless-maven-plugin</artif...
docs: replace global CLI installation instructions with `npx` alternative
9bdccc3cdb5bd3fbbb244ddbc824878cd9b43563
docs
docs
replace global CLI installation instructions with `npx` alternative
diff --git a/docs/Cube.js-ClI/Using-the-Cube.js-CLI.md b/docs/Cube.js-ClI/Using-the-Cube.js-CLI.md index c0d00b9..86d4a97 100644 --- a/docs/Cube.js-ClI/Using-the-Cube.js-CLI.md +++ b/docs/Cube.js-ClI/Using-the-Cube.js-CLI.md @@ -8,49 +8,49 @@ menuOrder: 1 The Cube.js command line interface (CLI) is used for various Cu...
fix: set Opensearch version to 2.5.0 We use Opensearch 2.5.0 in our dependencies. This is tied to the Opensearch versions of other component of the platform. This Docker compose file is only used for local testing. Let's make sure we test on the actual version we support.
b7beb4d8cf19bbb7b72997a8276300a786e4fb5e
fix
build
set Opensearch version to 2.5.0 We use Opensearch 2.5.0 in our dependencies. This is tied to the Opensearch versions of other component of the platform. This Docker compose file is only used for local testing. Let's make sure we test on the actual version we support.
diff --git a/exporters/opensearch-exporter/docker-compose.yml b/exporters/opensearch-exporter/docker-compose.yml index 8fe84b3..647afa1 100644 --- a/exporters/opensearch-exporter/docker-compose.yml +++ b/exporters/opensearch-exporter/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: opensearch: - image...
docs: bootstrap documentation website
dd5b829ecf680f32fbdae4b71a97d6112dfbdec3
docs
chore
bootstrap documentation website
diff --git a/.eslintignore b/.eslintignore index 18f2b36..686aeb3 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,3 +1,4 @@ coverage dist node_modules +website diff --git a/.prettierignore b/.prettierignore index 63520da..b564dd9 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,3 +1,4 @@ node_modules ...
test: reject deploy signal process for tenant
ca346bb77e7f1fb041a2d64a28ed925ed2625101
test
test
reject deploy signal process for tenant
diff --git a/engine/src/test/java/io/camunda/zeebe/engine/processing/multitenancy/TenantAwareSignalEventTest.java b/engine/src/test/java/io/camunda/zeebe/engine/processing/multitenancy/TenantAwareSignalEventTest.java new file mode 100644 index 0000000..125b292 --- /dev/null +++ b/engine/src/test/java/io/camunda/zeebe/e...
build: add prewatch script to core
aa0152baa4376b1087c86499a7c289b668d5ad55
build
build
add prewatch script to core
diff --git a/.gitignore b/.gitignore index 3445558..72257cb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.o +.env settheory constraint Main diff --git a/packages/core/package.json b/packages/core/package.json index 9ba8b93..79bd532 100644 --- a/packages/core/package.json +++ b/packages/core/package.jso...
perf(load): bundle and tree shake assets with webpack
4ab28fc2e63e975a0c77e18ae644f34fa5f8771a
perf
build
bundle and tree shake assets with webpack
diff --git a/package.json b/package.json index c8051d2..b0a97fb 100644 --- a/package.json +++ b/package.json @@ -60,6 +60,7 @@ "babel-cli": "^6.16.0", "babel-core": "^6.16.0", "babel-eslint": "^7.0.0", + "babel-loader": "^6.2.5", "babel-plugin-transform-class-properties": "^6.10.2", "babel-p...
docs(CHANGELOG): add alpha.51 changelog
55f156366f282089112b460b0848e8ecf46a920d
docs
docs
add alpha.51 changelog
diff --git a/CHANGELOG.md b/CHANGELOG.md index eee650b..e9e9c95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +<a name="2.0.0-alpha.51"></a> +# 2.0.0-alpha.51 (2016-1-21) + +### Breaking Changes + +##### Angular was updated to Beta 1 + +* Update the version of Angular in your `package.json` file: + + `...
refactor(atomix): replace explicit flush with RaftLogFlusher Replaces all usages of the explicit flush flag with RaftLogFlusher, and allows for configuring the implementation via a provided factory. The flusher is currently created with the Raft thread context, as flushing the journal is not thread safe yet. This will...
afdd7da22321ff8c43110f49750da7dbb6133806
refactor
refactor
replace explicit flush with RaftLogFlusher Replaces all usages of the explicit flush flag with RaftLogFlusher, and allows for configuring the implementation via a provided factory. The flusher is currently created with the Raft thread context, as flushing the journal is not thread safe yet. This will be changed in a s...
diff --git a/atomix/cluster/src/main/java/io/atomix/raft/impl/RaftContext.java b/atomix/cluster/src/main/java/io/atomix/raft/impl/RaftContext.java index ca56036..b0eae19 100644 --- a/atomix/cluster/src/main/java/io/atomix/raft/impl/RaftContext.java +++ b/atomix/cluster/src/main/java/io/atomix/raft/impl/RaftContext.java...
build: updated riot
700e53c465e221cd1d70297c039894386cc9118b
build
build
updated riot
diff --git a/components/riot/package.json b/components/riot/package.json index a316c2f..67df135 100644 --- a/components/riot/package.json +++ b/components/riot/package.json @@ -62,14 +62,14 @@ "devDependencies": { "@babel/preset-typescript": "^7.15.0", "@riotjs/cli": "^6.0.5", - "@riotjs/compiler": "^6....
docs(changeset): feat: useInstanceHandle, flushGlobalEffects
f5db1b78e013fc2b995867147babcf09d2ff587d
docs
docs
feat: useInstanceHandle, flushGlobalEffects
diff --git a/.changeset/cuddly-eagles-mix.md b/.changeset/cuddly-eagles-mix.md new file mode 100644 index 0000000..57f1b58 --- /dev/null +++ b/.changeset/cuddly-eagles-mix.md @@ -0,0 +1,5 @@ +--- +'@react-three/fiber': minor +--- + +feat: useInstanceHandle, flushGlobalEffects
perf: add ability to get all encoded values
cad5e45208346528ad02cd04dcac863f90faa037
perf
feat
add ability to get all encoded values
diff --git a/delorean_mem_qe/src/column.rs b/delorean_mem_qe/src/column.rs index bc89cb2..b3df18e 100644 --- a/delorean_mem_qe/src/column.rs +++ b/delorean_mem_qe/src/column.rs @@ -537,6 +537,22 @@ impl Column { } } + /// Materialise all of the encoded values. + pub fn all_encoded_values(&self) ->...
chore: increase timeout of jest tests to 15s
f12075b427c7f2d7601a85fbf90f79148adea11e
chore
chore
increase timeout of jest tests to 15s
diff --git a/package.json b/package.json index cd257b3..f71c717 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "mikro-orm": "./dist/cli.js" }, "jest": { - "testTimeout": 10000, + "testTimeout": 15000, "preset": "ts-jest", "collectCoverage": false, "collectCoverageFrom": [...
style: remove clippy warnings
278c153d31788575079a8c22da594deaf8e7a2f7
style
style
remove clippy warnings
diff --git a/src/widgets/canvas/line.rs b/src/widgets/canvas/line.rs index 1a1e062..5e2a61b 100644 --- a/src/widgets/canvas/line.rs +++ b/src/widgets/canvas/line.rs @@ -48,12 +48,10 @@ impl Shape for Line { } else { draw_line_low(painter, x1, y1, x2, y2, self.color); } + ...
style: lint
a2b7615b08f7e0dbfc126571b399cc553d188115
style
style
lint
diff --git a/packages/currencies/src/crypto/dash.ts b/packages/currencies/src/crypto/dash.ts index 57023d5..7287291 100644 --- a/packages/currencies/src/crypto/dash.ts +++ b/packages/currencies/src/crypto/dash.ts @@ -1,4 +1,4 @@ -import { Currency } from '@dinero.js/currencies'; +import type { Currency } from '@dinero....
fix: fix typo
129e863506dec1f8d03d6c8ca2210285970ec714
fix
fix
fix typo
diff --git a/src/_helpers/analytics.ts b/src/_helpers/analytics.ts index 4904a06..6cb8b20 100644 --- a/src/_helpers/analytics.ts +++ b/src/_helpers/analytics.ts @@ -16,5 +16,5 @@ export function injectAnalytics (win = window) { ga.type = 'text/javascript' ga.async = true ga.src = `https://www.googletagmanager....
test(clickhouse): fix field nullability for new test cases
956e56bbf2ccb48aadf4b351ec14e15001ea040f
test
test
fix field nullability for new test cases
diff --git a/ibis/backends/clickhouse/tests/test_client.py b/ibis/backends/clickhouse/tests/test_client.py index 61dbb20..5640d9b 100644 --- a/ibis/backends/clickhouse/tests/test_client.py +++ b/ibis/backends/clickhouse/tests/test_client.py @@ -163,8 +163,8 @@ def test_insert_with_more_columns(temporary_alltypes, df): ...
feat: mentor registry for course managers
b7191a24b71cce2b7260d60de26ac8161546110e
feat
feat
mentor registry for course managers
diff --git a/client/src/components/AdminSider.tsx b/client/src/components/AdminSider.tsx index 2ca2fbb..98068ba 100644 --- a/client/src/components/AdminSider.tsx +++ b/client/src/components/AdminSider.tsx @@ -12,7 +12,7 @@ import { useState } from 'react'; const { Sider } = Layout; -type Props = { isAdmin?: boolea...
build: removed rollup, output bundle too big
5caf2801978cf9dbbf2fb43e202f3b03c488610e
build
build
removed rollup, output bundle too big
diff --git a/core/main/package.json b/core/main/package.json index a7c7bd2..882f7a9 100644 --- a/core/main/package.json +++ b/core/main/package.json @@ -117,7 +117,6 @@ "prettier": "^2.1.2", "reflect-metadata": "^0.1.13", "rimraf": "^3.0.2", - "rollup": "^2.40.0", "source-map-support": "^0.5.19",...
refactor: rename actor and schedule service
5bf9612f6ba628e4ca9268d524aaa83618221fb6
refactor
style
rename actor and schedule service
diff --git a/stream-platform/src/main/java/io/camunda/zeebe/stream/impl/StreamProcessor.java b/stream-platform/src/main/java/io/camunda/zeebe/stream/impl/StreamProcessor.java index 7d0904f..06a833b 100755 --- a/stream-platform/src/main/java/io/camunda/zeebe/stream/impl/StreamProcessor.java +++ b/stream-platform/src/mai...
fix(panel): fix height calc
148cd56d096ba972e9706653c47052a07d5f9d08
fix
fix
fix height calc
diff --git a/src/content/redux/modules/widget.ts b/src/content/redux/modules/widget.ts index 96b54f1..bcfe3bb 100644 --- a/src/content/redux/modules/widget.ts +++ b/src/content/redux/modules/widget.ts @@ -93,7 +93,7 @@ export const initState: WidgetState = { : _initConfig.panelWidth, height: isSaladictP...
perf(core): fix duplicate processing of collection items when flushing Closes #4807
a8a1021a423ba0d17a16848f51b54360241eb3d5
perf
perf
fix duplicate processing of collection items when flushing Closes #4807
diff --git a/packages/core/src/unit-of-work/UnitOfWork.ts b/packages/core/src/unit-of-work/UnitOfWork.ts index b2f1685..f36f88d 100644 --- a/packages/core/src/unit-of-work/UnitOfWork.ts +++ b/packages/core/src/unit-of-work/UnitOfWork.ts @@ -473,7 +473,7 @@ export class UnitOfWork { visited.clear(); for (con...
style(searchbar): fixes linter
16ffcdf0c429a7cab90736f5b9c8e5a2a5bb3f65
style
style
fixes linter
diff --git a/src/components/searchbar/searchbar.ios.scss b/src/components/searchbar/searchbar.ios.scss index c468048..5ed74cb 100644 --- a/src/components/searchbar/searchbar.ios.scss +++ b/src/components/searchbar/searchbar.ios.scss @@ -213,6 +213,7 @@ $searchbar-ios-toolbar-input-background: rgba(0, 0, 0, .08) !defau...
ci(jenkins): only run JMH on develop and master - reduces test duration of feature branches - reduces bors merge duration - show performance impact of PRs and Releases on the respective branches - number parallel stages to enforce ordering in Blue Ocean view - **note**: skipping a parallel stage in Blue Ocean triggers...
83934807f4061980e7f5bf46d36eca70e238835d
ci
ci
only run JMH on develop and master - reduces test duration of feature branches - reduces bors merge duration - show performance impact of PRs and Releases on the respective branches - number parallel stages to enforce ordering in Blue Ocean view - **note**: skipping a parallel stage in Blue Ocean triggers a bug where ...
diff --git a/Jenkinsfile b/Jenkinsfile index 9fbd3a1..3e4f052 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { stage('Verify') { parallel { - stage('Tests') { + stage('1 - Java Tests') { steps { wi...
chore: typos
bb9b95fbd1feae2a035654eefd2fdc03bd94e1fe
chore
style
typos
diff --git a/src/cli/create/mod.rs b/src/cli/create/mod.rs index 9e405ed..228b87b 100644 --- a/src/cli/create/mod.rs +++ b/src/cli/create/mod.rs @@ -16,7 +16,7 @@ pub struct Create { impl Create { pub fn create(self) -> Result<()> { - if Self::name_vaild_check(self.name.clone()) { + if Self::name_...
build: try to fix yarn caching 3
31b89b892201386c76fde6c8742036908319e400
build
build
try to fix yarn caching 3
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f24fbad..2d45b78 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,12 +19,17 @@ jobs: - name: Enable corepack run: | corepack enable + corepack prepare yarn@stable --activate - - nam...
docs(caching): document the use of export buckets for large pre-aggregations Co-authored-by: Ray Paik <ray@cube.dev> Co-authored-by: Artyom Keydunov <artyom@cube.dev> Co-authored-by: Dmitry Patsura <talk@dmtry.me>
81f37be838d5e3af738908b1bcbf59fea2b45989
docs
docs
document the use of export buckets for large pre-aggregations Co-authored-by: Ray Paik <ray@cube.dev> Co-authored-by: Artyom Keydunov <artyom@cube.dev> Co-authored-by: Dmitry Patsura <talk@dmtry.me>
diff --git a/docs/content/Caching/Using-Pre-Aggregations.md b/docs/content/Caching/Using-Pre-Aggregations.md index 7882a25..a927241 100644 --- a/docs/content/Caching/Using-Pre-Aggregations.md +++ b/docs/content/Caching/Using-Pre-Aggregations.md @@ -65,8 +65,8 @@ In development mode, Cube.js enables background refresh b...
perf(all): dynamic import
bb809b63ed03452fbf2e2eabedaaadf474758261
perf
perf
dynamic import
diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 7e22619..9198aff 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -2268,39 +2268,6 @@ declare global { declare global { namespace StencilComponents { - interface IonInputShims { - - } - } - - interface HTMLIonInp...
docs: add link to roadmap
94202f01e44c58bee4419044f8a18ac5f1a50dff
docs
docs
add link to roadmap
diff --git a/packages/plugin-core/README.md b/packages/plugin-core/README.md index 3c25c9b..c7506d4 100644 --- a/packages/plugin-core/README.md +++ b/packages/plugin-core/README.md @@ -187,6 +187,10 @@ When the workspace opens, it will show dialogue to install the recommended exten See [[FAQ]] to answers for common ...
style(scss): fix lint errors
66ae3a4601a6694e252fcf3ed9f6dc2398abf801
style
style
fix lint errors
diff --git a/packages/core/src/components/action-sheet/action-sheet.ios.scss b/packages/core/src/components/action-sheet/action-sheet.ios.scss index 1569bc3..a07294f 100644 --- a/packages/core/src/components/action-sheet/action-sheet.ios.scss +++ b/packages/core/src/components/action-sheet/action-sheet.ios.scss @@ -62,...
chore(transport): replace e.printStackTrace() with logging - log most exceptions on debug except for expected ones on failure testing
0bc3586de9ae8096183219a40998c91e75926919
chore
refactor
replace e.printStackTrace() with logging - log most exceptions on debug except for expected ones on failure testing
diff --git a/transport/src/main/java/io/zeebe/transport/impl/ClientRequestPool.java b/transport/src/main/java/io/zeebe/transport/impl/ClientRequestPool.java index becb0df..0b38f1e 100644 --- a/transport/src/main/java/io/zeebe/transport/impl/ClientRequestPool.java +++ b/transport/src/main/java/io/zeebe/transport/impl/Cl...
docs(nx): add --ignore-existing to all npx commands
fc9af4d0b93d69be4e201ffb18da04324e8a4a87
docs
docs
add --ignore-existing to all npx commands
diff --git a/docs/getting-started/getting-started.md b/docs/getting-started/getting-started.md index dc6db37..3ef9d0a 100644 --- a/docs/getting-started/getting-started.md +++ b/docs/getting-started/getting-started.md @@ -13,7 +13,7 @@ npm install -g @angular/cli **Using `npx`** ```bash -npx create-nx-workspace mywo...
build: updated lockfile
e618b5a9efbe74e05a0da3d5dc257877f9006263
build
build
updated lockfile
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 966b919..2be98fb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,17 +1,18 @@ lockfileVersion: 5.4 importers: + .: specifiers: - "@commitlint/cli": ^17.3.0 - "@commitlint/config-conventional": ^17.3.0 - "@nrwl/cli": ^15.5.2 - "@nrw...
perf(datatypes): speed up __str__ and __hash__
262d3d78642fadd7572033a6c82dcbe1fc472f61
perf
perf
speed up __str__ and __hash__
diff --git a/ibis/expr/datatypes/__init__.py b/ibis/expr/datatypes/__init__.py index f0ea0ae..0e28521 100644 --- a/ibis/expr/datatypes/__init__.py +++ b/ibis/expr/datatypes/__init__.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import ast import builtins import collections @@ -5,7 +7,6 @@ import datetime ...
perf(jsx-runtime): one pass jsx over two pass
d8dd7b73657ba04c6bf23ef28ad87cd94c0c2639
perf
build
one pass jsx over two pass
diff --git a/package.json b/package.json index a6abb96..46bb055 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,7 @@ "@rollup/plugin-strip": "^2.1.0", "@swc-node/jest": "^1.3.3", "@testing-library/dom": "^8.10.1", - "@types/glob": "^7.1.4", + "@types/glob": "^7.2.0", "@types/jest": "...
fix: don't delay rendering if initialLayout is not specified
e9233ae3f7811707945fc2de60971595d83c578d
fix
fix
don't delay rendering if initialLayout is not specified
diff --git a/packages/react-native-tab-view/example/src/BottomBarIconTextExample.js b/packages/react-native-tab-view/example/src/BottomBarIconTextExample.js index fcc4708..397e6e6 100644 --- a/packages/react-native-tab-view/example/src/BottomBarIconTextExample.js +++ b/packages/react-native-tab-view/example/src/BottomB...
perf: debloats clap by deduplicating logic and refactors This commit removes heavy use of macros in certain functions which drastically increased code size. Some of the macros could be turned into functions, while others could be removed entirely. Examples were removing arg_post_processing! which did things like chec...
03e413d7175d35827cd7d8908d47dbae15a849a3
perf
perf
debloats clap by deduplicating logic and refactors This commit removes heavy use of macros in certain functions which drastically increased code size. Some of the macros could be turned into functions, while others could be removed entirely. Examples were removing arg_post_processing! which did things like checked ov...
diff --git a/src/app/macros.rs b/src/app/macros.rs deleted file mode 100644 index e3f15e9..0000000 --- a/src/app/macros.rs +++ /dev/null @@ -1,165 +0,0 @@ -macro_rules! remove_overriden { - (@remove_requires $rem_from:expr, $a:ident.$ov:ident) => { - if let Some(ora) = $a.$ov() { - for i in (0 .. $...
fix(manifest): load pdf viewer under incognito mode
5d57b25b5581af7597e4f816e2576f2c257706e0
fix
chore
load pdf viewer under incognito mode
diff --git a/src/manifest/common.manifest.json b/src/manifest/common.manifest.json index fc79ac8..19b1aff 100644 --- a/src/manifest/common.manifest.json +++ b/src/manifest/common.manifest.json @@ -85,6 +85,8 @@ "default_popup": "popup.html" }, + "incognito": "split", + "permissions": [ "<all_urls>", ...
ci(pyspark): run pyspark tests in parallel
4cbbd2552ba0de273e1dfe7d453c5b3efed751a3
ci
ci
run pyspark tests in parallel
diff --git a/.github/workflows/ibis-backends.yml b/.github/workflows/ibis-backends.yml index e23088e..9708157 100644 --- a/.github/workflows/ibis-backends.yml +++ b/.github/workflows/ibis-backends.yml @@ -202,11 +202,11 @@ jobs: run: poetry install --without dev --without docs --extras ${{ matrix.backend.name ...
ci: add gitignore.nix to dep update matrix
c444fdb9e85ce44c5c0c99addc777dd7b6085153
ci
ci
add gitignore.nix to dep update matrix
diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml index e0ccd62..1236f58 100644 --- a/.github/workflows/update-deps.yml +++ b/.github/workflows/update-deps.yml @@ -13,6 +13,7 @@ jobs: - nixpkgs - poetry2nix - pre-commit-hooks + - gitignore.nix ...
perf(keys): increased performance for `key` ops
b6271f42e105a1da541445e009990ef1d01767ea
perf
perf
increased performance for `key` ops
diff --git a/package.json b/package.json index aeaad45..f2f8a74 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "out" ], "main": "out/index.js", - "types": "out/index.d.ts", + "types": "out/types/src/index.d.ts", "scripts": { "build:clean": "bash scr/build/clean.sh", "build:code...
build: automated deploy of gh-pages
e5ac3c00b19c52774b17fc62f4b63a98d7edf950
build
chore
automated deploy of gh-pages
diff --git a/core/main/deploy.docs.js b/core/main/deploy.docs.js new file mode 100644 index 0000000..9267a2a --- /dev/null +++ b/core/main/deploy.docs.js @@ -0,0 +1,8 @@ +const ghpages = require("gh-pages"); + +ghpages.publish('docs', { + dotfiles: true, + message: "build: gh pages updated", + history: false +...
feat: shared state mechanisms
4a4c7afca7e1beadd4b213214074fdb420eb0923
feat
feat
shared state mechanisms
diff --git a/packages/core/src/context.rs b/packages/core/src/context.rs index dd35ce4..c0eca02 100644 --- a/packages/core/src/context.rs +++ b/packages/core/src/context.rs @@ -102,6 +102,10 @@ impl<'src> Context<'src> { self.scope.memoized_updater.clone() } + pub fn needs_update(&self) { + (s...
feat: add schema support to DataSource::Subquery; fix incompatibilities
1d837b175ef18acb3ab1be701264a27ea044733a
feat
feat
add schema support to DataSource::Subquery; fix incompatibilities
diff --git a/influxdb_iox/tests/query_tests2/cases/in/issue_6112.influxql.expected b/influxdb_iox/tests/query_tests2/cases/in/issue_6112.influxql.expected index 5764200..6b69432 100644 --- a/influxdb_iox/tests/query_tests2/cases/in/issue_6112.influxql.expected +++ b/influxdb_iox/tests/query_tests2/cases/in/issue_6112.i...
style(snowflake): use mapping instead of dict
6b30ee126c543f23542b1a66363cb0f6ade97715
style
refactor
use mapping instead of dict
diff --git a/ibis/backends/snowflake/__init__.py b/ibis/backends/snowflake/__init__.py index 4403af4..01cc60f 100644 --- a/ibis/backends/snowflake/__init__.py +++ b/ibis/backends/snowflake/__init__.py @@ -3,7 +3,7 @@ from __future__ import annotations import contextlib import json import warnings -from typing import...
fix: engine_questions.md formatting
5964e99517228a82e9f61ce22407b8aefa0cddd2
fix
docs
engine_questions.md formatting
diff --git a/docs/engine_questions.md b/docs/engine_questions.md index f486f48..2885b3e 100644 --- a/docs/engine_questions.md +++ b/docs/engine_questions.md @@ -89,5 +89,6 @@ format we need for executing the process. _Note:_ The cache is not evicting any entries right now which can in theory lead to out of memory erro...
chore: do not publish canary builds as 6.0.0
f1d9b6e3983349dcb5d04c6d8e538d304128d724
chore
chore
do not publish canary builds as 6.0.0
diff --git a/package.json b/package.json index 0428a54..1be4fcd 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "clean": "lerna run clean", "build": "lerna run build", "release": "yarn build && lerna publish from-package --contents dist --force-publish", - "publish:next": "lerna publish...
test(ClusteringRule): use more streams
194fd443ffa0a43691ed811d5b1397d192b6a139
test
test
use more streams
diff --git a/qa/integration-tests/src/test/java/io/zeebe/broker/it/clustering/ClusteringRule.java b/qa/integration-tests/src/test/java/io/zeebe/broker/it/clustering/ClusteringRule.java index d15c127..ca7007b 100644 --- a/qa/integration-tests/src/test/java/io/zeebe/broker/it/clustering/ClusteringRule.java +++ b/qa/integ...
style(fmt): make rustfmt happy and update plugins
514d9c9b0e8b73cef16322b117c45c529d3a68c4
style
style
make rustfmt happy and update plugins
diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm index e60c03c..2f5e135 100644 Binary files a/assets/plugins/status-bar.wasm and b/assets/plugins/status-bar.wasm differ diff --git a/assets/plugins/strider.wasm b/assets/plugins/strider.wasm index e01c909..0c387b3 100644 Binary files a/assets/...
style: cargo fmt run
eafee3c5c124ce0c71fd854270cea39cc273b27c
style
style
cargo fmt run
diff --git a/src/lib.rs b/src/lib.rs index fafffc8..5c8ffb3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -584,7 +584,7 @@ mod parse; mod util; const INTERNAL_ERROR_MSG: &str = "Fatal internal error. Please consider filing a bug \ - report at https://github.com/kbknapp/clap-rs...
build: pom plugin change
a0b3525a4a553ae3f5cba77052c78af832e8433f
build
build
pom plugin change
diff --git a/pom.xml b/pom.xml index 1d56a11..681e50d 100644 --- a/pom.xml +++ b/pom.xml @@ -125,6 +125,11 @@ <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.springframework.kafka</groupId> + <artifactI...
perf: add removeClippedSubviews to improve memory usage
781a1b94c11645859eb1ea71c2ebf8b73e5baa67
perf
perf
add removeClippedSubviews to improve memory usage
diff --git a/packages/react-native-tab-view/src/Pager.js b/packages/react-native-tab-view/src/Pager.js index 1c91750..0d1204d 100644 --- a/packages/react-native-tab-view/src/Pager.js +++ b/packages/react-native-tab-view/src/Pager.js @@ -1,7 +1,7 @@ /* @flow */ import * as React from 'react'; -import { StyleSheet } ...
build: improved webpack build
46f713657ff9f7a5b01ac549c0223f2e4ede7904
build
build
improved webpack build
diff --git a/core/editor/webpack.config.js b/core/editor/webpack.config.js index 86505e6..2f08420 100644 --- a/core/editor/webpack.config.js +++ b/core/editor/webpack.config.js @@ -22,7 +22,7 @@ const getJsConfig = (entry) => { path: path.resolve(__dirname, "dist"), filename: "[name].js", ...
ci: update js tests to make test
346f19783ac596f40ca03fe853fe68c394a3001c
ci
chore
update js tests to make test
diff --git a/Makefile b/Makefile index d1358c7..ca0710c 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ UTILS := \ # # This target setups the dependencies to correctly build all commands. # Other targets must depend on this target to correctly builds CMDS. -all: dep Gopkg.lock $(UTILS) subdirs $(CMDS) +all: d...
ci: add plan for viewing Jaeger CI traces locally This allows you to run a single dagger do command that pulls down jaeger data from the artifacts of a GHA run, start a local Jaeger daemon with it and then view it in your web browser. The dagger do command for this is printed at the end of GHA runs with all the --wit...
5ebfebf86e60aae2610eb0ed84d177d53cd75f9d
ci
ci
add plan for viewing Jaeger CI traces locally This allows you to run a single dagger do command that pulls down jaeger data from the artifacts of a GHA run, start a local Jaeger daemon with it and then view it in your web browser. The dagger do command for this is printed at the end of GHA runs with all the --with pa...
diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index b57d8b5..ef8e29c 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -135,3 +135,9 @@ jobs: with: name: jaeger_data path: ${{ runner.temp }}/j...
ci: use newer version of check-versions-action
ec5400a6bbf2364b68dc960622585751e0b4e01a
ci
ci
use newer version of check-versions-action
diff --git a/.github/workflows/versions.yml b/.github/workflows/versions.yml index 655bec9..aad4ba7 100644 --- a/.github/workflows/versions.yml +++ b/.github/workflows/versions.yml @@ -9,7 +9,7 @@ jobs: check-versions: runs-on: ubuntu-latest steps: - - uses: react-navigation/check-versions-action@v1.0...
chore(pom): add jackson dependencies for zb-bpmn-model
fab09655d5cc30727289cc3f26e5396fce235cd3
chore
build
add jackson dependencies for zb-bpmn-model
diff --git a/parent/pom.xml b/parent/pom.xml index d475131..6290e66 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -35,6 +35,7 @@ <version.mockito>1.8.5</version.mockito> <version.assertj>3.8.0</version.assertj> <version.msgpack>0.8.13</version.msgpack> + <version.jackson>2.9.0</version.jackson> ...
style: fix lints in code that's not compiled if the opt-out feature "color" is set
7f797e68d8f721dff9553ba0ba5616efc456ebb5
style
style
fix lints in code that's not compiled if the opt-out feature "color" is set
diff --git a/src/fmt.rs b/src/fmt.rs index 8b1ccf1..3f52efd 100644 --- a/src/fmt.rs +++ b/src/fmt.rs @@ -13,9 +13,9 @@ const STDERR: i32 = libc::STDERR_FILENO; #[cfg(all(feature = "color", not(target_os = "windows")))] const STDOUT: i32 = libc::STDOUT_FILENO; -#[cfg(any(not(feature = "color"), target_os = "windows"...
refactor: add missing middleware Signed-off-by: Pranav C <pranavxc@gmail.com>
8390829b35f5cc5206ee943f3cbb9ebe438304bb
refactor
fix
add missing middleware Signed-off-by: Pranav C <pranavxc@gmail.com>
diff --git a/packages/nocodb/src/Noco.ts b/packages/nocodb/src/Noco.ts index be7c7ac..e6c1fea 100644 --- a/packages/nocodb/src/Noco.ts +++ b/packages/nocodb/src/Noco.ts @@ -4,6 +4,8 @@ import clear from 'clear'; import * as express from 'express'; import NcToolGui from 'nc-lib-gui'; import { IoAdapter } from '@nestj...
test: adjust replay tests
ae93a1cb8991f8cc943bff7372cbe919a131db23
test
test
adjust replay tests
diff --git a/server/src/db/replay.rs b/server/src/db/replay.rs index 42eb3ae..aba9127 100644 --- a/server/src/db/replay.rs +++ b/server/src/db/replay.rs @@ -1664,8 +1664,7 @@ mod tests { } #[tokio::test] - async fn replay_works_with_checkpoints_all_full_persisted() { - // regression test for https...
ci: use new, public `quay.io/influxdb/iox` image
f751bb5426b87f82096d620f1cd6203badf45d58
ci
ci
use new, public `quay.io/influxdb/iox` image
diff --git a/.circleci/config.yml b/.circleci/config.yml index 3ae6728..a5f2d2f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ # The CI for every PR and merge to main runs tests, fmt, lints and compiles debug binaries # # On main if all these checks pass it will then additionally comp...
perf: use traditional loops to maximize performance
075c55c185eee632e185d80f3acb3908fc167118
perf
perf
use traditional loops to maximize performance
diff --git a/benchmark/list-render.js b/benchmark/list-render.js index d8b732d..300aa62 100644 --- a/benchmark/list-render.js +++ b/benchmark/list-render.js @@ -15,7 +15,7 @@ const listRender = (() => { }, fn() { children.push(Million.m('div', { key: 'foo' }, [String(Date.now())])); - Mill...
fix: fixed start types for size and opacity
06960183db42cba1b1f1a8077660ba8c801c9e18
fix
fix
fixed start types for size and opacity
diff --git a/core/main/src/Core/Particle.ts b/core/main/src/Core/Particle.ts index 1aa6fba..6ea6ffc 100644 --- a/core/main/src/Core/Particle.ts +++ b/core/main/src/Core/Particle.ts @@ -271,7 +271,7 @@ export class Particle implements IParticle { } } - const sizeAnimation = this.options.si...
docs: Fix readme Signed-off-by: Ben Johnson <bjohnson@binarylogic.com>
662c5d1346ea2b01c0bc3c11c648cbdf92035fe2
docs
docs
Fix readme Signed-off-by: Ben Johnson <bjohnson@binarylogic.com>
diff --git a/README.md b/README.md index 587d655..da746bb 100644 --- a/README.md +++ b/README.md @@ -38,15 +38,20 @@ simple and unified. * [**Installation**][docs.installation] - [containers][docs.containers], [operating systems][docs.operating_systems], [package managers][docs.package_managers], [from archives][docs....
fix(query-builder): allow passing array of keys to `qb.onConflict().merge()` Related: #1774
e4a1cf0b54452ced49c849fe085a51ca5d99d7a2
fix
fix
allow passing array of keys to `qb.onConflict().merge()` Related: #1774
diff --git a/packages/knex/src/query/QueryBuilder.ts b/packages/knex/src/query/QueryBuilder.ts index f1d334f..00f7deb 100644 --- a/packages/knex/src/query/QueryBuilder.ts +++ b/packages/knex/src/query/QueryBuilder.ts @@ -67,7 +67,7 @@ export class QueryBuilder<T extends AnyEntity<T> = AnyEntity> { private _orderBy: ...
ci: run nightly builds for Chromium upgrade branches
0b560607f762d7d7e19d7039f67806381a6c1fd2
ci
build
run nightly builds for Chromium upgrade branches
diff --git a/.circleci/config.yml b/.circleci/config.yml index 66adaac..2310ae1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -705,6 +705,7 @@ workflows: branches: only: - master + - chromium-upgrade/* jobs: - linux-checkout ...
feat: format components properly
f9d9f859240c6f7e78b0303ea40e46622d42bc3c
feat
fix
format components properly
diff --git a/packages/autofmt/src/lib.rs b/packages/autofmt/src/lib.rs index a7a0bbb..9eeb82e 100644 --- a/packages/autofmt/src/lib.rs +++ b/packages/autofmt/src/lib.rs @@ -1,5 +1,6 @@ //! pretty printer for rsx! use dioxus_rsx::*; +use quote::ToTokens; use std::fmt::{self, Write}; mod prettyplease; @@ -15,7 +16,...
fix(gui): reload column width data when column create/delete or when view changes Signed-off-by: Pranav C <pranavxc@gmail.com>
bee72fc5bea1baae9c89e34d8562aa706ed54607
fix
fix
reload column width data when column create/delete or when view changes Signed-off-by: Pranav C <pranavxc@gmail.com>
diff --git a/packages/nc-gui/composables/useGridViewColumnWidth.ts b/packages/nc-gui/composables/useGridViewColumnWidth.ts index b73f58b..adca292 100644 --- a/packages/nc-gui/composables/useGridViewColumnWidth.ts +++ b/packages/nc-gui/composables/useGridViewColumnWidth.ts @@ -50,8 +50,9 @@ export function useGridViewCo...
build: updated to typescript 4.7
90fb6b89540a611b8323675dc9caf773eac66e22
build
build
updated to typescript 4.7
diff --git a/bundles/full/package.json b/bundles/full/package.json index 3f33f0b..03c040b 100644 --- a/bundles/full/package.json +++ b/bundles/full/package.json @@ -102,7 +102,7 @@ "prettier": "^2.6.2", "rimraf": "^3.0.2", "terser-webpack-plugin": "^5.3.1", - "typescript": "^4.6.4", + "typescript":...
chore(nginx): using header same as the target service Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
6240d0a025ef3e16af15e36c09a1b99d0a49a418
chore
chore
using header same as the target service Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
diff --git a/scripts/dockerfiles/nginx/location.list b/scripts/dockerfiles/nginx/location.list index 2ffc432..ef6b784 100644 --- a/scripts/dockerfiles/nginx/location.list +++ b/scripts/dockerfiles/nginx/location.list @@ -6,12 +6,13 @@ location /healthz { } location /api/ { set $target $api_endpoint; + rewrite ^...
build: update version (v0.6.18)
bb3e3d9b96e435c3b92fc208bca93d1ad7e1ad50
build
build
update version (v0.6.18)
diff --git a/Cargo.lock b/Cargo.lock index c32d8b4..599790e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "els" -version = "0.1.30-nightly.2" +version = "0.1.30" dependencies = [ "erg_common", "erg_compiler", @@ -105,7 +105,7 @@ dependencies = [ [[package]] ...
test: add nested subprocess test This test will ensure that we can start a process instance within a nested subprocess
51aad350ed6c02334ff8f9e1e9a6820061d84899
test
test
add nested subprocess test This test will ensure that we can start a process instance within a nested subprocess
diff --git a/engine/src/test/java/io/camunda/zeebe/engine/processing/processinstance/CreateProcessInstanceAnywhereTest.java b/engine/src/test/java/io/camunda/zeebe/engine/processing/processinstance/CreateProcessInstanceAnywhereTest.java index ca4e34b..f1b9e52 100644 --- a/engine/src/test/java/io/camunda/zeebe/engine/pr...
perf(virtualScroll): improve UIWebView virtual scroll Related #6104
ff1daa6027d2ec434b52e8325e21dd1f16d71db5
perf
perf
improve UIWebView virtual scroll Related #6104
diff --git a/src/components/img/img.scss b/src/components/img/img.scss index 383661f..ce2f7dd 100644 --- a/src/components/img/img.scss +++ b/src/components/img/img.scss @@ -5,11 +5,18 @@ ion-img { position: relative; - display: block; + display: flex; + overflow: hidden; + + align-items: center; + justify-co...
ci: add `libgeos-dev` to `benchmarks` job
9d6e989a01c6b47e97cb4aef31974e19c3a6a4ce
ci
ci
add `libgeos-dev` to `benchmarks` job
diff --git a/.github/workflows/ibis-docs-lint.yml b/.github/workflows/ibis-docs-lint.yml index 6ebe057..5d40339 100644 --- a/.github/workflows/ibis-docs-lint.yml +++ b/.github/workflows/ibis-docs-lint.yml @@ -74,7 +74,7 @@ jobs: python-version: "3.10" - name: install system dependencies - run...
style(content): change wording
3cda99251ec181cd58bc436854c7947fe62b414a
style
style
change wording
diff --git a/src/content/components/DictItem/index.tsx b/src/content/components/DictItem/index.tsx index 7baba7e..b96d6b4 100644 --- a/src/content/components/DictItem/index.tsx +++ b/src/content/components/DictItem/index.tsx @@ -22,19 +22,19 @@ export type DictItemProps = { export type DictItemState = { copySearc...
ci: use an action for issue assignment
fb3a231b29bc8bff9270b99dd4aff9dad599f21f
ci
ci
use an action for issue assignment
diff --git a/.github/workflows/assign.yml b/.github/workflows/assign.yml index 29d92a8..758874e 100644 --- a/.github/workflows/assign.yml +++ b/.github/workflows/assign.yml @@ -8,8 +8,6 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event.comment.body == '/take' }} steps: - - uses: actions/checkout@...
build: move to poetry 1.2
00389a5e0e87ebb090fcc245708ea7b725628526
build
build
move to poetry 1.2
diff --git a/.github/workflows/check-generated-files.yml b/.github/workflows/check-generated-files.yml index 0898c37..48c110f 100644 --- a/.github/workflows/check-generated-files.yml +++ b/.github/workflows/check-generated-files.yml @@ -40,10 +40,10 @@ jobs: run: sudo apt-get install -y -q build-essential grap...
test(protocol-impl): set tenantId value Gives a value to the tenantId of the MessageRecord.
d897e96615f7776ba65dad3ff7eeb7e9658bf77e
test
test
set tenantId value Gives a value to the tenantId of the MessageRecord.
diff --git a/protocol-impl/src/test/java/io/camunda/zeebe/protocol/impl/JsonSerializableToJsonTest.java b/protocol-impl/src/test/java/io/camunda/zeebe/protocol/impl/JsonSerializableToJsonTest.java index 2d84592..a6c37f6 100644 --- a/protocol-impl/src/test/java/io/camunda/zeebe/protocol/impl/JsonSerializableToJsonTest.j...
style: moving Piper interface close to where its used
959daeca4d46126aae70c994eaf626e4a287f5a4
style
refactor
moving Piper interface close to where its used
diff --git a/main.go b/main.go index 0852cd9..a8c9ccb 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ var ( normalPadding = lcli.Default.Padding increasedPadding = normalPadding * 2 - pipes = []pipeline.Piper{ + pipes = []Piper{ defaults.Pipe{}, // load default configs dist.Pipe{}, ...
build: [gn] include node_modules in default_app asar The default_app asar was recently changed to reference files inside `node_modules/` in addition to files inside `default_app/`. The `js2asar.py` script was updated to interpret what this meant, but the GN build wasn't. This change somewhat hackily makes the GN build...
3971fbc671638ce761dfba015f58ce8ef38c760f
build
build
[gn] include node_modules in default_app asar The default_app asar was recently changed to reference files inside `node_modules/` in addition to files inside `default_app/`. The `js2asar.py` script was updated to interpret what this meant, but the GN build wasn't. This change somewhat hackily makes the GN build reuse ...
diff --git a/build/asar.gni b/build/asar.gni index d9298e8..400a397 100644 --- a/build/asar.gni +++ b/build/asar.gni @@ -1,29 +1,44 @@ import("npm.gni") +# Run an action with a given working directory. Behaves identically to the +# action() target type, with the exception that it changes directory before +# running ...
ci: update dependencies less often
a37b6dc073104f39c71e12cbf85ee2414a5022a7
ci
ci
update dependencies less often
diff --git a/.github/workflows/conda-lock.yml b/.github/workflows/conda-lock.yml index b74d08b..48eca89 100644 --- a/.github/workflows/conda-lock.yml +++ b/.github/workflows/conda-lock.yml @@ -3,8 +3,8 @@ name: Generate Conda Lockfiles on: schedule: - # At minute 30 past every 24th hour - - cron: "30 */24 *...
ci(lint): debug
2fbf51d2692efced910b36999c6c46ed961726a6
ci
chore
debug
diff --git a/scr/test/lint.sh b/scr/test/lint.sh index 8930877..dbbae0c 100644 --- a/scr/test/lint.sh +++ b/scr/test/lint.sh @@ -1,3 +1,3 @@ #!/bin/bash -npx eslint 'src/**' +npx eslint 'src/**' --debug
fix(text): add important to override paragraphs in items
7ab363f7ba2807b3eb9895e47f4fcd058f43ae5e
fix
test
add important to override paragraphs in items
diff --git a/packages/core/src/components/text/text.ios.scss b/packages/core/src/components/text/text.ios.scss index a3c58e2..2a020ab 100644 --- a/packages/core/src/components/text/text.ios.scss +++ b/packages/core/src/components/text/text.ios.scss @@ -9,8 +9,9 @@ @each $color-name, $color-base, $color-contrast in get...
ci: change S3 access key
26794c623cad7cfe22e2f583a5207c056804fa38
ci
ci
change S3 access key
diff --git a/.appveyor.yml b/.appveyor.yml index 42063da..7031e61 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -19,9 +19,9 @@ environment: RUST_BACKTRACE: 1 RUSTC_WRAPPER: sccache SCCACHE_BUCKET: deno-sccache - AWS_ACCESS_KEY_ID: AKIAIPOYFUDOPCMWRVZA + AWS_ACCESS_KEY_ID: AKIAIVRN52PLDBP55LBQ AWS_SECR...
refactor(options): add page balckwhitelist and pdf
9b1c0fc20b614513384a1e562317dbf076eb8ef0
refactor
feat
add page balckwhitelist and pdf
diff --git a/src/_locales/common/messages.json b/src/_locales/common/messages.json index e8524ac..3a596d6 100644 --- a/src/_locales/common/messages.json +++ b/src/_locales/common/messages.json @@ -4,11 +4,21 @@ "zh_CN": "添加", "zh_TW": "新增" }, + "blacklist": { + "en": "Blacklist", + "zh_CN": "黑名单", +...
fix(gateway): serialize access to StreamObserver
22044d58302513f5cf22b06151c4a367bbb88f6e
fix
fix
serialize access to StreamObserver
diff --git a/gateway/src/main/java/io/camunda/zeebe/gateway/impl/stream/ClientStreamAdapter.java b/gateway/src/main/java/io/camunda/zeebe/gateway/impl/stream/ClientStreamAdapter.java index ae2b1c0..8ed64e5 100644 --- a/gateway/src/main/java/io/camunda/zeebe/gateway/impl/stream/ClientStreamAdapter.java +++ b/gateway/src...