fx-adapters-mysql 0.2.0 → 0.2.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 +14 -0
- data/README.md +4 -0
- data/lib/fx/adapters/mysql/functions.rb +1 -1
- data/lib/fx/adapters/mysql/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08368a17b2ca6dbaa4924266f5d0595ed57872a9f5cdfb9b228210baed0e7627'
|
4
|
+
data.tar.gz: d2d865cbaa6e86acf315342dc6046893bfde3db2f121a52ce752af82f273930c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c28421c8d13c1d3a1d59a8521142529c0283c07b92d8b581dee3a6d59318c7d2de6f5cebd3d5b0d31f408b7473dcc8b15839745fd52a760500cf1bfd24f83231
|
7
|
+
data.tar.gz: c9e41b1d95c8d220c1546123e7624d2cf7dd64baa96e94213dcd7cfd2c3b38c5fceaccaf6e69eef369903814d6b022eae598786ec2585d78451a5bdf4fe53910
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### [0.2.2](https://www.github.com/f-mer/fx-adapters-mysql/compare/v0.2.1...v0.2.2) (2024-11-20)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Remove DELIMITER from function definition ([#10](https://www.github.com/f-mer/fx-adapters-mysql/issues/10)) ([7e49ffa](https://www.github.com/f-mer/fx-adapters-mysql/commit/7e49ffabeecafe37102c51100b821b75154eaaf2))
|
9
|
+
|
10
|
+
### [0.2.1](https://www.github.com/f-mer/fx-adapters-mysql/compare/v0.2.0...v0.2.1) (2023-09-29)
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* Relax fx version requirement ([#6](https://www.github.com/f-mer/fx-adapters-mysql/issues/6)) ([e5c5da8](https://www.github.com/f-mer/fx-adapters-mysql/commit/e5c5da8b6f54d1f1282231e0f5c2cdcd3d4af54e))
|
16
|
+
|
3
17
|
## [0.2.0](https://www.github.com/f-mer/fx-adapters-mysql/compare/v0.1.0...v0.2.0) (2022-10-14)
|
4
18
|
|
5
19
|
|
data/README.md
CHANGED
@@ -34,6 +34,10 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
34
34
|
|
35
35
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
36
36
|
|
37
|
+
### VS Code Remote Containers
|
38
|
+
|
39
|
+
If you have [Visual Studio Code](https://code.visualstudio.com) and [Docker](https://www.docker.com) installed, you can use the [VS Code remote containers plugin](https://code.visualstudio.com/docs/remote/containers-tutorial). The plugin will read the [`.devcontainer`](https://github.com/f-mer/fx-adapters-mysql/tree/main/.devcontainer) configuration in the repository and build the Docker container locally
|
40
|
+
|
37
41
|
## Contributing
|
38
42
|
|
39
43
|
Bug reports and pull requests are welcome on GitHub at https://github.com/f-mer/fx-adapters-mysql.
|
@@ -40,7 +40,7 @@ module Fx
|
|
40
40
|
|
41
41
|
def to_fx_function(result)
|
42
42
|
name = result.fetch("name")
|
43
|
-
definition =
|
43
|
+
definition = delete_definer(find_definition(name))
|
44
44
|
Fx::Function.new(
|
45
45
|
"name" => name,
|
46
46
|
"definition" => definition
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fx-adapters-mysql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabian Mersch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mysql2
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 0.7
|
75
|
+
version: '0.7'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0.7
|
82
|
+
version: '0.7'
|
83
83
|
description:
|
84
84
|
email:
|
85
85
|
- fabianmersch@gmail.com
|
@@ -102,8 +102,8 @@ licenses:
|
|
102
102
|
- MIT
|
103
103
|
metadata:
|
104
104
|
bug_tracker_uri: https://github.com/f-mer/fx-adapters-mysql/issues
|
105
|
-
changelog_uri: https://github.com/f-mer/fx-adapters-mysql/blob/v0.2.
|
106
|
-
source_code_uri: https://github.com/f-mer/fx-adapters-mysql/tree/v0.2.
|
105
|
+
changelog_uri: https://github.com/f-mer/fx-adapters-mysql/blob/v0.2.2/CHANGELOG.md
|
106
|
+
source_code_uri: https://github.com/f-mer/fx-adapters-mysql/tree/v0.2.2
|
107
107
|
rubygems_mfa_required: 'true'
|
108
108
|
post_install_message:
|
109
109
|
rdoc_options: []
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
- !ruby/object:Gem::Version
|
121
121
|
version: '0'
|
122
122
|
requirements: []
|
123
|
-
rubygems_version: 3.
|
123
|
+
rubygems_version: 3.5.16
|
124
124
|
signing_key:
|
125
125
|
specification_version: 4
|
126
126
|
summary: MySQL adapter for fx
|