b4dc8cf707 
					 
					
						
						
							
							chore(deps): update dependency click to v8.2.1 ( #129 )  
						
						... 
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	Snyk / security (push) Successful in 51s 
				
			 
		
		
	 
 
	 
						
						This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [click](https://github.com/pallets/click ) ([changelog](https://click.palletsprojects.com/page/changes/ )) | `==8.1.8` -> `==8.2.1` | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>pallets/click (click)</summary>
### [`v8.2.1`](https://github.com/pallets/click/blob/HEAD/CHANGES.rst#Version-821 )
[Compare Source](https://github.com/pallets/click/compare/8.2.0...8.2.1 )
Released 2025-05-20
- Fix flag value handling for flag options with a provided type. :issue:`2894`
  :issue:`2897` :pr:`2930`
- Fix shell completion for nested groups. :issue:`2906` :pr:`2907`
- Flush `sys.stderr` at the end of `CliRunner.invoke`. :issue:`2682`
- Fix EOF handling for stdin input in CliRunner. :issue:`2787`
### [`v8.2.0`](https://github.com/pallets/click/blob/HEAD/CHANGES.rst#Version-820 )
[Compare Source](https://github.com/pallets/click/compare/8.1.8...8.2.0 )
Released 2025-05-10
- Drop support for Python 3.7, 3.8, and 3.9. :pr:`2588` :pr:`2893`
- Use modern packaging metadata with `pyproject.toml` instead of `setup.cfg`.
  :pr:`2438`
- Use `flit_core` instead of `setuptools` as build backend. :pr:`2543`
- Deprecate the `__version__` attribute. Use feature detection, or
  `importlib.metadata.version("click")`, instead. :issue:`2598`
- `BaseCommand` is deprecated. `Command` is the base class for all
  commands. :issue:`2589`
- `MultiCommand` is deprecated. `Group` is the base class for all group
  commands. :issue:`2590`
- The current parser and related classes and methods, are deprecated.
  :issue:`2205`
  - `OptionParser` and the `parser` module, which is a modified copy of
    `optparse` in the standard library.
  - `Context.protected_args` is unneeded. `Context.args` contains any
    remaining arguments while parsing.
  - `Parameter.add_to_parser` (on both `Argument` and `Option`) is
    unneeded. Parsing works directly without building a separate parser.
  - `split_arg_string` is moved from `parser` to `shell_completion`.
- Enable deferred evaluation of annotations with
  `from __future__ import annotations`. :pr:`2270`
- When generating a command's name from a decorated function's name, the
  suffixes `_command`, `_cmd`, `_group`, and `_grp` are removed.
  :issue:`2322`
- Show the `types.ParamType.name` for `types.Choice` options within
  `--help` message if `show_choices=False` is specified.
  :issue:`2356`
- Do not display default values in prompts when `Option.show_default` is
  `False`. :pr:`2509`
- Add `get_help_extra` method on `Option` to fetch the generated extra
  items used in `get_help_record` to render help text. :issue:`2516`
  :pr:`2517`
- Keep stdout and stderr streams independent in `CliRunner`. Always
  collect stderr output and never raise an exception. Add a new
  output stream to simulate what the user sees in its terminal. Removes
  the `mix_stderr` parameter in `CliRunner`. :issue:`2522` :pr:`2523`
- `Option.show_envvar` now also shows environment variable in error messages.
  :issue:`2695` :pr:`2696`
- `Context.close` will be called on exit. This results in all
  `Context.call_on_close` callbacks and context managers added via
  `Context.with_resource` to be closed on exit as well. :pr:`2680`
- Add `ProgressBar(hidden: bool)` to allow hiding the progressbar. :issue:`2609`
- A `UserWarning` will be shown when multiple parameters attempt to use the
  same name. :issue:`2396`
- When using `Option.envvar` with `Option.flag_value`, the `flag_value`
  will always be used instead of the value of the environment variable.
  :issue:`2746` :pr:`2788`
- Add `Choice.get_invalid_choice_message` method for customizing the
  invalid choice message. :issue:`2621` :pr:`2622`
- If help is shown because `no_args_is_help` is enabled (defaults to `True`
  for groups, `False` for commands), the exit code is 2 instead of 0.
  :issue:`1489` :pr:`1489`
- Contexts created during shell completion are closed properly, fixing
  a `ResourceWarning` when using `click.File`. :issue:`2644` :pr:`2800`
  :pr:`2767`
- `click.edit(filename)` now supports passing an iterable of filenames in
  case the editor supports editing multiple files at once. Its return type
  is now also typed: `AnyStr` if `text` is passed, otherwise `None`.
  :issue:`2067` :pr:`2068`
- Specialized typing of `progressbar(length=...)` as `ProgressBar[int]`.
  :pr:`2630`
- Improve `echo_via_pager` behaviour in face of errors.
  :issue:`2674`
  - Terminate the pager in case a generator passed to `echo_via_pager`
    raises an exception.
  - Ensure to always close the pipe to the pager process and wait for it
    to terminate.
  - `echo_via_pager` will not ignore `KeyboardInterrupt` anymore. This
    allows the user to search for future output of the generator when
    using less and then aborting the program using ctrl-c.
- `deprecated: bool | str` can now be used on options and arguments. This
  previously was only available for `Command`. The message can now also be
  customised by using a `str` instead of a `bool`. :issue:`2263` :pr:`2271`
  - `Command.deprecated` formatting in `--help` changed from
    `(Deprecated) help` to `help (DEPRECATED)`.
  - Parameters cannot be required nor prompted or an error is raised.
  - A warning will be printed when something deprecated is used.
- Add a `catch_exceptions` parameter to `CliRunner`. If
  `catch_exceptions` is not passed to `CliRunner.invoke`, the value
  from `CliRunner` is used. :issue:`2817` :pr:`2818`
- `Option.flag_value` will no longer have a default value set based on
  `Option.default` if `Option.is_flag` is `False`. This results in
  `Option.default` not needing to implement `__bool__`. :pr:`2829`
- Incorrect `click.edit` typing has been corrected. :pr:`2804`
- `Choice` is now generic and supports any iterable value.
  This allows you to use enums and other non-`str` values. :pr:`2796`
  :issue:`605`
- Fix setup of help option's defaults when using a custom class on its
  decorator. Removes `HelpOption`. :issue:`2832` :pr:`2840`
</details>
---
### Configuration
📅  **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦  **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update again.
---
 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC44LjIiLCJ1cGRhdGVkSW5WZXIiOiI0MS4xLjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbInR5cGUvZGVwZW5kZW5jaWVzIl19-->
Reviewed-on: luke/epage#129 
Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk >
Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk > 
						
						
					 
					
						2025-06-22 23:28:21 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						8e8cb5c33e
	 
					 
					
						
						
							
							Formatting  
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	Snyk / security (push) Successful in 50s 
				
			 
		
		
	 
 
	 
						
						
					 
					
						2025-06-22 22:25:48 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						4d60b89b02
	 
					 
					
						
						
							
							Add Dockerfile  
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	Snyk / security (push) Successful in 50s 
				
			 
		
		
	 
 
	 
						
						
					 
					
						2025-06-22 22:22:40 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						f76ba5682b
	 
					 
					
						
						
							
							Move to Gitea  
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	Snyk / security (push) Successful in 54s 
				
			 
		
		
	 
 
	 
						
						
					 
					
						2025-06-22 22:14:15 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						254ea66c1d 
					 
					
						
						
							
							chore(deps): update dependency charset-normalizer to v3.4.2 ( #128 )  
						
						... 
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	CI / ci (push) Failing after 1s 
				
			 
		
		
	 
 
	 
						
						This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [charset-normalizer](https://github.com/jawah/charset_normalizer ) ([changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md )) | patch | `==3.4.1` -> `==3.4.2` |
---
### Release Notes
<details>
<summary>jawah/charset_normalizer (charset-normalizer)</summary>
### [`v3.4.2`](https://github.com/jawah/charset_normalizer/blob/HEAD/CHANGELOG.md#342-2025-05-02 )
[Compare Source](https://github.com/jawah/charset_normalizer/compare/3.4.1...3.4.2 )
##### Fixed
-   Addressed the DeprecationWarning in our CLI regarding `argparse.FileType` by backporting the target class into the package. ([#​591](https://github.com/jawah/charset_normalizer/issues/591 ))
-   Improved the overall reliability of the detector with CJK Ideographs. ([#​605](https://github.com/jawah/charset_normalizer/issues/605 )) ([#​587](https://github.com/jawah/charset_normalizer/issues/587 ))
##### Changed
-   Optional mypyc compilation upgraded to version 1.15 for Python >= 3.8
</details>
---
### Configuration
📅  **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦  **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update again.
---
 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4wLjgiLCJ1cGRhdGVkSW5WZXIiOiI0MC4wLjgiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
Reviewed-on: https://git.tainton.uk/luke/epage/pulls/128 
Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk >
Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk > 
						
						
					 
					
						2025-05-07 01:57:16 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						b848c65cdc 
					 
					
						
						
							
							chore(deps): update dependency urllib3 to v2.4.0 ( #126 )  
						
						... 
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	CI / ci (push) Failing after 1s 
				
			 
		
		
	 
 
	 
						
						This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [urllib3](https://github.com/urllib3/urllib3 ) ([changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )) | minor | `==2.3.0` -> `==2.4.0` |
---
### Release Notes
<details>
<summary>urllib3/urllib3 (urllib3)</summary>
### [`v2.4.0`](https://github.com/urllib3/urllib3/blob/HEAD/CHANGES.rst#240-2025-04-10 )
[Compare Source](https://github.com/urllib3/urllib3/compare/2.3.0...2.4.0 )
\==================
## Features
-   Applied PEP 639 by specifying the license fields in pyproject.toml. (`#​3522 <https://github.com/urllib3/urllib3/issues/3522 >`\__)
-   Updated exceptions to save and restore more properties during the pickle/serialization process. (`#​3567 <https://github.com/urllib3/urllib3/issues/3567 >`\__)
-   Added `verify_flags` option to `create_urllib3_context` with a default of `VERIFY_X509_PARTIAL_CHAIN` and `VERIFY_X509_STRICT` for Python 3.13+. (`#​3571 <https://github.com/urllib3/urllib3/issues/3571 >`\__)
## Bugfixes
-   Fixed a bug with partial reads of streaming data in Emscripten. (`#​3555 <https://github.com/urllib3/urllib3/issues/3555 >`\__)
## Misc
-   Switched to uv for installing development dependecies. (`#​3550 <https://github.com/urllib3/urllib3/issues/3550 >`\__)
-   Removed the `multiple.intoto.jsonl` asset from GitHub releases. Attestation of release files since v2.3.0 can be found on PyPI. (`#​3566 <https://github.com/urllib3/urllib3/issues/3566 >`\__)
</details>
---
### Configuration
📅  **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦  **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update again.
---
 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMSIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
Reviewed-on: https://git.tainton.uk/luke/epage/pulls/126 
Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk >
Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk > 
						
						
					 
					
						2025-04-26 14:55:57 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						30d7014a70 
					 
					
						
						
							
							chore(deps): update dependency certifi to v2025.4.26 ( #127 )  
						
						... 
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	CI / ci (push) Failing after 1s 
				
			 
		
		
	 
 
	 
						
						This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [certifi](https://github.com/certifi/python-certifi ) | minor | `==2025.1.31` -> `==2025.4.26` |
---
### Release Notes
<details>
<summary>certifi/python-certifi (certifi)</summary>
### [`v2025.4.26`](https://github.com/certifi/python-certifi/compare/2025.01.31...2025.04.26 )
[Compare Source](https://github.com/certifi/python-certifi/compare/2025.01.31...2025.04.26 )
</details>
---
### Configuration
📅  **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦  **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕  **Ignore**: Close this PR and you won't be reminded about this update again.
---
 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNTYuMSIsInVwZGF0ZWRJblZlciI6IjM5LjI1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
Reviewed-on: luke/epage#127 
Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk >
Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk > 
						
						
					 
					
						2025-04-26 14:55:46 +02:00 
						 
				 
			
				
					
						
							
							
								snyk-bot 
							
						 
					 
					
						
						
							
						
						e37646a688 
					 
					
						
						
							
							fix: requirements.txt to reduce vulnerabilities  
						
						... 
						
						
	
		
			
	 
	
	
		
	
	
		
			
				
	CI / ci (push) Failing after 1s 
				
			 
		
		
	 
 
	 
						
						The following vulnerabilities are fixed by pinning transitive dependencies:
- https://snyk.io/vuln/SNYK-PYTHON-JINJA2-9292516  
						
						
					 
					
						2025-03-06 07:52:50 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						74cb07aa64 
					 
					
						
						
							
							chore(pip-prod)(deps): bump certifi from 2024.12.14 to 2025.1.31 ( #123 )  
						
						... 
						
						
						
						Bumps [certifi](https://github.com/certifi/python-certifi ) from 2024.12.14 to 2025.1.31.
- [Commits](https://github.com/certifi/python-certifi/compare/2024.12.14...2025.01.31 )
---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2025-02-03 19:05:07 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						5f7e5de7a0 
					 
					
						
						
							
							chore(pip-prod)(deps): bump charset-normalizer from 3.4.0 to 3.4.1 ( #122 )  
						
						... 
						
						
						
						Bumps [charset-normalizer](https://github.com/jawah/charset_normalizer ) from 3.4.0 to 3.4.1.
- [Release notes](https://github.com/jawah/charset_normalizer/releases )
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jawah/charset_normalizer/compare/3.4.0...3.4.1 )
---
updated-dependencies:
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-12-25 09:30:28 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						ffcfd8bec1 
					 
					
						
						
							
							chore(pip-prod)(deps): bump urllib3 from 2.2.3 to 2.3.0 ( #121 )  
						
						... 
						
						
						
						Bumps [urllib3](https://github.com/urllib3/urllib3 ) from 2.2.3 to 2.3.0.
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.3...2.3.0 )
---
updated-dependencies:
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-12-23 11:57:09 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						0ceb7873d3 
					 
					
						
						
							
							chore(pip-prod)(deps): bump jinja2 from 3.1.4 to 3.1.5 ( #120 )  
						
						... 
						
						
						
						Bumps [jinja2](https://github.com/pallets/jinja ) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/pallets/jinja/releases )
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/jinja/compare/3.1.4...3.1.5 )
---
updated-dependencies:
- dependency-name: jinja2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-12-23 11:53:44 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						895296908b 
					 
					
						
						
							
							chore(pip-prod)(deps): bump click from 8.1.7 to 8.1.8 ( #119 )  
						
						... 
						
						
						
						Bumps [click](https://github.com/pallets/click ) from 8.1.7 to 8.1.8.
- [Release notes](https://github.com/pallets/click/releases )
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/click/compare/8.1.7...8.1.8 )
---
updated-dependencies:
- dependency-name: click
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-12-23 11:50:27 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						9ef4fc8ccc 
					 
					
						
						
							
							chore(pip-prod)(deps): bump certifi from 2024.8.30 to 2024.12.14 ( #118 )  
						
						... 
						
						
						
						Bumps [certifi](https://github.com/certifi/python-certifi ) from 2024.8.30 to 2024.12.14.
- [Commits](https://github.com/certifi/python-certifi/compare/2024.08.30...2024.12.14 )
---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-12-16 07:10:11 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						1740877258 
					 
					
						
						
							
							chore(pip-prod)(deps): bump flask from 3.0.3 to 3.1.0 ( #117 )  
						
						... 
						
						
						
						Bumps [flask](https://github.com/pallets/flask ) from 3.0.3 to 3.1.0.
- [Release notes](https://github.com/pallets/flask/releases )
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/flask/compare/3.0.3...3.1.0 )
---
updated-dependencies:
- dependency-name: flask
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-11-14 06:46:46 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						69aeee68fd 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.1.2 to 3.1.3 ( #116 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.1.2 to 3.1.3.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.1.2...3.1.3 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-11-11 06:59:40 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						30281c11db 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.1.1 to 3.1.2 ( #115 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.1.1...3.1.2 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-11-05 07:00:57 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						36b3ece725 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.1.0 to 3.1.1 ( #114 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.1.0...3.1.1 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-11-04 07:08:19 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						9f4c07beea 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.0.6 to 3.1.0 ( #113 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.0.6 to 3.1.0.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.0.6...3.1.0 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-11-01 07:24:46 +00:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						b31c99f8de 
					 
					
						
						
							
							chore(pip-prod)(deps): bump flask-wtf from 1.2.1 to 1.2.2 ( #111 )  
						
						... 
						
						
						
						Bumps [flask-wtf](https://github.com/pallets-eco/flask-wtf ) from 1.2.1 to 1.2.2.
- [Release notes](https://github.com/pallets-eco/flask-wtf/releases )
- [Changelog](https://github.com/pallets-eco/flask-wtf/blob/main/docs/changes.rst )
- [Commits](https://github.com/pallets-eco/flask-wtf/compare/v1.2.1...v1.2.2 )
---
updated-dependencies:
- dependency-name: flask-wtf
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-26 22:11:04 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						15c3817c92 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.0.5 to 3.0.6 ( #112 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.0.5 to 3.0.6.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.0.5...3.0.6 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-26 10:25:36 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						f72fb0e27c 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.0.4 to 3.0.5 ( #110 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.0.4 to 3.0.5.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.0.4...3.0.5 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-25 07:12:37 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						0a31e8fa97 
					 
					
						
						
							
							chore(pip-prod)(deps): bump wtforms from 3.2.0 to 3.2.1 ( #109 )  
						
						... 
						
						
						
						Bumps [wtforms](https://github.com/pallets-eco/wtforms ) from 3.2.0 to 3.2.1.
- [Release notes](https://github.com/pallets-eco/wtforms/releases )
- [Changelog](https://github.com/pallets-eco/wtforms/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets-eco/wtforms/compare/3.2.0...3.2.1 )
---
updated-dependencies:
- dependency-name: wtforms
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-22 07:01:14 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						ca2d7c6102 
					 
					
						
						
							
							chore(pip-prod)(deps): bump wtforms from 3.1.2 to 3.2.0 ( #108 )  
						
						... 
						
						
						
						Bumps [wtforms](https://github.com/pallets-eco/wtforms ) from 3.1.2 to 3.2.0.
- [Release notes](https://github.com/pallets-eco/wtforms/releases )
- [Changelog](https://github.com/pallets-eco/wtforms/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets-eco/wtforms/compare/3.1.2...3.2.0 )
---
updated-dependencies:
- dependency-name: wtforms
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Luke Tainton <luke@tainton.uk > 
						
						
					 
					
						2024-10-21 19:51:05 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						8bb091f812 
					 
					
						
						
							
							chore(pip-prod)(deps): bump markupsafe from 3.0.1 to 3.0.2 ( #107 )  
						
						... 
						
						
						
						Bumps [markupsafe](https://github.com/pallets/markupsafe ) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/pallets/markupsafe/releases )
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/markupsafe/compare/3.0.1...3.0.2 )
---
updated-dependencies:
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-21 07:01:21 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						0a6e0e4aa1 
					 
					
						
						
							
							chore(pip-prod)(deps): bump charset-normalizer from 3.3.2 to 3.4.0 ( #106 )  
						
						... 
						
						
						
						Bumps [charset-normalizer](https://github.com/Ousret/charset_normalizer ) from 3.3.2 to 3.4.0.
- [Release notes](https://github.com/Ousret/charset_normalizer/releases )
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Ousret/charset_normalizer/compare/3.3.2...3.4.0 )
---
updated-dependencies:
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-10 07:47:41 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						94b4e417dc 
					 
					
						
						
							
							chore(pip-prod)(deps): bump markupsafe from 3.0.0 to 3.0.1 ( #105 )  
						
						... 
						
						
						
						Bumps [markupsafe](https://github.com/pallets/markupsafe ) from 3.0.0 to 3.0.1.
- [Release notes](https://github.com/pallets/markupsafe/releases )
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/markupsafe/compare/3.0.0...3.0.1 )
---
updated-dependencies:
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-09 19:02:28 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						cba0917bcd 
					 
					
						
						
							
							chore(pip-prod)(deps): bump markupsafe from 2.1.5 to 3.0.0 ( #104 )  
						
						... 
						
						
						
						Bumps [markupsafe](https://github.com/pallets/markupsafe ) from 2.1.5 to 3.0.0.
- [Release notes](https://github.com/pallets/markupsafe/releases )
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/markupsafe/compare/2.1.5...3.0.0 )
---
updated-dependencies:
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-10-08 07:01:44 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						5aebbeaf0a 
					 
					
						
						
							
							chore(pip-prod)(deps): bump idna from 3.8 to 3.10 ( #103 )  
						
						... 
						
						
						
						Bumps [idna](https://github.com/kjd/idna ) from 3.8 to 3.10.
- [Release notes](https://github.com/kjd/idna/releases )
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst )
- [Commits](https://github.com/kjd/idna/compare/v3.8...v3.10 )
---
updated-dependencies:
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-09-16 07:52:27 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						d5d9186118 
					 
					
						
						
							
							chore(pip-prod)(deps): bump urllib3 from 2.2.2 to 2.2.3 ( #102 )  
						
						... 
						
						
						
						Bumps [urllib3](https://github.com/urllib3/urllib3 ) from 2.2.2 to 2.2.3.
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.2...2.2.3 )
---
updated-dependencies:
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-09-13 08:34:43 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						e2de8baf17 
					 
					
						
						
							
							chore(pip-prod)(deps): bump certifi from 2024.7.4 to 2024.8.30 ( #101 )  
						
						... 
						
						
						
						Bumps [certifi](https://github.com/certifi/python-certifi ) from 2024.7.4 to 2024.8.30.
- [Commits](https://github.com/certifi/python-certifi/compare/2024.07.04...2024.08.30 )
---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-09-02 07:22:38 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						a559abd175 
					 
					
						
						
							
							chore(pip-prod)(deps): bump idna from 3.7 to 3.8 ( #100 )  
						
						... 
						
						
						
						Bumps [idna](https://github.com/kjd/idna ) from 3.7 to 3.8.
- [Release notes](https://github.com/kjd/idna/releases )
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst )
- [Commits](https://github.com/kjd/idna/compare/v3.7...v3.8 )
---
updated-dependencies:
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-08-26 10:24:17 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						21db2b19b3 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.0.3 to 3.0.4 ( #99 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.0.3 to 3.0.4.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.0.3...3.0.4 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-08-22 07:15:36 +01:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						716d8b263c 
					 
					
						
						
							
							[Snyk] Security upgrade zipp from 3.15.0 to 3.19.1 ( #97 )  
						
						... 
						
						
						
						fix: requirements-dev.txt to reduce vulnerabilities
The following vulnerabilities are fixed by pinning transitive dependencies:
- https://snyk.io/vuln/SNYK-PYTHON-ZIPP-7430899 
Co-authored-by: snyk-bot <snyk-bot@snyk.io > 
						
						
					 
					
						2024-07-10 19:04:31 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						a3e45a7675 
					 
					
						
						
							
							chore(pip-prod)(deps): bump certifi from 2024.6.2 to 2024.7.4 ( #96 )  
						
						... 
						
						
						
						Bumps [certifi](https://github.com/certifi/python-certifi ) from 2024.6.2 to 2024.7.4.
- [Commits](https://github.com/certifi/python-certifi/compare/2024.06.02...2024.07.04 )
---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-07-05 07:32:57 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						8374e66db9 
					 
					
						
						
							
							chore(pip-prod)(deps): bump urllib3 from 2.2.1 to 2.2.2 ( #95 )  
						
						... 
						
						
						
						Bumps [urllib3](https://github.com/urllib3/urllib3 ) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.1...2.2.2 )
---
updated-dependencies:
- dependency-name: urllib3
  dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-06-18 07:03:27 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						e05e258649 
					 
					
						
						
							
							chore(pip-prod)(deps): bump certifi from 2024.2.2 to 2024.6.2 ( #94 )  
						
						... 
						
						
						
						Bumps [certifi](https://github.com/certifi/python-certifi ) from 2024.2.2 to 2024.6.2.
- [Commits](https://github.com/certifi/python-certifi/compare/2024.02.02...2024.06.02 )
---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-06-03 07:31:57 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						a23193d624 
					 
					
						
						
							
							chore(pip-prod)(deps): bump requests from 2.32.2 to 2.32.3 ( #93 )  
						
						... 
						
						
						
						Bumps [requests](https://github.com/psf/requests ) from 2.32.2 to 2.32.3.
- [Release notes](https://github.com/psf/requests/releases )
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md )
- [Commits](https://github.com/psf/requests/compare/v2.32.2...v2.32.3 )
---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-05-30 07:55:04 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						6f81ea8d14 
					 
					
						
						
							
							chore(pip-prod)(deps): bump requests from 2.32.1 to 2.32.2 ( #92 )  
						
						... 
						
						
						
						---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-05-22 19:45:13 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						292a49dba4 
					 
					
						
						
							
							chore(pip-prod)(deps): bump requests from 2.31.0 to 2.32.1 ( #91 )  
						
						... 
						
						
						
						---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-05-21 09:24:42 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						6e586fa81d 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.0.2 to 3.0.3 ( #90 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.0.2 to 3.0.3.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.0.2...3.0.3 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-05-06 09:47:50 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						735e01673e 
					 
					
						
						
							
							chore(pip-prod)(deps): bump jinja2 from 3.1.3 to 3.1.4 ( #89 )  
						
						... 
						
						
						
						Bumps [jinja2](https://github.com/pallets/jinja ) from 3.1.3 to 3.1.4.
- [Release notes](https://github.com/pallets/jinja/releases )
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/jinja/compare/3.1.3...3.1.4 )
---
updated-dependencies:
- dependency-name: jinja2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-05-06 09:44:28 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						b2310bd24e 
					 
					
						
						
							
							chore(pip-prod)(deps): bump itsdangerous from 2.1.2 to 2.2.0 ( #88 )  
						
						... 
						
						
						
						Bumps [itsdangerous](https://github.com/pallets/itsdangerous ) from 2.1.2 to 2.2.0.
- [Release notes](https://github.com/pallets/itsdangerous/releases )
- [Changelog](https://github.com/pallets/itsdangerous/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/itsdangerous/compare/2.1.2...2.2.0 )
---
updated-dependencies:
- dependency-name: itsdangerous
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-04-21 09:22:32 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						a0f4acab20 
					 
					
						
						
							
							chore(pip-prod)(deps): bump idna from 3.6 to 3.7 ( #87 )  
						
						... 
						
						
						
						Bumps [idna](https://github.com/kjd/idna ) from 3.6 to 3.7.
- [Release notes](https://github.com/kjd/idna/releases )
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst )
- [Commits](https://github.com/kjd/idna/compare/v3.6...v3.7 )
---
updated-dependencies:
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-04-12 07:19:21 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						7ba70c3538 
					 
					
						
						
							
							chore(pip-prod)(deps): bump flask from 3.0.2 to 3.0.3 ( #86 )  
						
						... 
						
						
						
						Bumps [flask](https://github.com/pallets/flask ) from 3.0.2 to 3.0.3.
- [Release notes](https://github.com/pallets/flask/releases )
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/flask/compare/3.0.2...3.0.3 )
---
updated-dependencies:
- dependency-name: flask
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-04-08 08:01:30 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						c7fe3f8b34 
					 
					
						
						
							
							chore(pip-prod)(deps): bump werkzeug from 3.0.1 to 3.0.2 ( #85 )  
						
						... 
						
						
						
						Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.0.1...3.0.2 )
---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-04-02 07:01:42 +01:00 
						 
				 
			
				
					
						
							
							
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						2ec3451ce9 
					 
					
						
						
							
							chore(pip-prod)(deps): bump urllib3 from 2.2.0 to 2.2.1 ( #84 )  
						
						... 
						
						
						
						Bumps [urllib3](https://github.com/urllib3/urllib3 ) from 2.2.0 to 2.2.1.
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.0...2.2.1 )
---
updated-dependencies:
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-02-19 09:24:35 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Tainton (ltainton) 
							
						 
					 
					
						
						
							
						
						5a9e4553ef 
					 
					
						
						
							
							Add Dependabot  
						
						
						
						
					 
					
						2024-02-05 19:47:30 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
						
						d62a696e3d 
					 
					
						
						
							
							Update dependency MarkupSafe to v2.1.5 ( #82 )  
						
						... 
						
						
						
						Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-02-04 15:27:56 +00:00 
						 
				 
			
				
					
						
							
							
								renovate[bot] 
							
						 
					 
					
						
						
							
						
						9edaa0cceb 
					 
					
						
						
							
							Update dependency Flask to v3.0.2 ( #83 )  
						
						... 
						
						
						
						Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 
						
						
					 
					
						2024-02-04 15:24:55 +00:00