diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index f9fab1efb..9fb45c609 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -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 diff --git a/ui/package.json b/ui/package.json index c206de0d7..2473c4ade 100644 --- a/ui/package.json +++ b/ui/package.json @@ -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", diff --git a/ui/sonar-project.properties b/ui/sonar-project.properties index 88728e57e..6fedb2955 100644 --- a/ui/sonar-project.properties +++ b/ui/sonar-project.properties @@ -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 diff --git a/ui/tests/unit/store.spec.ts b/ui/tests/unit/store.spec.ts index 022103456..1f1fcd2ad 100644 --- a/ui/tests/unit/store.spec.ts +++ b/ui/tests/unit/store.spec.ts @@ -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(() => { @@ -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;