You can subscribe to this list here.
2005 |
Jan
|
Feb
(1) |
Mar
(45) |
Apr
(150) |
May
(145) |
Jun
(150) |
Jul
(79) |
Aug
(313) |
Sep
(160) |
Oct
(309) |
Nov
(115) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(160) |
Feb
(144) |
Mar
(127) |
Apr
(48) |
May
(102) |
Jun
(54) |
Jul
(245) |
Aug
(94) |
Sep
(152) |
Oct
(162) |
Nov
(166) |
Dec
(740) |
2007 |
Jan
(752) |
Feb
(437) |
Mar
(328) |
Apr
(373) |
May
(569) |
Jun
(399) |
Jul
(369) |
Aug
(627) |
Sep
(100) |
Oct
(306) |
Nov
(166) |
Dec
(282) |
2008 |
Jan
(68) |
Feb
(145) |
Mar
(180) |
Apr
(160) |
May
(277) |
Jun
(229) |
Jul
(1188) |
Aug
(51) |
Sep
(97) |
Oct
(99) |
Nov
(95) |
Dec
(170) |
2009 |
Jan
(39) |
Feb
(73) |
Mar
(120) |
Apr
(121) |
May
(104) |
Jun
(262) |
Jul
(57) |
Aug
(171) |
Sep
(131) |
Oct
(88) |
Nov
(64) |
Dec
(83) |
2010 |
Jan
(55) |
Feb
(67) |
Mar
(124) |
Apr
(64) |
May
(130) |
Jun
(75) |
Jul
(164) |
Aug
(64) |
Sep
(44) |
Oct
(17) |
Nov
(43) |
Dec
(31) |
2011 |
Jan
(21) |
Feb
(10) |
Mar
(43) |
Apr
(46) |
May
(52) |
Jun
(71) |
Jul
(7) |
Aug
(16) |
Sep
(51) |
Oct
(14) |
Nov
(33) |
Dec
(15) |
2012 |
Jan
(12) |
Feb
(61) |
Mar
(129) |
Apr
(76) |
May
(70) |
Jun
(52) |
Jul
(29) |
Aug
(41) |
Sep
(32) |
Oct
(23) |
Nov
(38) |
Dec
(26) |
2013 |
Jan
(35) |
Feb
(37) |
Mar
(51) |
Apr
(15) |
May
(52) |
Jun
(15) |
Jul
(23) |
Aug
(21) |
Sep
(46) |
Oct
(69) |
Nov
(57) |
Dec
(26) |
2014 |
Jan
(5) |
Feb
(13) |
Mar
(17) |
Apr
(1) |
May
(5) |
Jun
|
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
(16) |
Nov
(8) |
Dec
(4) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(4) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Tyrel D. <ty...@us...> - 2012-10-25 23:13:54
|
Update of /cvsroot/sblim/gather In directory vz-cvs-3.sog:/tmp/cvs-serv24466 Modified Files: NEWS Log Message: Fixed 358023: use setProperty for instance keys under Pegasus Index: NEWS =================================================================== RCS file: /cvsroot/sblim/gather/NEWS,v retrieving revision 1.134 retrieving revision 1.135 diff -u -d -r1.134 -r1.135 --- NEWS 1 Oct 2012 02:59:10 -0000 1.134 +++ NEWS 25 Oct 2012 23:13:51 -0000 1.135 @@ -5,6 +5,7 @@ 3557673 distcheck should check for system z plugins 3573309 large memory counters overflow raw metric buffer 3573315 thread cleanup segv if gather libs unloaded +3580235 use setProperty for instance keys under Pegasus Changes in Version 2.2.6 ======================== |
From: Dave H. <hel...@us...> - 2012-10-24 15:03:47
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 1023f4ec4b3049b2bf895c5bf88a410eeff23973 (commit) from ead25ac6511a8638a437de38b7d20ae76fde74f6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1023f4ec4b3049b2bf895c5bf88a410eeff23973 Author: Dave Heller <hel...@us...> Date: Wed Oct 24 10:59:36 2012 -0400 [ 3579637 ] SFCB should check ftok return code ----------------------------------------------------------------------- Summary of changes: diff --git a/NEWS b/NEWS index 8fc5742..b5099bb 100644 --- a/NEWS +++ b/NEWS @@ -22,6 +22,7 @@ Bugs fixed: - 3564757 stageschema.sh should detect errors in sfcbrepos - 3567083 configure should fail if sfcUtil.so not found - 3573507 CreateInstance for IndicationFilter doesn't accept DMTF:CQL +- 3579637 SFCB should check ftok return code Changes in 1.4.2 ================ diff --git a/msgqueue.c b/msgqueue.c index 4bc51f5..3c5288d 100644 --- a/msgqueue.c +++ b/msgqueue.c @@ -123,10 +123,16 @@ semSetValue(int semid, int semnum, int value) int initSem(int provs) { + _SFCB_ENTER(TRACE_MSGQUEUE, "initSem"); + union semun sun; int i; - sfcbSemKey = ftok(SFCB_BINARY, 'S'); + if ((sfcbSemKey=ftok(SFCB_BINARY,'S')) <=0) { + mlogf(M_ERROR,M_SHOW,"-#- Error creating semaphore key using path: %s (%s)\n", + SFCB_BINARY, strerror(errno)); + _SFCB_ABORT(); + } if ((sfcbSem = semget(sfcbSemKey, 1, 0600)) != -1) semctl(sfcbSem, 0, IPC_RMID, sun); @@ -157,7 +163,7 @@ initSem(int provs) semctl(sfcbSem, PROV_INUSE(i), SETVAL, sun); semctl(sfcbSem, PROV_ALIVE(i), SETVAL, sun); } - return 0; + _SFCB_RETURN(0); } int hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Dave H. <hel...@us...> - 2012-10-24 05:01:31
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv11708 Modified Files: ChangeLog NEWS msgqueue.c Log Message: [ 3579637 ] SFCB should check ftok return code Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.718 retrieving revision 1.719 diff -u -d -r1.718 -r1.719 --- NEWS 6 Oct 2012 01:19:15 -0000 1.718 +++ NEWS 24 Oct 2012 05:01:28 -0000 1.719 @@ -19,6 +19,7 @@ - 3574169 revert interop2 stageschema - 3573507 CreateInstance for IndicationFilter doesn't accept DMTF:CQL - 3574936 --disable-debug still allocates trace variables +- 3579637 SFCB should check ftok return code Changes in 1.3.15 ================= Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.803 retrieving revision 1.804 diff -u -d -r1.803 -r1.804 --- ChangeLog 6 Oct 2012 01:19:15 -0000 1.803 +++ ChangeLog 24 Oct 2012 05:01:28 -0000 1.804 @@ -1,3 +1,8 @@ +2012-10-24 Dave Heller <hel...@us...> + + * msgqueue.c + [ 3579637 ] SFCB should check ftok return code + 2012-10-05 Chris Buccella <buc...@li...> * cimcClientSfcbLocal.c, httpAdapter.c, indCIMXMLHandler.c, Index: msgqueue.c =================================================================== RCS file: /cvsroot/sblim/sfcb/msgqueue.c,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- msgqueue.c 25 May 2012 22:26:13 -0000 1.40 +++ msgqueue.c 24 Oct 2012 05:01:28 -0000 1.41 @@ -118,10 +118,16 @@ int initSem(int https, int shttps, int provs) { + _SFCB_ENTER(TRACE_MSGQUEUE, "initSem"); + union semun sun; int i; - sfcbSemKey=ftok(SFCB_BINARY,'S'); + if ((sfcbSemKey=ftok(SFCB_BINARY,'S')) <=0) { + mlogf(M_ERROR,M_SHOW,"-#- Error creating semaphore key using path: %s (%s)\n", + SFCB_BINARY, strerror(errno)); + _SFCB_ABORT(); + } if ((sfcbSem=semget(sfcbSemKey,1, 0600))!=-1) semctl(sfcbSem,0,IPC_RMID,sun); @@ -149,7 +155,7 @@ semctl(sfcbSem,PROV_INUSE(i),SETVAL,sun); semctl(sfcbSem,PROV_ALIVE(i),SETVAL,sun); } - return 0; + _SFCB_RETURN(0); } int remSem() |
From: Chris B. <buc...@us...> - 2012-10-11 23:31:04
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via ead25ac6511a8638a437de38b7d20ae76fde74f6 (commit) from a49f81e7193321c88d28fd1b5ae515ee8615b7c6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ead25ac6511a8638a437de38b7d20ae76fde74f6 Author: buccella <buc...@li...> Date: Thu Oct 11 19:31:09 2012 -0400 [3574936 ] --disable-debug still allocates trace variables ----------------------------------------------------------------------- Summary of changes: diff --git a/NEWS b/NEWS index 59404ac..8fc5742 100644 --- a/NEWS +++ b/NEWS @@ -116,9 +116,7 @@ Bugs fixed: - 3539563 Memory leak in indCIMXMLHandler when Reliable Inds Enabled - 3539569 Leaks in interopProvider - 3574169 revert interop2 stageschema - -New Features: -- 3501314 Add dynamic logging and syslog output to sfcb trace +- 3574936 --disable-debug still allocates trace variables Changes in 1.3.15 ================= diff --git a/cimRequest.c b/cimRequest.c index 6c98f86..df5bf9c 100644 --- a/cimRequest.c +++ b/cimRequest.c @@ -1791,14 +1791,14 @@ handleCimRequest(CimRequestContext * ctx, int flags, char * more) { RespSegments rs; RequestHdr hdr; + int parserc = 1; /* scanner recognition code + 0 = format understood + 1 = format not understood */ #ifdef SFCB_DEBUG struct rusage us, ue; struct timeval sv, ev; - int parserc = 1; /* scanner recognition code - 0 = format understood - 1 = format not understood */ if (*_ptr_sfcb_trace_mask & TRACE_RESPONSETIMING) { gettimeofday(&sv, NULL); diff --git a/cimcClientSfcbLocal.c b/cimcClientSfcbLocal.c index 86444e0..02bc804 100644 --- a/cimcClientSfcbLocal.c +++ b/cimcClientSfcbLocal.c @@ -1212,6 +1212,7 @@ referenceNames(Client * mb, _SFCB_RETURN(NULL); } +#ifdef SFCB_DEBUG static CMPIValue convertFromStringValue(CMPIValue strcval, CMPIType strctype, CMPIType xtype, @@ -1331,6 +1332,7 @@ static CMPIValue convertFromStringValue(CMPIValue strcval, _SFCB_RETURN(newcval); } // convertFromStringValue +#endif static CMPIArgs * convertFromStringArguments(CMPIConstClass *cls, const char *method, @@ -1434,7 +1436,7 @@ static CMPIArgs * convertFromStringArguments(CMPIConstClass *cls, goto addacopy; } // convert the string value to defined type - CMPIValue newcval = convertFromStringValue(cdata.value, cdata.type, cparam.type, prc); + _SFCB_TRACE_VAR(CMPIValue newcval = convertFromStringValue(cdata.value, cdata.type, cparam.type, prc)); if (prc && (prc->rc != CMPI_RC_OK)) { if (0 != vmpt) { goto error2; @@ -1443,7 +1445,7 @@ static CMPIArgs * convertFromStringArguments(CMPIConstClass *cls, prc->rc = CMPI_RC_OK; goto addacopy; } - CMPIStatus lrc = CMAddArg(argsnew, (char*)name->hdl, &newcval, cparam.type); + _SFCB_TRACE_VAR(CMPIStatus lrc = CMAddArg(argsnew, (char*)name->hdl, &newcval, cparam.type)); _SFCB_TRACE(4,("--- IN argument: %s updated with ptype: %u status: %u",(char*)name->hdl,cparam.type,lrc.rc)); continue; } diff --git a/httpAdapter.c b/httpAdapter.c index e7c5a4d..333733a 100644 --- a/httpAdapter.c +++ b/httpAdapter.c @@ -883,19 +883,21 @@ doHttpRequest(CommHndl conn_fd) static RespSegments nullResponse = { NULL, 0, 0, NULL, {{0, NULL}} }; unsigned long len; int hl, - rc, - uset = 0; + rc; char *hdr, *path; int discardInput = 0; MsgSegment msgs[2]; + CimRequestContext ctx; + int breakloop; + int hcrFlags = 0; /* flags to pass to handleCimRequest() */ +#ifdef SFCB_DEBUG + int uset = 0; struct rusage us, ue; struct timeval sv, ev; - CimRequestContext ctx; - int breakloop; - int hcrFlags = 0; /* flags to pass to handleCimRequest() */ +#endif _SFCB_ENTER(TRACE_HTTPDAEMON, "doHttpRequest"); diff --git a/indCIMXMLHandler.c b/indCIMXMLHandler.c index fc2899d..c18a7f9 100644 --- a/indCIMXMLHandler.c +++ b/indCIMXMLHandler.c @@ -424,8 +424,8 @@ IndCIMXMLHandlerCreateInstance(CMPIInstanceMI * mi, CMSetProperty(ciLocal, "LastSequenceNumber", &zarro, CMPI_sint64); } - CMPIString *str = CDToString(_broker, copLocal, NULL); - CMPIString *ns = CMGetNameSpace(copLocal, NULL); + _SFCB_TRACE_VAR(CMPIString *str = CDToString(_broker, copLocal, NULL)); + _SFCB_TRACE_VAR(CMPIString *ns = CMGetNameSpace(copLocal, NULL)); _SFCB_TRACE(1,("--- handler %s %s", (char *) ns->hdl, (char *) str->hdl)); in = CMNewArgs(_broker, NULL); diff --git a/interopProvider.c b/interopProvider.c index 463300f..d6c8164 100644 --- a/interopProvider.c +++ b/interopProvider.c @@ -1608,8 +1608,8 @@ InteropProviderInvokeMethod(CMPIMethodMI * mi, subscriptionHt->ft->getNext(subscriptionHt, i, (void **) &suName, (void **) &su)) { if ((void *) su->fi == filterId) { - CMPIString *str = CDToString(_broker, su->ha->hop, NULL); - CMPIString *ns = CMGetNameSpace(su->ha->hop, NULL); + _SFCB_TRACE_VAR(CMPIString *str = CDToString(_broker, su->ha->hop, NULL)); + _SFCB_TRACE_VAR(CMPIString *ns = CMGetNameSpace(su->ha->hop, NULL)); _SFCB_TRACE(1, ("--- invoke handler %s %s", (char *) ns->hdl, (char *) str->hdl)); @@ -1658,8 +1658,8 @@ InteropProviderInvokeMethod(CMPIMethodMI * mi, CMPIInstance *ci = in->ft->getArg(in, "handler", &st).value.inst; CMPIObjectPath *op = in->ft->getArg(in, "key", &st).value.ref; - CMPIString *str = CDToString(_broker, op, NULL); - CMPIString *ns = CMGetNameSpace(op, NULL); + _SFCB_TRACE_VAR(CMPIString *str = CDToString(_broker, op, NULL)); + _SFCB_TRACE_VAR(CMPIString *ns = CMGetNameSpace(op, NULL)); _SFCB_TRACE(1, ("--- _addHandler %s %s", (char *) ns->hdl, (char *) str->hdl)); @@ -1690,8 +1690,8 @@ InteropProviderInvokeMethod(CMPIMethodMI * mi, else if (strcasecmp(methodName, "_updateHandler") == 0) { CMPIInstance *ci=in->ft->getArg(in,"handler",&st).value.inst; CMPIObjectPath *op=in->ft->getArg(in,"key",&st).value.ref; - CMPIString *str=CDToString(_broker,op,NULL); - CMPIString *ns=CMGetNameSpace(op,NULL); + _SFCB_TRACE_VAR(CMPIString *str=CDToString(_broker,op,NULL)); + _SFCB_TRACE_VAR(CMPIString *ns=CMGetNameSpace(op,NULL)); _SFCB_TRACE(1,("--- _updateHandler %s %s",(char*)ns->hdl,(char*)str->hdl)); updateHandler(ci,op); } diff --git a/providerDrv.c b/providerDrv.c index 74dd48f..03a10cd 100644 --- a/providerDrv.c +++ b/providerDrv.c @@ -1389,8 +1389,8 @@ getClass(BinRequestHdr * hdr, ProviderInfo * info, int requestor) _SFCB_ENTER(TRACE_PROVIDERDRV, "getClass"); - char *cn = CMGetClassName(path, NULL)->hdl; - char *ns = CMGetNameSpace(path, NULL)->hdl; + _SFCB_TRACE_VAR(char *cn = CMGetClassName(path, NULL)->hdl); + _SFCB_TRACE_VAR(char *ns = CMGetNameSpace(path, NULL)->hdl); _SFCB_TRACE(1, ("--- Namespace %s ClassName %s", ns, cn)); if (req->hdr.flags & FL_localOnly) diff --git a/trace.h b/trace.h index 238a863..e7f37f3 100644 --- a/trace.h +++ b/trace.h @@ -31,6 +31,9 @@ extern unsigned long *_ptr_sfcb_trace_mask; #ifdef SFCB_DEBUG +/* to wrap variables used only in trace statements */ +#define _SFCB_TRACE_VAR(f) f; + #define _SFCB_TRACE(LEVEL,STR) \ if ((*_ptr_sfcb_trace_mask & __traceMask) && (LEVEL<=_sfcb_debug) && (LEVEL>0) ) \ _sfcb_trace(LEVEL,__FILE__,__LINE__,_sfcb_format_trace STR); @@ -86,6 +89,7 @@ extern void _sfcb_trap(int n); #else #define _SFCB_TRACE_FUNCTION(n,f) +#define _SFCB_TRACE_VAR(f) #define _SFCB_TRACE(LEVEL,STR) #define _SFCB_ENTER(n,f) #define _SFCB_EXIT() { return; } hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Dave B. <bla...@us...> - 2012-10-11 17:38:24
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util In directory vz-cvs-3.sog:/tmp/cvs-serv13448/src/org/sblim/cimclient/internal/util Modified Files: Tag: Experimental WBEMConfiguration.java Log Message: 3576396 Improve logging of config file name Index: WBEMConfiguration.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util/WBEMConfiguration.java,v retrieving revision 1.17.2.33 retrieving revision 1.17.2.34 diff -u -d -r1.17.2.33 -r1.17.2.34 --- WBEMConfiguration.java 2 Oct 2012 02:03:39 -0000 1.17.2.33 +++ WBEMConfiguration.java 11 Oct 2012 17:38:22 -0000 1.17.2.34 @@ -43,6 +43,7 @@ * 3524050 2012-06-06 blaschke-oss Improve WWW-Authenticate in HTTPClient.java * 3536399 2012-08-25 hellerda Add client/listener peer authentication properties * 3572993 2012-10-01 blaschke-oss parseDouble("2.2250738585072012e-308") DoS vulnerability + * 3576396 2012-10-11 blaschke-oss Improve logging of config file name */ package org.sblim.cimclient.internal.util; @@ -77,6 +78,8 @@ private static String cConfigURL = null; + private static String cConfigFullURL = null; + private static boolean cLoadSuccessful = false; private static Exception cLoadException = null; @@ -137,6 +140,16 @@ } /** + * Returns the full URL of the active configuration file. This is the file + * used to initialize the global configuration. + * + * @return The full URL of the active configuration file. + */ + public static String getActiveConfigFullURL() { + return cConfigFullURL; + } + + /** * Returns if the configuration was successfully loaded from the * configuration file * @@ -164,6 +177,7 @@ try { cConfigURL = configURL; URL url = new URL(configURL); + cConfigFullURL = getFullURL(url); InputStream inputstream = url.openStream(); return inputstream; } catch (Exception e) { @@ -176,6 +190,7 @@ try { cConfigURL = configURL; URL url = new URL(configURL); + cConfigFullURL = getFullURL(url); InputStream inputstream = url.openStream(); return inputstream; } catch (FileNotFoundException e) { @@ -190,6 +205,49 @@ } /** + * Returns the full URL of the parameter. Only "file:" URLs will be + * processed, and the full URL will be the FQDN of the file with relative + * paths ("." and "..") removed. + * + * @param url + * The URL + * @return The full URL + */ + private static String getFullURL(URL url) { + if (url.getProtocol().equalsIgnoreCase("file")) { + try { + String path = url.getPath(); + int lastSlash = path.lastIndexOf('/'); + int lastBackslash = path.lastIndexOf('\\'); + int lastSep = lastSlash > lastBackslash ? lastSlash : lastBackslash; + + String dir, file; + if (lastSep == -1) { + // directory does not exist, use current directory + dir = "."; + file = path; + } else if (lastSep == 0) { + // directory does exist, is root + dir = "/"; + file = path.substring(1); + } else { + // directory does exist, is not root + dir = path.substring(0, lastSep); + file = path.substring(lastSep + 1); + } + + String cp = new java.io.File(dir).getCanonicalPath(); + if (cp.endsWith(System.getProperty("file.separator"))) return cp + file; + return cp + System.getProperty("file.separator") + file; + } catch (IOException e) { + // ignore + } + return url.getPath(); + } + return url.toString(); + } + + /** * Returns the global configuration * * @return The global configuration |
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv9691 Modified Files: cimcClientSfcbLocal.c httpAdapter.c indCIMXMLHandler.c interopProvider.c providerDrv.c trace.h ChangeLog NEWS Log Message: [ 3574936 ] --disable-debug still allocates trace variables Index: providerDrv.c =================================================================== RCS file: /cvsroot/sblim/sfcb/providerDrv.c,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- providerDrv.c 8 Aug 2012 21:30:52 -0000 1.119 +++ providerDrv.c 6 Oct 2012 01:19:15 -0000 1.120 @@ -1224,8 +1224,8 @@ _SFCB_ENTER(TRACE_PROVIDERDRV, "getClass"); - char *cn=CMGetClassName(path,NULL)->hdl; - char *ns=CMGetNameSpace(path,NULL)->hdl; + _SFCB_TRACE_VAR(char *cn=CMGetClassName(path,NULL)->hdl); + _SFCB_TRACE_VAR(char *ns=CMGetNameSpace(path,NULL)->hdl); _SFCB_TRACE(1, ("--- Namespace %s ClassName %s",ns,cn)); if (req->hdr.flags & FL_localOnly) flgs|=CMPI_FLAG_LocalOnly; Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.802 retrieving revision 1.803 diff -u -d -r1.802 -r1.803 --- ChangeLog 3 Oct 2012 19:21:15 -0000 1.802 +++ ChangeLog 6 Oct 2012 01:19:15 -0000 1.803 @@ -1,3 +1,9 @@ +2012-10-05 Chris Buccella <buc...@li...> + + * cimcClientSfcbLocal.c, httpAdapter.c, indCIMXMLHandler.c, + interopProvider.c, providerDrv.c, trace.h: + [ 3574936 ] --disable-debug still allocates trace variables + 2012-10-03 Chris Buccella <buc...@li...> * interopProvider.c, queryStatement.c: Index: interopProvider.c =================================================================== RCS file: /cvsroot/sblim/sfcb/interopProvider.c,v retrieving revision 1.68 retrieving revision 1.69 diff -u -d -r1.68 -r1.69 --- interopProvider.c 3 Oct 2012 19:21:15 -0000 1.68 +++ interopProvider.c 6 Oct 2012 01:19:15 -0000 1.69 @@ -53,6 +53,7 @@ extern void setStatus(CMPIStatus *st, CMPIrc rc, char *msg); extern int testNameSpace(char *ns, CMPIStatus *st); extern void memLinkObjectPath(CMPIObjectPath *op); +extern void sfcbIndAuditLog(char *operation, char *objinfo); /* ------------------------------------------------------------------------- */ @@ -1445,8 +1446,8 @@ i = subscriptionHt->ft->getNext(subscriptionHt,i, (void**)&suName, (void**)&su)) { if ((void*)su->fi==filterId) { - CMPIString *str=CDToString(_broker,su->ha->hop,NULL); - CMPIString *ns=CMGetNameSpace(su->ha->hop,NULL); + _SFCB_TRACE_VAR(CMPIString *str=CDToString(_broker,su->ha->hop,NULL)); + _SFCB_TRACE_VAR(CMPIString *ns=CMGetNameSpace(su->ha->hop,NULL)); _SFCB_TRACE(1,("--- invoke handler %s %s",(char*)ns->hdl,(char*)str->hdl)); CMAddArg(hin,"subscription",&su->sci,CMPI_instance); @@ -1495,8 +1496,8 @@ CMPIInstance *ci=in->ft->getArg(in,"handler",&st).value.inst; CMPIObjectPath *op=in->ft->getArg(in,"key",&st).value.ref; - CMPIString *str=CDToString(_broker,op,NULL); - CMPIString *ns=CMGetNameSpace(op,NULL); + _SFCB_TRACE_VAR(CMPIString *str=CDToString(_broker,op,NULL)); + _SFCB_TRACE_VAR(CMPIString *ns=CMGetNameSpace(op,NULL)); _SFCB_TRACE(1,("--- _addHandler %s %s",(char*)ns->hdl,(char*)str->hdl)); addHandler(ci,op); sfcbIndAuditLog("CreateHandler-> ", @@ -1526,8 +1527,8 @@ else if (strcasecmp(methodName, "_updateHandler") == 0) { CMPIInstance *ci=in->ft->getArg(in,"handler",&st).value.inst; CMPIObjectPath *op=in->ft->getArg(in,"key",&st).value.ref; - CMPIString *str=CDToString(_broker,op,NULL); - CMPIString *ns=CMGetNameSpace(op,NULL); + _SFCB_TRACE_VAR(CMPIString *str=CDToString(_broker,op,NULL)); + _SFCB_TRACE_VAR(CMPIString *ns=CMGetNameSpace(op,NULL)); _SFCB_TRACE(1,("--- _updateHandler %s %s",(char*)ns->hdl,(char*)str->hdl)); updateHandler(ci,op); } Index: indCIMXMLHandler.c =================================================================== RCS file: /cvsroot/sblim/sfcb/indCIMXMLHandler.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- indCIMXMLHandler.c 19 Jul 2012 17:21:22 -0000 1.56 +++ indCIMXMLHandler.c 6 Oct 2012 01:19:15 -0000 1.57 @@ -393,8 +393,8 @@ CMSetProperty(ciLocal, "LastSequenceNumber", &zarro, CMPI_sint64); } - CMPIString *str=CDToString(_broker,copLocal,NULL); - CMPIString *ns=CMGetNameSpace(copLocal,NULL); + _SFCB_TRACE_VAR(CMPIString *str=CDToString(_broker,copLocal,NULL)); + _SFCB_TRACE_VAR(CMPIString *ns=CMGetNameSpace(copLocal,NULL)); _SFCB_TRACE(1,("--- handler %s %s",(char*)ns->hdl,(char*)str->hdl)); in=CMNewArgs(_broker,NULL); @@ -1014,7 +1014,6 @@ CMRelease(ind); } else { - printf("--- ClassProvider: Invalid request %s\n", methodName); st.rc = CMPI_RC_ERR_METHOD_NOT_FOUND; } Index: httpAdapter.c =================================================================== RCS file: /cvsroot/sblim/sfcb/httpAdapter.c,v retrieving revision 1.108 retrieving revision 1.109 diff -u -d -r1.108 -r1.109 --- httpAdapter.c 8 Aug 2012 20:35:35 -0000 1.108 +++ httpAdapter.c 6 Oct 2012 01:19:15 -0000 1.109 @@ -787,16 +787,20 @@ RespSegments response; static RespSegments nullResponse = { NULL, 0, 0, NULL, { {0, NULL} } }; unsigned long len; - int hl, rc,uset=0; + int hl, rc; char *hdr, *path; int discardInput=0; MsgSegment msgs[2]; - struct rusage us,ue; - struct timeval sv, ev; CimXmlRequestContext ctx; int breakloop; int hcrFlags = 0; /* flags to pass to handleCimRequest() */ +#ifdef SFCB_DEBUG + int uset=0; + struct rusage us,ue; + struct timeval sv, ev; +#endif + _SFCB_ENTER(TRACE_HTTPDAEMON, "doHttpRequest"); if (pauseCodec("http")) for (breakloop=0;breakloop==0;) { Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.717 retrieving revision 1.718 diff -u -d -r1.717 -r1.718 --- NEWS 3 Oct 2012 19:21:15 -0000 1.717 +++ NEWS 6 Oct 2012 01:19:15 -0000 1.718 @@ -18,6 +18,7 @@ - 3546279 Core dump in providerDrv on Qualifier not found - 3574169 revert interop2 stageschema - 3573507 CreateInstance for IndicationFilter doesn't accept DMTF:CQL +- 3574936 --disable-debug still allocates trace variables Changes in 1.3.15 ================= Index: trace.h =================================================================== RCS file: /cvsroot/sblim/sfcb/trace.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- trace.h 11 Apr 2012 22:55:17 -0000 1.17 +++ trace.h 6 Oct 2012 01:19:15 -0000 1.18 @@ -27,6 +27,9 @@ #ifdef SFCB_DEBUG +/* to wrap variables used only in trace statements */ +#define _SFCB_TRACE_VAR(f) f; + #define _SFCB_TRACE(LEVEL,STR) \ if ((*_ptr_sfcb_trace_mask & __traceMask) && (LEVEL<=_sfcb_debug) && (LEVEL>0) ) \ _sfcb_trace(LEVEL,__FILE__,__LINE__,_sfcb_format_trace STR); @@ -84,6 +87,7 @@ #else #define _SFCB_TRACE_FUNCTION(n,f) +#define _SFCB_TRACE_VAR(f) #define _SFCB_TRACE(LEVEL,STR) #define _SFCB_ENTER(n,f) #define _SFCB_EXIT() { return; } Index: cimcClientSfcbLocal.c =================================================================== RCS file: /cvsroot/sblim/sfcb/cimcClientSfcbLocal.c,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- cimcClientSfcbLocal.c 21 Jun 2012 16:46:59 -0000 1.48 +++ cimcClientSfcbLocal.c 6 Oct 2012 01:19:15 -0000 1.49 @@ -1178,6 +1178,7 @@ _SFCB_RETURN(NULL); } +#ifdef SFCB_DEBUG static CMPIValue convertFromStringValue( CMPIValue strcval, CMPIType strctype, @@ -1298,6 +1299,7 @@ _SFCB_RETURN(newcval); } // convertFromStringValue +#endif static CMPIArgs * convertFromStringArguments( CMPIConstClass *cls, @@ -1402,7 +1404,7 @@ goto addacopy; } // convert the string value to defined type - CMPIValue newcval = convertFromStringValue(cdata.value, cdata.type, cparam.type, prc); + _SFCB_TRACE_VAR(CMPIValue newcval = convertFromStringValue(cdata.value, cdata.type, cparam.type, prc)); if (prc && (prc->rc != CMPI_RC_OK)) { if (0 != vmpt) { goto error2; @@ -1411,7 +1413,7 @@ prc->rc = CMPI_RC_OK; goto addacopy; } - CMPIStatus lrc = CMAddArg(argsnew, (char*)name->hdl, &newcval, cparam.type); + _SFCB_TRACE_VAR(CMPIStatus lrc = CMAddArg(argsnew, (char*)name->hdl, &newcval, cparam.type)); _SFCB_TRACE(4,("--- IN argument: %s updated with ptype: %u status: %u",(char*)name->hdl,cparam.type,lrc.rc)); continue; } |
From: Chris B. <buc...@us...> - 2012-10-04 17:39:43
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via a49f81e7193321c88d28fd1b5ae515ee8615b7c6 (commit) from d99011361b076194cc55b0f9289684d2ebd8b800 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a49f81e7193321c88d28fd1b5ae515ee8615b7c6 Author: buccella <buc...@li...> Date: Thu Oct 4 13:40:32 2012 -0400 [ 3573507 ] CreateInstance for IndicationFilter doesn't accept DMTF:CQL ----------------------------------------------------------------------- Summary of changes: diff --git a/NEWS b/NEWS index 7f2d1d6..59404ac 100644 --- a/NEWS +++ b/NEWS @@ -21,6 +21,7 @@ Bugs fixed: - 3546279 Core dump in providerDrv on Qualifier not found - 3564757 stageschema.sh should detect errors in sfcbrepos - 3567083 configure should fail if sfcUtil.so not found +- 3573507 CreateInstance for IndicationFilter doesn't accept DMTF:CQL Changes in 1.4.2 ================ diff --git a/interopProvider.c b/interopProvider.c index 548fabc..463300f 100644 --- a/interopProvider.c +++ b/interopProvider.c @@ -1257,7 +1257,8 @@ InteropProviderCreateInstance(CMPIInstanceMI * mi, _SFCB_TRACE(2, ("--- CIM query language %s %s", lang->hdl, lng)); if (strcasecmp(lng, "wql") && strcasecmp(lng, "cql") - && strcasecmp(lng, "cim:cql")) { + && strcasecmp(lng, "cim:cql") + && strcasecmp(lng, "dmtf:cql")) { setStatus(&st, CMPI_RC_ERR_QUERY_LANGUAGE_NOT_SUPPORTED, NULL); _SFCB_RETURN(st); } diff --git a/queryStatement.c b/queryStatement.c index e56ae4a..09a5d4f 100644 --- a/queryStatement.c +++ b/queryStatement.c @@ -286,7 +286,8 @@ parseQuery(int mode, const char *query, const char *lang, const char *sns, if (strcasecmp(lang, "wql") == 0) ctl.statement->lang = QL_WQL; else if (strcasecmp(lang, "cql") == 0 - || strcasecmp(lang, "cim:cql") == 0) { + || strcasecmp(lang, "cim:cql") == 0 + || strcasecmp(lang, "dmtf:cql") == 0) { ctl.statement->lang = QL_CQL; } else ctl.statement->lang = 0; hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Michael Chase-S. <mc...@us...> - 2012-10-03 21:05:01
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via d99011361b076194cc55b0f9289684d2ebd8b800 (commit) via 4227e971bc353768fc49b69f53fbe8b8940546b5 (commit) from 76379bf36c9f19b40874e84a52853bbf763a13c3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d99011361b076194cc55b0f9289684d2ebd8b800 Author: Michael Chase-Salerno <br...@li...> Date: Wed Oct 3 17:04:27 2012 -0400 - 3574169 revert interop2 stageschema commit 4227e971bc353768fc49b69f53fbe8b8940546b5 Author: Michael Chase-Salerno <br...@li...> Date: Wed Oct 3 17:02:44 2012 -0400 - 3574169 revert interop2 stageschema ----------------------------------------------------------------------- Summary of changes: diff --git a/NEWS b/NEWS index 21cd46d..7f2d1d6 100644 --- a/NEWS +++ b/NEWS @@ -114,6 +114,7 @@ Bugs fixed: - 3539557 Memory leak in providerDrv with property list - 3539563 Memory leak in indCIMXMLHandler when Reliable Inds Enabled - 3539569 Leaks in interopProvider +- 3574169 revert interop2 stageschema New Features: - 3501314 Add dynamic logging and syslog output to sfcb trace diff --git a/test/schema/root/interop/Test_Indication.mof b/test/schema/root/interop2/Test_Indication.mof similarity index 100% copy from test/schema/root/interop/Test_Indication.mof copy to test/schema/root/interop2/Test_Indication.mof diff --git a/test/stageschema.sh b/test/stageschema.sh index 5321224..cbe2d89 100755 --- a/test/stageschema.sh +++ b/test/stageschema.sh @@ -21,7 +21,7 @@ usage() echo "usage: $0 [-p prefix] [ -d testschemadir] [ -u ] " 1>&2 } -NAMESPACE_DIRS="root/cimv2 root/interop" +NAMESPACE_DIRS="root/cimv2 root/interop root/interop2" unstage=0 args=`getopt p:d:u $*` hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Chris B. <buc...@us...> - 2012-10-03 19:21:17
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv17957 Modified Files: interopProvider.c queryStatement.c ChangeLog NEWS Log Message: [ 3573507 ] CreateInstance for IndicationFilter doesn't accept DMTF:CQL Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.716 retrieving revision 1.717 diff -u -d -r1.716 -r1.717 --- NEWS 3 Oct 2012 15:52:00 -0000 1.716 +++ NEWS 3 Oct 2012 19:21:15 -0000 1.717 @@ -17,6 +17,7 @@ - 3541554 insecure LD_LIBRARY_PATH usage - 3546279 Core dump in providerDrv on Qualifier not found - 3574169 revert interop2 stageschema +- 3573507 CreateInstance for IndicationFilter doesn't accept DMTF:CQL Changes in 1.3.15 ================= Index: interopProvider.c =================================================================== RCS file: /cvsroot/sblim/sfcb/interopProvider.c,v retrieving revision 1.67 retrieving revision 1.68 diff -u -d -r1.67 -r1.68 --- interopProvider.c 19 Jul 2012 17:21:22 -0000 1.67 +++ interopProvider.c 3 Oct 2012 19:21:15 -0000 1.68 @@ -1129,7 +1129,7 @@ lng[n]=0; _SFCB_TRACE(2,("--- CIM query language %s %s",lang->hdl,lng)); - if (strcasecmp(lng,"wql") && strcasecmp(lng,"cql") && strcasecmp(lng,"cim:cql")) { + if (strcasecmp(lng,"wql") && strcasecmp(lng,"cql") && strcasecmp(lng,"cim:cql") && strcasecmp(lng,"dmtf:cql")) { setStatus(&st,CMPI_RC_ERR_QUERY_LANGUAGE_NOT_SUPPORTED,NULL); _SFCB_RETURN(st); } Index: queryStatement.c =================================================================== RCS file: /cvsroot/sblim/sfcb/queryStatement.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- queryStatement.c 21 Jun 2012 16:50:14 -0000 1.18 +++ queryStatement.c 3 Oct 2012 19:21:15 -0000 1.19 @@ -259,7 +259,7 @@ ofs=0; ctl.statement=qs=newQLStatement(8,mode); if (strcasecmp(lang,"wql")==0) ctl.statement->lang=QL_WQL; - else if (strcasecmp(lang,"cql")==0 || strcasecmp(lang,"cim:cql")==0) { + else if (strcasecmp(lang,"cql")==0 || strcasecmp(lang,"cim:cql")==0 || strcasecmp(lang,"dmtf:cql")==0) { ctl.statement->lang=QL_CQL; } else ctl.statement->lang=0; Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.801 retrieving revision 1.802 diff -u -d -r1.801 -r1.802 --- ChangeLog 3 Oct 2012 15:52:00 -0000 1.801 +++ ChangeLog 3 Oct 2012 19:21:15 -0000 1.802 @@ -1,3 +1,8 @@ +2012-10-03 Chris Buccella <buc...@li...> + + * interopProvider.c, queryStatement.c: + [ 3573507 ] CreateInstance for IndicationFilter doesn't accept DMTF:CQL + 2012-10-03 Michael Chase-Salerno <br...@li...> * test/stageschema.sh: |
From: Michael Chase-S. <mc...@us...> - 2012-10-03 15:52:03
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv26183 Modified Files: ChangeLog NEWS Log Message: - 3574169 revert interop2 stageschema Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.715 retrieving revision 1.716 diff -u -d -r1.715 -r1.716 --- NEWS 13 Sep 2012 20:32:53 -0000 1.715 +++ NEWS 3 Oct 2012 15:52:00 -0000 1.716 @@ -16,6 +16,7 @@ - 3527714 Every other EnumerateClasses fails - 3541554 insecure LD_LIBRARY_PATH usage - 3546279 Core dump in providerDrv on Qualifier not found +- 3574169 revert interop2 stageschema Changes in 1.3.15 ================= Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.800 retrieving revision 1.801 diff -u -d -r1.800 -r1.801 --- ChangeLog 13 Sep 2012 20:32:53 -0000 1.800 +++ ChangeLog 3 Oct 2012 15:52:00 -0000 1.801 @@ -1,3 +1,8 @@ +2012-10-03 Michael Chase-Salerno <br...@li...> + + * test/stageschema.sh: + [ 3574169 ] revert interop2 stageschema + 2012-09-13 Michael Chase-Salerno <br...@li...> * sfcBroker.c, mlog.c: |
From: Dave B. <bla...@us...> - 2012-10-02 10:16:53
|
Update of /cvsroot/sblim/jsr48-client In directory vz-cvs-3.sog:/tmp/cvs-serv1125 Modified Files: Tag: Experimental sblim-cim-client2.properties Log Message: 3572993 parseDouble("2.2250738585072012e-308") DoS vulnerability Index: sblim-cim-client2.properties =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.properties,v retrieving revision 1.1.2.34 retrieving revision 1.1.2.35 diff -u -d -r1.1.2.34 -r1.1.2.35 --- sblim-cim-client2.properties 2 Oct 2012 02:03:39 -0000 1.1.2.34 +++ sblim-cim-client2.properties 2 Oct 2012 10:16:50 -0000 1.1.2.35 @@ -743,4 +743,4 @@ # Recognition: Startup # Default: true # -#sblim.wbem.verifyJavaLangDoubleStrings=false \ No newline at end of file +#sblim.wbem.verifyJavaLangDoubleStrings=true \ No newline at end of file |
From: Dave B. <bla...@us...> - 2012-10-02 02:03:41
|
Update of /cvsroot/sblim/jsr48-client/utst/org/sblim/cimclient/unittest In directory vz-cvs-3.sog:/tmp/cvs-serv5708/utst/org/sblim/cimclient/unittest Modified Files: Tag: Experimental testcases.util.txt Log Message: 3572993 parseDouble("2.2250738585072012e-308") DoS vulnerability Index: testcases.util.txt =================================================================== RCS file: /cvsroot/sblim/jsr48-client/utst/org/sblim/cimclient/unittest/testcases.util.txt,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- testcases.util.txt 29 Jul 2010 18:44:32 -0000 1.1.2.2 +++ testcases.util.txt 2 Oct 2012 02:03:39 -0000 1.1.2.3 @@ -1,2 +1,3 @@ util.WBEMConfigurationTest util.XMLHostStrTest +util.BadDoubleStringsTest |
From: Dave B. <bla...@us...> - 2012-10-01 22:30:42
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files In directory vz-cvs-3.sog:/tmp/cvs-serv19936/src/org/sblim/cimclient/doc-files Modified Files: history.html Log Message: 3567433 Add links to top of detailed release history HTML Index: history.html =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files/history.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- history.html 13 Sep 2012 20:34:15 -0000 1.3 +++ history.html 1 Oct 2012 22:30:38 -0000 1.4 @@ -19,6 +19,7 @@ *------------------------------------------------------------------------------- * 3505681 2012-03-16 blaschke-oss Add detailed release history HTML * 3567429 2012-09-13 blaschke-oss Update detailed release history HTML for 2.2.0 + * 3567433 2012-09-14 blaschke-oss Add links to top of detailed release history HTML --> </head> <body style="background-color: white;"> @@ -30,13 +31,13 @@ the first time in February of 2007. It continues to ship on a quarterly basis, as close as possible to the middle (15th) of the last month of each quarter (March, June, September, December).</p> - <table border="1" cellpadding="5" cellspacing="0" width="50%"> + <table border="1" cellpadding="5" cellspacing="0" width="75%"> <tr><th>Code Stream</th><th>Versions</th><th>Java Version</th><th>State</th> - <tr><td>2.0.x</td><td>2.0.1-2.0.9</td><td>1.4</td><td>Sunset December 2010</td> - <tr><td>2.1.x</td><td>2.1.0-2.1.12</td><td>1.5</td><td>Maintenance mode September 2012</td> - <tr><td>2.2.x</td><td>2.2.0</td><td>1.5</td><td>Active</td> + <tr><td>2.0.x</td><td><a href="#201">2.0.1</a>, <a href="#202">2.0.2</a>, <a href="#203">2.0.3</a>, <a href="#204">2.0.4</a>, <a href="#205">2.0.5</a>, <a href="#206">2.0.6</a>, <a href="#207">2.0.7</a>, <a href="#208">2.0.8</a>, <a href="#209">2.0.9</a></td><td>1.4</td><td>Sunset December 2010</td> + <tr><td>2.1.x</td><td><a href="#210">2.1.0</a>, <a href="#211">2.1.1</a>, <a href="#212">2.1.2</a>, <a href="#213">2.1.3</a>, <a href="#214">2.1.4</a>, <a href="#215">2.1.5</a>, <a href="#216">2.1.6</a>, <a href="#217">2.1.7</a>, <a href="#218">2.1.8</a>, <a href="#219">2.1.9</a>, <a href="#2110">2.1.10</a>, <a href="#2111">2.1.11</a>, <a href="#2112">2.1.12</a></td><td>1.5</td><td>Maintenance mode September 2012</td> + <tr><td>2.2.x</td><td><a href="#220">2.2.0</a></td><td>1.5</td><td>Active</td> </table> - <h2>Version 2.2.0</h2> + <a name="220"><h2>Version 2.2.0</h2></a> <p>Version 2.2.0 was released on September 14, 2012. It is fully compliant with the final JSR48 1.0.0 specification. In order to comply, several APIs were removed while several others changed their behavior. The @@ -176,7 +177,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3555752&group_id=128809&atid=712784">3555752</td><td>Sync up javax.* javadoc with JSR48 1.0.0 Final IV</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3567429&group_id=128809&atid=712784">3567429</td><td>Update detailed release history HTML for 2.2.0</td></tr> </table> - <h2>Version 2.1.12</h2> + <a name="2112"><h2>Version 2.1.12</h2></a> <p>Version 2.1.12 was released on March 15, 2012. It contains several new features:</p> <ul> @@ -260,7 +261,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504304&group_id=128809&atid=712784">3504304</td><td>Rename socket timeout variables</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504344&group_id=128809&atid=712784">3504344</td><td>Sync Experimental/HEAD branches</td></tr> </table> - <h2>Version 2.1.11</h2> + <a name="2111"><h2>Version 2.1.11</h2></a> <p>Version 2.1.11 was released on December 15, 2011. It contains one new feature:</p> <ul> @@ -289,7 +290,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3444912&group_id=128809&atid=712784"> 3444912</a></td><td>Client delay during SSL handshake</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3459036&group_id=128809&atid=712784"> 3459036</a></td><td>Linked list for RI queue not efficient for many LDs</td></tr> </table> - <h2>Version 2.1.10</h2> + <a name="2110"><h2>Version 2.1.10</h2></a> <p>Version 2.1.10 was released on September 15, 2011. It contains one new feature:</p> <ul> @@ -309,7 +310,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3400209&group_id=128809&atid=712784">3400209</td><td>Highlighted Static Analysis (PMD) issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3409691&group_id=128809&atid=712784">3409691</td><td>2.1.10 packaging issues: rpmbuild broken on Red Hat</td></tr> </table> - <h2>Version 2.1.9</h2> + <a name="219"><h2>Version 2.1.9</h2></a> <p>Version 2.1.9 was released on June 15, 2011. It contains a couple new features:</p> <ul> @@ -346,7 +347,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3304953&group_id=128809&atid=712784">3304953</td><td>Indication URL mapped to lower case</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3311279&group_id=128809&atid=712784">3311279</td><td>Repeated Instantiation of SAXParserFactory</td></tr> </table> - <h2>Version 2.1.8</h2> + <a name="218"><h2>Version 2.1.8</h2></a> <p>Version 2.1.8 was released on March 15, 2011. It contains a few new features:</p> <ul> @@ -389,7 +390,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197627&group_id=128809&atid=712784">3197627</td><td>testBasicConnect unit test fails on Windows</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197423&group_id=128809&atid=712784">3197423</td><td>Server authentication with PegasusLocalAuthInfo failing</td></tr> </table> - <h2>Version 2.1.7</h2> + <a name="217"><h2>Version 2.1.7</h2></a> <p>Version 2.1.7 was released on December 15, 2010. It contains one change that might affect existing applications:</p> <ul> @@ -406,7 +407,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&atid=712784&aid=3109824&group_id=128809">3109824</td><td>Move Java link from Sun to Oracle</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3111718&group_id=128809&atid=712784">3111718</td><td>org.sblim.cimclient SSL Code is using the wrong SSL Property</td></tr> </table> - <h2>Version 2.1.6</h2> + <a name="216"><h2>Version 2.1.6</h2></a> <p>Version 2.1.6 was released on September 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -452,7 +453,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3048749&group_id=128809&atid=712784">3048749</td><td>Hex digit parsing logic error in XMLPullParser</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3046073&group_id=128809&atid=712784">3046073</td><td>Performance hit due to socket conn. creation with timeout</td></tr> </table> - <h2>Version 2.1.5</h2> + <a name="215"><h2>Version 2.1.5</h2></a> <p>Version 2.1.5 was released on June 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -491,7 +492,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001680&group_id=128809&atid=712784">3001680</td><td>CIMQualifierElementInterfaceImpl changes qualifiers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001333&group_id=128809&atid=712784">3001333</td><td>CIMMethod class ignores propagated parameter</td></tr> </table> - <h2>Version 2.1.4</h2> + <a name="214"><h2>Version 2.1.4</h2></a> <p>Version 2.1.4 was released on March 15, 2010. It contains a couple new features:</p> <ul> @@ -543,7 +544,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2942520&group_id=128809&atid=712784">2942520</td><td>IPv6 link local address with scope_id including a dot not supported</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2970881&group_id=128809&atid=712784">2970881</td><td>Add property to control EmbeddedObject case</td></tr> </table> - <h2>Version 2.1.3</h2> + <a name="213"><h2>Version 2.1.3</h2></a> <p>Version 2.1.3 was released on December 15, 2009. It contains several new features:</p> <ul> @@ -592,7 +593,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2907527&group_id=128809&atid=712784">2907527</td><td>Fix SLP properties issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2912104&group_id=128809&atid=712784">2912104</td><td>Sync up javax.wbem.* with JSR48 1.0.0</td></tr> </table> - <h2>Version 2.1.2</h2> + <a name="212"><h2>Version 2.1.2</h2></a> <p>Version 2.1.2 was released on September 15, 2009. It contains a couple new features:</p> <ul> @@ -626,7 +627,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2845211&group_id=128809&atid=712784">2845211</td><td>Pulled Enumeration Support (SAX Parser)</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2849970&group_id=128809&atid=712784">2849970</td><td>createVALUEARRAY fails to create reference array</td></tr> </table> - <h2>Version 2.1.1</h2> + <a name="211"><h2>Version 2.1.1</h2></a> <p>Version 2.1.1 was released on June 15, 2009. It contains a couple new features:</p> <ul> @@ -660,7 +661,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2797550&group_id=128809&atid=712784">2797550</td><td>Make code compatible with JSR48 / Java Generics</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2806362&group_id=128809&atid=712784">2806362</td><td>Missing new CIMDateTimeAbsolute.getUTCOffset() method</td></tr> </table> - <h2>Version 2.1.0</h2> + <a name="210"><h2>Version 2.1.0</h2></a> <p>Version 2.1.0 was released on March 12, 2009. It contains one change that might affect existing applications:</p> <ul> @@ -678,7 +679,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2573575&group_id=128809&atid=712784">2573575</td><td>Fix build.xml to allow file names >100 chars</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2524131&group_id=128809&atid=712784">2524131</td><td>Upgrade client to JDK 1.5 (Phase 1)</td></tr> </table> - <h2>Version 2.0.9</h2> + <a name="209"><h2>Version 2.0.9</h2></a> <p>Version 2.0.9 was released on December 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -692,7 +693,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2210455&group_id=128809&atid=712784">2210455</td><td>Enhance javadoc, fix potential null pointers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2204488&group_id=128809&atid=712784">2204488</td><td>Fix / clean code to remove compiler warnings</td></tr> </table> - <h2>Version 2.0.8</h2> + <a name="208"><h2>Version 2.0.8</h2></a> <p>Version 2.0.8 was released on September 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -705,7 +706,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2013628&group_id=128809&atid=712784">2013628</td><td>SAXException when listing classes</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2002599&group_id=128809&atid=712784">2002599</td><td>M-POST not supported in java-client</td></tr> </table> - <h2>Version 2.0.7</h2> + <a name="207"><h2>Version 2.0.7</h2></a> <p>Version 2.0.7 was released on June 30, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -713,7 +714,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2003590&group_id=128809&atid=712784">2003590</td><td>Change licensing from CPL to EPL</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1963102&group_id=128809&atid=712784">1963102</td><td>NullPointerException when getting qualifiers</td></tr> </table> - <h2>Version 2.0.6</h2> + <a name="206"><h2>Version 2.0.6</h2></a> <p>Version 2.0.6 was released on June 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -729,14 +730,14 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1931216&group_id=128809&atid=712784">1931216</td><td>In HTTPClient need to get status before closing connection</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1917309&group_id=128809&atid=712784">1917309</td><td>"/root:__NAMESPACE" not valid CIMObjectPath</td></tr> </table> - <h2>Version 2.0.5</h2> + <a name="205"><h2>Version 2.0.5</h2></a> <p>Version 2.0.5 was released on March 17, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> <tr><th>Bug ID</th><th>Bug Summary</th></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1911400&group_id=128809&atid=712784">1911400</td><td>Source RPM file on SourceForge is broken</td></tr> </table> - <h2>Version 2.0.4</h2> + <a name="204"><h2>Version 2.0.4</h2></a> <p>Version 2.0.4 was released on February 26, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -757,7 +758,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1741654&group_id=128809&atid=712784">1741654</td><td>Header mismatch error on ModifyInstance</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1769504&group_id=128809&atid=712784">1769504</td><td>Type identification for VALUETYPE="numeric"</td></tr> </table> - <h2>Version 2.0.3</h2> + <a name="203"><h2>Version 2.0.3</h2></a> <p>Version 2.0.3 was not officially released. <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -774,7 +775,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1734888&group_id=128809&atid=712784">1734888</td><td>Wrong reference building in METHODCALL request</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1723607&group_id=128809&atid=712784">1723607</td><td>IPv6 support in WBEM-URI strings</td></tr> </table> - <h2>Version 2.0.2</h2> + <a name="202"><h2>Version 2.0.2</h2></a> <p>Version 2.0.2 was released on May 25, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -808,7 +809,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1660575&group_id=128809&atid=712784">1660575</td><td>Chunking broken on SUN JRE</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1656285&group_id=128809&atid=712784">1656285</td><td>IndicationHandler does not accept non-Integer message ID</td></tr> </table> - <h2>Version 2.0.1</h2> + <a name="201"><h2>Version 2.0.1</h2></a> <p>Version 2.0.1 was released on February 12, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> |
From: Dave B. <bla...@us...> - 2012-10-01 18:10:49
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files In directory vz-cvs-3.sog:/tmp/cvs-serv27814/src/org/sblim/cimclient/doc-files Modified Files: Tag: CIM_CLIENT_2_2_0_M history.html Log Message: rollback 3567433 Index: history.html =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files/history.html,v retrieving revision 1.3.2.1 retrieving revision 1.3.2.2 diff -u -d -r1.3.2.1 -r1.3.2.2 --- history.html 1 Oct 2012 17:42:52 -0000 1.3.2.1 +++ history.html 1 Oct 2012 18:10:46 -0000 1.3.2.2 @@ -19,7 +19,6 @@ *------------------------------------------------------------------------------- * 3505681 2012-03-16 blaschke-oss Add detailed release history HTML * 3567429 2012-09-13 blaschke-oss Update detailed release history HTML for 2.2.0 - * 3567433 2012-09-14 blaschke-oss Add links to top of detailed release history HTML --> </head> <body style="background-color: white;"> @@ -31,13 +30,13 @@ the first time in February of 2007. It continues to ship on a quarterly basis, as close as possible to the middle (15th) of the last month of each quarter (March, June, September, December).</p> - <table border="1" cellpadding="5" cellspacing="0" width="75%"> + <table border="1" cellpadding="5" cellspacing="0" width="50%"> <tr><th>Code Stream</th><th>Versions</th><th>Java Version</th><th>State</th> - <tr><td>2.0.x</td><td><a href="#201">2.0.1</a>, <a href="#202">2.0.2</a>, <a href="#203">2.0.3</a>, <a href="#204">2.0.4</a>, <a href="#205">2.0.5</a>, <a href="#206">2.0.6</a>, <a href="#207">2.0.7</a>, <a href="#208">2.0.8</a>, <a href="#209">2.0.9</a></td><td>1.4</td><td>Sunset December 2010</td> - <tr><td>2.1.x</td><td><a href="#210">2.1.0</a>, <a href="#211">2.1.1</a>, <a href="#212">2.1.2</a>, <a href="#213">2.1.3</a>, <a href="#214">2.1.4</a>, <a href="#215">2.1.5</a>, <a href="#216">2.1.6</a>, <a href="#217">2.1.7</a>, <a href="#218">2.1.8</a>, <a href="#219">2.1.9</a>, <a href="#2110">2.1.10</a>, <a href="#2111">2.1.11</a>, <a href="#2112">2.1.12</a></td><td>1.5</td><td>Maintenance mode September 2012</td> - <tr><td>2.2.x</td><td><a href="#220">2.2.0</a></td><td>1.5</td><td>Active</td> + <tr><td>2.0.x</td><td>2.0.1-2.0.9</td><td>1.4</td><td>Sunset December 2010</td> + <tr><td>2.1.x</td><td>2.1.0-2.1.12</td><td>1.5</td><td>Maintenance mode September 2012</td> + <tr><td>2.2.x</td><td>2.2.0</td><td>1.5</td><td>Active</td> </table> - <a name="220"><h2>Version 2.2.0</h2></a> + <h2>Version 2.2.0</h2> <p>Version 2.2.0 was released on September 14, 2012. It is fully compliant with the final JSR48 1.0.0 specification. In order to comply, several APIs were removed while several others changed their behavior. The @@ -177,7 +176,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3555752&group_id=128809&atid=712784">3555752</td><td>Sync up javax.* javadoc with JSR48 1.0.0 Final IV</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3567429&group_id=128809&atid=712784">3567429</td><td>Update detailed release history HTML for 2.2.0</td></tr> </table> - <a name="2112"><h2>Version 2.1.12</h2></a> + <h2>Version 2.1.12</h2> <p>Version 2.1.12 was released on March 15, 2012. It contains several new features:</p> <ul> @@ -261,7 +260,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504304&group_id=128809&atid=712784">3504304</td><td>Rename socket timeout variables</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504344&group_id=128809&atid=712784">3504344</td><td>Sync Experimental/HEAD branches</td></tr> </table> - <a name="2111"><h2>Version 2.1.11</h2></a> + <h2>Version 2.1.11</h2> <p>Version 2.1.11 was released on December 15, 2011. It contains one new feature:</p> <ul> @@ -290,7 +289,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3444912&group_id=128809&atid=712784"> 3444912</a></td><td>Client delay during SSL handshake</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3459036&group_id=128809&atid=712784"> 3459036</a></td><td>Linked list for RI queue not efficient for many LDs</td></tr> </table> - <a name="2110"><h2>Version 2.1.10</h2></a> + <h2>Version 2.1.10</h2> <p>Version 2.1.10 was released on September 15, 2011. It contains one new feature:</p> <ul> @@ -310,7 +309,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3400209&group_id=128809&atid=712784">3400209</td><td>Highlighted Static Analysis (PMD) issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3409691&group_id=128809&atid=712784">3409691</td><td>2.1.10 packaging issues: rpmbuild broken on Red Hat</td></tr> </table> - <a name="219"><h2>Version 2.1.9</h2></a> + <h2>Version 2.1.9</h2> <p>Version 2.1.9 was released on June 15, 2011. It contains a couple new features:</p> <ul> @@ -347,7 +346,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3304953&group_id=128809&atid=712784">3304953</td><td>Indication URL mapped to lower case</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3311279&group_id=128809&atid=712784">3311279</td><td>Repeated Instantiation of SAXParserFactory</td></tr> </table> - <a name="218"><h2>Version 2.1.8</h2></a> + <h2>Version 2.1.8</h2> <p>Version 2.1.8 was released on March 15, 2011. It contains a few new features:</p> <ul> @@ -390,7 +389,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197627&group_id=128809&atid=712784">3197627</td><td>testBasicConnect unit test fails on Windows</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197423&group_id=128809&atid=712784">3197423</td><td>Server authentication with PegasusLocalAuthInfo failing</td></tr> </table> - <a name="217"><h2>Version 2.1.7</h2></a> + <h2>Version 2.1.7</h2> <p>Version 2.1.7 was released on December 15, 2010. It contains one change that might affect existing applications:</p> <ul> @@ -407,7 +406,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&atid=712784&aid=3109824&group_id=128809">3109824</td><td>Move Java link from Sun to Oracle</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3111718&group_id=128809&atid=712784">3111718</td><td>org.sblim.cimclient SSL Code is using the wrong SSL Property</td></tr> </table> - <a name="216"><h2>Version 2.1.6</h2></a> + <h2>Version 2.1.6</h2> <p>Version 2.1.6 was released on September 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -453,7 +452,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3048749&group_id=128809&atid=712784">3048749</td><td>Hex digit parsing logic error in XMLPullParser</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3046073&group_id=128809&atid=712784">3046073</td><td>Performance hit due to socket conn. creation with timeout</td></tr> </table> - <a name="215"><h2>Version 2.1.5</h2></a> + <h2>Version 2.1.5</h2> <p>Version 2.1.5 was released on June 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -492,7 +491,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001680&group_id=128809&atid=712784">3001680</td><td>CIMQualifierElementInterfaceImpl changes qualifiers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001333&group_id=128809&atid=712784">3001333</td><td>CIMMethod class ignores propagated parameter</td></tr> </table> - <a name="214"><h2>Version 2.1.4</h2></a> + <h2>Version 2.1.4</h2> <p>Version 2.1.4 was released on March 15, 2010. It contains a couple new features:</p> <ul> @@ -544,7 +543,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2942520&group_id=128809&atid=712784">2942520</td><td>IPv6 link local address with scope_id including a dot not supported</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2970881&group_id=128809&atid=712784">2970881</td><td>Add property to control EmbeddedObject case</td></tr> </table> - <a name="213"><h2>Version 2.1.3</h2></a> + <h2>Version 2.1.3</h2> <p>Version 2.1.3 was released on December 15, 2009. It contains several new features:</p> <ul> @@ -593,7 +592,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2907527&group_id=128809&atid=712784">2907527</td><td>Fix SLP properties issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2912104&group_id=128809&atid=712784">2912104</td><td>Sync up javax.wbem.* with JSR48 1.0.0</td></tr> </table> - <a name="212"><h2>Version 2.1.2</h2></a> + <h2>Version 2.1.2</h2> <p>Version 2.1.2 was released on September 15, 2009. It contains a couple new features:</p> <ul> @@ -627,7 +626,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2845211&group_id=128809&atid=712784">2845211</td><td>Pulled Enumeration Support (SAX Parser)</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2849970&group_id=128809&atid=712784">2849970</td><td>createVALUEARRAY fails to create reference array</td></tr> </table> - <a name="211"><h2>Version 2.1.1</h2></a> + <h2>Version 2.1.1</h2> <p>Version 2.1.1 was released on June 15, 2009. It contains a couple new features:</p> <ul> @@ -661,7 +660,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2797550&group_id=128809&atid=712784">2797550</td><td>Make code compatible with JSR48 / Java Generics</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2806362&group_id=128809&atid=712784">2806362</td><td>Missing new CIMDateTimeAbsolute.getUTCOffset() method</td></tr> </table> - <a name="210"><h2>Version 2.1.0</h2></a> + <h2>Version 2.1.0</h2> <p>Version 2.1.0 was released on March 12, 2009. It contains one change that might affect existing applications:</p> <ul> @@ -679,7 +678,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2573575&group_id=128809&atid=712784">2573575</td><td>Fix build.xml to allow file names >100 chars</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2524131&group_id=128809&atid=712784">2524131</td><td>Upgrade client to JDK 1.5 (Phase 1)</td></tr> </table> - <a name="209"><h2>Version 2.0.9</h2></a> + <h2>Version 2.0.9</h2> <p>Version 2.0.9 was released on December 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -693,7 +692,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2210455&group_id=128809&atid=712784">2210455</td><td>Enhance javadoc, fix potential null pointers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2204488&group_id=128809&atid=712784">2204488</td><td>Fix / clean code to remove compiler warnings</td></tr> </table> - <a name="208"><h2>Version 2.0.8</h2></a> + <h2>Version 2.0.8</h2> <p>Version 2.0.8 was released on September 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -706,7 +705,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2013628&group_id=128809&atid=712784">2013628</td><td>SAXException when listing classes</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2002599&group_id=128809&atid=712784">2002599</td><td>M-POST not supported in java-client</td></tr> </table> - <a name="207"><h2>Version 2.0.7</h2></a> + <h2>Version 2.0.7</h2> <p>Version 2.0.7 was released on June 30, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -714,7 +713,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2003590&group_id=128809&atid=712784">2003590</td><td>Change licensing from CPL to EPL</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1963102&group_id=128809&atid=712784">1963102</td><td>NullPointerException when getting qualifiers</td></tr> </table> - <a name="206"><h2>Version 2.0.6</h2></a> + <h2>Version 2.0.6</h2> <p>Version 2.0.6 was released on June 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -730,14 +729,14 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1931216&group_id=128809&atid=712784">1931216</td><td>In HTTPClient need to get status before closing connection</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1917309&group_id=128809&atid=712784">1917309</td><td>"/root:__NAMESPACE" not valid CIMObjectPath</td></tr> </table> - <a name="205"><h2>Version 2.0.5</h2></a> + <h2>Version 2.0.5</h2> <p>Version 2.0.5 was released on March 17, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> <tr><th>Bug ID</th><th>Bug Summary</th></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1911400&group_id=128809&atid=712784">1911400</td><td>Source RPM file on SourceForge is broken</td></tr> </table> - <a name="204"><h2>Version 2.0.4</h2></a> + <h2>Version 2.0.4</h2> <p>Version 2.0.4 was released on February 26, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -758,7 +757,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1741654&group_id=128809&atid=712784">1741654</td><td>Header mismatch error on ModifyInstance</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1769504&group_id=128809&atid=712784">1769504</td><td>Type identification for VALUETYPE="numeric"</td></tr> </table> - <a name="203"><h2>Version 2.0.3</h2></a> + <h2>Version 2.0.3</h2> <p>Version 2.0.3 was not officially released. <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -775,7 +774,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1734888&group_id=128809&atid=712784">1734888</td><td>Wrong reference building in METHODCALL request</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1723607&group_id=128809&atid=712784">1723607</td><td>IPv6 support in WBEM-URI strings</td></tr> </table> - <a name="202"><h2>Version 2.0.2</h2></a> + <h2>Version 2.0.2</h2> <p>Version 2.0.2 was released on May 25, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -809,7 +808,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1660575&group_id=128809&atid=712784">1660575</td><td>Chunking broken on SUN JRE</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1656285&group_id=128809&atid=712784">1656285</td><td>IndicationHandler does not accept non-Integer message ID</td></tr> </table> - <a name="201"><h2>Version 2.0.1</h2></a> + <h2>Version 2.0.1</h2> <p>Version 2.0.1 was released on February 12, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> |
From: Dave B. <bla...@us...> - 2012-10-01 17:42:54
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files In directory vz-cvs-3.sog:/tmp/cvs-serv24101/src/org/sblim/cimclient/doc-files Modified Files: Tag: CIM_CLIENT_2_2_0_M history.html Log Message: 3567433 Add links to top of detailed release history HTML Index: history.html =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files/history.html,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -d -r1.3 -r1.3.2.1 --- history.html 13 Sep 2012 20:34:15 -0000 1.3 +++ history.html 1 Oct 2012 17:42:52 -0000 1.3.2.1 @@ -19,6 +19,7 @@ *------------------------------------------------------------------------------- * 3505681 2012-03-16 blaschke-oss Add detailed release history HTML * 3567429 2012-09-13 blaschke-oss Update detailed release history HTML for 2.2.0 + * 3567433 2012-09-14 blaschke-oss Add links to top of detailed release history HTML --> </head> <body style="background-color: white;"> @@ -30,13 +31,13 @@ the first time in February of 2007. It continues to ship on a quarterly basis, as close as possible to the middle (15th) of the last month of each quarter (March, June, September, December).</p> - <table border="1" cellpadding="5" cellspacing="0" width="50%"> + <table border="1" cellpadding="5" cellspacing="0" width="75%"> <tr><th>Code Stream</th><th>Versions</th><th>Java Version</th><th>State</th> - <tr><td>2.0.x</td><td>2.0.1-2.0.9</td><td>1.4</td><td>Sunset December 2010</td> - <tr><td>2.1.x</td><td>2.1.0-2.1.12</td><td>1.5</td><td>Maintenance mode September 2012</td> - <tr><td>2.2.x</td><td>2.2.0</td><td>1.5</td><td>Active</td> + <tr><td>2.0.x</td><td><a href="#201">2.0.1</a>, <a href="#202">2.0.2</a>, <a href="#203">2.0.3</a>, <a href="#204">2.0.4</a>, <a href="#205">2.0.5</a>, <a href="#206">2.0.6</a>, <a href="#207">2.0.7</a>, <a href="#208">2.0.8</a>, <a href="#209">2.0.9</a></td><td>1.4</td><td>Sunset December 2010</td> + <tr><td>2.1.x</td><td><a href="#210">2.1.0</a>, <a href="#211">2.1.1</a>, <a href="#212">2.1.2</a>, <a href="#213">2.1.3</a>, <a href="#214">2.1.4</a>, <a href="#215">2.1.5</a>, <a href="#216">2.1.6</a>, <a href="#217">2.1.7</a>, <a href="#218">2.1.8</a>, <a href="#219">2.1.9</a>, <a href="#2110">2.1.10</a>, <a href="#2111">2.1.11</a>, <a href="#2112">2.1.12</a></td><td>1.5</td><td>Maintenance mode September 2012</td> + <tr><td>2.2.x</td><td><a href="#220">2.2.0</a></td><td>1.5</td><td>Active</td> </table> - <h2>Version 2.2.0</h2> + <a name="220"><h2>Version 2.2.0</h2></a> <p>Version 2.2.0 was released on September 14, 2012. It is fully compliant with the final JSR48 1.0.0 specification. In order to comply, several APIs were removed while several others changed their behavior. The @@ -176,7 +177,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3555752&group_id=128809&atid=712784">3555752</td><td>Sync up javax.* javadoc with JSR48 1.0.0 Final IV</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3567429&group_id=128809&atid=712784">3567429</td><td>Update detailed release history HTML for 2.2.0</td></tr> </table> - <h2>Version 2.1.12</h2> + <a name="2112"><h2>Version 2.1.12</h2></a> <p>Version 2.1.12 was released on March 15, 2012. It contains several new features:</p> <ul> @@ -260,7 +261,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504304&group_id=128809&atid=712784">3504304</td><td>Rename socket timeout variables</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504344&group_id=128809&atid=712784">3504344</td><td>Sync Experimental/HEAD branches</td></tr> </table> - <h2>Version 2.1.11</h2> + <a name="2111"><h2>Version 2.1.11</h2></a> <p>Version 2.1.11 was released on December 15, 2011. It contains one new feature:</p> <ul> @@ -289,7 +290,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3444912&group_id=128809&atid=712784"> 3444912</a></td><td>Client delay during SSL handshake</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3459036&group_id=128809&atid=712784"> 3459036</a></td><td>Linked list for RI queue not efficient for many LDs</td></tr> </table> - <h2>Version 2.1.10</h2> + <a name="2110"><h2>Version 2.1.10</h2></a> <p>Version 2.1.10 was released on September 15, 2011. It contains one new feature:</p> <ul> @@ -309,7 +310,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3400209&group_id=128809&atid=712784">3400209</td><td>Highlighted Static Analysis (PMD) issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3409691&group_id=128809&atid=712784">3409691</td><td>2.1.10 packaging issues: rpmbuild broken on Red Hat</td></tr> </table> - <h2>Version 2.1.9</h2> + <a name="219"><h2>Version 2.1.9</h2></a> <p>Version 2.1.9 was released on June 15, 2011. It contains a couple new features:</p> <ul> @@ -346,7 +347,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3304953&group_id=128809&atid=712784">3304953</td><td>Indication URL mapped to lower case</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3311279&group_id=128809&atid=712784">3311279</td><td>Repeated Instantiation of SAXParserFactory</td></tr> </table> - <h2>Version 2.1.8</h2> + <a name="218"><h2>Version 2.1.8</h2></a> <p>Version 2.1.8 was released on March 15, 2011. It contains a few new features:</p> <ul> @@ -389,7 +390,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197627&group_id=128809&atid=712784">3197627</td><td>testBasicConnect unit test fails on Windows</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197423&group_id=128809&atid=712784">3197423</td><td>Server authentication with PegasusLocalAuthInfo failing</td></tr> </table> - <h2>Version 2.1.7</h2> + <a name="217"><h2>Version 2.1.7</h2></a> <p>Version 2.1.7 was released on December 15, 2010. It contains one change that might affect existing applications:</p> <ul> @@ -406,7 +407,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&atid=712784&aid=3109824&group_id=128809">3109824</td><td>Move Java link from Sun to Oracle</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3111718&group_id=128809&atid=712784">3111718</td><td>org.sblim.cimclient SSL Code is using the wrong SSL Property</td></tr> </table> - <h2>Version 2.1.6</h2> + <a name="216"><h2>Version 2.1.6</h2></a> <p>Version 2.1.6 was released on September 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -452,7 +453,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3048749&group_id=128809&atid=712784">3048749</td><td>Hex digit parsing logic error in XMLPullParser</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3046073&group_id=128809&atid=712784">3046073</td><td>Performance hit due to socket conn. creation with timeout</td></tr> </table> - <h2>Version 2.1.5</h2> + <a name="215"><h2>Version 2.1.5</h2></a> <p>Version 2.1.5 was released on June 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -491,7 +492,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001680&group_id=128809&atid=712784">3001680</td><td>CIMQualifierElementInterfaceImpl changes qualifiers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001333&group_id=128809&atid=712784">3001333</td><td>CIMMethod class ignores propagated parameter</td></tr> </table> - <h2>Version 2.1.4</h2> + <a name="214"><h2>Version 2.1.4</h2></a> <p>Version 2.1.4 was released on March 15, 2010. It contains a couple new features:</p> <ul> @@ -543,7 +544,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2942520&group_id=128809&atid=712784">2942520</td><td>IPv6 link local address with scope_id including a dot not supported</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2970881&group_id=128809&atid=712784">2970881</td><td>Add property to control EmbeddedObject case</td></tr> </table> - <h2>Version 2.1.3</h2> + <a name="213"><h2>Version 2.1.3</h2></a> <p>Version 2.1.3 was released on December 15, 2009. It contains several new features:</p> <ul> @@ -592,7 +593,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2907527&group_id=128809&atid=712784">2907527</td><td>Fix SLP properties issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2912104&group_id=128809&atid=712784">2912104</td><td>Sync up javax.wbem.* with JSR48 1.0.0</td></tr> </table> - <h2>Version 2.1.2</h2> + <a name="212"><h2>Version 2.1.2</h2></a> <p>Version 2.1.2 was released on September 15, 2009. It contains a couple new features:</p> <ul> @@ -626,7 +627,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2845211&group_id=128809&atid=712784">2845211</td><td>Pulled Enumeration Support (SAX Parser)</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2849970&group_id=128809&atid=712784">2849970</td><td>createVALUEARRAY fails to create reference array</td></tr> </table> - <h2>Version 2.1.1</h2> + <a name="211"><h2>Version 2.1.1</h2></a> <p>Version 2.1.1 was released on June 15, 2009. It contains a couple new features:</p> <ul> @@ -660,7 +661,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2797550&group_id=128809&atid=712784">2797550</td><td>Make code compatible with JSR48 / Java Generics</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2806362&group_id=128809&atid=712784">2806362</td><td>Missing new CIMDateTimeAbsolute.getUTCOffset() method</td></tr> </table> - <h2>Version 2.1.0</h2> + <a name="210"><h2>Version 2.1.0</h2></a> <p>Version 2.1.0 was released on March 12, 2009. It contains one change that might affect existing applications:</p> <ul> @@ -678,7 +679,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2573575&group_id=128809&atid=712784">2573575</td><td>Fix build.xml to allow file names >100 chars</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2524131&group_id=128809&atid=712784">2524131</td><td>Upgrade client to JDK 1.5 (Phase 1)</td></tr> </table> - <h2>Version 2.0.9</h2> + <a name="209"><h2>Version 2.0.9</h2></a> <p>Version 2.0.9 was released on December 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -692,7 +693,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2210455&group_id=128809&atid=712784">2210455</td><td>Enhance javadoc, fix potential null pointers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2204488&group_id=128809&atid=712784">2204488</td><td>Fix / clean code to remove compiler warnings</td></tr> </table> - <h2>Version 2.0.8</h2> + <a name="208"><h2>Version 2.0.8</h2></a> <p>Version 2.0.8 was released on September 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -705,7 +706,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2013628&group_id=128809&atid=712784">2013628</td><td>SAXException when listing classes</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2002599&group_id=128809&atid=712784">2002599</td><td>M-POST not supported in java-client</td></tr> </table> - <h2>Version 2.0.7</h2> + <a name="207"><h2>Version 2.0.7</h2></a> <p>Version 2.0.7 was released on June 30, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -713,7 +714,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2003590&group_id=128809&atid=712784">2003590</td><td>Change licensing from CPL to EPL</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1963102&group_id=128809&atid=712784">1963102</td><td>NullPointerException when getting qualifiers</td></tr> </table> - <h2>Version 2.0.6</h2> + <a name="206"><h2>Version 2.0.6</h2></a> <p>Version 2.0.6 was released on June 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -729,14 +730,14 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1931216&group_id=128809&atid=712784">1931216</td><td>In HTTPClient need to get status before closing connection</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1917309&group_id=128809&atid=712784">1917309</td><td>"/root:__NAMESPACE" not valid CIMObjectPath</td></tr> </table> - <h2>Version 2.0.5</h2> + <a name="205"><h2>Version 2.0.5</h2></a> <p>Version 2.0.5 was released on March 17, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> <tr><th>Bug ID</th><th>Bug Summary</th></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1911400&group_id=128809&atid=712784">1911400</td><td>Source RPM file on SourceForge is broken</td></tr> </table> - <h2>Version 2.0.4</h2> + <a name="204"><h2>Version 2.0.4</h2></a> <p>Version 2.0.4 was released on February 26, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -757,7 +758,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1741654&group_id=128809&atid=712784">1741654</td><td>Header mismatch error on ModifyInstance</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1769504&group_id=128809&atid=712784">1769504</td><td>Type identification for VALUETYPE="numeric"</td></tr> </table> - <h2>Version 2.0.3</h2> + <a name="203"><h2>Version 2.0.3</h2></a> <p>Version 2.0.3 was not officially released. <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -774,7 +775,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1734888&group_id=128809&atid=712784">1734888</td><td>Wrong reference building in METHODCALL request</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1723607&group_id=128809&atid=712784">1723607</td><td>IPv6 support in WBEM-URI strings</td></tr> </table> - <h2>Version 2.0.2</h2> + <a name="202"><h2>Version 2.0.2</h2></a> <p>Version 2.0.2 was released on May 25, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -808,7 +809,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1660575&group_id=128809&atid=712784">1660575</td><td>Chunking broken on SUN JRE</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1656285&group_id=128809&atid=712784">1656285</td><td>IndicationHandler does not accept non-Integer message ID</td></tr> </table> - <h2>Version 2.0.1</h2> + <a name="201"><h2>Version 2.0.1</h2></a> <p>Version 2.0.1 was released on February 12, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> |
From: Tyrel D. <ty...@us...> - 2012-10-01 02:59:13
|
Update of /cvsroot/sblim/gather In directory vz-cvs-3.sog:/tmp/cvs-serv1476 Modified Files: NEWS Log Message: Fixed 3573315: thread cleanup segv if gather libs unloaded Index: NEWS =================================================================== RCS file: /cvsroot/sblim/gather/NEWS,v retrieving revision 1.133 retrieving revision 1.134 diff -u -d -r1.133 -r1.134 --- NEWS 1 Oct 2012 02:15:35 -0000 1.133 +++ NEWS 1 Oct 2012 02:59:10 -0000 1.134 @@ -4,6 +4,7 @@ Bugs fixed: 3557673 distcheck should check for system z plugins 3573309 large memory counters overflow raw metric buffer +3573315 thread cleanup segv if gather libs unloaded Changes in Version 2.2.6 ======================== |
From: Tyrel D. <ty...@us...> - 2012-10-01 02:15:38
|
Update of /cvsroot/sblim/gather In directory vz-cvs-3.sog:/tmp/cvs-serv31888 Modified Files: Makefile.am NEWS Log Message: Fixed 3573309: large memory counters overflow raw metric buffer Index: NEWS =================================================================== RCS file: /cvsroot/sblim/gather/NEWS,v retrieving revision 1.132 retrieving revision 1.133 diff -u -d -r1.132 -r1.133 --- NEWS 15 Aug 2012 03:48:27 -0000 1.132 +++ NEWS 1 Oct 2012 02:15:35 -0000 1.133 @@ -3,6 +3,7 @@ Bugs fixed: 3557673 distcheck should check for system z plugins +3573309 large memory counters overflow raw metric buffer Changes in Version 2.2.6 ======================== Index: Makefile.am =================================================================== RCS file: /cvsroot/sblim/gather/Makefile.am,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- Makefile.am 15 Aug 2012 03:48:27 -0000 1.26 +++ Makefile.am 1 Oct 2012 02:15:35 -0000 1.27 @@ -218,7 +218,7 @@ libmetricOperatingSystem_la_SOURCES=plugin/metricOperatingSystem.c libmetricOperatingSystem_la_LIBADD=libgatherutil.la libmetricOperatingSystem_la_DEPENDENCIES=libgatherutil.la -libmetricOperatingSystem_la_LDFLAGS=$(PLUG_FLAGS) +libmetricOperatingSystem_la_LDFLAGS=$(PLUG_FLAGS) -lm libmetricLocalFileSystem_la_SOURCES=plugin/metricLocalFileSystem.c libmetricLocalFileSystem_la_LIBADD=libgatherutil.la |
From: Dave B. <bla...@us...> - 2012-09-14 12:50:59
|
Update of /cvsroot/sblim/jsr48-client In directory vz-cvs-3.sog:/tmp/cvs-serv26032 Modified Files: Tag: CIM_CLIENT_2_2_0_M sblim-cim-client2.spec build.xml Log Message: 2.2.0 release work Index: sblim-cim-client2.spec =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.spec,v retrieving revision 1.26 retrieving revision 1.26.2.1 diff -u -d -r1.26 -r1.26.2.1 --- sblim-cim-client2.spec 14 Sep 2012 09:13:35 -0000 1.26 +++ sblim-cim-client2.spec 14 Sep 2012 12:50:56 -0000 1.26.2.1 @@ -1,7 +1,7 @@ %define name sblim-cim-client2 %define project_folder %{name}-%{version}-src %define archive_folder build -%define version HEAD +%define version 2.2.0 %define release 1jpp %define section free Index: build.xml =================================================================== RCS file: /cvsroot/sblim/jsr48-client/build.xml,v retrieving revision 1.47 retrieving revision 1.47.4.1 diff -u -d -r1.47 -r1.47.4.1 --- build.xml 14 Mar 2012 09:47:52 -0000 1.47 +++ build.xml 14 Sep 2012 12:50:56 -0000 1.47.4.1 @@ -36,7 +36,7 @@ <property name="Manifest.name" value="SBLIM CIM Client for Java" /> <property name="Manifest.title" value="SBLIM CIM Client for Java" /> <property name="Manifest.vendor" value="IBM Corporation 2005, 2012" /> - <property name="Manifest.version" value="HEAD" /> + <property name="Manifest.version" value="2.2.0" /> <property name="Directory.source.core" value="${basedir}/src" /> <property name="Directory.source.samples" value="${basedir}/smpl" /> |
From: Dave B. <bla...@us...> - 2012-09-14 11:40:37
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files In directory vz-cvs-3.sog:/tmp/cvs-serv18408/src/org/sblim/cimclient/doc-files Modified Files: Tag: Experimental history.html Log Message: 3567433 - Add links to top of detailed release history HTML Index: history.html =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files/history.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- history.html 13 Sep 2012 20:29:56 -0000 1.1.2.2 +++ history.html 14 Sep 2012 11:40:34 -0000 1.1.2.3 @@ -19,6 +19,7 @@ *------------------------------------------------------------------------------- * 3505681 2012-03-16 blaschke-oss Add detailed release history HTML * 3567429 2012-09-13 blaschke-oss Update detailed release history HTML for 2.2.0 + * 3567433 2012-09-14 blaschke-oss Add links to top of detailed release history HTML --> </head> <body style="background-color: white;"> @@ -30,13 +31,13 @@ the first time in February of 2007. It continues to ship on a quarterly basis, as close as possible to the middle (15th) of the last month of each quarter (March, June, September, December).</p> - <table border="1" cellpadding="5" cellspacing="0" width="50%"> + <table border="1" cellpadding="5" cellspacing="0" width="75%"> <tr><th>Code Stream</th><th>Versions</th><th>Java Version</th><th>State</th> - <tr><td>2.0.x</td><td>2.0.1-2.0.9</td><td>1.4</td><td>Sunset December 2010</td> - <tr><td>2.1.x</td><td>2.1.0-2.1.12</td><td>1.5</td><td>Maintenance mode September 2012</td> - <tr><td>2.2.x</td><td>2.2.0</td><td>1.5</td><td>Active</td> + <tr><td>2.0.x</td><td><a href="#201">2.0.1</a>, <a href="#202">2.0.2</a>, <a href="#203">2.0.3</a>, <a href="#204">2.0.4</a>, <a href="#205">2.0.5</a>, <a href="#206">2.0.6</a>, <a href="#207">2.0.7</a>, <a href="#208">2.0.8</a>, <a href="#209">2.0.9</a></td><td>1.4</td><td>Sunset December 2010</td> + <tr><td>2.1.x</td><td><a href="#210">2.1.0</a>, <a href="#211">2.1.1</a>, <a href="#212">2.1.2</a>, <a href="#213">2.1.3</a>, <a href="#214">2.1.4</a>, <a href="#215">2.1.5</a>, <a href="#216">2.1.6</a>, <a href="#217">2.1.7</a>, <a href="#218">2.1.8</a>, <a href="#219">2.1.9</a>, <a href="#2110">2.1.10</a>, <a href="#2111">2.1.11</a>, <a href="#2112">2.1.12</a></td><td>1.5</td><td>Maintenance mode September 2012</td> + <tr><td>2.2.x</td><td><a href="#220">2.2.0</a></td><td>1.5</td><td>Active</td> </table> - <h2>Version 2.2.0</h2> + <a name="220"><h2>Version 2.2.0</h2></a> <p>Version 2.2.0 was released on September 14, 2012. It is fully compliant with the final JSR48 1.0.0 specification. In order to comply, several APIs were removed while several others changed their behavior. The @@ -176,7 +177,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3555752&group_id=128809&atid=712784">3555752</td><td>Sync up javax.* javadoc with JSR48 1.0.0 Final IV</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3567429&group_id=128809&atid=712784">3567429</td><td>Update detailed release history HTML for 2.2.0</td></tr> </table> - <h2>Version 2.1.12</h2> + <a name="2112"><h2>Version 2.1.12</h2></a> <p>Version 2.1.12 was released on March 15, 2012. It contains several new features:</p> <ul> @@ -260,7 +261,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504304&group_id=128809&atid=712784">3504304</td><td>Rename socket timeout variables</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3504344&group_id=128809&atid=712784">3504344</td><td>Sync Experimental/HEAD branches</td></tr> </table> - <h2>Version 2.1.11</h2> + <a name="2111"><h2>Version 2.1.11</h2></a> <p>Version 2.1.11 was released on December 15, 2011. It contains one new feature:</p> <ul> @@ -289,7 +290,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3444912&group_id=128809&atid=712784"> 3444912</a></td><td>Client delay during SSL handshake</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3459036&group_id=128809&atid=712784"> 3459036</a></td><td>Linked list for RI queue not efficient for many LDs</td></tr> </table> - <h2>Version 2.1.10</h2> + <a name="2110"><h2>Version 2.1.10</h2></a> <p>Version 2.1.10 was released on September 15, 2011. It contains one new feature:</p> <ul> @@ -309,7 +310,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3400209&group_id=128809&atid=712784">3400209</td><td>Highlighted Static Analysis (PMD) issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3409691&group_id=128809&atid=712784">3409691</td><td>2.1.10 packaging issues: rpmbuild broken on Red Hat</td></tr> </table> - <h2>Version 2.1.9</h2> + <a name="219"><h2>Version 2.1.9</h2></a> <p>Version 2.1.9 was released on June 15, 2011. It contains a couple new features:</p> <ul> @@ -346,7 +347,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3304953&group_id=128809&atid=712784">3304953</td><td>Indication URL mapped to lower case</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3311279&group_id=128809&atid=712784">3311279</td><td>Repeated Instantiation of SAXParserFactory</td></tr> </table> - <h2>Version 2.1.8</h2> + <a name="218"><h2>Version 2.1.8</h2></a> <p>Version 2.1.8 was released on March 15, 2011. It contains a few new features:</p> <ul> @@ -389,7 +390,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197627&group_id=128809&atid=712784">3197627</td><td>testBasicConnect unit test fails on Windows</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3197423&group_id=128809&atid=712784">3197423</td><td>Server authentication with PegasusLocalAuthInfo failing</td></tr> </table> - <h2>Version 2.1.7</h2> + <a name="217"><h2>Version 2.1.7</h2></a> <p>Version 2.1.7 was released on December 15, 2010. It contains one change that might affect existing applications:</p> <ul> @@ -406,7 +407,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&atid=712784&aid=3109824&group_id=128809">3109824</td><td>Move Java link from Sun to Oracle</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3111718&group_id=128809&atid=712784">3111718</td><td>org.sblim.cimclient SSL Code is using the wrong SSL Property</td></tr> </table> - <h2>Version 2.1.6</h2> + <a name="216"><h2>Version 2.1.6</h2></a> <p>Version 2.1.6 was released on September 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -452,7 +453,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3048749&group_id=128809&atid=712784">3048749</td><td>Hex digit parsing logic error in XMLPullParser</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3046073&group_id=128809&atid=712784">3046073</td><td>Performance hit due to socket conn. creation with timeout</td></tr> </table> - <h2>Version 2.1.5</h2> + <a name="215"><h2>Version 2.1.5</h2></a> <p>Version 2.1.5 was released on June 15, 2010. It contains a couple changes that might affect existing applications:</p> <ul> @@ -491,7 +492,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001680&group_id=128809&atid=712784">3001680</td><td>CIMQualifierElementInterfaceImpl changes qualifiers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3001333&group_id=128809&atid=712784">3001333</td><td>CIMMethod class ignores propagated parameter</td></tr> </table> - <h2>Version 2.1.4</h2> + <a name="214"><h2>Version 2.1.4</h2></a> <p>Version 2.1.4 was released on March 15, 2010. It contains a couple new features:</p> <ul> @@ -543,7 +544,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2942520&group_id=128809&atid=712784">2942520</td><td>IPv6 link local address with scope_id including a dot not supported</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2970881&group_id=128809&atid=712784">2970881</td><td>Add property to control EmbeddedObject case</td></tr> </table> - <h2>Version 2.1.3</h2> + <a name="213"><h2>Version 2.1.3</h2></a> <p>Version 2.1.3 was released on December 15, 2009. It contains several new features:</p> <ul> @@ -592,7 +593,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2907527&group_id=128809&atid=712784">2907527</td><td>Fix SLP properties issues</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2912104&group_id=128809&atid=712784">2912104</td><td>Sync up javax.wbem.* with JSR48 1.0.0</td></tr> </table> - <h2>Version 2.1.2</h2> + <a name="212"><h2>Version 2.1.2</h2></a> <p>Version 2.1.2 was released on September 15, 2009. It contains a couple new features:</p> <ul> @@ -626,7 +627,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2845211&group_id=128809&atid=712784">2845211</td><td>Pulled Enumeration Support (SAX Parser)</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2849970&group_id=128809&atid=712784">2849970</td><td>createVALUEARRAY fails to create reference array</td></tr> </table> - <h2>Version 2.1.1</h2> + <a name="211"><h2>Version 2.1.1</h2></a> <p>Version 2.1.1 was released on June 15, 2009. It contains a couple new features:</p> <ul> @@ -660,7 +661,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2797550&group_id=128809&atid=712784">2797550</td><td>Make code compatible with JSR48 / Java Generics</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2806362&group_id=128809&atid=712784">2806362</td><td>Missing new CIMDateTimeAbsolute.getUTCOffset() method</td></tr> </table> - <h2>Version 2.1.0</h2> + <a name="210"><h2>Version 2.1.0</h2></a> <p>Version 2.1.0 was released on March 12, 2009. It contains one change that might affect existing applications:</p> <ul> @@ -678,7 +679,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2573575&group_id=128809&atid=712784">2573575</td><td>Fix build.xml to allow file names >100 chars</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2524131&group_id=128809&atid=712784">2524131</td><td>Upgrade client to JDK 1.5 (Phase 1)</td></tr> </table> - <h2>Version 2.0.9</h2> + <a name="209"><h2>Version 2.0.9</h2></a> <p>Version 2.0.9 was released on December 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -692,7 +693,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2210455&group_id=128809&atid=712784">2210455</td><td>Enhance javadoc, fix potential null pointers</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2204488&group_id=128809&atid=712784">2204488</td><td>Fix / clean code to remove compiler warnings</td></tr> </table> - <h2>Version 2.0.8</h2> + <a name="208"><h2>Version 2.0.8</h2></a> <p>Version 2.0.8 was released on September 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -705,7 +706,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2013628&group_id=128809&atid=712784">2013628</td><td>SAXException when listing classes</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2002599&group_id=128809&atid=712784">2002599</td><td>M-POST not supported in java-client</td></tr> </table> - <h2>Version 2.0.7</h2> + <a name="207"><h2>Version 2.0.7</h2></a> <p>Version 2.0.7 was released on June 30, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -713,7 +714,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=2003590&group_id=128809&atid=712784">2003590</td><td>Change licensing from CPL to EPL</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1963102&group_id=128809&atid=712784">1963102</td><td>NullPointerException when getting qualifiers</td></tr> </table> - <h2>Version 2.0.6</h2> + <a name="206"><h2>Version 2.0.6</h2></a> <p>Version 2.0.6 was released on June 12, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -729,14 +730,14 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1931216&group_id=128809&atid=712784">1931216</td><td>In HTTPClient need to get status before closing connection</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1917309&group_id=128809&atid=712784">1917309</td><td>"/root:__NAMESPACE" not valid CIMObjectPath</td></tr> </table> - <h2>Version 2.0.5</h2> + <a name="205"><h2>Version 2.0.5</h2></a> <p>Version 2.0.5 was released on March 17, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> <tr><th>Bug ID</th><th>Bug Summary</th></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1911400&group_id=128809&atid=712784">1911400</td><td>Source RPM file on SourceForge is broken</td></tr> </table> - <h2>Version 2.0.4</h2> + <a name="204"><h2>Version 2.0.4</h2></a> <p>Version 2.0.4 was released on February 26, 2008.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -757,7 +758,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1741654&group_id=128809&atid=712784">1741654</td><td>Header mismatch error on ModifyInstance</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1769504&group_id=128809&atid=712784">1769504</td><td>Type identification for VALUETYPE="numeric"</td></tr> </table> - <h2>Version 2.0.3</h2> + <a name="203"><h2>Version 2.0.3</h2></a> <p>Version 2.0.3 was not officially released. <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -774,7 +775,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1734888&group_id=128809&atid=712784">1734888</td><td>Wrong reference building in METHODCALL request</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1723607&group_id=128809&atid=712784">1723607</td><td>IPv6 support in WBEM-URI strings</td></tr> </table> - <h2>Version 2.0.2</h2> + <a name="202"><h2>Version 2.0.2</h2></a> <p>Version 2.0.2 was released on May 25, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> @@ -808,7 +809,7 @@ <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1660575&group_id=128809&atid=712784">1660575</td><td>Chunking broken on SUN JRE</td></tr> <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1656285&group_id=128809&atid=712784">1656285</td><td>IndicationHandler does not accept non-Integer message ID</td></tr> </table> - <h2>Version 2.0.1</h2> + <a name="201"><h2>Version 2.0.1</h2></a> <p>Version 2.0.1 was released on February 12, 2007.</p> <p>The complete list of changes follows:</p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> |
From: Dave B. <bla...@us...> - 2012-09-14 09:13:38
|
Update of /cvsroot/sblim/jsr48-client In directory vz-cvs-3.sog:/tmp/cvs-serv1115 Modified Files: NEWS sblim-cim-client2.spec ChangeLog Log Message: 2.2.0 release work Index: sblim-cim-client2.spec =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- sblim-cim-client2.spec 15 Mar 2012 13:28:39 -0000 1.25 +++ sblim-cim-client2.spec 14 Sep 2012 09:13:35 -0000 1.26 @@ -158,6 +158,58 @@ # ----------------------------------------------------------------------------- %changelog +* Fri Sep 14 2012 Dave Blaschke <bla...@us...> +- New release 2.2.0 + o 3567429 Update detailed release history HTML for 2.2.0 + o 3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV + o 3565581 TCK: remove unnecessary overriding methods + o 3562235 LogAndTraceBrokerTest breaks unit test tracing + o 3536399 Add client/listener peer authentication properties + o 3529151 TCK: CIMInstance property APIs include keys from COP + o 3536398 Update HTML to reflect secure indication support + o 3554738 dump CIM xml by LogAndTraceBroker.trace() + o 3553858 Append duplicate HTTP header fields instead of replace + o 3535383 HashDoS fix 3498482 + o 3545797 Support new error code of SFCB + o 3529066 Add Jsr48IndicationTester + o 3524050 Improve WWW-Authenticate in HTTPClient.java + o 3529065 Enable WBEMListener get/setProperty + o 3529062 WBEMListenerFactory should return new instance + o 3527580 WBEMClient should not throw IllegalArgumentException + o 3526681 CIMError valid status codes out-of-date + o 3526679 DOM parser ignores ERROR node CODE + o 3526675 Unit test fails on Java 7 + o 3525914 TCK: SetPropertyTest.testSetProperty failing + o 3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1 + o 3525657 Sync up javax.* javadoc with JSR48 1.0.0 Final III + o 3525150 Remove CIMGetClassOp.getPropertyLis + o 3525145 Remove CIMDeleteNameSpaceOp.getNamespace + o 3525138 Remove WBEMConstants.PROTOCOL_CIMXML + o 3525135 Remove CIMResponse.isSuccessul + o 3525128 Remove WBEMTransportException/WBEMAuthenticationException + o 3523918 "java.io.IOException: Unexpected EOF" returned as HTTP 401 + o 3522904 Add new API WBEMClientSBLIM.isActive() + o 3521328 JSR48 1.0.0: remove WBEMClient associators and references + o 3521119 JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors + o 3521131 Sync up javax.* javadoc with JSR48 1.0.0 Final II + o 3466280 get instance failure for CIM_IndicationSubscription + o 3513228 Reliable Indications support can create lots of threads + o 3517503 Missing parm in CIMDataType ctor javadoc + o 3516848 enumerateNamespaces() method to WBEMClient + o 3515180 JSR48 log dir/file should handle UNIX/Win separators + o 3514685 TCK: getProperty must return default values + o 3514537 TCK: execQueryInstances requires boolean, not Boolean + o 3513357 Handle multiple CDATAs in CimXmlSerializer + o 3513347 TCK: CIMObjectPath allows empty string + o 3513343 TCK: CIMObjectPath must validate XML schema name + o 3513349 TCK: CIMDataType must not accept null string + o 3513353 TCK: CIMDataType arrays must have length >= 1 + o 3511454 SAX nodes not reinitialized properly + o 3510090 Fix CIMObjectPath.toString() inconsistencies + o 3510321 Handle CDATA in CimXmlSerializer + o 3505681 Add detailed release history HTML + o 3500619 JSR48 1.0.0: CIMClass association/key clean up + * Thu Mar 15 2012 Dave Blaschke <bla...@us...> - New release 2.1.12 o 3504344 Sync Experimental/HEAD branches Index: NEWS =================================================================== RCS file: /cvsroot/sblim/jsr48-client/NEWS,v retrieving revision 1.322 retrieving revision 1.323 diff -u -d -r1.322 -r1.323 --- NEWS 13 Sep 2012 20:34:15 -0000 1.322 +++ NEWS 14 Sep 2012 09:13:35 -0000 1.323 @@ -1,4 +1,4 @@ -Changes in HEAD +Version 2.2.0 ================ 3567429 Update detailed release history HTML for 2.2.0 3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/jsr48-client/ChangeLog,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- ChangeLog 15 Mar 2012 13:28:39 -0000 1.24 +++ ChangeLog 14 Sep 2012 09:13:35 -0000 1.25 @@ -1,3 +1,502 @@ +Release 2.2.0 +============= + +Thu Sep 13 15:34:15 CDT 2012 blaschke-oss + + 3567429 Update detailed release history HTML for 2.2.0 + + history.html 1.3 + NEWS 1.322 + +Thu Sep 13 05:08:29 CDT 2012 blaschke-oss + + 3555752 Sync up javax.* javadoc with JSR48 1.0.0 Final IV + + WBEMClient.java 1.22 + NEWS 1.321 + +Thu Sep 13 04:29:24 CDT 2012 blaschke-oss + + 3565581 TCK: remove unnecessary overriding methods + + WBEMException.java 1.15 + CIMQualifierType.java 1.14 + CIMQualifier.java 1.16 + CIMProperty.java 1.19 + CIMParameter.java 1.18 + CIMMethod.java 1.20 + CIMDateTimeInterval.java 1.24 + CIMDateTimeAbsolute.java 1.22 + CIMClassProperty.java 1.21 + CIMClass.java 1.29 + CIMArgument.java 1.12 + NEWS 1.320 + +Mon Sep 10 05:30:17 CDT 2012 blaschke-oss + + 3562235 LogAndTraceBrokerTest breaks unit test tracing + + testcases.txt 1.19 + LogAndTraceBrokerTest.java 1.11 + NEWS 1.319 + +Mon Sep 10 05:18:43 CDT 2012 hellerda + + 3536399 Add client/listener peer authentication properties + + notrust.pks 1.3 + SSLConfigurationTest.java 1.8 + WBEMConfigurationDefaults.java 1.31 + WBEMConfiguration.java 1.44 + messages_en.properties 1.16 + messages_de.properties 1.16 + Messages.java 1.17 + WBEMListenerTest.java 1.4 + HttpSocketFactory.java 1.20 + HttpServerConnection.java 1.16 + unittest.html 1.22 + secure_indications.html 1.3 + secure.html 1.9 + WBEMConfigurationProperties.java 1.48 + sblim-cim-client2.properties 1.30 + NEWS 1.318 + +Thu Sep 06 14:12:23 CDT 2012 blaschke-oss + + 3529151 TCK: CIMInstance property APIs include keys from COP + + CIMInstance.java 1.22 + XMLHostStrTest.java 1.8 + TVPair.java 1.15 + ParserTest.java 1.25 + ModifyInstanceTest.java 1.8 + CIMBuilder.java 1.22 + CIMObjectPathTest.java 1.18 + CIMInstanceTest.java 1.7 + MOF.java 1.22 + CIMObjectPath.java 1.33 + NEWS 1.317 + +Thu Sep 06 12:38:27 CDT 2012 hellerda + + 3536398 Update HTML to reflect secure indication support + + overview.html 1.21 + secure_indications.html 1.2 + secure.html 1.8 + indications.html 1.13 + configuration.html 1.11 + NEWS 1.316 + + +Thu Sep 06 09:46:47 CDT 2012 blaschke-oss + + 3554738 dump CIM xml by LogAndTraceBroker.trace() + + NEWS 1.315 + LogAndTraceBrokerTest.java 1.10 + CIMIndicationHandler.java 1.32 + WBEMClientCIMXML.java 1.79 + LogAndTraceBroker.java 1.26 + DebugInputStream.java 1.9 + unittest.html 1.21 + logging.html 1.8 + LogAndTraceManager.java 1.8 + CIMXMLTraceListener.java 1.2 + Jsr48OperationSample.java 1.14 + +Thu Aug 16 21:47:40 CDT 2012 blaschke-oss + + 3553858 Append duplicate HTTP header fields instead of replace + + CIMIndicationHandler.java 1.31 + WBEMClientCIMXML.java 1.78 + HttpHeader.java 1.12 + NEWS 1.314 + +Thu Aug 16 21:22:13 CDT 2012 blaschke-oss + + 3535383 HashDoS fix 3498482 + + NodeFactory.java 1.8 + NEWS 1.313 + +Thu Aug 16 21:11:09 CDT 2012 blaschke-oss + + 3545797 Support new error code of SFCB + + WBEMClientCIMXML.java 1.77 + NEWS 1.312 + +Thu Aug 16 20:51:32 CDT 2012 hellerda + + 3529066 Add Jsr48IndicationTester + + Jsr48IndicationTester.java 1.2 + NEWS 1.311 + +Thu Jun 21 07:28:32 CDT 2012 blaschke-oss + + 3524050 Improve WWW-Authenticate in HTTPClient.java + + sblim-cim-client2.properties 1.29 + NEWS 1.310 + WBEMConfiguration.java 1.43 + HttpClient.java 1.42 + WBEMConfigurationProperties.java 1.47 + +Wed Jun 20 13:09:50 CDT 2012 hellerda + + 3529065 Enable WBEMListener get/setProperty + + WBEMListenerTest.java 1.3 + WBEMConfigurationTest.java 1.20 + WBEMListenerSBLIM.java 1.20 + NEWS 1.309 + +Wed Jun 13 18:23:17 CDT 2012 blaschke-oss + + 3529062 WBEMListenerFactory should return new instance + + WBEMListenerFactory.java 1.12 + WBEMListenerTest.java 1.2 + testcases.wbem.txt 1.3 + unittest.html 1.20 + WBEMListenerSBLIM.java 1.19 + NEWS 1.308 + +Fri Jun 01 07:48:36 CDT 2012 blaschke-oss + + 3527580 WBEMClient should not throw IllegalArgumentException + + NEWS 1.307 + CIMClientXML_HelperImpl.java 1.43 + +Thu May 31 10:13:32 CDT 2012 blaschke-oss + + 3526681 CIMError valid status codes out-of-date + + CIMError.java 1.6 + NEWS 1.306 + +Thu May 31 10:06:21 CDT 2012 blaschke-oss + + 3526679 DOM parser ignores ERROR node CODE + + CIMXMLParserImpl.java 1.48 + NEWS 1.305 + +Thu May 31 09:58:14 CDT 2012 blaschke-oss + + 3526675 Unit test fails on Java 7 + + DTStringReader.java 1.8 + NEWS 1.304 + +Fri May 25 06:27:43 CDT 2012 blaschke-oss + + 3525914 TCK: SetPropertyTest.testSetProperty failing + + WBEMClientCIMXML.java 1.76 + NEWS 1.303 + +Fri May 25 06:20:59 CDT 2012 blaschke-oss + + 3521157 JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1 + + sblim-cim-client2.properties 1.28 + NEWS 1.302 + WBEMConfigurationTest.java 1.19 + WBEMClientCIMXML.java 1.75 + WBEMConfigurationDefaults.java 1.30 + WBEMConfiguration.java 1.42 + WBEMConfigurationProperties.java 1.46 + WBEMClientConstants.java 1.8 + +Fri May 25 06:02:01 CDT 2012 blaschke-oss + + 3525657 Sync up javax.* javadoc with JSR48 1.0.0 Final III + + NEWS 1.301 + WBEMClient.java 1.21 + +Wed May 23 05:03:44 CDT 2012 blaschke-oss + + 3525150 Remove CIMGetClassOp.getPropertyLis + + CIMGetClassOp.java 1.6 + NEWS 1.300 + +Wed May 23 04:59:53 CDT 2012 blaschke-oss + + 3525145 Remove CIMDeleteNameSpaceOp.getNamespace + + CIMDeleteNameSpaceOp.java 1.7 + NEWS 1.299 + +Wed May 23 04:55:23 CDT 2012 blaschke-oss + + 3525138 Remove WBEMConstants.PROTOCOL_CIMXML + + WBEMConstants.java 1.15 + NEWS 1.298 + +Wed May 23 04:49:43 CDT 2012 blaschke-oss + + 3525135 Remove CIMResponse.isSuccessul + + CIMResponse.java 1.11 + NEWS 1.297 + +Wed May 23 04:44:00 CDT 2012 blaschke-oss + + 3525128 Remove WBEMTransportException/WBEMAuthenticationException + + WBEMTransportException.java deleted + WBEMAuthenticationException.java deleted + NEWS 1.296 + +Mon May 21 21:31:23 CDT 2012 blaschke-oss + + 3523918 "java.io.IOException: Unexpected EOF" returned as HTTP 401 + + HttpClient.java 1.41 + NEWS 1.295 + +Mon May 21 21:22:12 CDT 2012 blaschke-oss + + 3522904 Add new API WBEMClientSBLIM.isActive() + + NEWS 1.294 + WBEMClientTest.java 1.2 + testcases.wbem.txt 1.2 + testcases.txt 1.18 + WBEMClientCIMXML.java 1.74 + unittest.html 1.19 + WBEMClientSBLIM.java 1.10 + +Wed May 09 09:26:52 CDT 2012 blaschke-oss + + 3521328 JSR48 1.0.0: remove WBEMClient associators and references + + WBEMClient.java 1.20 + NEWS 1.293 + WBEMClientCIMXML.java 1.73 + +Wed May 09 09:18:43 CDT 2012 blaschke-oss + + 3521119 JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors + + Jsr48SfcbIndicationSample.java 1.3 + Jsr48PullEnumSample.java 1.5 + Jsr48PegasusIndicationSample.java 1.9 + Jsr48OperationSample.java 1.13 + Jsr48IndicationSample.java 1.13 + EnumClasses.java 1.13 + SVCTest.java 1.10 + ParserTest.java 1.24 + Common.java 1.8 + CIMBuilder.java 1.21 + WBEMConfigurationTest.java 1.18 + CIMObjectPathTest.java 1.17 + CIMInstanceTest.java 1.6 + WBEMClientCIMXML.java 1.72 + QualiDeclNode.java 1.11 + LocalNameSpacePathNode.java 1.9 + CIMXMLParserImpl.java 1.47 + CIMClientXML_HelperImpl.java 1.42 + CIMObjectPath.java 1.32 + CIMClass.java 1.28 + NEWS 1.292 + +Wed May 09 08:36:13 CDT 2012 blaschke-oss + + 3521131 Sync up javax.* javadoc with JSR48 1.0.0 Final II + + WBEMClient.java 1.19 + CIMObjectPath.java 1.31 + CIMDataType.java 1.18 + NEWS 1.291 + +Tue May 08 13:08:54 CDT 2012 blaschke-oss + + 3466280 get instance failure for CIM_IndicationSubscription + + Bug3466280Test.java 1.2 + testcases.parser.txt 1.9 + ValueReferenceNode.java 1.9 + CIMXMLParserImpl.java 1.46 + unittest.html 1.18 + NEWS 1.290 + Bug3466280.xml 1.2 + +Tue May 08 12:22:08 CDT 2012 blaschke-oss + + 3513228 Reliable Indications support can create lots of threads + + ReliableIndicationHandler.java 1.5 + CIMIndicationHandler.java 1.30 + WBEMListenerSBLIM.java 1.18 + NEWS 1.289 + +Mon Apr 30 04:17:42 CDT 2012 blaschke-oss + + 3517503 Missing parm in CIMDataType ctor javadoc + + CIMDataType.java 1.17 + NEWS 1.288 + +Sun Apr 29 08:47:58 CDT 2012 blaschke-oss + + 3516848 enumerateNamespaces() method to WBEMClient + + WBEMClientCIMXML.java 1.71 + WBEMClientSBLIM.java 1.9 + NEWS 1.287 + +Thu Apr 19 06:22:08 CDT 2012 blaschke-oss + + 3515180 JSR48 log dir/file should handle UNIX/Win separators + + WBEMClientCIMXML.java 1.70 + WBEMConfigurationTest.java 1.17 + NEWS 1.286 + +Thu Apr 19 06:11:24 CDT 2012 blaschke-oss + + 3514685 TCK: getProperty must return default values + + WBEMClientCIMXML.java 1.69 + WBEMConfigurationTest.java 1.16 + NEWS 1.285 + +Thu Apr 19 05:45:17 CDT 2012 blaschke-oss + + 3514537 TCK: execQueryInstances requires boolean, not Boolean + + WBEMClientCIMXML.java 1.68 + CIMClientXML_HelperImpl.java 1.41 + WBEMClient.java 1.18 + NEWS 1.284 + +Mon Apr 16 08:21:50 CDT 2012 blaschke-oss + + 3513357 Handle multiple CDATAs in CimXmlSerializer + + CimXmlSerializer.java 1.9 + NEWS 1.283 + +Mon Apr 16 08:14:40 CDT 2012 blaschke-oss + + 3513347 TCK: CIMObjectPath allows empty string + + CIMObjectPath.java 1.30 + NEWS 1.282 + +Mon Apr 16 07:52:59 CDT 2012 blaschke-oss + + 3513343 TCK: CIMObjectPath must validate XML schema name + + CIMObjectPath.java 1.29 + NEWS 1.281 + +Mon Apr 16 07:44:38 CDT 2012 blaschke-oss + + 3513349 TCK: CIMDataType must not accept null string + + ValueRefArrayNode.java 1.10 + EmbObjHandler.java 1.14 + CIMObjectFactory.java 1.18 + CIMXMLParserImpl.java 1.45 + CIMHelper.java 1.9 + NEWS 1.280 + CIMDataTypeTest.java 1.4 + CIMDataType.java 1.16 + +Fri Apr 13 08:47:34 CDT 2012 blaschke-oss + + 3513353 TCK: CIMDataType arrays must have length >= 1 + + ValueArrayNode.java 1.10 + QualifierNode.java 1.13 + QualiDeclNode.java 1.10 + Node.java 1.12 + testcases.cim.txt 1.8 + CIMDataTypeTest.java 1.2,1.3 + EmbObjHandler.java 1.13 + CIMXMLParserImpl.java 1.44 + CIMHelper.java 1.7,1.8 + unittest.html 1.17 + CIMDataType.java 1.14,1.15 + NEWS 1.279 + +Fri Apr 13 07:59:50 CDT 2012 blaschke-oss + + 3511454 SAX nodes not reinitialized properly + + ValueReferenceNode.java 1.8 + SimpleExpReqNode.java 1.7 + QualifiedNodeHandler.java 1.12 + QualiDeclNode.java 1.9 + MultiRspNode.java 1.8 + MultiReqNode.java 1.8 + MessageNode.java 1.7 + IReturnValueNode.java 1.9 + ValueRefArrayNode.java 1.9 + ValueObjectWithPathNode.java 1.8 + ValueObjectWithLocalPathNode.java 1.8 + SimpleRspNode.java 1.10 + SimpleReqNode.java 1.8 + SimpleExpRspNode.java 1.8 + NameSpacePathNode.java 1.10 + MultiExpRspNode.java 1.9 + MultiExpReqNode.java 1.8 + MethodResponseNode.java 1.11 + LocalInstancePathNode.java 1.9 + InstancePathNode.java 1.10 + IMethodResponseNode.java 1.9 + ExpParamValueNode.java 1.7 + ExpMethodResponseNode.java 1.8 + ExpMethodCallNode.java 1.8 + ClassPathNode.java 1.9 + CIMNode.java 1.7 + AbstractMethodCallNode.java 1.10 + NEWS 1.278 + +Fri Apr 13 07:19:14 CDT 2012 blaschke-oss + + 3510090 Fix CIMObjectPath.toString() inconsistencies + + CIMObjectPathTest.java 1.16 + MOF.java 1.21 + unittest.html 1.16 + CIMObjectPath.java 1.28 + NEWS 1.277 + +Fri Apr 13 06:55:42 CDT 2012 blaschke-oss + + 3510321 Handle CDATA in CimXmlSerializer + + NEWS 1.276 + CimXmlSerializer.java 1.8 + +Mon Apr 02 15:59:10 CDT 2012 blaschke-oss + + 3505681 Add detailed release history HTML + + overview.html 1.20 + history.html 1.2 + NEWS 1.275 + +Mon Apr 02 15:41:12 CDT 2012 blaschke-oss + + 3500619 JSR48 1.0.0: CIMClass association/key clean up + + CIMBuilder.java 1.20 + ClassNode.java 1.10 + CIMClass.java 1.27 + NEWS 1.274 + Release 2.1.12 ============== |
From: Dave H. <hel...@us...> - 2012-09-14 01:25:39
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCC - Small Footprint CIM Client". The branch, master has been updated via 1698d26dfb0ffb8ed451ccbf2310973a7150dcc9 (commit) from edf0098727b4f22101d153eb48b75b76286b5070 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1698d26dfb0ffb8ed451ccbf2310973a7150dcc9 Author: Dave Heller <hel...@us...> Date: Thu Sep 13 21:18:49 2012 -0400 [ 3566968 ] sfcc enumInstances fails to parse the xml ----------------------------------------------------------------------- Summary of changes: diff --git a/NEWS b/NEWS index 0eb97b7..b47e19e 100644 --- a/NEWS +++ b/NEWS @@ -12,6 +12,7 @@ Bugs: - 3435363: Wrong call of curl_global_cleanup() - 3547832: memory leak in backend/cimxml/grammer.c - 3555103: wrong declaration of release attribute in _CIMCArgsFT +- 3566968: sfcc enumInstances fails to parse the xml Changes in 2.2.3 ================ diff --git a/backend/cimxml/cimXmlParser.c b/backend/cimxml/cimXmlParser.c index b7b590e..128d92f 100644 --- a/backend/cimxml/cimXmlParser.c +++ b/backend/cimxml/cimXmlParser.c @@ -757,9 +757,10 @@ static int procKeyValue(parseUnion * lvalp, ParserControl * parm) { static XmlElement elm[] = { {"VALUETYPE"}, + {"TYPE"}, {NULL} }; - XmlAttr attr[1] = { + XmlAttr attr[2] = { {NULL} }; char *val; hooks/post-receive -- SFCC - Small Footprint CIM Client |
From: Dave H. <hel...@us...> - 2012-09-14 01:25:11
|
Update of /cvsroot/sblim/sfcc In directory vz-cvs-3.sog:/tmp/cvs-serv1067 Modified Files: ChangeLog NEWS Log Message: [ 3566968 ] sfcc enumInstances fails to parse the xml Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcc/NEWS,v retrieving revision 1.58 retrieving revision 1.59 diff -u -d -r1.58 -r1.59 --- NEWS 5 Apr 2010 23:14:27 -0000 1.58 +++ NEWS 14 Sep 2012 01:25:08 -0000 1.59 @@ -6,6 +6,7 @@ Bugs: - 2982349: Memory leak in backend/cimxml/client.c - 2982352: Double free in backend/cimxml/property.c +- 3566968: sfcc enumInstances fails to parse the xml Changes in 2.2.1 ================ Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcc/ChangeLog,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- ChangeLog 5 Apr 2010 23:14:27 -0000 1.61 +++ ChangeLog 14 Sep 2012 01:25:08 -0000 1.62 @@ -1,3 +1,8 @@ +2012-09-13 Dave Heller <hel...@us...> + + * backend/cimxml/cimXmlParser.c: + Fixed 3566968: sfcc enumInstances fails to parse the xml + 2010-04-05 Chris Buccella <buc...@li...> * backend/cimxml/client.c: |
From: Michael Chase-S. <mc...@us...> - 2012-09-13 21:15:56
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 76379bf36c9f19b40874e84a52853bbf763a13c3 (commit) from 1c60dd048a5efb3330bbb9436bc82d18d74f012f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 76379bf36c9f19b40874e84a52853bbf763a13c3 Author: Michael Chase-Salerno <br...@li...> Date: Thu Sep 13 17:14:58 2012 -0400 - 3567450 Clients shouldn't cause log messages ----------------------------------------------------------------------- Summary of changes: diff --git a/NEWS b/NEWS index c645f4b..21cd46d 100644 --- a/NEWS +++ b/NEWS @@ -104,6 +104,7 @@ Changes in 1.3.16 New Features: - 3538858 custom routine to log indInst objinfo - 3555395 Additional auth lib return codes +- 3567450 Clients shouldn't cause log messages Bugs fixed: diff --git a/mlog.c b/mlog.c index 291af0d..a30ec24 100644 --- a/mlog.c +++ b/mlog.c @@ -37,6 +37,12 @@ const char *_mlog_id = FILE *log_w_stream; int logfds[2] = { 0, 0 }; +/* Global variable to control syslog usage, by default it will be disabled. +The sfcbd process will enable this for itself, but most clients won't. +set to 1 to enable syslog +*/ +int sfcbUseSyslog=0; + /* * main function for the logger proc. Waits on a pipe and writes to syslog * Will exit when the other side of the pipe closes @@ -71,7 +77,9 @@ runLogger(int listenFd, int level) break; } - syslog(priosysl, "%s", buf + 1); + if (sfcbUseSyslog) { + syslog(priosysl, "%s", buf + 1); + } } return; @@ -147,6 +155,10 @@ mlogf(int priority, int errout, const char *fmt, ...) char buf[LOG_MSG_MAX]; + if (! sfcbUseSyslog) { + return; + } + va_start(ap, fmt); // Leave a space for the /n on the end. vsnprintf(buf, LOG_MSG_MAX-1, fmt, ap); diff --git a/sfcBroker.c b/sfcBroker.c index e293b89..6ad35ab 100644 --- a/sfcBroker.c +++ b/sfcBroker.c @@ -55,6 +55,8 @@ int sfcBrokerPid = 0; +extern int sfcbUseSyslog; + extern void setExFlag(unsigned long f); extern char *parseTarget(const char *target); extern UtilStringBuffer *instanceToString(CMPIInstance *ci, char **props); @@ -611,6 +613,7 @@ main(int argc, char *argv[]) pSockets; char *pauseStr; + sfcbUseSyslog=1; /* SF 3462309 - If there is an instance running already, return */ int pid_found = 0; if ((pid_found = sfcb_is_running()) != 0) { hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Dave B. <bla...@us...> - 2012-09-13 20:34:17
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files In directory vz-cvs-3.sog:/tmp/cvs-serv17654/src/org/sblim/cimclient/doc-files Modified Files: history.html Log Message: 3567429 - Update detailed release history HTML for 2.2.0 Index: history.html =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/doc-files/history.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- history.html 2 Apr 2012 20:59:10 -0000 1.2 +++ history.html 13 Sep 2012 20:34:15 -0000 1.3 @@ -18,6 +18,7 @@ * Flag Date Prog Description *------------------------------------------------------------------------------- * 3505681 2012-03-16 blaschke-oss Add detailed release history HTML + * 3567429 2012-09-13 blaschke-oss Update detailed release history HTML for 2.2.0 --> </head> <body style="background-color: white;"> @@ -28,10 +29,153 @@ upgraded to the standardized JSR48 API and released to the public for the first time in February of 2007. It continues to ship on a quarterly basis, as close as possible to the middle (15th) of the last month of - the quarter (March, June, September, December). The 2.0.x code stream - (releases 2.0.1 through 2.0.9) requires Java 1.4 while the 2.1.x code - stream (releases 2.1.0 through 2.1.12) requires Java 5. The 2.0.x code - stream was sunset in December of 2010.</p> + each quarter (March, June, September, December).</p> + <table border="1" cellpadding="5" cellspacing="0" width="50%"> + <tr><th>Code Stream</th><th>Versions</th><th>Java Version</th><th>State</th> + <tr><td>2.0.x</td><td>2.0.1-2.0.9</td><td>1.4</td><td>Sunset December 2010</td> + <tr><td>2.1.x</td><td>2.1.0-2.1.12</td><td>1.5</td><td>Maintenance mode September 2012</td> + <tr><td>2.2.x</td><td>2.2.0</td><td>1.5</td><td>Active</td> + </table> + <h2>Version 2.2.0</h2> + <p>Version 2.2.0 was released on September 14, 2012. It is fully compliant + with the final JSR48 1.0.0 specification. In order to comply, several + APIs were removed while several others changed their behavior. The + changes made along with their workarounds are described in the following + table:</p> + <table border="1" cellpadding="5" cellspacing="0" width="100%"> + <tr><th>Change</th><th>Workaround</th></tr> + <tr><td>Constructor CIMObjectPath(pObjectName, pNamespace) removed</td><td>Use CIMObjectPath(null, null, null, pNamespace, pObjectName, null) instead</td></tr> + <tr><td>Constructor CIMObjectPath(pObjectName, pNamespace, pKeys) removed</td><td>Use CIMObjectPath(null, null, null, pNamespace, pObjectName, pKeys) instead</td></tr> + <tr><td>Constructor CIMObjectPath(pHost, pNamespace, pObjectName, pKeys) removed</td><td>Use CIMObjectPath(null, pHost, null, pNamespace, pObjectName, pKeys) instead</td></tr> + <tr><td>Method WBEMClient.associators(pObjectName, pAssociationClass, pResultClass, pRole, pResultRole, pIncludeQualifiers, pIncludeClassOrigin, pPropertyList) removed</td><td>For classes, use WBEMClient.associatorClasses(pObjectName, pAssociationClass, pResultClass, pRole, pResultRole, pIncludeQualifiers, pIncludeClassOrigin, pPropertyList) instead; for instances, use WBEMClient.associatorInstances(pObjectName, pAssociationClass, pResultClass, pRole, pResultRole, pIncludeClassOrigin, pPropertyList) instead</td></tr> + <tr><td>Method WBEMClient.references(pObjectName, pResultClass, pRole, pIncludeQualifiers, pIncludeClassOrigin, pPropertyList) removed</td><td>For classes, use WBEMClient.referenceClasses(pObjectName, pResultClass, pRole, pIncludeQualifiers, pIncludeClassOrigin, pPropertyList) instead; for instances, use WBEMClient.referenceInstances(pObjectName, pResultClass, pRole, pIncludeClassOrigin, pPropertyList) instead</td></tr> + <tr><td>Constructor CIMDataType(pType, 0) no longer supported, will result in IllegalArgumentException</td><td>Use corresponding CIMDataType.x_ARRAY_T constant instead</td></tr> + <tr><td>Constructor CIMDataType(null) no longer supported, will result in IllegalArgumentException</td><td>Use CIMDataType("") instead</td></tr> + <tr><td>Constructor CIMObjectPath("") no longer supported, will result in IllegalArgumentException</td><td>Use valid ObjectPath instead</td></tr> + <tr><td>Method WBEMClient.execQueryInstance() pReturnQueryResultClass and pContinueOnError parameters changed from Boolean to boolean</td><td>Use boolean instead of Boolean</td></tr> + <tr><td>Constructor CIMObjectPath(pScheme, pHost, pPort, pNamespace, pObjectName, pKeys) throws IllegalArgumentException if pKeys contains CIMProperty with pKey=false</td><td>Use pKey=true when constructing key properties instead</td></tr> + <tr><td>Constructor CIMObjectPath(pScheme, pHost, pPort, pNamespace, pObjectName, pKeys, pXmlSchemaName) throws IllegalArgumentException if pKeys contains CIMProperty with pKey=false</td><td>Use pKey=true when constructing key properties instead</td></tr> + </table> + <p>In addition, the behavior of CIMInstance is changing significantly to + comply with the final JSR48 1.0.0 specification. Up until now, the keys + from the CIMObjectPath (first constructor parameter) were merged with + the properties from the CIMProperty[] (second constructor parameter) + such that getProperty() would return a key that was not in + CIMProperty[]. From now on, the getProperties(), getProperty(), + getPropertyCount() and getPropertyValue() methods will only act upon + properties from the CIMProperty[]. To achieve the corresponding + functionality with keys from the CIMObjectPath, use getKeys(), + getObjectPath().getKey(), getObjectPath().length and + getObjectPath().getKeyValue() instead.</p> + <p>Version 2.2.0 also contains several new features:</p> + <ul> + <li>One new internal API - WBEMClientSBLIM.enumerateNamespaces - can be + used to obtain a CloseableIterator of namespaces (#3516848)</li> + <li>One new internal API - WBEMClientSBLIM.isActive - can be + used to determine if the client is active (initialized and not + closed) or inactive (#3522904)</li> + <li>A new Java property - sblim.wbem.httpWwwAuthenticateInfo - can be + used to specify the WWW-Authenticate info to use when sending the + first HTTP request to a server (#3524050)M/li> + <li>A new sample - Jsr48IndicationTester - demonstrates a general + purpose indication test program with a command line interface + (#3529066)</li> + <li>Four new internal APIs - LogAndTraceManager.addCIMXMLTraceListener, + removeCIMXMLTraceListener, clearCIMXMLTraceListeners, and + getCIMXMLTraceListeners - can be used to trace CIM-XML requests and + responses (#3554738)</li> + </ul> + <p>Version 2.2.0 also contains several changes that might affect existing + applications:</p> + <ul> + <li>The JSR48 API CIMObjectPath.toString() has been enhanced to produce + consistent output - this may result in different output from + previous releases, but the API documentation already states "This + method is intended to be used only for debugging purposes. The + format of the value returned may vary between implementations." + (#3510090)</li> + <li>The internal classes WBEMAuthenticationException and + WBEMTransportException have been deleted after being deprecated in + version 2.1.0.(#3525128)</li> + <li>The internal API CIMResponse.isSuccessul has been deleted after + being deprecated in version 2.1.1.(#3525135)</li> + <li>The internal constant WBEMConstants.PROTOCOL_CIMXML has been + deleted after being deprecated in version 2.1.3.(#3525138)</li> + <li>The internal constant WBEMConstants.PROTOCOL_CIMXML has been + deleted after being deprecated in version 2.1.3.(#3525138)</li> + <li>The internal API CIMDeleteNameSpaceOp.getNamespace has been deleted + after being deprecated in version 2.1.5.(#3525145)</li> + <li>The internal API CIMGetClassOp.getPropertyLis has been deleted + after being deprecated in version 2.1.0.(#3525150)</li> + <li>The JSR48 properties PROP_ENABLE_CONSOLE_LOGGING and + PROP_ENABLE_FILE_LOGGING are now levels ("OFF", "ALL", etc.) + instead of "0" and "1" (#3521157)</li> + <li>The internal API WBEMListenerSBLIM.getInstance has been deleted, + use "new WBEMListenerSBLIM" instead (#3529062)</li> + <li>Two new Java properties - sblim.wbem.sslClientPeerVerification and + sblim.wbem.sslListenerPeerVerification - can be used to control SSL + peer authentication for client/listener; users who had previously + enabled client/listener peer verification by setting the value of + javax.net.ssl.trustStore will additionally have to set one or both + of these new properties to a non-default value in order to enable + peer verification (see <em><a href="secure.html">Getting started + with secure connections</a></em> and <em><a href="secure_indications.html"> + Getting started with secure indications</a></em> for details) + (#3536399)</li> + </ul> + <p>The complete list of changes follows:</p> + <table border="1" cellpadding="5" cellspacing="0" width="100%"> + <tr><th>Bug ID</th><th>Bug Summary</th></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3500619&group_id=128809&atid=712784">3500619</td><td>JSR48 1.0.0: CIMClass association/key clean up</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3505681&group_id=128809&atid=712784">3505681</td><td>Add detailed release history HTML</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3510321&group_id=128809&atid=712784">3510321</td><td>Handle CDATA in CimXmlSerializer</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3510090&group_id=128809&atid=712784">3510090</td><td>Fix CIMObjectPath.toString() inconsistencies</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3511454&group_id=128809&atid=712784">3511454</td><td>SAX nodes not reinitialized properly</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3513353&group_id=128809&atid=712784">3513353</td><td>TCK: CIMDataType arrays must have length >= 1</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3513349&group_id=128809&atid=712784">3513349</td><td>TCK: CIMDataType must not accept null string</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3513343&group_id=128809&atid=712784">3513343</td><td>TCK: CIMObjectPath must validate XML schema name</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3513347&group_id=128809&atid=712784">3513347</td><td>TCK: CIMObjectPath allows empty string</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3513357&group_id=128809&atid=712784">3513357</td><td>Handle multiple CDATAs in CimXmlSerializer</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3514537&group_id=128809&atid=712784">3514537</td><td>TCK: execQueryInstances requires boolean, not Boolean</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3514685&group_id=128809&atid=712784">3514685</td><td>TCK: getProperty must return default values</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3515180&group_id=128809&atid=712784">3515180</td><td>JSR48 log dir/file should handle UNIX/Win separators</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3516848&group_id=128809&atid=712784">3516848</td><td>enumerateNamespaces() method to WBEMClient</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3517503&group_id=128809&atid=712784">3517503</td><td>Missing parm in CIMDataType ctor javadoc</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3513228&group_id=128809&atid=712784">3513228</td><td>Reliable Indications support can create lots of threads</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3466280&group_id=128809&atid=712784">3466280</td><td>get instance failure for CIM_IndicationSubscription</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3521131&group_id=128809&atid=712784">3521131</td><td>Sync up javax.* javadoc with JSR48 1.0.0 Final II</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3521119&group_id=128809&atid=712784">3521119</td><td>JSR48 1.0.0: remove CIMObjectPath 2/3/4-parm ctors</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3521328&group_id=128809&atid=712784">3521328</td><td>JSR48 1.0.0: remove WBEMClient associators and references</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3522904&group_id=128809&atid=712784">3522904</td><td>Add new API WBEMClientSBLIM.isActive()</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3523918&group_id=128809&atid=712784">3523918</td><td>"java.io.IOException: Unexpected EOF" returned as HTTP 401</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3525128&group_id=128809&atid=712784">3525128</td><td>Remove WBEMTransportException/WBEMAuthenticationException</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3525135&group_id=128809&atid=712784">3525135</td><td>Remove CIMResponse.isSuccessul</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3525138&group_id=128809&atid=712784">3525138</td><td>Remove WBEMConstants.PROTOCOL_CIMXML</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3525145&group_id=128809&atid=712784">3525145</td><td>Remove CIMDeleteNameSpaceOp.getNamespace</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3525150&group_id=128809&atid=712784">3525150</td><td>Remove CIMGetClassOp.getPropertyLis</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3525657&group_id=128809&atid=712784">3525657</td><td>Sync up javax.* javadoc with JSR48 1.0.0 Final III</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3521157&group_id=128809&atid=712784">3521157</td><td>JSR48 1.0.0: PROP_ENABLE_*_LOGGING is Level, not 0/1</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3525914&group_id=128809&atid=712784">3525914</td><td>TCK: SetPropertyTest.testSetProperty failing</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3526675&group_id=128809&atid=712784">3526675</td><td>Unit test fails on Java 7</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3526679&group_id=128809&atid=712784">3526679</td><td>DOM parser ignores ERROR node CODE</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3526681&group_id=128809&atid=712784">3526681</td><td>CIMError valid status codes out-of-date</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3527580&group_id=128809&atid=712784">3527580</td><td>WBEMClient should not throw IllegalArgumentException</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3529062&group_id=128809&atid=712784">3529062</td><td>WBEMListenerFactory should return new instance</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3529065&group_id=128809&atid=712784">3529065</td><td>Enable WBEMListener get/setProperty</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3524050&group_id=128809&atid=712784">3524050</td><td>Improve WWW-Authenticate in HTTPClient.java</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3529066&group_id=128809&atid=712784">3529066</td><td>Add Jsr48IndicationTester</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3545797&group_id=128809&atid=712784">3545797</td><td>Support new error code of SFCB</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3535383&group_id=128809&atid=712784">3535383</td><td>HashDoS fix 3498482</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3553858&group_id=128809&atid=712784">3553858</td><td>Append duplicate HTTP header fields instead of replace</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3554738&group_id=128809&atid=712784">3554738</td><td>dump CIM xml by LogAndTraceBroker.trace()</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3536398&group_id=128809&atid=712784">3536398</td><td>Update HTML to reflect secure indication support</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3529151&group_id=128809&atid=712784">3529151</td><td>TCK: CIMInstance property APIs include keys from COP</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3536399&group_id=128809&atid=712784">3536399</td><td>Add client/listener peer authentication properties</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3562235&group_id=128809&atid=712784">3562235</td><td>LogAndTraceBrokerTest breaks unit test tracing</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3565581&group_id=128809&atid=712784">3565581</td><td>TCK: remove unnecessary overriding methods</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3555752&group_id=128809&atid=712784">3555752</td><td>Sync up javax.* javadoc with JSR48 1.0.0 Final IV</td></tr> + <tr><td><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=3567429&group_id=128809&atid=712784">3567429</td><td>Update detailed release history HTML for 2.2.0</td></tr> + </table> <h2>Version 2.1.12</h2> <p>Version 2.1.12 was released on March 15, 2012. It contains several new features:</p> |
From: Michael Chase-S. <mc...@us...> - 2012-09-13 20:32:55
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv17590 Modified Files: ChangeLog NEWS mlog.c sfcBroker.c Log Message: [ 3567450 ] Clients shouldn't cause log messages Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.714 retrieving revision 1.715 diff -u -d -r1.714 -r1.715 --- NEWS 28 Aug 2012 23:07:55 -0000 1.714 +++ NEWS 13 Sep 2012 20:32:53 -0000 1.715 @@ -4,6 +4,7 @@ - 3538858 custom routine to log indInst objinfo - 3555395 Additional auth lib return codes - 3562538 Enable curl debug via env variable +- 3567450 Clients shouldn't cause log messages Bugs fixed: - 3539569 Leaks in interopProvider Index: sfcBroker.c =================================================================== RCS file: /cvsroot/sblim/sfcb/sfcBroker.c,v retrieving revision 1.64 retrieving revision 1.65 diff -u -d -r1.64 -r1.65 --- sfcBroker.c 13 Jun 2012 21:21:09 -0000 1.64 +++ sfcBroker.c 13 Sep 2012 20:32:53 -0000 1.65 @@ -58,6 +58,8 @@ int sfcBrokerPid=0; +extern int sfcbUseSyslog; + extern void setExFlag(unsigned long f); extern char *parseTarget(const char *target); extern UtilStringBuffer *instanceToString(CMPIInstance * ci, char **props); @@ -575,6 +577,7 @@ long dSockets,sSockets,pSockets; char *pauseStr; + sfcbUseSyslog=1; /* SF 3462309 - If there is an instance running already, return */ int pid_found = 0; if ((pid_found = sfcb_is_running()) != 0) { Index: mlog.c =================================================================== RCS file: /cvsroot/sblim/sfcb/mlog.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- mlog.c 17 Feb 2012 22:54:59 -0000 1.14 +++ mlog.c 13 Sep 2012 20:32:53 -0000 1.15 @@ -39,6 +39,12 @@ FILE *log_w_stream; int logfds[2] = { 0, 0 }; +/* Global variable to control syslog usage, by default it will be disabled. +The sfcbd process will enable this for itself, but most clients won't. +set to 1 to enable syslog +*/ +int sfcbUseSyslog=0; + /* + * main function for the logger proc. Waits on a pipe and writes to syslog + * Will exit when the other side of the pipe closes @@ -72,7 +78,9 @@ break; } - syslog(priosysl, "%s", buf + 1); + if (sfcbUseSyslog) { + syslog(priosysl, "%s", buf + 1); + } } return; @@ -147,6 +155,10 @@ va_list ap; char buf[LOG_MSG_MAX]; + + if (! sfcbUseSyslog) { + return; + } va_start(ap, fmt); // Leave a space for the /n on the end. Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.799 retrieving revision 1.800 diff -u -d -r1.799 -r1.800 --- ChangeLog 28 Aug 2012 23:07:55 -0000 1.799 +++ ChangeLog 13 Sep 2012 20:32:53 -0000 1.800 @@ -1,6 +1,11 @@ +2012-09-13 Michael Chase-Salerno <br...@li...> + + * sfcBroker.c, mlog.c: + [ 3567450 ] Clients shouldn't cause log messages + 2012-08-28 Dave Heller <hel...@us...> - * indCIMXMLExport.c + * indCIMXMLExport.c: [ 3562538 ] Enable curl debug via env variable 2012-08-08 Dave Heller <hel...@us...> |