Skip to content

Commit

Permalink
Disable the dynamic plug-in loading and update to v72.1.0.3 (#140)
Browse files Browse the repository at this point in the history
* Disable the dynamic plug-in loading and update to v72.1.0.3

* Update changelog.md

Co-authored-by: Jeff Genovy <[email protected]>

* Update changelog.md

Co-authored-by: Jeff Genovy <[email protected]>

---------

Co-authored-by: Jeff Genovy <[email protected]>
  • Loading branch information
rp9-next and jefgen committed Oct 12, 2023
1 parent 6e89cf0 commit 807b1be
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog
## ICU 72.1.0.3

- Disable the dynamic plug-in loading due to security concerns
- Add changes to emit debugging information to PDB/object files.
- Add changes to enable COMDAT folding and elimination when linking.
## ICU 72.1.0.2

- Restore NNBSP with ASCII space for English locales
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,19 @@
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</Midl>
<ClCompile>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>NDEBUG;U_ENABLE_DYLOAD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<WholeProgramOptimization>true</WholeProgramOptimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<AdditionalOptions>/Zi %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ResourceCompile>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ResourceCompile>
<Link>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
<AdditionalOptions>/profile /opt:ref /opt:icf %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<!-- Options that are common to all 'Debug' configurations for *all* projects. -->
Expand Down
6 changes: 3 additions & 3 deletions icu/icu4c/source/common/unicode/uvernum.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
* @stable ICU 4.0
*/
#ifndef U_ICU_VERSION_BUILDLEVEL_NUM
#define U_ICU_VERSION_BUILDLEVEL_NUM 2
#define U_ICU_VERSION_BUILDLEVEL_NUM 3
#endif

/** Glued version suffix for renamers
Expand Down Expand Up @@ -132,7 +132,7 @@
* This value will change in the subsequent releases of ICU
* @stable ICU 2.4
*/
#define U_ICU_VERSION "72.1.0.2"
#define U_ICU_VERSION "72.1.0.3"

/**
* The current ICU library major version number as a string, for library name suffixes.
Expand All @@ -151,7 +151,7 @@
/** Data version in ICU4C.
* @internal ICU 4.4 Internal Use Only
**/
#define U_ICU_DATA_VERSION "72.1.0.2"
#define U_ICU_DATA_VERSION "72.1.0.3"
#endif /* U_HIDE_INTERNAL_API */

/*===========================================================================
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
# in the header file "uvernum.h" whenever updated and/or changed.
#

ICU_version = 72.1.0.2
ICU_version = 72.1.0.3
ICU_upstream_hash = 6046af063ddd7ed9cbab601a3c6304ad9070545d

0 comments on commit 807b1be

Please sign in to comment.