From b994c95d6c27ef9b22bece641ce2b2a7e821a7ad Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Thu, 21 Mar 2024 13:28:39 -0700 Subject: [PATCH 1/7] docs: update sponsors --- docs/.vuepress/components/SponsorMe.vue | 150 ------------------------ docs/sponsors.md | 10 +- 2 files changed, 9 insertions(+), 151 deletions(-) delete mode 100644 docs/.vuepress/components/SponsorMe.vue diff --git a/docs/.vuepress/components/SponsorMe.vue b/docs/.vuepress/components/SponsorMe.vue deleted file mode 100644 index 76c01b255..000000000 --- a/docs/.vuepress/components/SponsorMe.vue +++ /dev/null @@ -1,150 +0,0 @@ - - - diff --git a/docs/sponsors.md b/docs/sponsors.md index 5aa22a833..f8f926b48 100644 --- a/docs/sponsors.md +++ b/docs/sponsors.md @@ -2,8 +2,16 @@ sidebarDepth: 0 --- - +## Springloaded + +Vue Select is now being directly supported by [Springloaded](https://springloaded.co) 🎉, a software +agency founded by [Owen Conti](https://github.com/owenconti) +and [Jeff Sagal](https://github.com/sagalbot) - the maintainer of Vue Select. + +With support from Springloaded, we'll be able to dedicate more time to improving Vue Select and providing better support for the community. ## Sponsors +Huge thanks to the sponsors that help make Vue Select possible! Interested in providing your support? [Become a sponsor!](https://github.com/sponsors/sagalbot). + From 3894962e8b6f530203f0d21bd02cc1a6aa5cac95 Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Thu, 21 Mar 2024 13:36:20 -0700 Subject: [PATCH 2/7] docs: update link --- docs/sponsors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sponsors.md b/docs/sponsors.md index f8f926b48..db384d3a5 100644 --- a/docs/sponsors.md +++ b/docs/sponsors.md @@ -4,7 +4,7 @@ sidebarDepth: 0 ## Springloaded -Vue Select is now being directly supported by [Springloaded](https://springloaded.co) 🎉, a software +Vue Select is now being directly supported by [Springloaded](https://springloaded.co?ref=vue-select) 🎉, a software agency founded by [Owen Conti](https://github.com/owenconti) and [Jeff Sagal](https://github.com/sagalbot) - the maintainer of Vue Select. From a573a76e82fdbb9d621bc19e9b9b5d16c0e39b7f Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Wed, 27 Mar 2024 12:24:35 -0700 Subject: [PATCH 3/7] docs: remove noindex tags (#1827) --- docs/.vuepress/config/head.js | 11 +---------- docs/.vuepress/config/isDeployPreview.js | 1 - docs/.vuepress/config/plugins.js | 2 -- 3 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 docs/.vuepress/config/isDeployPreview.js diff --git a/docs/.vuepress/config/head.js b/docs/.vuepress/config/head.js index 946d6ab16..0fa2ec5fe 100644 --- a/docs/.vuepress/config/head.js +++ b/docs/.vuepress/config/head.js @@ -1,12 +1,10 @@ -const isDeployPreview = require('./isDeployPreview') const meta = require('./meta') const head = [ [ 'link', { - href: - '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600|Roboto Mono', + href: '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600|Roboto Mono', rel: 'stylesheet', type: 'text/css', }, @@ -57,11 +55,4 @@ const head = [ ['meta', { property: 'og:url', content: meta.url }], ] -if (isDeployPreview) { - head.push( - ['meta', { name: 'robots', content: 'noindex' }], - ['meta', { name: 'googlebot', content: 'noindex' }] - ) -} - module.exports = head diff --git a/docs/.vuepress/config/isDeployPreview.js b/docs/.vuepress/config/isDeployPreview.js deleted file mode 100644 index ee53cc09c..000000000 --- a/docs/.vuepress/config/isDeployPreview.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = process.env.hasOwnProperty('DEPLOY_PREVIEW') diff --git a/docs/.vuepress/config/plugins.js b/docs/.vuepress/config/plugins.js index ace38870b..9950ddc1b 100644 --- a/docs/.vuepress/config/plugins.js +++ b/docs/.vuepress/config/plugins.js @@ -1,5 +1,3 @@ -const isDeployPreview = require('./isDeployPreview') - module.exports = [ [ '@vuepress/pwa', From 77e52c17ee46213c1905ca9204f43680933c6ac0 Mon Sep 17 00:00:00 2001 From: kimulaco <11986753+kimulaco@users.noreply.github.com> Date: Wed, 3 Apr 2024 06:39:44 +0900 Subject: [PATCH 4/7] fix(1690): Add host to CSS variables definition (#1811) Fixes #1680 --- src/css/global/variables.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/css/global/variables.css b/src/css/global/variables.css index 8847e1505..59e840410 100644 --- a/src/css/global/variables.css +++ b/src/css/global/variables.css @@ -1,4 +1,5 @@ -:root { +:root, +:host { --vs-colors--lightest: rgba(60, 60, 60, 0.26); --vs-colors--light: rgba(60, 60, 60, 0.5); --vs-colors--dark: #333; From 492b323613b9c119876f3f102d9c6a63c9f07a04 Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Wed, 3 Apr 2024 09:34:07 -0700 Subject: [PATCH 5/7] ci: update action runners (#1829) * ci: update action runners * style: fix prettier * Update test.yml --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- docs/.vuepress/config/head.js | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7a1ebc0c..0a177c4db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: - master jobs: release: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c94b2c7a..2074070c5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Test & Build on: [pull_request] jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 @@ -24,7 +24,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 diff --git a/docs/.vuepress/config/head.js b/docs/.vuepress/config/head.js index 0fa2ec5fe..3e6f02433 100644 --- a/docs/.vuepress/config/head.js +++ b/docs/.vuepress/config/head.js @@ -4,7 +4,8 @@ const head = [ [ 'link', { - href: '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600|Roboto Mono', + href: + '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600|Roboto Mono', rel: 'stylesheet', type: 'text/css', }, From 53645bf98816d947157d514699bb092c8fcf337a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 3 Apr 2024 16:35:05 +0000 Subject: [PATCH 6/7] =?UTF-8?q?chore(=F0=9F=9A=80):=203.20.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89802eb7b..c9d8305dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-select", - "version": "3.20.2", + "version": "3.20.3", "description": "Everything you wish the HTML