agoo 2.15.3 → 2.15.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/ext/agoo/extconf.rb +1 -0
- data/ext/agoo/page.c +3 -3
- data/lib/agoo/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 607fa2958764488d8aa14ef42fd80b551c9579ac4ebfb4052f9ce60f2404c67f
|
|
4
|
+
data.tar.gz: e9491e0fd3e1b469710b33559043543931cc0e27f6041e3694ba49c06b0b0f6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa65f902c1e4ddba350a0cb11aa9952a47d523236a2b8ee7b1a3249bce891734286c12ec7afee410de7166de3c7c260a78d3cfb5d0c11be4c4cda5470170db67
|
|
7
|
+
data.tar.gz: b9ed399e7edf096b0f4b7cb01225179abd5c85105581af8deb00e6ae2847189e0bb68f3c8046f5b0d6e21a695270489a0ded5940123a5e9bc4d5286aa681ef39
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All changes to the Agoo gem are documented here. Releases follow semantic versioning.
|
|
4
4
|
|
|
5
|
+
## [2.15.5] - 2023-04-07
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Server static txt files now includes the UTF8 character set in the mime type tag.
|
|
10
|
+
|
|
11
|
+
## [2.15.4] - 2023-03-05
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Ruby 3.2.1 and MacOS didn't work well together with libssl missing
|
|
16
|
+
some symbols. Included libcrypt to fix that.
|
|
17
|
+
|
|
5
18
|
## [2.15.3] - 2022-09-23
|
|
6
19
|
|
|
7
20
|
### Fixed
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# [](http://www.ohler.com/agoo) Agoo
|
|
2
2
|
|
|
3
|
-
[](https://github.com/ohler55/agoo/actions/workflows/CI.yml)
|
|
3
|
+
[](https://github.com/ohler55/agoo/actions/workflows/CI.yml)
|
|
4
4
|
[](https://badge.fury.io/rb/agoo)
|
|
5
5
|
 [](https://tidelift.com/subscription/pkg/rubygems-agoo?utm_source=rubygems-agoo&utm_medium=referral&utm_campaign=readme)
|
|
6
6
|
|
data/ext/agoo/extconf.rb
CHANGED
data/ext/agoo/page.c
CHANGED
|
@@ -92,14 +92,14 @@ static struct _mime mime_map[] = {
|
|
|
92
92
|
{ "ppt", "application/vnd.ms-powerpoint" },
|
|
93
93
|
{ "ps", "application/postscript" },
|
|
94
94
|
{ "qt", "video/quicktime" },
|
|
95
|
-
{ "rb", "text/plain" },
|
|
95
|
+
{ "rb", "text/plain; charset=utf-8" },
|
|
96
96
|
{ "rtf", "application/rtf" },
|
|
97
|
-
{ "sse", "text/plain" },
|
|
97
|
+
{ "sse", "text/plain; charset=utf-8" },
|
|
98
98
|
{ "svg", "image/svg+xml" },
|
|
99
99
|
{ "tif", "image/tiff" },
|
|
100
100
|
{ "tiff", "image/tiff" },
|
|
101
101
|
{ "ttf", "application/font-sfnt" },
|
|
102
|
-
{ "txt", "text/plain" },
|
|
102
|
+
{ "txt", "text/plain; charset=utf-8" }, // generally true and if it contains binary that would be an error anyway
|
|
103
103
|
{ "woff", "application/font-woff" },
|
|
104
104
|
{ "woff2", "font/woff2" },
|
|
105
105
|
{ "xls", "application/vnd.ms-excel" },
|
data/lib/agoo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agoo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.15.
|
|
4
|
+
version: 2.15.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Ohler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-04-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: oj
|
|
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
190
190
|
version: '0'
|
|
191
191
|
requirements:
|
|
192
192
|
- Linux or macOS
|
|
193
|
-
rubygems_version: 3.
|
|
193
|
+
rubygems_version: 3.4.1
|
|
194
194
|
signing_key:
|
|
195
195
|
specification_version: 4
|
|
196
196
|
summary: An HTTP server
|