\\n
\\n Next\\n \\n\"]"},"concern_count":{"kind":"number","value":4,"string":"4"},"shas":{"kind":"string","value":"[\"6786fd5955b064021f5b6d6a630453351d683fae\", \"90d4c1d5bcc9f2dce6e1da0cb953f04f46fb1380\", \"9ab4c61975e073e214646443d088339cfdbaa88d\", \"1e05a24486f15889ddf6bf1c711ea2bbffc1a88e\"]"},"types":{"kind":"string","value":"[\"ci\", \"test\", \"build\", \"fix\"]"}}},{"rowIdx":1024,"cells":{"commit_message":{"kind":"string","value":"convert to record,add --ignore-existing to all npx commands,filters for Rating\n\nSigned-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>,ecma 7 ready"},"diff":{"kind":"string","value":"[\"diff --git a/broker/src/test/java/io/camunda/zeebe/broker/exporter/stream/ExporterDirectorDistributionTest.java b/broker/src/test/java/io/camunda/zeebe/broker/exporter/stream/ExporterDirectorDistributionTest.java\\nindex cc998c6..65c8550 100755\\n--- a/broker/src/test/java/io/camunda/zeebe/broker/exporter/stream/ExporterDirectorDistributionTest.java\\n+++ b/broker/src/test/java/io/camunda/zeebe/broker/exporter/stream/ExporterDirectorDistributionTest.java\\n@@ -167,13 +167,8 @@ public final class ExporterDirectorDistributionTest {\\n *
This makes sure that even if we miss one export position event, we distribute the event\\n * later again, which makes tests less flaky.\\n */\\n- private static final class ClockShifter implements ConditionEvaluationListener {\\n-\\n- private final ControlledActorClock clock;\\n-\\n- public ClockShifter(final ControlledActorClock clock) {\\n- this.clock = clock;\\n- }\\n+ private record ClockShifter(ControlledActorClock clock)\\n+ implements ConditionEvaluationListener {\\n \\n @Override\\n public void conditionEvaluated(final EvaluatedCondition condition) {\\n\", \"diff --git a/docs/getting-started/getting-started.md b/docs/getting-started/getting-started.md\\nindex dc6db37..3ef9d0a 100644\\n--- a/docs/getting-started/getting-started.md\\n+++ b/docs/getting-started/getting-started.md\\n@@ -13,7 +13,7 @@ npm install -g @angular/cli\\n **Using `npx`**\\n \\n ```bash\\n-npx create-nx-workspace myworkspace\\n+npx --ignore-existing create-nx-workspace myworkspace\\n ```\\n \\n **Using `npm init`**\\ndiff --git a/docs/guides/react-and-angular.md b/docs/guides/react-and-angular.md\\nindex c1929a2..a5651ff 100644\\n--- a/docs/guides/react-and-angular.md\\n+++ b/docs/guides/react-and-angular.md\\n@@ -11,7 +11,7 @@ To show how Nx does it, let's build two applications (one in Angular, and one in\\n Let's start by creating a new Nx workspace. The easiest way to do this is to use npx.\\n \\n ```bash\\n-npx create-nx-workspace happynrwl --preset=empty\\n+npx --ignore-existing create-nx-workspace happynrwl --preset=empty\\n ```\\n \\n ## Creating an Angular Application\\ndiff --git a/docs/guides/react.md b/docs/guides/react.md\\nindex e1647fd..eac848e 100644\\n--- a/docs/guides/react.md\\n+++ b/docs/guides/react.md\\n@@ -16,13 +16,13 @@ Nx has first class support for React: you can create React applications and libr\\n Create a new Nx workspace. The easiest way to do it is to use npx.\\n \\n ```bash\\n-npx create-nx-workspace happynrwl --preset=empty\\n+npx --ignore-existing create-nx-workspace happynrwl --preset=empty\\n ```\\n \\n You can also create a workspace with a React application in place by running:\\n \\n ```bash\\n-npx create-nx-workspace happynrwl --preset=react\\n+npx --ignore-existing create-nx-workspace happynrwl --preset=react\\n ```\\n \\n ## Generating a React Application\\ndiff --git a/docs/tutorial/01-create-application.md b/docs/tutorial/01-create-application.md\\nindex ea87ecf..967a56e 100644\\n--- a/docs/tutorial/01-create-application.md\\n+++ b/docs/tutorial/01-create-application.md\\n@@ -7,7 +7,7 @@ In this tutorial you will use Nx to build a full-stack application out of common\\n **Start by creating a new workspace.**\\n \\n ```bash\\n-npx create-nx-workspace myorg\\n+npx --ignore-existing create-nx-workspace myorg\\n ```\\n \\n When asked about 'preset', select `empty`.\\n\", \"diff --git a/tests/playwright/pages/Dashboard/common/Toolbar/Filter.ts b/tests/playwright/pages/Dashboard/common/Toolbar/Filter.ts\\nindex 1a626fa..b82e7f6 100644\\n--- a/tests/playwright/pages/Dashboard/common/Toolbar/Filter.ts\\n+++ b/tests/playwright/pages/Dashboard/common/Toolbar/Filter.ts\\n@@ -1,6 +1,7 @@\\n import { expect } from '@playwright/test';\\n import BasePage from '../../../Base';\\n import { ToolbarPage } from './index';\\n+import { UITypes } from 'nocodb-sdk';\\n \\n export class ToolbarFilterPage extends BasePage {\\n readonly toolbar: ToolbarPage;\\n@@ -33,11 +34,13 @@ export class ToolbarFilterPage extends BasePage {\\n opType,\\n value,\\n isLocallySaved,\\n+ dataType,\\n }: {\\n columnTitle: string;\\n opType: string;\\n value?: string;\\n isLocallySaved: boolean;\\n+ dataType?: string;\\n }) {\\n await this.get().locator(`button:has-text(\\\"Add Filter\\\")`).first().click();\\n \\n@@ -86,14 +89,25 @@ export class ToolbarFilterPage extends BasePage {\\n \\n // if value field was provided, fill it\\n if (value) {\\n- const fillFilter = this.rootPage.locator('.nc-filter-value-select > input').last().fill(value);\\n- await this.waitForResponse({\\n- uiAction: fillFilter,\\n- httpMethodsToMatch: ['GET'],\\n- requestUrlPathToMatch: isLocallySaved ? `/api/v1/db/public/` : `/api/v1/db/data/noco/`,\\n- });\\n- await this.toolbar.parent.dashboard.waitForLoaderToDisappear();\\n- await this.toolbar.parent.waitLoading();\\n+ let fillFilter: any = null;\\n+ switch (dataType) {\\n+ case UITypes.Rating:\\n+ await this.get('.nc-filter-value-select')\\n+ .locator('.ant-rate-star > div')\\n+ .nth(parseInt(value) - 1)\\n+ .click();\\n+ break;\\n+ default:\\n+ fillFilter = this.rootPage.locator('.nc-filter-value-select > input').last().fill(value);\\n+ await this.waitForResponse({\\n+ uiAction: fillFilter,\\n+ httpMethodsToMatch: ['GET'],\\n+ requestUrlPathToMatch: isLocallySaved ? `/api/v1/db/public/` : `/api/v1/db/data/noco/`,\\n+ });\\n+ await this.toolbar.parent.dashboard.waitForLoaderToDisappear();\\n+ await this.toolbar.parent.waitLoading();\\n+ break;\\n+ }\\n }\\n }\\n \\ndiff --git a/tests/playwright/tests/filters.spec.ts b/tests/playwright/tests/filters.spec.ts\\nindex 774a70a..48d949a 100644\\n--- a/tests/playwright/tests/filters.spec.ts\\n+++ b/tests/playwright/tests/filters.spec.ts\\n@@ -36,7 +36,13 @@ async function validateRowArray(param) {\\n // }\\n }\\n \\n-async function verifyFilter(param: { column: string; opType: string; value?: string; result: { rowCount: number } }) {\\n+async function verifyFilter(param: {\\n+ column: string;\\n+ opType: string;\\n+ value?: string;\\n+ result: { rowCount: number };\\n+ dataType?: string;\\n+}) {\\n // if opType was included in skip list, skip it\\n if (skipList[param.column]?.includes(param.opType)) {\\n return;\\n@@ -48,6 +54,7 @@ async function verifyFilter(param: { column: string; opType: string; value?: str\\n opType: param.opType,\\n value: param.value,\\n isLocallySaved: false,\\n+ dataType: param?.dataType,\\n });\\n await toolbar.clickFilter();\\n \\n@@ -414,4 +421,74 @@ test.describe('Filter Tests: Numerical', () => {\\n });\\n }\\n });\\n+\\n+ test('Filter: Rating', async () => {\\n+ // close 'Team & Auth' tab\\n+ await dashboard.closeTab({ title: 'Team & Auth' });\\n+ await dashboard.treeView.openTable({ title: 'numberBased' });\\n+ const dataType = 'Rating';\\n+\\n+ const filterList = [\\n+ {\\n+ op: '=',\\n+ value: '3',\\n+ rowCount: records.list.filter(r => r[dataType] === 3).length,\\n+ },\\n+ {\\n+ op: '!=',\\n+ value: '3',\\n+ rowCount: records.list.filter(r => r[dataType] !== 3).length,\\n+ },\\n+ {\\n+ op: 'is null',\\n+ value: '',\\n+ rowCount: records.list.filter(r => r[dataType] === null).length,\\n+ },\\n+ {\\n+ op: 'is not null',\\n+ value: '',\\n+ rowCount: records.list.filter(r => r[dataType] !== null).length,\\n+ },\\n+ {\\n+ op: 'is blank',\\n+ value: '',\\n+ rowCount: records.list.filter(r => r[dataType] === null).length,\\n+ },\\n+ {\\n+ op: 'is not blank',\\n+ value: '',\\n+ rowCount: records.list.filter(r => r[dataType] !== null).length,\\n+ },\\n+ {\\n+ op: '>',\\n+ value: '2',\\n+ rowCount: records.list.filter(r => r[dataType] > 2 && r[dataType] != null).length,\\n+ },\\n+ {\\n+ op: '>=',\\n+ value: '2',\\n+ rowCount: records.list.filter(r => r[dataType] >= 2 && r[dataType] != null).length,\\n+ },\\n+ {\\n+ op: '<',\\n+ value: '2',\\n+ rowCount: records.list.filter(r => r[dataType] < 2 && r[dataType] != null).length,\\n+ },\\n+ {\\n+ op: '<=',\\n+ value: '2',\\n+ rowCount: records.list.filter(r => r[dataType] <= 2 && r[dataType] != null).length,\\n+ },\\n+ ];\\n+\\n+ for (let i = 0; i < filterList.length; i++) {\\n+ await verifyFilter({\\n+ column: dataType,\\n+ opType: filterList[i].op,\\n+ value: filterList[i].value,\\n+ result: { rowCount: filterList[i].rowCount },\\n+ dataType: dataType,\\n+ });\\n+ }\\n+ });\\n });\\n\", \"diff --git a/config/webpack.config.prod.js b/config/webpack.config.prod.js\\nindex f7c6b23..4a00c65 100644\\n--- a/config/webpack.config.prod.js\\n+++ b/config/webpack.config.prod.js\\n@@ -266,7 +266,7 @@ module.exports = {\\n : new UglifyJsPlugin({\\n uglifyOptions: {\\n ie8: false,\\n- ecma: 6,\\n+ ecma: 7,\\n compress: {\\n warnings: false,\\n // Disabled because of an issue with Uglify breaking seemingly valid code:\\n\"]"},"concern_count":{"kind":"number","value":4,"string":"4"},"shas":{"kind":"string","value":"[\"3346331a963766c8193170fb130adad2e658ada2\", \"fc9af4d0b93d69be4e201ffb18da04324e8a4a87\", \"de88de81551d3e2619444a25a68170c9ed35a9b5\", \"6aa63c9b8d4dcdbb401743adc3c9a1020d943250\"]"},"types":{"kind":"string","value":"[\"refactor\", \"docs\", \"test\", \"build\"]"}}},{"rowIdx":1025,"cells":{"commit_message":{"kind":"string","value":"set first-attempt to 5s and subsequent-attempt to 180s by default,Fix windows build,add system get version info Fiddle example (#20536),fix unit tests"},"diff":{"kind":"string","value":"[\"diff --git a/testnet/stacks-node/src/config.rs b/testnet/stacks-node/src/config.rs\\nindex 24ca06c..d80f721 100644\\n--- a/testnet/stacks-node/src/config.rs\\n+++ b/testnet/stacks-node/src/config.rs\\n@@ -1414,8 +1414,8 @@ impl MinerConfig {\\n pub fn default() -> MinerConfig {\\n MinerConfig {\\n min_tx_fee: 1,\\n- first_attempt_time_ms: 1_000,\\n- subsequent_attempt_time_ms: 30_000,\\n+ first_attempt_time_ms: 5_000,\\n+ subsequent_attempt_time_ms: 180_000,\\n microblock_attempt_time_ms: 30_000,\\n probability_pick_no_estimate_tx: 5,\\n }\\n\", \"diff --git a/src/fs/mounts/mod.rs b/src/fs/mounts/mod.rs\\nindex a7f8188..662e2f5 100644\\n--- a/src/fs/mounts/mod.rs\\n+++ b/src/fs/mounts/mod.rs\\n@@ -29,11 +29,14 @@ impl std::error::Error for Error {}\\n \\n impl std::fmt::Display for Error {\\n fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {\\n+ // Allow unreachable_patterns for windows build\\n+ #[allow(unreachable_patterns)]\\n match self {\\n #[cfg(target_os = \\\"macos\\\")]\\n Error::GetFSStatError(err) => write!(f, \\\"getfsstat failed: {err}\\\"),\\n #[cfg(target_os = \\\"linux\\\")]\\n- Error::IOError(err) => write!(f, \\\"failed to read /proc/mounts: {err}\\\")\\n+ Error::IOError(err) => write!(f, \\\"failed to read /proc/mounts: {err}\\\"),\\n+ _ => write!(f, \\\"Unknown error\\\"),\\n }\\n }\\n }\\n\\\\ No newline at end of file\\ndiff --git a/src/main.rs b/src/main.rs\\nindex 483e14d..ca28081 100644\\n--- a/src/main.rs\\n+++ b/src/main.rs\\n@@ -62,6 +62,8 @@ mod theme;\\n // to `clap` is complete.\\n lazy_static! {\\n static ref ALL_MOUNTS: HashMap = {\\n+ // Allow unused_mut for windows\\n+ #[allow(unused_mut)]\\n let mut mount_map: HashMap = HashMap::new();\\n \\n #[cfg(any(target_os = \\\"linux\\\", target_os = \\\"macos\\\"))]\\n\", \"diff --git a/docs/fiddles/system/system-information/get-version-information/index.html b/docs/fiddles/system/system-information/get-version-information/index.html\\nnew file mode 100644\\nindex 0000000..0867bc3\\n--- /dev/null\\n+++ b/docs/fiddles/system/system-information/get-version-information/index.html\\n@@ -0,0 +1,26 @@\\n+\\n+\\n+ \\n+ \\n+ \\n+ \\n+ \\n+
\\n+
Get version information
\\n+
Supports: Win, macOS, Linux | Process: Both\\n+
\\n+
\\n+ \\n+ \\n+
\\n+
The process
module is built into Node.js (therefore you can use this in both the main and renderer processes) and in Electron apps this object has a few more useful properties on it.
\\n+
The example below gets the version of Electron in use by the app.
\\n+
See the process documentation (opens in new window) for more.
\\n+
\\n+
\\n+
\\n+ \\n+ \\n+