Skip to content

Commit

Permalink
automatic merge to finish v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cars10 committed Dec 10, 2024
2 parents b16cc70 + bce952e commit 1e91bbe
Show file tree
Hide file tree
Showing 65 changed files with 1,712 additions and 1,157 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.1.1

* truncate long fields in search results table, fixes [#211](https://github.com/cars10/elasticvue/issues/211)
* fix search results table column filtering again, fixes [#244](https://github.com/cars10/elasticvue/issues/244)
* fix hotkey issues, fixes [#273](https://github.com/cars10/elasticvue/issues/273)
* adds health filter to shards view

## 1.1.0

* update to tauri `2.0`, fixes [#228](https://github.com/cars10/elasticvue/issues/228)
Expand Down
2 changes: 1 addition & 1 deletion browser_extension/chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Elasticvue",
"version": "1.1.0",
"version": "1.1.1",
"description": "Elasticsearch frontend",
"manifest_version": 3,
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion browser_extension/firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Elasticvue",
"version": "1.1.0",
"version": "1.1.1",
"description": "Elasticsearch frontend",
"manifest_version": 2,
"icons": {
Expand Down
11 changes: 10 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ export default [
'vue/first-attribute-linebreak': 'off',
'vue/html-closing-bracket-newline': 'off',
'vue/singleline-html-element-content-newline': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
'argsIgnorePattern': '^_',
'varsIgnorePattern': '^_',
'caughtErrorsIgnorePattern': '^_'
}
],
'@intlify/vue-i18n/no-raw-text': 'off',
'@intlify/vue-i18n/no-v-html': 'off',
'@intlify/vue-i18n/no-html-messages': 'off',
Expand All @@ -38,7 +47,7 @@ export default [
}],
quotes: ['error', 'single'],
},
files: ['src/**/*.{js,vue,ts,json}'],
files: ['src/**/*.{js,vue,ts,json}', 'tests/**/*.ts}'],
settings: {
'vue-i18n': {
localeDir: {
Expand Down
59 changes: 29 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "elasticvue",
"private": true,
"version": "1.1.0",
"version": "1.1.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"tsc": "tsc --noEmit && vue-tsc",
"lint": "eslint src",
"lint": "eslint src tests",
"test:unit": "vitest run tests/unit",
"test:unit:watch": "vitest watch tests/unit",
"test:e2e": "playwright test --project=chromium",
Expand All @@ -20,44 +20,43 @@
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@lezer/common": "^1.2.2",
"@quasar/extras": "^1.16.12",
"@intlify/unplugin-vue-i18n": "^6.0.0",
"@lezer/common": "^1.2.3",
"@quasar/extras": "^1.16.14",
"@replit/codemirror-vim": "^6.2.1",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-global-shortcut": "^2.0.0",
"@tauri-apps/plugin-updater": "~2",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-clipboard-manager": "2.0.1",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.3",
"@tauri-apps/plugin-updater": "^2.0.0",
"codemirror": "^6.0.1",
"idb": "^8.0.0",
"json-bigint": "^1.0.0",
"pinia": "^2.2.4",
"pinia-plugin-persistedstate": "^4.1.1",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.1.3",
"pretty-bytes": "^6.1.1",
"quasar": "^2.17.0",
"vue": "^3.5.11",
"vue-i18n": "^10.0.4",
"quasar": "^2.17.4",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-resizable": "^2.1.7",
"vue-router": "^4.4.5"
"vue-router": "^4.5.0"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@playwright/test": "^1.48.0",
"@quasar/vite-plugin": "^1.7.0",
"@tauri-apps/cli": "^2.0.2",
"@intlify/eslint-plugin-vue-i18n": "^3.1.0",
"@playwright/test": "^1.49.0",
"@quasar/vite-plugin": "^1.8.1",
"@tauri-apps/cli": "^2.1.0",
"@types/json-bigint": "^1.0.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.28.0",
"sass": "1.78.0",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.16.0",
"eslint-plugin-vue": "^9.32.0",
"sass": "^1.82.0",
"typescript": "5.6.3",
"vite": "^6.0.2",
"vite-bundle-visualizer": "^1.2.1",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
}
}
4 changes: 2 additions & 2 deletions scripts/mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,11 @@ exports.mock = async page => {
json: []
},
shardShards: {
url: 'http://localhost:9200/_cat/shards/?h=index%2Cshard%2Cprirep%2Cstate%2Cnode',
url: 'http://localhost:9200/_cat/shards/?h=index%2Cshard%2Cprirep%2Cstate%2Cnode%2Cdocs%2Cstore%2Cip%2Cnode%2Cunassigned.reason',
json: []
},
indexIndices: {
url: 'http://localhost:9200/_cat/indices/?h=index%2Chealth%2Cstatus%2Cuuid%2Cpri%2Crep%2Cdocs.count%2Cstore.size%2Csc&bytes=b',
url: 'http://localhost:9200/_cat/indices/?h=index%2Chealth%2Cstatus%2Cuuid%2Cpri%2Crep%2Cdocs.count%2Cstore.size%2Csc%2Ccd&bytes=b',
json: []
},
flush: {
Expand Down
8 changes: 3 additions & 5 deletions scripts/website_screenshots.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const screenshotIndexAliases = async page => {
}
const screenshotSearch = async page => (await navAndScreenshot(page, '#search', 'search', true))
const screenshotEditDocument = async page => {
await page.locator('body').dblclick()
await navAndScreenshot(page, 'body', 'document')
await page.locator('#close').click()
}
Expand All @@ -52,7 +53,8 @@ const screenshotRest = async page => {
const screenshotSettings = async page => (await navAndScreenshot(page, '#settings', 'settings'))

const toggleTheme = async page => {
await page.locator('#change_theme').click()
await page.locator('[data-testid="change-theme-button"]').click()
await page.locator('[data-testid="change-theme__dark"]').click()
}

const connectWithServer = async page => {
Expand All @@ -66,10 +68,6 @@ const navAndScreenshot = async (page, selector, name, persisted) => {
await screenshot(page, name, persisted)
}

const closeSnackbar = async page => {
await page.locator('#close_snackbar').click()
}

let counter = 1
const screenshot = async (page, name, persisted) => {
if (!persisted) await page.locator('body').click()
Expand Down
Loading

0 comments on commit 1e91bbe

Please sign in to comment.