Compare commits

..

2 commits

4 changed files with 8 additions and 7 deletions

View file

@ -1,3 +1,9 @@
## 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.0a5" version = "0.1.0a6"
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,9 +13,6 @@ 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.0a5" __version__ = "0.1.0a6"

View file

@ -47,6 +47,4 @@ 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