fix(devel): add missing 1.11 releases commits (#3976)

This commit is contained in:
Aleksandar Fabijanic
2023-03-18 01:29:14 -05:00
committed by GitHub
parent 3852a6b6c2
commit 6207b8fb56
4 changed files with 76 additions and 0 deletions

View File

@@ -180,6 +180,30 @@ Release 1.12.0 (2022-07-08)
- GH #3665 MSVC does not properly recognize std version - GH #3665 MSVC does not properly recognize std version
Release 1.11.6 (2022-12-08)
===========================
- GH #3147: Reading from request stream hangs when "Transfer-Encoding: chunked" is used
- GH #3859: zlib headers not updated
- GH #3876: Replace sprintf with snprintf in Environment and NumberFormatter to avoid deprecation warnings
- Build system improvements for Xcode on Apple Silicon.
- Upgrade bundled SQLite to 3.40.0
Release 1.11.5 (2022-10-31)
===========================
- GH #3849: Upgrade bundled libexpat to 2.5.0 [fixes CVE]
Release 1.11.4 (2022-10-24)
===========================
- GH #3805: Upgrade expat to 2.4.9
- GH #3846: Upgrade bundled zlib to 1.2.13 [fixes CVE]
- GH #3847: Upgrade bundled SQLite to 3.39.4
Release 1.11.3 (2022-06-12) Release 1.11.3 (2022-06-12)
=========================== ===========================

View File

@@ -119,6 +119,9 @@ public:
bool isDeleted() const; bool isDeleted() const;
/// Returns true iff the method has been deleted. /// Returns true iff the method has been deleted.
bool isStatic() const;
/// Returns true iff the method is static.
int countParameters() const; int countParameters() const;
/// Returns the number of parameters. /// Returns the number of parameters.
@@ -178,6 +181,12 @@ inline bool Function::isDeleted() const
} }
inline bool Function::isStatic() const
{
return (flags() & FN_STATIC) != 0;
}
} } // namespace Poco::CppParser } } // namespace Poco::CppParser

View File

@@ -57,6 +57,11 @@ public:
/// ///
/// Example: a type const std::string& -> std::string, a type const std::string* returns std::string /// Example: a type const std::string& -> std::string, a type const std::string* returns std::string
bool isConst() const;
/// Returns true iff the variable is const.
bool isStatic() const;
/// Returns true iff the variable is static.
private: private:
int _flags; int _flags;
@@ -80,6 +85,18 @@ inline bool Variable::isPointer() const
} }
inline bool Variable::isConst() const
{
return (flags() & VAR_CONST) != 0;
}
inline bool Variable::isStatic() const
{
return (flags() & VAR_STATIC) != 0;
}
inline const std::string& Variable::declType() const inline const std::string& Variable::declType() const
{ {
return _type; return _type;

View File

@@ -190,6 +190,32 @@ AAAIntroduction
- Move semantics for sockets and SocketAddress (compile-time option, disabled by default) - Move semantics for sockets and SocketAddress (compile-time option, disabled by default)
!!!Release 1.11.6
!!Summary of Changes
- GH #3147: Reading from request stream hangs when "Transfer-Encoding: chunked" is used
- GH #3859: zlib headers not updated
- Build system fixes for Xcode on Apple Silicon.
- Upgrade bundled SQLite to 3.40.0
!!!Release 1.11.5
!!Summary of Changes
- GH #3849: Upgrade bundled libexpat to 2.5.0 [fixes CVE]
!!!Release 1.11.4
!!Summary of Changes
- GH #3805: Upgrade expat to 2.4.9
- GH #3846: Upgrade bundled zlib to 1.2.13 [fixes CVE]
- GH #3847: Upgrade bundled SQLite to 3.39.4
!!!Release 1.11.3 !!!Release 1.11.3
!!Summary of Changes !!Summary of Changes