nquery 0.1.1 → 0.1.2
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 +6 -0
- data/lib/nquery/version.rb +1 -1
- data/nquery.gemspec +2 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0460bb4897b3a7fbd9516dc0c8e39a69eb397fb4ab221bc2c27f5879a40fc04e
|
|
4
|
+
data.tar.gz: ffd6e74059060bb039706b611a1ee6b193b7d71a6a18a02ea01f88d58c8e3a79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2631cd177c4840a24d2c81f07669a02b168bd0a15f9ac90f80e0cb7f027348624521807f64c50783e8d8e66cb74554f01dfc8ac06941d70cfe9b8b768a0122d
|
|
7
|
+
data.tar.gz: 182717511432fa142146e3fcc097667ae8fbda4f923447aa6ebfabd3e39a23ce0ca23b61c8b4a3f006ad6f00d1a37d50335308222697443d4e3e50767d9a32a5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2] - 2026-09-07
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Publish homepage URL https://github.com/caiohenrique12/nquery (RubyGems does not allow repushing 0.1.1)
|
|
7
|
+
|
|
3
8
|
## [0.1.1] - 2026-09-07
|
|
4
9
|
|
|
5
10
|
Host apps should `bundle update nquery` and run `rails db:migrate`. Re-run `rails generate nquery:install` if you installed 0.1.0 and need the updated initializer.
|
|
@@ -15,6 +20,7 @@ Host apps should `bundle update nquery` and run `rails db:migrate`. Re-run `rail
|
|
|
15
20
|
- Hide the home New dashboard CTA when the user cannot curate
|
|
16
21
|
- Tighten Devise (`>= 5.0.4`) and Puma (`>= 7.2.1`) minimums for known CVEs
|
|
17
22
|
- Bump sqlite3 to `>= 2.9.6` (GHSA-mwm8-39rw-8826)
|
|
23
|
+
- Point gem homepage and source URLs to https://github.com/caiohenrique12/nquery
|
|
18
24
|
|
|
19
25
|
### Fixed
|
|
20
26
|
- PostgreSQL adapter connections
|
data/lib/nquery/version.rb
CHANGED
data/nquery.gemspec
CHANGED
|
@@ -9,13 +9,14 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ["hello@nquery.dev"]
|
|
10
10
|
spec.summary = "SQL charts, dashboards, and data visualization for Rails"
|
|
11
11
|
spec.description = "Mountable Rails engine for SQL charts, dashboards, and analytics."
|
|
12
|
-
spec.homepage = "https://github.com/
|
|
12
|
+
spec.homepage = "https://github.com/caiohenrique12/nquery"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
spec.required_ruby_version = ">= 3.2.0"
|
|
15
15
|
|
|
16
16
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
17
17
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
18
18
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
|
|
19
|
+
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
|
|
19
20
|
|
|
20
21
|
spec.files = Dir.chdir(__dir__) do
|
|
21
22
|
Dir["{app,config,db,lib}/**/*", "README.md", "CHANGELOG.md", "LICENSE", "Rakefile", "nquery.gemspec"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nquery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nquery Contributors
|
|
@@ -474,13 +474,14 @@ files:
|
|
|
474
474
|
- lib/nquery/version.rb
|
|
475
475
|
- lib/tasks/nquery.rake
|
|
476
476
|
- nquery.gemspec
|
|
477
|
-
homepage: https://github.com/
|
|
477
|
+
homepage: https://github.com/caiohenrique12/nquery
|
|
478
478
|
licenses:
|
|
479
479
|
- MIT
|
|
480
480
|
metadata:
|
|
481
|
-
homepage_uri: https://github.com/
|
|
482
|
-
source_code_uri: https://github.com/
|
|
483
|
-
changelog_uri: https://github.com/
|
|
481
|
+
homepage_uri: https://github.com/caiohenrique12/nquery
|
|
482
|
+
source_code_uri: https://github.com/caiohenrique12/nquery
|
|
483
|
+
changelog_uri: https://github.com/caiohenrique12/nquery/blob/main/CHANGELOG.md
|
|
484
|
+
bug_tracker_uri: https://github.com/caiohenrique12/nquery/issues
|
|
484
485
|
post_install_message:
|
|
485
486
|
rdoc_options: []
|
|
486
487
|
require_paths:
|