Skip to content

Commit

Permalink
chore(ui): v0.113.1 (#2207)
Browse files Browse the repository at this point in the history
* chore(ui): v0.113.1

* fix(ui): linting errors
  • Loading branch information
davinov authored Aug 19, 2024
1 parent e2d6ff3 commit 272a7f4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
6 changes: 6 additions & 0 deletions ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## [0.113.1] - 2024-08-19

### Fixed

- Discard outdated preview results (happens when previews are requested before the previous one is finished)

## [0.113.0] - 2024-05-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "weaverbird",
"version": "0.113.0",
"version": "0.113.1",
"description": "A generic Visual Query Builder built in Vue.js",
"bugs": {
"url": "https://github.com/ToucanToco/weaverbird/issues",
Expand Down
2 changes: 1 addition & 1 deletion ui/sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=toucantoco

# This is the name and version displayed in the SonarCloud UI.
# sonar.projectName=weaverbird UI
sonar.projectVersion=0.113.0
sonar.projectVersion=0.113.1

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=./src
Expand Down
3 changes: 0 additions & 3 deletions ui/tests/unit/store.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { formatError } from '@/store/actions';
import { currentPipeline, emptyState } from '@/store/state';

import { buildState, buildStateWithOnePipeline, setupMockStore } from './utils';
import { VQB_MODULE_NAME } from '@/store';

describe('getter tests', () => {
beforeEach(() => {
Expand Down Expand Up @@ -1040,8 +1039,6 @@ describe('action tests', () => {
promise._reject = _rej;
return promise;
});
const setDatasetSpy = vi.spyOn(store, 'setDataset');

const updateDataset1 = store.updateDataset();
expect(store.isLoading.dataset).toBe(true);
const executePipeline1 = executePipelineMock.mock.results[0].value;
Expand Down

0 comments on commit 272a7f4

Please sign in to comment.