appmap 0.92.0 → 0.92.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78d8c3cf7967b06242390e3d11ddd24c5cf29fd70244b93b2bf170323747b762
4
- data.tar.gz: 10147c54915b55d8a67723d1721c31a9e809983bb9b0012cdb2f480e9dcf3695
3
+ metadata.gz: f527f92e73d7e71cf5a4e9db3b71c570b39443ad0788bc2c6f4b4bae4bb215ba
4
+ data.tar.gz: 6604ce77790645d5c5a60d37a2bc1116952909fe29856ea9fb36bac29d992d81
5
5
  SHA512:
6
- metadata.gz: 7ce433191ab8e3699feeb995951df0653ef9b89bb11edc7ca671b80011a2af1818e08c22eaa4f0777ec364be9e6e9d8bfec84099ff518d43768fb710e005b681
7
- data.tar.gz: f0c99190697605e71658d9c3c602913954604396c7fb3cc31db09edb1b4cb8bdd1fb4f184e762ff15458b64e5078cd69ac04c324eddd0b4d83e28e3c2b324bb0
6
+ metadata.gz: 841907ab84538b09c9f83509d3c65dcd6d3b0be92e452a3558194fd33a8c90336f4f8294be91ac94a8631546acc89bef91807a451a546c3c1d9408110268e237
7
+ data.tar.gz: 715e6d1e540a89c660f0d3a9794b0c199356b1557fc5921226a422b78eff9c62f6b696cd1d231f0c25d06b82c417f5fef4b9e613b564146a50779b6e4d4d6910
@@ -12,5 +12,5 @@ jobs:
12
12
  steps:
13
13
  - uses: actions/add-to-project@main
14
14
  with:
15
- project-url: https://github.com/orgs/applandinc/projects/15
15
+ project-url: https://github.com/orgs/getappmap/projects/15
16
16
  github-token: ${{ secrets.ADD_TO_PROJECT_BOARD_PAT }}
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.92.1](https://github.com/getappmap/appmap-ruby/compare/v0.92.0...v0.92.1) (2022-09-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Drop database server version ([e52f210](https://github.com/getappmap/appmap-ruby/commit/e52f210baa26be49232003c224e4ffee19be823d))
7
+
1
8
  # [0.92.0](https://github.com/applandinc/appmap-ruby/compare/v0.91.0...v0.92.0) (2022-09-19)
2
9
 
3
10
 
@@ -75,7 +75,6 @@ module AppMap
75
75
  end
76
76
  end
77
77
 
78
- payload[:server_version] = examiner.server_version
79
78
  payload[:database_type] = examiner.database_type.to_s
80
79
  end
81
80
 
@@ -92,6 +91,8 @@ module AppMap
92
91
 
93
92
  class SequelExaminer
94
93
  def server_version
94
+ # Queries the database, therefore this is pretty unsafe to do inside of a hook.
95
+ # As a result, this is not being used at the moment.
95
96
  Sequel::Model.db.server_version
96
97
  end
97
98
 
@@ -3,7 +3,7 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.92.0'
6
+ VERSION = '0.92.1'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.9.0'
9
9
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appmap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.92.0
4
+ version: 0.92.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-19 00:00:00.000000000 Z
11
+ date: 2022-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: method_source
@@ -455,7 +455,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
455
455
  - !ruby/object:Gem::Version
456
456
  version: '0'
457
457
  requirements: []
458
- rubygems_version: 3.0.6
458
+ rubygems_version: 3.1.6
459
459
  signing_key:
460
460
  specification_version: 4
461
461
  summary: Record the operation of a Ruby program, using the AppLand 'AppMap' format.