haml 6.2.5 → 6.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '04895f8afe060e69be088815a9faed390ecc4d39bde694c8ee5e3e5f8f983060'
4
- data.tar.gz: '08945029ffc506dc045529f46091816ada3216b66890abe88f6087daad1a2683'
3
+ metadata.gz: b8754d03da194f9c74e620887cbc29d3aa95d93651129ca33aa60dc72be08dd1
4
+ data.tar.gz: f4d26ea914200ac345926641d0d0d8ba36fb4b62a47600f63015d5c2d1dc8a11
5
5
  SHA512:
6
- metadata.gz: b2ab06d62ba1bdc9db0bed98683e37729c7fa4bbe7f9b16c66980187419555352928951867b808cefc43cc08bde35e556b0e9e8436a76489e3c7dcbd3193f255
7
- data.tar.gz: 203b1917e76333725badee59e2c350d72b9806e5c218688ec4b878a35753c10b1fc9fe88408b52bf23c5bfa5755be69cf4c86f90cb370403c9e36177fd9033a8
6
+ metadata.gz: eccf9fb6676267281b3c918425e93f07e8771c2f41e8481a08f327cb2ddbd5b53e07f3c9025f37c1abc977ad732d3b2f67d3023c4e1f356897bed03e3572ca20
7
+ data.tar.gz: 5ecd4d17716d5b0b4be7b57ebcfd28457f1b803cd376e37d4bcece2f30632e4e46d988eba1048e0c303a3599db5049b464e31854dda7f538bfe30565169769e9
data/CHANGELOG.md CHANGED
@@ -1,8 +1,13 @@
1
1
  # Haml Changelog
2
2
 
3
+ ## 6.3.0
4
+
5
+ * Remove `Haml::RailsTemplate#default_format` that was added in v6.1.3 for Turbo [#1152](https://github.com/haml/haml/issues/1152), [#1154](https://github.com/haml/haml/issues/1154) ([discussion](https://github.com/haml/haml/pull/1144#issuecomment-1755088572))
6
+ * See [the reference](https://github.com/haml/haml/blob/v6.3.0/REFERENCE.md#turbo) for suggested alternatives.
7
+
3
8
  ## 6.2.5
4
9
 
5
- * Deprecate `Haml::RailsTemplate#default_format` that was added in v6.1.3
10
+ * Deprecate `Haml::RailsTemplate#default_format` that was added in v6.1.3 for Turbo ([discussion](https://github.com/haml/haml/pull/1144#issuecomment-1755088572))
6
11
  * See [the reference](https://github.com/haml/haml/blob/v6.2.5/REFERENCE.md#turbo) for suggested alternatives.
7
12
 
8
13
  ## 6.2.4
@@ -48,14 +48,6 @@ module Haml
48
48
  Engine.new(options).call(source)
49
49
  end
50
50
 
51
- # Rails Turbo looks for this
52
- def default_format
53
- warn "warning: Haml::RailsTemplate#default_format is deprecated and will be removed in the next Haml version 6.3.0. "\
54
- "Please monkey-patch this method yourself, or simply use appropriate HTML extensions. "\
55
- "See https://github.com/haml/haml/blob/v6.2.5/REFERENCE.md#turbo for details."
56
- :html
57
- end
58
-
59
51
  def supports_streaming?
60
52
  RailsTemplate.options[:streaming]
61
53
  end
data/lib/haml/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Haml
3
- VERSION = '6.2.5'
3
+ VERSION = '6.3.0'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haml
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.5
4
+ version: 6.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Natalie Weizenbaum