From 770a29181f2b14e9457d34eb81482cfe45d126d9 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Thu, 3 Oct 2024 12:19:54 -0400 Subject: [PATCH 01/26] ci(downstream): make sure the binaries are downloaded --- .github/workflows/downstream.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml index 6d32d4f..ffb82d0 100644 --- a/.github/workflows/downstream.yml +++ b/.github/workflows/downstream.yml @@ -36,6 +36,7 @@ jobs: 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}} - name: ${{matrix.name}} test suite working-directory: ${{matrix.name}} From 1eceb1cf0baa51d8a1a48fcc8d28d813326baa1e Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 5 Oct 2024 17:16:51 -0400 Subject: [PATCH 02/26] dev: configure dependabot --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..403b308 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From ef98971082a6ffa1eb6c7988c0b977a812821821 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 5 Oct 2024 17:23:35 -0400 Subject: [PATCH 03/26] style: standardrb --- exe/tailwindcss | 2 +- lib/tailwindcss/ruby/upstream.rb | 2 +- rakelib/package.rake | 17 +++++++---------- test/tailwindcss/test_ruby.rb | 12 +++++------- 4 files changed, 14 insertions(+), 19 deletions(-) diff --git a/exe/tailwindcss b/exe/tailwindcss index 24b29b8..15b02ee 100755 --- a/exe/tailwindcss +++ b/exe/tailwindcss @@ -14,6 +14,6 @@ begin exec(*command) end rescue Tailwindcss::Ruby::UnsupportedPlatformException, Tailwindcss::Ruby::ExecutableNotFoundException => e - STDERR.puts("ERROR: " + e.message) + warn("ERROR: " + e.message) exit 1 end diff --git a/lib/tailwindcss/ruby/upstream.rb b/lib/tailwindcss/ruby/upstream.rb index ce7dab3..307c481 100644 --- a/lib/tailwindcss/ruby/upstream.rb +++ b/lib/tailwindcss/ruby/upstream.rb @@ -11,7 +11,7 @@ module Upstream "x86_64-darwin" => "tailwindcss-macos-x64", "x86_64-linux" => "tailwindcss-linux-x64", "aarch64-linux" => "tailwindcss-linux-arm64", - "arm-linux" => "tailwindcss-linux-armv7", + "arm-linux" => "tailwindcss-linux-armv7" } end end diff --git a/rakelib/package.rake b/rakelib/package.rake index 2b49fa8..55c73cc 100644 --- a/rakelib/package.rake +++ b/rakelib/package.rake @@ -1,4 +1,3 @@ -# coding: utf-8 # # Rake tasks to manage native gem packages with binary executables from tailwindlabs/tailwindcss # @@ -39,7 +38,7 @@ # - pkg/tailwindcss-ruby-1.0.0-x64-mingw-ucrt.gem # - pkg/tailwindcss-ruby-1.0.0-x86_64-darwin.gem # - pkg/tailwindcss-ruby-1.0.0-x86_64-linux.gem -# +# # Note that in addition to the native gems, a vanilla "ruby" gem will also be created without # either the `exe/tailwindcss` script or a binary executable present. # @@ -75,7 +74,7 @@ end TAILWINDCSS_RUBY_GEMSPEC = Bundler.load_gemspec("tailwindcss-ruby.gemspec") # prepend the download task before the Gem::PackageTask tasks -task :package => :download +task package: :download gem_path = Gem::PackageTask.new(TAILWINDCSS_RUBY_GEMSPEC).define desc "Build the ruby gem" @@ -103,12 +102,10 @@ Tailwindcss::Ruby::Upstream::NATIVE_PLATFORMS.each do |platform, filename| warn "Downloading #{exepath} from #{release_url} ..." # lazy, but fine for now. - URI.open(release_url) do |remote| - File.open(exepath, "wb") do |local| - local.write(remote.read) - end + URI.parse(release_url).open do |remote| + File.binwrite(exepath, remote.read) end - FileUtils.chmod(0755, exepath, verbose: true) + FileUtils.chmod(0o755, exepath, verbose: true) end end end @@ -119,11 +116,11 @@ task "check" => exepaths do sha_url = if File.exist?(sha_filename) sha_filename else - sha_url = tailwindcss_download_url("sha256sums.txt") + tailwindcss_download_url("sha256sums.txt") end gemspec = TAILWINDCSS_RUBY_GEMSPEC - checksums = URI.open(sha_url).each_line.map do |line| + checksums = URI.parse(sha_url).open.each_line.map do |line| checksum, file = line.split [File.basename(file), checksum] end.to_h diff --git a/test/tailwindcss/test_ruby.rb b/test/tailwindcss/test_ruby.rb index ecdcbd2..02ea102 100644 --- a/test/tailwindcss/test_ruby.rb +++ b/test/tailwindcss/test_ruby.rb @@ -108,13 +108,11 @@ def mock_local_tailwindcss_install end it ".executable raises ExecutableNotFoundException is TAILWINDCSS_INSTALL_DIR is set to a nonexistent dir" do - begin - ENV["TAILWINDCSS_INSTALL_DIR"] = "/does/not/exist" - assert_raises(Tailwindcss::Ruby::DirectoryNotFoundException) do - Tailwindcss::Ruby.executable - end - ensure - ENV["TAILWINDCSS_INSTALL_DIR"] = nil + ENV["TAILWINDCSS_INSTALL_DIR"] = "/does/not/exist" + assert_raises(Tailwindcss::Ruby::DirectoryNotFoundException) do + Tailwindcss::Ruby.executable end + ensure + ENV["TAILWINDCSS_INSTALL_DIR"] = nil end end From caea6e6a04124f8aeddf93f4f14c238edc8f62d5 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 5 Oct 2024 17:37:16 -0400 Subject: [PATCH 04/26] ci: run standard in the suite --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e2545da..bd9b6c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,20 @@ on: - '*' jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: rm Gemfile.lock + - uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.3" + bundler: latest + bundler-cache: true + - run: bundle exec rake standard + build: + needs: [ lint ] runs-on: ubuntu-latest strategy: fail-fast: false From a6261ffe8dbd3054fa02be93321ee93c157cb87d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 21:40:51 +0000 Subject: [PATCH 05/26] build(deps): bump standard from 1.40.0 to 1.40.1 Bumps [standard](https://github.com/standardrb/standard) from 1.40.0 to 1.40.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.40.0...v1.40.1) --- updated-dependencies: - dependency-name: standard dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index d616ad9..31deff2 100644 --- a/Gemfile +++ b/Gemfile @@ -9,4 +9,4 @@ gem "rake", "~> 13.0" gem "minitest", "~> 5.16" -gem "standard", "~> 1.3" +gem "standard", "~> 1.40" diff --git a/Gemfile.lock b/Gemfile.lock index 3659cc4..de489cb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -19,7 +19,7 @@ GEM rainbow (3.1.1) rake (13.2.1) regexp_parser (2.9.2) - rexml (3.3.7) + rexml (3.3.8) rubocop (1.65.1) json (~> 2.3) language_server-protocol (>= 3.17.0) @@ -37,7 +37,7 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) - standard (1.40.0) + standard (1.40.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) rubocop (~> 1.65.0) @@ -58,7 +58,7 @@ PLATFORMS DEPENDENCIES minitest (~> 5.16) rake (~> 13.0) - standard (~> 1.3) + standard (~> 1.40) tailwindcss-ruby! BUNDLED WITH From 92d9d237922491312a35fafed75d8155dd1959d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 22:18:47 +0000 Subject: [PATCH 06/26] build(deps): bump standard from 1.40.1 to 1.41.0 Bumps [standard](https://github.com/standardrb/standard) from 1.40.1 to 1.41.0. - [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.40.1...v1.41.0) --- updated-dependencies: - dependency-name: standard dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 20 +++++++++----------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/Gemfile b/Gemfile index 31deff2..4b34c62 100644 --- a/Gemfile +++ b/Gemfile @@ -9,4 +9,4 @@ gem "rake", "~> 13.0" gem "minitest", "~> 5.16" -gem "standard", "~> 1.40" +gem "standard", "~> 1.41" diff --git a/Gemfile.lock b/Gemfile.lock index de489cb..5c649bc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -19,36 +19,34 @@ GEM rainbow (3.1.1) rake (13.2.1) regexp_parser (2.9.2) - rexml (3.3.8) - rubocop (1.65.1) + rubocop (1.66.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 2.4, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.31.1, < 2.0) + rubocop-ast (>= 1.32.2, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.32.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.1) + rubocop-performance (1.22.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) - standard (1.40.1) + standard (1.41.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.65.0) + rubocop (~> 1.66.0) standard-custom (~> 1.0.0) - standard-performance (~> 1.4) + standard-performance (~> 1.5) standard-custom (1.0.2) lint_roller (~> 1.0) rubocop (~> 1.50) - standard-performance (1.4.0) + standard-performance (1.5.0) lint_roller (~> 1.1) - rubocop-performance (~> 1.21.0) + rubocop-performance (~> 1.22.0) unicode-display_width (2.6.0) PLATFORMS @@ -58,7 +56,7 @@ PLATFORMS DEPENDENCIES minitest (~> 5.16) rake (~> 13.0) - standard (~> 1.40) + standard (~> 1.41) tailwindcss-ruby! BUNDLED WITH From ed84083494faefdce469e389877e63c2955aac8c Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Tue, 15 Oct 2024 17:07:58 -0400 Subject: [PATCH 07/26] dep: bump tailwindcss to v3.4.14 --- 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 307c481..aa23e2c 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.13" + VERSION = "v3.4.14" # rubygems platform name => upstream release filename NATIVE_PLATFORMS = { From ee18fd8ae2061330d65a4c96fe270f9153663667 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Tue, 15 Oct 2024 17:14:03 -0400 Subject: [PATCH 08/26] version bump to v3.4.14 --- 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 e64b3db..4838e2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## [Unreleased] +## v3.4.14 + +* Update `tailwindcss` to [v3.4.14](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.14). (#8) @flavorjones + + ## v3.4.13 / 2023-09-26 * This gem was extracted from `tailwindcss-rails`. diff --git a/Gemfile.lock b/Gemfile.lock index 5c649bc..7d0cc59 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - tailwindcss-ruby (3.4.13) + tailwindcss-ruby (3.4.14) GEM remote: https://rubygems.org/ diff --git a/lib/tailwindcss/ruby/version.rb b/lib/tailwindcss/ruby/version.rb index fc1a5de..f0db692 100644 --- a/lib/tailwindcss/ruby/version.rb +++ b/lib/tailwindcss/ruby/version.rb @@ -2,6 +2,6 @@ module Tailwindcss module Ruby - VERSION = "3.4.13" + VERSION = "3.4.14" end end From b20235a8357b3b193da099159783a6e14b1eabf8 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Thu, 17 Oct 2024 17:41:50 -0400 Subject: [PATCH 09/26] 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 10/26] 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 11/26] 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 12/26] 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 From 9bb7c8d0c0b13cceda3444c6984358f2efaa2e73 Mon Sep 17 00:00:00 2001 From: nanaya Date: Tue, 19 Nov 2024 02:08:05 +0900 Subject: [PATCH 13/26] Show more useful link for unsupported platform error --- README.md | 2 +- lib/tailwindcss/ruby.rb | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f2fd84..79d4761 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ gem install tailwindcss-ruby ### Using a local installation of `tailwindcss` -If you are not able to use the vendored standalone executables (for example, if you're on an unsupported platform), you can use a local installation of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory path containing the executable. +If you are not able to use the vendored standalone executables (for example, if you're on an unsupported platform), you can use a [local installation](https://tailwindcss.com/docs/installation) of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory path containing the executable. For example, if you've installed `tailwindcss` so that the executable is found at `/path/to/node_modules/bin/tailwindcss`, then you should set your environment variable like so: diff --git a/lib/tailwindcss/ruby.rb b/lib/tailwindcss/ruby.rb index 25b87a6..f7326db 100644 --- a/lib/tailwindcss/ruby.rb +++ b/lib/tailwindcss/ruby.rb @@ -41,7 +41,8 @@ def executable(exe_path: DEFAULT_DIR) if Tailwindcss::Ruby::Upstream::NATIVE_PLATFORMS.keys.none? { |p| Gem::Platform.match_gem?(Gem::Platform.new(p), GEM_NAME) } raise UnsupportedPlatformException, <<~MESSAGE #{GEM_NAME} does not support the #{platform} platform - Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation + See https://github.com/flavorjones/tailwindcss-ruby#using-a-local-installation-of-tailwindcss + for more details. MESSAGE end From 911dd4b78c18dec0cd080baa4c8b3f03a33df808 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 18 Nov 2024 12:24:22 -0500 Subject: [PATCH 14/26] doc: make a note not to change the section title --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 79d4761..66c4392 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,8 @@ gem install tailwindcss-ruby ### Using a local installation of `tailwindcss` + + If you are not able to use the vendored standalone executables (for example, if you're on an unsupported platform), you can use a [local installation](https://tailwindcss.com/docs/installation) of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory path containing the executable. For example, if you've installed `tailwindcss` so that the executable is found at `/path/to/node_modules/bin/tailwindcss`, then you should set your environment variable like so: From 5de59982d937292ea888c23bcc556550452cc36f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 23:31:32 +0000 Subject: [PATCH 15/26] build(deps): bump standard from 1.41.1 to 1.42.0 Bumps [standard](https://github.com/standardrb/standard) from 1.41.1 to 1.42.0. - [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.1...v1.42.0) --- updated-dependencies: - dependency-name: standard dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Gemfile b/Gemfile index 4b34c62..81ab521 100644 --- a/Gemfile +++ b/Gemfile @@ -9,4 +9,4 @@ gem "rake", "~> 13.0" gem "minitest", "~> 5.16" -gem "standard", "~> 1.41" +gem "standard", "~> 1.42" diff --git a/Gemfile.lock b/Gemfile.lock index 327ea8e..e33816a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,19 +7,19 @@ GEM remote: https://rubygems.org/ specs: ast (2.4.2) - json (2.7.2) + json (2.8.2) language_server-protocol (3.17.0.3) lint_roller (1.1.0) minitest (5.25.1) parallel (1.26.3) - parser (3.3.5.0) + parser (3.3.6.0) ast (~> 2.4.1) racc racc (1.8.1) rainbow (3.1.1) rake (13.2.1) regexp_parser (2.9.2) - rubocop (1.66.1) + rubocop (1.68.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -29,16 +29,16 @@ GEM rubocop-ast (>= 1.32.2, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.32.3) + rubocop-ast (1.36.1) parser (>= 3.3.1.0) rubocop-performance (1.22.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) - standard (1.41.1) + standard (1.42.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.66.0) + rubocop (~> 1.68.0) standard-custom (~> 1.0.0) standard-performance (~> 1.5) standard-custom (1.0.2) @@ -56,7 +56,7 @@ PLATFORMS DEPENDENCIES minitest (~> 5.16) rake (~> 13.0) - standard (~> 1.41) + standard (~> 1.42) tailwindcss-ruby! BUNDLED WITH From 09be595f535fce80e83375b1d38e5d9f8ada8d6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 23:03:11 +0000 Subject: [PATCH 16/26] build(deps): bump minitest from 5.25.1 to 5.25.2 Bumps [minitest](https://github.com/minitest/minitest) from 5.25.1 to 5.25.2. - [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc) - [Commits](https://github.com/minitest/minitest/compare/v5.25.1...v5.25.2) --- updated-dependencies: - dependency-name: minitest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 81ab521..04f5699 100644 --- a/Gemfile +++ b/Gemfile @@ -7,6 +7,6 @@ gemspec gem "rake", "~> 13.0" -gem "minitest", "~> 5.16" +gem "minitest", "~> 5.25" gem "standard", "~> 1.42" diff --git a/Gemfile.lock b/Gemfile.lock index e33816a..bf29d65 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,7 +10,7 @@ GEM json (2.8.2) language_server-protocol (3.17.0.3) lint_roller (1.1.0) - minitest (5.25.1) + minitest (5.25.2) parallel (1.26.3) parser (3.3.6.0) ast (~> 2.4.1) @@ -54,7 +54,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - minitest (~> 5.16) + minitest (~> 5.25) rake (~> 13.0) standard (~> 1.42) tailwindcss-ruby! From 8910a32f2687679333a89424c55d729b74c0529b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 23:03:16 +0000 Subject: [PATCH 17/26] build(deps): bump standard from 1.42.0 to 1.42.1 Bumps [standard](https://github.com/standardrb/standard) from 1.42.0 to 1.42.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.42.0...v1.42.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 e33816a..c695d14 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.42.0) + standard (1.42.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) rubocop (~> 1.68.0) From 61b927cccd7e046ee41f2a5b06e37656952d4803 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 4 Dec 2024 17:53:56 -0500 Subject: [PATCH 18/26] dep: bump tailwindcss to 3.4.16 https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.16 --- 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 e2260d6..7f49bde 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.15" + VERSION = "v3.4.16" # rubygems platform name => upstream release filename NATIVE_PLATFORMS = { From 88f7f0a9980196627d0b75c707b10cae31f938d1 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 4 Dec 2024 17:55:42 -0500 Subject: [PATCH 19/26] version bump to v3.4.16 --- CHANGELOG.md | 5 +++++ lib/tailwindcss/ruby/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1872205..d5efad1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## [Unreleased] +## v3.4.16 + +* Update `tailwindcss` to [v3.4.16](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.16). (#33) @flavorjones + + ## v3.4.15 * Update `tailwindcss` to [v3.4.15](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.15). (#19) @flavorjones diff --git a/lib/tailwindcss/ruby/version.rb b/lib/tailwindcss/ruby/version.rb index 2955318..42287ba 100644 --- a/lib/tailwindcss/ruby/version.rb +++ b/lib/tailwindcss/ruby/version.rb @@ -2,6 +2,6 @@ module Tailwindcss module Ruby - VERSION = "3.4.15" + VERSION = "3.4.16" end end From 8d7116698b855e7007bdca3b5a0aad49c27216ae Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 7 Dec 2024 10:39:43 -0500 Subject: [PATCH 20/26] dev: bump version in gemfile.lock [skip ci] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8cbd51b..d1d8015 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - tailwindcss-ruby (3.4.15) + tailwindcss-ruby (3.4.16) GEM remote: https://rubygems.org/ From f794a4f19e76e46f73676a29dd1fedcf6a1028cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 23:03:35 +0000 Subject: [PATCH 21/26] build(deps): bump minitest from 5.25.2 to 5.25.4 Bumps [minitest](https://github.com/minitest/minitest) from 5.25.2 to 5.25.4. - [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc) - [Commits](https://github.com/minitest/minitest/compare/v5.25.2...v5.25.4) --- updated-dependencies: - dependency-name: minitest 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 d1d8015..9b03e89 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,7 +10,7 @@ GEM json (2.8.2) language_server-protocol (3.17.0.3) lint_roller (1.1.0) - minitest (5.25.2) + minitest (5.25.4) parallel (1.26.3) parser (3.3.6.0) ast (~> 2.4.1) From 171d1fc894376a879beed3bdd9c5671582a96b4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 22:34:57 +0000 Subject: [PATCH 22/26] build(deps): bump standard from 1.42.1 to 1.43.0 Bumps [standard](https://github.com/standardrb/standard) from 1.42.1 to 1.43.0. - [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.42.1...v1.43.0) --- updated-dependencies: - dependency-name: standard dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 32 +++++++++++++++++--------------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/Gemfile b/Gemfile index 04f5699..8354a0e 100644 --- a/Gemfile +++ b/Gemfile @@ -9,4 +9,4 @@ gem "rake", "~> 13.0" gem "minitest", "~> 5.25" -gem "standard", "~> 1.42" +gem "standard", "~> 1.43" diff --git a/Gemfile.lock b/Gemfile.lock index 9b03e89..efc14d5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,7 +7,7 @@ GEM remote: https://rubygems.org/ specs: ast (2.4.2) - json (2.8.2) + json (2.9.0) language_server-protocol (3.17.0.3) lint_roller (1.1.0) minitest (5.25.4) @@ -18,36 +18,38 @@ GEM racc (1.8.1) rainbow (3.1.1) rake (13.2.1) - regexp_parser (2.9.2) - rubocop (1.68.0) + regexp_parser (2.9.3) + rubocop (1.69.2) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 2.4, < 3.0) - rubocop-ast (>= 1.32.2, < 2.0) + regexp_parser (>= 2.9.3, < 3.0) + rubocop-ast (>= 1.36.2, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.36.1) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.37.0) parser (>= 3.3.1.0) - rubocop-performance (1.22.1) + rubocop-performance (1.23.0) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) - standard (1.42.1) + standard (1.43.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.68.0) + rubocop (~> 1.69.1) standard-custom (~> 1.0.0) - standard-performance (~> 1.5) + standard-performance (~> 1.6) standard-custom (1.0.2) lint_roller (~> 1.0) rubocop (~> 1.50) - standard-performance (1.5.0) + standard-performance (1.6.0) lint_roller (~> 1.1) - rubocop-performance (~> 1.22.0) - unicode-display_width (2.6.0) + rubocop-performance (~> 1.23.0) + unicode-display_width (3.1.2) + unicode-emoji (~> 4.0, >= 4.0.4) + unicode-emoji (4.0.4) PLATFORMS ruby @@ -56,7 +58,7 @@ PLATFORMS DEPENDENCIES minitest (~> 5.25) rake (~> 13.0) - standard (~> 1.42) + standard (~> 1.43) tailwindcss-ruby! BUNDLED WITH From a27502200a98b036b93466eec7d0d3d8703bea20 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 18 Dec 2024 16:44:59 -0500 Subject: [PATCH 23/26] dep: bundle update [skip ci] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index efc14d5..c0132fa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,7 +7,7 @@ GEM remote: https://rubygems.org/ specs: ast (2.4.2) - json (2.9.0) + json (2.9.1) language_server-protocol (3.17.0.3) lint_roller (1.1.0) minitest (5.25.4) @@ -62,4 +62,4 @@ DEPENDENCIES tailwindcss-ruby! BUNDLED WITH - 2.5.19 + 2.6.1 From c1a959459919e4bd23ae38e04793ee98ccb5aea1 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 18 Dec 2024 16:53:29 -0500 Subject: [PATCH 24/26] dep: update to Tailwind CSS v3.4.17 https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.17 --- CHANGELOG.md | 5 +++++ lib/tailwindcss/ruby/upstream.rb | 2 +- lib/tailwindcss/ruby/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5efad1..c765741 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v3.4.17 + +* Update to [Tailwind CSS v3.4.17](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.17) @flavorjones + + ## [Unreleased] ## v3.4.16 diff --git a/lib/tailwindcss/ruby/upstream.rb b/lib/tailwindcss/ruby/upstream.rb index 7f49bde..4bd43dc 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.16" + VERSION = "v3.4.17" # rubygems platform name => upstream release filename NATIVE_PLATFORMS = { diff --git a/lib/tailwindcss/ruby/version.rb b/lib/tailwindcss/ruby/version.rb index 42287ba..7343347 100644 --- a/lib/tailwindcss/ruby/version.rb +++ b/lib/tailwindcss/ruby/version.rb @@ -2,6 +2,6 @@ module Tailwindcss module Ruby - VERSION = "3.4.16" + VERSION = "3.4.17" end end From 1f4fc5e59bfb35b8d6313c260f9bf32d74dbdf7d Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 18 Dec 2024 16:58:41 -0500 Subject: [PATCH 25/26] doc: remove unused header from changelog [skip ci] --- CHANGELOG.md | 2 -- Gemfile.lock | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c765741..be3f753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,6 @@ * Update to [Tailwind CSS v3.4.17](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.17) @flavorjones -## [Unreleased] - ## v3.4.16 * Update `tailwindcss` to [v3.4.16](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.16). (#33) @flavorjones diff --git a/Gemfile.lock b/Gemfile.lock index c0132fa..6951e0d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - tailwindcss-ruby (3.4.16) + tailwindcss-ruby (3.4.17) GEM remote: https://rubygems.org/ From b4b9021e9d97f72b4213223283da75e2260372f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jan 2025 22:16:01 +0000 Subject: [PATCH 26/26] build(deps): bump standard from 1.43.0 to 1.44.0 Bumps [standard](https://github.com/standardrb/standard) from 1.43.0 to 1.44.0. - [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.43.0...v1.44.0) --- updated-dependencies: - dependency-name: standard dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Gemfile b/Gemfile index 8354a0e..6adbdf8 100644 --- a/Gemfile +++ b/Gemfile @@ -9,4 +9,4 @@ gem "rake", "~> 13.0" gem "minitest", "~> 5.25" -gem "standard", "~> 1.43" +gem "standard", "~> 1.44" diff --git a/Gemfile.lock b/Gemfile.lock index 6951e0d..d0477f0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -12,14 +12,14 @@ GEM lint_roller (1.1.0) minitest (5.25.4) parallel (1.26.3) - parser (3.3.6.0) + parser (3.3.7.0) ast (~> 2.4.1) racc racc (1.8.1) rainbow (3.1.1) rake (13.2.1) - regexp_parser (2.9.3) - rubocop (1.69.2) + regexp_parser (2.10.0) + rubocop (1.70.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -31,14 +31,14 @@ GEM unicode-display_width (>= 2.4.0, < 4.0) rubocop-ast (1.37.0) parser (>= 3.3.1.0) - rubocop-performance (1.23.0) + rubocop-performance (1.23.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) - standard (1.43.0) + standard (1.44.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.69.1) + rubocop (~> 1.70.0) standard-custom (~> 1.0.0) standard-performance (~> 1.6) standard-custom (1.0.2) @@ -47,7 +47,7 @@ GEM standard-performance (1.6.0) lint_roller (~> 1.1) rubocop-performance (~> 1.23.0) - unicode-display_width (3.1.2) + unicode-display_width (3.1.4) unicode-emoji (~> 4.0, >= 4.0.4) unicode-emoji (4.0.4) @@ -58,7 +58,7 @@ PLATFORMS DEPENDENCIES minitest (~> 5.25) rake (~> 13.0) - standard (~> 1.43) + standard (~> 1.44) tailwindcss-ruby! BUNDLED WITH