From b20235a8357b3b193da099159783a6e14b1eabf8 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Thu, 17 Oct 2024 17:41:50 -0400 Subject: [PATCH 1/4] ci: add a downstream tailwindcss-rails integration test --- .github/workflows/downstream.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml index ffb82d0..7ca7b1e 100644 --- a/.github/workflows/downstream.yml +++ b/.github/workflows/downstream.yml @@ -25,16 +25,19 @@ jobs: matrix: include: - url: https://github.com/rails/tailwindcss-rails - name: tailwindcss-rails + name: rails-unit command: "bin/test" ruby: "3.3" + - url: https://github.com/rails/tailwindcss-rails + name: rails-integration + command: "env TAILWINDCSSOPTS=--path=../../.. test/integration/user_journey_test.sh" + ruby: "3.3" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} - - run: gem install bundler -v ">= 2.3.22" # for "add --path" - run: bundle install --local || bundle install - run: bundle exec rake download - run: git clone --depth=1 ${{matrix.url}} ${{matrix.name}} From be927ee4aa50d72f978fe670b3bd22227200a133 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 22:31:21 +0000 Subject: [PATCH 2/4] build(deps): bump standard from 1.41.0 to 1.41.1 Bumps [standard](https://github.com/standardrb/standard) from 1.41.0 to 1.41.1. - [Release notes](https://github.com/standardrb/standard/releases) - [Changelog](https://github.com/standardrb/standard/blob/main/CHANGELOG.md) - [Commits](https://github.com/standardrb/standard/compare/v1.41.0...v1.41.1) --- updated-dependencies: - dependency-name: standard dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 7d0cc59..8c4ce4b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -35,7 +35,7 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) - standard (1.41.0) + standard (1.41.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) rubocop (~> 1.66.0) From 1384a7c15110fe9c74e964c339aed966774a0abc Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Fri, 15 Nov 2024 11:12:22 -0500 Subject: [PATCH 3/4] dep: tailwindcss v3.4.15 https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.15 --- lib/tailwindcss/ruby/upstream.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tailwindcss/ruby/upstream.rb b/lib/tailwindcss/ruby/upstream.rb index aa23e2c..e2260d6 100644 --- a/lib/tailwindcss/ruby/upstream.rb +++ b/lib/tailwindcss/ruby/upstream.rb @@ -1,7 +1,7 @@ module Tailwindcss module Ruby module Upstream - VERSION = "v3.4.14" + VERSION = "v3.4.15" # rubygems platform name => upstream release filename NATIVE_PLATFORMS = { From c4a21ef6ce9bd0b2b58d74540eea914de99e90bd Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Fri, 15 Nov 2024 11:23:06 -0500 Subject: [PATCH 4/4] version bump to v3.4.15 --- CHANGELOG.md | 5 +++++ Gemfile.lock | 2 +- lib/tailwindcss/ruby/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4838e2e..1872205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## [Unreleased] +## v3.4.15 + +* Update `tailwindcss` to [v3.4.15](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.15). (#19) @flavorjones + + ## v3.4.14 * Update `tailwindcss` to [v3.4.14](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.14). (#8) @flavorjones diff --git a/Gemfile.lock b/Gemfile.lock index 8c4ce4b..327ea8e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - tailwindcss-ruby (3.4.14) + tailwindcss-ruby (3.4.15) GEM remote: https://rubygems.org/ diff --git a/lib/tailwindcss/ruby/version.rb b/lib/tailwindcss/ruby/version.rb index f0db692..2955318 100644 --- a/lib/tailwindcss/ruby/version.rb +++ b/lib/tailwindcss/ruby/version.rb @@ -2,6 +2,6 @@ module Tailwindcss module Ruby - VERSION = "3.4.14" + VERSION = "3.4.15" end end