Skip to content

Commit 8657465

Browse files
authored
Update version, gemspec, and CHANGELOG for 2.8.1 (#474)
1 parent 4fc5bb6 commit 8657465

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Addressable 2.8.1
2+
- refactor `Addressable::URI.normalize_path` to address linter offenses ([#430](https://github.com/sporkmonger/addressable/pull/430))
3+
- remove redundant colon in `Addressable::URI::CharacterClasses::AUTHORITY` regex ([#438](https://github.com/sporkmonger/addressable/pull/438))
4+
- update gemspec to reflect supported Ruby versions ([#466], [#464], [#463])
5+
- compatibility w/ public_suffix 5.x ([#466], [#465], [#460])
6+
- fixes "invalid byte sequence in UTF-8" exception when unencoding URLs containing non UTF-8 characters ([#459](https://github.com/sporkmonger/addressable/pull/459))
7+
- `Ractor` compatibility ([#449](https://github.com/sporkmonger/addressable/pull/449))
8+
- use the whole string instead of a single line for template match ([#431](https://github.com/sporkmonger/addressable/pull/431))
9+
- force UTF-8 encoding only if needed ([#341](https://github.com/sporkmonger/addressable/pull/341))
10+
11+
[#460]: https://github.com/sporkmonger/addressable/pull/460
12+
[#463]: https://github.com/sporkmonger/addressable/pull/463
13+
[#464]: https://github.com/sporkmonger/addressable/pull/464
14+
[#465]: https://github.com/sporkmonger/addressable/pull/465
15+
[#466]: https://github.com/sporkmonger/addressable/pull/466
16+
117
# Addressable 2.8.0
218
- fixes ReDoS vulnerability in Addressable::Template#match
319
- no longer replaces `+` with spaces in queries for non-http(s) schemes

addressable.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# -*- encoding: utf-8 -*-
2-
# stub: addressable 2.8.0 ruby lib
2+
# stub: addressable 2.8.1 ruby lib
33

44
Gem::Specification.new do |s|
55
s.name = "addressable".freeze
6-
s.version = "2.8.0"
6+
s.version = "2.8.1"
77

88
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
99
s.metadata = { "changelog_uri" => "https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md" } if s.respond_to? :metadata=
1010
s.require_paths = ["lib".freeze]
1111
s.authors = ["Bob Aman".freeze]
12-
s.date = "2021-07-03"
12+
s.date = "2022-08-19"
1313
s.description = "Addressable is an alternative implementation to the URI implementation that is\npart of Ruby's standard library. It is flexible, offers heuristic parsing, and\nadditionally provides extensive support for IRIs and URI templates.\n".freeze
1414
s.email = "[email protected]".freeze
1515
s.extra_rdoc_files = ["README.md".freeze]

lib/addressable/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module Addressable
2323
module VERSION
2424
MAJOR = 2
2525
MINOR = 8
26-
TINY = 0
26+
TINY = 1
2727

2828
STRING = [MAJOR, MINOR, TINY].join('.')
2929
end

0 commit comments

Comments
 (0)