localstack-snapshot 0.3.3__tar.gz → 0.3.4__tar.gz

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.
Files changed (23) hide show
  1. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/PKG-INFO +1 -1
  2. localstack_snapshot-0.3.4/localstack_snapshot/__init__.py +1 -0
  3. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/snapshots/prototype.py +1 -1
  4. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot.egg-info/PKG-INFO +1 -1
  5. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/pyproject.toml +1 -1
  6. localstack_snapshot-0.3.3/localstack_snapshot/__init__.py +0 -1
  7. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/LICENSE +0 -0
  8. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/README.md +0 -0
  9. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/pytest/__init__.py +0 -0
  10. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/pytest/snapshot.py +0 -0
  11. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/snapshots/__init__.py +0 -0
  12. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/snapshots/report.py +0 -0
  13. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/snapshots/transformer.py +0 -0
  14. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/snapshots/transformer_utility.py +0 -0
  15. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/util/__init__.py +0 -0
  16. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot/util/encoding.py +0 -0
  17. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot.egg-info/SOURCES.txt +0 -0
  18. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot.egg-info/dependency_links.txt +0 -0
  19. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot.egg-info/requires.txt +0 -0
  20. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/localstack_snapshot.egg-info/top_level.txt +0 -0
  21. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/setup.cfg +0 -0
  22. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/tests/test_snapshots.py +0 -0
  23. {localstack_snapshot-0.3.3 → localstack_snapshot-0.3.4}/tests/test_transformer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: localstack-snapshot
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Extracted snapshot testing lib for LocalStack
5
5
  Author-email: LocalStack Contributors <info@localstack.cloud>
6
6
  License:
@@ -0,0 +1 @@
1
+ __version__ = "0.3.4"
@@ -239,7 +239,7 @@ class SnapshotSession:
239
239
 
240
240
  self.skip_verification_paths = skip_verification_paths or []
241
241
  if skip_verification_paths:
242
- SNAPSHOT_LOGGER.warning(
242
+ SNAPSHOT_LOGGER.debug(
243
243
  "Snapshot verification disabled for paths: %s", skip_verification_paths
244
244
  )
245
245
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: localstack-snapshot
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Extracted snapshot testing lib for LocalStack
5
5
  Author-email: LocalStack Contributors <info@localstack.cloud>
6
6
  License:
@@ -7,7 +7,7 @@ name = "localstack-snapshot"
7
7
  authors = [
8
8
  { name = "LocalStack Contributors", email = "info@localstack.cloud" }
9
9
  ]
10
- version = "0.3.3"
10
+ version = "0.3.4"
11
11
  description = "Extracted snapshot testing lib for LocalStack"
12
12
  dependencies = [
13
13
  "jsonpath-ng>1.6",
@@ -1 +0,0 @@
1
- __version__ = "0.3.3"