fx-adapters-mysql 0.2.0 → 0.2.2

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: 7d4db12305baa47256fa8af9772025392671de9ca5045ad2b477b363bee47d31
4
- data.tar.gz: a78503b18a2f9d76d5d9b6ef29df50f5860171a6cc688463b9fc145d27f779be
3
+ metadata.gz: '08368a17b2ca6dbaa4924266f5d0595ed57872a9f5cdfb9b228210baed0e7627'
4
+ data.tar.gz: d2d865cbaa6e86acf315342dc6046893bfde3db2f121a52ce752af82f273930c
5
5
  SHA512:
6
- metadata.gz: cf3826c9f18b79dbf4ee32f1f62a6b241998aa4f41019d007aeb7137c4bd54b2efc3fd94c57466e130fea367ea61ff1d1c262eeebaa7b68e1a3bbd4680ef5db5
7
- data.tar.gz: deafb0dc1f2a0a9a29f60887ba49d7f6c61c7e4a0b7a1af9d2afb9e1a3999d9b0093c373a8af2ca730fd992100b203c5c3315eddf5027e5fcd63a1ead3e97df7
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 = "DELIMITER $$\n#{delete_definer(find_definition(name))}$$\nDELIMITER ;"
43
+ definition = delete_definer(find_definition(name))
44
44
  Fx::Function.new(
45
45
  "name" => name,
46
46
  "definition" => definition
@@ -3,7 +3,7 @@
3
3
  module Fx
4
4
  module Adapters
5
5
  module Mysql
6
- VERSION = "0.2.0"
6
+ VERSION = "0.2.2"
7
7
  end
8
8
  end
9
9
  end
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.0
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: 2023-02-03 00:00:00.000000000 Z
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.0
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.0
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.0/CHANGELOG.md
106
- source_code_uri: https://github.com/f-mer/fx-adapters-mysql/tree/v0.2.0
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.3.18
123
+ rubygems_version: 3.5.16
124
124
  signing_key:
125
125
  specification_version: 4
126
126
  summary: MySQL adapter for fx