Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ jobs:
fail-fast: true
matrix:
include:
- { ruby: '3.0', c-o-e: false }
- { ruby: 3.1, c-o-e: false }
- { ruby: 3.2, c-o-e: false }
- { ruby: 3.3, c-o-e: false }
- { ruby: jruby-9.4.9.0, c-o-e: false }
- { ruby: 3.4, c-o-e: false }
- { ruby: jruby-10.0.0.1, c-o-e: false }
- { ruby: ruby-head, c-o-e: true }
- { ruby: jruby-head, c-o-e: true }
- { ruby: truffleruby, c-o-e: true }
- { ruby: truffleruby-head, c-o-e: true }
- { ruby: 3.3, gemfile: ./gemfiles/miniracer, c-o-e: false }
- { ruby: 3.4, gemfile: ./gemfiles/miniracer, c-o-e: false }
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
Expand Down
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ Lint/EmptyClass:
Enabled: true
Style/NilLambda:
Enabled: true
Style/UnpackFirst:
Enabled: false
Layout/LineEndStringConcatenationIndentation: # (new in 1.18)
Enabled: true
Layout/SpaceBeforeBrackets: # (new in 1.7)
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Behavioural changes in TerserJS are listed [here](https://github.com/terser/terser/blob/master/CHANGELOG.md).

## Unreleased
## 1.2.6 (19 June 2025)
- update TerserJS to [5.43.1]
- remove base64 for compatibility with Ruby 3.4

## 1.2.5 (20 January 2025)
- update TerserJS to [5.37.0]

Expand Down
Loading