Compare commits

..

No commits in common. "4afd81266c87a8d4968df69847d4fac7d16d74a1" and "7ae683149ad95ef635c065617adc625f29dc2e0d" have entirely different histories.

4 changed files with 7 additions and 8 deletions

View file

@ -1,9 +1,3 @@
## 0.1.0a6 (2025-10-16)
### Fix
- do not remove force_default_on_freeze
## 0.1.0a5 (2025-06-18) ## 0.1.0a5 (2025-06-18)
### Fix ### Fix

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail.structural_bitwarden" name = "rougail.structural_bitwarden"
version = "0.1.0a6" version = "0.1.0a5"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}] authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md" readme = "README.md"
description = "Rougail structural Bitwarden" description = "Rougail structural Bitwarden"
@ -13,6 +13,9 @@ license = {file = "LICENSE"}
classifiers = [ classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.13",

View file

@ -1 +1 @@
__version__ = "0.1.0a6" __version__ = "0.1.0a5"

View file

@ -47,4 +47,6 @@ class Annotator(Walk):
self.objectspace.informations.add(path, "bitwarden", True) self.objectspace.informations.add(path, "bitwarden", True)
self.objectspace.informations.add(path, "default_value_makes_sense", False) self.objectspace.informations.add(path, "default_value_makes_sense", False)
self.objectspace.properties.add(path, "novalidator", True) self.objectspace.properties.add(path, "novalidator", True)
if 'force_default_on_freeze' in self.objectspace.properties.get(path):
self.objectspace.properties.remove(path, 'force_default_on_freeze')
variable.default = variable.secret_manager variable.default = variable.secret_manager