Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-re2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
libvmod-re2
Commits
c8bce857
Commit
c8bce857
authored
Apr 22, 2021
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a change log.
parent
6d20f3a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
CHANGES.md
CHANGES.md
+39
-0
No files found.
CHANGES.md
0 → 100644
View file @
c8bce857
# Changelog
## Breaking changes
A series of commits ending in commit
6d20f3a928697d5b4bcb507b60b197407dc9a70a on April 22, 2021 introduced
breaking changes and some additions to the VMOD:
-
Unrecoverable errors now lead to VCL failure. Previously, functions
and methods returned sentinel values under error conditions (such as
NULL for string returns) and continued processing. This could lead
to fatal errors going unnoticed. VCL failure was already used for
the set integer() method, since there is no sentinel value for
integers. See the ERRORS section of README and the message in commit
c70e410a8a152453bd428278dca9ad9045bf4ebd for details.
-
Added the methods
`.subroutine()`
and
`.check_call()`
.
The changed error handling is a breaking change. Typically this may
nevertheless require few or no changes in production VCL, since these
are "can't happen" errors that are ordinarily discovered in
development and testing, and don't make it into production (or else
they are noticed quickly). But uses of the new version should be
checked nonetheless.
In detail:
### Changed
-
Unrecoverable errors now lead to VCL failure. See the documentation
for details, in particular the ERRORS section of the manual
(README).
-
Set
`.compile()`
is now unnecessary and deprecated. Set compile
is now done automatically when
`vcl_init`
completes.
### Added
-
Set methods
`.subroutine()`
and
`.check_call()`
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment